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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp34 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in class:__anon528::AbbreviationMap
39 assert(Abbrevs.find(recordID) == Abbrevs.end()
41 Abbrevs[recordID] = abbrevID;
45 assert(Abbrevs.find(recordID) != Abbrevs.end() &&
47 return Abbrevs[recordID];
261 AbbreviationMap Abbrevs; member in struct:__anon528::SDiagsWriter::SharedState
384 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record,
395 State->Stream.EmitRecordWithAbbrev(State->Abbrevs
430 AbbreviationMap &Abbrevs = State->Abbrevs; local
515 AbbreviationMap &Abbrevs = State->Abbrevs; local
633 AbbreviationMap &Abbrevs = State->Abbrevs; local
690 AbbreviationMap &Abbrevs = State->Abbrevs; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp24 : Asm(AP), Abbrevs(AbbrevAllocator), StrPool(DA, *Asm, Pref) {}
93 return Die.computeOffsetsAndAbbrevs(Asm, Abbrevs, Offset);
96 void DwarfFile::emitAbbrevs(MCSection *Section) { Abbrevs.Emit(Asm, Section); }
H A DDwarfFile.h55 DIEAbbrevSet Abbrevs; member in class:llvm::DwarfFile
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h44 /// CurAbbrevs - Abbrevs installed at in this block.
61 std::vector<std::shared_ptr<BitCodeAbbrev>> Abbrevs; member in struct:llvm::BitstreamWriter::BlockInfo
223 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(),
224 Info->Abbrevs.end());
538 Info.Abbrevs.push_back(std::move(Abbv));
540 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV;
H A DBitstreamReader.h43 std::vector<std::shared_ptr<BitCodeAbbrev>> Abbrevs; member in struct:llvm::BitstreamBlockInfo::BlockInfo
344 /// Abbrevs installed at in this block.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinker.h99 /// Emit the abbreviation table \p Abbrevs to the debug_abbrev section.
101 emitAbbrevs(const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp30 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(),
31 Info->Abbrevs.end());
438 CurBlockInfo->Abbrevs.push_back(std::move(CurAbbrevs.back()));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h386 DenseSet<Abbrev, AbbrevMapInfo> Abbrevs; member in class:llvm::DWARFDebugNames::NameIndex
451 return Abbrevs;
H A DDWARFUnit.h226 mutable const DWARFAbbreviationDeclarationSet *Abbrevs; member in class:llvm::DWARFUnit
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h592 template <typename T> void emitDwarfAbbrevs(const T &Abbrevs) const {
594 for (const auto &Abbrev : Abbrevs)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp516 if (!Abbrevs.insert(std::move(*AbbrevOr)).second)
610 const auto AbbrevIt = Abbrevs.find_as(AbbrevCode);
611 if (AbbrevIt == Abbrevs.end())
714 for (const auto &Abbr : Abbrevs)
H A DDWARFUnit.cpp367 Abbrevs = nullptr;
851 if (!Abbrevs)
852 Abbrevs = Abbrev->getAbbreviationDeclarationSet(Header.getAbbrOffset());
853 return Abbrevs;

Completed in 284 milliseconds