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

/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp29 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in class:__anon3661::AbbreviationMap
34 assert(Abbrevs.find(recordID) == Abbrevs.end()
36 Abbrevs[recordID] = abbrevID;
40 assert(Abbrevs.find(recordID) != Abbrevs.end() &&
42 return Abbrevs[recordID];
190 AbbreviationMap Abbrevs; member in class:__anon3661::SDiagsWriter
312 Stream.EmitRecordWithBlob(Abbrevs.get(RECORD_FILENAME), Record, Name);
322 Stream.EmitRecordWithAbbrev(Abbrevs
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFCompileUnit.h29 const DWARFAbbreviationDeclarationSet *Abbrevs; member in class:llvm::DWARFCompileUnit
70 return Abbrevs;
H A DDWARFCompileUnit.cpp43 Abbrevs = abbr->getAbbreviationDeclarationSet(abbrOffset);
65 Abbrevs = abbrevs;
91 Abbrevs = 0;
101 << " abbr_offset = " << format("0x%04x", Abbrevs->getOffset())
/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h36 std::vector<BitCodeAbbrev*> Abbrevs; member in struct:llvm::BitstreamReader::BlockInfo
78 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
80 Info.Abbrevs[i]->dropRef();
142 /// CurAbbrevs - Abbrevs installed at in this block.
201 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; local
202 for (unsigned i = 0, e = static_cast<unsigned>(Abbrevs.size());
204 Abbrevs[i]->addRef();
209 // Free all the Abbrevs.
215 // Free all the Abbrevs in the block scope.
218 std::vector<BitCodeAbbrev*> &Abbrevs local
[all...]
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();
539 Info.Abbrevs.push_back(Abbv);
541 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV;

Completed in 158 milliseconds