Technical Support
On-Line Manuals
Assembler Reference
Conventions and feedback
Assembler command line options
ARM and Thumb Instructions
Instruction summary
Instruction width specifiers
Memory access instructions
General data processing instructions
Flexible second operand (Operand2)
Operand2 as a constant
Operand2 as a register with optional shift
Shift operations
Multiply instructions
Saturating instructions
Parallel instructions
Parallel add and subtract
Packing and unpacking instructions
Branch and control instructions
Coprocessor instructions
Miscellaneous instructions
ThumbEE instructions
Pseudo-instructions
Condition codes
ADD, SUB, RSB, ADC, SBC, and RSC
ADR (PC-relative)
ADR (register-relative)
ADRL pseudo-instruction
AND, ORR, EOR, BIC, and ORN
ASR, LSL, LSR, ROR, and RRX
B, BL, BX, BLX, and BXJ
BFC and BFI
BKPT
CBZ and CBNZ
CDP and CDP2
CHKA
CLREX
CLZ
CMP and CMN
CPS
CPY pseudo-instruction
DBG
DMB, DSB, and ISB
ENTERX and LEAVEX
ERET
HB, HBL, HBLP, and HBP
IT
LDC, LDC2, STC, and STC2
LDM and STM
LDR and STR (immediate offset)
LDR and STR (register offset)
LDR and STR, unprivileged
LDR (PC-relative)
LDR (register-relative)
LDR pseudo-instruction
LDREX and STREX
MAR and MRA
MCR, MCR2, MCRR, and MCRR2
MIA, MIAPH, and MIAxy
MOV and MVN
MOV32 pseudo--instruction
MOVT
MRC, MRC2, MRRC and MRRC2
MRS (system coprocessor register to ARM register)
MRS (PSR to general-purpose register)
MSR (ARM register to system coprocessor register)
MSR (general-purpose register to PSR)
MUL, MLA, and MLS
NEG pseudo-instruction
PKHBT and PKHTB
PLD, PLDW, and PLI
PUSH and POP
QADD, QSUB, QDADD, and QDSUB
REV, REV16, REVSH, and RBIT
RFE
SBFX and UBFX
SDIV and UDIV
SEL
SETEND
SEV, WFE, WFI, and YIELD
SMC
NOP
SMLAD and SMLSD
SMLALxy
SMLALD and SMLSLD
SMMUL, SMMLA, and SMMLS
SMUAD{X} and SMUSD{X}
SMULxy and SMLAxy
SMULWy and SMLAWy
SRS
SSAT and USAT
SSAT16 and USAT16
SUBS pc, lr
SVC
SWP and SWPB
SXT, SXTA, UXT, and UXTA
SYS
TBB and TBH
TST and TEQ
UMULL, UMLAL, SMULL, and SMLAL
UMAAL
UND pseudo-instruction
USAD8 and USADA8
VFP Programming
Directives Reference
|
Assembler Reference
SXT, SXTA, UXT, and UXTA
Sign extend, Sign extend with Add, Zero extend, and Zero extend
with Add. Syntax
SXT<extend>{cond} {Rd}, Rm {,rotation}
SXTA<extend>{cond} {Rd}, Rn, Rm {,rotation}
UXT<extend>{cond} {Rd}, Rm {,rotation}
UXTA<extend>{cond} {Rd}, Rn, Rm {,rotation}
where: <extend>is one of: B16Extends
two 8-bit values to two 16-bit values. BExtends
an 8-bit value to a 32-bit value. HExtends
a 16-bit value to a 32-bit value.
condis an optional condition code. Rdis the destination register. Rnis the register holding the number to add (SXTA and UXTA only). Rmis the register holding the value to extend. rotationis one of: ROR #8Value
from Rm is rotated
right 8 bits. ROR #16Value
from Rm is rotated
right 16 bits. ROR #24Value
from Rm is rotated
right 24 bits.
If rotation is
omitted, no rotation is performed.
Operation
These instructions do the following: Rotate the value from Rm right
by 0, 8, 16 or 24 bits. Do one of the following to the value obtained: Extract bits[7:0], sign or zero
extend to 32 bits. If the instruction is extend and add, add the
value from Rn. Extract bits[15:0], sign or zero extend to 32 bits.
If the instruction is extend and add, add the value from Rn. Extract bits[23:16] and bits[7:0] and sign or zero
extend them to 16 bits. If the instruction is extend and add, add
them to bits[31:16] and bits[15:0] respectively of Rn to
form bits[31:16] and bits[15:0] of the result.
Register restrictions
You cannot use PC for any register. You can use SP in ARM instructions but these are deprecated
in ARMv6T2 and above. You cannot use SP in Thumb instructions. Condition flags
These instructions do not change the flags. 16-bit instructions
The following forms of these instructions are available in
Thumb code, and are 16-bit instructions: SXTB Rd, RmRd and Rm must
both be Lo registers.
SXTH Rd, RmRd and Rm must
both be Lo registers.
UXTB Rd, RmRd and Rm must
both be Lo registers.
UXTH Rd, RmRd and Rm must
both be Lo registers.
Architectures
These ARM instructions are available in ARMv6 and above. These 32-bit Thumb instructions are available in ARMv6T2 and
above. For the ARMv7-M architecture, they are only available in
an ARMv7E-M implementation. These 16-bit Thumb instructions are available in ARMv6 and
above. Examples
SXTH r3, r9, r4
UXTAB16EQ r0, r0, r4, ROR #16
Incorrect examples
SXTH r9, r3, r2, ROR #12 ; rotation must be by 0, 8, 16, or 24.
See also
|