/external/clang/utils/TableGen/ |
TableGenBackends.h | 23 class RecordKeeper; 27 using llvm::RecordKeeper; 31 void EmitClangDeclContext(RecordKeeper &RK, raw_ostream &OS); 32 void EmitClangASTNodes(RecordKeeper &RK, raw_ostream &OS, 35 void EmitClangAttrParserStringSwitches(RecordKeeper &Records, raw_ostream &OS); 36 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS); 37 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS); 38 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS); 39 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS); 40 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS) [all...] |
ClangCommentHTMLTagsEmitter.cpp | 23 void clang::EmitClangCommentHTMLTags(RecordKeeper &Records, raw_ostream &OS) { 38 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 | 135 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);
|
Record.h | 34 class RecordKeeper; [all...] |
/external/llvm/utils/TableGen/ |
TableGenBackends.h | 21 // EmitFoo(RecordKeeper &RK, raw_ostream &OS /*, anything else you need */ ) 26 // The RecordKeeper is just a top-level container for an in-memory 34 // access the node-graph. RecordKeeper also provides a handy method 36 // the exact interfaces provided by Record's and RecordKeeper. 63 class RecordKeeper; 65 void EmitIntrinsics(RecordKeeper &RK, raw_ostream &OS, bool TargetOnly = false); 66 void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS); 67 void EmitAsmWriter(RecordKeeper &RK, raw_ostream &OS); 68 void EmitCallingConv(RecordKeeper &RK, raw_ostream &OS); 69 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS) [all...] |
Attributes.cpp | 25 Attributes(RecordKeeper &R) : Records(R) {} 31 RecordKeeper &Records; 55 void EmitAttributes(RecordKeeper &RK, raw_ostream &OS) {
|
CodeGenIntrinsics.h | 23 class RecordKeeper; 99 std::vector<CodeGenIntrinsic> LoadIntrinsics(const RecordKeeper &RC,
|
CTagsEmitter.cpp | 48 RecordKeeper &Records; 50 CTagsEmitter(RecordKeeper &R) : Records(R) {} 85 void EmitCTags(RecordKeeper &RK, raw_ostream &OS) { CTagsEmitter(RK).run(OS); }
|
DisassemblerEmitter.cpp | 98 extern void EmitFixedLenDecoder(RecordKeeper &RK, raw_ostream &OS, 106 void EmitDisassembler(RecordKeeper &Records, raw_ostream &OS) {
|
CodeGenTarget.h | 65 RecordKeeper &Records; 81 CodeGenTarget(RecordKeeper &Records);
|
DAGISelEmitter.cpp | 29 explicit DAGISelEmitter(RecordKeeper &R) : CGP(R) {} 170 void EmitDAGISel(RecordKeeper &RK, raw_ostream &OS) {
|
CallingConvEmitter.cpp | 24 RecordKeeper &Records; 26 explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {} 279 void EmitCallingConv(RecordKeeper &RK, raw_ostream &OS) {
|
CodeEmitterGen.cpp | 30 RecordKeeper &Records; 32 CodeEmitterGen(RecordKeeper &R) : Records(R) {} 321 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS) {
|
PseudoLoweringEmitter.cpp | 46 RecordKeeper &Records; 62 PseudoLoweringEmitter(RecordKeeper &R) : Records(R), Target(R) {} 297 void EmitPseudoLowering(RecordKeeper &RK, raw_ostream &OS) {
|
TableGen.cpp | 97 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
|
CodeGenMapTable.cpp | 202 MapTableEmitter(CodeGenTarget &Target, RecordKeeper &Records, Record *IMRec): 494 static void emitEnums(raw_ostream &OS, RecordKeeper &Records) { 560 void EmitMapTable(RecordKeeper &Records, raw_ostream &OS) {
|
DFAPacketizerEmitter.cpp | 108 RecordKeeper &Records; 111 DFAPacketizerEmitter(RecordKeeper &R); 517 DFAPacketizerEmitter::DFAPacketizerEmitter(RecordKeeper &R): [all...] |
/external/llvm/lib/TableGen/ |
Main.cpp | 74 RecordKeeper Records;
|
TGParser.h | 27 class RecordKeeper; 70 RecordKeeper &Records; 87 TGParser(SourceMgr &SrcMgr, RecordKeeper &records)
|