I am using assembler for the ARM7TDMI (ARMv4T architecture). I'm using the Thumb mode because the ROM has a 16-bit bus (GBA). I want to sign-extend a 32-bit register to get another register with all bits set to a copy of bit 31 of the source register. The register to sign-extend is a high register, in particular R9.
I'm currently using this:
mov r0,r9
mvn r0,r0 @ sign bit needs to be inverted due to
@ the silly ARM carry convention
add r0,r0 @ copy sign bit to carry
sbc r0,r0 @ sign-extend R9
but that takes 4 instructions. Is there a shorter way?
Use an arithmetic right shift by 31 or 32 to copy the sign bit as
-1
or0
into a new register: