HomeSort by relevance Sort by last modified time
    Searched defs:Records (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/swiftshader/third_party/LLVM/utils/TableGen/
AsmMatcherEmitter.h 23 RecordKeeper &Records;
25 AsmMatcherEmitter(RecordKeeper &R) : Records(R) {}
CodeEmitterGen.h 28 RecordKeeper &Records;
30 CodeEmitterGen(RecordKeeper &R) : Records(R) {}
DisassemblerEmitter.h 18 RecordKeeper &Records;
20 DisassemblerEmitter(RecordKeeper &R) : Records(R) {}
EDEmitter.h 24 RecordKeeper &Records;
InstrEnumEmitter.h 23 RecordKeeper &Records;
25 InstrEnumEmitter(RecordKeeper &R) : Records(R) {}
RegisterInfoEmitter.h 29 RecordKeeper &Records;
31 RegisterInfoEmitter(RecordKeeper &R) : Records(R) {}
CallingConvEmitter.h 23 RecordKeeper &Records;
25 explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {}
DAGISelEmitter.h 26 RecordKeeper &Records;
29 explicit DAGISelEmitter(RecordKeeper &R) : Records(R), CGP(R) {}
FastISelEmitter.h 28 RecordKeeper &Records;
ARMDecoderEmitter.h 24 RecordKeeper &Records;
26 ARMDecoderEmitter(RecordKeeper &R) : Records(R) {
AsmWriterEmitter.h 28 RecordKeeper &Records;
32 AsmWriterEmitter(RecordKeeper &R) : Records(R) {}
InstrInfoEmitter.h 31 RecordKeeper &Records;
36 InstrInfoEmitter(RecordKeeper &R) : Records(R), CDP(R) { }
IntrinsicEmitter.h 22 RecordKeeper &Records;
28 : Records(R), TargetOnly(T) {}
SubtargetEmitter.h 28 RecordKeeper &Records;
59 SubtargetEmitter(RecordKeeper &R) : Records(R), HasItineraries(false) {}
  /external/llvm/lib/TableGen/
Main.cpp 74 RecordKeeper Records;
92 TGParser Parser(SrcMgr, Records);
109 if (MainFn(Out.os(), Records))
  /external/swiftshader/third_party/LLVM/lib/TableGen/
Main.cpp 51 RecordKeeper Records;
70 TGParser Parser(SrcMgr, Records);
104 if (Action(Out.os(), Records))
TGParser.h 54 RecordKeeper &Records;
56 TGParser(SourceMgr &SrcMgr, RecordKeeper &records) :
57 Lex(SrcMgr), CurMultiClass(0), Records(records) {}
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
Main.cpp 78 RecordKeeper Records;
94 TGParser Parser(SrcMgr, Records);
109 if (MainFn(Out.os(), Records))
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
TypeTableCollection.h 23 explicit TypeTableCollection(ArrayRef<ArrayRef<uint8_t>> Records);
38 ArrayRef<ArrayRef<uint8_t>> Records;
DebugSymbolsSubsection.h 30 CVSymbolArray::Iterator begin() const { return Records.begin(); }
31 CVSymbolArray::Iterator end() const { return Records.end(); }
34 CVSymbolArray Records;
51 std::vector<CVSymbol> Records;
LazyRandomTypeCollection.h 31 /// offset into the type stream, because type records are variable-lengthed.
92 /// Number of actual records.
104 std::vector<CacheEntry> Records;
  /external/llvm/include/llvm/DebugInfo/CodeView/
MemoryTypeTableBuilder.h 25 bool empty() const { return Records.empty(); }
30 for (StringRef R : Records) {
40 std::vector<StringRef> Records;
  /external/llvm/utils/TableGen/
Attributes.cpp 25 Attributes(RecordKeeper &R) : Records(R) {}
34 const std::vector<Record *> &Records);
36 const std::vector<Record *> &Records);
38 RecordKeeper &Records;
48 Records.getAllDerivedDefinitions("EnumAttr");
61 Records.getAllDerivedDefinitions("EnumAttr");
107 printEnumAttrClasses(OS ,Records.getAllDerivedDefinitions("EnumAttr"));
108 printStrBoolAttrClasses(OS , Records.getAllDerivedDefinitions("StrBoolAttr"));
115 Records.getAllDerivedDefinitions("CompatRule");
127 Records.getAllDerivedDefinitions("MergeRule")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/XRay/
Trace.h 10 // Defines the XRay Trace class representing records in an XRay trace file.
27 /// A Trace object represents the records that have been loaded from XRay
49 std::vector<XRayRecord> Records;
59 citerator begin() const { return Records.begin(); }
60 citerator end() const { return Records.end(); }
61 size_t size() const { return Records.size(); }
64 /// This function will attempt to load XRay trace records from the provided
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
GSIStreamBuilder.cpp 32 std::vector<CVSymbol> Records;
45 Records.push_back(SymbolSerializer::writeOneSymbol(Copy, Msf.getAllocator(),
48 void addSymbol(const CVSymbol &Symbol) { Records.push_back(Symbol); }
61 for (const auto &Sym : Records)
109 for (const CVSymbol &Sym : Records) {
122 // Compute the three tables: the hash records in bucket and chain order, the
124 HashRecords.reserve(Records.size());
168 Size += PSH->Records.size() * sizeof(uint32_t); // AddrMap
179 // First we write public symbol records, then we write global symbol records
    [all...]

Completed in 197 milliseconds

1 2 3 4