libTriton version 1.0 build 1590
Loading...
Searching...
No Matches
CONDITION

[python api] All information about the CONDITION Python namespace.

Description


The CONDITION namespace contains all kinds of instruction conditions for AArch64.

Python API - Items of the CONDITION namespace


  • CONDITION.ARM.INVALID
    Invalid code condition.
  • CONDITION.ARM.AL
    Always. Any flags. This suffix is normally omitted.
  • CONDITION.ARM.EQ
    Equal. Z set.
  • CONDITION.ARM.GE
    Signed >=. N and V the same.
  • CONDITION.ARM.GT
    Signed >. Z clear, N and V the same.
  • CONDITION.ARM.HI
    Higher (unsigned >). C set and Z clear.
  • CONDITION.ARM.HS
    Higher or same (unsigned >=). C set.
  • CONDITION.ARM.LE
    Signed <=. Z set, N and V differ.
  • CONDITION.ARM.LO
    Lower (unsigned <). C clear.
  • CONDITION.ARM.LS
    Lower or same (unsigned <=). C clear or Z set.
  • CONDITION.ARM.LT
    Signed <. N and V differ.
  • CONDITION.ARM.MI
    Negative. N set.
  • CONDITION.ARM.NE
    Not equal. Z clear.
  • CONDITION.ARM.PL
    Positive or zero. N clear.
  • CONDITION.ARM.VC
    No overflow. V clear.
  • CONDITION.ARM.VS
    Overflow. V set.