Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for STRH (0.1 sec)

  1. src/cmd/internal/obj/arm64/doc.go

    64-bit variant ldr, str, stur => MOVD;
    32-bit variant str, stur, ldrsw => MOVW;
    32-bit variant ldr => MOVWU;
    ldrb => MOVBU; ldrh => MOVHU;
    ldrsb, sturb, strb => MOVB;
    ldrsh, sturh, strh =>  MOVH.
    
    4. Go moves conditions into opcode suffix, like BLT.
    
    5. Go adds a V prefix for most floating-point and SIMD instructions, except cryptographic extension
    instructions and floating-point(scalar) instructions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    				args[1] = fmt.Sprintf("$%s(SB)", s)
    			}
    		}
    	}
    
    	// Move addressing mode into opcode suffix.
    	suffix := ""
    	switch inst.Op {
    	case LDR, LDRB, LDRH, LDRSB, LDRSH, LDRSW, STR, STRB, STRH, STUR, STURB, STURH, LD1, ST1:
    		switch mem := inst.Args[1].(type) {
    		case MemImmediate:
    			switch mem.Mode {
    			case AddrOffset:
    				// no suffix
    			case AddrPreIndex:
    				suffix = ".W"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	STREXH_ZZ:         "STREXH.ZZ",
    	STRH_EQ:           "STRH.EQ",
    	STRH_NE:           "STRH.NE",
    	STRH_CS:           "STRH.CS",
    	STRH_CC:           "STRH.CC",
    	STRH_MI:           "STRH.MI",
    	STRH_PL:           "STRH.PL",
    	STRH_VS:           "STRH.VS",
    	STRH_VC:           "STRH.VC",
    	STRH_HI:           "STRH.HI",
    	STRH_LS:           "STRH.LS",
    	STRH_GE:           "STRH.GE",
    	STRH_LT:           "STRH.LT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// STRH <Wt>, [<Xn|SP>], #<simm>
    	{0xffe00c00, 0x78000400, STRH, instArgs{arg_Wt, arg_Xns_mem_post_imm9_1_signed}, nil},
    	// STRH <Wt>, [<Xn|SP>{, #<simm>}]!
    	{0xffe00c00, 0x78000c00, STRH, instArgs{arg_Wt, arg_Xns_mem_wb_imm9_1_signed}, nil},
    	// STRH <Wt>, [<Xn|SP>{, #<pimm>}]
    	{0xffc00000, 0x79000000, STRH, instArgs{arg_Wt, arg_Xns_mem_optional_imm12_2_unsigned}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    		}
    		o1 = c.osrr(int(p.From.Reg), int(p.To.Offset), int(p.To.Reg), int(p.Scond))
    		if p.As == AMOVB || p.As == AMOVBS || p.As == AMOVBU {
    			o1 |= 1 << 22
    		}
    
    	case 62: /* MOVH/MOVHS/MOVHU Reg, Reg<<0(Reg) -> strh */
    		if p.To.Reg == 0 {
    			c.ctxt.Diag("MOV to shifter operand")
    		}
    		if p.To.Offset&(^0xf) != 0 {
    			c.ctxt.Diag("bad shift: %v", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"STRH (immediate)","Bits":"0|1|1|1|1|0|0|0|0|0|0|imm9:9|0|1|Rn:5|Rt:5","Arch":"Post-index Post-index variant","Syntax":"STRH <Wt>, [<Xn|SP>], #<simm>","Code":"","Alias":""},
    {"Name":"STRH (immediate)","Bits":"0|1|1|1|1|0|0|0|0|0|0|imm9:9|1|1|Rn:5|Rt:5","Arch":"Pre-index Pre-index variant","Syntax":"STRH <Wt>, [<Xn|SP>, #<simm>]!","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
Back to top