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:__anon3796::AbbreviationMap
35 assert(Abbrevs.find(recordID) == Abbrevs.end()
37 Abbrevs[recordID] = abbrevID;
41 assert(Abbrevs.find(recordID) != Abbrevs.end() &&
43 return Abbrevs[recordID];
210 AbbreviationMap Abbrevs; member in struct:__anon3796::SDiagsWriter::SharedState
335 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record,
346 State->Stream.EmitRecordWithAbbrev(State->Abbrevs
381 AbbreviationMap &Abbrevs = State->Abbrevs; local
467 AbbreviationMap &Abbrevs = State->Abbrevs; local
581 AbbreviationMap &Abbrevs = State->Abbrevs; local
642 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();
539 Info.Abbrevs.push_back(Abbv);
541 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV;
H A DBitstreamReader.h41 std::vector<BitCodeAbbrev*> Abbrevs; member in struct:llvm::BitstreamReader::BlockInfo
83 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
85 Info.Abbrevs[i]->dropRef();
190 /// CurAbbrevs - Abbrevs installed at in this block.
/external/llvm/lib/DebugInfo/
H A DDWARFCompileUnit.h39 const DWARFAbbreviationDeclarationSet *Abbrevs; member in class:llvm::DWARFCompileUnit
89 return Abbrevs;
H A DDWARFCompileUnit.cpp41 Abbrevs = Abbrev->getAbbreviationDeclarationSet(abbrOffset);
63 Abbrevs = abbrevs;
88 Abbrevs = 0;
98 << " abbr_offset = " << format("0x%04x", Abbrevs->getOffset())
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h631 void emitDIE(DIE *Die, std::vector<DIEAbbrev *> *Abbrevs);
H A DDwarfDebug.cpp1756 void DwarfDebug::emitDIE(DIE *Die, std::vector<DIEAbbrev *> *Abbrevs) { argument
1759 const DIEAbbrev *Abbrev = Abbrevs->at(AbbrevNumber - 1);
1843 emitDIE(Children[j], Abbrevs);
1922 std::vector<DIEAbbrev *> *Abbrevs) {
1924 if (!Abbrevs->empty()) {
1932 for (unsigned i = 0, N = Abbrevs->size(); i < N; ++i) {
1934 const DIEAbbrev *Abbrev = Abbrevs->at(i);
1921 emitAbbrevs(const MCSection *Section, std::vector<DIEAbbrev *> *Abbrevs) argument

Completed in 142 milliseconds