Home
last modified time | relevance | path

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

/external/clang/lib/Frontend/
DSerializedDiagnosticPrinter.cpp30 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in __anon92e1e8260111::AbbreviationMap
35 assert(Abbrevs.find(recordID) == Abbrevs.end() in set()
37 Abbrevs[recordID] = abbrevID; in set()
41 assert(Abbrevs.find(recordID) != Abbrevs.end() && in get()
43 return Abbrevs[recordID]; in get()
210 AbbreviationMap Abbrevs; member
335 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record, in getEmitFile()
346 State->Stream.EmitRecordWithAbbrev(State->Abbrevs.get(RECORD_SOURCE_RANGE), in EmitCharSourceRange()
381 AbbreviationMap &Abbrevs = State->Abbrevs; in EmitBlockInfoBlock() local
392 Abbrevs.set(RECORD_VERSION, Stream.EmitBlockInfoAbbrev(BLOCK_META, Abbrev)); in EmitBlockInfoBlock()
[all …]
/external/llvm/lib/Bitcode/Reader/
DBitstreamReader.cpp35 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; in operator =() local
36 for (size_t i = 0, e = Abbrevs.size(); i != e; ++i) in operator =()
37 Abbrevs[i]->addRef(); in operator =()
49 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; in freeState() local
50 for (size_t i = 0, e = Abbrevs.size(); i != e; ++i) in freeState()
51 Abbrevs[i]->dropRef(); in freeState()
66 for (size_t i = 0, e = Info->Abbrevs.size(); i != e; ++i) { in EnterSubBlock()
67 CurAbbrevs.push_back(Info->Abbrevs[i]); in EnterSubBlock()
337 CurBlockInfo->Abbrevs.push_back(Abbv); in ReadBlockInfoBlock()
/external/llvm/include/llvm/Bitcode/
DBitstreamWriter.h59 std::vector<BitCodeAbbrev*> Abbrevs; member
107 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size()); in ~BitstreamWriter()
109 Info.Abbrevs[i]->dropRef(); in ~BitstreamWriter()
234 for (unsigned i = 0, e = static_cast<unsigned>(Info->Abbrevs.size()); in EnterSubblock()
236 CurAbbrevs.push_back(Info->Abbrevs[i]); in EnterSubblock()
237 Info->Abbrevs[i]->addRef(); in EnterSubblock()
539 Info.Abbrevs.push_back(Abbv); in EmitBlockInfoAbbrev()
541 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV; in EmitBlockInfoAbbrev()
DBitstreamReader.h41 std::vector<BitCodeAbbrev*> Abbrevs; member
83 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size()); in ~BitstreamReader()
85 Info.Abbrevs[i]->dropRef(); in ~BitstreamReader()
/external/llvm/lib/DebugInfo/
DDWARFCompileUnit.cpp41 Abbrevs = Abbrev->getAbbreviationDeclarationSet(abbrOffset); in extract()
63 Abbrevs = abbrevs; in extract()
88 Abbrevs = 0; in clear()
98 << " abbr_offset = " << format("0x%04x", Abbrevs->getOffset()) in dump()
DDWARFCompileUnit.h39 const DWARFAbbreviationDeclarationSet *Abbrevs; variable
89 return Abbrevs; in getAbbreviations()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.cpp1756 void DwarfDebug::emitDIE(DIE *Die, std::vector<DIEAbbrev *> *Abbrevs) { in emitDIE() argument
1759 const DIEAbbrev *Abbrev = Abbrevs->at(AbbrevNumber - 1); in emitDIE()
1843 emitDIE(Children[j], Abbrevs); in emitDIE()
1922 std::vector<DIEAbbrev *> *Abbrevs) { in emitAbbrevs() argument
1924 if (!Abbrevs->empty()) { in emitAbbrevs()
1932 for (unsigned i = 0, N = Abbrevs->size(); i < N; ++i) { in emitAbbrevs()
1934 const DIEAbbrev *Abbrev = Abbrevs->at(i); in emitAbbrevs()
DDwarfDebug.h631 void emitDIE(DIE *Die, std::vector<DIEAbbrev *> *Abbrevs);