blob: 580785588a7e4777f6de3a6af083637a9cb0947e [file] [log] [blame]
David Blaikie37c52312014-10-04 15:49:50 +00001#include "DwarfCompileUnit.h"
2
David Blaikiecda2aa82014-10-04 16:24:00 +00003#include "llvm/CodeGen/MachineFunction.h"
David Blaikie37c52312014-10-04 15:49:50 +00004#include "llvm/IR/DataLayout.h"
5#include "llvm/IR/GlobalValue.h"
6#include "llvm/IR/GlobalVariable.h"
7#include "llvm/IR/Instruction.h"
8#include "llvm/MC/MCAsmInfo.h"
9#include "llvm/MC/MCStreamer.h"
David Blaikieee7df552014-10-09 17:56:36 +000010#include "llvm/Target/TargetFrameLowering.h"
David Blaikie37c52312014-10-04 15:49:50 +000011#include "llvm/Target/TargetLoweringObjectFile.h"
David Blaikiecda2aa82014-10-04 16:24:00 +000012#include "llvm/Target/TargetMachine.h"
13#include "llvm/Target/TargetSubtargetInfo.h"
14#include "llvm/Target/TargetRegisterInfo.h"
David Blaikie37c52312014-10-04 15:49:50 +000015
16namespace llvm {
17
18DwarfCompileUnit::DwarfCompileUnit(unsigned UID, DICompileUnit Node,
19 AsmPrinter *A, DwarfDebug *DW,
20 DwarfFile *DWU)
David Blaikie7cbf58a2014-11-01 18:18:07 +000021 : DwarfUnit(UID, dwarf::DW_TAG_compile_unit, Node, A, DW, DWU),
David Blaikiece343492014-11-03 21:15:30 +000022 Skeleton(nullptr), LabelBegin(nullptr), BaseAddress(nullptr) {
David Blaikie37c52312014-10-04 15:49:50 +000023 insertDIE(Node, &getUnitDie());
24}
25
26/// addLabelAddress - Add a dwarf label attribute data and value using
27/// DW_FORM_addr or DW_FORM_GNU_addr_index.
28///
29void DwarfCompileUnit::addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
30 const MCSymbol *Label) {
31
32 // Don't use the address pool in non-fission or in the skeleton unit itself.
33 // FIXME: Once GDB supports this, it's probably worthwhile using the address
34 // pool from the skeleton - maybe even in non-fission (possibly fewer
35 // relocations by sharing them in the pool, but we have other ideas about how
36 // to reduce the number of relocations as well/instead).
37 if (!DD->useSplitDwarf() || !Skeleton)
38 return addLocalLabelAddress(Die, Attribute, Label);
39
40 if (Label)
41 DD->addArangeLabel(SymbolCU(this, Label));
42
43 unsigned idx = DD->getAddressPool().getIndex(Label);
44 DIEValue *Value = new (DIEValueAllocator) DIEInteger(idx);
45 Die.addValue(Attribute, dwarf::DW_FORM_GNU_addr_index, Value);
46}
47
48void DwarfCompileUnit::addLocalLabelAddress(DIE &Die,
49 dwarf::Attribute Attribute,
50 const MCSymbol *Label) {
51 if (Label)
52 DD->addArangeLabel(SymbolCU(this, Label));
53
54 Die.addValue(Attribute, dwarf::DW_FORM_addr,
55 Label ? (DIEValue *)new (DIEValueAllocator) DIELabel(Label)
56 : new (DIEValueAllocator) DIEInteger(0));
57}
58
David Blaikie89452192014-10-04 16:00:26 +000059unsigned DwarfCompileUnit::getOrCreateSourceID(StringRef FileName,
60 StringRef DirName) {
David Blaikie37c52312014-10-04 15:49:50 +000061 // If we print assembly, we can't separate .file entries according to
62 // compile units. Thus all files will belong to the default compile unit.
63
64 // FIXME: add a better feature test than hasRawTextSupport. Even better,
65 // extend .file to support this.
66 return Asm->OutStreamer.EmitDwarfFileDirective(
67 0, DirName, FileName,
68 Asm->OutStreamer.hasRawTextSupport() ? 0 : getUniqueID());
69}
70
71// Return const expression if value is a GEP to access merged global
72// constant. e.g.
73// i8* getelementptr ({ i8, i8, i8, i8 }* @_MergedGlobals, i32 0, i32 0)
74static const ConstantExpr *getMergedGlobalExpr(const Value *V) {
75 const ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(V);
76 if (!CE || CE->getNumOperands() != 3 ||
77 CE->getOpcode() != Instruction::GetElementPtr)
78 return nullptr;
79
80 // First operand points to a global struct.
81 Value *Ptr = CE->getOperand(0);
82 if (!isa<GlobalValue>(Ptr) ||
83 !isa<StructType>(cast<PointerType>(Ptr->getType())->getElementType()))
84 return nullptr;
85
86 // Second operand is zero.
87 const ConstantInt *CI = dyn_cast_or_null<ConstantInt>(CE->getOperand(1));
88 if (!CI || !CI->isZero())
89 return nullptr;
90
91 // Third operand is offset.
92 if (!isa<ConstantInt>(CE->getOperand(2)))
93 return nullptr;
94
95 return CE;
96}
97
98/// getOrCreateGlobalVariableDIE - get or create global variable DIE.
99DIE *DwarfCompileUnit::getOrCreateGlobalVariableDIE(DIGlobalVariable GV) {
100 // Check for pre-existence.
101 if (DIE *Die = getDIE(GV))
102 return Die;
103
104 assert(GV.isGlobalVariable());
105
106 DIScope GVContext = GV.getContext();
107 DIType GTy = DD->resolve(GV.getType());
108
David Blaikie49cfc8c2014-10-23 19:12:43 +0000109 // Construct the context before querying for the existence of the DIE in
110 // case such construction creates the DIE.
111 DIE *ContextDIE = getOrCreateContextDIE(GVContext);
112
113 // Add to map.
114 DIE *VariableDIE = &createAndAddDIE(GV.getTag(), *ContextDIE, GV);
115 DIScope DeclContext;
116
117 if (DIDerivedType SDMDecl = GV.getStaticDataMemberDeclaration()) {
118 DeclContext = resolve(SDMDecl.getContext());
David Blaikie37c52312014-10-04 15:49:50 +0000119 assert(SDMDecl.isStaticMember() && "Expected static member decl");
David Blaikie49cfc8c2014-10-23 19:12:43 +0000120 assert(GV.isDefinition());
David Blaikie37c52312014-10-04 15:49:50 +0000121 // We need the declaration DIE that is in the static member's class.
David Blaikie49cfc8c2014-10-23 19:12:43 +0000122 DIE *VariableSpecDIE = getOrCreateStaticMemberDIE(SDMDecl);
123 addDIEEntry(*VariableDIE, dwarf::DW_AT_specification, *VariableSpecDIE);
124 } else {
125 DeclContext = GV.getContext();
David Blaikie37c52312014-10-04 15:49:50 +0000126 // Add name and type.
127 addString(*VariableDIE, dwarf::DW_AT_name, GV.getDisplayName());
128 addType(*VariableDIE, GTy);
129
130 // Add scoping info.
131 if (!GV.isLocalToUnit())
132 addFlag(*VariableDIE, dwarf::DW_AT_external);
133
134 // Add line number info.
135 addSourceLine(*VariableDIE, GV);
136 }
137
David Blaikie49cfc8c2014-10-23 19:12:43 +0000138 if (!GV.isDefinition())
139 addFlag(*VariableDIE, dwarf::DW_AT_declaration);
140
David Blaikie37c52312014-10-04 15:49:50 +0000141 // Add location.
142 bool addToAccelTable = false;
David Blaikie37c52312014-10-04 15:49:50 +0000143 bool isGlobalVariable = GV.getGlobal() != nullptr;
144 if (isGlobalVariable) {
145 addToAccelTable = true;
146 DIELoc *Loc = new (DIEValueAllocator) DIELoc();
147 const MCSymbol *Sym = Asm->getSymbol(GV.getGlobal());
148 if (GV.getGlobal()->isThreadLocal()) {
149 // FIXME: Make this work with -gsplit-dwarf.
150 unsigned PointerSize = Asm->getDataLayout().getPointerSize();
151 assert((PointerSize == 4 || PointerSize == 8) &&
152 "Add support for other sizes if necessary");
153 // Based on GCC's support for TLS:
154 if (!DD->useSplitDwarf()) {
155 // 1) Start with a constNu of the appropriate pointer size
156 addUInt(*Loc, dwarf::DW_FORM_data1,
157 PointerSize == 4 ? dwarf::DW_OP_const4u : dwarf::DW_OP_const8u);
158 // 2) containing the (relocated) offset of the TLS variable
159 // within the module's TLS block.
160 addExpr(*Loc, dwarf::DW_FORM_udata,
161 Asm->getObjFileLowering().getDebugThreadLocalSymbol(Sym));
162 } else {
163 addUInt(*Loc, dwarf::DW_FORM_data1, dwarf::DW_OP_GNU_const_index);
164 addUInt(*Loc, dwarf::DW_FORM_udata,
165 DD->getAddressPool().getIndex(Sym, /* TLS */ true));
166 }
167 // 3) followed by a custom OP to make the debugger do a TLS lookup.
168 addUInt(*Loc, dwarf::DW_FORM_data1, dwarf::DW_OP_GNU_push_tls_address);
169 } else {
170 DD->addArangeLabel(SymbolCU(this, Sym));
171 addOpAddress(*Loc, Sym);
172 }
David Blaikie49cfc8c2014-10-23 19:12:43 +0000173
174 addBlock(*VariableDIE, dwarf::DW_AT_location, Loc);
David Blaikie37c52312014-10-04 15:49:50 +0000175 // Add the linkage name.
176 StringRef LinkageName = GV.getLinkageName();
177 if (!LinkageName.empty())
178 // From DWARF4: DIEs to which DW_AT_linkage_name may apply include:
179 // TAG_common_block, TAG_constant, TAG_entry_point, TAG_subprogram and
180 // TAG_variable.
David Blaikie49cfc8c2014-10-23 19:12:43 +0000181 addString(*VariableDIE,
David Blaikie37c52312014-10-04 15:49:50 +0000182 DD->getDwarfVersion() >= 4 ? dwarf::DW_AT_linkage_name
183 : dwarf::DW_AT_MIPS_linkage_name,
184 GlobalValue::getRealLinkageName(LinkageName));
185 } else if (const ConstantInt *CI =
186 dyn_cast_or_null<ConstantInt>(GV.getConstant())) {
David Blaikie49cfc8c2014-10-23 19:12:43 +0000187 addConstantValue(*VariableDIE, CI, GTy);
David Blaikie37c52312014-10-04 15:49:50 +0000188 } else if (const ConstantExpr *CE = getMergedGlobalExpr(GV.getConstant())) {
189 addToAccelTable = true;
190 // GV is a merged global.
191 DIELoc *Loc = new (DIEValueAllocator) DIELoc();
192 Value *Ptr = CE->getOperand(0);
193 MCSymbol *Sym = Asm->getSymbol(cast<GlobalValue>(Ptr));
194 DD->addArangeLabel(SymbolCU(this, Sym));
195 addOpAddress(*Loc, Sym);
196 addUInt(*Loc, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
197 SmallVector<Value *, 3> Idx(CE->op_begin() + 1, CE->op_end());
198 addUInt(*Loc, dwarf::DW_FORM_udata,
199 Asm->getDataLayout().getIndexedOffset(Ptr->getType(), Idx));
200 addUInt(*Loc, dwarf::DW_FORM_data1, dwarf::DW_OP_plus);
201 addBlock(*VariableDIE, dwarf::DW_AT_location, Loc);
202 }
203
David Blaikie37c52312014-10-04 15:49:50 +0000204 if (addToAccelTable) {
David Blaikie49cfc8c2014-10-23 19:12:43 +0000205 DD->addAccelName(GV.getName(), *VariableDIE);
David Blaikie37c52312014-10-04 15:49:50 +0000206
207 // If the linkage name is different than the name, go ahead and output
208 // that as well into the name table.
209 if (GV.getLinkageName() != "" && GV.getName() != GV.getLinkageName())
David Blaikie49cfc8c2014-10-23 19:12:43 +0000210 DD->addAccelName(GV.getLinkageName(), *VariableDIE);
David Blaikie37c52312014-10-04 15:49:50 +0000211 }
212
David Blaikie49cfc8c2014-10-23 19:12:43 +0000213 addGlobalName(GV.getName(), *VariableDIE, DeclContext);
214 return VariableDIE;
David Blaikie37c52312014-10-04 15:49:50 +0000215}
216
217void DwarfCompileUnit::addRange(RangeSpan Range) {
218 bool SameAsPrevCU = this == DD->getPrevCU();
219 DD->setPrevCU(this);
220 // If we have no current ranges just add the range and return, otherwise,
221 // check the current section and CU against the previous section and CU we
222 // emitted into and the subprogram was contained within. If these are the
223 // same then extend our current range, otherwise add this as a new range.
224 if (CURanges.empty() || !SameAsPrevCU ||
225 (&CURanges.back().getEnd()->getSection() !=
226 &Range.getEnd()->getSection())) {
227 CURanges.push_back(Range);
228 return;
229 }
230
231 CURanges.back().setEnd(Range.getEnd());
232}
233
David Blaikie6c0ee4e2014-10-08 22:46:27 +0000234void DwarfCompileUnit::addSectionLabel(DIE &Die, dwarf::Attribute Attribute,
235 const MCSymbol *Label,
236 const MCSymbol *Sec) {
237 if (Asm->MAI->doesDwarfUseRelocationsAcrossSections())
238 addLabel(Die, Attribute,
239 DD->getDwarfVersion() >= 4 ? dwarf::DW_FORM_sec_offset
240 : dwarf::DW_FORM_data4,
241 Label);
242 else
243 addSectionDelta(Die, Attribute, Label, Sec);
244}
245
David Blaikie37c52312014-10-04 15:49:50 +0000246void DwarfCompileUnit::initStmtList(MCSymbol *DwarfLineSectionSym) {
247 // Define start line table label for each Compile Unit.
248 MCSymbol *LineTableStartSym =
249 Asm->OutStreamer.getDwarfLineTableSymbol(getUniqueID());
250
251 stmtListIndex = UnitDie.getValues().size();
252
253 // DW_AT_stmt_list is a offset of line number information for this
254 // compile unit in debug_line section. For split dwarf this is
255 // left in the skeleton CU and so not included.
256 // The line table entries are not always emitted in assembly, so it
257 // is not okay to use line_table_start here.
David Blaikie6c0ee4e2014-10-08 22:46:27 +0000258 addSectionLabel(UnitDie, dwarf::DW_AT_stmt_list, LineTableStartSym,
259 DwarfLineSectionSym);
David Blaikie37c52312014-10-04 15:49:50 +0000260}
261
262void DwarfCompileUnit::applyStmtList(DIE &D) {
263 D.addValue(dwarf::DW_AT_stmt_list,
264 UnitDie.getAbbrev().getData()[stmtListIndex].getForm(),
265 UnitDie.getValues()[stmtListIndex]);
266}
267
David Blaikie14499a72014-10-04 15:58:47 +0000268void DwarfCompileUnit::attachLowHighPC(DIE &D, const MCSymbol *Begin,
269 const MCSymbol *End) {
270 assert(Begin && "Begin label should not be null!");
271 assert(End && "End label should not be null!");
272 assert(Begin->isDefined() && "Invalid starting label");
273 assert(End->isDefined() && "Invalid end label");
274
275 addLabelAddress(D, dwarf::DW_AT_low_pc, Begin);
276 if (DD->getDwarfVersion() < 4)
277 addLabelAddress(D, dwarf::DW_AT_high_pc, End);
278 else
279 addLabelDelta(D, dwarf::DW_AT_high_pc, End, Begin);
280}
281
David Blaikiecda2aa82014-10-04 16:24:00 +0000282// Find DIE for the given subprogram and attach appropriate DW_AT_low_pc
283// and DW_AT_high_pc attributes. If there are global variables in this
284// scope then create and insert DIEs for these variables.
285DIE &DwarfCompileUnit::updateSubprogramScopeDIE(DISubprogram SP) {
286 DIE *SPDie = getOrCreateSubprogramDIE(SP);
287
288 attachLowHighPC(*SPDie, DD->getFunctionBeginSym(), DD->getFunctionEndSym());
289 if (!DD->getCurrentFunction()->getTarget().Options.DisableFramePointerElim(
290 *DD->getCurrentFunction()))
291 addFlag(*SPDie, dwarf::DW_AT_APPLE_omit_frame_ptr);
292
293 // Only include DW_AT_frame_base in full debug info
294 if (getCUNode().getEmissionKind() != DIBuilder::LineTablesOnly) {
295 const TargetRegisterInfo *RI =
296 Asm->TM.getSubtargetImpl()->getRegisterInfo();
297 MachineLocation Location(RI->getFrameRegister(*Asm->MF));
298 addAddress(*SPDie, dwarf::DW_AT_frame_base, Location);
299 }
300
301 // Add name to the name table, we do this here because we're guaranteed
302 // to have concrete versions of our DW_TAG_subprogram nodes.
303 DD->addSubprogramNames(SP, *SPDie);
304
305 return *SPDie;
306}
307
David Blaikie9c65b132014-10-08 22:20:02 +0000308// Construct a DIE for this scope.
309void DwarfCompileUnit::constructScopeDIE(
310 LexicalScope *Scope, SmallVectorImpl<std::unique_ptr<DIE>> &FinalChildren) {
311 if (!Scope || !Scope->getScopeNode())
312 return;
313
314 DIScope DS(Scope->getScopeNode());
315
316 assert((Scope->getInlinedAt() || !DS.isSubprogram()) &&
317 "Only handle inlined subprograms here, use "
318 "constructSubprogramScopeDIE for non-inlined "
319 "subprograms");
320
321 SmallVector<std::unique_ptr<DIE>, 8> Children;
322
323 // We try to create the scope DIE first, then the children DIEs. This will
324 // avoid creating un-used children then removing them later when we find out
325 // the scope DIE is null.
326 std::unique_ptr<DIE> ScopeDIE;
327 if (Scope->getParent() && DS.isSubprogram()) {
David Blaikie01b48a82014-10-09 16:50:53 +0000328 ScopeDIE = constructInlinedScopeDIE(Scope);
David Blaikie9c65b132014-10-08 22:20:02 +0000329 if (!ScopeDIE)
330 return;
331 // We create children when the scope DIE is not null.
David Blaikie8b2fdb82014-10-09 18:24:28 +0000332 createScopeChildrenDIE(Scope, Children);
David Blaikie9c65b132014-10-08 22:20:02 +0000333 } else {
334 // Early exit when we know the scope DIE is going to be null.
335 if (DD->isLexicalScopeDIENull(Scope))
336 return;
337
338 unsigned ChildScopeCount;
339
340 // We create children here when we know the scope DIE is not going to be
341 // null and the children will be added to the scope DIE.
David Blaikie8b2fdb82014-10-09 18:24:28 +0000342 createScopeChildrenDIE(Scope, Children, &ChildScopeCount);
David Blaikie9c65b132014-10-08 22:20:02 +0000343
344 // There is no need to emit empty lexical block DIE.
345 for (const auto &E : DD->findImportedEntitiesForScope(DS))
346 Children.push_back(
347 constructImportedEntityDIE(DIImportedEntity(E.second)));
348 // If there are only other scopes as children, put them directly in the
349 // parent instead, as this scope would serve no purpose.
350 if (Children.size() == ChildScopeCount) {
351 FinalChildren.insert(FinalChildren.end(),
352 std::make_move_iterator(Children.begin()),
353 std::make_move_iterator(Children.end()));
354 return;
355 }
David Blaikie0fbf8bd2014-10-09 17:08:42 +0000356 ScopeDIE = constructLexicalScopeDIE(Scope);
David Blaikie9c65b132014-10-08 22:20:02 +0000357 assert(ScopeDIE && "Scope DIE should not be null.");
358 }
359
360 // Add children
361 for (auto &I : Children)
362 ScopeDIE->addChild(std::move(I));
363
364 FinalChildren.push_back(std::move(ScopeDIE));
365}
366
David Blaikiee5feec52014-10-08 23:30:05 +0000367void DwarfCompileUnit::addSectionDelta(DIE &Die, dwarf::Attribute Attribute,
368 const MCSymbol *Hi, const MCSymbol *Lo) {
369 DIEValue *Value = new (DIEValueAllocator) DIEDelta(Hi, Lo);
370 Die.addValue(Attribute, DD->getDwarfVersion() >= 4 ? dwarf::DW_FORM_sec_offset
371 : dwarf::DW_FORM_data4,
372 Value);
373}
374
David Blaikie5b02a192014-11-03 23:10:59 +0000375void DwarfCompileUnit::addScopeRangeList(DIE &ScopeDIE,
376 SmallVector<RangeSpan, 2> Range) {
David Blaikie52400202014-10-09 00:11:39 +0000377 // Emit offset in .debug_range as a relocatable label. emitDIE will handle
378 // emitting it appropriately.
David Blaikie52400202014-10-09 00:11:39 +0000379 auto *RangeSectionSym = DD->getRangeSectionSym();
380
David Blaikie5b02a192014-11-03 23:10:59 +0000381 RangeSpanList List(
382 Asm->GetTempSymbol("debug_ranges", DD->getNextRangeNumber()),
383 std::move(Range));
384
David Blaikie52400202014-10-09 00:11:39 +0000385 // Under fission, ranges are specified by constant offsets relative to the
386 // CU's DW_AT_GNU_ranges_base.
David Blaikie5b02a192014-11-03 23:10:59 +0000387 if (isDwoUnit())
388 addSectionDelta(ScopeDIE, dwarf::DW_AT_ranges, List.getSym(),
389 RangeSectionSym);
David Blaikie52400202014-10-09 00:11:39 +0000390 else
David Blaikie5b02a192014-11-03 23:10:59 +0000391 addSectionLabel(ScopeDIE, dwarf::DW_AT_ranges, List.getSym(),
392 RangeSectionSym);
David Blaikie52400202014-10-09 00:11:39 +0000393
394 // Add the range list to the set of ranges to be emitted.
David Blaikie542616d2014-11-03 21:52:56 +0000395 (Skeleton ? Skeleton : this)->CURangeLists.push_back(std::move(List));
David Blaikie52400202014-10-09 00:11:39 +0000396}
397
David Blaikiede123752014-10-09 00:21:42 +0000398void DwarfCompileUnit::attachRangesOrLowHighPC(
David Blaikie5b02a192014-11-03 23:10:59 +0000399 DIE &Die, SmallVector<RangeSpan, 2> Ranges) {
400 if (Ranges.size() == 1) {
401 const auto &single = Ranges.front();
402 attachLowHighPC(Die, single.getStart(), single.getEnd());
403 } else
404 addScopeRangeList(Die, std::move(Ranges));
405}
406
407void DwarfCompileUnit::attachRangesOrLowHighPC(
David Blaikiede123752014-10-09 00:21:42 +0000408 DIE &Die, const SmallVectorImpl<InsnRange> &Ranges) {
David Blaikie5b02a192014-11-03 23:10:59 +0000409 SmallVector<RangeSpan, 2> List;
410 List.reserve(Ranges.size());
411 for (const InsnRange &R : Ranges)
412 List.push_back(RangeSpan(DD->getLabelBeforeInsn(R.first),
413 DD->getLabelAfterInsn(R.second)));
414 attachRangesOrLowHighPC(Die, std::move(List));
David Blaikiede123752014-10-09 00:21:42 +0000415}
416
David Blaikie01b48a82014-10-09 16:50:53 +0000417// This scope represents inlined body of a function. Construct DIE to
418// represent this concrete inlined copy of the function.
419std::unique_ptr<DIE>
420DwarfCompileUnit::constructInlinedScopeDIE(LexicalScope *Scope) {
421 assert(Scope->getScopeNode());
422 DIScope DS(Scope->getScopeNode());
423 DISubprogram InlinedSP = getDISubprogram(DS);
424 // Find the subprogram's DwarfCompileUnit in the SPMap in case the subprogram
425 // was inlined from another compile unit.
David Blaikief6dac292014-11-01 17:21:26 +0000426 DIE *OriginDIE = DU->getAbstractSPDies()[InlinedSP];
David Blaikie01b48a82014-10-09 16:50:53 +0000427 assert(OriginDIE && "Unable to find original DIE for an inlined subprogram.");
428
429 auto ScopeDIE = make_unique<DIE>(dwarf::DW_TAG_inlined_subroutine);
430 addDIEEntry(*ScopeDIE, dwarf::DW_AT_abstract_origin, *OriginDIE);
431
432 attachRangesOrLowHighPC(*ScopeDIE, Scope->getRanges());
433
434 // Add the call site information to the DIE.
435 DILocation DL(Scope->getInlinedAt());
436 addUInt(*ScopeDIE, dwarf::DW_AT_call_file, None,
David Blaikiea09bd0a2014-10-09 17:08:38 +0000437 getOrCreateSourceID(DL.getFilename(), DL.getDirectory()));
David Blaikie01b48a82014-10-09 16:50:53 +0000438 addUInt(*ScopeDIE, dwarf::DW_AT_call_line, None, DL.getLineNumber());
439
440 // Add name to the name table, we do this here because we're guaranteed
441 // to have concrete versions of our DW_TAG_inlined_subprogram nodes.
442 DD->addSubprogramNames(InlinedSP, *ScopeDIE);
443
444 return ScopeDIE;
445}
446
David Blaikie0fbf8bd2014-10-09 17:08:42 +0000447// Construct new DW_TAG_lexical_block for this scope and attach
448// DW_AT_low_pc/DW_AT_high_pc labels.
449std::unique_ptr<DIE>
450DwarfCompileUnit::constructLexicalScopeDIE(LexicalScope *Scope) {
451 if (DD->isLexicalScopeDIENull(Scope))
452 return nullptr;
453
454 auto ScopeDIE = make_unique<DIE>(dwarf::DW_TAG_lexical_block);
455 if (Scope->isAbstractScope())
456 return ScopeDIE;
457
458 attachRangesOrLowHighPC(*ScopeDIE, Scope->getRanges());
459
460 return ScopeDIE;
461}
462
David Blaikieee7df552014-10-09 17:56:36 +0000463/// constructVariableDIE - Construct a DIE for the given DbgVariable.
464std::unique_ptr<DIE> DwarfCompileUnit::constructVariableDIE(DbgVariable &DV,
465 bool Abstract) {
466 auto D = constructVariableDIEImpl(DV, Abstract);
467 DV.setDIE(*D);
468 return D;
469}
470
471std::unique_ptr<DIE>
472DwarfCompileUnit::constructVariableDIEImpl(const DbgVariable &DV,
473 bool Abstract) {
474 // Define variable debug information entry.
475 auto VariableDie = make_unique<DIE>(DV.getTag());
476
477 if (Abstract) {
478 applyVariableAttributes(DV, *VariableDie);
479 return VariableDie;
480 }
481
482 // Add variable address.
483
484 unsigned Offset = DV.getDotDebugLocOffset();
485 if (Offset != ~0U) {
486 addLocationList(*VariableDie, dwarf::DW_AT_location, Offset);
487 return VariableDie;
488 }
489
490 // Check if variable is described by a DBG_VALUE instruction.
491 if (const MachineInstr *DVInsn = DV.getMInsn()) {
492 assert(DVInsn->getNumOperands() == 4);
493 if (DVInsn->getOperand(0).isReg()) {
494 const MachineOperand RegOp = DVInsn->getOperand(0);
495 // If the second operand is an immediate, this is an indirect value.
496 if (DVInsn->getOperand(1).isImm()) {
497 MachineLocation Location(RegOp.getReg(),
498 DVInsn->getOperand(1).getImm());
499 addVariableAddress(DV, *VariableDie, Location);
500 } else if (RegOp.getReg())
501 addVariableAddress(DV, *VariableDie, MachineLocation(RegOp.getReg()));
502 } else if (DVInsn->getOperand(0).isImm())
503 addConstantValue(*VariableDie, DVInsn->getOperand(0), DV.getType());
504 else if (DVInsn->getOperand(0).isFPImm())
505 addConstantFPValue(*VariableDie, DVInsn->getOperand(0));
506 else if (DVInsn->getOperand(0).isCImm())
507 addConstantValue(*VariableDie, DVInsn->getOperand(0).getCImm(),
508 DV.getType());
509
510 return VariableDie;
511 }
512
513 // .. else use frame index.
514 int FI = DV.getFrameIndex();
515 if (FI != ~0) {
516 unsigned FrameReg = 0;
517 const TargetFrameLowering *TFI =
518 Asm->TM.getSubtargetImpl()->getFrameLowering();
519 int Offset = TFI->getFrameIndexReference(*Asm->MF, FI, FrameReg);
520 MachineLocation Location(FrameReg, Offset);
521 addVariableAddress(DV, *VariableDie, Location);
522 }
523
524 return VariableDie;
525}
526
David Blaikie4a1a44e2014-10-09 17:56:39 +0000527std::unique_ptr<DIE> DwarfCompileUnit::constructVariableDIE(
528 DbgVariable &DV, const LexicalScope &Scope, DIE *&ObjectPointer) {
529 auto Var = constructVariableDIE(DV, Scope.isAbstractScope());
530 if (DV.isObjectPointer())
531 ObjectPointer = Var.get();
532 return Var;
533}
534
David Blaikie8b2fdb82014-10-09 18:24:28 +0000535DIE *DwarfCompileUnit::createScopeChildrenDIE(
536 LexicalScope *Scope, SmallVectorImpl<std::unique_ptr<DIE>> &Children,
537 unsigned *ChildScopeCount) {
538 DIE *ObjectPointer = nullptr;
539
David Blaikie80e5b1e2014-10-24 17:57:34 +0000540 for (DbgVariable *DV : DU->getScopeVariables().lookup(Scope))
David Blaikie8b2fdb82014-10-09 18:24:28 +0000541 Children.push_back(constructVariableDIE(*DV, *Scope, ObjectPointer));
542
543 unsigned ChildCountWithoutScopes = Children.size();
544
545 for (LexicalScope *LS : Scope->getChildren())
546 constructScopeDIE(LS, Children);
547
548 if (ChildScopeCount)
549 *ChildScopeCount = Children.size() - ChildCountWithoutScopes;
550
551 return ObjectPointer;
552}
553
David Blaikie1d072342014-10-09 20:21:36 +0000554void DwarfCompileUnit::constructSubprogramScopeDIE(LexicalScope *Scope) {
555 assert(Scope && Scope->getScopeNode());
556 assert(!Scope->getInlinedAt());
557 assert(!Scope->isAbstractScope());
558 DISubprogram Sub(Scope->getScopeNode());
559
560 assert(Sub.isSubprogram());
561
562 DD->getProcessedSPNodes().insert(Sub);
563
564 DIE &ScopeDIE = updateSubprogramScopeDIE(Sub);
565
David Blaikie1d072342014-10-09 20:21:36 +0000566 // If this is a variadic function, add an unspecified parameter.
567 DITypeArray FnArgs = Sub.getType().getTypeArray();
David Blaikie1dd573d2014-10-23 22:27:50 +0000568
569 // Collect lexical scope children first.
570 // ObjectPointer might be a local (non-argument) local variable if it's a
571 // block's synthetic this pointer.
572 if (DIE *ObjectPointer = createAndAddScopeChildren(Scope, ScopeDIE))
573 addDIEEntry(ScopeDIE, dwarf::DW_AT_object_pointer, *ObjectPointer);
574
David Blaikie1d072342014-10-09 20:21:36 +0000575 // If we have a single element of null, it is a function that returns void.
576 // If we have more than one elements and the last one is null, it is a
577 // variadic function.
578 if (FnArgs.getNumElements() > 1 &&
579 !FnArgs.getElement(FnArgs.getNumElements() - 1))
580 ScopeDIE.addChild(make_unique<DIE>(dwarf::DW_TAG_unspecified_parameters));
David Blaikie1d072342014-10-09 20:21:36 +0000581}
582
David Blaikie78b65b62014-10-09 20:26:15 +0000583DIE *DwarfCompileUnit::createAndAddScopeChildren(LexicalScope *Scope,
584 DIE &ScopeDIE) {
585 // We create children when the scope DIE is not null.
586 SmallVector<std::unique_ptr<DIE>, 8> Children;
587 DIE *ObjectPointer = createScopeChildrenDIE(Scope, Children);
588
589 // Add children
590 for (auto &I : Children)
591 ScopeDIE.addChild(std::move(I));
592
593 return ObjectPointer;
594}
595
David Blaikie49be5b32014-10-31 21:57:02 +0000596void
David Blaikie58410f22014-10-10 06:39:26 +0000597DwarfCompileUnit::constructAbstractSubprogramScopeDIE(LexicalScope *Scope) {
David Blaikief6dac292014-11-01 17:21:26 +0000598 DIE *&AbsDef = DU->getAbstractSPDies()[Scope->getScopeNode()];
David Blaikie49be5b32014-10-31 21:57:02 +0000599 if (AbsDef)
600 return;
601
David Blaikie58410f22014-10-10 06:39:26 +0000602 DISubprogram SP(Scope->getScopeNode());
603
604 DIE *ContextDIE;
605
606 // Some of this is duplicated from DwarfUnit::getOrCreateSubprogramDIE, with
607 // the important distinction that the DIDescriptor is not associated with the
608 // DIE (since the DIDescriptor will be associated with the concrete DIE, if
609 // any). It could be refactored to some common utility function.
610 if (DISubprogram SPDecl = SP.getFunctionDeclaration()) {
611 ContextDIE = &getUnitDie();
612 getOrCreateSubprogramDIE(SPDecl);
613 } else
614 ContextDIE = getOrCreateContextDIE(resolve(SP.getContext()));
615
616 // Passing null as the associated DIDescriptor because the abstract definition
617 // shouldn't be found by lookup.
David Blaikie49be5b32014-10-31 21:57:02 +0000618 AbsDef =
619 &createAndAddDIE(dwarf::DW_TAG_subprogram, *ContextDIE, DIDescriptor());
620 applySubprogramAttributesToDefinition(SP, *AbsDef);
David Blaikie58410f22014-10-10 06:39:26 +0000621
622 if (getCUNode().getEmissionKind() != DIBuilder::LineTablesOnly)
David Blaikie49be5b32014-10-31 21:57:02 +0000623 addUInt(*AbsDef, dwarf::DW_AT_inline, None, dwarf::DW_INL_inlined);
624 if (DIE *ObjectPointer = createAndAddScopeChildren(Scope, *AbsDef))
625 addDIEEntry(*AbsDef, dwarf::DW_AT_object_pointer, *ObjectPointer);
David Blaikie58410f22014-10-10 06:39:26 +0000626}
627
Frederic Riss987fe222014-10-24 21:31:09 +0000628std::unique_ptr<DIE>
629DwarfCompileUnit::constructImportedEntityDIE(const DIImportedEntity &Module) {
630 assert(Module.Verify() &&
631 "Use one of the MDNode * overloads to handle invalid metadata");
632 std::unique_ptr<DIE> IMDie = make_unique<DIE>((dwarf::Tag)Module.getTag());
633 insertDIE(Module, IMDie.get());
634 DIE *EntityDie;
635 DIDescriptor Entity = resolve(Module.getEntity());
636 if (Entity.isNameSpace())
637 EntityDie = getOrCreateNameSpace(DINameSpace(Entity));
638 else if (Entity.isSubprogram())
639 EntityDie = getOrCreateSubprogramDIE(DISubprogram(Entity));
640 else if (Entity.isType())
641 EntityDie = getOrCreateTypeDIE(DIType(Entity));
642 else
643 EntityDie = getDIE(Entity);
644 assert(EntityDie);
645 addSourceLine(*IMDie, Module.getLineNumber(),
646 Module.getContext().getFilename(),
647 Module.getContext().getDirectory());
648 addDIEEntry(*IMDie, dwarf::DW_AT_import, *EntityDie);
649 StringRef Name = Module.getName();
650 if (!Name.empty())
651 addString(*IMDie, dwarf::DW_AT_name, Name);
652
653 return IMDie;
654}
655
David Blaikie4191cbc2014-10-10 06:39:29 +0000656void DwarfCompileUnit::finishSubprogramDefinition(DISubprogram SP) {
657 DIE *D = getDIE(SP);
David Blaikief6dac292014-11-01 17:21:26 +0000658 if (DIE *AbsSPDIE = DU->getAbstractSPDies().lookup(SP)) {
David Blaikie4191cbc2014-10-10 06:39:29 +0000659 if (D)
660 // If this subprogram has an abstract definition, reference that
661 addDIEEntry(*D, dwarf::DW_AT_abstract_origin, *AbsSPDIE);
662 } else {
663 if (!D && getCUNode().getEmissionKind() != DIBuilder::LineTablesOnly)
664 // Lazily construct the subprogram if we didn't see either concrete or
665 // inlined versions during codegen. (except in -gmlt ^ where we want
666 // to omit these entirely)
667 D = getOrCreateSubprogramDIE(SP);
668 if (D)
669 // And attach the attributes
670 applySubprogramAttributesToDefinition(SP, *D);
671 }
672}
David Blaikie1d96cc22014-10-31 22:30:30 +0000673void DwarfCompileUnit::collectDeadVariables(DISubprogram SP) {
674 assert(SP.isSubprogram() && "CU's subprogram list contains a non-subprogram");
675 assert(SP.isDefinition() &&
676 "CU's subprogram list contains a subprogram declaration");
677 DIArray Variables = SP.getVariables();
678 if (Variables.getNumElements() == 0)
679 return;
680
David Blaikief6dac292014-11-01 17:21:26 +0000681 DIE *SPDIE = DU->getAbstractSPDies().lookup(SP);
David Blaikie1d96cc22014-10-31 22:30:30 +0000682 if (!SPDIE)
683 SPDIE = getDIE(SP);
684 assert(SPDIE);
685 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
686 DIVariable DV(Variables.getElement(vi));
687 assert(DV.isVariable());
688 DbgVariable NewVar(DV, DIExpression(nullptr), DD);
689 auto VariableDie = constructVariableDIE(NewVar);
690 applyVariableAttributes(NewVar, *VariableDie);
691 SPDIE->addChild(std::move(VariableDie));
692 }
693}
David Blaikie4191cbc2014-10-10 06:39:29 +0000694
David Blaikieae57e662014-11-01 23:59:23 +0000695void DwarfCompileUnit::emitHeader(const MCSymbol *ASectionSym) const {
David Blaikieb6726a92014-11-02 02:26:24 +0000696 // Don't bother labeling the .dwo unit, as its offset isn't used.
697 if (!Skeleton)
698 Asm->OutStreamer.EmitLabel(LabelBegin);
David Blaikieae57e662014-11-01 23:59:23 +0000699
700 DwarfUnit::emitHeader(ASectionSym);
701}
702
David Blaikie192b45c2014-11-02 06:16:39 +0000703/// addGlobalName - Add a new global name to the compile unit.
704void DwarfCompileUnit::addGlobalName(StringRef Name, DIE &Die,
705 DIScope Context) {
706 if (getCUNode().getEmissionKind() == DIBuilder::LineTablesOnly)
707 return;
708 std::string FullName = getParentContextString(Context) + Name.str();
709 GlobalNames[FullName] = &Die;
710}
711
712/// Add a new global type to the unit.
713void DwarfCompileUnit::addGlobalType(DIType Ty, const DIE &Die,
714 DIScope Context) {
715 if (getCUNode().getEmissionKind() == DIBuilder::LineTablesOnly)
716 return;
717 std::string FullName = getParentContextString(Context) + Ty.getName().str();
718 GlobalTypes[FullName] = &Die;
719}
David Blaikieae57e662014-11-01 23:59:23 +0000720
David Blaikie7d48be22014-11-02 06:37:23 +0000721/// addVariableAddress - Add DW_AT_location attribute for a
722/// DbgVariable based on provided MachineLocation.
723void DwarfCompileUnit::addVariableAddress(const DbgVariable &DV, DIE &Die,
724 MachineLocation Location) {
725 if (DV.variableHasComplexAddress())
726 addComplexAddress(DV, Die, dwarf::DW_AT_location, Location);
727 else if (DV.isBlockByrefVariable())
728 addBlockByrefAddress(DV, Die, dwarf::DW_AT_location, Location);
729 else
730 addAddress(Die, dwarf::DW_AT_location, Location,
731 DV.getVariable().isIndirect());
732}
David Blaikief7435ee2014-11-02 06:46:40 +0000733
734/// Add an address attribute to a die based on the location provided.
735void DwarfCompileUnit::addAddress(DIE &Die, dwarf::Attribute Attribute,
736 const MachineLocation &Location,
737 bool Indirect) {
738 DIELoc *Loc = new (DIEValueAllocator) DIELoc();
739
740 if (Location.isReg() && !Indirect)
741 addRegisterOpPiece(*Loc, Location.getReg());
742 else {
743 addRegisterOffset(*Loc, Location.getReg(), Location.getOffset());
744 if (Indirect && !Location.isReg()) {
745 addUInt(*Loc, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
746 }
747 }
748
749 // Now attach the location information to the DIE.
750 addBlock(Die, Attribute, Loc);
751}
David Blaikie77895fb2014-11-02 06:58:44 +0000752
753/// Start with the address based on the location provided, and generate the
754/// DWARF information necessary to find the actual variable given the extra
755/// address information encoded in the DbgVariable, starting from the starting
756/// location. Add the DWARF information to the die.
757void DwarfCompileUnit::addComplexAddress(const DbgVariable &DV, DIE &Die,
758 dwarf::Attribute Attribute,
759 const MachineLocation &Location) {
760 DIELoc *Loc = new (DIEValueAllocator) DIELoc();
761 unsigned N = DV.getNumAddrElements();
762 unsigned i = 0;
763 if (Location.isReg()) {
764 if (N >= 2 && DV.getAddrElement(0) == dwarf::DW_OP_plus) {
765 assert(!DV.getVariable().isIndirect() &&
766 "double indirection not handled");
767 // If first address element is OpPlus then emit
768 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
769 addRegisterOffset(*Loc, Location.getReg(), DV.getAddrElement(1));
770 i = 2;
771 } else if (N >= 2 && DV.getAddrElement(0) == dwarf::DW_OP_deref) {
772 assert(!DV.getVariable().isIndirect() &&
773 "double indirection not handled");
774 addRegisterOpPiece(*Loc, Location.getReg(),
775 DV.getExpression().getPieceSize(),
776 DV.getExpression().getPieceOffset());
777 i = 3;
778 } else
779 addRegisterOpPiece(*Loc, Location.getReg());
780 } else
781 addRegisterOffset(*Loc, Location.getReg(), Location.getOffset());
782
783 for (; i < N; ++i) {
784 uint64_t Element = DV.getAddrElement(i);
785 if (Element == dwarf::DW_OP_plus) {
786 addUInt(*Loc, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
787 addUInt(*Loc, dwarf::DW_FORM_udata, DV.getAddrElement(++i));
788
789 } else if (Element == dwarf::DW_OP_deref) {
790 if (!Location.isReg())
791 addUInt(*Loc, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
792
793 } else if (Element == dwarf::DW_OP_piece) {
794 const unsigned SizeOfByte = 8;
795 unsigned PieceOffsetInBits = DV.getAddrElement(++i) * SizeOfByte;
796 unsigned PieceSizeInBits = DV.getAddrElement(++i) * SizeOfByte;
797 // Emit DW_OP_bit_piece Size Offset.
798 assert(PieceSizeInBits > 0 && "piece has zero size");
799 addUInt(*Loc, dwarf::DW_FORM_data1, dwarf::DW_OP_bit_piece);
800 addUInt(*Loc, dwarf::DW_FORM_udata, PieceSizeInBits);
801 addUInt(*Loc, dwarf::DW_FORM_udata, PieceOffsetInBits);
802 } else
803 llvm_unreachable("unknown DIBuilder Opcode");
804 }
805
806 // Now attach the location information to the DIE.
807 addBlock(Die, Attribute, Loc);
808}
David Blaikie4bc08812014-11-02 07:03:19 +0000809
810/// Add a Dwarf loclistptr attribute data and value.
811void DwarfCompileUnit::addLocationList(DIE &Die, dwarf::Attribute Attribute,
812 unsigned Index) {
813 DIEValue *Value = new (DIEValueAllocator) DIELocList(Index);
814 dwarf::Form Form = DD->getDwarfVersion() >= 4 ? dwarf::DW_FORM_sec_offset
815 : dwarf::DW_FORM_data4;
816 Die.addValue(Attribute, Form, Value);
817}
David Blaikie02a63332014-11-02 07:06:51 +0000818
David Blaikie8c485b52014-11-02 07:08:12 +0000819void DwarfCompileUnit::applyVariableAttributes(const DbgVariable &Var,
820 DIE &VariableDie) {
David Blaikie02a63332014-11-02 07:06:51 +0000821 StringRef Name = Var.getName();
822 if (!Name.empty())
823 addString(VariableDie, dwarf::DW_AT_name, Name);
824 addSourceLine(VariableDie, Var.getVariable());
825 addType(VariableDie, Var.getType());
826 if (Var.isArtificial())
827 addFlag(VariableDie, dwarf::DW_AT_artificial);
828}
David Blaikie97802082014-11-02 07:11:55 +0000829
830/// Add a Dwarf expression attribute data and value.
831void DwarfCompileUnit::addExpr(DIELoc &Die, dwarf::Form Form,
832 const MCExpr *Expr) {
833 DIEValue *Value = new (DIEValueAllocator) DIEExpr(Expr);
834 Die.addValue((dwarf::Attribute)0, Form, Value);
835}
David Blaikie3363a572014-11-02 08:09:09 +0000836
837void DwarfCompileUnit::applySubprogramAttributesToDefinition(DISubprogram SP,
838 DIE &SPDie) {
839 DISubprogram SPDecl = SP.getFunctionDeclaration();
840 DIScope Context = resolve(SPDecl ? SPDecl.getContext() : SP.getContext());
David Blaikie279c4512014-11-02 08:18:06 +0000841 applySubprogramAttributes(SP, SPDie, getCUNode().getEmissionKind() ==
842 DIBuilder::LineTablesOnly);
David Blaikie3363a572014-11-02 08:09:09 +0000843 addGlobalName(SP.getName(), SPDie, Context);
844}
David Blaikiecafd9622014-11-02 08:51:37 +0000845
846bool DwarfCompileUnit::isDwoUnit() const {
847 return DD->useSplitDwarf() && Skeleton;
848}
David Blaikie37c52312014-10-04 15:49:50 +0000849} // end llvm namespace