Searched defs:CCs (Results 1 - 2 of 2) sorted by relevance

/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp38 std::vector<Record*> CCs = Records.getAllDerivedDefinitions("CallingConv"); local
42 for (unsigned i = 0, e = CCs.size(); i != e; ++i) {
43 if (!CCs[i]->getValueAsBit("Custom")) {
44 O << "static bool " << CCs[i]->getName()
46 << std::string(CCs[i]->getName().size() + 13, ' ')
48 << std::string(CCs[i]->getName().size() + 13, ' ')
54 for (unsigned i = 0, e = CCs.size(); i != e; ++i) {
55 if (!CCs[i]->getValueAsBit("Custom"))
56 EmitCallingConv(CCs[i], O);
/external/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp427 static void InitLibcallCallingConvs(CallingConv::ID *CCs) { argument
429 CCs[i] = CallingConv::C;
707 static void InitCmpLibcallCCs(ISD::CondCode *CCs) { argument
708 memset(CCs, ISD::SETCC_INVALID, sizeof(ISD::CondCode)*RTLIB::UNKNOWN_LIBCALL);
709 CCs[RTLIB::OEQ_F32] = ISD::SETEQ;
710 CCs[RTLIB::OEQ_F64] = ISD::SETEQ;
711 CCs[RTLIB::OEQ_F128] = ISD::SETEQ;
712 CCs[RTLIB::UNE_F32] = ISD::SETNE;
713 CCs[RTLIB::UNE_F64] = ISD::SETNE;
714 CCs[RTLI
[all...]

Completed in 99 milliseconds