1 //===- llvm/CodeGen/DwarfCompileUnit.cpp - Dwarf Compile Units ------------===//
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 //===----------------------------------------------------------------------===//
9 // This file contains support for constructing a dwarf compile unit.
11 //===----------------------------------------------------------------------===//
13 #include "DwarfCompileUnit.h"
14 #include "AddressPool.h"
15 #include "DwarfDebug.h"
16 #include "DwarfExpression.h"
17 #include "DwarfUnit.h"
18 #include "llvm/ADT/None.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/ADT/SmallString.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/StringRef.h"
23 #include "llvm/BinaryFormat/Dwarf.h"
24 #include "llvm/CodeGen/AsmPrinter.h"
25 #include "llvm/CodeGen/DIE.h"
26 #include "llvm/CodeGen/LexicalScopes.h"
27 #include "llvm/CodeGen/MachineFunction.h"
28 #include "llvm/CodeGen/MachineInstr.h"
29 #include "llvm/CodeGen/MachineOperand.h"
30 #include "llvm/CodeGen/TargetFrameLowering.h"
31 #include "llvm/CodeGen/TargetRegisterInfo.h"
32 #include "llvm/CodeGen/TargetSubtargetInfo.h"
33 #include "llvm/IR/DataLayout.h"
34 #include "llvm/IR/DebugInfo.h"
35 #include "llvm/IR/DebugInfoMetadata.h"
36 #include "llvm/IR/GlobalVariable.h"
37 #include "llvm/MC/MCSection.h"
38 #include "llvm/MC/MCStreamer.h"
39 #include "llvm/MC/MCSymbol.h"
40 #include "llvm/MC/MachineLocation.h"
41 #include "llvm/Support/Casting.h"
42 #include "llvm/Target/TargetLoweringObjectFile.h"
43 #include "llvm/Target/TargetMachine.h"
44 #include "llvm/Target/TargetOptions.h"
55 DwarfCompileUnit::DwarfCompileUnit(unsigned UID
, const DICompileUnit
*Node
,
56 AsmPrinter
*A
, DwarfDebug
*DW
,
58 : DwarfUnit(dwarf::DW_TAG_compile_unit
, Node
, A
, DW
, DWU
), UniqueID(UID
) {
59 insertDIE(Node
, &getUnitDie());
60 MacroLabelBegin
= Asm
->createTempSymbol("cu_macro_begin");
63 /// addLabelAddress - Add a dwarf label attribute data and value using
64 /// DW_FORM_addr or DW_FORM_GNU_addr_index.
65 void DwarfCompileUnit::addLabelAddress(DIE
&Die
, dwarf::Attribute Attribute
,
66 const MCSymbol
*Label
) {
67 // Don't use the address pool in non-fission or in the skeleton unit itself.
68 // FIXME: Once GDB supports this, it's probably worthwhile using the address
69 // pool from the skeleton - maybe even in non-fission (possibly fewer
70 // relocations by sharing them in the pool, but we have other ideas about how
71 // to reduce the number of relocations as well/instead).
72 if ((!DD
->useSplitDwarf() || !Skeleton
) && DD
->getDwarfVersion() < 5)
73 return addLocalLabelAddress(Die
, Attribute
, Label
);
76 DD
->addArangeLabel(SymbolCU(this, Label
));
78 unsigned idx
= DD
->getAddressPool().getIndex(Label
);
79 Die
.addValue(DIEValueAllocator
, Attribute
,
80 DD
->getDwarfVersion() >= 5 ? dwarf::DW_FORM_addrx
81 : dwarf::DW_FORM_GNU_addr_index
,
85 void DwarfCompileUnit::addLocalLabelAddress(DIE
&Die
,
86 dwarf::Attribute Attribute
,
87 const MCSymbol
*Label
) {
89 DD
->addArangeLabel(SymbolCU(this, Label
));
92 Die
.addValue(DIEValueAllocator
, Attribute
, dwarf::DW_FORM_addr
,
95 Die
.addValue(DIEValueAllocator
, Attribute
, dwarf::DW_FORM_addr
,
99 unsigned DwarfCompileUnit::getOrCreateSourceID(const DIFile
*File
) {
100 // If we print assembly, we can't separate .file entries according to
101 // compile units. Thus all files will belong to the default compile unit.
103 // FIXME: add a better feature test than hasRawTextSupport. Even better,
104 // extend .file to support this.
105 unsigned CUID
= Asm
->OutStreamer
->hasRawTextSupport() ? 0 : getUniqueID();
107 return Asm
->OutStreamer
->EmitDwarfFileDirective(0, "", "", None
, None
, CUID
);
108 return Asm
->OutStreamer
->EmitDwarfFileDirective(
109 0, File
->getDirectory(), File
->getFilename(), getMD5AsBytes(File
),
110 File
->getSource(), CUID
);
113 DIE
*DwarfCompileUnit::getOrCreateGlobalVariableDIE(
114 const DIGlobalVariable
*GV
, ArrayRef
<GlobalExpr
> GlobalExprs
) {
115 // Check for pre-existence.
116 if (DIE
*Die
= getDIE(GV
))
121 auto *GVContext
= GV
->getScope();
122 const DIType
*GTy
= GV
->getType();
124 // Construct the context before querying for the existence of the DIE in
125 // case such construction creates the DIE.
126 auto *CB
= GVContext
? dyn_cast
<DICommonBlock
>(GVContext
) : nullptr;
127 DIE
*ContextDIE
= CB
? getOrCreateCommonBlock(CB
, GlobalExprs
)
128 : getOrCreateContextDIE(GVContext
);
131 DIE
*VariableDIE
= &createAndAddDIE(GV
->getTag(), *ContextDIE
, GV
);
132 DIScope
*DeclContext
;
133 if (auto *SDMDecl
= GV
->getStaticDataMemberDeclaration()) {
134 DeclContext
= SDMDecl
->getScope();
135 assert(SDMDecl
->isStaticMember() && "Expected static member decl");
136 assert(GV
->isDefinition());
137 // We need the declaration DIE that is in the static member's class.
138 DIE
*VariableSpecDIE
= getOrCreateStaticMemberDIE(SDMDecl
);
139 addDIEEntry(*VariableDIE
, dwarf::DW_AT_specification
, *VariableSpecDIE
);
140 // If the global variable's type is different from the one in the class
141 // member type, assume that it's more specific and also emit it.
142 if (GTy
!= SDMDecl
->getBaseType())
143 addType(*VariableDIE
, GTy
);
145 DeclContext
= GV
->getScope();
146 // Add name and type.
147 addString(*VariableDIE
, dwarf::DW_AT_name
, GV
->getDisplayName());
148 addType(*VariableDIE
, GTy
);
151 if (!GV
->isLocalToUnit())
152 addFlag(*VariableDIE
, dwarf::DW_AT_external
);
154 // Add line number info.
155 addSourceLine(*VariableDIE
, GV
);
158 if (!GV
->isDefinition())
159 addFlag(*VariableDIE
, dwarf::DW_AT_declaration
);
161 addGlobalName(GV
->getName(), *VariableDIE
, DeclContext
);
163 if (uint32_t AlignInBytes
= GV
->getAlignInBytes())
164 addUInt(*VariableDIE
, dwarf::DW_AT_alignment
, dwarf::DW_FORM_udata
,
167 if (MDTuple
*TP
= GV
->getTemplateParams())
168 addTemplateParams(*VariableDIE
, DINodeArray(TP
));
171 addLocationAttribute(VariableDIE
, GV
, GlobalExprs
);
176 void DwarfCompileUnit::addLocationAttribute(
177 DIE
*VariableDIE
, const DIGlobalVariable
*GV
, ArrayRef
<GlobalExpr
> GlobalExprs
) {
178 bool addToAccelTable
= false;
179 DIELoc
*Loc
= nullptr;
180 Optional
<unsigned> NVPTXAddressSpace
;
181 std::unique_ptr
<DIEDwarfExpression
> DwarfExpr
;
182 for (const auto &GE
: GlobalExprs
) {
183 const GlobalVariable
*Global
= GE
.Var
;
184 const DIExpression
*Expr
= GE
.Expr
;
186 // For compatibility with DWARF 3 and earlier,
187 // DW_AT_location(DW_OP_constu, X, DW_OP_stack_value) becomes
188 // DW_AT_const_value(X).
189 if (GlobalExprs
.size() == 1 && Expr
&& Expr
->isConstant()) {
190 addToAccelTable
= true;
191 addConstantValue(*VariableDIE
, /*Unsigned=*/true, Expr
->getElement(1));
195 // We cannot describe the location of dllimport'd variables: the
196 // computation of their address requires loads from the IAT.
197 if (Global
&& Global
->hasDLLImportStorageClass())
200 // Nothing to describe without address or constant.
201 if (!Global
&& (!Expr
|| !Expr
->isConstant()))
204 if (Global
&& Global
->isThreadLocal() &&
205 !Asm
->getObjFileLowering().supportDebugThreadLocalLocation())
209 addToAccelTable
= true;
210 Loc
= new (DIEValueAllocator
) DIELoc
;
211 DwarfExpr
= std::make_unique
<DIEDwarfExpression
>(*Asm
, *this, *Loc
);
216 // https://docs.nvidia.com/cuda/archive/10.0/ptx-writers-guide-to-interoperability/index.html#cuda-specific-dwarf
217 // cuda-gdb requires DW_AT_address_class for all variables to be able to
218 // correctly interpret address space of the variable address.
219 // Decode DW_OP_constu <DWARF Address Space> DW_OP_swap DW_OP_xderef
220 // sequence for the NVPTX + gdb target.
221 unsigned LocalNVPTXAddressSpace
;
222 if (Asm
->TM
.getTargetTriple().isNVPTX() && DD
->tuneForGDB()) {
223 const DIExpression
*NewExpr
=
224 DIExpression::extractAddressClass(Expr
, LocalNVPTXAddressSpace
);
225 if (NewExpr
!= Expr
) {
227 NVPTXAddressSpace
= LocalNVPTXAddressSpace
;
230 DwarfExpr
->addFragmentOffset(Expr
);
234 const MCSymbol
*Sym
= Asm
->getSymbol(Global
);
235 if (Global
->isThreadLocal()) {
236 if (Asm
->TM
.useEmulatedTLS()) {
237 // TODO: add debug info for emulated thread local mode.
239 // FIXME: Make this work with -gsplit-dwarf.
240 unsigned PointerSize
= Asm
->getDataLayout().getPointerSize();
241 assert((PointerSize
== 4 || PointerSize
== 8) &&
242 "Add support for other sizes if necessary");
243 // Based on GCC's support for TLS:
244 if (!DD
->useSplitDwarf()) {
245 // 1) Start with a constNu of the appropriate pointer size
246 addUInt(*Loc
, dwarf::DW_FORM_data1
,
247 PointerSize
== 4 ? dwarf::DW_OP_const4u
248 : dwarf::DW_OP_const8u
);
249 // 2) containing the (relocated) offset of the TLS variable
250 // within the module's TLS block.
251 addExpr(*Loc
, dwarf::DW_FORM_udata
,
252 Asm
->getObjFileLowering().getDebugThreadLocalSymbol(Sym
));
254 addUInt(*Loc
, dwarf::DW_FORM_data1
, dwarf::DW_OP_GNU_const_index
);
255 addUInt(*Loc
, dwarf::DW_FORM_udata
,
256 DD
->getAddressPool().getIndex(Sym
, /* TLS */ true));
258 // 3) followed by an OP to make the debugger do a TLS lookup.
259 addUInt(*Loc
, dwarf::DW_FORM_data1
,
260 DD
->useGNUTLSOpcode() ? dwarf::DW_OP_GNU_push_tls_address
261 : dwarf::DW_OP_form_tls_address
);
264 DD
->addArangeLabel(SymbolCU(this, Sym
));
265 addOpAddress(*Loc
, Sym
);
268 // Global variables attached to symbols are memory locations.
269 // It would be better if this were unconditional, but malformed input that
270 // mixes non-fragments and fragments for the same variable is too expensive
271 // to detect in the verifier.
272 if (DwarfExpr
->isUnknownLocation())
273 DwarfExpr
->setMemoryLocationKind();
274 DwarfExpr
->addExpression(Expr
);
276 if (Asm
->TM
.getTargetTriple().isNVPTX() && DD
->tuneForGDB()) {
278 // https://docs.nvidia.com/cuda/archive/10.0/ptx-writers-guide-to-interoperability/index.html#cuda-specific-dwarf
279 // cuda-gdb requires DW_AT_address_class for all variables to be able to
280 // correctly interpret address space of the variable address.
281 const unsigned NVPTX_ADDR_global_space
= 5;
282 addUInt(*VariableDIE
, dwarf::DW_AT_address_class
, dwarf::DW_FORM_data1
,
283 NVPTXAddressSpace
? *NVPTXAddressSpace
: NVPTX_ADDR_global_space
);
286 addBlock(*VariableDIE
, dwarf::DW_AT_location
, DwarfExpr
->finalize());
288 if (DD
->useAllLinkageNames())
289 addLinkageName(*VariableDIE
, GV
->getLinkageName());
291 if (addToAccelTable
) {
292 DD
->addAccelName(*CUNode
, GV
->getName(), *VariableDIE
);
294 // If the linkage name is different than the name, go ahead and output
295 // that as well into the name table.
296 if (GV
->getLinkageName() != "" && GV
->getName() != GV
->getLinkageName() &&
297 DD
->useAllLinkageNames())
298 DD
->addAccelName(*CUNode
, GV
->getLinkageName(), *VariableDIE
);
302 DIE
*DwarfCompileUnit::getOrCreateCommonBlock(
303 const DICommonBlock
*CB
, ArrayRef
<GlobalExpr
> GlobalExprs
) {
304 // Construct the context before querying for the existence of the DIE in case
305 // such construction creates the DIE.
306 DIE
*ContextDIE
= getOrCreateContextDIE(CB
->getScope());
308 if (DIE
*NDie
= getDIE(CB
))
310 DIE
&NDie
= createAndAddDIE(dwarf::DW_TAG_common_block
, *ContextDIE
, CB
);
311 StringRef Name
= CB
->getName().empty() ? "_BLNK_" : CB
->getName();
312 addString(NDie
, dwarf::DW_AT_name
, Name
);
313 addGlobalName(Name
, NDie
, CB
->getScope());
315 addSourceLine(NDie
, CB
->getLineNo(), CB
->getFile());
316 if (DIGlobalVariable
*V
= CB
->getDecl())
317 getCU().addLocationAttribute(&NDie
, V
, GlobalExprs
);
321 void DwarfCompileUnit::addRange(RangeSpan Range
) {
322 bool SameAsPrevCU
= this == DD
->getPrevCU();
324 // If we have no current ranges just add the range and return, otherwise,
325 // check the current section and CU against the previous section and CU we
326 // emitted into and the subprogram was contained within. If these are the
327 // same then extend our current range, otherwise add this as a new range.
328 if (CURanges
.empty() || !SameAsPrevCU
||
329 (&CURanges
.back().End
->getSection() !=
330 &Range
.End
->getSection())) {
331 CURanges
.push_back(Range
);
335 CURanges
.back().End
= Range
.End
;
338 void DwarfCompileUnit::initStmtList() {
339 if (CUNode
->isDebugDirectivesOnly())
342 // Define start line table label for each Compile Unit.
343 MCSymbol
*LineTableStartSym
;
344 const TargetLoweringObjectFile
&TLOF
= Asm
->getObjFileLowering();
345 if (DD
->useSectionsAsReferences()) {
346 LineTableStartSym
= TLOF
.getDwarfLineSection()->getBeginSymbol();
349 Asm
->OutStreamer
->getDwarfLineTableSymbol(getUniqueID());
352 // DW_AT_stmt_list is a offset of line number information for this
353 // compile unit in debug_line section. For split dwarf this is
354 // left in the skeleton CU and so not included.
355 // The line table entries are not always emitted in assembly, so it
356 // is not okay to use line_table_start here.
358 addSectionLabel(getUnitDie(), dwarf::DW_AT_stmt_list
, LineTableStartSym
,
359 TLOF
.getDwarfLineSection()->getBeginSymbol());
362 void DwarfCompileUnit::applyStmtList(DIE
&D
) {
363 D
.addValue(DIEValueAllocator
, *StmtListValue
);
366 void DwarfCompileUnit::attachLowHighPC(DIE
&D
, const MCSymbol
*Begin
,
367 const MCSymbol
*End
) {
368 assert(Begin
&& "Begin label should not be null!");
369 assert(End
&& "End label should not be null!");
370 assert(Begin
->isDefined() && "Invalid starting label");
371 assert(End
->isDefined() && "Invalid end label");
373 addLabelAddress(D
, dwarf::DW_AT_low_pc
, Begin
);
374 if (DD
->getDwarfVersion() < 4)
375 addLabelAddress(D
, dwarf::DW_AT_high_pc
, End
);
377 addLabelDelta(D
, dwarf::DW_AT_high_pc
, End
, Begin
);
380 // Find DIE for the given subprogram and attach appropriate DW_AT_low_pc
381 // and DW_AT_high_pc attributes. If there are global variables in this
382 // scope then create and insert DIEs for these variables.
383 DIE
&DwarfCompileUnit::updateSubprogramScopeDIE(const DISubprogram
*SP
) {
384 DIE
*SPDie
= getOrCreateSubprogramDIE(SP
, includeMinimalInlineScopes());
386 attachLowHighPC(*SPDie
, Asm
->getFunctionBegin(), Asm
->getFunctionEnd());
387 if (DD
->useAppleExtensionAttributes() &&
388 !DD
->getCurrentFunction()->getTarget().Options
.DisableFramePointerElim(
389 *DD
->getCurrentFunction()))
390 addFlag(*SPDie
, dwarf::DW_AT_APPLE_omit_frame_ptr
);
392 // Only include DW_AT_frame_base in full debug info
393 if (!includeMinimalInlineScopes()) {
394 if (Asm
->MF
->getTarget().getTargetTriple().isNVPTX()) {
395 DIELoc
*Loc
= new (DIEValueAllocator
) DIELoc
;
396 addUInt(*Loc
, dwarf::DW_FORM_data1
, dwarf::DW_OP_call_frame_cfa
);
397 addBlock(*SPDie
, dwarf::DW_AT_frame_base
, Loc
);
399 const TargetRegisterInfo
*RI
= Asm
->MF
->getSubtarget().getRegisterInfo();
400 MachineLocation
Location(RI
->getFrameRegister(*Asm
->MF
));
401 if (Register::isPhysicalRegister(Location
.getReg()))
402 addAddress(*SPDie
, dwarf::DW_AT_frame_base
, Location
);
406 // Add name to the name table, we do this here because we're guaranteed
407 // to have concrete versions of our DW_TAG_subprogram nodes.
408 DD
->addSubprogramNames(*CUNode
, SP
, *SPDie
);
413 // Construct a DIE for this scope.
414 void DwarfCompileUnit::constructScopeDIE(
415 LexicalScope
*Scope
, SmallVectorImpl
<DIE
*> &FinalChildren
) {
416 if (!Scope
|| !Scope
->getScopeNode())
419 auto *DS
= Scope
->getScopeNode();
421 assert((Scope
->getInlinedAt() || !isa
<DISubprogram
>(DS
)) &&
422 "Only handle inlined subprograms here, use "
423 "constructSubprogramScopeDIE for non-inlined "
426 SmallVector
<DIE
*, 8> Children
;
428 // We try to create the scope DIE first, then the children DIEs. This will
429 // avoid creating un-used children then removing them later when we find out
430 // the scope DIE is null.
432 if (Scope
->getParent() && isa
<DISubprogram
>(DS
)) {
433 ScopeDIE
= constructInlinedScopeDIE(Scope
);
436 // We create children when the scope DIE is not null.
437 createScopeChildrenDIE(Scope
, Children
);
439 // Early exit when we know the scope DIE is going to be null.
440 if (DD
->isLexicalScopeDIENull(Scope
))
443 bool HasNonScopeChildren
= false;
445 // We create children here when we know the scope DIE is not going to be
446 // null and the children will be added to the scope DIE.
447 createScopeChildrenDIE(Scope
, Children
, &HasNonScopeChildren
);
449 // If there are only other scopes as children, put them directly in the
450 // parent instead, as this scope would serve no purpose.
451 if (!HasNonScopeChildren
) {
452 FinalChildren
.insert(FinalChildren
.end(),
453 std::make_move_iterator(Children
.begin()),
454 std::make_move_iterator(Children
.end()));
457 ScopeDIE
= constructLexicalScopeDIE(Scope
);
458 assert(ScopeDIE
&& "Scope DIE should not be null.");
462 for (auto &I
: Children
)
463 ScopeDIE
->addChild(std::move(I
));
465 FinalChildren
.push_back(std::move(ScopeDIE
));
468 void DwarfCompileUnit::addScopeRangeList(DIE
&ScopeDIE
,
469 SmallVector
<RangeSpan
, 2> Range
) {
471 HasRangeLists
= true;
473 // Add the range list to the set of ranges to be emitted.
475 (DD
->getDwarfVersion() < 5 && Skeleton
? Skeleton
->DU
: DU
)
476 ->addRange(*(Skeleton
? Skeleton
: this), std::move(Range
));
478 uint32_t Index
= IndexAndList
.first
;
479 auto &List
= *IndexAndList
.second
;
481 // Under fission, ranges are specified by constant offsets relative to the
482 // CU's DW_AT_GNU_ranges_base.
483 // FIXME: For DWARF v5, do not generate the DW_AT_ranges attribute under
484 // fission until we support the forms using the .debug_addr section
485 // (DW_RLE_startx_endx etc.).
486 if (DD
->getDwarfVersion() >= 5)
487 addUInt(ScopeDIE
, dwarf::DW_AT_ranges
, dwarf::DW_FORM_rnglistx
, Index
);
489 const TargetLoweringObjectFile
&TLOF
= Asm
->getObjFileLowering();
490 const MCSymbol
*RangeSectionSym
=
491 TLOF
.getDwarfRangesSection()->getBeginSymbol();
493 addSectionDelta(ScopeDIE
, dwarf::DW_AT_ranges
, List
.getSym(),
496 addSectionLabel(ScopeDIE
, dwarf::DW_AT_ranges
, List
.getSym(),
501 void DwarfCompileUnit::attachRangesOrLowHighPC(
502 DIE
&Die
, SmallVector
<RangeSpan
, 2> Ranges
) {
503 if (Ranges
.size() == 1 || !DD
->useRangesSection()) {
504 const RangeSpan
&Front
= Ranges
.front();
505 const RangeSpan
&Back
= Ranges
.back();
506 attachLowHighPC(Die
, Front
.Begin
, Back
.End
);
508 addScopeRangeList(Die
, std::move(Ranges
));
511 void DwarfCompileUnit::attachRangesOrLowHighPC(
512 DIE
&Die
, const SmallVectorImpl
<InsnRange
> &Ranges
) {
513 SmallVector
<RangeSpan
, 2> List
;
514 List
.reserve(Ranges
.size());
515 for (const InsnRange
&R
: Ranges
)
517 {DD
->getLabelBeforeInsn(R
.first
), DD
->getLabelAfterInsn(R
.second
)});
518 attachRangesOrLowHighPC(Die
, std::move(List
));
521 // This scope represents inlined body of a function. Construct DIE to
522 // represent this concrete inlined copy of the function.
523 DIE
*DwarfCompileUnit::constructInlinedScopeDIE(LexicalScope
*Scope
) {
524 assert(Scope
->getScopeNode());
525 auto *DS
= Scope
->getScopeNode();
526 auto *InlinedSP
= getDISubprogram(DS
);
527 // Find the subprogram's DwarfCompileUnit in the SPMap in case the subprogram
528 // was inlined from another compile unit.
529 DIE
*OriginDIE
= getAbstractSPDies()[InlinedSP
];
530 assert(OriginDIE
&& "Unable to find original DIE for an inlined subprogram.");
532 auto ScopeDIE
= DIE::get(DIEValueAllocator
, dwarf::DW_TAG_inlined_subroutine
);
533 addDIEEntry(*ScopeDIE
, dwarf::DW_AT_abstract_origin
, *OriginDIE
);
535 attachRangesOrLowHighPC(*ScopeDIE
, Scope
->getRanges());
537 // Add the call site information to the DIE.
538 const DILocation
*IA
= Scope
->getInlinedAt();
539 addUInt(*ScopeDIE
, dwarf::DW_AT_call_file
, None
,
540 getOrCreateSourceID(IA
->getFile()));
541 addUInt(*ScopeDIE
, dwarf::DW_AT_call_line
, None
, IA
->getLine());
543 addUInt(*ScopeDIE
, dwarf::DW_AT_call_column
, None
, IA
->getColumn());
544 if (IA
->getDiscriminator() && DD
->getDwarfVersion() >= 4)
545 addUInt(*ScopeDIE
, dwarf::DW_AT_GNU_discriminator
, None
,
546 IA
->getDiscriminator());
548 // Add name to the name table, we do this here because we're guaranteed
549 // to have concrete versions of our DW_TAG_inlined_subprogram nodes.
550 DD
->addSubprogramNames(*CUNode
, InlinedSP
, *ScopeDIE
);
555 // Construct new DW_TAG_lexical_block for this scope and attach
556 // DW_AT_low_pc/DW_AT_high_pc labels.
557 DIE
*DwarfCompileUnit::constructLexicalScopeDIE(LexicalScope
*Scope
) {
558 if (DD
->isLexicalScopeDIENull(Scope
))
561 auto ScopeDIE
= DIE::get(DIEValueAllocator
, dwarf::DW_TAG_lexical_block
);
562 if (Scope
->isAbstractScope())
565 attachRangesOrLowHighPC(*ScopeDIE
, Scope
->getRanges());
570 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
571 DIE
*DwarfCompileUnit::constructVariableDIE(DbgVariable
&DV
, bool Abstract
) {
572 auto D
= constructVariableDIEImpl(DV
, Abstract
);
577 DIE
*DwarfCompileUnit::constructLabelDIE(DbgLabel
&DL
,
578 const LexicalScope
&Scope
) {
579 auto LabelDie
= DIE::get(DIEValueAllocator
, DL
.getTag());
580 insertDIE(DL
.getLabel(), LabelDie
);
581 DL
.setDIE(*LabelDie
);
583 if (Scope
.isAbstractScope())
584 applyLabelAttributes(DL
, *LabelDie
);
589 DIE
*DwarfCompileUnit::constructVariableDIEImpl(const DbgVariable
&DV
,
591 // Define variable debug information entry.
592 auto VariableDie
= DIE::get(DIEValueAllocator
, DV
.getTag());
593 insertDIE(DV
.getVariable(), VariableDie
);
596 applyVariableAttributes(DV
, *VariableDie
);
600 // Add variable address.
602 unsigned Offset
= DV
.getDebugLocListIndex();
604 addLocationList(*VariableDie
, dwarf::DW_AT_location
, Offset
);
608 // Check if variable has a single location description.
609 if (auto *DVal
= DV
.getValueLoc()) {
610 if (DVal
->isLocation())
611 addVariableAddress(DV
, *VariableDie
, DVal
->getLoc());
612 else if (DVal
->isInt()) {
613 auto *Expr
= DV
.getSingleExpression();
614 if (Expr
&& Expr
->getNumElements()) {
615 DIELoc
*Loc
= new (DIEValueAllocator
) DIELoc
;
616 DIEDwarfExpression
DwarfExpr(*Asm
, *this, *Loc
);
617 // If there is an expression, emit raw unsigned bytes.
618 DwarfExpr
.addFragmentOffset(Expr
);
619 DwarfExpr
.addUnsignedConstant(DVal
->getInt());
620 DwarfExpr
.addExpression(Expr
);
621 addBlock(*VariableDie
, dwarf::DW_AT_location
, DwarfExpr
.finalize());
623 addConstantValue(*VariableDie
, DVal
->getInt(), DV
.getType());
624 } else if (DVal
->isConstantFP()) {
625 addConstantFPValue(*VariableDie
, DVal
->getConstantFP());
626 } else if (DVal
->isConstantInt()) {
627 addConstantValue(*VariableDie
, DVal
->getConstantInt(), DV
.getType());
632 // .. else use frame index.
633 if (!DV
.hasFrameIndexExprs())
636 Optional
<unsigned> NVPTXAddressSpace
;
637 DIELoc
*Loc
= new (DIEValueAllocator
) DIELoc
;
638 DIEDwarfExpression
DwarfExpr(*Asm
, *this, *Loc
);
639 for (auto &Fragment
: DV
.getFrameIndexExprs()) {
640 unsigned FrameReg
= 0;
641 const DIExpression
*Expr
= Fragment
.Expr
;
642 const TargetFrameLowering
*TFI
= Asm
->MF
->getSubtarget().getFrameLowering();
643 int Offset
= TFI
->getFrameIndexReference(*Asm
->MF
, Fragment
.FI
, FrameReg
);
644 DwarfExpr
.addFragmentOffset(Expr
);
645 SmallVector
<uint64_t, 8> Ops
;
646 DIExpression::appendOffset(Ops
, Offset
);
648 // https://docs.nvidia.com/cuda/archive/10.0/ptx-writers-guide-to-interoperability/index.html#cuda-specific-dwarf
649 // cuda-gdb requires DW_AT_address_class for all variables to be able to
650 // correctly interpret address space of the variable address.
651 // Decode DW_OP_constu <DWARF Address Space> DW_OP_swap DW_OP_xderef
652 // sequence for the NVPTX + gdb target.
653 unsigned LocalNVPTXAddressSpace
;
654 if (Asm
->TM
.getTargetTriple().isNVPTX() && DD
->tuneForGDB()) {
655 const DIExpression
*NewExpr
=
656 DIExpression::extractAddressClass(Expr
, LocalNVPTXAddressSpace
);
657 if (NewExpr
!= Expr
) {
659 NVPTXAddressSpace
= LocalNVPTXAddressSpace
;
663 Ops
.append(Expr
->elements_begin(), Expr
->elements_end());
664 DIExpressionCursor
Cursor(Ops
);
665 DwarfExpr
.setMemoryLocationKind();
666 if (const MCSymbol
*FrameSymbol
= Asm
->getFunctionFrameSymbol())
667 addOpAddress(*Loc
, FrameSymbol
);
669 DwarfExpr
.addMachineRegExpression(
670 *Asm
->MF
->getSubtarget().getRegisterInfo(), Cursor
, FrameReg
);
671 DwarfExpr
.addExpression(std::move(Cursor
));
673 if (Asm
->TM
.getTargetTriple().isNVPTX() && DD
->tuneForGDB()) {
675 // https://docs.nvidia.com/cuda/archive/10.0/ptx-writers-guide-to-interoperability/index.html#cuda-specific-dwarf
676 // cuda-gdb requires DW_AT_address_class for all variables to be able to
677 // correctly interpret address space of the variable address.
678 const unsigned NVPTX_ADDR_local_space
= 6;
679 addUInt(*VariableDie
, dwarf::DW_AT_address_class
, dwarf::DW_FORM_data1
,
680 NVPTXAddressSpace
? *NVPTXAddressSpace
: NVPTX_ADDR_local_space
);
682 addBlock(*VariableDie
, dwarf::DW_AT_location
, DwarfExpr
.finalize());
683 if (DwarfExpr
.TagOffset
)
684 addUInt(*VariableDie
, dwarf::DW_AT_LLVM_tag_offset
, dwarf::DW_FORM_data1
,
685 *DwarfExpr
.TagOffset
);
690 DIE
*DwarfCompileUnit::constructVariableDIE(DbgVariable
&DV
,
691 const LexicalScope
&Scope
,
692 DIE
*&ObjectPointer
) {
693 auto Var
= constructVariableDIE(DV
, Scope
.isAbstractScope());
694 if (DV
.isObjectPointer())
699 /// Return all DIVariables that appear in count: expressions.
700 static SmallVector
<const DIVariable
*, 2> dependencies(DbgVariable
*Var
) {
701 SmallVector
<const DIVariable
*, 2> Result
;
702 auto *Array
= dyn_cast
<DICompositeType
>(Var
->getType());
703 if (!Array
|| Array
->getTag() != dwarf::DW_TAG_array_type
)
705 for (auto *El
: Array
->getElements()) {
706 if (auto *Subrange
= dyn_cast
<DISubrange
>(El
)) {
707 auto Count
= Subrange
->getCount();
708 if (auto *Dependency
= Count
.dyn_cast
<DIVariable
*>())
709 Result
.push_back(Dependency
);
715 /// Sort local variables so that variables appearing inside of helper
716 /// expressions come first.
717 static SmallVector
<DbgVariable
*, 8>
718 sortLocalVars(SmallVectorImpl
<DbgVariable
*> &Input
) {
719 SmallVector
<DbgVariable
*, 8> Result
;
720 SmallVector
<PointerIntPair
<DbgVariable
*, 1>, 8> WorkList
;
721 // Map back from a DIVariable to its containing DbgVariable.
722 SmallDenseMap
<const DILocalVariable
*, DbgVariable
*> DbgVar
;
723 // Set of DbgVariables in Result.
724 SmallDenseSet
<DbgVariable
*, 8> Visited
;
725 // For cycle detection.
726 SmallDenseSet
<DbgVariable
*, 8> Visiting
;
728 // Initialize the worklist and the DIVariable lookup table.
729 for (auto Var
: reverse(Input
)) {
730 DbgVar
.insert({Var
->getVariable(), Var
});
731 WorkList
.push_back({Var
, 0});
734 // Perform a stable topological sort by doing a DFS.
735 while (!WorkList
.empty()) {
736 auto Item
= WorkList
.back();
737 DbgVariable
*Var
= Item
.getPointer();
738 bool visitedAllDependencies
= Item
.getInt();
741 // Dependency is in a different lexical scope or a global.
746 if (Visited
.count(Var
))
749 // Add to Result if all dependencies are visited.
750 if (visitedAllDependencies
) {
752 Result
.push_back(Var
);
757 auto Res
= Visiting
.insert(Var
);
759 assert(false && "dependency cycle in local variables");
763 // Push dependencies and this node onto the worklist, so that this node is
764 // visited again after all of its dependencies are handled.
765 WorkList
.push_back({Var
, 1});
766 for (auto *Dependency
: dependencies(Var
)) {
767 auto Dep
= dyn_cast_or_null
<const DILocalVariable
>(Dependency
);
768 WorkList
.push_back({DbgVar
[Dep
], 0});
774 DIE
*DwarfCompileUnit::createScopeChildrenDIE(LexicalScope
*Scope
,
775 SmallVectorImpl
<DIE
*> &Children
,
776 bool *HasNonScopeChildren
) {
777 assert(Children
.empty());
778 DIE
*ObjectPointer
= nullptr;
780 // Emit function arguments (order is significant).
781 auto Vars
= DU
->getScopeVariables().lookup(Scope
);
782 for (auto &DV
: Vars
.Args
)
783 Children
.push_back(constructVariableDIE(*DV
.second
, *Scope
, ObjectPointer
));
785 // Emit local variables.
786 auto Locals
= sortLocalVars(Vars
.Locals
);
787 for (DbgVariable
*DV
: Locals
)
788 Children
.push_back(constructVariableDIE(*DV
, *Scope
, ObjectPointer
));
790 // Skip imported directives in gmlt-like data.
791 if (!includeMinimalInlineScopes()) {
792 // There is no need to emit empty lexical block DIE.
793 for (const auto *IE
: ImportedEntities
[Scope
->getScopeNode()])
795 constructImportedEntityDIE(cast
<DIImportedEntity
>(IE
)));
798 if (HasNonScopeChildren
)
799 *HasNonScopeChildren
= !Children
.empty();
801 for (DbgLabel
*DL
: DU
->getScopeLabels().lookup(Scope
))
802 Children
.push_back(constructLabelDIE(*DL
, *Scope
));
804 for (LexicalScope
*LS
: Scope
->getChildren())
805 constructScopeDIE(LS
, Children
);
807 return ObjectPointer
;
810 DIE
&DwarfCompileUnit::constructSubprogramScopeDIE(const DISubprogram
*Sub
,
811 LexicalScope
*Scope
) {
812 DIE
&ScopeDIE
= updateSubprogramScopeDIE(Sub
);
815 assert(!Scope
->getInlinedAt());
816 assert(!Scope
->isAbstractScope());
817 // Collect lexical scope children first.
818 // ObjectPointer might be a local (non-argument) local variable if it's a
819 // block's synthetic this pointer.
820 if (DIE
*ObjectPointer
= createAndAddScopeChildren(Scope
, ScopeDIE
))
821 addDIEEntry(ScopeDIE
, dwarf::DW_AT_object_pointer
, *ObjectPointer
);
824 // If this is a variadic function, add an unspecified parameter.
825 DITypeRefArray FnArgs
= Sub
->getType()->getTypeArray();
827 // If we have a single element of null, it is a function that returns void.
828 // If we have more than one elements and the last one is null, it is a
829 // variadic function.
830 if (FnArgs
.size() > 1 && !FnArgs
[FnArgs
.size() - 1] &&
831 !includeMinimalInlineScopes())
833 DIE::get(DIEValueAllocator
, dwarf::DW_TAG_unspecified_parameters
));
838 DIE
*DwarfCompileUnit::createAndAddScopeChildren(LexicalScope
*Scope
,
840 // We create children when the scope DIE is not null.
841 SmallVector
<DIE
*, 8> Children
;
842 DIE
*ObjectPointer
= createScopeChildrenDIE(Scope
, Children
);
845 for (auto &I
: Children
)
846 ScopeDIE
.addChild(std::move(I
));
848 return ObjectPointer
;
851 void DwarfCompileUnit::constructAbstractSubprogramScopeDIE(
852 LexicalScope
*Scope
) {
853 DIE
*&AbsDef
= getAbstractSPDies()[Scope
->getScopeNode()];
857 auto *SP
= cast
<DISubprogram
>(Scope
->getScopeNode());
860 DwarfCompileUnit
*ContextCU
= this;
862 if (includeMinimalInlineScopes())
863 ContextDIE
= &getUnitDie();
864 // Some of this is duplicated from DwarfUnit::getOrCreateSubprogramDIE, with
865 // the important distinction that the debug node is not associated with the
866 // DIE (since the debug node will be associated with the concrete DIE, if
867 // any). It could be refactored to some common utility function.
868 else if (auto *SPDecl
= SP
->getDeclaration()) {
869 ContextDIE
= &getUnitDie();
870 getOrCreateSubprogramDIE(SPDecl
);
872 ContextDIE
= getOrCreateContextDIE(SP
->getScope());
873 // The scope may be shared with a subprogram that has already been
874 // constructed in another CU, in which case we need to construct this
875 // subprogram in the same CU.
876 ContextCU
= DD
->lookupCU(ContextDIE
->getUnitDie());
879 // Passing null as the associated node because the abstract definition
880 // shouldn't be found by lookup.
881 AbsDef
= &ContextCU
->createAndAddDIE(dwarf::DW_TAG_subprogram
, *ContextDIE
, nullptr);
882 ContextCU
->applySubprogramAttributesToDefinition(SP
, *AbsDef
);
884 if (!ContextCU
->includeMinimalInlineScopes())
885 ContextCU
->addUInt(*AbsDef
, dwarf::DW_AT_inline
, None
, dwarf::DW_INL_inlined
);
886 if (DIE
*ObjectPointer
= ContextCU
->createAndAddScopeChildren(Scope
, *AbsDef
))
887 ContextCU
->addDIEEntry(*AbsDef
, dwarf::DW_AT_object_pointer
, *ObjectPointer
);
890 /// Whether to use the GNU analog for a DWARF5 tag, attribute, or location atom.
891 static bool useGNUAnalogForDwarf5Feature(DwarfDebug
*DD
) {
892 return DD
->getDwarfVersion() == 4 && DD
->tuneForGDB();
895 dwarf::Tag
DwarfCompileUnit::getDwarf5OrGNUTag(dwarf::Tag Tag
) const {
896 if (!useGNUAnalogForDwarf5Feature(DD
))
899 case dwarf::DW_TAG_call_site
:
900 return dwarf::DW_TAG_GNU_call_site
;
901 case dwarf::DW_TAG_call_site_parameter
:
902 return dwarf::DW_TAG_GNU_call_site_parameter
;
904 llvm_unreachable("DWARF5 tag with no GNU analog");
909 DwarfCompileUnit::getDwarf5OrGNUAttr(dwarf::Attribute Attr
) const {
910 if (!useGNUAnalogForDwarf5Feature(DD
))
913 case dwarf::DW_AT_call_all_calls
:
914 return dwarf::DW_AT_GNU_all_call_sites
;
915 case dwarf::DW_AT_call_target
:
916 return dwarf::DW_AT_GNU_call_site_target
;
917 case dwarf::DW_AT_call_origin
:
918 return dwarf::DW_AT_abstract_origin
;
919 case dwarf::DW_AT_call_pc
:
920 return dwarf::DW_AT_low_pc
;
921 case dwarf::DW_AT_call_value
:
922 return dwarf::DW_AT_GNU_call_site_value
;
923 case dwarf::DW_AT_call_tail_call
:
924 return dwarf::DW_AT_GNU_tail_call
;
926 llvm_unreachable("DWARF5 attribute with no GNU analog");
931 DwarfCompileUnit::getDwarf5OrGNULocationAtom(dwarf::LocationAtom Loc
) const {
932 if (!useGNUAnalogForDwarf5Feature(DD
))
935 case dwarf::DW_OP_entry_value
:
936 return dwarf::DW_OP_GNU_entry_value
;
938 llvm_unreachable("DWARF5 location atom with no GNU analog");
942 DIE
&DwarfCompileUnit::constructCallSiteEntryDIE(
943 DIE
&ScopeDIE
, const DISubprogram
*CalleeSP
, bool IsTail
,
944 const MCSymbol
*PCAddr
, const MCExpr
*PCOffset
, unsigned CallReg
) {
945 // Insert a call site entry DIE within ScopeDIE.
946 DIE
&CallSiteDIE
= createAndAddDIE(getDwarf5OrGNUTag(dwarf::DW_TAG_call_site
),
951 addAddress(CallSiteDIE
, getDwarf5OrGNUAttr(dwarf::DW_AT_call_target
),
952 MachineLocation(CallReg
));
954 DIE
*CalleeDIE
= getOrCreateSubprogramDIE(CalleeSP
);
955 assert(CalleeDIE
&& "Could not create DIE for call site entry origin");
956 addDIEEntry(CallSiteDIE
, getDwarf5OrGNUAttr(dwarf::DW_AT_call_origin
),
961 // Attach DW_AT_call_tail_call to tail calls for standards compliance.
962 addFlag(CallSiteDIE
, getDwarf5OrGNUAttr(dwarf::DW_AT_call_tail_call
));
964 // Attach the return PC to allow the debugger to disambiguate call paths
965 // from one function to another.
966 if (DD
->getDwarfVersion() == 4 && DD
->tuneForGDB()) {
967 assert(PCAddr
&& "Missing PC information for a call");
968 addLabelAddress(CallSiteDIE
, dwarf::DW_AT_low_pc
, PCAddr
);
969 } else if (!IsTail
|| DD
->tuneForGDB()) {
970 assert(PCOffset
&& "Missing return PC information for a call");
971 addAddressExpr(CallSiteDIE
, dwarf::DW_AT_call_return_pc
, PCOffset
);
977 void DwarfCompileUnit::constructCallSiteParmEntryDIEs(
978 DIE
&CallSiteDIE
, SmallVector
<DbgCallSiteParam
, 4> &Params
) {
979 for (const auto &Param
: Params
) {
980 unsigned Register
= Param
.getRegister();
981 auto CallSiteDieParam
=
982 DIE::get(DIEValueAllocator
,
983 getDwarf5OrGNUTag(dwarf::DW_TAG_call_site_parameter
));
984 insertDIE(CallSiteDieParam
);
985 addAddress(*CallSiteDieParam
, dwarf::DW_AT_location
,
986 MachineLocation(Register
));
988 DIELoc
*Loc
= new (DIEValueAllocator
) DIELoc
;
989 DIEDwarfExpression
DwarfExpr(*Asm
, *this, *Loc
);
990 DwarfExpr
.setCallSiteParamValueFlag();
992 DwarfDebug::emitDebugLocValue(*Asm
, nullptr, Param
.getValue(), DwarfExpr
);
994 addBlock(*CallSiteDieParam
, getDwarf5OrGNUAttr(dwarf::DW_AT_call_value
),
995 DwarfExpr
.finalize());
997 CallSiteDIE
.addChild(CallSiteDieParam
);
1001 DIE
*DwarfCompileUnit::constructImportedEntityDIE(
1002 const DIImportedEntity
*Module
) {
1003 DIE
*IMDie
= DIE::get(DIEValueAllocator
, (dwarf::Tag
)Module
->getTag());
1004 insertDIE(Module
, IMDie
);
1006 auto *Entity
= Module
->getEntity();
1007 if (auto *NS
= dyn_cast
<DINamespace
>(Entity
))
1008 EntityDie
= getOrCreateNameSpace(NS
);
1009 else if (auto *M
= dyn_cast
<DIModule
>(Entity
))
1010 EntityDie
= getOrCreateModule(M
);
1011 else if (auto *SP
= dyn_cast
<DISubprogram
>(Entity
))
1012 EntityDie
= getOrCreateSubprogramDIE(SP
);
1013 else if (auto *T
= dyn_cast
<DIType
>(Entity
))
1014 EntityDie
= getOrCreateTypeDIE(T
);
1015 else if (auto *GV
= dyn_cast
<DIGlobalVariable
>(Entity
))
1016 EntityDie
= getOrCreateGlobalVariableDIE(GV
, {});
1018 EntityDie
= getDIE(Entity
);
1020 addSourceLine(*IMDie
, Module
->getLine(), Module
->getFile());
1021 addDIEEntry(*IMDie
, dwarf::DW_AT_import
, *EntityDie
);
1022 StringRef Name
= Module
->getName();
1024 addString(*IMDie
, dwarf::DW_AT_name
, Name
);
1029 void DwarfCompileUnit::finishSubprogramDefinition(const DISubprogram
*SP
) {
1030 DIE
*D
= getDIE(SP
);
1031 if (DIE
*AbsSPDIE
= getAbstractSPDies().lookup(SP
)) {
1033 // If this subprogram has an abstract definition, reference that
1034 addDIEEntry(*D
, dwarf::DW_AT_abstract_origin
, *AbsSPDIE
);
1036 assert(D
|| includeMinimalInlineScopes());
1038 // And attach the attributes
1039 applySubprogramAttributesToDefinition(SP
, *D
);
1043 void DwarfCompileUnit::finishEntityDefinition(const DbgEntity
*Entity
) {
1044 DbgEntity
*AbsEntity
= getExistingAbstractEntity(Entity
->getEntity());
1046 auto *Die
= Entity
->getDIE();
1047 /// Label may be used to generate DW_AT_low_pc, so put it outside
1049 const DbgLabel
*Label
= nullptr;
1050 if (AbsEntity
&& AbsEntity
->getDIE()) {
1051 addDIEEntry(*Die
, dwarf::DW_AT_abstract_origin
, *AbsEntity
->getDIE());
1052 Label
= dyn_cast
<const DbgLabel
>(Entity
);
1054 if (const DbgVariable
*Var
= dyn_cast
<const DbgVariable
>(Entity
))
1055 applyVariableAttributes(*Var
, *Die
);
1056 else if ((Label
= dyn_cast
<const DbgLabel
>(Entity
)))
1057 applyLabelAttributes(*Label
, *Die
);
1059 llvm_unreachable("DbgEntity must be DbgVariable or DbgLabel.");
1063 if (const auto *Sym
= Label
->getSymbol())
1064 addLabelAddress(*Die
, dwarf::DW_AT_low_pc
, Sym
);
1067 DbgEntity
*DwarfCompileUnit::getExistingAbstractEntity(const DINode
*Node
) {
1068 auto &AbstractEntities
= getAbstractEntities();
1069 auto I
= AbstractEntities
.find(Node
);
1070 if (I
!= AbstractEntities
.end())
1071 return I
->second
.get();
1075 void DwarfCompileUnit::createAbstractEntity(const DINode
*Node
,
1076 LexicalScope
*Scope
) {
1077 assert(Scope
&& Scope
->isAbstractScope());
1078 auto &Entity
= getAbstractEntities()[Node
];
1079 if (isa
<const DILocalVariable
>(Node
)) {
1080 Entity
= std::make_unique
<DbgVariable
>(
1081 cast
<const DILocalVariable
>(Node
), nullptr /* IA */);;
1082 DU
->addScopeVariable(Scope
, cast
<DbgVariable
>(Entity
.get()));
1083 } else if (isa
<const DILabel
>(Node
)) {
1084 Entity
= std::make_unique
<DbgLabel
>(
1085 cast
<const DILabel
>(Node
), nullptr /* IA */);
1086 DU
->addScopeLabel(Scope
, cast
<DbgLabel
>(Entity
.get()));
1090 void DwarfCompileUnit::emitHeader(bool UseOffsets
) {
1091 // Don't bother labeling the .dwo unit, as its offset isn't used.
1092 if (!Skeleton
&& !DD
->useSectionsAsReferences()) {
1093 LabelBegin
= Asm
->createTempSymbol("cu_begin");
1094 Asm
->OutStreamer
->EmitLabel(LabelBegin
);
1097 dwarf::UnitType UT
= Skeleton
? dwarf::DW_UT_split_compile
1098 : DD
->useSplitDwarf() ? dwarf::DW_UT_skeleton
1099 : dwarf::DW_UT_compile
;
1100 DwarfUnit::emitCommonHeader(UseOffsets
, UT
);
1101 if (DD
->getDwarfVersion() >= 5 && UT
!= dwarf::DW_UT_compile
)
1102 Asm
->emitInt64(getDWOId());
1105 bool DwarfCompileUnit::hasDwarfPubSections() const {
1106 switch (CUNode
->getNameTableKind()) {
1107 case DICompileUnit::DebugNameTableKind::None
:
1109 // Opting in to GNU Pubnames/types overrides the default to ensure these are
1110 // generated for things like Gold's gdb_index generation.
1111 case DICompileUnit::DebugNameTableKind::GNU
:
1113 case DICompileUnit::DebugNameTableKind::Default
:
1114 return DD
->tuneForGDB() && !includeMinimalInlineScopes() &&
1115 !CUNode
->isDebugDirectivesOnly() &&
1116 DD
->getAccelTableKind() != AccelTableKind::Apple
&&
1117 DD
->getDwarfVersion() < 5;
1119 llvm_unreachable("Unhandled DICompileUnit::DebugNameTableKind enum");
1122 /// addGlobalName - Add a new global name to the compile unit.
1123 void DwarfCompileUnit::addGlobalName(StringRef Name
, const DIE
&Die
,
1124 const DIScope
*Context
) {
1125 if (!hasDwarfPubSections())
1127 std::string FullName
= getParentContextString(Context
) + Name
.str();
1128 GlobalNames
[FullName
] = &Die
;
1131 void DwarfCompileUnit::addGlobalNameForTypeUnit(StringRef Name
,
1132 const DIScope
*Context
) {
1133 if (!hasDwarfPubSections())
1135 std::string FullName
= getParentContextString(Context
) + Name
.str();
1136 // Insert, allowing the entry to remain as-is if it's already present
1137 // This way the CU-level type DIE is preferred over the "can't describe this
1138 // type as a unit offset because it's not really in the CU at all, it's only
1140 GlobalNames
.insert(std::make_pair(std::move(FullName
), &getUnitDie()));
1143 /// Add a new global type to the unit.
1144 void DwarfCompileUnit::addGlobalType(const DIType
*Ty
, const DIE
&Die
,
1145 const DIScope
*Context
) {
1146 if (!hasDwarfPubSections())
1148 std::string FullName
= getParentContextString(Context
) + Ty
->getName().str();
1149 GlobalTypes
[FullName
] = &Die
;
1152 void DwarfCompileUnit::addGlobalTypeUnitType(const DIType
*Ty
,
1153 const DIScope
*Context
) {
1154 if (!hasDwarfPubSections())
1156 std::string FullName
= getParentContextString(Context
) + Ty
->getName().str();
1157 // Insert, allowing the entry to remain as-is if it's already present
1158 // This way the CU-level type DIE is preferred over the "can't describe this
1159 // type as a unit offset because it's not really in the CU at all, it's only
1161 GlobalTypes
.insert(std::make_pair(std::move(FullName
), &getUnitDie()));
1164 void DwarfCompileUnit::addVariableAddress(const DbgVariable
&DV
, DIE
&Die
,
1165 MachineLocation Location
) {
1166 if (DV
.hasComplexAddress())
1167 addComplexAddress(DV
, Die
, dwarf::DW_AT_location
, Location
);
1169 addAddress(Die
, dwarf::DW_AT_location
, Location
);
1172 /// Add an address attribute to a die based on the location provided.
1173 void DwarfCompileUnit::addAddress(DIE
&Die
, dwarf::Attribute Attribute
,
1174 const MachineLocation
&Location
) {
1175 DIELoc
*Loc
= new (DIEValueAllocator
) DIELoc
;
1176 DIEDwarfExpression
DwarfExpr(*Asm
, *this, *Loc
);
1177 if (Location
.isIndirect())
1178 DwarfExpr
.setMemoryLocationKind();
1180 DIExpressionCursor
Cursor({});
1181 const TargetRegisterInfo
&TRI
= *Asm
->MF
->getSubtarget().getRegisterInfo();
1182 if (!DwarfExpr
.addMachineRegExpression(TRI
, Cursor
, Location
.getReg()))
1184 DwarfExpr
.addExpression(std::move(Cursor
));
1186 // Now attach the location information to the DIE.
1187 addBlock(Die
, Attribute
, DwarfExpr
.finalize());
1190 /// Start with the address based on the location provided, and generate the
1191 /// DWARF information necessary to find the actual variable given the extra
1192 /// address information encoded in the DbgVariable, starting from the starting
1193 /// location. Add the DWARF information to the die.
1194 void DwarfCompileUnit::addComplexAddress(const DbgVariable
&DV
, DIE
&Die
,
1195 dwarf::Attribute Attribute
,
1196 const MachineLocation
&Location
) {
1197 DIELoc
*Loc
= new (DIEValueAllocator
) DIELoc
;
1198 DIEDwarfExpression
DwarfExpr(*Asm
, *this, *Loc
);
1199 const DIExpression
*DIExpr
= DV
.getSingleExpression();
1200 DwarfExpr
.addFragmentOffset(DIExpr
);
1201 if (Location
.isIndirect())
1202 DwarfExpr
.setMemoryLocationKind();
1204 DIExpressionCursor
Cursor(DIExpr
);
1206 if (DIExpr
->isEntryValue()) {
1207 DwarfExpr
.setEntryValueFlag();
1208 DwarfExpr
.beginEntryValueExpression(Cursor
);
1211 const TargetRegisterInfo
&TRI
= *Asm
->MF
->getSubtarget().getRegisterInfo();
1212 if (!DwarfExpr
.addMachineRegExpression(TRI
, Cursor
, Location
.getReg()))
1214 DwarfExpr
.addExpression(std::move(Cursor
));
1216 // Now attach the location information to the DIE.
1217 addBlock(Die
, Attribute
, DwarfExpr
.finalize());
1220 /// Add a Dwarf loclistptr attribute data and value.
1221 void DwarfCompileUnit::addLocationList(DIE
&Die
, dwarf::Attribute Attribute
,
1223 dwarf::Form Form
= DD
->getDwarfVersion() >= 4 ? dwarf::DW_FORM_sec_offset
1224 : dwarf::DW_FORM_data4
;
1225 Die
.addValue(DIEValueAllocator
, Attribute
, Form
, DIELocList(Index
));
1228 void DwarfCompileUnit::applyVariableAttributes(const DbgVariable
&Var
,
1230 StringRef Name
= Var
.getName();
1232 addString(VariableDie
, dwarf::DW_AT_name
, Name
);
1233 const auto *DIVar
= Var
.getVariable();
1235 if (uint32_t AlignInBytes
= DIVar
->getAlignInBytes())
1236 addUInt(VariableDie
, dwarf::DW_AT_alignment
, dwarf::DW_FORM_udata
,
1239 addSourceLine(VariableDie
, DIVar
);
1240 addType(VariableDie
, Var
.getType());
1241 if (Var
.isArtificial())
1242 addFlag(VariableDie
, dwarf::DW_AT_artificial
);
1245 void DwarfCompileUnit::applyLabelAttributes(const DbgLabel
&Label
,
1247 StringRef Name
= Label
.getName();
1249 addString(LabelDie
, dwarf::DW_AT_name
, Name
);
1250 const auto *DILabel
= Label
.getLabel();
1251 addSourceLine(LabelDie
, DILabel
);
1254 /// Add a Dwarf expression attribute data and value.
1255 void DwarfCompileUnit::addExpr(DIELoc
&Die
, dwarf::Form Form
,
1256 const MCExpr
*Expr
) {
1257 Die
.addValue(DIEValueAllocator
, (dwarf::Attribute
)0, Form
, DIEExpr(Expr
));
1260 void DwarfCompileUnit::addAddressExpr(DIE
&Die
, dwarf::Attribute Attribute
,
1261 const MCExpr
*Expr
) {
1262 Die
.addValue(DIEValueAllocator
, Attribute
, dwarf::DW_FORM_addr
,
1266 void DwarfCompileUnit::applySubprogramAttributesToDefinition(
1267 const DISubprogram
*SP
, DIE
&SPDie
) {
1268 auto *SPDecl
= SP
->getDeclaration();
1269 auto *Context
= SPDecl
? SPDecl
->getScope() : SP
->getScope();
1270 applySubprogramAttributes(SP
, SPDie
, includeMinimalInlineScopes());
1271 addGlobalName(SP
->getName(), SPDie
, Context
);
1274 bool DwarfCompileUnit::isDwoUnit() const {
1275 return DD
->useSplitDwarf() && Skeleton
;
1278 void DwarfCompileUnit::finishNonUnitTypeDIE(DIE
& D
, const DICompositeType
*CTy
) {
1279 constructTypeDIE(D
, CTy
);
1282 bool DwarfCompileUnit::includeMinimalInlineScopes() const {
1283 return getCUNode()->getEmissionKind() == DICompileUnit::LineTablesOnly
||
1284 (DD
->useSplitDwarf() && !Skeleton
);
1287 void DwarfCompileUnit::addAddrTableBase() {
1288 const TargetLoweringObjectFile
&TLOF
= Asm
->getObjFileLowering();
1289 MCSymbol
*Label
= DD
->getAddressPool().getLabel();
1290 addSectionLabel(getUnitDie(),
1291 getDwarfVersion() >= 5 ? dwarf::DW_AT_addr_base
1292 : dwarf::DW_AT_GNU_addr_base
,
1293 Label
, TLOF
.getDwarfAddrSection()->getBeginSymbol());
1296 void DwarfCompileUnit::addBaseTypeRef(DIEValueList
&Die
, int64_t Idx
) {
1297 Die
.addValue(DIEValueAllocator
, (dwarf::Attribute
)0, dwarf::DW_FORM_udata
,
1298 new (DIEValueAllocator
) DIEBaseTypeRef(this, Idx
));
1301 void DwarfCompileUnit::createBaseTypeDIEs() {
1302 // Insert the base_type DIEs directly after the CU so that their offsets will
1303 // fit in the fixed size ULEB128 used inside the location expressions.
1304 // Maintain order by iterating backwards and inserting to the front of CU
1306 for (auto &Btr
: reverse(ExprRefedBaseTypes
)) {
1307 DIE
&Die
= getUnitDie().addChildFront(
1308 DIE::get(DIEValueAllocator
, dwarf::DW_TAG_base_type
));
1309 SmallString
<32> Str
;
1310 addString(Die
, dwarf::DW_AT_name
,
1311 Twine(dwarf::AttributeEncodingString(Btr
.Encoding
) +
1312 "_" + Twine(Btr
.BitSize
)).toStringRef(Str
));
1313 addUInt(Die
, dwarf::DW_AT_encoding
, dwarf::DW_FORM_data1
, Btr
.Encoding
);
1314 addUInt(Die
, dwarf::DW_AT_byte_size
, None
, Btr
.BitSize
/ 8);