Searched refs:FCC_BEGIN (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | Sparc.h | 59 FCC_BEGIN = 16, enumerator 60 FCC_A = 8 + FCC_BEGIN, // Always 61 FCC_N = 0 + FCC_BEGIN, // Never 62 FCC_U = 7 + FCC_BEGIN, // Unordered 63 FCC_G = 6 + FCC_BEGIN, // Greater 64 FCC_UG = 5 + FCC_BEGIN, // Unordered or Greater 65 FCC_L = 4 + FCC_BEGIN, // Less 66 FCC_UL = 3 + FCC_BEGIN, // Unordered or Less 67 FCC_LG = 2 + FCC_BEGIN, // Less or Greater 68 FCC_NE = 1 + FCC_BEGIN, // Not Equal [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/ |
H A D | SparcInstPrinter.cpp | 194 CC = (CC < SPCC::FCC_BEGIN) ? (CC + SPCC::FCC_BEGIN) : CC; in printCCOperand()
|