1//===- llvm/CodeGen/DwarfStringPool.cpp - Dwarf Debug Framework -----------===//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//===----------------------------------------------------------------------===//
22 : Pool(
A), Prefix(Prefix),
23 ShouldCreateSymbols(Asm.doesDwarfUseRelocationsAcrossSections()) {}
27 auto I = Pool.try_emplace(Str);
28 auto &Entry =
I.first->second;
31 Entry.Offset = NumBytes;
32 Entry.Symbol = ShouldCreateSymbols ? Asm.createTempSymbol(Prefix) :
nullptr;
34 NumBytes += Str.size() + 1;
41 auto &MapEntry = getEntryImpl(Asm, Str);
47 auto &MapEntry = getEntryImpl(Asm, Str);
48 if (!MapEntry.getValue().isIndexed())
49 MapEntry.getValue().Index = NumIndexedStrings++;
58 Asm.OutStreamer->switchSection(Section);
59 unsigned EntrySize = Asm.getDwarfOffsetByteSize();
60 // We are emitting the header for a contribution to the string offsets
61 // table. The header consists of an entry with the contribution's
62 // size (not including the size of the length field), the DWARF version and
63 // 2 bytes of padding.
65 "Length of String Offsets Set");
66 Asm.emitInt16(Asm.getDwarfVersion());
68 // Define the symbol that marks the start of the contribution. It is
69 // referenced by most unit headers via DW_AT_str_offsets_base.
70 // Split units do not use the attribute.
72 Asm.OutStreamer->emitLabel(StartSym);
76 MCSection *OffsetSection,
bool UseRelativeOffsets) {
80 // Start the dwarf str section.
81 Asm.OutStreamer->switchSection(StrSection);
83 // Get all of the string pool entries and sort them by their offset.
89 return A->getValue().Offset <
B->getValue().Offset;
92 for (
const auto &Entry : Entries) {
93 assert(ShouldCreateSymbols ==
static_cast<bool>(Entry->getValue().Symbol) &&
94 "Mismatch between setting and entry");
96 // Emit a label for reference from debug information entries.
97 if (ShouldCreateSymbols)
98 Asm.OutStreamer->emitLabel(Entry->getValue().Symbol);
100 // Emit the string itself with a terminating null byte.
101 Asm.OutStreamer->AddComment(
"string offset=" +
102 Twine(Entry->getValue().Offset));
103 Asm.OutStreamer->emitBytes(
104 StringRef(Entry->getKeyData(), Entry->getKeyLength() + 1));
107 // If we've got an offset section go ahead and emit that now as well.
109 // Now only take the indexed entries and put them in an array by their ID so
110 // we can emit them in order.
111 Entries.
resize(NumIndexedStrings);
112 for (
const auto &Entry : Pool) {
113 if (Entry.getValue().isIndexed())
114 Entries[Entry.getValue().Index] = &Entry;
117 Asm.OutStreamer->switchSection(OffsetSection);
118 unsigned size = Asm.getDwarfOffsetByteSize();
119 for (
const auto &Entry : Entries)
120 if (UseRelativeOffsets)
121 Asm.emitDwarfStringOffset(Entry->getValue());
123 Asm.OutStreamer->emitIntValue(Entry->getValue().Offset,
size);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file defines the SmallVector class.
This class is intended to be used as a driving class for all asm writers.
LLVM_ABI_FOR_TEST EntryRef getEntry(AsmPrinter &Asm, StringRef Str)
Get a reference to an entry in the string pool.
LLVM_ABI_FOR_TEST EntryRef getIndexedEntry(AsmPrinter &Asm, StringRef Str)
Same as getEntry, except that you can use EntryRef::getIndex to obtain a unique ID of this entry (e....
DwarfStringPoolEntryRef EntryRef
unsigned getNumIndexedStrings() const
LLVM_ABI_FOR_TEST void emitStringOffsetsTableHeader(AsmPrinter &Asm, MCSection *OffsetSection, MCSymbol *StartSym)
LLVM_ABI_FOR_TEST DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm, StringRef Prefix)
LLVM_ABI_FOR_TEST void emit(AsmPrinter &Asm, MCSection *StrSection, MCSection *OffsetSection=nullptr, bool UseRelativeOffsets=false)
Instances of this class represent a uniqued identifier for a section in the current translation unit.
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringMapEntry - This is used to represent one value that is inserted into a StringMap.
StringRef - Represent a constant reference to a string, i.e.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
This is an optimization pass for GlobalISel generic memory operations.
void sort(IteratorTy Start, IteratorTy End)
iterator_range< pointer_iterator< WrappedIteratorT > > make_pointer_range(RangeT &&Range)
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
static constexpr unsigned NotIndexed