Searched defs:Abbrevs (Results 1 - 9 of 9) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFCompileUnit.h28 const DWARFAbbreviationDeclarationSet *Abbrevs; member in class:llvm::DWARFCompileUnit
64 return Abbrevs;
/external/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h45 /// CurAbbrevs - Abbrevs installed at in this block.
62 std::vector<IntrusiveRefCntPtr<BitCodeAbbrev>> Abbrevs; member in struct:llvm::BitstreamWriter::BlockInfo
228 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(),
229 Info->Abbrevs.end());
544 Info.Abbrevs.push_back(Abbv);
546 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV;
H A DBitstreamReader.h38 std::vector<IntrusiveRefCntPtr<BitCodeAbbrev>> Abbrevs; member in struct:llvm::BitstreamReader::BlockInfo
418 /// Abbrevs installed at in this block.
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnit.h123 const DWARFAbbreviationDeclarationSet *Abbrevs; member in class:llvm::DWARFUnit
195 return Abbrevs;
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
H A DBitstreamWriter.h41 /// CurAbbrevs - Abbrevs installed at in this block.
58 std::vector<BitCodeAbbrev*> Abbrevs; member in struct:llvm::BitstreamWriter::BlockInfo
74 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
76 Info.Abbrevs[i]->dropRef();
218 for (unsigned i = 0, e = static_cast<unsigned>(Info->Abbrevs.size());
220 CurAbbrevs.push_back(Info->Abbrevs[i]);
221 Info->Abbrevs[i]->addRef();
524 Info.Abbrevs.push_back(Abbv);
526 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV;
H A DBitstreamReader.h33 std::vector<BitCodeAbbrev*> Abbrevs; member in struct:llvm::BitstreamReader::BlockInfo
72 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
74 Info.Abbrevs[i]->dropRef();
139 /// CurAbbrevs - Abbrevs installed at in this block.
200 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; local
201 for (unsigned i = 0, e = static_cast<unsigned>(Abbrevs.size());
203 Abbrevs[i]->addRef();
208 // Free all the Abbrevs.
214 // Free all the Abbrevs in the block scope.
217 std::vector<BitCodeAbbrev*> &Abbrevs local
[all...]
/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp36 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in class:__anon1715::AbbreviationMap
41 assert(Abbrevs.find(recordID) == Abbrevs.end()
43 Abbrevs[recordID] = abbrevID;
47 assert(Abbrevs.find(recordID) != Abbrevs.end() &&
49 return Abbrevs[recordID];
275 AbbreviationMap Abbrevs; member in struct:__anon1715::SDiagsWriter::SharedState
401 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record,
412 State->Stream.EmitRecordWithAbbrev(State->Abbrevs
447 AbbreviationMap &Abbrevs = State->Abbrevs; local
532 AbbreviationMap &Abbrevs = State->Abbrevs; local
655 AbbreviationMap &Abbrevs = State->Abbrevs; local
716 AbbreviationMap &Abbrevs = State->Abbrevs; local
[all...]
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
H A DNaClBitstreamReader.h85 Abbrevs.push_back(Abbv);
91 Abbrevs.push_back(Abbrv);
95 for (NaClBitCodeAbbrev *Abbrv : NewAbbrevs.Abbrevs)
99 NaClBitCodeAbbrev *last() { return Abbrevs.back(); }
102 Abbrevs.back()->dropRef();
103 Abbrevs.pop_back();
107 while(!Abbrevs.empty())
111 const AbbrevListVector &getVector() const { return Abbrevs; }
114 AbbrevListVector Abbrevs; member in class:llvm::NaClBitstreamReader::AbbrevList
125 : BlockID(BlockID), Abbrevs() {}
133 AbbrevList Abbrevs; member in class:llvm::NaClBitstreamReader::BlockInfo
[all...]
/external/llvm/tools/dsymutil/
H A DDwarfLinker.cpp523 /// \brief Emit the abbreviation table \p Abbrevs to the
525 void emitAbbrevs(const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs);
689 /// \brief Emit the \p Abbrevs array as the shared abbreviation table
692 const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs) {
694 Asm->emitDwarfAbbrevs(Abbrevs);
691 emitAbbrevs( const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs) argument

Completed in 285 milliseconds