LLVM 18.0.0git
DWARFLinkerCompileUnit.cpp
Go to the documentation of this file.
1//===- DWARFLinkerCompileUnit.cpp -----------------------------------------===//
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
15
16namespace llvm {
17
18#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
20 llvm::errs() << "{\n";
21 llvm::errs() << " AddrAdjust: " << AddrAdjust << '\n';
22 llvm::errs() << " Ctxt: " << formatv("{0:x}", Ctxt) << '\n';
23 llvm::errs() << " Clone: " << formatv("{0:x}", Clone) << '\n';
24 llvm::errs() << " ParentIdx: " << ParentIdx << '\n';
25 llvm::errs() << " Keep: " << Keep << '\n';
26 llvm::errs() << " InDebugMap: " << InDebugMap << '\n';
27 llvm::errs() << " Prune: " << Prune << '\n';
28 llvm::errs() << " Incomplete: " << Incomplete << '\n';
29 llvm::errs() << " InModuleScope: " << InModuleScope << '\n';
30 llvm::errs() << " ODRMarkingDone: " << ODRMarkingDone << '\n';
31 llvm::errs() << " UnclonedReference: " << UnclonedReference << '\n';
32 llvm::errs() << "}\n";
33}
34#endif // if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
35
36/// Check if the DIE at \p Idx is in the scope of a function.
37static bool inFunctionScope(CompileUnit &U, unsigned Idx) {
38 while (Idx) {
39 if (U.getOrigUnit().getDIEAtIndex(Idx).getTag() == dwarf::DW_TAG_subprogram)
40 return true;
41 Idx = U.getInfo(Idx).ParentIdx;
42 }
43 return false;
44}
45
47 if (!Language) {
49 Language = dwarf::toUnsigned(CU.find(dwarf::DW_AT_language), 0);
50 }
51 return Language;
52}
53
55 if (SysRoot.empty()) {
57 SysRoot = dwarf::toStringRef(CU.find(dwarf::DW_AT_LLVM_sysroot)).str();
58 }
59 return SysRoot;
60}
61
63 unsigned Idx = 0;
64
65 for (auto &I : Info) {
66 // Mark everything that wasn't explicit marked for pruning.
67 I.Keep = !I.Prune;
68 auto DIE = OrigUnit.getDIEAtIndex(Idx++);
69 DWARFUnit *U = DIE.getDwarfUnit();
70
71 // Try to guess which DIEs must go to the accelerator tables. We do that
72 // just for variables, because functions will be handled depending on
73 // whether they carry a DW_AT_low_pc attribute or not.
74 if (DIE.getTag() != dwarf::DW_TAG_variable &&
75 DIE.getTag() != dwarf::DW_TAG_constant)
76 continue;
77
78 std::optional<DWARFFormValue> Value;
79 if (!(Value = DIE.find(dwarf::DW_AT_location))) {
80 if ((Value = DIE.find(dwarf::DW_AT_const_value)) &&
81 !inFunctionScope(*this, I.ParentIdx))
82 I.InDebugMap = true;
83 continue;
84 }
85
86 if (auto ExprLockBlock = Value->getAsBlock()) {
87 // Parse 'exprloc' expression.
88 DataExtractor Data(toStringRef(*ExprLockBlock),
89 U->getContext().isLittleEndian(),
90 U->getAddressByteSize());
91 DWARFExpression Expression(Data, U->getAddressByteSize(),
92 U->getFormParams().Format);
93
94 for (DWARFExpression::iterator It = Expression.begin();
95 (It != Expression.end()) && !I.InDebugMap; ++It) {
96 DWARFExpression::iterator NextIt = It;
97 ++NextIt;
98
99 switch (It->getCode()) {
100 case dwarf::DW_OP_const2u:
101 case dwarf::DW_OP_const4u:
102 case dwarf::DW_OP_const8u:
103 case dwarf::DW_OP_const2s:
104 case dwarf::DW_OP_const4s:
105 case dwarf::DW_OP_const8s:
106 if (NextIt == Expression.end() ||
107 NextIt->getCode() != dwarf::DW_OP_form_tls_address)
108 break;
109 [[fallthrough]];
110 case dwarf::DW_OP_constx:
111 case dwarf::DW_OP_addr:
112 case dwarf::DW_OP_addrx:
113 I.InDebugMap = true;
114 break;
115 default:
116 // Nothing to do.
117 break;
118 }
119 }
120 }
121 }
122}
123
125 NextUnitOffset = StartOffset;
126 if (NewUnit) {
127 NextUnitOffset += (DwarfVersion >= 5) ? 12 : 11; // Header size
128 NextUnitOffset += NewUnit->getUnitDie().getSize();
129 }
130 return NextUnitOffset;
131}
132
133/// Keep track of a forward cross-cu reference from this unit
134/// to \p Die that lives in \p RefUnit.
136 DeclContext *Ctxt, PatchLocation Attr) {
137 ForwardDIEReferences.emplace_back(Die, RefUnit, Ctxt, Attr);
138}
139
141 for (const auto &Ref : ForwardDIEReferences) {
142 DIE *RefDie;
143 const CompileUnit *RefUnit;
144 PatchLocation Attr;
145 DeclContext *Ctxt;
146 std::tie(RefDie, RefUnit, Ctxt, Attr) = Ref;
147 if (Ctxt && Ctxt->hasCanonicalDIE()) {
149 "Canonical die offset is not set");
150 Attr.set(Ctxt->getCanonicalDIEOffset());
151 } else {
152 assert(RefDie->getOffset() && "Referenced die offset is not set");
153 Attr.set(RefDie->getOffset() + RefUnit->getStartOffset());
154 }
155 }
156}
157
158void CompileUnit::addLabelLowPc(uint64_t LabelLowPc, int64_t PcOffset) {
159 Labels.insert({LabelLowPc, PcOffset});
160}
161
163 int64_t PcOffset) {
164 Ranges.insert({FuncLowPc, FuncHighPc}, PcOffset);
165 if (LowPc)
166 LowPc = std::min(*LowPc, FuncLowPc + PcOffset);
167 else
168 LowPc = FuncLowPc + PcOffset;
169 this->HighPc = std::max(HighPc, FuncHighPc + PcOffset);
170}
171
173 if (Die.getTag() == dwarf::DW_TAG_compile_unit) {
174 UnitRangeAttribute = Attr;
175 return;
176 }
177
178 RangeAttributes.emplace_back(Attr);
179}
180
182 LocationAttributes.emplace_back(Attr);
183}
184
187 Namespaces.emplace_back(Name, Die);
188}
189
192 bool SkipPubSection) {
193 ObjC.emplace_back(Name, Die, SkipPubSection);
194}
195
198 bool SkipPubSection) {
199 Pubnames.emplace_back(Name, Die, SkipPubSection);
200}
201
204 bool ObjcClassImplementation,
205 uint32_t QualifiedNameHash) {
206 Pubtypes.emplace_back(Name, Die, QualifiedNameHash, ObjcClassImplementation);
207}
208
209} // namespace llvm
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
Definition: Compiler.h:510
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
std::string Name
#define I(x, y, z)
Definition: MD5.cpp:58
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file contains some functions that are useful when dealing with strings.
void insert(AddressRange Range, int64_t Value)
Stores all information relating to a compile unit, be it in its original instance in the object file ...
void addFunctionRange(uint64_t LowPC, uint64_t HighPC, int64_t PCOffset)
Add a function range [LowPC, HighPC) that is relocated by applying offset PCOffset.
void fixupForwardReferences()
Apply all fixups recorded by noteForwardReference().
void noteForwardReference(DIE *Die, const CompileUnit *RefUnit, DeclContext *Ctxt, PatchLocation Attr)
Keep track of a forward reference to DIE Die in RefUnit by Attr.
void noteLocationAttribute(PatchLocation Attr)
Keep track of a location attribute pointing to a location list in the debug_loc section.
void addNameAccelerator(const DIE *Die, DwarfStringPoolEntryRef Name, bool SkipPubnamesSection=false)
Add a name accelerator entry for Die with Name.
void addNamespaceAccelerator(const DIE *Die, DwarfStringPoolEntryRef Name)
Add a name accelerator entry for Die with Name.
DWARFUnit & getOrigUnit() const
StringRef getSysRoot()
Return the DW_AT_LLVM_sysroot of the compile unit or an empty StringRef.
void noteRangeAttribute(const DIE &Die, PatchLocation Attr)
Keep track of a DW_AT_range attribute that we will need to patch up later.
void addObjCAccelerator(const DIE *Die, DwarfStringPoolEntryRef Name, bool SkipPubnamesSection=false)
Add various accelerator entries for Die with Name which is stored in the string table at Offset.
void addTypeAccelerator(const DIE *Die, DwarfStringPoolEntryRef Name, bool ObjcClassImplementation, uint32_t QualifiedNameHash)
Add a type accelerator entry for Die with Name which is stored in the string table at Offset.
uint64_t getStartOffset() const
uint64_t computeNextUnitOffset(uint16_t DwarfVersion)
Compute the end offset for this unit.
void addLabelLowPc(uint64_t LabelLowPc, int64_t PcOffset)
Add the low_pc of a label that is relocated by applying offset PCOffset.
void markEverythingAsKept()
Mark every DIE in this unit as kept.
A structured debug information entry.
Definition: DIE.h:819
unsigned getOffset() const
Get the compile/type unit relative offset of this DIE.
Definition: DIE.h:857
dwarf::Tag getTag() const
Definition: DIE.h:855
Utility class that carries the DWARF compile/type unit and the debug info entry in an object.
Definition: DWARFDie.h:42
An iterator to go through the expression operations.
DWARFDie getUnitDIE(bool ExtractUnitDIEOnly=true)
Definition: DWARFUnit.h:441
DWARFDie getDIEAtIndex(unsigned Index)
Return the DIE object at the given index Index.
Definition: DWARFUnit.h:519
A DeclContext is a named program scope that is used for ODR uniquing of types.
uint32_t getCanonicalDIEOffset() const
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition: DenseMap.h:220
DwarfStringPoolEntryRef: Dwarf string pool entry reference.
Class representing an expression and its matching format.
reference emplace_back(ArgTypes &&... Args)
Definition: SmallVector.h:941
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
std::string str() const
str - Get the contents as an std::string.
Definition: StringRef.h:222
LLVM Value Representation.
Definition: Value.h:74
StringRef toStringRef(const std::optional< DWARFFormValue > &V, StringRef Default={})
Take an optional DWARFFormValue and try to extract a string value from it.
std::optional< uint64_t > toUnsigned(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract an unsigned constant.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
auto formatv(const char *Fmt, Ts &&... Vals) -> formatv_object< decltype(std::make_tuple(detail::build_format_adapter(std::forward< Ts >(Vals))...))>
static bool inFunctionScope(CompileUnit &U, unsigned Idx)
Check if the DIE at Idx is in the scope of a function.
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
@ Ref
The access may reference the value stored in memory.
DeclContext * Ctxt
ODR Declaration context.
bool InModuleScope
Is DIE in the clang module scope?
DIE * Clone
Cloned version of that DIE.
int64_t AddrAdjust
Address offset to apply to the described entity.
uint32_t ParentIdx
The index of this DIE's parent.
bool UnclonedReference
Is this a reference to a DIE that hasn't been cloned yet?
bool ODRMarkingDone
Is ODR marking done?
bool InDebugMap
Was this DIE's entity found in the map?
bool Prune
Is this a pure forward declaration we can strip?
bool Keep
Is the DIE part of the linked output?
bool Incomplete
Does DIE transitively refer an incomplete decl?
void set(uint64_t New) const