Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 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/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)
Back to top