 | Assembler User Guide |  |
|
|
| Condition code meaningsThe precise meanings of the condition code flags differ depending on whether the flags were set by a floating-point operation or by an ARM data processing instruction. This is because: floating-point values are never unsigned, so the unsigned conditions are not required Not-a-Number (NaN) values have no ordering relationship with numbers or with each other, so additional conditions are required to account for unordered results.
The only VFP instruction that can be used to update the status flags is VCMP. Other VFP instructions cannot modify the condition code flags. The VCMP instruction does not update the flags in the APSR directly, but updates a separate set of flags in the FPSCR. To use these flags to control conditional instructions, including conditional VFP instructions, you must first copy them into the APSR using a VMRS instruction:
VMRS APSR_nzcv, FPSCR
The meanings of the condition code mnemonics are shown in Table 16. Table 16. Condition codes | Mnemonic | Meaning after ARM data processing instruction | Meaning after VFP VCMP instruction |
|---|
EQ | Equal | Equal | NE | Not equal | Not equal, or unordered | CS | Carry set | Greater than or equal, or unordered | HS | Unsigned higher or same | Greater than or equal, or unordered | CC | Carry clear | Less than | LO | Unsigned lower | Less than | MI | Negative | Less than | PL | Positive or zero | Greater than or equal, or unordered | VS | Overflow | Unordered (at least one NaN operand) | VC | No overflow | Not unordered | HI | Unsigned higher | Greater than, or unordered | LS | Unsigned lower or same | Less than or equal | GE | Signed greater than or equal | Greater than or equal | LT | Signed less than | Less than, or unordered | GT | Signed greater than | Greater than | LE | Signed less than or equal | Less than or equal, or unordered | AL | Always (normally omitted) | Always (normally omitted) |
NoteThe type of the instruction that last updated the flags in the APSR determines the meaning of condition codes. See also
|
|