Home
last modified time | relevance | path

Searched refs:Records (Results 1 – 25 of 104) sorted by relevance

12345

/external/clang/utils/TableGen/
DTableGenBackends.h35 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);
41 void EmitClangAttrHasAttrImpl(RecordKeeper &Records, raw_ostream &OS);
42 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
43 void EmitClangAttrASTVisitor(RecordKeeper &Records, raw_ostream &OS);
44 void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS);
[all …]
DTableGen.cpp144 bool ClangTableGenMain(raw_ostream &OS, RecordKeeper &Records) { in ClangTableGenMain() argument
147 EmitClangAttrClass(Records, OS); in ClangTableGenMain()
150 EmitClangAttrParserStringSwitches(Records, OS); in ClangTableGenMain()
153 EmitClangAttrImpl(Records, OS); in ClangTableGenMain()
156 EmitClangAttrList(Records, OS); in ClangTableGenMain()
159 EmitClangAttrPCHRead(Records, OS); in ClangTableGenMain()
162 EmitClangAttrPCHWrite(Records, OS); in ClangTableGenMain()
165 EmitClangAttrHasAttrImpl(Records, OS); in ClangTableGenMain()
168 EmitClangAttrSpellingListIndex(Records, OS); in ClangTableGenMain()
171 EmitClangAttrASTVisitor(Records, OS); in ClangTableGenMain()
[all …]
DClangCommentHTMLTagsEmitter.cpp23 void clang::EmitClangCommentHTMLTags(RecordKeeper &Records, raw_ostream &OS) { in EmitClangCommentHTMLTags() argument
24 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag"); in EmitClangCommentHTMLTags()
38 void clang::EmitClangCommentHTMLTagsProperties(RecordKeeper &Records, in EmitClangCommentHTMLTagsProperties() argument
40 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag"); in EmitClangCommentHTMLTagsProperties()
DClangDiagnosticsEmitter.cpp42 RecordKeeper &Records; member in __anon0cdd291e0111::DiagGroupParentMap
45 DiagGroupParentMap(RecordKeeper &records) : Records(records) { in DiagGroupParentMap()
47 = Records.getAllDerivedDefinitions("DiagGroup"); in DiagGroupParentMap()
97 RecordKeeper &Records; member in __anon0cdd291e0211::DiagCategoryIDMap
101 DiagCategoryIDMap(RecordKeeper &records) : Records(records) { in DiagCategoryIDMap()
102 DiagGroupParentMap ParentInfo(Records); in DiagCategoryIDMap()
109 Records.getAllDerivedDefinitions("Diagnostic"); in DiagCategoryIDMap()
484 void EmitClangDiagsDefs(RecordKeeper &Records, raw_ostream &OS, in EmitClangDiagsDefs() argument
497 Records.getAllDerivedDefinitions("Diagnostic"); in EmitClangDiagsDefs()
500 = Records.getAllDerivedDefinitions("DiagGroup"); in EmitClangDiagsDefs()
[all …]
DClangCommentCommandInfoEmitter.cpp23 void EmitClangCommentCommandInfo(RecordKeeper &Records, raw_ostream &OS) { in EmitClangCommentCommandInfo() argument
29 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command"); in EmitClangCommentCommandInfo()
109 void EmitClangCommentCommandList(RecordKeeper &Records, raw_ostream &OS) { in EmitClangCommentCommandList() argument
117 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command"); in EmitClangCommentCommandList()
DClangAttrEmitter.cpp152 static ParsedAttrMap getParsedAttrList(const RecordKeeper &Records, in getParsedAttrList() argument
154 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr"); in getParsedAttrList()
1503 static void emitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS) { in emitClangAttrLateParsedList() argument
1505 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); in emitClangAttrLateParsedList()
1525 static void emitClangAttrTypeArgList(RecordKeeper &Records, raw_ostream &OS) { in emitClangAttrTypeArgList() argument
1527 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr"); in emitClangAttrTypeArgList()
1551 static void emitClangAttrArgContextList(RecordKeeper &Records, raw_ostream &OS) { in emitClangAttrArgContextList() argument
1553 ParsedAttrMap Attrs = getParsedAttrList(Records); in emitClangAttrArgContextList()
1581 static void emitClangAttrIdentifierArgList(RecordKeeper &Records, raw_ostream &OS) { in emitClangAttrIdentifierArgList() argument
1583 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); in emitClangAttrIdentifierArgList()
[all …]
DClangASTNodesEmitter.cpp31 RecordKeeper &Records; member in __anon8bcd19e70111::ClangASTNodesEmitter
58 : Records(R), Root(N, SMLoc(), R), BaseSuffix(S) in ClangASTNodesEmitter()
156 = Records.getAllDerivedDefinitions(Root.getName()); in run()
185 void EmitClangDeclContext(RecordKeeper &Records, raw_ostream &OS) { in EmitClangDeclContext() argument
202 = Records.getAllDerivedDefinitions("DeclContext"); in EmitClangDeclContext()
203 RecordVector Decls = Records.getAllDerivedDefinitions("Decl"); in EmitClangDeclContext()
/external/llvm/utils/TableGen/
DTableGen.cpp101 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) { in LLVMTableGenMain() argument
104 OS << Records; // No argument, dump all contents in LLVMTableGenMain()
107 EmitCodeEmitter(Records, OS); in LLVMTableGenMain()
110 EmitRegisterInfo(Records, OS); in LLVMTableGenMain()
113 EmitInstrInfo(Records, OS); in LLVMTableGenMain()
116 EmitCallingConv(Records, OS); in LLVMTableGenMain()
119 EmitAsmWriter(Records, OS); in LLVMTableGenMain()
122 EmitAsmMatcher(Records, OS); in LLVMTableGenMain()
125 EmitDisassembler(Records, OS); in LLVMTableGenMain()
128 EmitPseudoLowering(Records, OS); in LLVMTableGenMain()
[all …]
DAttributes.cpp25 Attributes(RecordKeeper &R) : Records(R) {} in Attributes()
34 const std::vector<Record *> &Records);
36 const std::vector<Record *> &Records);
38 RecordKeeper &Records; member in __anon87fc73640111::Attributes
48 Records.getAllDerivedDefinitions("EnumAttr"); in emitTargetIndependentEnums()
61 Records.getAllDerivedDefinitions("EnumAttr"); in emitConversionFn()
107 printEnumAttrClasses(OS ,Records.getAllDerivedDefinitions("EnumAttr")); in emitFnAttrCompatCheck()
108 printStrBoolAttrClasses(OS , Records.getAllDerivedDefinitions("StrBoolAttr")); in emitFnAttrCompatCheck()
115 Records.getAllDerivedDefinitions("CompatRule"); in emitFnAttrCompatCheck()
127 Records.getAllDerivedDefinitions("MergeRule"); in emitFnAttrCompatCheck()
[all …]
DDisassemblerEmitter.cpp105 void EmitDisassembler(RecordKeeper &Records, raw_ostream &OS) { in EmitDisassembler() argument
106 CodeGenTarget Target(Records); in EmitDisassembler()
135 EmitFixedLenDecoder(Records, OS, PredicateNamespace, in EmitDisassembler()
143 EmitFixedLenDecoder(Records, OS, Target.getName(), in EmitDisassembler()
DCTagsEmitter.cpp48 RecordKeeper &Records; member in __anonabea00890111::CTagsEmitter
50 CTagsEmitter(RecordKeeper &R) : Records(R) {} in CTagsEmitter()
66 const auto &Classes = Records.getClasses(); in run()
67 const auto &Defs = Records.getDefs(); in run()
DCodeGenMapTable.cpp202 MapTableEmitter(CodeGenTarget &Target, RecordKeeper &Records, Record *IMRec): in MapTableEmitter() argument
205 InstrDefs = Records.getAllDerivedDefinitions(FilterClass); in MapTableEmitter()
504 static void emitEnums(raw_ostream &OS, RecordKeeper &Records) { in emitEnums() argument
507 InstrMapVec = Records.getAllDerivedDefinitions("InstrMapping"); in emitEnums()
567 void EmitMapTable(RecordKeeper &Records, raw_ostream &OS) { in EmitMapTable() argument
568 CodeGenTarget Target(Records); in EmitMapTable()
571 InstrMapVec = Records.getAllDerivedDefinitions("InstrMapping"); in EmitMapTable()
582 emitEnums(OS, Records); in EmitMapTable()
588 MapTableEmitter IMap(Target, Records, CurMap); in EmitMapTable()
DCodeGenTarget.cpp148 : Records(records) { in CodeGenTarget()
149 std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target"); in CodeGenTarget()
223 RegBank = llvm::make_unique<CodeGenRegBank>(Records); in getRegBank()
228 RegAltNameIndices = Records.getAllDerivedDefinitions("RegAltNameIndex"); in ReadRegAltNameIndices()
273 SchedModels = llvm::make_unique<CodeGenSchedModels>(Records, *this); in getSchedModels()
278 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction"); in ReadInstructions()
291 RecordKeeper &Records) { in GetInstByName() argument
292 const Record *Rec = Records.getDef(Name); in GetInstByName()
309 const CodeGenInstruction *Instr = GetInstByName(*p, Insts, Records); in ComputeInstrsByEnum()
346 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction"); in reverseBitsForLittleEndianEncoding()
/external/swiftshader/third_party/LLVM/utils/TableGen/
DTableGen.cpp109 bool operator()(raw_ostream &OS, RecordKeeper &Records) { in operator ()() argument
112 OS << Records; // No argument, dump all contents in operator ()()
115 CodeEmitterGen(Records).run(OS); in operator ()()
118 RegisterInfoEmitter(Records).run(OS); in operator ()()
121 InstrInfoEmitter(Records).run(OS); in operator ()()
124 CallingConvEmitter(Records).run(OS); in operator ()()
127 AsmWriterEmitter(Records).run(OS); in operator ()()
130 ARMDecoderEmitter(Records).run(OS); in operator ()()
133 AsmMatcherEmitter(Records).run(OS); in operator ()()
136 DisassemblerEmitter(Records).run(OS); in operator ()()
[all …]
DDisassemblerEmitter.cpp99 CodeGenTarget Target(Records); in run()
134 FixedLenDecoderEmitter(Records, in run()
142 FixedLenDecoderEmitter(Records, Target.getName()).run(OS); in run()
DInstrEnumEmitter.h23 RecordKeeper &Records; variable
25 InstrEnumEmitter(RecordKeeper &R) : Records(R) {} in InstrEnumEmitter()
DDisassemblerEmitter.h18 RecordKeeper &Records; variable
20 DisassemblerEmitter(RecordKeeper &R) : Records(R) {} in DisassemblerEmitter()
DAsmMatcherEmitter.h23 RecordKeeper &Records; variable
25 AsmMatcherEmitter(RecordKeeper &R) : Records(R) {} in AsmMatcherEmitter()
DSubtargetEmitter.cpp29 std::vector<Record*> DefList = Records.getAllDerivedDefinitions(ClassName); in Enumeration()
75 Records.getAllDerivedDefinitions("SubtargetFeature"); in FeatureKeyValues()
138 Records.getAllDerivedDefinitions("Processor"); in CPUKeyValues()
301 Records.getAllDerivedDefinitions("ProcessorItineraries"); in EmitStageAndOperandCycleData()
478 Records.getAllDerivedDefinitions("ProcessorItineraries"); in EmitProcessorData()
527 Records.getAllDerivedDefinitions("Processor"); in EmitProcessorLookup()
569 Records.getAllDerivedDefinitions("InstrItinClass"); in EmitData()
598 Records.getAllDerivedDefinitions("SubtargetFeature"); in ParseFeaturesFunction()
641 Target = CodeGenTarget(Records).getName(); in run()
DDAGISelEmitter.h26 RecordKeeper &Records; variable
29 explicit DAGISelEmitter(RecordKeeper &R) : Records(R), CGP(R) {} in DAGISelEmitter()
DARMDecoderEmitter.h24 RecordKeeper &Records; variable
26 ARMDecoderEmitter(RecordKeeper &R) : Records(R) { in ARMDecoderEmitter()
/external/llvm/include/llvm/DebugInfo/CodeView/
DMemoryTypeTableBuilder.h25 bool empty() const { return Records.empty(); } in empty()
30 for (StringRef R : Records) { in ForEachRecord()
40 std::vector<StringRef> Records;
/external/swiftshader/third_party/LLVM/lib/TableGen/
DMain.cpp51 RecordKeeper Records; in TableGenMain() local
70 TGParser Parser(SrcMgr, Records); in TableGenMain()
104 if (Action(Out.os(), Records)) in TableGenMain()
/external/llvm/lib/TableGen/
DMain.cpp74 RecordKeeper Records; in TableGenMain() local
92 TGParser Parser(SrcMgr, Records); in TableGenMain()
109 if (MainFn(Out.os(), Records)) in TableGenMain()
/external/clang/include/clang/ASTMatchers/
DASTMatchFinder.h125 Profiling(llvm::StringMap<llvm::TimeRecord> &Records) in Profiling()
126 : Records(Records) {} in Profiling()
129 llvm::StringMap<llvm::TimeRecord> &Records; member

12345