blob: 7e6a8eaa31e15ab12dbcdbca4b2abcd03655fb75 [file] [log] [blame]
Devang Patel161b2f42011-04-12 23:21:44 +00001//===-- llvm/CodeGen/DwarfCompileUnit.cpp - Dwarf Compile Unit ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing dwarf compile unit.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "dwarfdebug"
15
Eric Christopherc36145f2012-01-06 04:35:23 +000016#include "DwarfAccelTable.h"
Devang Patel161b2f42011-04-12 23:21:44 +000017#include "DwarfCompileUnit.h"
18#include "DwarfDebug.h"
19#include "llvm/Constants.h"
Devang Patel6f9d8ff2011-08-15 17:57:41 +000020#include "llvm/GlobalVariable.h"
21#include "llvm/Instructions.h"
Devang Patel161b2f42011-04-12 23:21:44 +000022#include "llvm/Analysis/DIBuilder.h"
Eric Christopherd61c34b2011-11-11 03:16:32 +000023#include "llvm/Support/Debug.h"
Devang Patel6f9d8ff2011-08-15 17:57:41 +000024#include "llvm/Target/Mangler.h"
Devang Patel161b2f42011-04-12 23:21:44 +000025#include "llvm/Target/TargetData.h"
26#include "llvm/Target/TargetFrameLowering.h"
27#include "llvm/Target/TargetMachine.h"
28#include "llvm/Target/TargetRegisterInfo.h"
29#include "llvm/ADT/APFloat.h"
30#include "llvm/Support/ErrorHandling.h"
31
32using namespace llvm;
33
34/// CompileUnit - Compile unit constructor.
Eric Christopher438b0922012-02-22 08:46:13 +000035CompileUnit::CompileUnit(unsigned I, unsigned L, DIE *D, AsmPrinter *A,
36 DwarfDebug *DW)
37 : ID(I), Language(L), CUDie(D), Asm(A), DD(DW), IndexTyDie(0) {
Devang Patel161b2f42011-04-12 23:21:44 +000038 DIEIntegerOne = new (DIEValueAllocator) DIEInteger(1);
39}
40
41/// ~CompileUnit - Destructor for compile unit.
42CompileUnit::~CompileUnit() {
43 for (unsigned j = 0, M = DIEBlocks.size(); j < M; ++j)
44 DIEBlocks[j]->~DIEBlock();
45}
46
47/// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
48/// information entry.
49DIEEntry *CompileUnit::createDIEEntry(DIE *Entry) {
50 DIEEntry *Value = new (DIEValueAllocator) DIEEntry(Entry);
51 return Value;
52}
53
54/// addUInt - Add an unsigned integer attribute data and value.
55///
56void CompileUnit::addUInt(DIE *Die, unsigned Attribute,
57 unsigned Form, uint64_t Integer) {
58 if (!Form) Form = DIEInteger::BestForm(false, Integer);
59 DIEValue *Value = Integer == 1 ?
60 DIEIntegerOne : new (DIEValueAllocator) DIEInteger(Integer);
61 Die->addValue(Attribute, Form, Value);
62}
63
64/// addSInt - Add an signed integer attribute data and value.
65///
66void CompileUnit::addSInt(DIE *Die, unsigned Attribute,
67 unsigned Form, int64_t Integer) {
68 if (!Form) Form = DIEInteger::BestForm(true, Integer);
69 DIEValue *Value = new (DIEValueAllocator) DIEInteger(Integer);
70 Die->addValue(Attribute, Form, Value);
71}
72
Nick Lewycky6a7efcf2011-10-28 05:29:47 +000073/// addString - Add a string attribute data and value. We always emit a
74/// reference to the string pool instead of immediate strings so that DIEs have
75/// more predictable sizes.
Nick Lewycky390c40d2011-10-27 06:44:11 +000076void CompileUnit::addString(DIE *Die, unsigned Attribute, StringRef String) {
Nick Lewycky6a7efcf2011-10-28 05:29:47 +000077 MCSymbol *Symb = DD->getStringPoolEntry(String);
78 DIEValue *Value;
79 if (Asm->needsRelocationsForDwarfStringPool())
80 Value = new (DIEValueAllocator) DIELabel(Symb);
81 else {
82 MCSymbol *StringPool = DD->getStringPool();
83 Value = new (DIEValueAllocator) DIEDelta(Symb, StringPool);
Nick Lewycky390c40d2011-10-27 06:44:11 +000084 }
Nick Lewycky6a7efcf2011-10-28 05:29:47 +000085 Die->addValue(Attribute, dwarf::DW_FORM_strp, Value);
Devang Patel161b2f42011-04-12 23:21:44 +000086}
87
88/// addLabel - Add a Dwarf label attribute data and value.
89///
90void CompileUnit::addLabel(DIE *Die, unsigned Attribute, unsigned Form,
91 const MCSymbol *Label) {
92 DIEValue *Value = new (DIEValueAllocator) DIELabel(Label);
93 Die->addValue(Attribute, Form, Value);
94}
95
96/// addDelta - Add a label delta attribute data and value.
97///
98void CompileUnit::addDelta(DIE *Die, unsigned Attribute, unsigned Form,
99 const MCSymbol *Hi, const MCSymbol *Lo) {
100 DIEValue *Value = new (DIEValueAllocator) DIEDelta(Hi, Lo);
101 Die->addValue(Attribute, Form, Value);
102}
103
104/// addDIEEntry - Add a DIE attribute data and value.
105///
106void CompileUnit::addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form,
107 DIE *Entry) {
108 Die->addValue(Attribute, Form, createDIEEntry(Entry));
109}
110
Devang Patel161b2f42011-04-12 23:21:44 +0000111/// addBlock - Add block data.
112///
113void CompileUnit::addBlock(DIE *Die, unsigned Attribute, unsigned Form,
114 DIEBlock *Block) {
115 Block->ComputeSize(Asm);
116 DIEBlocks.push_back(Block); // Memoize so we can call the destructor later on.
117 Die->addValue(Attribute, Block->BestForm(), Block);
118}
119
120/// addSourceLine - Add location information to specified debug information
121/// entry.
122void CompileUnit::addSourceLine(DIE *Die, DIVariable V) {
123 // Verify variable.
124 if (!V.Verify())
125 return;
126
127 unsigned Line = V.getLineNumber();
128 if (Line == 0)
129 return;
130 unsigned FileID = DD->GetOrCreateSourceID(V.getContext().getFilename(),
131 V.getContext().getDirectory());
132 assert(FileID && "Invalid file id");
133 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
134 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
135}
136
137/// addSourceLine - Add location information to specified debug information
138/// entry.
139void CompileUnit::addSourceLine(DIE *Die, DIGlobalVariable G) {
140 // Verify global variable.
141 if (!G.Verify())
142 return;
143
144 unsigned Line = G.getLineNumber();
145 if (Line == 0)
146 return;
Nick Lewycky746cb672011-10-26 22:55:33 +0000147 unsigned FileID = DD->GetOrCreateSourceID(G.getFilename(), G.getDirectory());
Devang Patel161b2f42011-04-12 23:21:44 +0000148 assert(FileID && "Invalid file id");
149 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
150 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
151}
152
153/// addSourceLine - Add location information to specified debug information
154/// entry.
155void CompileUnit::addSourceLine(DIE *Die, DISubprogram SP) {
156 // Verify subprogram.
157 if (!SP.Verify())
158 return;
Eric Christopher2125d5a2012-03-15 23:55:40 +0000159
Devang Patel161b2f42011-04-12 23:21:44 +0000160 // If the line number is 0, don't add it.
Eric Christopher2125d5a2012-03-15 23:55:40 +0000161 unsigned Line = SP.getLineNumber();
162 if (Line == 0)
Devang Patel161b2f42011-04-12 23:21:44 +0000163 return;
164
Nick Lewycky746cb672011-10-26 22:55:33 +0000165 unsigned FileID = DD->GetOrCreateSourceID(SP.getFilename(),
166 SP.getDirectory());
Devang Patel161b2f42011-04-12 23:21:44 +0000167 assert(FileID && "Invalid file id");
168 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
169 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
170}
171
172/// addSourceLine - Add location information to specified debug information
173/// entry.
174void CompileUnit::addSourceLine(DIE *Die, DIType Ty) {
175 // Verify type.
176 if (!Ty.Verify())
177 return;
178
179 unsigned Line = Ty.getLineNumber();
Eric Christopher2125d5a2012-03-15 23:55:40 +0000180 if (Line == 0)
Devang Patel161b2f42011-04-12 23:21:44 +0000181 return;
Nick Lewycky746cb672011-10-26 22:55:33 +0000182 unsigned FileID = DD->GetOrCreateSourceID(Ty.getFilename(),
183 Ty.getDirectory());
Devang Patel161b2f42011-04-12 23:21:44 +0000184 assert(FileID && "Invalid file id");
185 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
186 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
187}
188
189/// addSourceLine - Add location information to specified debug information
190/// entry.
Eric Christopherb8ca9882012-03-29 08:42:56 +0000191void CompileUnit::addSourceLine(DIE *Die, DIObjCProperty Ty) {
192 // Verify type.
193 if (!Ty.Verify())
194 return;
195
196 unsigned Line = Ty.getLineNumber();
197 if (Line == 0)
198 return;
199 DIFile File = Ty.getFile();
200 unsigned FileID = DD->GetOrCreateSourceID(File.getFilename(),
201 File.getDirectory());
202 assert(FileID && "Invalid file id");
203 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
204 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
205}
206
207/// addSourceLine - Add location information to specified debug information
208/// entry.
Devang Patel161b2f42011-04-12 23:21:44 +0000209void CompileUnit::addSourceLine(DIE *Die, DINameSpace NS) {
210 // Verify namespace.
211 if (!NS.Verify())
212 return;
213
214 unsigned Line = NS.getLineNumber();
215 if (Line == 0)
216 return;
217 StringRef FN = NS.getFilename();
218
219 unsigned FileID = DD->GetOrCreateSourceID(FN, NS.getDirectory());
220 assert(FileID && "Invalid file id");
221 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
222 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
223}
224
Devang Patele1cdf842011-04-27 22:45:24 +0000225/// addVariableAddress - Add DW_AT_location attribute for a
226/// DbgVariable based on provided MachineLocation.
227void CompileUnit::addVariableAddress(DbgVariable *&DV, DIE *Die,
228 MachineLocation Location) {
Devang Patel161b2f42011-04-12 23:21:44 +0000229 if (DV->variableHasComplexAddress())
230 addComplexAddress(DV, Die, dwarf::DW_AT_location, Location);
231 else if (DV->isBlockByrefVariable())
232 addBlockByrefAddress(DV, Die, dwarf::DW_AT_location, Location);
233 else
234 addAddress(Die, dwarf::DW_AT_location, Location);
235}
236
Devang Patel116da2f2011-04-26 19:06:18 +0000237/// addRegisterOp - Add register operand.
238void CompileUnit::addRegisterOp(DIE *TheDie, unsigned Reg) {
239 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
240 unsigned DWReg = RI->getDwarfRegNum(Reg, false);
241 if (DWReg < 32)
242 addUInt(TheDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + DWReg);
243 else {
244 addUInt(TheDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx);
245 addUInt(TheDie, 0, dwarf::DW_FORM_udata, DWReg);
246 }
247}
248
249/// addRegisterOffset - Add register offset.
250void CompileUnit::addRegisterOffset(DIE *TheDie, unsigned Reg,
251 int64_t Offset) {
252 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
253 unsigned DWReg = RI->getDwarfRegNum(Reg, false);
254 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
255 if (Reg == TRI->getFrameRegister(*Asm->MF))
256 // If variable offset is based in frame register then use fbreg.
257 addUInt(TheDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_fbreg);
258 else if (DWReg < 32)
259 addUInt(TheDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + DWReg);
260 else {
261 addUInt(TheDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
262 addUInt(TheDie, 0, dwarf::DW_FORM_udata, DWReg);
263 }
264 addSInt(TheDie, 0, dwarf::DW_FORM_sdata, Offset);
265}
266
267/// addAddress - Add an address attribute to a die based on the location
268/// provided.
269void CompileUnit::addAddress(DIE *Die, unsigned Attribute,
270 const MachineLocation &Location) {
271 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
272
273 if (Location.isReg())
274 addRegisterOp(Block, Location.getReg());
275 else
276 addRegisterOffset(Block, Location.getReg(), Location.getOffset());
277
278 // Now attach the location information to the DIE.
279 addBlock(Die, Attribute, 0, Block);
280}
281
Devang Patel161b2f42011-04-12 23:21:44 +0000282/// addComplexAddress - Start with the address based on the location provided,
283/// and generate the DWARF information necessary to find the actual variable
284/// given the extra address information encoded in the DIVariable, starting from
285/// the starting location. Add the DWARF information to the die.
286///
287void CompileUnit::addComplexAddress(DbgVariable *&DV, DIE *Die,
288 unsigned Attribute,
289 const MachineLocation &Location) {
Devang Patel161b2f42011-04-12 23:21:44 +0000290 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Devang Patelc26f5442011-04-28 02:22:40 +0000291 unsigned N = DV->getNumAddrElements();
292 unsigned i = 0;
293 if (Location.isReg()) {
294 if (N >= 2 && DV->getAddrElement(0) == DIBuilder::OpPlus) {
295 // If first address element is OpPlus then emit
296 // DW_OP_breg + Offset instead of DW_OP_reg + Offset.
297 addRegisterOffset(Block, Location.getReg(), DV->getAddrElement(1));
298 i = 2;
299 } else
300 addRegisterOp(Block, Location.getReg());
301 }
Devang Patel116da2f2011-04-26 19:06:18 +0000302 else
303 addRegisterOffset(Block, Location.getReg(), Location.getOffset());
Devang Patel161b2f42011-04-12 23:21:44 +0000304
Devang Patelc26f5442011-04-28 02:22:40 +0000305 for (;i < N; ++i) {
Devang Patel161b2f42011-04-12 23:21:44 +0000306 uint64_t Element = DV->getAddrElement(i);
Devang Patel161b2f42011-04-12 23:21:44 +0000307 if (Element == DIBuilder::OpPlus) {
308 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
309 addUInt(Block, 0, dwarf::DW_FORM_udata, DV->getAddrElement(++i));
310 } else if (Element == DIBuilder::OpDeref) {
Eric Christopher50120762012-05-08 18:56:00 +0000311 if (!Location.isReg())
312 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
Devang Patel161b2f42011-04-12 23:21:44 +0000313 } else llvm_unreachable("unknown DIBuilder Opcode");
314 }
315
316 // Now attach the location information to the DIE.
317 addBlock(Die, Attribute, 0, Block);
318}
319
320/* Byref variables, in Blocks, are declared by the programmer as "SomeType
321 VarName;", but the compiler creates a __Block_byref_x_VarName struct, and
322 gives the variable VarName either the struct, or a pointer to the struct, as
323 its type. This is necessary for various behind-the-scenes things the
324 compiler needs to do with by-reference variables in Blocks.
325
326 However, as far as the original *programmer* is concerned, the variable
327 should still have type 'SomeType', as originally declared.
328
329 The function getBlockByrefType dives into the __Block_byref_x_VarName
330 struct to find the original type of the variable, which is then assigned to
331 the variable's Debug Information Entry as its real type. So far, so good.
332 However now the debugger will expect the variable VarName to have the type
333 SomeType. So we need the location attribute for the variable to be an
334 expression that explains to the debugger how to navigate through the
335 pointers and struct to find the actual variable of type SomeType.
336
337 The following function does just that. We start by getting
338 the "normal" location for the variable. This will be the location
339 of either the struct __Block_byref_x_VarName or the pointer to the
340 struct __Block_byref_x_VarName.
341
342 The struct will look something like:
343
344 struct __Block_byref_x_VarName {
345 ... <various fields>
346 struct __Block_byref_x_VarName *forwarding;
347 ... <various other fields>
348 SomeType VarName;
349 ... <maybe more fields>
350 };
351
352 If we are given the struct directly (as our starting point) we
353 need to tell the debugger to:
354
355 1). Add the offset of the forwarding field.
356
357 2). Follow that pointer to get the real __Block_byref_x_VarName
358 struct to use (the real one may have been copied onto the heap).
359
360 3). Add the offset for the field VarName, to find the actual variable.
361
362 If we started with a pointer to the struct, then we need to
363 dereference that pointer first, before the other steps.
364 Translating this into DWARF ops, we will need to append the following
365 to the current location description for the variable:
366
367 DW_OP_deref -- optional, if we start with a pointer
368 DW_OP_plus_uconst <forward_fld_offset>
369 DW_OP_deref
370 DW_OP_plus_uconst <varName_fld_offset>
371
372 That is what this function does. */
373
374/// addBlockByrefAddress - Start with the address based on the location
375/// provided, and generate the DWARF information necessary to find the
376/// actual Block variable (navigating the Block struct) based on the
377/// starting location. Add the DWARF information to the die. For
378/// more information, read large comment just above here.
379///
380void CompileUnit::addBlockByrefAddress(DbgVariable *&DV, DIE *Die,
381 unsigned Attribute,
382 const MachineLocation &Location) {
383 DIType Ty = DV->getType();
384 DIType TmpTy = Ty;
385 unsigned Tag = Ty.getTag();
386 bool isPointer = false;
387
388 StringRef varName = DV->getName();
389
390 if (Tag == dwarf::DW_TAG_pointer_type) {
391 DIDerivedType DTy = DIDerivedType(Ty);
392 TmpTy = DTy.getTypeDerivedFrom();
393 isPointer = true;
394 }
395
396 DICompositeType blockStruct = DICompositeType(TmpTy);
397
398 // Find the __forwarding field and the variable field in the __Block_byref
399 // struct.
400 DIArray Fields = blockStruct.getTypeArray();
401 DIDescriptor varField = DIDescriptor();
402 DIDescriptor forwardingField = DIDescriptor();
403
404 for (unsigned i = 0, N = Fields.getNumElements(); i < N; ++i) {
405 DIDescriptor Element = Fields.getElement(i);
406 DIDerivedType DT = DIDerivedType(Element);
407 StringRef fieldName = DT.getName();
408 if (fieldName == "__forwarding")
409 forwardingField = Element;
410 else if (fieldName == varName)
411 varField = Element;
412 }
413
414 // Get the offsets for the forwarding field and the variable field.
415 unsigned forwardingFieldOffset =
416 DIDerivedType(forwardingField).getOffsetInBits() >> 3;
417 unsigned varFieldOffset =
418 DIDerivedType(varField).getOffsetInBits() >> 3;
419
420 // Decode the original location, and use that as the start of the byref
421 // variable's location.
422 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
423 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
424 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
425
426 if (Location.isReg()) {
427 if (Reg < 32)
428 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg);
429 else {
430 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx);
431 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
432 }
433 } else {
434 if (Reg < 32)
435 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg);
436 else {
437 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx);
438 addUInt(Block, 0, dwarf::DW_FORM_udata, Reg);
439 }
440
441 addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset());
442 }
443
444 // If we started with a pointer to the __Block_byref... struct, then
445 // the first thing we need to do is dereference the pointer (DW_OP_deref).
446 if (isPointer)
447 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
448
449 // Next add the offset for the '__forwarding' field:
450 // DW_OP_plus_uconst ForwardingFieldOffset. Note there's no point in
451 // adding the offset if it's 0.
452 if (forwardingFieldOffset > 0) {
453 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
454 addUInt(Block, 0, dwarf::DW_FORM_udata, forwardingFieldOffset);
455 }
456
457 // Now dereference the __forwarding field to get to the real __Block_byref
458 // struct: DW_OP_deref.
459 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
460
461 // Now that we've got the real __Block_byref... struct, add the offset
462 // for the variable's field to get to the location of the actual variable:
463 // DW_OP_plus_uconst varFieldOffset. Again, don't add if it's 0.
464 if (varFieldOffset > 0) {
465 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
466 addUInt(Block, 0, dwarf::DW_FORM_udata, varFieldOffset);
467 }
468
469 // Now attach the location information to the DIE.
470 addBlock(Die, Attribute, 0, Block);
471}
472
Devang Patel4ec14b02011-07-20 21:57:04 +0000473/// isTypeSigned - Return true if the type is signed.
474static bool isTypeSigned(DIType Ty, int *SizeInBits) {
475 if (Ty.isDerivedType())
476 return isTypeSigned(DIDerivedType(Ty).getTypeDerivedFrom(), SizeInBits);
477 if (Ty.isBasicType())
478 if (DIBasicType(Ty).getEncoding() == dwarf::DW_ATE_signed
479 || DIBasicType(Ty).getEncoding() == dwarf::DW_ATE_signed_char) {
480 *SizeInBits = Ty.getSizeInBits();
481 return true;
482 }
483 return false;
484}
485
Devang Patel161b2f42011-04-12 23:21:44 +0000486/// addConstantValue - Add constant value entry in variable DIE.
Devang Patelb58128e2011-05-27 16:45:18 +0000487bool CompileUnit::addConstantValue(DIE *Die, const MachineOperand &MO,
488 DIType Ty) {
Nick Lewycky746cb672011-10-26 22:55:33 +0000489 assert(MO.isImm() && "Invalid machine operand!");
Devang Patel161b2f42011-04-12 23:21:44 +0000490 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
Devang Patel4ec14b02011-07-20 21:57:04 +0000491 int SizeInBits = -1;
492 bool SignedConstant = isTypeSigned(Ty, &SizeInBits);
493 unsigned Form = SignedConstant ? dwarf::DW_FORM_sdata : dwarf::DW_FORM_udata;
494 switch (SizeInBits) {
495 case 8: Form = dwarf::DW_FORM_data1; break;
496 case 16: Form = dwarf::DW_FORM_data2; break;
497 case 32: Form = dwarf::DW_FORM_data4; break;
498 case 64: Form = dwarf::DW_FORM_data8; break;
Devang Patel045c1d42011-05-27 19:13:26 +0000499 default: break;
500 }
Devang Patel4ec14b02011-07-20 21:57:04 +0000501 SignedConstant ? addSInt(Block, 0, Form, MO.getImm())
502 : addUInt(Block, 0, Form, MO.getImm());
Devang Patel72f0d9c2011-05-27 18:15:52 +0000503
Devang Patel161b2f42011-04-12 23:21:44 +0000504 addBlock(Die, dwarf::DW_AT_const_value, 0, Block);
505 return true;
506}
507
508/// addConstantFPValue - Add constant value entry in variable DIE.
509bool CompileUnit::addConstantFPValue(DIE *Die, const MachineOperand &MO) {
Nick Lewycky390c40d2011-10-27 06:44:11 +0000510 assert (MO.isFPImm() && "Invalid machine operand!");
Devang Patel161b2f42011-04-12 23:21:44 +0000511 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
512 APFloat FPImm = MO.getFPImm()->getValueAPF();
513
514 // Get the raw data form of the floating point.
515 const APInt FltVal = FPImm.bitcastToAPInt();
516 const char *FltPtr = (const char*)FltVal.getRawData();
517
518 int NumBytes = FltVal.getBitWidth() / 8; // 8 bits per byte.
519 bool LittleEndian = Asm->getTargetData().isLittleEndian();
520 int Incr = (LittleEndian ? 1 : -1);
521 int Start = (LittleEndian ? 0 : NumBytes - 1);
522 int Stop = (LittleEndian ? NumBytes : -1);
523
524 // Output the constant to DWARF one byte at a time.
525 for (; Start != Stop; Start += Incr)
526 addUInt(Block, 0, dwarf::DW_FORM_data1,
527 (unsigned char)0xFF & FltPtr[Start]);
528
529 addBlock(Die, dwarf::DW_AT_const_value, 0, Block);
530 return true;
531}
532
533/// addConstantValue - Add constant value entry in variable DIE.
Devang Patel8594d422011-06-24 20:46:11 +0000534bool CompileUnit::addConstantValue(DIE *Die, const ConstantInt *CI,
Devang Patel161b2f42011-04-12 23:21:44 +0000535 bool Unsigned) {
Devang Pateld6a81362011-05-28 00:39:18 +0000536 unsigned CIBitWidth = CI->getBitWidth();
537 if (CIBitWidth <= 64) {
538 unsigned form = 0;
539 switch (CIBitWidth) {
540 case 8: form = dwarf::DW_FORM_data1; break;
541 case 16: form = dwarf::DW_FORM_data2; break;
542 case 32: form = dwarf::DW_FORM_data4; break;
543 case 64: form = dwarf::DW_FORM_data8; break;
544 default:
545 form = Unsigned ? dwarf::DW_FORM_udata : dwarf::DW_FORM_sdata;
546 }
Devang Patel161b2f42011-04-12 23:21:44 +0000547 if (Unsigned)
Devang Pateld6a81362011-05-28 00:39:18 +0000548 addUInt(Die, dwarf::DW_AT_const_value, form, CI->getZExtValue());
Devang Patel161b2f42011-04-12 23:21:44 +0000549 else
Devang Pateld6a81362011-05-28 00:39:18 +0000550 addSInt(Die, dwarf::DW_AT_const_value, form, CI->getSExtValue());
Devang Patel161b2f42011-04-12 23:21:44 +0000551 return true;
552 }
553
554 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
555
556 // Get the raw data form of the large APInt.
557 const APInt Val = CI->getValue();
NAKAMURA Takumic3e48c32011-10-28 14:12:22 +0000558 const uint64_t *Ptr64 = Val.getRawData();
Devang Patel161b2f42011-04-12 23:21:44 +0000559
560 int NumBytes = Val.getBitWidth() / 8; // 8 bits per byte.
561 bool LittleEndian = Asm->getTargetData().isLittleEndian();
Devang Patel161b2f42011-04-12 23:21:44 +0000562
563 // Output the constant to DWARF one byte at a time.
NAKAMURA Takumic3e48c32011-10-28 14:12:22 +0000564 for (int i = 0; i < NumBytes; i++) {
565 uint8_t c;
566 if (LittleEndian)
567 c = Ptr64[i / 8] >> (8 * (i & 7));
568 else
569 c = Ptr64[(NumBytes - 1 - i) / 8] >> (8 * ((NumBytes - 1 - i) & 7));
570 addUInt(Block, 0, dwarf::DW_FORM_data1, c);
571 }
Devang Patel161b2f42011-04-12 23:21:44 +0000572
573 addBlock(Die, dwarf::DW_AT_const_value, 0, Block);
574 return true;
575}
576
577/// addTemplateParams - Add template parameters in buffer.
578void CompileUnit::addTemplateParams(DIE &Buffer, DIArray TParams) {
579 // Add template parameters.
580 for (unsigned i = 0, e = TParams.getNumElements(); i != e; ++i) {
581 DIDescriptor Element = TParams.getElement(i);
582 if (Element.isTemplateTypeParameter())
583 Buffer.addChild(getOrCreateTemplateTypeParameterDIE(
584 DITemplateTypeParameter(Element)));
585 else if (Element.isTemplateValueParameter())
586 Buffer.addChild(getOrCreateTemplateValueParameterDIE(
587 DITemplateValueParameter(Element)));
588 }
Devang Patel161b2f42011-04-12 23:21:44 +0000589}
Nick Lewycky746cb672011-10-26 22:55:33 +0000590
Devang Patel161b2f42011-04-12 23:21:44 +0000591/// addToContextOwner - Add Die into the list of its context owner's children.
592void CompileUnit::addToContextOwner(DIE *Die, DIDescriptor Context) {
593 if (Context.isType()) {
594 DIE *ContextDIE = getOrCreateTypeDIE(DIType(Context));
595 ContextDIE->addChild(Die);
596 } else if (Context.isNameSpace()) {
597 DIE *ContextDIE = getOrCreateNameSpace(DINameSpace(Context));
598 ContextDIE->addChild(Die);
599 } else if (Context.isSubprogram()) {
Devang Pateldbc64af2011-08-15 17:24:54 +0000600 DIE *ContextDIE = getOrCreateSubprogramDIE(DISubprogram(Context));
Devang Patel161b2f42011-04-12 23:21:44 +0000601 ContextDIE->addChild(Die);
602 } else if (DIE *ContextDIE = getDIE(Context))
603 ContextDIE->addChild(Die);
604 else
605 addDie(Die);
606}
607
608/// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
609/// given DIType.
Devang Patel94c7ddb2011-08-16 22:09:43 +0000610DIE *CompileUnit::getOrCreateTypeDIE(const MDNode *TyNode) {
611 DIType Ty(TyNode);
612 if (!Ty.Verify())
613 return NULL;
Devang Patel161b2f42011-04-12 23:21:44 +0000614 DIE *TyDIE = getDIE(Ty);
615 if (TyDIE)
616 return TyDIE;
617
618 // Create new type.
619 TyDIE = new DIE(dwarf::DW_TAG_base_type);
620 insertDIE(Ty, TyDIE);
621 if (Ty.isBasicType())
622 constructTypeDIE(*TyDIE, DIBasicType(Ty));
623 else if (Ty.isCompositeType())
624 constructTypeDIE(*TyDIE, DICompositeType(Ty));
625 else {
626 assert(Ty.isDerivedType() && "Unknown kind of DIType");
627 constructTypeDIE(*TyDIE, DIDerivedType(Ty));
628 }
Eric Christopher1b3f9192011-11-10 19:52:58 +0000629 // If this is a named finished type then include it in the list of types
630 // for the accelerator tables.
Eric Christopherc36145f2012-01-06 04:35:23 +0000631 if (!Ty.getName().empty() && !Ty.isForwardDecl()) {
632 bool IsImplementation = 0;
633 if (Ty.isCompositeType()) {
634 DICompositeType CT(Ty);
Eric Christophere0167892012-01-06 23:03:37 +0000635 // A runtime language of 0 actually means C/C++ and that any
636 // non-negative value is some version of Objective-C/C++.
Eric Christopherc36145f2012-01-06 04:35:23 +0000637 IsImplementation = (CT.getRunTimeLang() == 0) ||
Eric Christophere2dc9332012-02-22 08:46:02 +0000638 CT.isObjcClassComplete();
Eric Christopherc36145f2012-01-06 04:35:23 +0000639 }
Eric Christophere0167892012-01-06 23:03:37 +0000640 unsigned Flags = IsImplementation ?
641 DwarfAccelTable::eTypeFlagClassIsImplementation : 0;
642 addAccelType(Ty.getName(), std::make_pair(TyDIE, Flags));
Eric Christopherc36145f2012-01-06 04:35:23 +0000643 }
Eric Christopher1b3f9192011-11-10 19:52:58 +0000644
Devang Patel161b2f42011-04-12 23:21:44 +0000645 addToContextOwner(TyDIE, Ty.getContext());
646 return TyDIE;
647}
648
649/// addType - Add a new type attribute to the specified entity.
Eric Christopher663e0cf2012-03-28 07:34:31 +0000650void CompileUnit::addType(DIE *Entity, DIType Ty,
651 unsigned Attribute) {
Devang Patel161b2f42011-04-12 23:21:44 +0000652 if (!Ty.Verify())
653 return;
654
655 // Check for pre-existence.
656 DIEEntry *Entry = getDIEEntry(Ty);
657 // If it exists then use the existing value.
658 if (Entry) {
Eric Christopher663e0cf2012-03-28 07:34:31 +0000659 Entity->addValue(Attribute, dwarf::DW_FORM_ref4, Entry);
Devang Patel161b2f42011-04-12 23:21:44 +0000660 return;
661 }
662
663 // Construct type.
664 DIE *Buffer = getOrCreateTypeDIE(Ty);
665
666 // Set up proxy.
667 Entry = createDIEEntry(Buffer);
668 insertDIEEntry(Ty, Entry);
Eric Christopher663e0cf2012-03-28 07:34:31 +0000669 Entity->addValue(Attribute, dwarf::DW_FORM_ref4, Entry);
Devang Patele9ae06c2011-05-31 22:56:51 +0000670
671 // If this is a complete composite type then include it in the
672 // list of global types.
Devang Patelc20bdf12011-06-01 00:23:24 +0000673 addGlobalType(Ty);
Devang Patel66658e42011-05-31 23:30:30 +0000674}
675
676/// addGlobalType - Add a new global type to the compile unit.
677///
Devang Patelc20bdf12011-06-01 00:23:24 +0000678void CompileUnit::addGlobalType(DIType Ty) {
Devang Patele9ae06c2011-05-31 22:56:51 +0000679 DIDescriptor Context = Ty.getContext();
680 if (Ty.isCompositeType() && !Ty.getName().empty() && !Ty.isForwardDecl()
Devang Patel94c7ddb2011-08-16 22:09:43 +0000681 && (!Context || Context.isCompileUnit() || Context.isFile()
682 || Context.isNameSpace()))
Devang Patelc20bdf12011-06-01 00:23:24 +0000683 if (DIEEntry *Entry = getDIEEntry(Ty))
684 GlobalTypes[Ty.getName()] = Entry->getEntry();
Devang Patel161b2f42011-04-12 23:21:44 +0000685}
686
Devang Patel31c5d052011-05-06 16:57:54 +0000687/// addPubTypes - Add type for pubtypes section.
688void CompileUnit::addPubTypes(DISubprogram SP) {
689 DICompositeType SPTy = SP.getType();
690 unsigned SPTag = SPTy.getTag();
691 if (SPTag != dwarf::DW_TAG_subroutine_type)
692 return;
693
694 DIArray Args = SPTy.getTypeArray();
695 for (unsigned i = 0, e = Args.getNumElements(); i != e; ++i) {
696 DIType ATy(Args.getElement(i));
697 if (!ATy.Verify())
698 continue;
Devang Patelc20bdf12011-06-01 00:23:24 +0000699 addGlobalType(ATy);
Devang Patel31c5d052011-05-06 16:57:54 +0000700 }
701}
702
Devang Patel161b2f42011-04-12 23:21:44 +0000703/// constructTypeDIE - Construct basic type die from DIBasicType.
704void CompileUnit::constructTypeDIE(DIE &Buffer, DIBasicType BTy) {
705 // Get core information.
706 StringRef Name = BTy.getName();
Devang Patel161b2f42011-04-12 23:21:44 +0000707 // Add name if not anonymous or intermediate type.
708 if (!Name.empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +0000709 addString(&Buffer, dwarf::DW_AT_name, Name);
Devang Patel734a67c2011-09-14 23:13:28 +0000710
711 if (BTy.getTag() == dwarf::DW_TAG_unspecified_type) {
712 Buffer.setTag(dwarf::DW_TAG_unspecified_type);
713 // Unspecified types has only name, nothing else.
714 return;
715 }
716
717 Buffer.setTag(dwarf::DW_TAG_base_type);
Nick Lewycky746cb672011-10-26 22:55:33 +0000718 addUInt(&Buffer, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
Devang Patel30d409c2012-02-07 23:33:58 +0000719 BTy.getEncoding());
Devang Patel734a67c2011-09-14 23:13:28 +0000720
Devang Patel161b2f42011-04-12 23:21:44 +0000721 uint64_t Size = BTy.getSizeInBits() >> 3;
722 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
723}
724
725/// constructTypeDIE - Construct derived type die from DIDerivedType.
726void CompileUnit::constructTypeDIE(DIE &Buffer, DIDerivedType DTy) {
727 // Get core information.
728 StringRef Name = DTy.getName();
729 uint64_t Size = DTy.getSizeInBits() >> 3;
730 unsigned Tag = DTy.getTag();
731
732 // FIXME - Workaround for templates.
733 if (Tag == dwarf::DW_TAG_inheritance) Tag = dwarf::DW_TAG_reference_type;
734
735 Buffer.setTag(Tag);
736
737 // Map to main type, void will not have a type.
738 DIType FromTy = DTy.getTypeDerivedFrom();
739 addType(&Buffer, FromTy);
740
741 // Add name if not anonymous or intermediate type.
742 if (!Name.empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +0000743 addString(&Buffer, dwarf::DW_AT_name, Name);
Devang Patel161b2f42011-04-12 23:21:44 +0000744
745 // Add size if non-zero (derived types might be zero-sized.)
Eric Christopher35f225a2012-02-21 22:25:53 +0000746 if (Size && Tag != dwarf::DW_TAG_pointer_type)
Devang Patel161b2f42011-04-12 23:21:44 +0000747 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
748
749 // Add source line info if available and TyDesc is not a forward declaration.
750 if (!DTy.isForwardDecl())
751 addSourceLine(&Buffer, DTy);
752}
753
754/// constructTypeDIE - Construct type DIE from DICompositeType.
755void CompileUnit::constructTypeDIE(DIE &Buffer, DICompositeType CTy) {
756 // Get core information.
757 StringRef Name = CTy.getName();
758
759 uint64_t Size = CTy.getSizeInBits() >> 3;
760 unsigned Tag = CTy.getTag();
761 Buffer.setTag(Tag);
762
763 switch (Tag) {
764 case dwarf::DW_TAG_vector_type:
765 case dwarf::DW_TAG_array_type:
766 constructArrayTypeDIE(Buffer, &CTy);
767 break;
768 case dwarf::DW_TAG_enumeration_type: {
769 DIArray Elements = CTy.getTypeArray();
770
771 // Add enumerators to enumeration type.
772 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
773 DIE *ElemDie = NULL;
774 DIDescriptor Enum(Elements.getElement(i));
775 if (Enum.isEnumerator()) {
776 ElemDie = constructEnumTypeDIE(DIEnumerator(Enum));
777 Buffer.addChild(ElemDie);
778 }
779 }
780 }
781 break;
782 case dwarf::DW_TAG_subroutine_type: {
783 // Add return type.
784 DIArray Elements = CTy.getTypeArray();
785 DIDescriptor RTy = Elements.getElement(0);
786 addType(&Buffer, DIType(RTy));
787
788 bool isPrototyped = true;
789 // Add arguments.
790 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) {
791 DIDescriptor Ty = Elements.getElement(i);
792 if (Ty.isUnspecifiedParameter()) {
793 DIE *Arg = new DIE(dwarf::DW_TAG_unspecified_parameters);
794 Buffer.addChild(Arg);
795 isPrototyped = false;
796 } else {
797 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
798 addType(Arg, DIType(Ty));
799 Buffer.addChild(Arg);
800 }
801 }
Eric Christopher8b6fe6b2012-02-22 08:46:21 +0000802 // Add prototype flag if we're dealing with a C language and the
803 // function has been prototyped.
804 if (isPrototyped &&
805 (Language == dwarf::DW_LANG_C89 ||
806 Language == dwarf::DW_LANG_C99 ||
807 Language == dwarf::DW_LANG_ObjC))
Devang Patel161b2f42011-04-12 23:21:44 +0000808 addUInt(&Buffer, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
809 }
810 break;
811 case dwarf::DW_TAG_structure_type:
812 case dwarf::DW_TAG_union_type:
813 case dwarf::DW_TAG_class_type: {
814 // Add elements to structure type.
815 DIArray Elements = CTy.getTypeArray();
816
817 // A forward struct declared type may not have elements available.
818 unsigned N = Elements.getNumElements();
819 if (N == 0)
820 break;
821
822 // Add elements to structure type.
823 for (unsigned i = 0; i < N; ++i) {
824 DIDescriptor Element = Elements.getElement(i);
825 DIE *ElemDie = NULL;
826 if (Element.isSubprogram()) {
827 DISubprogram SP(Element);
Devang Pateldbc64af2011-08-15 17:24:54 +0000828 ElemDie = getOrCreateSubprogramDIE(DISubprogram(Element));
Devang Patel161b2f42011-04-12 23:21:44 +0000829 if (SP.isProtected())
Nick Lewycky13aaca52011-12-13 05:09:11 +0000830 addUInt(ElemDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1,
Devang Patel161b2f42011-04-12 23:21:44 +0000831 dwarf::DW_ACCESS_protected);
832 else if (SP.isPrivate())
Nick Lewycky13aaca52011-12-13 05:09:11 +0000833 addUInt(ElemDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1,
Devang Patel161b2f42011-04-12 23:21:44 +0000834 dwarf::DW_ACCESS_private);
835 else
Nick Lewycky13aaca52011-12-13 05:09:11 +0000836 addUInt(ElemDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1,
Devang Patel161b2f42011-04-12 23:21:44 +0000837 dwarf::DW_ACCESS_public);
838 if (SP.isExplicit())
839 addUInt(ElemDie, dwarf::DW_AT_explicit, dwarf::DW_FORM_flag, 1);
840 }
841 else if (Element.isVariable()) {
842 DIVariable DV(Element);
843 ElemDie = new DIE(dwarf::DW_TAG_variable);
Nick Lewycky390c40d2011-10-27 06:44:11 +0000844 addString(ElemDie, dwarf::DW_AT_name, DV.getName());
Devang Patel161b2f42011-04-12 23:21:44 +0000845 addType(ElemDie, DV.getType());
846 addUInt(ElemDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
847 addUInt(ElemDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
848 addSourceLine(ElemDie, DV);
Eric Christopher663e0cf2012-03-28 07:34:31 +0000849 } else if (Element.isDerivedType()) {
850 DIDerivedType DDTy(Element);
851 if (DDTy.getTag() == dwarf::DW_TAG_friend) {
852 ElemDie = new DIE(dwarf::DW_TAG_friend);
853 addType(ElemDie, DDTy.getTypeDerivedFrom(), dwarf::DW_AT_friend);
854 } else
855 ElemDie = createMemberDIE(DIDerivedType(Element));
856 } else if (Element.isObjCProperty()) {
Devang Patel30d409c2012-02-07 23:33:58 +0000857 DIObjCProperty Property(Element);
858 ElemDie = new DIE(Property.getTag());
859 StringRef PropertyName = Property.getObjCPropertyName();
860 addString(ElemDie, dwarf::DW_AT_APPLE_property_name, PropertyName);
Eric Christopherb8ca9882012-03-29 08:42:56 +0000861 addType(ElemDie, Property.getType());
862 addSourceLine(ElemDie, Property);
Devang Patel30d409c2012-02-07 23:33:58 +0000863 StringRef GetterName = Property.getObjCPropertyGetterName();
864 if (!GetterName.empty())
865 addString(ElemDie, dwarf::DW_AT_APPLE_property_getter, GetterName);
866 StringRef SetterName = Property.getObjCPropertySetterName();
867 if (!SetterName.empty())
868 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName);
869 unsigned PropertyAttributes = 0;
Devang Patel9e11eb12012-02-04 01:30:32 +0000870 if (Property.isReadOnlyObjCProperty())
871 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_readonly;
872 if (Property.isReadWriteObjCProperty())
873 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_readwrite;
874 if (Property.isAssignObjCProperty())
875 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_assign;
876 if (Property.isRetainObjCProperty())
877 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_retain;
878 if (Property.isCopyObjCProperty())
879 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_copy;
880 if (Property.isNonAtomicObjCProperty())
881 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_nonatomic;
882 if (PropertyAttributes)
883 addUInt(ElemDie, dwarf::DW_AT_APPLE_property_attribute, 0,
884 PropertyAttributes);
Devang Patel6588abf2012-02-06 17:49:43 +0000885
Devang Patel30d409c2012-02-07 23:33:58 +0000886 DIEEntry *Entry = getDIEEntry(Element);
887 if (!Entry) {
888 Entry = createDIEEntry(ElemDie);
889 insertDIEEntry(Element, Entry);
890 }
Devang Patel9e11eb12012-02-04 01:30:32 +0000891 } else
Devang Patel161b2f42011-04-12 23:21:44 +0000892 continue;
893 Buffer.addChild(ElemDie);
894 }
895
896 if (CTy.isAppleBlockExtension())
897 addUInt(&Buffer, dwarf::DW_AT_APPLE_block, dwarf::DW_FORM_flag, 1);
898
Devang Patel161b2f42011-04-12 23:21:44 +0000899 DICompositeType ContainingType = CTy.getContainingType();
900 if (DIDescriptor(ContainingType).isCompositeType())
901 addDIEEntry(&Buffer, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4,
902 getOrCreateTypeDIE(DIType(ContainingType)));
903 else {
904 DIDescriptor Context = CTy.getContext();
905 addToContextOwner(&Buffer, Context);
906 }
907
Devang Patel201e6cd2011-05-12 21:29:42 +0000908 if (CTy.isObjcClassComplete())
909 addUInt(&Buffer, dwarf::DW_AT_APPLE_objc_complete_type,
Devang Patelb11f80e2011-05-12 19:06:16 +0000910 dwarf::DW_FORM_flag, 1);
911
Eric Christopher1a8e8862011-12-16 23:42:42 +0000912 // Add template parameters to a class, structure or union types.
913 // FIXME: The support isn't in the metadata for this yet.
914 if (Tag == dwarf::DW_TAG_class_type ||
915 Tag == dwarf::DW_TAG_structure_type ||
916 Tag == dwarf::DW_TAG_union_type)
Devang Patel161b2f42011-04-12 23:21:44 +0000917 addTemplateParams(Buffer, CTy.getTemplateParams());
918
919 break;
920 }
921 default:
922 break;
923 }
924
925 // Add name if not anonymous or intermediate type.
926 if (!Name.empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +0000927 addString(&Buffer, dwarf::DW_AT_name, Name);
Devang Patel161b2f42011-04-12 23:21:44 +0000928
929 if (Tag == dwarf::DW_TAG_enumeration_type || Tag == dwarf::DW_TAG_class_type
930 || Tag == dwarf::DW_TAG_structure_type || Tag == dwarf::DW_TAG_union_type)
Nick Lewycky746cb672011-10-26 22:55:33 +0000931 {
Devang Patel161b2f42011-04-12 23:21:44 +0000932 // Add size if non-zero (derived types might be zero-sized.)
933 if (Size)
934 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size);
935 else {
936 // Add zero size if it is not a forward declaration.
937 if (CTy.isForwardDecl())
938 addUInt(&Buffer, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
939 else
940 addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, 0);
941 }
942
943 // Add source line info if available.
944 if (!CTy.isForwardDecl())
945 addSourceLine(&Buffer, CTy);
Eric Christopher89388952012-03-07 00:15:19 +0000946
947 // No harm in adding the runtime language to the declaration.
948 unsigned RLang = CTy.getRunTimeLang();
949 if (RLang)
950 addUInt(&Buffer, dwarf::DW_AT_APPLE_runtime_class,
951 dwarf::DW_FORM_data1, RLang);
Devang Patel161b2f42011-04-12 23:21:44 +0000952 }
953}
954
955/// getOrCreateTemplateTypeParameterDIE - Find existing DIE or create new DIE
956/// for the given DITemplateTypeParameter.
957DIE *
958CompileUnit::getOrCreateTemplateTypeParameterDIE(DITemplateTypeParameter TP) {
959 DIE *ParamDIE = getDIE(TP);
960 if (ParamDIE)
961 return ParamDIE;
962
963 ParamDIE = new DIE(dwarf::DW_TAG_template_type_parameter);
964 addType(ParamDIE, TP.getType());
Nick Lewycky390c40d2011-10-27 06:44:11 +0000965 addString(ParamDIE, dwarf::DW_AT_name, TP.getName());
Devang Patel161b2f42011-04-12 23:21:44 +0000966 return ParamDIE;
967}
968
969/// getOrCreateTemplateValueParameterDIE - Find existing DIE or create new DIE
970/// for the given DITemplateValueParameter.
971DIE *
972CompileUnit::getOrCreateTemplateValueParameterDIE(DITemplateValueParameter TPV) {
973 DIE *ParamDIE = getDIE(TPV);
974 if (ParamDIE)
975 return ParamDIE;
976
977 ParamDIE = new DIE(dwarf::DW_TAG_template_value_parameter);
978 addType(ParamDIE, TPV.getType());
979 if (!TPV.getName().empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +0000980 addString(ParamDIE, dwarf::DW_AT_name, TPV.getName());
Devang Patel161b2f42011-04-12 23:21:44 +0000981 addUInt(ParamDIE, dwarf::DW_AT_const_value, dwarf::DW_FORM_udata,
982 TPV.getValue());
983 return ParamDIE;
984}
985
Devang Patel31c5d052011-05-06 16:57:54 +0000986/// getOrCreateNameSpace - Create a DIE for DINameSpace.
987DIE *CompileUnit::getOrCreateNameSpace(DINameSpace NS) {
988 DIE *NDie = getDIE(NS);
989 if (NDie)
990 return NDie;
991 NDie = new DIE(dwarf::DW_TAG_namespace);
992 insertDIE(NS, NDie);
Eric Christopher09ac3d82011-11-07 09:24:32 +0000993 if (!NS.getName().empty()) {
Nick Lewycky390c40d2011-10-27 06:44:11 +0000994 addString(NDie, dwarf::DW_AT_name, NS.getName());
Eric Christopher09ac3d82011-11-07 09:24:32 +0000995 addAccelNamespace(NS.getName(), NDie);
996 } else
997 addAccelNamespace("(anonymous namespace)", NDie);
Devang Patel31c5d052011-05-06 16:57:54 +0000998 addSourceLine(NDie, NS);
999 addToContextOwner(NDie, NS.getContext());
1000 return NDie;
1001}
1002
Devang Pateldbc64af2011-08-15 17:24:54 +00001003/// getRealLinkageName - If special LLVM prefix that is used to inform the asm
1004/// printer to not emit usual symbol prefix before the symbol name is used then
1005/// return linkage name after skipping this special LLVM prefix.
1006static StringRef getRealLinkageName(StringRef LinkageName) {
1007 char One = '\1';
1008 if (LinkageName.startswith(StringRef(&One, 1)))
1009 return LinkageName.substr(1);
1010 return LinkageName;
1011}
1012
1013/// getOrCreateSubprogramDIE - Create new DIE using SP.
1014DIE *CompileUnit::getOrCreateSubprogramDIE(DISubprogram SP) {
1015 DIE *SPDie = getDIE(SP);
1016 if (SPDie)
1017 return SPDie;
1018
Rafael Espindola01b55b42011-11-10 22:34:29 +00001019 DISubprogram SPDecl = SP.getFunctionDeclaration();
1020 DIE *DeclDie = NULL;
1021 if (SPDecl.isSubprogram()) {
1022 DeclDie = getOrCreateSubprogramDIE(SPDecl);
1023 }
1024
Devang Pateldbc64af2011-08-15 17:24:54 +00001025 SPDie = new DIE(dwarf::DW_TAG_subprogram);
1026
1027 // DW_TAG_inlined_subroutine may refer to this DIE.
1028 insertDIE(SP, SPDie);
1029
1030 // Add to context owner.
1031 addToContextOwner(SPDie, SP.getContext());
1032
1033 // Add function template parameters.
1034 addTemplateParams(*SPDie, SP.getTemplateParams());
1035
Eric Christophere9722e12012-04-16 23:54:23 +00001036 // Unfortunately this code needs to stay here instead of below the
1037 // AT_specification code in order to work around a bug in older
1038 // gdbs that requires the linkage name to resolve multiple template
1039 // functions.
Eric Christopher8d101c32012-03-15 08:19:33 +00001040 StringRef LinkageName = SP.getLinkageName();
1041 if (!LinkageName.empty())
1042 addString(SPDie, dwarf::DW_AT_MIPS_linkage_name,
1043 getRealLinkageName(LinkageName));
1044
Devang Pateldbc64af2011-08-15 17:24:54 +00001045 // If this DIE is going to refer declaration info using AT_specification
1046 // then there is no need to add other attributes.
Rafael Espindola01b55b42011-11-10 22:34:29 +00001047 if (DeclDie) {
1048 // Refer function declaration directly.
1049 addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4,
1050 DeclDie);
1051
Devang Pateldbc64af2011-08-15 17:24:54 +00001052 return SPDie;
Rafael Espindola01b55b42011-11-10 22:34:29 +00001053 }
Devang Pateldbc64af2011-08-15 17:24:54 +00001054
1055 // Constructors and operators for anonymous aggregates do not have names.
1056 if (!SP.getName().empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +00001057 addString(SPDie, dwarf::DW_AT_name, SP.getName());
Devang Pateldbc64af2011-08-15 17:24:54 +00001058
1059 addSourceLine(SPDie, SP);
1060
Eric Christopher8b6fe6b2012-02-22 08:46:21 +00001061 // Add the prototype if we have a prototype and we have a C like
1062 // language.
1063 if (SP.isPrototyped() &&
1064 (Language == dwarf::DW_LANG_C89 ||
1065 Language == dwarf::DW_LANG_C99 ||
1066 Language == dwarf::DW_LANG_ObjC))
Devang Pateldbc64af2011-08-15 17:24:54 +00001067 addUInt(SPDie, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1);
1068
1069 // Add Return Type.
1070 DICompositeType SPTy = SP.getType();
1071 DIArray Args = SPTy.getTypeArray();
1072 unsigned SPTag = SPTy.getTag();
1073
1074 if (Args.getNumElements() == 0 || SPTag != dwarf::DW_TAG_subroutine_type)
1075 addType(SPDie, SPTy);
1076 else
1077 addType(SPDie, DIType(Args.getElement(0)));
1078
1079 unsigned VK = SP.getVirtuality();
1080 if (VK) {
Nick Lewycky798313d2011-12-14 00:56:07 +00001081 addUInt(SPDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_data1, VK);
Devang Pateldbc64af2011-08-15 17:24:54 +00001082 DIEBlock *Block = getDIEBlock();
1083 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
1084 addUInt(Block, 0, dwarf::DW_FORM_udata, SP.getVirtualIndex());
1085 addBlock(SPDie, dwarf::DW_AT_vtable_elem_location, 0, Block);
1086 ContainingTypeMap.insert(std::make_pair(SPDie,
1087 SP.getContainingType()));
1088 }
1089
1090 if (!SP.isDefinition()) {
1091 addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1);
1092
1093 // Add arguments. Do not add arguments for subprogram definition. They will
1094 // be handled while processing variables.
1095 DICompositeType SPTy = SP.getType();
1096 DIArray Args = SPTy.getTypeArray();
1097 unsigned SPTag = SPTy.getTag();
1098
1099 if (SPTag == dwarf::DW_TAG_subroutine_type)
1100 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
1101 DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter);
1102 DIType ATy = DIType(DIType(Args.getElement(i)));
1103 addType(Arg, ATy);
1104 if (ATy.isArtificial())
1105 addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
1106 SPDie->addChild(Arg);
1107 }
1108 }
1109
1110 if (SP.isArtificial())
1111 addUInt(SPDie, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1);
1112
1113 if (!SP.isLocalToUnit())
1114 addUInt(SPDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
1115
1116 if (SP.isOptimized())
1117 addUInt(SPDie, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1);
1118
1119 if (unsigned isa = Asm->getISAEncoding()) {
1120 addUInt(SPDie, dwarf::DW_AT_APPLE_isa, dwarf::DW_FORM_flag, isa);
1121 }
1122
1123 return SPDie;
1124}
1125
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001126// Return const expression if value is a GEP to access merged global
1127// constant. e.g.
1128// i8* getelementptr ({ i8, i8, i8, i8 }* @_MergedGlobals, i32 0, i32 0)
1129static const ConstantExpr *getMergedGlobalExpr(const Value *V) {
1130 const ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(V);
1131 if (!CE || CE->getNumOperands() != 3 ||
1132 CE->getOpcode() != Instruction::GetElementPtr)
1133 return NULL;
1134
1135 // First operand points to a global struct.
1136 Value *Ptr = CE->getOperand(0);
1137 if (!isa<GlobalValue>(Ptr) ||
1138 !isa<StructType>(cast<PointerType>(Ptr->getType())->getElementType()))
1139 return NULL;
1140
1141 // Second operand is zero.
1142 const ConstantInt *CI = dyn_cast_or_null<ConstantInt>(CE->getOperand(1));
1143 if (!CI || !CI->isZero())
1144 return NULL;
1145
1146 // Third operand is offset.
1147 if (!isa<ConstantInt>(CE->getOperand(2)))
1148 return NULL;
1149
1150 return CE;
1151}
1152
1153/// createGlobalVariableDIE - create global variable DIE.
1154void CompileUnit::createGlobalVariableDIE(const MDNode *N) {
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001155 // Check for pre-existence.
Devang Patel49e2f032011-08-18 22:21:50 +00001156 if (getDIE(N))
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001157 return;
1158
Devang Patel49e2f032011-08-18 22:21:50 +00001159 DIGlobalVariable GV(N);
Devang Patel28bea082011-08-18 23:17:55 +00001160 if (!GV.Verify())
1161 return;
1162
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001163 DIE *VariableDIE = new DIE(GV.getTag());
Devang Patel49e2f032011-08-18 22:21:50 +00001164 // Add to map.
1165 insertDIE(N, VariableDIE);
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001166
1167 // Add name.
Nick Lewycky390c40d2011-10-27 06:44:11 +00001168 addString(VariableDIE, dwarf::DW_AT_name, GV.getDisplayName());
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001169 StringRef LinkageName = GV.getLinkageName();
Devang Patel49e2f032011-08-18 22:21:50 +00001170 bool isGlobalVariable = GV.getGlobal() != NULL;
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001171 if (!LinkageName.empty() && isGlobalVariable)
Nick Lewycky746cb672011-10-26 22:55:33 +00001172 addString(VariableDIE, dwarf::DW_AT_MIPS_linkage_name,
Nick Lewycky390c40d2011-10-27 06:44:11 +00001173 getRealLinkageName(LinkageName));
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001174 // Add type.
Devang Patel49e2f032011-08-18 22:21:50 +00001175 DIType GTy = GV.getType();
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001176 addType(VariableDIE, GTy);
1177
1178 // Add scoping info.
Eric Christopherdfa30e12011-11-09 05:24:07 +00001179 if (!GV.isLocalToUnit())
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001180 addUInt(VariableDIE, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
Eric Christopherdfa30e12011-11-09 05:24:07 +00001181
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001182 // Add line number info.
1183 addSourceLine(VariableDIE, GV);
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001184 // Add to context owner.
1185 DIDescriptor GVContext = GV.getContext();
1186 addToContextOwner(VariableDIE, GVContext);
1187 // Add location.
Eric Christopher09ac3d82011-11-07 09:24:32 +00001188 bool addToAccelTable = false;
Eric Christopherd61c34b2011-11-11 03:16:32 +00001189 DIE *VariableSpecDIE = NULL;
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001190 if (isGlobalVariable) {
Eric Christopher09ac3d82011-11-07 09:24:32 +00001191 addToAccelTable = true;
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001192 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
1193 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
1194 addLabel(Block, 0, dwarf::DW_FORM_udata,
1195 Asm->Mang->getSymbol(GV.getGlobal()));
1196 // Do not create specification DIE if context is either compile unit
1197 // or a subprogram.
Devang Patel1dd4e562011-09-21 23:41:11 +00001198 if (GVContext && GV.isDefinition() && !GVContext.isCompileUnit() &&
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001199 !GVContext.isFile() && !isSubprogramContext(GVContext)) {
1200 // Create specification DIE.
Eric Christopherd117fbb2011-11-11 01:55:22 +00001201 VariableSpecDIE = new DIE(dwarf::DW_TAG_variable);
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001202 addDIEEntry(VariableSpecDIE, dwarf::DW_AT_specification,
1203 dwarf::DW_FORM_ref4, VariableDIE);
1204 addBlock(VariableSpecDIE, dwarf::DW_AT_location, 0, Block);
1205 addUInt(VariableDIE, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag,
1206 1);
1207 addDie(VariableSpecDIE);
1208 } else {
1209 addBlock(VariableDIE, dwarf::DW_AT_location, 0, Block);
Eric Christopher09ac3d82011-11-07 09:24:32 +00001210 }
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001211 } else if (const ConstantInt *CI =
1212 dyn_cast_or_null<ConstantInt>(GV.getConstant()))
1213 addConstantValue(VariableDIE, CI, GTy.isUnsignedDIType());
1214 else if (const ConstantExpr *CE = getMergedGlobalExpr(N->getOperand(11))) {
Eric Christopher09ac3d82011-11-07 09:24:32 +00001215 addToAccelTable = true;
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001216 // GV is a merged global.
1217 DIEBlock *Block = new (DIEValueAllocator) DIEBlock();
1218 Value *Ptr = CE->getOperand(0);
1219 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr);
1220 addLabel(Block, 0, dwarf::DW_FORM_udata,
1221 Asm->Mang->getSymbol(cast<GlobalValue>(Ptr)));
1222 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
1223 SmallVector<Value*, 3> Idx(CE->op_begin()+1, CE->op_end());
1224 addUInt(Block, 0, dwarf::DW_FORM_udata,
1225 Asm->getTargetData().getIndexedOffset(Ptr->getType(), Idx));
1226 addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus);
1227 addBlock(VariableDIE, dwarf::DW_AT_location, 0, Block);
1228 }
1229
Eric Christopherd117fbb2011-11-11 01:55:22 +00001230 if (addToAccelTable) {
1231 DIE *AddrDIE = VariableSpecDIE ? VariableSpecDIE : VariableDIE;
1232 addAccelName(GV.getName(), AddrDIE);
Eric Christopher09ac3d82011-11-07 09:24:32 +00001233
Eric Christopherd117fbb2011-11-11 01:55:22 +00001234 // If the linkage name is different than the name, go ahead and output
1235 // that as well into the name table.
1236 if (GV.getLinkageName() != "" && GV.getName() != GV.getLinkageName())
1237 addAccelName(GV.getLinkageName(), AddrDIE);
1238 }
Eric Christopher74d8a872011-11-08 21:56:23 +00001239
Devang Patel6f9d8ff2011-08-15 17:57:41 +00001240 return;
1241}
1242
Devang Patel161b2f42011-04-12 23:21:44 +00001243/// constructSubrangeDIE - Construct subrange DIE from DISubrange.
1244void CompileUnit::constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy){
1245 DIE *DW_Subrange = new DIE(dwarf::DW_TAG_subrange_type);
1246 addDIEEntry(DW_Subrange, dwarf::DW_AT_type, dwarf::DW_FORM_ref4, IndexTy);
Devang Patelce35d8b2011-11-17 23:43:15 +00001247 uint64_t L = SR.getLo();
1248 uint64_t H = SR.getHi();
Devang Patel161b2f42011-04-12 23:21:44 +00001249
1250 // The L value defines the lower bounds which is typically zero for C/C++. The
1251 // H value is the upper bounds. Values are 64 bit. H - L + 1 is the size
1252 // of the array. If L > H then do not emit DW_AT_lower_bound and
1253 // DW_AT_upper_bound attributes. If L is zero and H is also zero then the
1254 // array has one element and in such case do not emit lower bound.
1255
1256 if (L > H) {
1257 Buffer.addChild(DW_Subrange);
1258 return;
1259 }
1260 if (L)
Devang Patelce35d8b2011-11-17 23:43:15 +00001261 addUInt(DW_Subrange, dwarf::DW_AT_lower_bound, 0, L);
1262 addUInt(DW_Subrange, dwarf::DW_AT_upper_bound, 0, H);
Devang Patel161b2f42011-04-12 23:21:44 +00001263 Buffer.addChild(DW_Subrange);
1264}
1265
1266/// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
1267void CompileUnit::constructArrayTypeDIE(DIE &Buffer,
1268 DICompositeType *CTy) {
1269 Buffer.setTag(dwarf::DW_TAG_array_type);
1270 if (CTy->getTag() == dwarf::DW_TAG_vector_type)
1271 addUInt(&Buffer, dwarf::DW_AT_GNU_vector, dwarf::DW_FORM_flag, 1);
1272
1273 // Emit derived type.
1274 addType(&Buffer, CTy->getTypeDerivedFrom());
1275 DIArray Elements = CTy->getTypeArray();
1276
1277 // Get an anonymous type for index type.
1278 DIE *IdxTy = getIndexTyDie();
1279 if (!IdxTy) {
1280 // Construct an anonymous type for index type.
1281 IdxTy = new DIE(dwarf::DW_TAG_base_type);
1282 addUInt(IdxTy, dwarf::DW_AT_byte_size, 0, sizeof(int32_t));
1283 addUInt(IdxTy, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1,
1284 dwarf::DW_ATE_signed);
1285 addDie(IdxTy);
1286 setIndexTyDie(IdxTy);
1287 }
1288
1289 // Add subranges to array type.
1290 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
1291 DIDescriptor Element = Elements.getElement(i);
1292 if (Element.getTag() == dwarf::DW_TAG_subrange_type)
1293 constructSubrangeDIE(Buffer, DISubrange(Element), IdxTy);
1294 }
1295}
1296
1297/// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
1298DIE *CompileUnit::constructEnumTypeDIE(DIEnumerator ETy) {
1299 DIE *Enumerator = new DIE(dwarf::DW_TAG_enumerator);
1300 StringRef Name = ETy.getName();
Nick Lewycky390c40d2011-10-27 06:44:11 +00001301 addString(Enumerator, dwarf::DW_AT_name, Name);
Devang Patel161b2f42011-04-12 23:21:44 +00001302 int64_t Value = ETy.getEnumValue();
1303 addSInt(Enumerator, dwarf::DW_AT_const_value, dwarf::DW_FORM_sdata, Value);
1304 return Enumerator;
1305}
1306
Devang Pateldbc64af2011-08-15 17:24:54 +00001307/// constructContainingTypeDIEs - Construct DIEs for types that contain
1308/// vtables.
1309void CompileUnit::constructContainingTypeDIEs() {
1310 for (DenseMap<DIE *, const MDNode *>::iterator CI = ContainingTypeMap.begin(),
1311 CE = ContainingTypeMap.end(); CI != CE; ++CI) {
1312 DIE *SPDie = CI->first;
1313 const MDNode *N = CI->second;
1314 if (!N) continue;
1315 DIE *NDie = getDIE(N);
1316 if (!NDie) continue;
1317 addDIEEntry(SPDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie);
1318 }
1319}
1320
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001321/// constructVariableDIE - Construct a DIE for the given DbgVariable.
1322DIE *CompileUnit::constructVariableDIE(DbgVariable *DV, bool isScopeAbstract) {
1323 StringRef Name = DV->getName();
1324 if (Name.empty())
1325 return NULL;
1326
1327 // Translate tag to proper Dwarf tag.
1328 unsigned Tag = DV->getTag();
1329
1330 // Define variable debug information entry.
1331 DIE *VariableDie = new DIE(Tag);
1332 DbgVariable *AbsVar = DV->getAbstractVariable();
1333 DIE *AbsDIE = AbsVar ? AbsVar->getDIE() : NULL;
1334 if (AbsDIE)
1335 addDIEEntry(VariableDie, dwarf::DW_AT_abstract_origin,
1336 dwarf::DW_FORM_ref4, AbsDIE);
1337 else {
Nick Lewycky390c40d2011-10-27 06:44:11 +00001338 addString(VariableDie, dwarf::DW_AT_name, Name);
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001339 addSourceLine(VariableDie, DV->getVariable());
1340 addType(VariableDie, DV->getType());
1341 }
1342
1343 if (DV->isArtificial())
1344 addUInt(VariableDie, dwarf::DW_AT_artificial,
1345 dwarf::DW_FORM_flag, 1);
1346
1347 if (isScopeAbstract) {
1348 DV->setDIE(VariableDie);
1349 return VariableDie;
1350 }
1351
1352 // Add variable address.
1353
1354 unsigned Offset = DV->getDotDebugLocOffset();
1355 if (Offset != ~0U) {
1356 addLabel(VariableDie, dwarf::DW_AT_location,
1357 dwarf::DW_FORM_data4,
1358 Asm->GetTempSymbol("debug_loc", Offset));
1359 DV->setDIE(VariableDie);
1360 return VariableDie;
1361 }
1362
Eric Christopher8cf5e742011-10-03 15:49:20 +00001363 // Check if variable is described by a DBG_VALUE instruction.
Devang Pateld0b5a5e2011-08-15 22:04:40 +00001364 if (const MachineInstr *DVInsn = DV->getMInsn()) {
1365 bool updated = false;
1366 if (DVInsn->getNumOperands() == 3) {
1367 if (DVInsn->getOperand(0).isReg()) {
1368 const MachineOperand RegOp = DVInsn->getOperand(0);
1369 const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo();
1370 if (DVInsn->getOperand(1).isImm() &&
1371 TRI->getFrameRegister(*Asm->MF) == RegOp.getReg()) {
1372 unsigned FrameReg = 0;
1373 const TargetFrameLowering *TFI = Asm->TM.getFrameLowering();
1374 int Offset =
1375 TFI->getFrameIndexReference(*Asm->MF,
1376 DVInsn->getOperand(1).getImm(),
1377 FrameReg);
1378 MachineLocation Location(FrameReg, Offset);
1379 addVariableAddress(DV, VariableDie, Location);
1380
1381 } else if (RegOp.getReg())
1382 addVariableAddress(DV, VariableDie,
1383 MachineLocation(RegOp.getReg()));
1384 updated = true;
1385 }
1386 else if (DVInsn->getOperand(0).isImm())
1387 updated =
1388 addConstantValue(VariableDie, DVInsn->getOperand(0),
1389 DV->getType());
1390 else if (DVInsn->getOperand(0).isFPImm())
1391 updated =
1392 addConstantFPValue(VariableDie, DVInsn->getOperand(0));
1393 else if (DVInsn->getOperand(0).isCImm())
1394 updated =
1395 addConstantValue(VariableDie,
1396 DVInsn->getOperand(0).getCImm(),
1397 DV->getType().isUnsignedDIType());
1398 } else {
1399 addVariableAddress(DV, VariableDie,
1400 Asm->getDebugValueLocation(DVInsn));
1401 updated = true;
1402 }
1403 if (!updated) {
1404 // If variableDie is not updated then DBG_VALUE instruction does not
1405 // have valid variable info.
1406 delete VariableDie;
1407 return NULL;
1408 }
1409 DV->setDIE(VariableDie);
1410 return VariableDie;
1411 } else {
1412 // .. else use frame index.
1413 int FI = DV->getFrameIndex();
1414 if (FI != ~0) {
1415 unsigned FrameReg = 0;
1416 const TargetFrameLowering *TFI = Asm->TM.getFrameLowering();
1417 int Offset =
1418 TFI->getFrameIndexReference(*Asm->MF, FI, FrameReg);
1419 MachineLocation Location(FrameReg, Offset);
1420 addVariableAddress(DV, VariableDie, Location);
1421 }
1422 }
1423
1424 DV->setDIE(VariableDie);
1425 return VariableDie;
1426}
1427
Devang Patel161b2f42011-04-12 23:21:44 +00001428/// createMemberDIE - Create new member DIE.
1429DIE *CompileUnit::createMemberDIE(DIDerivedType DT) {
1430 DIE *MemberDie = new DIE(DT.getTag());
1431 StringRef Name = DT.getName();
1432 if (!Name.empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +00001433 addString(MemberDie, dwarf::DW_AT_name, Name);
Devang Patel161b2f42011-04-12 23:21:44 +00001434
1435 addType(MemberDie, DT.getTypeDerivedFrom());
1436
1437 addSourceLine(MemberDie, DT);
1438
1439 DIEBlock *MemLocationDie = new (DIEValueAllocator) DIEBlock();
1440 addUInt(MemLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst);
1441
1442 uint64_t Size = DT.getSizeInBits();
1443 uint64_t FieldSize = DT.getOriginalTypeSize();
1444
1445 if (Size != FieldSize) {
1446 // Handle bitfield.
1447 addUInt(MemberDie, dwarf::DW_AT_byte_size, 0, DT.getOriginalTypeSize()>>3);
1448 addUInt(MemberDie, dwarf::DW_AT_bit_size, 0, DT.getSizeInBits());
1449
1450 uint64_t Offset = DT.getOffsetInBits();
1451 uint64_t AlignMask = ~(DT.getAlignInBits() - 1);
1452 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
1453 uint64_t FieldOffset = (HiMark - FieldSize);
1454 Offset -= FieldOffset;
1455
1456 // Maybe we need to work from the other end.
1457 if (Asm->getTargetData().isLittleEndian())
1458 Offset = FieldSize - (Offset + Size);
1459 addUInt(MemberDie, dwarf::DW_AT_bit_offset, 0, Offset);
1460
1461 // Here WD_AT_data_member_location points to the anonymous
1462 // field that includes this bit field.
1463 addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, FieldOffset >> 3);
1464
1465 } else
1466 // This is not a bitfield.
1467 addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits() >> 3);
1468
1469 if (DT.getTag() == dwarf::DW_TAG_inheritance
1470 && DT.isVirtual()) {
1471
1472 // For C++, virtual base classes are not at fixed offset. Use following
1473 // expression to extract appropriate offset from vtable.
1474 // BaseAddr = ObAddr + *((*ObAddr) - Offset)
1475
1476 DIEBlock *VBaseLocationDie = new (DIEValueAllocator) DIEBlock();
1477 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_dup);
1478 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
1479 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu);
1480 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits());
1481 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_minus);
1482 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref);
1483 addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus);
1484
1485 addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0,
1486 VBaseLocationDie);
1487 } else
1488 addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0, MemLocationDie);
1489
1490 if (DT.isProtected())
Nick Lewycky13aaca52011-12-13 05:09:11 +00001491 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1,
Devang Patel161b2f42011-04-12 23:21:44 +00001492 dwarf::DW_ACCESS_protected);
1493 else if (DT.isPrivate())
Nick Lewycky13aaca52011-12-13 05:09:11 +00001494 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1,
Devang Patel161b2f42011-04-12 23:21:44 +00001495 dwarf::DW_ACCESS_private);
1496 // Otherwise C++ member and base classes are considered public.
Devang Patel94c7ddb2011-08-16 22:09:43 +00001497 else
Nick Lewycky13aaca52011-12-13 05:09:11 +00001498 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1,
Devang Patel161b2f42011-04-12 23:21:44 +00001499 dwarf::DW_ACCESS_public);
1500 if (DT.isVirtual())
Nick Lewycky798313d2011-12-14 00:56:07 +00001501 addUInt(MemberDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_data1,
Devang Patel161b2f42011-04-12 23:21:44 +00001502 dwarf::DW_VIRTUALITY_virtual);
Devang Patele9db5e22011-04-16 00:11:51 +00001503
1504 // Objective-C properties.
Devang Patel6588abf2012-02-06 17:49:43 +00001505 if (MDNode *PNode = DT.getObjCProperty())
1506 if (DIEEntry *PropertyDie = getDIEEntry(PNode))
1507 MemberDie->addValue(dwarf::DW_AT_APPLE_property, dwarf::DW_FORM_ref4,
1508 PropertyDie);
1509
Devang Patel9e11eb12012-02-04 01:30:32 +00001510 // This is only for backward compatibility.
Devang Patele9db5e22011-04-16 00:11:51 +00001511 StringRef PropertyName = DT.getObjCPropertyName();
1512 if (!PropertyName.empty()) {
Nick Lewycky390c40d2011-10-27 06:44:11 +00001513 addString(MemberDie, dwarf::DW_AT_APPLE_property_name, PropertyName);
Devang Patele9db5e22011-04-16 00:11:51 +00001514 StringRef GetterName = DT.getObjCPropertyGetterName();
1515 if (!GetterName.empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +00001516 addString(MemberDie, dwarf::DW_AT_APPLE_property_getter, GetterName);
Devang Patele9db5e22011-04-16 00:11:51 +00001517 StringRef SetterName = DT.getObjCPropertySetterName();
1518 if (!SetterName.empty())
Nick Lewycky390c40d2011-10-27 06:44:11 +00001519 addString(MemberDie, dwarf::DW_AT_APPLE_property_setter, SetterName);
Devang Patele9db5e22011-04-16 00:11:51 +00001520 unsigned PropertyAttributes = 0;
1521 if (DT.isReadOnlyObjCProperty())
1522 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_readonly;
1523 if (DT.isReadWriteObjCProperty())
1524 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_readwrite;
1525 if (DT.isAssignObjCProperty())
1526 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_assign;
1527 if (DT.isRetainObjCProperty())
1528 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_retain;
1529 if (DT.isCopyObjCProperty())
1530 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_copy;
1531 if (DT.isNonAtomicObjCProperty())
1532 PropertyAttributes |= dwarf::DW_APPLE_PROPERTY_nonatomic;
1533 if (PropertyAttributes)
1534 addUInt(MemberDie, dwarf::DW_AT_APPLE_property_attribute, 0,
1535 PropertyAttributes);
1536 }
Devang Patel161b2f42011-04-12 23:21:44 +00001537 return MemberDie;
1538}