Searched refs:Abbrevs (Results 1 - 8 of 8) sorted by relevance

/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp30 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in class:__anon17929::AbbreviationMap
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; member in struct:__anon17929::SDiagsWriter::SharedState
331 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record,
342 State->Stream.EmitRecordWithAbbrev(State->Abbrevs
377 AbbreviationMap &Abbrevs = State->Abbrevs; local
463 AbbreviationMap &Abbrevs = State->Abbrevs; local
591 AbbreviationMap &Abbrevs = State->Abbrevs; local
652 AbbreviationMap &Abbrevs = State->Abbrevs; local
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp35 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; local
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; local
50 for (size_t i = 0, e = Abbrevs.size(); i != e; ++i)
51 Abbrevs[i]->dropRef();
66 for (size_t i = 0, e = Info->Abbrevs.size(); i != e; ++i) {
67 CurAbbrevs.push_back(Info->Abbrevs[
[all...]
/external/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h42 /// CurAbbrevs - Abbrevs installed at in this block.
59 std::vector<BitCodeAbbrev*> Abbrevs; member in struct:llvm::BitstreamWriter::BlockInfo
107 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
109 Info.Abbrevs[i]->dropRef();
234 for (unsigned i = 0, e = static_cast<unsigned>(Info->Abbrevs.size());
236 CurAbbrevs.push_back(Info->Abbrevs[i]);
237 Info->Abbrevs[i]->addRef();
540 Info.Abbrevs.push_back(Abbv);
542 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV;
H A DBitstreamReader.h40 std::vector<BitCodeAbbrev*> Abbrevs; member in struct:llvm::BitstreamReader::BlockInfo
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.
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp35 const DIEAbbrev &Abbrevs = Die.getAbbrev(); local
40 if (Abbrevs.getData()[i].getAttribute() == Attr) {
127 const DIEAbbrev &Abbrevs = Die.getAbbrev(); local
132 Attrs.NAME.Desc = &Abbrevs.getData()[i]; \
137 << dwarf::AttributeString(Abbrevs.getData()[i].getAttribute())
139 switch (Abbrevs.getData()[i].getAttribute()) {
H A DDIE.cpp130 const DIEAbbrev &Abbrevs = getAbbrev(); local
135 if (Abbrevs.getData()[i].getAttribute() == Attribute)
/external/llvm/lib/DebugInfo/
H A DDWARFUnit.h44 const DWARFAbbreviationDeclarationSet *Abbrevs; member in class:llvm::DWARFUnit
109 return Abbrevs;
H A DDWARFUnit.cpp67 Abbrevs = Abbrev->getAbbreviationDeclarationSet(AbbrOffset);
68 if (Abbrevs == nullptr)
103 Abbrevs = nullptr;

Completed in 323 milliseconds