blob: bd81314f46321b848cdde258a0361725c7c2ee4b [file] [log] [blame]
Chris Lattnera45664f2008-11-10 02:56:27 +00001//===--- DebugInfo.cpp - Debug Information Helper Classes -----------------===//
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 implements the helper classes used to build and interpret debug
11// information in LLVM IR form.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Analysis/DebugInfo.h"
16#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/Intrinsics.h"
Torok Edwin620f2802008-12-16 09:07:36 +000019#include "llvm/IntrinsicInst.h"
Chris Lattnera45664f2008-11-10 02:56:27 +000020#include "llvm/Instructions.h"
Owen Anderson99035272009-07-07 17:12:53 +000021#include "llvm/LLVMContext.h"
Chris Lattnera45664f2008-11-10 02:56:27 +000022#include "llvm/Module.h"
23#include "llvm/Analysis/ValueTracking.h"
Devang Patele4b27562009-08-28 23:24:31 +000024#include "llvm/ADT/SmallPtrSet.h"
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000025#include "llvm/Support/Dwarf.h"
Devang Patel9e529c32009-07-02 01:15:24 +000026#include "llvm/Support/DebugLoc.h"
Chris Lattnera81d29b2009-08-23 07:33:14 +000027#include "llvm/Support/raw_ostream.h"
Chris Lattnera45664f2008-11-10 02:56:27 +000028using namespace llvm;
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000029using namespace llvm::dwarf;
Chris Lattnera45664f2008-11-10 02:56:27 +000030
31//===----------------------------------------------------------------------===//
32// DIDescriptor
33//===----------------------------------------------------------------------===//
34
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000035/// ValidDebugInfo - Return true if V represents valid debug info value.
Devang Patele4b27562009-08-28 23:24:31 +000036/// FIXME : Add DIDescriptor.isValid()
37bool DIDescriptor::ValidDebugInfo(MDNode *N, CodeGenOpt::Level OptLevel) {
38 if (!N)
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000039 return false;
40
Devang Patele4b27562009-08-28 23:24:31 +000041 DIDescriptor DI(N);
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000042
43 // Check current version. Allow Version6 for now.
44 unsigned Version = DI.getVersion();
45 if (Version != LLVMDebugVersion && Version != LLVMDebugVersion6)
46 return false;
47
48 unsigned Tag = DI.getTag();
49 switch (Tag) {
50 case DW_TAG_variable:
Devang Patele4b27562009-08-28 23:24:31 +000051 assert(DIVariable(N).Verify() && "Invalid DebugInfo value");
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000052 break;
53 case DW_TAG_compile_unit:
Devang Patele4b27562009-08-28 23:24:31 +000054 assert(DICompileUnit(N).Verify() && "Invalid DebugInfo value");
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000055 break;
56 case DW_TAG_subprogram:
Devang Patele4b27562009-08-28 23:24:31 +000057 assert(DISubprogram(N).Verify() && "Invalid DebugInfo value");
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000058 break;
59 case DW_TAG_lexical_block:
Bill Wendlingdc817b62009-05-14 18:26:15 +000060 // FIXME: This interfers with the quality of generated code during
61 // optimization.
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000062 if (OptLevel != CodeGenOpt::None)
63 return false;
Bill Wendlingdc817b62009-05-14 18:26:15 +000064 // FALLTHROUGH
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +000065 default:
66 break;
67 }
68
69 return true;
70}
71
Devang Patele4b27562009-08-28 23:24:31 +000072DIDescriptor::DIDescriptor(MDNode *N, unsigned RequiredTag) {
73 DbgNode = N;
Daniel Dunbarf612ff62009-09-19 20:40:05 +000074
Bill Wendlingdc817b62009-05-14 18:26:15 +000075 // If this is non-null, check to see if the Tag matches. If not, set to null.
Devang Patele4b27562009-08-28 23:24:31 +000076 if (N && getTag() != RequiredTag) {
77 DbgNode = 0;
78 }
Chris Lattnera45664f2008-11-10 02:56:27 +000079}
80
Devang Patel65dbc902009-11-25 17:36:49 +000081StringRef
Devang Patel5ccdd102009-09-29 18:40:58 +000082DIDescriptor::getStringField(unsigned Elt) const {
Devang Patele4b27562009-08-28 23:24:31 +000083 if (DbgNode == 0)
Devang Patel65dbc902009-11-25 17:36:49 +000084 return StringRef();
Chris Lattnera45664f2008-11-10 02:56:27 +000085
Daniel Dunbarf612ff62009-09-19 20:40:05 +000086 if (Elt < DbgNode->getNumElements())
Devang Patel65dbc902009-11-25 17:36:49 +000087 if (MDString *MDS = dyn_cast_or_null<MDString>(DbgNode->getElement(Elt)))
88 return MDS->getString();
Daniel Dunbarf612ff62009-09-19 20:40:05 +000089
Devang Patel65dbc902009-11-25 17:36:49 +000090 return StringRef();
Chris Lattnera45664f2008-11-10 02:56:27 +000091}
92
93uint64_t DIDescriptor::getUInt64Field(unsigned Elt) const {
Daniel Dunbarf612ff62009-09-19 20:40:05 +000094 if (DbgNode == 0)
Chris Lattnera45664f2008-11-10 02:56:27 +000095 return 0;
Bill Wendlingdc817b62009-05-14 18:26:15 +000096
Devang Patele4b27562009-08-28 23:24:31 +000097 if (Elt < DbgNode->getNumElements())
98 if (ConstantInt *CI = dyn_cast<ConstantInt>(DbgNode->getElement(Elt)))
99 return CI->getZExtValue();
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000100
Chris Lattnera45664f2008-11-10 02:56:27 +0000101 return 0;
102}
103
Chris Lattnera45664f2008-11-10 02:56:27 +0000104DIDescriptor DIDescriptor::getDescriptorField(unsigned Elt) const {
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000105 if (DbgNode == 0)
Chris Lattnera45664f2008-11-10 02:56:27 +0000106 return DIDescriptor();
Bill Wendlingdc817b62009-05-14 18:26:15 +0000107
Devang Patele4b27562009-08-28 23:24:31 +0000108 if (Elt < DbgNode->getNumElements() && DbgNode->getElement(Elt))
109 return DIDescriptor(dyn_cast<MDNode>(DbgNode->getElement(Elt)));
110
111 return DIDescriptor();
Chris Lattnera45664f2008-11-10 02:56:27 +0000112}
113
114GlobalVariable *DIDescriptor::getGlobalVariableField(unsigned Elt) const {
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000115 if (DbgNode == 0)
Chris Lattnera45664f2008-11-10 02:56:27 +0000116 return 0;
Bill Wendlingdc817b62009-05-14 18:26:15 +0000117
Devang Patele4b27562009-08-28 23:24:31 +0000118 if (Elt < DbgNode->getNumElements())
Bill Wendling26c6cf42009-10-08 20:52:51 +0000119 return dyn_cast_or_null<GlobalVariable>(DbgNode->getElement(Elt));
Devang Patele4b27562009-08-28 23:24:31 +0000120 return 0;
Chris Lattnera45664f2008-11-10 02:56:27 +0000121}
122
Chris Lattnera45664f2008-11-10 02:56:27 +0000123//===----------------------------------------------------------------------===//
Devang Patel6ceea332009-08-31 18:49:10 +0000124// Predicates
Chris Lattnera45664f2008-11-10 02:56:27 +0000125//===----------------------------------------------------------------------===//
126
Devang Patel6ceea332009-08-31 18:49:10 +0000127/// isBasicType - Return true if the specified tag is legal for
128/// DIBasicType.
129bool DIDescriptor::isBasicType() const {
Devang Patel5a685092009-08-31 20:27:49 +0000130 assert (!isNull() && "Invalid descriptor!");
Devang Patel6ceea332009-08-31 18:49:10 +0000131 unsigned Tag = getTag();
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000132
Devang Patel6ceea332009-08-31 18:49:10 +0000133 return Tag == dwarf::DW_TAG_base_type;
Torok Edwinb07fbd92008-12-13 08:25:29 +0000134}
Chris Lattnera45664f2008-11-10 02:56:27 +0000135
Devang Patel6ceea332009-08-31 18:49:10 +0000136/// isDerivedType - Return true if the specified tag is legal for DIDerivedType.
137bool DIDescriptor::isDerivedType() const {
Devang Patel5a685092009-08-31 20:27:49 +0000138 assert (!isNull() && "Invalid descriptor!");
Devang Patel6ceea332009-08-31 18:49:10 +0000139 unsigned Tag = getTag();
140
Chris Lattnera45664f2008-11-10 02:56:27 +0000141 switch (Tag) {
142 case dwarf::DW_TAG_typedef:
143 case dwarf::DW_TAG_pointer_type:
144 case dwarf::DW_TAG_reference_type:
145 case dwarf::DW_TAG_const_type:
146 case dwarf::DW_TAG_volatile_type:
147 case dwarf::DW_TAG_restrict_type:
148 case dwarf::DW_TAG_member:
149 case dwarf::DW_TAG_inheritance:
150 return true;
151 default:
Devang Patele4b27562009-08-28 23:24:31 +0000152 // CompositeTypes are currently modelled as DerivedTypes.
Devang Patel6ceea332009-08-31 18:49:10 +0000153 return isCompositeType();
Chris Lattnera45664f2008-11-10 02:56:27 +0000154 }
155}
156
Chris Lattnera45664f2008-11-10 02:56:27 +0000157/// isCompositeType - Return true if the specified tag is legal for
158/// DICompositeType.
Devang Patel6ceea332009-08-31 18:49:10 +0000159bool DIDescriptor::isCompositeType() const {
Devang Patel5a685092009-08-31 20:27:49 +0000160 assert (!isNull() && "Invalid descriptor!");
Devang Patel6ceea332009-08-31 18:49:10 +0000161 unsigned Tag = getTag();
162
163 switch (Tag) {
Chris Lattnera45664f2008-11-10 02:56:27 +0000164 case dwarf::DW_TAG_array_type:
165 case dwarf::DW_TAG_structure_type:
166 case dwarf::DW_TAG_union_type:
167 case dwarf::DW_TAG_enumeration_type:
168 case dwarf::DW_TAG_vector_type:
169 case dwarf::DW_TAG_subroutine_type:
Devang Patel25cb0d72009-03-25 03:52:06 +0000170 case dwarf::DW_TAG_class_type:
Chris Lattnera45664f2008-11-10 02:56:27 +0000171 return true;
172 default:
173 return false;
174 }
175}
176
Chris Lattnera45664f2008-11-10 02:56:27 +0000177/// isVariable - Return true if the specified tag is legal for DIVariable.
Devang Patel6ceea332009-08-31 18:49:10 +0000178bool DIDescriptor::isVariable() const {
Devang Patel5a685092009-08-31 20:27:49 +0000179 assert (!isNull() && "Invalid descriptor!");
Devang Patel6ceea332009-08-31 18:49:10 +0000180 unsigned Tag = getTag();
181
Chris Lattnera45664f2008-11-10 02:56:27 +0000182 switch (Tag) {
183 case dwarf::DW_TAG_auto_variable:
184 case dwarf::DW_TAG_arg_variable:
185 case dwarf::DW_TAG_return_variable:
186 return true;
187 default:
188 return false;
189 }
190}
191
Devang Patelecbeb1a2009-09-30 22:34:41 +0000192/// isType - Return true if the specified tag is legal for DIType.
193bool DIDescriptor::isType() const {
194 return isBasicType() || isCompositeType() || isDerivedType();
195}
196
Devang Patel6ceea332009-08-31 18:49:10 +0000197/// isSubprogram - Return true if the specified tag is legal for
198/// DISubprogram.
199bool DIDescriptor::isSubprogram() const {
Devang Patel5a685092009-08-31 20:27:49 +0000200 assert (!isNull() && "Invalid descriptor!");
Devang Patel6ceea332009-08-31 18:49:10 +0000201 unsigned Tag = getTag();
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000202
Devang Patel6ceea332009-08-31 18:49:10 +0000203 return Tag == dwarf::DW_TAG_subprogram;
204}
205
206/// isGlobalVariable - Return true if the specified tag is legal for
207/// DIGlobalVariable.
208bool DIDescriptor::isGlobalVariable() const {
Devang Patel5a685092009-08-31 20:27:49 +0000209 assert (!isNull() && "Invalid descriptor!");
Devang Patel6ceea332009-08-31 18:49:10 +0000210 unsigned Tag = getTag();
211
212 return Tag == dwarf::DW_TAG_variable;
213}
214
Devang Patelecbeb1a2009-09-30 22:34:41 +0000215/// isGlobal - Return true if the specified tag is legal for DIGlobal.
216bool DIDescriptor::isGlobal() const {
217 return isGlobalVariable();
218}
219
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000220/// isScope - Return true if the specified tag is one of the scope
Devang Patel43d98b32009-08-31 20:44:45 +0000221/// related tag.
222bool DIDescriptor::isScope() const {
223 assert (!isNull() && "Invalid descriptor!");
224 unsigned Tag = getTag();
225
226 switch (Tag) {
227 case dwarf::DW_TAG_compile_unit:
228 case dwarf::DW_TAG_lexical_block:
229 case dwarf::DW_TAG_subprogram:
Devang Patel6404e4e2009-12-15 19:16:48 +0000230 case dwarf::DW_TAG_namespace:
Devang Patel43d98b32009-08-31 20:44:45 +0000231 return true;
232 default:
233 break;
234 }
235 return false;
236}
Devang Patel6ceea332009-08-31 18:49:10 +0000237
Devang Patelc9f322d2009-08-31 21:34:44 +0000238/// isCompileUnit - Return true if the specified tag is DW_TAG_compile_unit.
239bool DIDescriptor::isCompileUnit() const {
240 assert (!isNull() && "Invalid descriptor!");
241 unsigned Tag = getTag();
242
243 return Tag == dwarf::DW_TAG_compile_unit;
244}
245
Devang Patel6404e4e2009-12-15 19:16:48 +0000246/// isNameSpace - Return true if the specified tag is DW_TAG_namespace.
247bool DIDescriptor::isNameSpace() const {
248 assert (!isNull() && "Invalid descriptor!");
249 unsigned Tag = getTag();
250
251 return Tag == dwarf::DW_TAG_namespace;
252}
253
Devang Patel5e005d82009-08-31 22:00:15 +0000254/// isLexicalBlock - Return true if the specified tag is DW_TAG_lexical_block.
255bool DIDescriptor::isLexicalBlock() const {
256 assert (!isNull() && "Invalid descriptor!");
257 unsigned Tag = getTag();
258
259 return Tag == dwarf::DW_TAG_lexical_block;
260}
261
Devang Patelecbeb1a2009-09-30 22:34:41 +0000262/// isSubrange - Return true if the specified tag is DW_TAG_subrange_type.
263bool DIDescriptor::isSubrange() const {
264 assert (!isNull() && "Invalid descriptor!");
265 unsigned Tag = getTag();
266
267 return Tag == dwarf::DW_TAG_subrange_type;
268}
269
270/// isEnumerator - Return true if the specified tag is DW_TAG_enumerator.
271bool DIDescriptor::isEnumerator() const {
272 assert (!isNull() && "Invalid descriptor!");
273 unsigned Tag = getTag();
274
275 return Tag == dwarf::DW_TAG_enumerator;
276}
277
Devang Patel6ceea332009-08-31 18:49:10 +0000278//===----------------------------------------------------------------------===//
279// Simple Descriptor Constructors and other Methods
280//===----------------------------------------------------------------------===//
281
282DIType::DIType(MDNode *N) : DIDescriptor(N) {
283 if (!N) return;
284 if (!isBasicType() && !isDerivedType() && !isCompositeType()) {
285 DbgNode = 0;
286 }
287}
288
Devang Patel68afdc32009-01-05 18:33:01 +0000289unsigned DIArray::getNumElements() const {
Devang Patele4b27562009-08-28 23:24:31 +0000290 assert (DbgNode && "Invalid DIArray");
291 return DbgNode->getNumElements();
Devang Patel68afdc32009-01-05 18:33:01 +0000292}
Chris Lattnera45664f2008-11-10 02:56:27 +0000293
Devang Patelc4999d72009-07-22 18:23:44 +0000294/// replaceAllUsesWith - Replace all uses of debug info referenced by
295/// this descriptor. After this completes, the current debug info value
296/// is erased.
297void DIDerivedType::replaceAllUsesWith(DIDescriptor &D) {
298 if (isNull())
299 return;
300
Devang Patel6930f4f2009-07-22 18:56:16 +0000301 assert (!D.isNull() && "Can not replace with null");
Daniel Dunbar48a097b2009-09-22 02:03:18 +0000302
303 // Since we use a TrackingVH for the node, its easy for clients to manufacture
304 // legitimate situations where they want to replaceAllUsesWith() on something
305 // which, due to uniquing, has merged with the source. We shield clients from
306 // this detail by allowing a value to be replaced with replaceAllUsesWith()
307 // itself.
308 if (getNode() != D.getNode()) {
309 MDNode *Node = DbgNode;
310 Node->replaceAllUsesWith(D.getNode());
311 delete Node;
312 }
Devang Patelc4999d72009-07-22 18:23:44 +0000313}
314
Devang Patelb79b5352009-01-19 23:21:49 +0000315/// Verify - Verify that a compile unit is well formed.
316bool DICompileUnit::Verify() const {
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000317 if (isNull())
Devang Patelb79b5352009-01-19 23:21:49 +0000318 return false;
Devang Patel65dbc902009-11-25 17:36:49 +0000319 StringRef N = getFilename();
320 if (N.empty())
Bill Wendling0582ae92009-03-13 04:39:26 +0000321 return false;
Devang Patelb79b5352009-01-19 23:21:49 +0000322 // It is possible that directory and produce string is empty.
Bill Wendling0582ae92009-03-13 04:39:26 +0000323 return true;
Devang Patelb79b5352009-01-19 23:21:49 +0000324}
325
326/// Verify - Verify that a type descriptor is well formed.
327bool DIType::Verify() const {
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000328 if (isNull())
Devang Patelb79b5352009-01-19 23:21:49 +0000329 return false;
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000330 if (getContext().isNull())
Devang Patelb79b5352009-01-19 23:21:49 +0000331 return false;
332
333 DICompileUnit CU = getCompileUnit();
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000334 if (!CU.isNull() && !CU.Verify())
Devang Patelb79b5352009-01-19 23:21:49 +0000335 return false;
336 return true;
337}
338
339/// Verify - Verify that a composite type descriptor is well formed.
340bool DICompositeType::Verify() const {
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000341 if (isNull())
Devang Patelb79b5352009-01-19 23:21:49 +0000342 return false;
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000343 if (getContext().isNull())
Devang Patelb79b5352009-01-19 23:21:49 +0000344 return false;
345
346 DICompileUnit CU = getCompileUnit();
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000347 if (!CU.isNull() && !CU.Verify())
Devang Patelb79b5352009-01-19 23:21:49 +0000348 return false;
349 return true;
350}
351
352/// Verify - Verify that a subprogram descriptor is well formed.
353bool DISubprogram::Verify() const {
354 if (isNull())
355 return false;
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000356
Devang Patelb79b5352009-01-19 23:21:49 +0000357 if (getContext().isNull())
358 return false;
359
360 DICompileUnit CU = getCompileUnit();
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000361 if (!CU.Verify())
Devang Patelb79b5352009-01-19 23:21:49 +0000362 return false;
363
364 DICompositeType Ty = getType();
365 if (!Ty.isNull() && !Ty.Verify())
366 return false;
367 return true;
368}
369
370/// Verify - Verify that a global variable descriptor is well formed.
371bool DIGlobalVariable::Verify() const {
372 if (isNull())
373 return false;
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000374
Devang Patel65dbc902009-11-25 17:36:49 +0000375 if (getDisplayName().empty())
Devang Patel84c73e92009-11-06 17:58:12 +0000376 return false;
377
Devang Patelb79b5352009-01-19 23:21:49 +0000378 if (getContext().isNull())
379 return false;
380
381 DICompileUnit CU = getCompileUnit();
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000382 if (!CU.isNull() && !CU.Verify())
Devang Patelb79b5352009-01-19 23:21:49 +0000383 return false;
384
385 DIType Ty = getType();
386 if (!Ty.Verify())
387 return false;
388
389 if (!getGlobal())
390 return false;
391
392 return true;
393}
394
395/// Verify - Verify that a variable descriptor is well formed.
396bool DIVariable::Verify() const {
397 if (isNull())
398 return false;
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000399
Devang Patelb79b5352009-01-19 23:21:49 +0000400 if (getContext().isNull())
401 return false;
402
403 DIType Ty = getType();
404 if (!Ty.Verify())
405 return false;
406
Devang Patelb79b5352009-01-19 23:21:49 +0000407 return true;
408}
409
Devang Patel36375ee2009-02-17 21:23:59 +0000410/// getOriginalTypeSize - If this type is derived from a base type then
411/// return base type size.
412uint64_t DIDerivedType::getOriginalTypeSize() const {
Devang Patel61ecbd12009-11-04 23:48:00 +0000413 unsigned Tag = getTag();
414 if (Tag == dwarf::DW_TAG_member || Tag == dwarf::DW_TAG_typedef ||
415 Tag == dwarf::DW_TAG_const_type || Tag == dwarf::DW_TAG_volatile_type ||
416 Tag == dwarf::DW_TAG_restrict_type) {
417 DIType BaseType = getTypeDerivedFrom();
Devang Patel5ebfa2d2009-11-06 18:24:05 +0000418 // If this type is not derived from any type then take conservative
419 // approach.
420 if (BaseType.isNull())
421 return getSizeInBits();
Devang Patel61ecbd12009-11-04 23:48:00 +0000422 if (BaseType.isDerivedType())
423 return DIDerivedType(BaseType.getNode()).getOriginalTypeSize();
424 else
425 return BaseType.getSizeInBits();
426 }
427
428 return getSizeInBits();
Devang Patel36375ee2009-02-17 21:23:59 +0000429}
Devang Patelb79b5352009-01-19 23:21:49 +0000430
Devang Patelaf5b6bb2009-04-15 00:06:07 +0000431/// describes - Return true if this subprogram provides debugging
432/// information for the function F.
433bool DISubprogram::describes(const Function *F) {
434 assert (F && "Invalid function");
Devang Patel65dbc902009-11-25 17:36:49 +0000435 StringRef Name = getLinkageName();
436 if (Name.empty())
Devang Patel5ccdd102009-09-29 18:40:58 +0000437 Name = getName();
Devang Patel65dbc902009-11-25 17:36:49 +0000438 if (F->getName() == Name)
Devang Patelaf5b6bb2009-04-15 00:06:07 +0000439 return true;
440 return false;
441}
442
Devang Patel65dbc902009-11-25 17:36:49 +0000443StringRef DIScope::getFilename() const {
Devang Patelecbeb1a2009-09-30 22:34:41 +0000444 if (isLexicalBlock())
445 return DILexicalBlock(DbgNode).getFilename();
446 else if (isSubprogram())
447 return DISubprogram(DbgNode).getFilename();
448 else if (isCompileUnit())
449 return DICompileUnit(DbgNode).getFilename();
Devang Patel6404e4e2009-12-15 19:16:48 +0000450 else if (isNameSpace())
451 return DINameSpace(DbgNode).getFilename();
Devang Patelecbeb1a2009-09-30 22:34:41 +0000452 else
453 assert (0 && "Invalid DIScope!");
Devang Patel65dbc902009-11-25 17:36:49 +0000454 return StringRef();
Devang Patelecbeb1a2009-09-30 22:34:41 +0000455}
456
Devang Patel65dbc902009-11-25 17:36:49 +0000457StringRef DIScope::getDirectory() const {
Devang Patelecbeb1a2009-09-30 22:34:41 +0000458 if (isLexicalBlock())
459 return DILexicalBlock(DbgNode).getDirectory();
460 else if (isSubprogram())
461 return DISubprogram(DbgNode).getDirectory();
462 else if (isCompileUnit())
463 return DICompileUnit(DbgNode).getDirectory();
Devang Patel6404e4e2009-12-15 19:16:48 +0000464 else if (isNameSpace())
465 return DINameSpace(DbgNode).getDirectory();
Devang Patelecbeb1a2009-09-30 22:34:41 +0000466 else
467 assert (0 && "Invalid DIScope!");
Devang Patel65dbc902009-11-25 17:36:49 +0000468 return StringRef();
Devang Patelecbeb1a2009-09-30 22:34:41 +0000469}
470
Chris Lattnera45664f2008-11-10 02:56:27 +0000471//===----------------------------------------------------------------------===//
Devang Patel7136a652009-07-01 22:10:23 +0000472// DIDescriptor: dump routines for all descriptors.
473//===----------------------------------------------------------------------===//
474
475
476/// dump - Print descriptor.
477void DIDescriptor::dump() const {
Devang Patele4b27562009-08-28 23:24:31 +0000478 errs() << "[" << dwarf::TagString(getTag()) << "] ";
Daniel Dunbar48a097b2009-09-22 02:03:18 +0000479 errs().write_hex((intptr_t) &*DbgNode) << ']';
Devang Patel7136a652009-07-01 22:10:23 +0000480}
481
482/// dump - Print compile unit.
483void DICompileUnit::dump() const {
484 if (getLanguage())
Chris Lattnera81d29b2009-08-23 07:33:14 +0000485 errs() << " [" << dwarf::LanguageString(getLanguage()) << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000486
Devang Patel5ccdd102009-09-29 18:40:58 +0000487 errs() << " [" << getDirectory() << "/" << getFilename() << " ]";
Devang Patel7136a652009-07-01 22:10:23 +0000488}
489
490/// dump - Print type.
491void DIType::dump() const {
492 if (isNull()) return;
493
Devang Patel65dbc902009-11-25 17:36:49 +0000494 StringRef Res = getName();
495 if (!Res.empty())
Chris Lattnera81d29b2009-08-23 07:33:14 +0000496 errs() << " [" << Res << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000497
498 unsigned Tag = getTag();
Chris Lattnera81d29b2009-08-23 07:33:14 +0000499 errs() << " [" << dwarf::TagString(Tag) << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000500
501 // TODO : Print context
502 getCompileUnit().dump();
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000503 errs() << " ["
504 << getLineNumber() << ", "
Chris Lattnera81d29b2009-08-23 07:33:14 +0000505 << getSizeInBits() << ", "
506 << getAlignInBits() << ", "
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000507 << getOffsetInBits()
Chris Lattnera81d29b2009-08-23 07:33:14 +0000508 << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000509
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000510 if (isPrivate())
Chris Lattnera81d29b2009-08-23 07:33:14 +0000511 errs() << " [private] ";
Devang Patel7136a652009-07-01 22:10:23 +0000512 else if (isProtected())
Chris Lattnera81d29b2009-08-23 07:33:14 +0000513 errs() << " [protected] ";
Devang Patel7136a652009-07-01 22:10:23 +0000514
515 if (isForwardDecl())
Chris Lattnera81d29b2009-08-23 07:33:14 +0000516 errs() << " [fwd] ";
Devang Patel7136a652009-07-01 22:10:23 +0000517
Devang Patel6ceea332009-08-31 18:49:10 +0000518 if (isBasicType())
Devang Patele4b27562009-08-28 23:24:31 +0000519 DIBasicType(DbgNode).dump();
Devang Patel6ceea332009-08-31 18:49:10 +0000520 else if (isDerivedType())
Devang Patele4b27562009-08-28 23:24:31 +0000521 DIDerivedType(DbgNode).dump();
Devang Patel6ceea332009-08-31 18:49:10 +0000522 else if (isCompositeType())
Devang Patele4b27562009-08-28 23:24:31 +0000523 DICompositeType(DbgNode).dump();
Devang Patel7136a652009-07-01 22:10:23 +0000524 else {
Chris Lattnera81d29b2009-08-23 07:33:14 +0000525 errs() << "Invalid DIType\n";
Devang Patel7136a652009-07-01 22:10:23 +0000526 return;
527 }
528
Chris Lattnera81d29b2009-08-23 07:33:14 +0000529 errs() << "\n";
Devang Patel7136a652009-07-01 22:10:23 +0000530}
531
532/// dump - Print basic type.
533void DIBasicType::dump() const {
Chris Lattnera81d29b2009-08-23 07:33:14 +0000534 errs() << " [" << dwarf::AttributeEncodingString(getEncoding()) << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000535}
536
537/// dump - Print derived type.
538void DIDerivedType::dump() const {
Chris Lattnera81d29b2009-08-23 07:33:14 +0000539 errs() << "\n\t Derived From: "; getTypeDerivedFrom().dump();
Devang Patel7136a652009-07-01 22:10:23 +0000540}
541
542/// dump - Print composite type.
543void DICompositeType::dump() const {
544 DIArray A = getTypeArray();
545 if (A.isNull())
546 return;
Chris Lattnera81d29b2009-08-23 07:33:14 +0000547 errs() << " [" << A.getNumElements() << " elements]";
Devang Patel7136a652009-07-01 22:10:23 +0000548}
549
550/// dump - Print global.
551void DIGlobal::dump() const {
Devang Patel65dbc902009-11-25 17:36:49 +0000552 StringRef Res = getName();
553 if (!Res.empty())
Chris Lattnera81d29b2009-08-23 07:33:14 +0000554 errs() << " [" << Res << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000555
556 unsigned Tag = getTag();
Chris Lattnera81d29b2009-08-23 07:33:14 +0000557 errs() << " [" << dwarf::TagString(Tag) << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000558
559 // TODO : Print context
560 getCompileUnit().dump();
Chris Lattnera81d29b2009-08-23 07:33:14 +0000561 errs() << " [" << getLineNumber() << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000562
563 if (isLocalToUnit())
Chris Lattnera81d29b2009-08-23 07:33:14 +0000564 errs() << " [local] ";
Devang Patel7136a652009-07-01 22:10:23 +0000565
566 if (isDefinition())
Chris Lattnera81d29b2009-08-23 07:33:14 +0000567 errs() << " [def] ";
Devang Patel7136a652009-07-01 22:10:23 +0000568
Devang Patel6ceea332009-08-31 18:49:10 +0000569 if (isGlobalVariable())
Devang Patele4b27562009-08-28 23:24:31 +0000570 DIGlobalVariable(DbgNode).dump();
Devang Patel7136a652009-07-01 22:10:23 +0000571
Chris Lattnera81d29b2009-08-23 07:33:14 +0000572 errs() << "\n";
Devang Patel7136a652009-07-01 22:10:23 +0000573}
574
575/// dump - Print subprogram.
576void DISubprogram::dump() const {
Devang Patel65dbc902009-11-25 17:36:49 +0000577 StringRef Res = getName();
578 if (!Res.empty())
Devang Patel82dfc0c2009-08-31 22:47:13 +0000579 errs() << " [" << Res << "] ";
580
581 unsigned Tag = getTag();
582 errs() << " [" << dwarf::TagString(Tag) << "] ";
583
584 // TODO : Print context
585 getCompileUnit().dump();
586 errs() << " [" << getLineNumber() << "] ";
587
588 if (isLocalToUnit())
589 errs() << " [local] ";
590
591 if (isDefinition())
592 errs() << " [def] ";
593
594 errs() << "\n";
Devang Patel7136a652009-07-01 22:10:23 +0000595}
596
597/// dump - Print global variable.
598void DIGlobalVariable::dump() const {
Chris Lattnera81d29b2009-08-23 07:33:14 +0000599 errs() << " [";
600 getGlobal()->dump();
601 errs() << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000602}
603
604/// dump - Print variable.
605void DIVariable::dump() const {
Devang Patel65dbc902009-11-25 17:36:49 +0000606 StringRef Res = getName();
607 if (!Res.empty())
Chris Lattnera81d29b2009-08-23 07:33:14 +0000608 errs() << " [" << Res << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000609
610 getCompileUnit().dump();
Chris Lattnera81d29b2009-08-23 07:33:14 +0000611 errs() << " [" << getLineNumber() << "] ";
Devang Patel7136a652009-07-01 22:10:23 +0000612 getType().dump();
Chris Lattnera81d29b2009-08-23 07:33:14 +0000613 errs() << "\n";
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000614
615 // FIXME: Dump complex addresses
Devang Patel7136a652009-07-01 22:10:23 +0000616}
617
618//===----------------------------------------------------------------------===//
Chris Lattnera45664f2008-11-10 02:56:27 +0000619// DIFactory: Basic Helpers
620//===----------------------------------------------------------------------===//
621
Bill Wendlingdc817b62009-05-14 18:26:15 +0000622DIFactory::DIFactory(Module &m)
Devang Patel427ef4e2009-11-17 22:39:08 +0000623 : M(m), VMContext(M.getContext()), DeclareFn(0) {
Devang Patel3ddf7042009-11-13 02:27:33 +0000624 EmptyStructPtr = PointerType::getUnqual(StructType::get(VMContext));
625}
Chris Lattner497a7a82008-11-10 04:10:34 +0000626
Chris Lattnera45664f2008-11-10 02:56:27 +0000627Constant *DIFactory::GetTagConstant(unsigned TAG) {
Devang Patel6906ba52009-01-20 19:22:03 +0000628 assert((TAG & LLVMDebugVersionMask) == 0 &&
Chris Lattnera45664f2008-11-10 02:56:27 +0000629 "Tag too large for debug encoding!");
Owen Anderson1d0be152009-08-13 21:58:54 +0000630 return ConstantInt::get(Type::getInt32Ty(VMContext), TAG | LLVMDebugVersion);
Chris Lattnera45664f2008-11-10 02:56:27 +0000631}
632
Chris Lattnera45664f2008-11-10 02:56:27 +0000633//===----------------------------------------------------------------------===//
634// DIFactory: Primary Constructors
635//===----------------------------------------------------------------------===//
636
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000637/// GetOrCreateArray - Create an descriptor for an array of descriptors.
Chris Lattnera45664f2008-11-10 02:56:27 +0000638/// This implicitly uniques the arrays created.
639DIArray DIFactory::GetOrCreateArray(DIDescriptor *Tys, unsigned NumTys) {
Devang Patele4b27562009-08-28 23:24:31 +0000640 SmallVector<Value*, 16> Elts;
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000641
Devang Patele4b27562009-08-28 23:24:31 +0000642 if (NumTys == 0)
643 Elts.push_back(llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)));
644 else
645 for (unsigned i = 0; i != NumTys; ++i)
646 Elts.push_back(Tys[i].getNode());
Devang Patel82459882009-08-26 05:01:18 +0000647
Devang Patele4b27562009-08-28 23:24:31 +0000648 return DIArray(MDNode::get(VMContext,Elts.data(), Elts.size()));
Chris Lattnera45664f2008-11-10 02:56:27 +0000649}
650
651/// GetOrCreateSubrange - Create a descriptor for a value range. This
652/// implicitly uniques the values returned.
653DISubrange DIFactory::GetOrCreateSubrange(int64_t Lo, int64_t Hi) {
Devang Patele4b27562009-08-28 23:24:31 +0000654 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +0000655 GetTagConstant(dwarf::DW_TAG_subrange_type),
Owen Anderson1d0be152009-08-13 21:58:54 +0000656 ConstantInt::get(Type::getInt64Ty(VMContext), Lo),
657 ConstantInt::get(Type::getInt64Ty(VMContext), Hi)
Chris Lattnera45664f2008-11-10 02:56:27 +0000658 };
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000659
Devang Patele4b27562009-08-28 23:24:31 +0000660 return DISubrange(MDNode::get(VMContext, &Elts[0], 3));
Chris Lattnera45664f2008-11-10 02:56:27 +0000661}
662
663
664
665/// CreateCompileUnit - Create a new descriptor for the specified compile
666/// unit. Note that this does not unique compile units within the module.
667DICompileUnit DIFactory::CreateCompileUnit(unsigned LangID,
Devang Patel65dbc902009-11-25 17:36:49 +0000668 StringRef Filename,
669 StringRef Directory,
670 StringRef Producer,
Devang Pateldd9db662009-01-30 18:20:31 +0000671 bool isMain,
Devang Patel3b64c6b2009-01-23 22:33:47 +0000672 bool isOptimized,
Devang Patel65dbc902009-11-25 17:36:49 +0000673 StringRef Flags,
Devang Patel13319ce2009-02-17 22:43:44 +0000674 unsigned RunTimeVer) {
Devang Patele4b27562009-08-28 23:24:31 +0000675 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +0000676 GetTagConstant(dwarf::DW_TAG_compile_unit),
Devang Patele4b27562009-08-28 23:24:31 +0000677 llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
Owen Anderson1d0be152009-08-13 21:58:54 +0000678 ConstantInt::get(Type::getInt32Ty(VMContext), LangID),
Devang Patele4b27562009-08-28 23:24:31 +0000679 MDString::get(VMContext, Filename),
680 MDString::get(VMContext, Directory),
681 MDString::get(VMContext, Producer),
Owen Anderson1d0be152009-08-13 21:58:54 +0000682 ConstantInt::get(Type::getInt1Ty(VMContext), isMain),
683 ConstantInt::get(Type::getInt1Ty(VMContext), isOptimized),
Devang Patele4b27562009-08-28 23:24:31 +0000684 MDString::get(VMContext, Flags),
Owen Anderson1d0be152009-08-13 21:58:54 +0000685 ConstantInt::get(Type::getInt32Ty(VMContext), RunTimeVer)
Chris Lattnera45664f2008-11-10 02:56:27 +0000686 };
Devang Patele4b27562009-08-28 23:24:31 +0000687
688 return DICompileUnit(MDNode::get(VMContext, &Elts[0], 10));
Chris Lattnera45664f2008-11-10 02:56:27 +0000689}
690
691/// CreateEnumerator - Create a single enumerator value.
Devang Patel65dbc902009-11-25 17:36:49 +0000692DIEnumerator DIFactory::CreateEnumerator(StringRef Name, uint64_t Val){
Devang Patele4b27562009-08-28 23:24:31 +0000693 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +0000694 GetTagConstant(dwarf::DW_TAG_enumerator),
Devang Patele4b27562009-08-28 23:24:31 +0000695 MDString::get(VMContext, Name),
Owen Anderson1d0be152009-08-13 21:58:54 +0000696 ConstantInt::get(Type::getInt64Ty(VMContext), Val)
Chris Lattnera45664f2008-11-10 02:56:27 +0000697 };
Devang Patele4b27562009-08-28 23:24:31 +0000698 return DIEnumerator(MDNode::get(VMContext, &Elts[0], 3));
Chris Lattnera45664f2008-11-10 02:56:27 +0000699}
700
701
702/// CreateBasicType - Create a basic type like int, float, etc.
703DIBasicType DIFactory::CreateBasicType(DIDescriptor Context,
Devang Patel65dbc902009-11-25 17:36:49 +0000704 StringRef Name,
Chris Lattnera45664f2008-11-10 02:56:27 +0000705 DICompileUnit CompileUnit,
706 unsigned LineNumber,
707 uint64_t SizeInBits,
708 uint64_t AlignInBits,
709 uint64_t OffsetInBits, unsigned Flags,
Devang Pateldd9db662009-01-30 18:20:31 +0000710 unsigned Encoding) {
Devang Patele4b27562009-08-28 23:24:31 +0000711 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +0000712 GetTagConstant(dwarf::DW_TAG_base_type),
Devang Patele4b27562009-08-28 23:24:31 +0000713 Context.getNode(),
714 MDString::get(VMContext, Name),
715 CompileUnit.getNode(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000716 ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
717 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits),
718 ConstantInt::get(Type::getInt64Ty(VMContext), AlignInBits),
719 ConstantInt::get(Type::getInt64Ty(VMContext), OffsetInBits),
720 ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
721 ConstantInt::get(Type::getInt32Ty(VMContext), Encoding)
Chris Lattnera45664f2008-11-10 02:56:27 +0000722 };
Devang Patele4b27562009-08-28 23:24:31 +0000723 return DIBasicType(MDNode::get(VMContext, &Elts[0], 10));
Chris Lattnera45664f2008-11-10 02:56:27 +0000724}
725
Devang Patelac16d442009-10-26 16:54:35 +0000726
727/// CreateBasicType - Create a basic type like int, float, etc.
728DIBasicType DIFactory::CreateBasicTypeEx(DIDescriptor Context,
Devang Patel65dbc902009-11-25 17:36:49 +0000729 StringRef Name,
Devang Patelac16d442009-10-26 16:54:35 +0000730 DICompileUnit CompileUnit,
731 unsigned LineNumber,
732 Constant *SizeInBits,
733 Constant *AlignInBits,
734 Constant *OffsetInBits, unsigned Flags,
735 unsigned Encoding) {
736 Value *Elts[] = {
737 GetTagConstant(dwarf::DW_TAG_base_type),
738 Context.getNode(),
739 MDString::get(VMContext, Name),
740 CompileUnit.getNode(),
741 ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
742 SizeInBits,
743 AlignInBits,
744 OffsetInBits,
745 ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
746 ConstantInt::get(Type::getInt32Ty(VMContext), Encoding)
747 };
748 return DIBasicType(MDNode::get(VMContext, &Elts[0], 10));
749}
750
751
Chris Lattnera45664f2008-11-10 02:56:27 +0000752/// CreateDerivedType - Create a derived type like const qualified type,
753/// pointer, typedef, etc.
754DIDerivedType DIFactory::CreateDerivedType(unsigned Tag,
755 DIDescriptor Context,
Devang Patel65dbc902009-11-25 17:36:49 +0000756 StringRef Name,
Chris Lattnera45664f2008-11-10 02:56:27 +0000757 DICompileUnit CompileUnit,
758 unsigned LineNumber,
759 uint64_t SizeInBits,
760 uint64_t AlignInBits,
761 uint64_t OffsetInBits,
762 unsigned Flags,
Devang Pateldd9db662009-01-30 18:20:31 +0000763 DIType DerivedFrom) {
Devang Patele4b27562009-08-28 23:24:31 +0000764 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +0000765 GetTagConstant(Tag),
Devang Patele4b27562009-08-28 23:24:31 +0000766 Context.getNode(),
767 MDString::get(VMContext, Name),
768 CompileUnit.getNode(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000769 ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
770 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits),
771 ConstantInt::get(Type::getInt64Ty(VMContext), AlignInBits),
772 ConstantInt::get(Type::getInt64Ty(VMContext), OffsetInBits),
773 ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
Devang Patele4b27562009-08-28 23:24:31 +0000774 DerivedFrom.getNode(),
Chris Lattnera45664f2008-11-10 02:56:27 +0000775 };
Devang Patele4b27562009-08-28 23:24:31 +0000776 return DIDerivedType(MDNode::get(VMContext, &Elts[0], 10));
Chris Lattnera45664f2008-11-10 02:56:27 +0000777}
778
Devang Patelac16d442009-10-26 16:54:35 +0000779
780/// CreateDerivedType - Create a derived type like const qualified type,
781/// pointer, typedef, etc.
782DIDerivedType DIFactory::CreateDerivedTypeEx(unsigned Tag,
783 DIDescriptor Context,
Devang Patel65dbc902009-11-25 17:36:49 +0000784 StringRef Name,
Devang Patelac16d442009-10-26 16:54:35 +0000785 DICompileUnit CompileUnit,
786 unsigned LineNumber,
787 Constant *SizeInBits,
788 Constant *AlignInBits,
789 Constant *OffsetInBits,
790 unsigned Flags,
791 DIType DerivedFrom) {
792 Value *Elts[] = {
793 GetTagConstant(Tag),
794 Context.getNode(),
795 MDString::get(VMContext, Name),
796 CompileUnit.getNode(),
797 ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
798 SizeInBits,
799 AlignInBits,
800 OffsetInBits,
801 ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
802 DerivedFrom.getNode(),
803 };
804 return DIDerivedType(MDNode::get(VMContext, &Elts[0], 10));
805}
806
807
Chris Lattnera45664f2008-11-10 02:56:27 +0000808/// CreateCompositeType - Create a composite type like array, struct, etc.
809DICompositeType DIFactory::CreateCompositeType(unsigned Tag,
810 DIDescriptor Context,
Devang Patel65dbc902009-11-25 17:36:49 +0000811 StringRef Name,
Chris Lattnera45664f2008-11-10 02:56:27 +0000812 DICompileUnit CompileUnit,
813 unsigned LineNumber,
814 uint64_t SizeInBits,
815 uint64_t AlignInBits,
816 uint64_t OffsetInBits,
817 unsigned Flags,
818 DIType DerivedFrom,
Devang Patel13319ce2009-02-17 22:43:44 +0000819 DIArray Elements,
820 unsigned RuntimeLang) {
Owen Andersone277fed2009-07-07 16:31:25 +0000821
Devang Patele4b27562009-08-28 23:24:31 +0000822 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +0000823 GetTagConstant(Tag),
Devang Patele4b27562009-08-28 23:24:31 +0000824 Context.getNode(),
825 MDString::get(VMContext, Name),
826 CompileUnit.getNode(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000827 ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
828 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits),
829 ConstantInt::get(Type::getInt64Ty(VMContext), AlignInBits),
830 ConstantInt::get(Type::getInt64Ty(VMContext), OffsetInBits),
831 ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
Devang Patele4b27562009-08-28 23:24:31 +0000832 DerivedFrom.getNode(),
833 Elements.getNode(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000834 ConstantInt::get(Type::getInt32Ty(VMContext), RuntimeLang)
Chris Lattnera45664f2008-11-10 02:56:27 +0000835 };
Devang Patele4b27562009-08-28 23:24:31 +0000836 return DICompositeType(MDNode::get(VMContext, &Elts[0], 12));
Chris Lattnera45664f2008-11-10 02:56:27 +0000837}
838
839
Devang Patelac16d442009-10-26 16:54:35 +0000840/// CreateCompositeType - Create a composite type like array, struct, etc.
841DICompositeType DIFactory::CreateCompositeTypeEx(unsigned Tag,
842 DIDescriptor Context,
Devang Patel65dbc902009-11-25 17:36:49 +0000843 StringRef Name,
Devang Patelac16d442009-10-26 16:54:35 +0000844 DICompileUnit CompileUnit,
845 unsigned LineNumber,
846 Constant *SizeInBits,
847 Constant *AlignInBits,
848 Constant *OffsetInBits,
849 unsigned Flags,
850 DIType DerivedFrom,
851 DIArray Elements,
852 unsigned RuntimeLang) {
853
854 Value *Elts[] = {
855 GetTagConstant(Tag),
856 Context.getNode(),
857 MDString::get(VMContext, Name),
858 CompileUnit.getNode(),
859 ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
860 SizeInBits,
861 AlignInBits,
862 OffsetInBits,
863 ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
864 DerivedFrom.getNode(),
865 Elements.getNode(),
866 ConstantInt::get(Type::getInt32Ty(VMContext), RuntimeLang)
867 };
868 return DICompositeType(MDNode::get(VMContext, &Elts[0], 12));
869}
870
871
Chris Lattnera45664f2008-11-10 02:56:27 +0000872/// CreateSubprogram - Create a new descriptor for the specified subprogram.
873/// See comments in DISubprogram for descriptions of these fields. This
874/// method does not unique the generated descriptors.
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000875DISubprogram DIFactory::CreateSubprogram(DIDescriptor Context,
Devang Patel65dbc902009-11-25 17:36:49 +0000876 StringRef Name,
877 StringRef DisplayName,
878 StringRef LinkageName,
Chris Lattnera45664f2008-11-10 02:56:27 +0000879 DICompileUnit CompileUnit,
880 unsigned LineNo, DIType Type,
881 bool isLocalToUnit,
Devang Patel5d11eb02009-12-03 19:11:07 +0000882 bool isDefinition,
883 unsigned VK, unsigned VIndex,
884 DIType ContainingType) {
Devang Patel854967e2008-12-17 22:39:29 +0000885
Devang Patele4b27562009-08-28 23:24:31 +0000886 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +0000887 GetTagConstant(dwarf::DW_TAG_subprogram),
Devang Patele4b27562009-08-28 23:24:31 +0000888 llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
889 Context.getNode(),
890 MDString::get(VMContext, Name),
891 MDString::get(VMContext, DisplayName),
892 MDString::get(VMContext, LinkageName),
893 CompileUnit.getNode(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000894 ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
Devang Patele4b27562009-08-28 23:24:31 +0000895 Type.getNode(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000896 ConstantInt::get(Type::getInt1Ty(VMContext), isLocalToUnit),
Devang Patel5d11eb02009-12-03 19:11:07 +0000897 ConstantInt::get(Type::getInt1Ty(VMContext), isDefinition),
898 ConstantInt::get(Type::getInt32Ty(VMContext), (unsigned)VK),
899 ConstantInt::get(Type::getInt32Ty(VMContext), VIndex),
900 ContainingType.getNode()
Chris Lattnera45664f2008-11-10 02:56:27 +0000901 };
Devang Patel5d11eb02009-12-03 19:11:07 +0000902 return DISubprogram(MDNode::get(VMContext, &Elts[0], 14));
Chris Lattnera45664f2008-11-10 02:56:27 +0000903}
904
Devang Patele3a18de2009-12-01 23:09:02 +0000905/// CreateSubprogramDefinition - Create new subprogram descriptor for the
906/// given declaration.
907DISubprogram DIFactory::CreateSubprogramDefinition(DISubprogram &SPDeclaration) {
908 if (SPDeclaration.isDefinition())
909 return DISubprogram(SPDeclaration.getNode());
910
911 MDNode *DeclNode = SPDeclaration.getNode();
912 Value *Elts[] = {
913 GetTagConstant(dwarf::DW_TAG_subprogram),
914 llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
915 DeclNode->getElement(2), // Context
916 DeclNode->getElement(3), // Name
917 DeclNode->getElement(4), // DisplayName
918 DeclNode->getElement(5), // LinkageName
919 DeclNode->getElement(6), // CompileUnit
920 DeclNode->getElement(7), // LineNo
921 DeclNode->getElement(8), // Type
922 DeclNode->getElement(9), // isLocalToUnit
Devang Patel5d11eb02009-12-03 19:11:07 +0000923 ConstantInt::get(Type::getInt1Ty(VMContext), true),
924 DeclNode->getElement(11), // Virtuality
925 DeclNode->getElement(12), // VIndex
926 DeclNode->getElement(13) // Containting Type
Devang Patele3a18de2009-12-01 23:09:02 +0000927 };
Devang Patel5d11eb02009-12-03 19:11:07 +0000928 return DISubprogram(MDNode::get(VMContext, &Elts[0], 14));
Devang Patele3a18de2009-12-01 23:09:02 +0000929}
930
Chris Lattnera45664f2008-11-10 02:56:27 +0000931/// CreateGlobalVariable - Create a new descriptor for the specified global.
932DIGlobalVariable
Devang Patel65dbc902009-11-25 17:36:49 +0000933DIFactory::CreateGlobalVariable(DIDescriptor Context, StringRef Name,
934 StringRef DisplayName,
935 StringRef LinkageName,
Chris Lattnera45664f2008-11-10 02:56:27 +0000936 DICompileUnit CompileUnit,
937 unsigned LineNo, DIType Type,bool isLocalToUnit,
Devang Pateldd9db662009-01-30 18:20:31 +0000938 bool isDefinition, llvm::GlobalVariable *Val) {
Daniel Dunbarf612ff62009-09-19 20:40:05 +0000939 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +0000940 GetTagConstant(dwarf::DW_TAG_variable),
Devang Patele4b27562009-08-28 23:24:31 +0000941 llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
942 Context.getNode(),
943 MDString::get(VMContext, Name),
944 MDString::get(VMContext, DisplayName),
945 MDString::get(VMContext, LinkageName),
946 CompileUnit.getNode(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000947 ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
Devang Patele4b27562009-08-28 23:24:31 +0000948 Type.getNode(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000949 ConstantInt::get(Type::getInt1Ty(VMContext), isLocalToUnit),
950 ConstantInt::get(Type::getInt1Ty(VMContext), isDefinition),
Devang Patele4b27562009-08-28 23:24:31 +0000951 Val
Chris Lattnera45664f2008-11-10 02:56:27 +0000952 };
Devang Patele4b27562009-08-28 23:24:31 +0000953
954 Value *const *Vs = &Elts[0];
955 MDNode *Node = MDNode::get(VMContext,Vs, 12);
956
957 // Create a named metadata so that we do not lose this mdnode.
958 NamedMDNode *NMD = M.getOrInsertNamedMetadata("llvm.dbg.gv");
959 NMD->addElement(Node);
960
961 return DIGlobalVariable(Node);
Chris Lattnera45664f2008-11-10 02:56:27 +0000962}
963
964
965/// CreateVariable - Create a new descriptor for the specified variable.
966DIVariable DIFactory::CreateVariable(unsigned Tag, DIDescriptor Context,
Devang Patel65dbc902009-11-25 17:36:49 +0000967 StringRef Name,
Chris Lattnera45664f2008-11-10 02:56:27 +0000968 DICompileUnit CompileUnit, unsigned LineNo,
Devang Pateldd9db662009-01-30 18:20:31 +0000969 DIType Type) {
Devang Patele4b27562009-08-28 23:24:31 +0000970 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +0000971 GetTagConstant(Tag),
Devang Patele4b27562009-08-28 23:24:31 +0000972 Context.getNode(),
973 MDString::get(VMContext, Name),
974 CompileUnit.getNode(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000975 ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
Devang Patele4b27562009-08-28 23:24:31 +0000976 Type.getNode(),
Chris Lattnera45664f2008-11-10 02:56:27 +0000977 };
Devang Patele4b27562009-08-28 23:24:31 +0000978 return DIVariable(MDNode::get(VMContext, &Elts[0], 6));
Chris Lattnera45664f2008-11-10 02:56:27 +0000979}
980
981
Mike Stump3e4c9bd2009-09-30 00:08:22 +0000982/// CreateComplexVariable - Create a new descriptor for the specified variable
983/// which has a complex address expression for its address.
984DIVariable DIFactory::CreateComplexVariable(unsigned Tag, DIDescriptor Context,
985 const std::string &Name,
986 DICompileUnit CompileUnit,
987 unsigned LineNo,
988 DIType Type, SmallVector<Value *, 9> &addr) {
989 SmallVector<Value *, 9> Elts;
990 Elts.push_back(GetTagConstant(Tag));
991 Elts.push_back(Context.getNode());
992 Elts.push_back(MDString::get(VMContext, Name));
993 Elts.push_back(CompileUnit.getNode());
994 Elts.push_back(ConstantInt::get(Type::getInt32Ty(VMContext), LineNo));
995 Elts.push_back(Type.getNode());
996 Elts.insert(Elts.end(), addr.begin(), addr.end());
997
998 return DIVariable(MDNode::get(VMContext, &Elts[0], 6+addr.size()));
999}
1000
1001
Chris Lattnera45664f2008-11-10 02:56:27 +00001002/// CreateBlock - This creates a descriptor for a lexical block with the
Owen Anderson99035272009-07-07 17:12:53 +00001003/// specified parent VMContext.
Devang Patel5e005d82009-08-31 22:00:15 +00001004DILexicalBlock DIFactory::CreateLexicalBlock(DIDescriptor Context) {
Devang Patele4b27562009-08-28 23:24:31 +00001005 Value *Elts[] = {
Chris Lattnera45664f2008-11-10 02:56:27 +00001006 GetTagConstant(dwarf::DW_TAG_lexical_block),
Devang Patele4b27562009-08-28 23:24:31 +00001007 Context.getNode()
Chris Lattnera45664f2008-11-10 02:56:27 +00001008 };
Devang Patel5e005d82009-08-31 22:00:15 +00001009 return DILexicalBlock(MDNode::get(VMContext, &Elts[0], 2));
Chris Lattnera45664f2008-11-10 02:56:27 +00001010}
1011
Devang Patel6404e4e2009-12-15 19:16:48 +00001012/// CreateNameSpace - This creates new descriptor for a namespace
1013/// with the specified parent context.
1014DINameSpace DIFactory::CreateNameSpace(DIDescriptor Context, StringRef Name,
1015 DICompileUnit CompileUnit,
1016 unsigned LineNo) {
1017 Value *Elts[] = {
1018 GetTagConstant(dwarf::DW_TAG_namespace),
1019 Context.getNode(),
1020 MDString::get(VMContext, Name),
1021 CompileUnit.getNode(),
1022 ConstantInt::get(Type::getInt32Ty(VMContext), LineNo)
1023 };
1024 return DINameSpace(MDNode::get(VMContext, &Elts[0], 5));
1025}
1026
Devang Patelf98d8fe2009-09-01 01:14:15 +00001027/// CreateLocation - Creates a debug info location.
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001028DILocation DIFactory::CreateLocation(unsigned LineNo, unsigned ColumnNo,
Daniel Dunbara279bc32009-09-20 02:20:51 +00001029 DIScope S, DILocation OrigLoc) {
Devang Patelf98d8fe2009-09-01 01:14:15 +00001030 Value *Elts[] = {
1031 ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
1032 ConstantInt::get(Type::getInt32Ty(VMContext), ColumnNo),
1033 S.getNode(),
1034 OrigLoc.getNode(),
1035 };
1036 return DILocation(MDNode::get(VMContext, &Elts[0], 4));
1037}
1038
Devang Patele54a5e82009-11-23 19:11:20 +00001039/// CreateLocation - Creates a debug info location.
1040DILocation DIFactory::CreateLocation(unsigned LineNo, unsigned ColumnNo,
1041 DIScope S, MDNode *OrigLoc) {
1042 Value *Elts[] = {
1043 ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
1044 ConstantInt::get(Type::getInt32Ty(VMContext), ColumnNo),
1045 S.getNode(),
1046 OrigLoc
1047 };
1048 return DILocation(MDNode::get(VMContext, &Elts[0], 4));
1049}
Chris Lattnera45664f2008-11-10 02:56:27 +00001050
1051//===----------------------------------------------------------------------===//
1052// DIFactory: Routines for inserting code into a function
1053//===----------------------------------------------------------------------===//
1054
Chris Lattnera45664f2008-11-10 02:56:27 +00001055/// InsertDeclare - Insert a new llvm.dbg.declare intrinsic call.
Devang Patel6daf99b2009-11-10 22:05:35 +00001056Instruction *DIFactory::InsertDeclare(Value *Storage, DIVariable D,
Devang Patel3ddf7042009-11-13 02:27:33 +00001057 Instruction *InsertBefore) {
1058 // Cast the storage to a {}* for the call to llvm.dbg.declare.
1059 Storage = new BitCastInst(Storage, EmptyStructPtr, "", InsertBefore);
1060
Chris Lattnera45664f2008-11-10 02:56:27 +00001061 if (!DeclareFn)
Bill Wendlingdc817b62009-05-14 18:26:15 +00001062 DeclareFn = Intrinsic::getDeclaration(&M, Intrinsic::dbg_declare);
1063
Devang Patele4b27562009-08-28 23:24:31 +00001064 Value *Args[] = { Storage, D.getNode() };
Devang Patel6daf99b2009-11-10 22:05:35 +00001065 return CallInst::Create(DeclareFn, Args, Args+2, "", InsertBefore);
Mike Stumpe4250392009-10-01 22:08:58 +00001066}
1067
1068/// InsertDeclare - Insert a new llvm.dbg.declare intrinsic call.
Devang Patel6daf99b2009-11-10 22:05:35 +00001069Instruction *DIFactory::InsertDeclare(Value *Storage, DIVariable D,
Devang Patel3ddf7042009-11-13 02:27:33 +00001070 BasicBlock *InsertAtEnd) {
1071 // Cast the storage to a {}* for the call to llvm.dbg.declare.
1072 Storage = new BitCastInst(Storage, EmptyStructPtr, "", InsertAtEnd);
1073
Mike Stumpe4250392009-10-01 22:08:58 +00001074 if (!DeclareFn)
1075 DeclareFn = Intrinsic::getDeclaration(&M, Intrinsic::dbg_declare);
1076
1077 Value *Args[] = { Storage, D.getNode() };
Devang Patel6daf99b2009-11-10 22:05:35 +00001078 return CallInst::Create(DeclareFn, Args, Args+2, "", InsertAtEnd);
Chris Lattnera45664f2008-11-10 02:56:27 +00001079}
Torok Edwin620f2802008-12-16 09:07:36 +00001080
Victor Hernandezc59b3352009-12-07 21:54:43 +00001081/// InsertDbgValueIntrinsic - Insert a new llvm.dbg.value intrinsic call.
1082Instruction *DIFactory::InsertDbgValueIntrinsic(Value *V, Value *Offset,
1083 DIVariable D,
1084 Instruction *InsertBefore) {
Victor Hernandez2f9dac72009-12-07 19:36:34 +00001085 assert(V && "no value passed to dbg.value");
1086 assert(Offset->getType() == Type::getInt64Ty(V->getContext()) &&
1087 "offset must be i64");
1088 if (!ValueFn)
1089 ValueFn = Intrinsic::getDeclaration(&M, Intrinsic::dbg_value);
1090
1091 Value *Elts[] = { V };
1092 Value *Args[] = { MDNode::get(V->getContext(), Elts, 1), Offset,
1093 D.getNode() };
1094 return CallInst::Create(ValueFn, Args, Args+3, "", InsertBefore);
1095}
1096
Victor Hernandezc59b3352009-12-07 21:54:43 +00001097/// InsertDbgValueIntrinsic - Insert a new llvm.dbg.value intrinsic call.
1098Instruction *DIFactory::InsertDbgValueIntrinsic(Value *V, Value *Offset,
1099 DIVariable D,
1100 BasicBlock *InsertAtEnd) {
Victor Hernandez2f9dac72009-12-07 19:36:34 +00001101 assert(V && "no value passed to dbg.value");
1102 assert(Offset->getType() == Type::getInt64Ty(V->getContext()) &&
1103 "offset must be i64");
1104 if (!ValueFn)
1105 ValueFn = Intrinsic::getDeclaration(&M, Intrinsic::dbg_value);
1106
1107 Value *Elts[] = { V };
1108 Value *Args[] = { MDNode::get(V->getContext(), Elts, 1), Offset,
1109 D.getNode() };
1110 return CallInst::Create(ValueFn, Args, Args+3, "", InsertAtEnd);
1111}
Devang Patele4b27562009-08-28 23:24:31 +00001112
Devang Pateld2f79a12009-07-28 19:55:13 +00001113//===----------------------------------------------------------------------===//
Devang Patel98c65172009-07-30 18:25:15 +00001114// DebugInfoFinder implementations.
Devang Pateld2f79a12009-07-28 19:55:13 +00001115//===----------------------------------------------------------------------===//
1116
Devang Patel98c65172009-07-30 18:25:15 +00001117/// processModule - Process entire module and collect debug info.
1118void DebugInfoFinder::processModule(Module &M) {
Devang Patele4b27562009-08-28 23:24:31 +00001119
Devang Patelbeab41b2009-10-07 22:04:08 +00001120 MetadataContext &TheMetadata = M.getContext().getMetadata();
1121 unsigned MDDbgKind = TheMetadata.getMDKind("dbg");
Devang Patel70d75ca2009-11-12 19:02:56 +00001122
Devang Pateld2f79a12009-07-28 19:55:13 +00001123 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
1124 for (Function::iterator FI = (*I).begin(), FE = (*I).end(); FI != FE; ++FI)
1125 for (BasicBlock::iterator BI = (*FI).begin(), BE = (*FI).end(); BI != BE;
1126 ++BI) {
Devang Patel70d75ca2009-11-12 19:02:56 +00001127 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(BI))
Devang Patelb4d31302009-07-31 18:18:52 +00001128 processDeclare(DDI);
Devang Patel6daf99b2009-11-10 22:05:35 +00001129 else if (MDDbgKind)
1130 if (MDNode *L = TheMetadata.getMD(MDDbgKind, BI))
1131 processLocation(DILocation(L));
Devang Pateld2f79a12009-07-28 19:55:13 +00001132 }
Devang Patele4b27562009-08-28 23:24:31 +00001133
1134 NamedMDNode *NMD = M.getNamedMetadata("llvm.dbg.gv");
1135 if (!NMD)
1136 return;
1137
1138 for (unsigned i = 0, e = NMD->getNumElements(); i != e; ++i) {
1139 DIGlobalVariable DIG(cast<MDNode>(NMD->getElement(i)));
Devang Pateld2f79a12009-07-28 19:55:13 +00001140 if (addGlobalVariable(DIG)) {
1141 addCompileUnit(DIG.getCompileUnit());
Devang Patel98c65172009-07-30 18:25:15 +00001142 processType(DIG.getType());
Devang Pateld2f79a12009-07-28 19:55:13 +00001143 }
1144 }
1145}
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001146
Devang Patel6daf99b2009-11-10 22:05:35 +00001147/// processLocation - Process DILocation.
1148void DebugInfoFinder::processLocation(DILocation Loc) {
1149 if (Loc.isNull()) return;
1150 DIScope S(Loc.getScope().getNode());
1151 if (S.isNull()) return;
1152 if (S.isCompileUnit())
1153 addCompileUnit(DICompileUnit(S.getNode()));
1154 else if (S.isSubprogram())
1155 processSubprogram(DISubprogram(S.getNode()));
1156 else if (S.isLexicalBlock())
1157 processLexicalBlock(DILexicalBlock(S.getNode()));
1158 processLocation(Loc.getOrigLocation());
1159}
1160
Devang Patel98c65172009-07-30 18:25:15 +00001161/// processType - Process DIType.
1162void DebugInfoFinder::processType(DIType DT) {
Devang Patel72bcdb62009-08-10 22:09:58 +00001163 if (!addType(DT))
Devang Pateld2f79a12009-07-28 19:55:13 +00001164 return;
1165
1166 addCompileUnit(DT.getCompileUnit());
Devang Patel6ceea332009-08-31 18:49:10 +00001167 if (DT.isCompositeType()) {
Devang Patele4b27562009-08-28 23:24:31 +00001168 DICompositeType DCT(DT.getNode());
Devang Patel98c65172009-07-30 18:25:15 +00001169 processType(DCT.getTypeDerivedFrom());
Devang Pateld2f79a12009-07-28 19:55:13 +00001170 DIArray DA = DCT.getTypeArray();
1171 if (!DA.isNull())
1172 for (unsigned i = 0, e = DA.getNumElements(); i != e; ++i) {
1173 DIDescriptor D = DA.getElement(i);
Devang Patele4b27562009-08-28 23:24:31 +00001174 DIType TypeE = DIType(D.getNode());
Devang Pateld2f79a12009-07-28 19:55:13 +00001175 if (!TypeE.isNull())
Devang Patel98c65172009-07-30 18:25:15 +00001176 processType(TypeE);
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001177 else
Devang Patele4b27562009-08-28 23:24:31 +00001178 processSubprogram(DISubprogram(D.getNode()));
Devang Pateld2f79a12009-07-28 19:55:13 +00001179 }
Devang Patel6ceea332009-08-31 18:49:10 +00001180 } else if (DT.isDerivedType()) {
Devang Patele4b27562009-08-28 23:24:31 +00001181 DIDerivedType DDT(DT.getNode());
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001182 if (!DDT.isNull())
Devang Patel98c65172009-07-30 18:25:15 +00001183 processType(DDT.getTypeDerivedFrom());
Devang Pateld2f79a12009-07-28 19:55:13 +00001184 }
1185}
1186
Devang Patelbeab41b2009-10-07 22:04:08 +00001187/// processLexicalBlock
1188void DebugInfoFinder::processLexicalBlock(DILexicalBlock LB) {
1189 if (LB.isNull())
1190 return;
1191 DIScope Context = LB.getContext();
1192 if (Context.isLexicalBlock())
1193 return processLexicalBlock(DILexicalBlock(Context.getNode()));
1194 else
1195 return processSubprogram(DISubprogram(Context.getNode()));
1196}
1197
Devang Patel98c65172009-07-30 18:25:15 +00001198/// processSubprogram - Process DISubprogram.
1199void DebugInfoFinder::processSubprogram(DISubprogram SP) {
Devang Patele802f1c2009-07-30 17:30:23 +00001200 if (SP.isNull())
1201 return;
Devang Pateld2f79a12009-07-28 19:55:13 +00001202 if (!addSubprogram(SP))
1203 return;
1204 addCompileUnit(SP.getCompileUnit());
Devang Patel98c65172009-07-30 18:25:15 +00001205 processType(SP.getType());
Devang Pateld2f79a12009-07-28 19:55:13 +00001206}
1207
Devang Patelb4d31302009-07-31 18:18:52 +00001208/// processDeclare - Process DbgDeclareInst.
1209void DebugInfoFinder::processDeclare(DbgDeclareInst *DDI) {
Devang Patele4b27562009-08-28 23:24:31 +00001210 DIVariable DV(cast<MDNode>(DDI->getVariable()));
Devang Patelb4d31302009-07-31 18:18:52 +00001211 if (DV.isNull())
1212 return;
1213
Devang Patele4b27562009-08-28 23:24:31 +00001214 if (!NodesSeen.insert(DV.getNode()))
Devang Patelb4d31302009-07-31 18:18:52 +00001215 return;
1216
1217 addCompileUnit(DV.getCompileUnit());
1218 processType(DV.getType());
1219}
1220
Devang Patel72bcdb62009-08-10 22:09:58 +00001221/// addType - Add type into Tys.
1222bool DebugInfoFinder::addType(DIType DT) {
1223 if (DT.isNull())
1224 return false;
1225
Devang Patele4b27562009-08-28 23:24:31 +00001226 if (!NodesSeen.insert(DT.getNode()))
Devang Patel72bcdb62009-08-10 22:09:58 +00001227 return false;
1228
Devang Patele4b27562009-08-28 23:24:31 +00001229 TYs.push_back(DT.getNode());
Devang Patel72bcdb62009-08-10 22:09:58 +00001230 return true;
1231}
1232
Devang Pateld2f79a12009-07-28 19:55:13 +00001233/// addCompileUnit - Add compile unit into CUs.
Devang Patel98c65172009-07-30 18:25:15 +00001234bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) {
Devang Pateld2f79a12009-07-28 19:55:13 +00001235 if (CU.isNull())
1236 return false;
1237
Devang Patele4b27562009-08-28 23:24:31 +00001238 if (!NodesSeen.insert(CU.getNode()))
Devang Pateld2f79a12009-07-28 19:55:13 +00001239 return false;
1240
Devang Patele4b27562009-08-28 23:24:31 +00001241 CUs.push_back(CU.getNode());
Devang Pateld2f79a12009-07-28 19:55:13 +00001242 return true;
1243}
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001244
Devang Pateld2f79a12009-07-28 19:55:13 +00001245/// addGlobalVariable - Add global variable into GVs.
Devang Patel98c65172009-07-30 18:25:15 +00001246bool DebugInfoFinder::addGlobalVariable(DIGlobalVariable DIG) {
Devang Pateld2f79a12009-07-28 19:55:13 +00001247 if (DIG.isNull())
1248 return false;
1249
Devang Patele4b27562009-08-28 23:24:31 +00001250 if (!NodesSeen.insert(DIG.getNode()))
Devang Pateld2f79a12009-07-28 19:55:13 +00001251 return false;
1252
Devang Patele4b27562009-08-28 23:24:31 +00001253 GVs.push_back(DIG.getNode());
Devang Pateld2f79a12009-07-28 19:55:13 +00001254 return true;
1255}
1256
1257// addSubprogram - Add subprgoram into SPs.
Devang Patel98c65172009-07-30 18:25:15 +00001258bool DebugInfoFinder::addSubprogram(DISubprogram SP) {
Devang Pateld2f79a12009-07-28 19:55:13 +00001259 if (SP.isNull())
1260 return false;
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001261
Devang Patele4b27562009-08-28 23:24:31 +00001262 if (!NodesSeen.insert(SP.getNode()))
Devang Pateld2f79a12009-07-28 19:55:13 +00001263 return false;
1264
Devang Patele4b27562009-08-28 23:24:31 +00001265 SPs.push_back(SP.getNode());
Devang Pateld2f79a12009-07-28 19:55:13 +00001266 return true;
1267}
1268
Torok Edwin620f2802008-12-16 09:07:36 +00001269namespace llvm {
Bill Wendlingdc817b62009-05-14 18:26:15 +00001270 /// findStopPoint - Find the stoppoint coressponding to this instruction, that
1271 /// is the stoppoint that dominates this instruction.
1272 const DbgStopPointInst *findStopPoint(const Instruction *Inst) {
Torok Edwin620f2802008-12-16 09:07:36 +00001273 if (const DbgStopPointInst *DSI = dyn_cast<DbgStopPointInst>(Inst))
1274 return DSI;
1275
1276 const BasicBlock *BB = Inst->getParent();
1277 BasicBlock::const_iterator I = Inst, B;
Bill Wendlingdc817b62009-05-14 18:26:15 +00001278 while (BB) {
Torok Edwin620f2802008-12-16 09:07:36 +00001279 B = BB->begin();
Bill Wendlingdc817b62009-05-14 18:26:15 +00001280
Torok Edwin620f2802008-12-16 09:07:36 +00001281 // A BB consisting only of a terminator can't have a stoppoint.
Bill Wendlingdc817b62009-05-14 18:26:15 +00001282 while (I != B) {
1283 --I;
1284 if (const DbgStopPointInst *DSI = dyn_cast<DbgStopPointInst>(I))
1285 return DSI;
Torok Edwin620f2802008-12-16 09:07:36 +00001286 }
Bill Wendlingdc817b62009-05-14 18:26:15 +00001287
1288 // This BB didn't have a stoppoint: if there is only one predecessor, look
1289 // for a stoppoint there. We could use getIDom(), but that would require
1290 // dominator info.
Torok Edwin620f2802008-12-16 09:07:36 +00001291 BB = I->getParent()->getUniquePredecessor();
1292 if (BB)
1293 I = BB->getTerminator();
Bill Wendlingdc817b62009-05-14 18:26:15 +00001294 }
1295
Torok Edwin620f2802008-12-16 09:07:36 +00001296 return 0;
1297 }
1298
Bill Wendlingdc817b62009-05-14 18:26:15 +00001299 /// findBBStopPoint - Find the stoppoint corresponding to first real
1300 /// (non-debug intrinsic) instruction in this Basic Block, and return the
1301 /// stoppoint for it.
1302 const DbgStopPointInst *findBBStopPoint(const BasicBlock *BB) {
1303 for(BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Torok Edwin620f2802008-12-16 09:07:36 +00001304 if (const DbgStopPointInst *DSI = dyn_cast<DbgStopPointInst>(I))
1305 return DSI;
Bill Wendlingdc817b62009-05-14 18:26:15 +00001306
1307 // Fallback to looking for stoppoint of unique predecessor. Useful if this
1308 // BB contains no stoppoints, but unique predecessor does.
Torok Edwin620f2802008-12-16 09:07:36 +00001309 BB = BB->getUniquePredecessor();
1310 if (BB)
1311 return findStopPoint(BB->getTerminator());
Bill Wendlingdc817b62009-05-14 18:26:15 +00001312
Torok Edwin620f2802008-12-16 09:07:36 +00001313 return 0;
1314 }
1315
Bill Wendlingdc817b62009-05-14 18:26:15 +00001316 Value *findDbgGlobalDeclare(GlobalVariable *V) {
Torok Edwinff7d0e92009-03-10 13:41:26 +00001317 const Module *M = V->getParent();
Devang Patele4b27562009-08-28 23:24:31 +00001318 NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv");
1319 if (!NMD)
1320 return 0;
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001321
Devang Patele4b27562009-08-28 23:24:31 +00001322 for (unsigned i = 0, e = NMD->getNumElements(); i != e; ++i) {
1323 DIGlobalVariable DIG(cast_or_null<MDNode>(NMD->getElement(i)));
1324 if (DIG.isNull())
1325 continue;
1326 if (DIG.getGlobal() == V)
1327 return DIG.getNode();
Torok Edwinff7d0e92009-03-10 13:41:26 +00001328 }
Torok Edwinff7d0e92009-03-10 13:41:26 +00001329 return 0;
1330 }
1331
Bill Wendlingdc817b62009-05-14 18:26:15 +00001332 /// Finds the llvm.dbg.declare intrinsic corresponding to this value if any.
Torok Edwin620f2802008-12-16 09:07:36 +00001333 /// It looks through pointer casts too.
Bill Wendlingdc817b62009-05-14 18:26:15 +00001334 const DbgDeclareInst *findDbgDeclare(const Value *V, bool stripCasts) {
Torok Edwin620f2802008-12-16 09:07:36 +00001335 if (stripCasts) {
1336 V = V->stripPointerCasts();
Bill Wendlingdc817b62009-05-14 18:26:15 +00001337
Torok Edwin620f2802008-12-16 09:07:36 +00001338 // Look for the bitcast.
1339 for (Value::use_const_iterator I = V->use_begin(), E =V->use_end();
Bill Wendlingdc817b62009-05-14 18:26:15 +00001340 I != E; ++I)
Devang Patel94dfaec2009-10-29 18:20:34 +00001341 if (isa<BitCastInst>(I)) {
1342 const DbgDeclareInst *DDI = findDbgDeclare(*I, false);
1343 if (DDI) return DDI;
1344 }
Torok Edwin620f2802008-12-16 09:07:36 +00001345 return 0;
1346 }
1347
Bill Wendlingdc817b62009-05-14 18:26:15 +00001348 // Find llvm.dbg.declare among uses of the instruction.
Torok Edwin620f2802008-12-16 09:07:36 +00001349 for (Value::use_const_iterator I = V->use_begin(), E =V->use_end();
Bill Wendlingdc817b62009-05-14 18:26:15 +00001350 I != E; ++I)
Torok Edwin620f2802008-12-16 09:07:36 +00001351 if (const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I))
1352 return DDI;
Bill Wendlingdc817b62009-05-14 18:26:15 +00001353
Torok Edwin620f2802008-12-16 09:07:36 +00001354 return 0;
1355 }
Torok Edwinff7d0e92009-03-10 13:41:26 +00001356
Devang Patel5ccdd102009-09-29 18:40:58 +00001357bool getLocationInfo(const Value *V, std::string &DisplayName,
1358 std::string &Type, unsigned &LineNo, std::string &File,
Bill Wendlingdc817b62009-05-14 18:26:15 +00001359 std::string &Dir) {
Torok Edwinff7d0e92009-03-10 13:41:26 +00001360 DICompileUnit Unit;
1361 DIType TypeD;
Bill Wendlingdc817b62009-05-14 18:26:15 +00001362
Torok Edwinff7d0e92009-03-10 13:41:26 +00001363 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(const_cast<Value*>(V))) {
1364 Value *DIGV = findDbgGlobalDeclare(GV);
Bill Wendlingdc817b62009-05-14 18:26:15 +00001365 if (!DIGV) return false;
Devang Patele4b27562009-08-28 23:24:31 +00001366 DIGlobalVariable Var(cast<MDNode>(DIGV));
Bill Wendlingdc817b62009-05-14 18:26:15 +00001367
Devang Patel65dbc902009-11-25 17:36:49 +00001368 StringRef D = Var.getDisplayName();
1369 if (!D.empty())
Devang Patel5ccdd102009-09-29 18:40:58 +00001370 DisplayName = D;
Torok Edwinff7d0e92009-03-10 13:41:26 +00001371 LineNo = Var.getLineNumber();
1372 Unit = Var.getCompileUnit();
1373 TypeD = Var.getType();
1374 } else {
1375 const DbgDeclareInst *DDI = findDbgDeclare(V);
Bill Wendlingdc817b62009-05-14 18:26:15 +00001376 if (!DDI) return false;
Devang Patele4b27562009-08-28 23:24:31 +00001377 DIVariable Var(cast<MDNode>(DDI->getVariable()));
Bill Wendlingdc817b62009-05-14 18:26:15 +00001378
Devang Patel65dbc902009-11-25 17:36:49 +00001379 StringRef D = Var.getName();
1380 if (!D.empty())
Devang Patel5ccdd102009-09-29 18:40:58 +00001381 DisplayName = D;
Torok Edwinff7d0e92009-03-10 13:41:26 +00001382 LineNo = Var.getLineNumber();
1383 Unit = Var.getCompileUnit();
1384 TypeD = Var.getType();
1385 }
Bill Wendlingdc817b62009-05-14 18:26:15 +00001386
Devang Patel65dbc902009-11-25 17:36:49 +00001387 StringRef T = TypeD.getName();
1388 if (!T.empty())
Devang Patel5ccdd102009-09-29 18:40:58 +00001389 Type = T;
Devang Patel65dbc902009-11-25 17:36:49 +00001390 StringRef F = Unit.getFilename();
1391 if (!F.empty())
Devang Patel5ccdd102009-09-29 18:40:58 +00001392 File = F;
Devang Patel65dbc902009-11-25 17:36:49 +00001393 StringRef D = Unit.getDirectory();
1394 if (!D.empty())
Devang Patel5ccdd102009-09-29 18:40:58 +00001395 Dir = D;
Torok Edwinff7d0e92009-03-10 13:41:26 +00001396 return true;
1397 }
Devang Patel13e16b62009-06-26 01:49:18 +00001398
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001399 /// isValidDebugInfoIntrinsic - Return true if SPI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +00001400 /// info intrinsic.
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001401 bool isValidDebugInfoIntrinsic(DbgStopPointInst &SPI,
Devang Patel9e529c32009-07-02 01:15:24 +00001402 CodeGenOpt::Level OptLev) {
1403 return DIDescriptor::ValidDebugInfo(SPI.getContext(), OptLev);
1404 }
1405
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001406 /// isValidDebugInfoIntrinsic - Return true if FSI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +00001407 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +00001408 bool isValidDebugInfoIntrinsic(DbgFuncStartInst &FSI,
1409 CodeGenOpt::Level OptLev) {
1410 return DIDescriptor::ValidDebugInfo(FSI.getSubprogram(), OptLev);
1411 }
1412
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001413 /// isValidDebugInfoIntrinsic - Return true if RSI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +00001414 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +00001415 bool isValidDebugInfoIntrinsic(DbgRegionStartInst &RSI,
1416 CodeGenOpt::Level OptLev) {
1417 return DIDescriptor::ValidDebugInfo(RSI.getContext(), OptLev);
1418 }
1419
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001420 /// isValidDebugInfoIntrinsic - Return true if REI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +00001421 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +00001422 bool isValidDebugInfoIntrinsic(DbgRegionEndInst &REI,
1423 CodeGenOpt::Level OptLev) {
1424 return DIDescriptor::ValidDebugInfo(REI.getContext(), OptLev);
1425 }
1426
1427
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001428 /// isValidDebugInfoIntrinsic - Return true if DI is a valid debug
Devang Pateldfc85362009-07-02 17:17:03 +00001429 /// info intrinsic.
Devang Patel9e529c32009-07-02 01:15:24 +00001430 bool isValidDebugInfoIntrinsic(DbgDeclareInst &DI,
1431 CodeGenOpt::Level OptLev) {
1432 return DIDescriptor::ValidDebugInfo(DI.getVariable(), OptLev);
1433 }
1434
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001435 /// ExtractDebugLocation - Extract debug location information
Devang Patel9e529c32009-07-02 01:15:24 +00001436 /// from llvm.dbg.stoppoint intrinsic.
1437 DebugLoc ExtractDebugLocation(DbgStopPointInst &SPI,
Devang Patel9e529c32009-07-02 01:15:24 +00001438 DebugLocTracker &DebugLocInfo) {
1439 DebugLoc DL;
1440 Value *Context = SPI.getContext();
Devang Patel9e529c32009-07-02 01:15:24 +00001441
1442 // If this location is already tracked then use it.
Devang Patela1434042009-10-01 01:15:28 +00001443 DebugLocTuple Tuple(cast<MDNode>(Context), NULL, SPI.getLine(),
Devang Patel9e529c32009-07-02 01:15:24 +00001444 SPI.getColumn());
1445 DenseMap<DebugLocTuple, unsigned>::iterator II
1446 = DebugLocInfo.DebugIdMap.find(Tuple);
1447 if (II != DebugLocInfo.DebugIdMap.end())
1448 return DebugLoc::get(II->second);
1449
1450 // Add a new location entry.
1451 unsigned Id = DebugLocInfo.DebugLocations.size();
1452 DebugLocInfo.DebugLocations.push_back(Tuple);
1453 DebugLocInfo.DebugIdMap[Tuple] = Id;
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001454
Devang Patel9e529c32009-07-02 01:15:24 +00001455 return DebugLoc::get(Id);
1456 }
1457
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001458 /// ExtractDebugLocation - Extract debug location information
Devang Patel1b75f442009-09-16 18:20:05 +00001459 /// from DILocation.
1460 DebugLoc ExtractDebugLocation(DILocation &Loc,
1461 DebugLocTracker &DebugLocInfo) {
1462 DebugLoc DL;
1463 MDNode *Context = Loc.getScope().getNode();
Devang Patela1434042009-10-01 01:15:28 +00001464 MDNode *InlinedLoc = NULL;
1465 if (!Loc.getOrigLocation().isNull())
1466 InlinedLoc = Loc.getOrigLocation().getNode();
Devang Patel1b75f442009-09-16 18:20:05 +00001467 // If this location is already tracked then use it.
Devang Patela1434042009-10-01 01:15:28 +00001468 DebugLocTuple Tuple(Context, InlinedLoc, Loc.getLineNumber(),
Daniel Dunbara279bc32009-09-20 02:20:51 +00001469 Loc.getColumnNumber());
Devang Patel1b75f442009-09-16 18:20:05 +00001470 DenseMap<DebugLocTuple, unsigned>::iterator II
1471 = DebugLocInfo.DebugIdMap.find(Tuple);
1472 if (II != DebugLocInfo.DebugIdMap.end())
1473 return DebugLoc::get(II->second);
1474
1475 // Add a new location entry.
1476 unsigned Id = DebugLocInfo.DebugLocations.size();
1477 DebugLocInfo.DebugLocations.push_back(Tuple);
1478 DebugLocInfo.DebugIdMap[Tuple] = Id;
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001479
Devang Patel1b75f442009-09-16 18:20:05 +00001480 return DebugLoc::get(Id);
1481 }
1482
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001483 /// ExtractDebugLocation - Extract debug location information
Devang Patel9e529c32009-07-02 01:15:24 +00001484 /// from llvm.dbg.func_start intrinsic.
1485 DebugLoc ExtractDebugLocation(DbgFuncStartInst &FSI,
Devang Patel9e529c32009-07-02 01:15:24 +00001486 DebugLocTracker &DebugLocInfo) {
1487 DebugLoc DL;
1488 Value *SP = FSI.getSubprogram();
Devang Patel9e529c32009-07-02 01:15:24 +00001489
Devang Patele4b27562009-08-28 23:24:31 +00001490 DISubprogram Subprogram(cast<MDNode>(SP));
Devang Patel9e529c32009-07-02 01:15:24 +00001491 unsigned Line = Subprogram.getLineNumber();
1492 DICompileUnit CU(Subprogram.getCompileUnit());
1493
1494 // If this location is already tracked then use it.
Devang Patela1434042009-10-01 01:15:28 +00001495 DebugLocTuple Tuple(CU.getNode(), NULL, Line, /* Column */ 0);
Devang Patel9e529c32009-07-02 01:15:24 +00001496 DenseMap<DebugLocTuple, unsigned>::iterator II
1497 = DebugLocInfo.DebugIdMap.find(Tuple);
1498 if (II != DebugLocInfo.DebugIdMap.end())
1499 return DebugLoc::get(II->second);
1500
1501 // Add a new location entry.
1502 unsigned Id = DebugLocInfo.DebugLocations.size();
1503 DebugLocInfo.DebugLocations.push_back(Tuple);
1504 DebugLocInfo.DebugIdMap[Tuple] = Id;
Daniel Dunbarf612ff62009-09-19 20:40:05 +00001505
Devang Patel9e529c32009-07-02 01:15:24 +00001506 return DebugLoc::get(Id);
1507 }
Devang Patel193f7202009-11-24 01:14:22 +00001508
1509 /// getDISubprogram - Find subprogram that is enclosing this scope.
1510 DISubprogram getDISubprogram(MDNode *Scope) {
1511 DIDescriptor D(Scope);
1512 if (D.isNull())
1513 return DISubprogram();
1514
1515 if (D.isCompileUnit())
1516 return DISubprogram();
1517
1518 if (D.isSubprogram())
1519 return DISubprogram(Scope);
1520
1521 if (D.isLexicalBlock())
1522 return getDISubprogram(DILexicalBlock(Scope).getContext().getNode());
1523
1524 return DISubprogram();
1525 }
1526
1527 /// getDICompositeType - Find underlying composite type.
1528 DICompositeType getDICompositeType(DIType T) {
1529 if (T.isNull())
1530 return DICompositeType();
1531
1532 if (T.isCompositeType())
1533 return DICompositeType(T.getNode());
1534
1535 if (T.isDerivedType())
1536 return getDICompositeType(DIDerivedType(T.getNode()).getTypeDerivedFrom());
1537
1538 return DICompositeType();
1539 }
Torok Edwin620f2802008-12-16 09:07:36 +00001540}