- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for UXTH (0.06 sec)
-
src/cmd/asm/internal/arch/arm64.go
} switch ext { case "UXTB": if a.Type == obj.TYPE_MEM { return errors.New("invalid shift for the register offset addressing mode") } a.Reg = arm64.REG_UXTB + Rnum case "UXTH": if a.Type == obj.TYPE_MEM { return errors.New("invalid shift for the register offset addressing mode") } a.Reg = arm64.REG_UXTH + Rnum case "UXTW":
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Sep 29 09:04:58 UTC 2022 - 10.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64enc.s
ADC R0, R2, R12 // 4c00009a ADCSW R9, R21, R6 // a602093a ADCS R23, R22, R22 // d60217ba ADDW R5.UXTH, R8, R9 // 0921250b ADD R8.SXTB<<3, R23, R14 // ee8e288b ADDW $3076, R17, R3 // 23123011
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jul 24 01:11:41 UTC 2023 - 43.9K bytes - Viewed (0) -
doc/asm.html
<code>R0.UXTB<<imm</code>: left shift the result of <code>R0.UXTB</code> by <code>imm</code> bits. The <code>imm</code> value can be 0, 1, 2, 3, or 4. The other extensions include <code>UXTH</code> (16-bit), <code>UXTW</code> (32-bit), and <code>UXTX</code> (64-bit). </li> <li> <code>R0.SXTB</code> <br> <code>R0.SXTB<<imm</code>:
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (0)