Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp35 llvm::DenseMap<unsigned, unsigned> Abbrevs; member in __anon9281f3de0111::AbbreviationMap
40 assert(!Abbrevs.contains(recordID) && "Abbreviation already set."); in set()
41 Abbrevs[recordID] = abbrevID; in set()
45 assert(Abbrevs.contains(recordID) && "Abbreviation not set."); in get()
46 return Abbrevs[recordID]; in get()
262 AbbreviationMap Abbrevs; member
385 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record, in getEmitFile()
396 State->Stream.EmitRecordWithAbbrev(State->Abbrevs.get(RECORD_SOURCE_RANGE), in EmitCharSourceRange()
431 AbbreviationMap &Abbrevs = State->Abbrevs; in EmitBlockInfoBlock() local
442 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.h57 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.cpp125 const SmallVector<std::unique_ptr<DIEAbbrev>> &Abbrevs, in emitAbbrevs() argument
129 Asm->emitDwarfAbbrevs(Abbrevs); in emitAbbrevs()
/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.h43 std::vector<std::shared_ptr<BitCodeAbbrev>> Abbrevs; member
362 /// Abbrevs installed at in this block.
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp722 emitDebugNamesAbbrev(ArrayRef<DWARFYAML::DebugNameAbbreviation> Abbrevs) { in emitDebugNamesAbbrev() argument
725 for (const DWARFYAML::DebugNameAbbreviation &Abbrev : Abbrevs) { in emitDebugNamesAbbrev()
781 ArrayRef<DWARFYAML::DebugNameAbbreviation> Abbrevs) { in getNonZeroDataSizesFor() argument
782 const auto *AbbrevIt = find_if(Abbrevs, [&](const auto &Abbrev) { in getNonZeroDataSizesFor()
785 if (AbbrevIt == Abbrevs.end()) in getNonZeroDataSizesFor()
816 ArrayRef<DWARFYAML::DebugNameAbbreviation> Abbrevs) { in emitDebugNamesEntryPool() argument
828 getNonZeroDataSizesFor(Entry.Code, Abbrevs); in emitDebugNamesEntryPool()
858 DI.IsLittleEndian, StrpToEntries, DebugNames.Abbrevs); in emitDebugNames()
864 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()
459 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()
1055 if (!Abbrevs) { in getAbbreviations()
1063 Abbrevs = *AbbrevsOrError; in getAbbreviations()
1065 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.h766 template <typename T> void emitDwarfAbbrevs(const T &Abbrevs) const { in emitDwarfAbbrevs() argument
768 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/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h599 DenseSet<Abbrev, AbbrevMapInfo> Abbrevs; variable
665 return Abbrevs; in getAbbrevs()
H A DDWARFUnit.h240 mutable const DWARFAbbreviationDeclarationSet *Abbrevs; variable
/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.h78 void emitAbbrevs(const std::vector<std::unique_ptr<DIEAbbrev>> &Abbrevs,
/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()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h139 std::vector<DebugNameAbbreviation> Abbrevs; member