/external/clang/utils/TableGen/ |
TableGenBackends.h | 20 class RecordKeeper; 24 using llvm::RecordKeeper; 28 void EmitClangDeclContext(RecordKeeper &RK, raw_ostream &OS); 29 void EmitClangASTNodes(RecordKeeper &RK, raw_ostream &OS, 32 void EmitClangAttrParserStringSwitches(RecordKeeper &Records, raw_ostream &OS); 33 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS); 34 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS); 35 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS); 36 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS); 37 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS) [all...] |
ClangCommentHTMLTagsEmitter.cpp | 23 void clang::EmitClangCommentHTMLTags(RecordKeeper &Records, raw_ostream &OS) { 39 void clang::EmitClangCommentHTMLTagsProperties(RecordKeeper &Records,
|
ClangCommentCommandInfoEmitter.cpp | 23 void EmitClangCommentCommandInfo(RecordKeeper &Records, raw_ostream &OS) { 109 void EmitClangCommentCommandList(RecordKeeper &Records, raw_ostream &OS) {
|
ClangASTNodesEmitter.cpp | 31 RecordKeeper &Records; 56 explicit ClangASTNodesEmitter(RecordKeeper &R, const std::string &N, 178 void EmitClangASTNodes(RecordKeeper &RK, raw_ostream &OS, 185 void EmitClangDeclContext(RecordKeeper &Records, raw_ostream &OS) {
|
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp | 50 void EmitClangCommentHTMLNamedCharacterReferences(RecordKeeper &Records,
|
ClangDiagnosticsEmitter.cpp | 42 RecordKeeper &Records; 45 DiagGroupParentMap(RecordKeeper &records) : Records(records) { 97 RecordKeeper &Records; 101 DiagCategoryIDMap(RecordKeeper &records) : Records(records) { 485 void EmitClangDiagsDefs(RecordKeeper &Records, raw_ostream &OS, 816 static void emitCategoryTable(RecordKeeper &Records, raw_ostream &OS) { 825 void EmitClangDiagGroups(RecordKeeper &Records, raw_ostream &OS) { 879 void EmitClangDiagsIndexName(RecordKeeper &Records, raw_ostream &OS) { [all...] |
ClangAttrEmitter.cpp | 134 static ParsedAttrMap getParsedAttrList(const RecordKeeper &Records, [all...] |
TableGen.cpp | 143 bool ClangTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
|
/external/llvm/include/llvm/TableGen/ |
Main.h | 19 class RecordKeeper; 23 typedef bool TableGenMainFn(raw_ostream &OS, RecordKeeper &Records);
|
SetTheory.h | 61 class RecordKeeper;
|
/external/llvm/utils/TableGen/ |
TableGenBackends.h | 19 // EmitFoo(RecordKeeper &RK, raw_ostream &OS /*, anything else you need */ ) 24 // The RecordKeeper is just a top-level container for an in-memory 32 // access the node-graph. RecordKeeper also provides a handy method 34 // the exact interfaces provided by Record's and RecordKeeper. 61 class RecordKeeper; 63 void EmitIntrinsics(RecordKeeper &RK, raw_ostream &OS, bool TargetOnly = false); 64 void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS); 65 void EmitAsmWriter(RecordKeeper &RK, raw_ostream &OS); 66 void EmitCallingConv(RecordKeeper &RK, raw_ostream &OS); 67 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS) [all...] |
CodeGenIntrinsics.h | 23 class RecordKeeper; 95 std::vector<CodeGenIntrinsic> LoadIntrinsics(const RecordKeeper &RC,
|
DisassemblerEmitter.cpp | 98 extern void EmitFixedLenDecoder(RecordKeeper &RK, raw_ostream &OS, 106 void EmitDisassembler(RecordKeeper &Records, raw_ostream &OS) {
|
CTagsEmitter.cpp | 50 RecordKeeper &Records; 52 CTagsEmitter(RecordKeeper &R) : Records(R) {} 96 void EmitCTags(RecordKeeper &RK, raw_ostream &OS) { CTagsEmitter(RK).run(OS); }
|
CodeGenTarget.h | 65 RecordKeeper &Records; 80 CodeGenTarget(RecordKeeper &Records);
|
DAGISelEmitter.cpp | 29 explicit DAGISelEmitter(RecordKeeper &R) : CGP(R) {} 170 void EmitDAGISel(RecordKeeper &RK, raw_ostream &OS) {
|
DFAPacketizerEmitter.cpp | 41 RecordKeeper &Records; 44 DFAPacketizerEmitter(RecordKeeper &R); 250 DFAPacketizerEmitter::DFAPacketizerEmitter(RecordKeeper &R): 502 void EmitDFAPacketizer(RecordKeeper &RK, raw_ostream &OS) {
|
CallingConvEmitter.cpp | 24 RecordKeeper &Records; 26 explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {} 259 void EmitCallingConv(RecordKeeper &RK, raw_ostream &OS) {
|
CodeEmitterGen.cpp | 38 RecordKeeper &Records; 40 CodeEmitterGen(RecordKeeper &R) : Records(R) {} 335 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS) {
|
PseudoLoweringEmitter.cpp | 46 RecordKeeper &Records; 62 PseudoLoweringEmitter(RecordKeeper &R) : Records(R), Target(R) {} 298 void EmitPseudoLowering(RecordKeeper &RK, raw_ostream &OS) {
|
CodeGenMapTable.cpp | 202 MapTableEmitter(CodeGenTarget &Target, RecordKeeper &Records, Record *IMRec): 498 static void emitEnums(raw_ostream &OS, RecordKeeper &Records) { 564 void EmitMapTable(RecordKeeper &Records, raw_ostream &OS) {
|
TableGen.cpp | 94 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
|
CodeGenSchedule.h | 220 RecordKeeper &Records; 249 CodeGenSchedModels(RecordKeeper& RK, const CodeGenTarget &TGT);
|
/external/llvm/lib/TableGen/ |
TGParser.h | 27 class RecordKeeper; 70 RecordKeeper &Records; 87 TGParser(SourceMgr &SrcMgr, RecordKeeper &records)
|
Main.cpp | 81 RecordKeeper Records;
|