Lines Matching refs:CondCodes
28 // The CondCodes constants map directly to the 4-bit encoding of the
30 enum CondCodes { // Meaning (integer) Meaning (floating-point)
54 inline static const char *A64CondCodeToString(A64CC::CondCodes CC) {
76 inline static A64CC::CondCodes A64StringToCondCode(StringRef CondStr) {
77 return StringSwitch<A64CC::CondCodes>(CondStr.lower())
100 inline static A64CC::CondCodes A64InvertCondCode(A64CC::CondCodes CC) {
104 return static_cast<A64CC::CondCodes>(static_cast<unsigned>(CC) ^ 0x1);