Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp32 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in __anon9281f3de0111::AbbreviationMap
37 assert(!Abbrevs.contains(recordID) && "Abbreviation already set."); in set()
38 Abbrevs[recordID] = abbrevID; in set()
42 assert(Abbrevs.contains(recordID) && "Abbreviation not set."); in get()
43 return Abbrevs[recordID]; in get()
259 AbbreviationMap Abbrevs; member
384 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record, in getEmitFile()
395 State->Stream.EmitRecordWithAbbrev(State->Abbrevs.get(RECORD_SOURCE_RANGE), in EmitCharSourceRange()
430 AbbreviationMap &Abbrevs = State->Abbrevs; in EmitBlockInfoBlock() local
441 Abbrevs.set(RECORD_VERSION, Stream.EmitBlockInfoAbbrev(BLOCK_META, Abbrev)); in EmitBlockInfoBlock()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp21 : Asm(AP), Abbrevs(AbbrevAllocator), StrPool(DA, *Asm, Pref) {} in DwarfFile()
93 return Die.computeOffsetsAndAbbrevs(Asm->getDwarfFormParams(), Abbrevs, in computeSizeAndOffset()
97 void DwarfFile::emitAbbrevs(MCSection *Section) { Abbrevs.Emit(Asm, Section); } in emitAbbrevs()
H A DDwarfFile.h61 DIEAbbrevSet Abbrevs; variable
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerUnit.cpp42 const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs = getAbbreviations(); in emitAbbreviations() local
43 if (Abbrevs.empty()) in emitAbbreviations()
50 for (const auto &Abbrev : Abbrevs) in emitAbbreviations()
H A DDWARFEmitterImpl.cpp126 const SmallVector<std::unique_ptr<DIEAbbrev>> &Abbrevs, in emitAbbrevs() argument
130 Asm->emitDwarfAbbrevs(Abbrevs); in emitAbbrevs()
H A DDWARFEmitterImpl.h65 void emitAbbrevs(const SmallVector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h84 std::vector<std::shared_ptr<BitCodeAbbrev>> Abbrevs; member
387 append_range(CurAbbrevs, Info->Abbrevs); in EnterSubblock()
699 Info.Abbrevs.push_back(std::move(Abbv)); in EmitBlockInfoAbbrev()
701 return Info.Abbrevs.size()-1+bitc::FIRST_APPLICATION_ABBREV; in EmitBlockInfoAbbrev()
H A DBitstreamReader.h44 std::vector<std::shared_ptr<BitCodeAbbrev>> Abbrevs; member
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp748 emitDebugNamesAbbrev(ArrayRef<DWARFYAML::DebugNameAbbreviation> Abbrevs) { in emitDebugNamesAbbrev() argument
751 for (const DWARFYAML::DebugNameAbbreviation &Abbrev : Abbrevs) { in emitDebugNamesAbbrev()
807 ArrayRef<DWARFYAML::DebugNameAbbreviation> Abbrevs) { in getNonZeroDataSizesFor() argument
808 const auto *AbbrevIt = find_if(Abbrevs, [&](const auto &Abbrev) { in getNonZeroDataSizesFor()
811 if (AbbrevIt == Abbrevs.end()) in getNonZeroDataSizesFor()
842 ArrayRef<DWARFYAML::DebugNameAbbreviation> Abbrevs) { in emitDebugNamesEntryPool() argument
854 getNonZeroDataSizesFor(Entry.Code, Abbrevs); in emitDebugNamesEntryPool()
884 DI.IsLittleEndian, StrpToEntries, DebugNames.Abbrevs); in emitDebugNames()
890 std::string AbbrevData = emitDebugNamesAbbrev(DebugNames.Abbrevs); in emitDebugNames()
H A DDWARFYAML.cpp150 IO.mapRequired("Abbreviations", DebugNames.Abbrevs); in mapping()
/freebsd/crypto/openssl/VMS/
H A Dopenssl_shutdown.com.in27 $ ! Abbrevs
H A Dopenssl_startup.com.in89 $ ! Abbrevs
/freebsd/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp35 llvm::append_range(CurAbbrevs, Info->Abbrevs); in EnterSubBlock()
460 CurBlockInfo->Abbrevs.push_back(std::move(CurAbbrevs.back())); in ReadBlockInfoBlock()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp388 Abbrevs = nullptr; in clear()
1054 if (!Abbrevs) { in getAbbreviations()
1062 Abbrevs = *AbbrevsOrError; in getAbbreviations()
1064 return Abbrevs; in getAbbreviations()
H A DDWARFAcceleratorTable.cpp598 if (!Abbrevs.insert(std::move(*AbbrevOr)).second) in extract()
779 const auto AbbrevIt = Abbrevs.find_as(AbbrevCode); in getEntry()
780 if (AbbrevIt == Abbrevs.end()) in getEntry()
888 for (const DWARFDebugNames::Abbrev &Abbr : Abbrevs) in dumpAbbreviations()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h801 template <typename T> void emitDwarfAbbrevs(const T &Abbrevs) const { in emitDwarfAbbrevs() argument
803 for (const auto &Abbrev : Abbrevs) in emitDwarfAbbrevs()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/
H A DDWARFEmitterImpl.h
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h
H A DDWARFLinker.h
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFStreamer.h79 void emitAbbrevs(const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
H A DDWARFLinker.h51 emitAbbrevs(const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h601 DenseSet<Abbrev, AbbrevMapInfo> Abbrevs; variable
667 return Abbrevs; in getAbbrevs()
H A DDWARFUnit.h244 mutable const DWARFAbbreviationDeclarationSet *Abbrevs; variable
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFStreamer.cpp212 const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs, in emitAbbrevs() argument
216 Asm->emitDwarfAbbrevs(Abbrevs); in emitAbbrevs()

12