1//===- llvm/CodeGen/DwarfStringPool.cpp - Dwarf Debug Framework -----------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#include "DwarfStringPool.h"
10#include "llvm/ADT/SmallVector.h"
11#include "llvm/ADT/Twine.h"
12#include "llvm/CodeGen/AsmPrinter.h"
13#include "llvm/MC/MCAsmInfo.h"
14#include "llvm/MC/MCStreamer.h"
15#include <cassert>
16#include <utility>
17
18using namespace llvm;
19
20DwarfStringPool::DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm,
21 StringRef Prefix)
22 : Pool(A), Prefix(Prefix),
23 ShouldCreateSymbols(Asm.doesDwarfUseRelocationsAcrossSections()) {}
24
25StringMapEntry<DwarfStringPool::EntryTy> &
26DwarfStringPool::getEntryImpl(AsmPrinter &Asm, StringRef Str) {
27 auto I = Pool.insert(KV: std::make_pair(x&: Str, y: EntryTy()));
28 auto &Entry = I.first->second;
29 if (I.second) {
30 Entry.Index = EntryTy::NotIndexed;
31 Entry.Offset = NumBytes;
32 Entry.Symbol = ShouldCreateSymbols ? Asm.createTempSymbol(Name: Prefix) : nullptr;
33
34 NumBytes += Str.size() + 1;
35 }
36 return *I.first;
37}
38
39DwarfStringPool::EntryRef DwarfStringPool::getEntry(AsmPrinter &Asm,
40 StringRef Str) {
41 auto &MapEntry = getEntryImpl(Asm, Str);
42 return EntryRef(MapEntry);
43}
44
45DwarfStringPool::EntryRef DwarfStringPool::getIndexedEntry(AsmPrinter &Asm,
46 StringRef Str) {
47 auto &MapEntry = getEntryImpl(Asm, Str);
48 if (!MapEntry.getValue().isIndexed())
49 MapEntry.getValue().Index = NumIndexedStrings++;
50 return EntryRef(MapEntry);
51}
52
53void DwarfStringPool::emitStringOffsetsTableHeader(AsmPrinter &Asm,
54 MCSection *Section,
55 MCSymbol *StartSym) {
56 if (getNumIndexedStrings() == 0)
57 return;
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.
64 Asm.emitDwarfUnitLength(Length: getNumIndexedStrings() * EntrySize + 4,
65 Comment: "Length of String Offsets Set");
66 Asm.emitInt16(Value: Asm.getDwarfVersion());
67 Asm.emitInt16(Value: 0);
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.
71 if (StartSym)
72 Asm.OutStreamer->emitLabel(Symbol: StartSym);
73}
74
75void DwarfStringPool::emit(AsmPrinter &Asm, MCSection *StrSection,
76 MCSection *OffsetSection, bool UseRelativeOffsets) {
77 if (Pool.empty())
78 return;
79
80 // Start the dwarf str section.
81 Asm.OutStreamer->switchSection(Section: StrSection);
82
83 // Get all of the string pool entries and sort them by their offset.
84 SmallVector<const StringMapEntry<EntryTy> *, 64> Entries;
85 Entries.reserve(N: Pool.size());
86
87 for (const auto &E : Pool)
88 Entries.push_back(Elt: &E);
89
90 llvm::sort(C&: Entries, Comp: [](const StringMapEntry<EntryTy> *A,
91 const StringMapEntry<EntryTy> *B) {
92 return A->getValue().Offset < B->getValue().Offset;
93 });
94
95 for (const auto &Entry : Entries) {
96 assert(ShouldCreateSymbols == static_cast<bool>(Entry->getValue().Symbol) &&
97 "Mismatch between setting and entry");
98
99 // Emit a label for reference from debug information entries.
100 if (ShouldCreateSymbols)
101 Asm.OutStreamer->emitLabel(Symbol: Entry->getValue().Symbol);
102
103 // Emit the string itself with a terminating null byte.
104 Asm.OutStreamer->AddComment(T: "string offset=" +
105 Twine(Entry->getValue().Offset));
106 Asm.OutStreamer->emitBytes(
107 Data: StringRef(Entry->getKeyData(), Entry->getKeyLength() + 1));
108 }
109
110 // If we've got an offset section go ahead and emit that now as well.
111 if (OffsetSection) {
112 // Now only take the indexed entries and put them in an array by their ID so
113 // we can emit them in order.
114 Entries.resize(N: NumIndexedStrings);
115 for (const auto &Entry : Pool) {
116 if (Entry.getValue().isIndexed())
117 Entries[Entry.getValue().Index] = &Entry;
118 }
119
120 Asm.OutStreamer->switchSection(Section: OffsetSection);
121 unsigned size = Asm.getDwarfOffsetByteSize();
122 for (const auto &Entry : Entries)
123 if (UseRelativeOffsets)
124 Asm.emitDwarfStringOffset(S: Entry->getValue());
125 else
126 Asm.OutStreamer->emitIntValue(Value: Entry->getValue().Offset, Size: size);
127 }
128}
129

source code of llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp