HomeSort by relevance Sort by last modified time
    Searched refs:Abbrevs (Results 1 - 8 of 8) sorted by null

  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 30 llvm::DenseMap<unsigned, unsigned> Abbrevs;
35 assert(Abbrevs.find(recordID) == Abbrevs.end()
37 Abbrevs[recordID] = abbrevID;
41 assert(Abbrevs.find(recordID) != Abbrevs.end() &&
43 return Abbrevs[recordID];
206 AbbreviationMap Abbrevs;
331 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record,
342 State->Stream.EmitRecordWithAbbrev(State->Abbrevs.get(RECORD_SOURCE_RANGE)
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 35 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
36 for (size_t i = 0, e = Abbrevs.size(); i != e; ++i)
37 Abbrevs[i]->addRef();
42 // Free all the Abbrevs.
47 // Free all the Abbrevs in the block scope.
49 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
50 for (size_t i = 0, e = Abbrevs.size(); i != e; ++i)
51 Abbrevs[i]->dropRef();
63 // Add the abbrevs specific to this block to the CurAbbrevs list.
66 for (size_t i = 0, e = Info->Abbrevs.size(); i != e; ++i)
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 42 /// CurAbbrevs - Abbrevs installed at in this block.
59 std::vector<BitCodeAbbrev*> Abbrevs;
107 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
109 Info.Abbrevs[i]->dropRef();
231 // If there is a blockinfo for this BlockID, add all the predefined abbrevs
234 for (unsigned i = 0, e = static_cast<unsigned>(Info->Abbrevs.size());
236 CurAbbrevs.push_back(Info->Abbrevs[i]);
237 Info->Abbrevs[i]->addRef();
245 // Delete all abbrevs.
540 Info.Abbrevs.push_back(Abbv)
    [all...]
BitstreamReader.h 40 std::vector<BitCodeAbbrev*> Abbrevs;
82 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
84 Info.Abbrevs[i]->dropRef();
189 /// CurAbbrevs - Abbrevs installed at in this block.
511 // Delete abbrevs from popped scope.
  /external/llvm/lib/DebugInfo/
DWARFUnit.h 44 const DWARFAbbreviationDeclarationSet *Abbrevs;
109 return Abbrevs;
DWARFUnit.cpp 67 Abbrevs = Abbrev->getAbbreviationDeclarationSet(AbbrOffset);
68 if (Abbrevs == nullptr)
103 Abbrevs = nullptr;
  /external/llvm/lib/CodeGen/AsmPrinter/
DIEHash.cpp 35 const DIEAbbrev &Abbrevs = Die.getAbbrev();
40 if (Abbrevs.getData()[i].getAttribute() == Attr) {
127 const DIEAbbrev &Abbrevs = Die.getAbbrev();
132 Attrs.NAME.Desc = &Abbrevs.getData()[i]; \
137 << dwarf::AttributeString(Abbrevs.getData()[i].getAttribute())
139 switch (Abbrevs.getData()[i].getAttribute()) {
DIE.cpp 130 const DIEAbbrev &Abbrevs = getAbbrev();
135 if (Abbrevs.getData()[i].getAttribute() == Attribute)

Completed in 246 milliseconds