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

/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp35 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in class:__anon1913::AbbreviationMap
40 assert(Abbrevs.find(recordID) == Abbrevs.end()
42 Abbrevs[recordID] = abbrevID;
46 assert(Abbrevs.find(recordID) != Abbrevs.end() &&
48 return Abbrevs[recordID];
265 AbbreviationMap Abbrevs; member in struct:__anon1913::SDiagsWriter::SharedState
388 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record,
399 State->Stream.EmitRecordWithAbbrev(State->Abbrevs
434 AbbreviationMap &Abbrevs = State->Abbrevs; local
519 AbbreviationMap &Abbrevs = State->Abbrevs; local
648 AbbreviationMap &Abbrevs = State->Abbrevs; local
705 AbbreviationMap &Abbrevs = State->Abbrevs; local
[all...]
/freebsd-13-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-13-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.h44 std::vector<std::shared_ptr<BitCodeAbbrev>> Abbrevs; member in struct:llvm::BitstreamBlockInfo::BlockInfo
345 /// Abbrevs installed at in this block.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp30 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(),
31 Info->Abbrevs.end());
440 CurBlockInfo->Abbrevs.push_back(std::move(CurAbbrevs.back()));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h72 /// Emit the abbreviation table \p Abbrevs to the debug_abbrev section.
73 void emitAbbrevs(const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
H A DDWARFLinker.h104 /// Emit the abbreviation table \p Abbrevs to the debug_abbrev section.
106 emitAbbrevs(const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h603 template <typename T> void emitDwarfAbbrevs(const T &Abbrevs) const {
605 for (const auto &Abbrev : Abbrevs)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp523 if (!Abbrevs.insert(std::move(*AbbrevOr)).second)
621 const auto AbbrevIt = Abbrevs.find_as(AbbrevCode);
622 if (AbbrevIt == Abbrevs.end())
729 for (const auto &Abbr : Abbrevs)
H A DDWARFUnit.cpp364 Abbrevs = nullptr;
869 if (!Abbrevs)
870 Abbrevs = Abbrev->getAbbreviationDeclarationSet(Header.getAbbrOffset());
871 return Abbrevs;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h382 DenseSet<Abbrev, AbbrevMapInfo> Abbrevs; member in class:llvm::DWARFDebugNames::NameIndex
447 return Abbrevs;
H A DDWARFUnit.h230 mutable const DWARFAbbreviationDeclarationSet *Abbrevs; member in class:llvm::DWARFUnit
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp155 /// Emit the \p Abbrevs array as the shared abbreviation table
158 const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
162 Asm->emitDwarfAbbrevs(Abbrevs);
157 emitAbbrevs( const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs, unsigned DwarfVersion) argument

Completed in 474 milliseconds