Syntax: UMULL {<cond>}{S} <destLo>, <destHi>, <operand1>, <operand2>
Operation: destHi, destLo = unsigned(operand one * operand two)
Flags: N,Z,C,V see note
This instruction performs 64-bit unsigned multiplication of the two operands, with the result being stored in the two destination registers.
There are certain restrictions associated with the use of this instruction:
- The 4 data fields specified must be simple registers
- The destination registers and operand1 must be different registers
- R15 may not be used as either of the destination registers
Example:
UMULL R0,R1,R2,R3 ; unsigned 64 bit result of = R2 * R3
It is only available on M variants of the ARM.
|
|
|