Searched refs:VECC (Results 1 - 7 of 7) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/VE/
H A DVE.h41 namespace VECC { namespace in namespace:llvm
85 inline static const char *VECondCodeToString(VECC::CondCode CC) {
87 case VECC::CC_IG: return "gt";
88 case VECC::CC_IL: return "lt";
89 case VECC::CC_INE: return "ne";
90 case VECC::CC_IEQ: return "eq";
91 case VECC::CC_IGE: return "ge";
92 case VECC::CC_ILE: return "le";
93 case VECC::CC_AF: return "af";
94 case VECC
[all...]
H A DVEISelDAGToDAG.cpp27 inline static VECC::CondCode intCondCode2Icc(ISD::CondCode CC) {
32 return VECC::CC_IEQ;
34 return VECC::CC_INE;
36 return VECC::CC_IL;
38 return VECC::CC_IG;
40 return VECC::CC_ILE;
42 return VECC::CC_IGE;
44 return VECC::CC_IL;
46 return VECC::CC_ILE;
48 return VECC
[all...]
H A DVEInstrInfo.cpp41 static bool IsIntegerCC(unsigned CC) { return (CC < VECC::CC_AF); }
43 static VECC::CondCode GetOppositeBranchCondition(VECC::CondCode CC) {
45 case VECC::CC_IG:
46 return VECC::CC_ILE;
47 case VECC::CC_IL:
48 return VECC::CC_IGE;
49 case VECC::CC_INE:
50 return VECC::CC_IEQ;
51 case VECC
[all...]
H A DVEISelLowering.cpp2282 .addImm(VECC::CC_ILE)
2294 .addImm(VECC::CC_ILE)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/VE/MCTargetDesc/
H A DVEMCCodeEmitter.cpp144 static_cast<VECC::CondCode>(getMachineOpValue(MI, MO, Fixups, STI)));
H A DVEInstPrinter.cpp220 O << VECondCodeToString((VECC::CondCode)CC);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/VE/AsmParser/
H A DVEAsmParser.cpp856 VECC::CondCode CondCode =
860 if (CondCode != VECC::UNKNOWN &&
861 (!OmitCC || (CondCode != VECC::CC_AT && CondCode != VECC::CC_AF))) {

Completed in 209 milliseconds