Home | History | Annotate | Download | only in TableGen

Lines Matching defs:CC

31   void EmitCallingConv(Record *CC, raw_ostream &O);
41 // Emit prototypes for all of the CC's so that they can forward ref each
58 void CallingConvEmitter::EmitCallingConv(Record *CC, raw_ostream &O) {
59 ListInit *CCActions = CC->getValueAsListInit("Actions");
62 O << "\n\nstatic bool " << CC->getName()
64 << std::string(CC->getName().size()+13, ' ')
66 << std::string(CC->getName().size()+13, ' ')
74 O << "\n return true; // CC didn't match.\n";
105 Record *CC = Action->getValueAsDef("CC");
106 O << IndentStr << "if (!" << CC->getName()