1 //===--- DIBuilder.cpp - Debug Information Builder ------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the DIBuilder.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/IR/DIBuilder.h"
15 #include "llvm/IR/IRBuilder.h"
16 #include "LLVMContextImpl.h"
17 #include "llvm/ADT/Optional.h"
18 #include "llvm/ADT/STLExtras.h"
19 #include "llvm/BinaryFormat/Dwarf.h"
20 #include "llvm/IR/Constants.h"
21 #include "llvm/IR/DebugInfo.h"
22 #include "llvm/IR/IntrinsicInst.h"
23 #include "llvm/IR/Module.h"
24 #include "llvm/Support/Debug.h"
27 using namespace llvm::dwarf
;
30 UseDbgAddr("use-dbg-addr",
31 llvm::cl::desc("Use llvm.dbg.addr for all local variables"),
32 cl::init(false), cl::Hidden
);
34 DIBuilder::DIBuilder(Module
&m
, bool AllowUnresolvedNodes
, DICompileUnit
*CU
)
35 : M(m
), VMContext(M
.getContext()), CUNode(CU
),
36 DeclareFn(nullptr), ValueFn(nullptr), LabelFn(nullptr),
37 AllowUnresolvedNodes(AllowUnresolvedNodes
) {}
39 void DIBuilder::trackIfUnresolved(MDNode
*N
) {
45 assert(AllowUnresolvedNodes
&& "Cannot handle unresolved nodes");
46 UnresolvedNodes
.emplace_back(N
);
49 void DIBuilder::finalizeSubprogram(DISubprogram
*SP
) {
50 MDTuple
*Temp
= SP
->getRetainedNodes().get();
51 if (!Temp
|| !Temp
->isTemporary())
54 SmallVector
<Metadata
*, 16> RetainedNodes
;
56 auto PV
= PreservedVariables
.find(SP
);
57 if (PV
!= PreservedVariables
.end())
58 RetainedNodes
.append(PV
->second
.begin(), PV
->second
.end());
60 auto PL
= PreservedLabels
.find(SP
);
61 if (PL
!= PreservedLabels
.end())
62 RetainedNodes
.append(PL
->second
.begin(), PL
->second
.end());
64 DINodeArray Node
= getOrCreateArray(RetainedNodes
);
66 TempMDTuple(Temp
)->replaceAllUsesWith(Node
.get());
69 void DIBuilder::finalize() {
71 assert(!AllowUnresolvedNodes
&&
72 "creating type nodes without a CU is not supported");
76 CUNode
->replaceEnumTypes(MDTuple::get(VMContext
, AllEnumTypes
));
78 SmallVector
<Metadata
*, 16> RetainValues
;
79 // Declarations and definitions of the same type may be retained. Some
80 // clients RAUW these pairs, leaving duplicates in the retained types
81 // list. Use a set to remove the duplicates while we transform the
82 // TrackingVHs back into Values.
83 SmallPtrSet
<Metadata
*, 16> RetainSet
;
84 for (unsigned I
= 0, E
= AllRetainTypes
.size(); I
< E
; I
++)
85 if (RetainSet
.insert(AllRetainTypes
[I
]).second
)
86 RetainValues
.push_back(AllRetainTypes
[I
]);
88 if (!RetainValues
.empty())
89 CUNode
->replaceRetainedTypes(MDTuple::get(VMContext
, RetainValues
));
91 DISubprogramArray SPs
= MDTuple::get(VMContext
, AllSubprograms
);
93 finalizeSubprogram(SP
);
94 for (auto *N
: RetainValues
)
95 if (auto *SP
= dyn_cast
<DISubprogram
>(N
))
96 finalizeSubprogram(SP
);
99 CUNode
->replaceGlobalVariables(MDTuple::get(VMContext
, AllGVs
));
101 if (!AllImportedModules
.empty())
102 CUNode
->replaceImportedEntities(MDTuple::get(
103 VMContext
, SmallVector
<Metadata
*, 16>(AllImportedModules
.begin(),
104 AllImportedModules
.end())));
106 for (const auto &I
: AllMacrosPerParent
) {
107 // DIMacroNode's with nullptr parent are DICompileUnit direct children.
109 CUNode
->replaceMacros(MDTuple::get(VMContext
, I
.second
.getArrayRef()));
112 // Otherwise, it must be a temporary DIMacroFile that need to be resolved.
113 auto *TMF
= cast
<DIMacroFile
>(I
.first
);
114 auto *MF
= DIMacroFile::get(VMContext
, dwarf::DW_MACINFO_start_file
,
115 TMF
->getLine(), TMF
->getFile(),
116 getOrCreateMacroArray(I
.second
.getArrayRef()));
117 replaceTemporary(llvm::TempDIMacroNode(TMF
), MF
);
120 // Now that all temp nodes have been replaced or deleted, resolve remaining
122 for (const auto &N
: UnresolvedNodes
)
123 if (N
&& !N
->isResolved())
125 UnresolvedNodes
.clear();
127 // Can't handle unresolved nodes anymore.
128 AllowUnresolvedNodes
= false;
131 /// If N is compile unit return NULL otherwise return N.
132 static DIScope
*getNonCompileUnitScope(DIScope
*N
) {
133 if (!N
|| isa
<DICompileUnit
>(N
))
135 return cast
<DIScope
>(N
);
138 DICompileUnit
*DIBuilder::createCompileUnit(
139 unsigned Lang
, DIFile
*File
, StringRef Producer
, bool isOptimized
,
140 StringRef Flags
, unsigned RunTimeVer
, StringRef SplitName
,
141 DICompileUnit::DebugEmissionKind Kind
, uint64_t DWOId
,
142 bool SplitDebugInlining
, bool DebugInfoForProfiling
,
143 DICompileUnit::DebugNameTableKind NameTableKind
) {
145 assert(((Lang
<= dwarf::DW_LANG_Fortran08
&& Lang
>= dwarf::DW_LANG_C89
) ||
146 (Lang
<= dwarf::DW_LANG_hi_user
&& Lang
>= dwarf::DW_LANG_lo_user
)) &&
147 "Invalid Language tag");
149 assert(!CUNode
&& "Can only make one compile unit per DIBuilder instance");
150 CUNode
= DICompileUnit::getDistinct(
151 VMContext
, Lang
, File
, Producer
, isOptimized
, Flags
, RunTimeVer
,
152 SplitName
, Kind
, nullptr, nullptr, nullptr, nullptr, nullptr, DWOId
,
153 SplitDebugInlining
, DebugInfoForProfiling
, NameTableKind
);
155 // Create a named metadata so that it is easier to find cu in a module.
156 NamedMDNode
*NMD
= M
.getOrInsertNamedMetadata("llvm.dbg.cu");
157 NMD
->addOperand(CUNode
);
158 trackIfUnresolved(CUNode
);
162 static DIImportedEntity
*
163 createImportedModule(LLVMContext
&C
, dwarf::Tag Tag
, DIScope
*Context
,
164 Metadata
*NS
, DIFile
*File
, unsigned Line
, StringRef Name
,
165 SmallVectorImpl
<TrackingMDNodeRef
> &AllImportedModules
) {
167 assert(File
&& "Source location has line number but no file");
168 unsigned EntitiesCount
= C
.pImpl
->DIImportedEntitys
.size();
170 DIImportedEntity::get(C
, Tag
, Context
, DINodeRef(NS
), File
, Line
, Name
);
171 if (EntitiesCount
< C
.pImpl
->DIImportedEntitys
.size())
172 // A new Imported Entity was just added to the context.
173 // Add it to the Imported Modules list.
174 AllImportedModules
.emplace_back(M
);
178 DIImportedEntity
*DIBuilder::createImportedModule(DIScope
*Context
,
179 DINamespace
*NS
, DIFile
*File
,
181 return ::createImportedModule(VMContext
, dwarf::DW_TAG_imported_module
,
182 Context
, NS
, File
, Line
, StringRef(),
186 DIImportedEntity
*DIBuilder::createImportedModule(DIScope
*Context
,
187 DIImportedEntity
*NS
,
188 DIFile
*File
, unsigned Line
) {
189 return ::createImportedModule(VMContext
, dwarf::DW_TAG_imported_module
,
190 Context
, NS
, File
, Line
, StringRef(),
194 DIImportedEntity
*DIBuilder::createImportedModule(DIScope
*Context
, DIModule
*M
,
195 DIFile
*File
, unsigned Line
) {
196 return ::createImportedModule(VMContext
, dwarf::DW_TAG_imported_module
,
197 Context
, M
, File
, Line
, StringRef(),
201 DIImportedEntity
*DIBuilder::createImportedDeclaration(DIScope
*Context
,
206 // Make sure to use the unique identifier based metadata reference for
207 // types that have one.
208 return ::createImportedModule(VMContext
, dwarf::DW_TAG_imported_declaration
,
209 Context
, Decl
, File
, Line
, Name
,
213 DIFile
*DIBuilder::createFile(StringRef Filename
, StringRef Directory
,
214 Optional
<DIFile::ChecksumInfo
<StringRef
>> CS
,
215 Optional
<StringRef
> Source
) {
216 return DIFile::get(VMContext
, Filename
, Directory
, CS
, Source
);
219 DIMacro
*DIBuilder::createMacro(DIMacroFile
*Parent
, unsigned LineNumber
,
220 unsigned MacroType
, StringRef Name
,
222 assert(!Name
.empty() && "Unable to create macro without name");
223 assert((MacroType
== dwarf::DW_MACINFO_undef
||
224 MacroType
== dwarf::DW_MACINFO_define
) &&
225 "Unexpected macro type");
226 auto *M
= DIMacro::get(VMContext
, MacroType
, LineNumber
, Name
, Value
);
227 AllMacrosPerParent
[Parent
].insert(M
);
231 DIMacroFile
*DIBuilder::createTempMacroFile(DIMacroFile
*Parent
,
232 unsigned LineNumber
, DIFile
*File
) {
233 auto *MF
= DIMacroFile::getTemporary(VMContext
, dwarf::DW_MACINFO_start_file
,
234 LineNumber
, File
, DIMacroNodeArray())
236 AllMacrosPerParent
[Parent
].insert(MF
);
237 // Add the new temporary DIMacroFile to the macro per parent map as a parent.
238 // This is needed to assure DIMacroFile with no children to have an entry in
239 // the map. Otherwise, it will not be resolved in DIBuilder::finalize().
240 AllMacrosPerParent
.insert({MF
, {}});
244 DIEnumerator
*DIBuilder::createEnumerator(StringRef Name
, int64_t Val
,
246 assert(!Name
.empty() && "Unable to create enumerator without name");
247 return DIEnumerator::get(VMContext
, Val
, IsUnsigned
, Name
);
250 DIBasicType
*DIBuilder::createUnspecifiedType(StringRef Name
) {
251 assert(!Name
.empty() && "Unable to create type without name");
252 return DIBasicType::get(VMContext
, dwarf::DW_TAG_unspecified_type
, Name
);
255 DIBasicType
*DIBuilder::createNullPtrType() {
256 return createUnspecifiedType("decltype(nullptr)");
259 DIBasicType
*DIBuilder::createBasicType(StringRef Name
, uint64_t SizeInBits
,
261 DINode::DIFlags Flags
) {
262 assert(!Name
.empty() && "Unable to create type without name");
263 return DIBasicType::get(VMContext
, dwarf::DW_TAG_base_type
, Name
, SizeInBits
,
267 DIDerivedType
*DIBuilder::createQualifiedType(unsigned Tag
, DIType
*FromTy
) {
268 return DIDerivedType::get(VMContext
, Tag
, "", nullptr, 0, nullptr, FromTy
, 0,
269 0, 0, None
, DINode::FlagZero
);
272 DIDerivedType
*DIBuilder::createPointerType(
275 uint32_t AlignInBits
,
276 Optional
<unsigned> DWARFAddressSpace
,
278 // FIXME: Why is there a name here?
279 return DIDerivedType::get(VMContext
, dwarf::DW_TAG_pointer_type
, Name
,
280 nullptr, 0, nullptr, PointeeTy
, SizeInBits
,
281 AlignInBits
, 0, DWARFAddressSpace
,
285 DIDerivedType
*DIBuilder::createMemberPointerType(DIType
*PointeeTy
,
288 uint32_t AlignInBits
,
289 DINode::DIFlags Flags
) {
290 return DIDerivedType::get(VMContext
, dwarf::DW_TAG_ptr_to_member_type
, "",
291 nullptr, 0, nullptr, PointeeTy
, SizeInBits
,
292 AlignInBits
, 0, None
, Flags
, Base
);
295 DIDerivedType
*DIBuilder::createReferenceType(
296 unsigned Tag
, DIType
*RTy
,
298 uint32_t AlignInBits
,
299 Optional
<unsigned> DWARFAddressSpace
) {
300 assert(RTy
&& "Unable to create reference type");
301 return DIDerivedType::get(VMContext
, Tag
, "", nullptr, 0, nullptr, RTy
,
302 SizeInBits
, AlignInBits
, 0, DWARFAddressSpace
,
306 DIDerivedType
*DIBuilder::createTypedef(DIType
*Ty
, StringRef Name
,
307 DIFile
*File
, unsigned LineNo
,
309 return DIDerivedType::get(VMContext
, dwarf::DW_TAG_typedef
, Name
, File
,
310 LineNo
, getNonCompileUnitScope(Context
), Ty
, 0, 0,
311 0, None
, DINode::FlagZero
);
314 DIDerivedType
*DIBuilder::createFriend(DIType
*Ty
, DIType
*FriendTy
) {
315 assert(Ty
&& "Invalid type!");
316 assert(FriendTy
&& "Invalid friend type!");
317 return DIDerivedType::get(VMContext
, dwarf::DW_TAG_friend
, "", nullptr, 0, Ty
,
318 FriendTy
, 0, 0, 0, None
, DINode::FlagZero
);
321 DIDerivedType
*DIBuilder::createInheritance(DIType
*Ty
, DIType
*BaseTy
,
323 uint32_t VBPtrOffset
,
324 DINode::DIFlags Flags
) {
325 assert(Ty
&& "Unable to create inheritance");
326 Metadata
*ExtraData
= ConstantAsMetadata::get(
327 ConstantInt::get(IntegerType::get(VMContext
, 32), VBPtrOffset
));
328 return DIDerivedType::get(VMContext
, dwarf::DW_TAG_inheritance
, "", nullptr,
329 0, Ty
, BaseTy
, 0, 0, BaseOffset
, None
,
333 DIDerivedType
*DIBuilder::createMemberType(DIScope
*Scope
, StringRef Name
,
334 DIFile
*File
, unsigned LineNumber
,
336 uint32_t AlignInBits
,
337 uint64_t OffsetInBits
,
338 DINode::DIFlags Flags
, DIType
*Ty
) {
339 return DIDerivedType::get(VMContext
, dwarf::DW_TAG_member
, Name
, File
,
340 LineNumber
, getNonCompileUnitScope(Scope
), Ty
,
341 SizeInBits
, AlignInBits
, OffsetInBits
, None
, Flags
);
344 static ConstantAsMetadata
*getConstantOrNull(Constant
*C
) {
346 return ConstantAsMetadata::get(C
);
350 DIDerivedType
*DIBuilder::createVariantMemberType(
351 DIScope
*Scope
, StringRef Name
, DIFile
*File
, unsigned LineNumber
,
352 uint64_t SizeInBits
, uint32_t AlignInBits
, uint64_t OffsetInBits
,
353 Constant
*Discriminant
, DINode::DIFlags Flags
, DIType
*Ty
) {
354 return DIDerivedType::get(VMContext
, dwarf::DW_TAG_member
, Name
, File
,
355 LineNumber
, getNonCompileUnitScope(Scope
), Ty
,
356 SizeInBits
, AlignInBits
, OffsetInBits
, None
, Flags
,
357 getConstantOrNull(Discriminant
));
360 DIDerivedType
*DIBuilder::createBitFieldMemberType(
361 DIScope
*Scope
, StringRef Name
, DIFile
*File
, unsigned LineNumber
,
362 uint64_t SizeInBits
, uint64_t OffsetInBits
, uint64_t StorageOffsetInBits
,
363 DINode::DIFlags Flags
, DIType
*Ty
) {
364 Flags
|= DINode::FlagBitField
;
365 return DIDerivedType::get(
366 VMContext
, dwarf::DW_TAG_member
, Name
, File
, LineNumber
,
367 getNonCompileUnitScope(Scope
), Ty
, SizeInBits
, /* AlignInBits */ 0,
368 OffsetInBits
, None
, Flags
,
369 ConstantAsMetadata::get(ConstantInt::get(IntegerType::get(VMContext
, 64),
370 StorageOffsetInBits
)));
374 DIBuilder::createStaticMemberType(DIScope
*Scope
, StringRef Name
, DIFile
*File
,
375 unsigned LineNumber
, DIType
*Ty
,
376 DINode::DIFlags Flags
, llvm::Constant
*Val
,
377 uint32_t AlignInBits
) {
378 Flags
|= DINode::FlagStaticMember
;
379 return DIDerivedType::get(VMContext
, dwarf::DW_TAG_member
, Name
, File
,
380 LineNumber
, getNonCompileUnitScope(Scope
), Ty
, 0,
381 AlignInBits
, 0, None
, Flags
,
382 getConstantOrNull(Val
));
386 DIBuilder::createObjCIVar(StringRef Name
, DIFile
*File
, unsigned LineNumber
,
387 uint64_t SizeInBits
, uint32_t AlignInBits
,
388 uint64_t OffsetInBits
, DINode::DIFlags Flags
,
389 DIType
*Ty
, MDNode
*PropertyNode
) {
390 return DIDerivedType::get(VMContext
, dwarf::DW_TAG_member
, Name
, File
,
391 LineNumber
, getNonCompileUnitScope(File
), Ty
,
392 SizeInBits
, AlignInBits
, OffsetInBits
, None
, Flags
,
397 DIBuilder::createObjCProperty(StringRef Name
, DIFile
*File
, unsigned LineNumber
,
398 StringRef GetterName
, StringRef SetterName
,
399 unsigned PropertyAttributes
, DIType
*Ty
) {
400 return DIObjCProperty::get(VMContext
, Name
, File
, LineNumber
, GetterName
,
401 SetterName
, PropertyAttributes
, Ty
);
404 DITemplateTypeParameter
*
405 DIBuilder::createTemplateTypeParameter(DIScope
*Context
, StringRef Name
,
407 assert((!Context
|| isa
<DICompileUnit
>(Context
)) && "Expected compile unit");
408 return DITemplateTypeParameter::get(VMContext
, Name
, Ty
);
411 static DITemplateValueParameter
*
412 createTemplateValueParameterHelper(LLVMContext
&VMContext
, unsigned Tag
,
413 DIScope
*Context
, StringRef Name
, DIType
*Ty
,
415 assert((!Context
|| isa
<DICompileUnit
>(Context
)) && "Expected compile unit");
416 return DITemplateValueParameter::get(VMContext
, Tag
, Name
, Ty
, MD
);
419 DITemplateValueParameter
*
420 DIBuilder::createTemplateValueParameter(DIScope
*Context
, StringRef Name
,
421 DIType
*Ty
, Constant
*Val
) {
422 return createTemplateValueParameterHelper(
423 VMContext
, dwarf::DW_TAG_template_value_parameter
, Context
, Name
, Ty
,
424 getConstantOrNull(Val
));
427 DITemplateValueParameter
*
428 DIBuilder::createTemplateTemplateParameter(DIScope
*Context
, StringRef Name
,
429 DIType
*Ty
, StringRef Val
) {
430 return createTemplateValueParameterHelper(
431 VMContext
, dwarf::DW_TAG_GNU_template_template_param
, Context
, Name
, Ty
,
432 MDString::get(VMContext
, Val
));
435 DITemplateValueParameter
*
436 DIBuilder::createTemplateParameterPack(DIScope
*Context
, StringRef Name
,
437 DIType
*Ty
, DINodeArray Val
) {
438 return createTemplateValueParameterHelper(
439 VMContext
, dwarf::DW_TAG_GNU_template_parameter_pack
, Context
, Name
, Ty
,
443 DICompositeType
*DIBuilder::createClassType(
444 DIScope
*Context
, StringRef Name
, DIFile
*File
, unsigned LineNumber
,
445 uint64_t SizeInBits
, uint32_t AlignInBits
, uint64_t OffsetInBits
,
446 DINode::DIFlags Flags
, DIType
*DerivedFrom
, DINodeArray Elements
,
447 DIType
*VTableHolder
, MDNode
*TemplateParams
, StringRef UniqueIdentifier
) {
448 assert((!Context
|| isa
<DIScope
>(Context
)) &&
449 "createClassType should be called with a valid Context");
451 auto *R
= DICompositeType::get(
452 VMContext
, dwarf::DW_TAG_structure_type
, Name
, File
, LineNumber
,
453 getNonCompileUnitScope(Context
), DerivedFrom
, SizeInBits
, AlignInBits
,
454 OffsetInBits
, Flags
, Elements
, 0, VTableHolder
,
455 cast_or_null
<MDTuple
>(TemplateParams
), UniqueIdentifier
);
456 trackIfUnresolved(R
);
460 DICompositeType
*DIBuilder::createStructType(
461 DIScope
*Context
, StringRef Name
, DIFile
*File
, unsigned LineNumber
,
462 uint64_t SizeInBits
, uint32_t AlignInBits
, DINode::DIFlags Flags
,
463 DIType
*DerivedFrom
, DINodeArray Elements
, unsigned RunTimeLang
,
464 DIType
*VTableHolder
, StringRef UniqueIdentifier
) {
465 auto *R
= DICompositeType::get(
466 VMContext
, dwarf::DW_TAG_structure_type
, Name
, File
, LineNumber
,
467 getNonCompileUnitScope(Context
), DerivedFrom
, SizeInBits
, AlignInBits
, 0,
468 Flags
, Elements
, RunTimeLang
, VTableHolder
, nullptr, UniqueIdentifier
);
469 trackIfUnresolved(R
);
473 DICompositeType
*DIBuilder::createUnionType(
474 DIScope
*Scope
, StringRef Name
, DIFile
*File
, unsigned LineNumber
,
475 uint64_t SizeInBits
, uint32_t AlignInBits
, DINode::DIFlags Flags
,
476 DINodeArray Elements
, unsigned RunTimeLang
, StringRef UniqueIdentifier
) {
477 auto *R
= DICompositeType::get(
478 VMContext
, dwarf::DW_TAG_union_type
, Name
, File
, LineNumber
,
479 getNonCompileUnitScope(Scope
), nullptr, SizeInBits
, AlignInBits
, 0, Flags
,
480 Elements
, RunTimeLang
, nullptr, nullptr, UniqueIdentifier
);
481 trackIfUnresolved(R
);
485 DICompositeType
*DIBuilder::createVariantPart(
486 DIScope
*Scope
, StringRef Name
, DIFile
*File
, unsigned LineNumber
,
487 uint64_t SizeInBits
, uint32_t AlignInBits
, DINode::DIFlags Flags
,
488 DIDerivedType
*Discriminator
, DINodeArray Elements
, StringRef UniqueIdentifier
) {
489 auto *R
= DICompositeType::get(
490 VMContext
, dwarf::DW_TAG_variant_part
, Name
, File
, LineNumber
,
491 getNonCompileUnitScope(Scope
), nullptr, SizeInBits
, AlignInBits
, 0, Flags
,
492 Elements
, 0, nullptr, nullptr, UniqueIdentifier
, Discriminator
);
493 trackIfUnresolved(R
);
497 DISubroutineType
*DIBuilder::createSubroutineType(DITypeRefArray ParameterTypes
,
498 DINode::DIFlags Flags
,
500 return DISubroutineType::get(VMContext
, Flags
, CC
, ParameterTypes
);
503 DICompositeType
*DIBuilder::createEnumerationType(
504 DIScope
*Scope
, StringRef Name
, DIFile
*File
, unsigned LineNumber
,
505 uint64_t SizeInBits
, uint32_t AlignInBits
, DINodeArray Elements
,
506 DIType
*UnderlyingType
, StringRef UniqueIdentifier
, bool IsFixed
) {
507 auto *CTy
= DICompositeType::get(
508 VMContext
, dwarf::DW_TAG_enumeration_type
, Name
, File
, LineNumber
,
509 getNonCompileUnitScope(Scope
), UnderlyingType
, SizeInBits
, AlignInBits
, 0,
510 IsFixed
? DINode::FlagFixedEnum
: DINode::FlagZero
, Elements
, 0, nullptr,
511 nullptr, UniqueIdentifier
);
512 AllEnumTypes
.push_back(CTy
);
513 trackIfUnresolved(CTy
);
517 DICompositeType
*DIBuilder::createArrayType(uint64_t Size
,
518 uint32_t AlignInBits
, DIType
*Ty
,
519 DINodeArray Subscripts
) {
520 auto *R
= DICompositeType::get(VMContext
, dwarf::DW_TAG_array_type
, "",
521 nullptr, 0, nullptr, Ty
, Size
, AlignInBits
, 0,
522 DINode::FlagZero
, Subscripts
, 0, nullptr);
523 trackIfUnresolved(R
);
527 DICompositeType
*DIBuilder::createVectorType(uint64_t Size
,
528 uint32_t AlignInBits
, DIType
*Ty
,
529 DINodeArray Subscripts
) {
530 auto *R
= DICompositeType::get(VMContext
, dwarf::DW_TAG_array_type
, "",
531 nullptr, 0, nullptr, Ty
, Size
, AlignInBits
, 0,
532 DINode::FlagVector
, Subscripts
, 0, nullptr);
533 trackIfUnresolved(R
);
537 DISubprogram
*DIBuilder::createArtificialSubprogram(DISubprogram
*SP
) {
538 auto NewSP
= SP
->cloneWithFlags(SP
->getFlags() | DINode::FlagArtificial
);
539 return MDNode::replaceWithDistinct(std::move(NewSP
));
542 static DIType
*createTypeWithFlags(const DIType
*Ty
,
543 DINode::DIFlags FlagsToSet
) {
544 auto NewTy
= Ty
->cloneWithFlags(Ty
->getFlags() | FlagsToSet
);
545 return MDNode::replaceWithUniqued(std::move(NewTy
));
548 DIType
*DIBuilder::createArtificialType(DIType
*Ty
) {
549 // FIXME: Restrict this to the nodes where it's valid.
550 if (Ty
->isArtificial())
552 return createTypeWithFlags(Ty
, DINode::FlagArtificial
);
555 DIType
*DIBuilder::createObjectPointerType(DIType
*Ty
) {
556 // FIXME: Restrict this to the nodes where it's valid.
557 if (Ty
->isObjectPointer())
559 DINode::DIFlags Flags
= DINode::FlagObjectPointer
| DINode::FlagArtificial
;
560 return createTypeWithFlags(Ty
, Flags
);
563 void DIBuilder::retainType(DIScope
*T
) {
564 assert(T
&& "Expected non-null type");
565 assert((isa
<DIType
>(T
) || (isa
<DISubprogram
>(T
) &&
566 cast
<DISubprogram
>(T
)->isDefinition() == false)) &&
567 "Expected type or subprogram declaration");
568 AllRetainTypes
.emplace_back(T
);
571 DIBasicType
*DIBuilder::createUnspecifiedParameter() { return nullptr; }
574 DIBuilder::createForwardDecl(unsigned Tag
, StringRef Name
, DIScope
*Scope
,
575 DIFile
*F
, unsigned Line
, unsigned RuntimeLang
,
576 uint64_t SizeInBits
, uint32_t AlignInBits
,
577 StringRef UniqueIdentifier
) {
578 // FIXME: Define in terms of createReplaceableForwardDecl() by calling
579 // replaceWithUniqued().
580 auto *RetTy
= DICompositeType::get(
581 VMContext
, Tag
, Name
, F
, Line
, getNonCompileUnitScope(Scope
), nullptr,
582 SizeInBits
, AlignInBits
, 0, DINode::FlagFwdDecl
, nullptr, RuntimeLang
,
583 nullptr, nullptr, UniqueIdentifier
);
584 trackIfUnresolved(RetTy
);
588 DICompositeType
*DIBuilder::createReplaceableCompositeType(
589 unsigned Tag
, StringRef Name
, DIScope
*Scope
, DIFile
*F
, unsigned Line
,
590 unsigned RuntimeLang
, uint64_t SizeInBits
, uint32_t AlignInBits
,
591 DINode::DIFlags Flags
, StringRef UniqueIdentifier
) {
593 DICompositeType::getTemporary(
594 VMContext
, Tag
, Name
, F
, Line
, getNonCompileUnitScope(Scope
), nullptr,
595 SizeInBits
, AlignInBits
, 0, Flags
, nullptr, RuntimeLang
, nullptr,
596 nullptr, UniqueIdentifier
)
598 trackIfUnresolved(RetTy
);
602 DINodeArray
DIBuilder::getOrCreateArray(ArrayRef
<Metadata
*> Elements
) {
603 return MDTuple::get(VMContext
, Elements
);
607 DIBuilder::getOrCreateMacroArray(ArrayRef
<Metadata
*> Elements
) {
608 return MDTuple::get(VMContext
, Elements
);
611 DITypeRefArray
DIBuilder::getOrCreateTypeArray(ArrayRef
<Metadata
*> Elements
) {
612 SmallVector
<llvm::Metadata
*, 16> Elts
;
613 for (unsigned i
= 0, e
= Elements
.size(); i
!= e
; ++i
) {
614 if (Elements
[i
] && isa
<MDNode
>(Elements
[i
]))
615 Elts
.push_back(cast
<DIType
>(Elements
[i
]));
617 Elts
.push_back(Elements
[i
]);
619 return DITypeRefArray(MDNode::get(VMContext
, Elts
));
622 DISubrange
*DIBuilder::getOrCreateSubrange(int64_t Lo
, int64_t Count
) {
623 return DISubrange::get(VMContext
, Count
, Lo
);
626 DISubrange
*DIBuilder::getOrCreateSubrange(int64_t Lo
, Metadata
*CountNode
) {
627 return DISubrange::get(VMContext
, CountNode
, Lo
);
630 static void checkGlobalVariableScope(DIScope
*Context
) {
633 dyn_cast_or_null
<DICompositeType
>(getNonCompileUnitScope(Context
)))
634 assert(CT
->getIdentifier().empty() &&
635 "Context of a global variable should not be a type with identifier");
639 DIGlobalVariableExpression
*DIBuilder::createGlobalVariableExpression(
640 DIScope
*Context
, StringRef Name
, StringRef LinkageName
, DIFile
*F
,
641 unsigned LineNumber
, DIType
*Ty
, bool isLocalToUnit
, DIExpression
*Expr
,
642 MDNode
*Decl
, MDTuple
*templateParams
, uint32_t AlignInBits
) {
643 checkGlobalVariableScope(Context
);
645 auto *GV
= DIGlobalVariable::getDistinct(
646 VMContext
, cast_or_null
<DIScope
>(Context
), Name
, LinkageName
, F
,
647 LineNumber
, Ty
, isLocalToUnit
, true, cast_or_null
<DIDerivedType
>(Decl
),
648 templateParams
, AlignInBits
);
650 Expr
= createExpression();
651 auto *N
= DIGlobalVariableExpression::get(VMContext
, GV
, Expr
);
656 DIGlobalVariable
*DIBuilder::createTempGlobalVariableFwdDecl(
657 DIScope
*Context
, StringRef Name
, StringRef LinkageName
, DIFile
*F
,
658 unsigned LineNumber
, DIType
*Ty
, bool isLocalToUnit
, MDNode
*Decl
,
659 MDTuple
*templateParams
, uint32_t AlignInBits
) {
660 checkGlobalVariableScope(Context
);
662 return DIGlobalVariable::getTemporary(
663 VMContext
, cast_or_null
<DIScope
>(Context
), Name
, LinkageName
, F
,
664 LineNumber
, Ty
, isLocalToUnit
, false,
665 cast_or_null
<DIDerivedType
>(Decl
), templateParams
, AlignInBits
)
669 static DILocalVariable
*createLocalVariable(
670 LLVMContext
&VMContext
,
671 DenseMap
<MDNode
*, SmallVector
<TrackingMDNodeRef
, 1>> &PreservedVariables
,
672 DIScope
*Scope
, StringRef Name
, unsigned ArgNo
, DIFile
*File
,
673 unsigned LineNo
, DIType
*Ty
, bool AlwaysPreserve
, DINode::DIFlags Flags
,
674 uint32_t AlignInBits
) {
675 // FIXME: Why getNonCompileUnitScope()?
676 // FIXME: Why is "!Context" okay here?
677 // FIXME: Why doesn't this check for a subprogram or lexical block (AFAICT
678 // the only valid scopes)?
679 DIScope
*Context
= getNonCompileUnitScope(Scope
);
682 DILocalVariable::get(VMContext
, cast_or_null
<DILocalScope
>(Context
), Name
,
683 File
, LineNo
, Ty
, ArgNo
, Flags
, AlignInBits
);
684 if (AlwaysPreserve
) {
685 // The optimizer may remove local variables. If there is an interest
686 // to preserve variable info in such situation then stash it in a
688 DISubprogram
*Fn
= getDISubprogram(Scope
);
689 assert(Fn
&& "Missing subprogram for local variable");
690 PreservedVariables
[Fn
].emplace_back(Node
);
695 DILocalVariable
*DIBuilder::createAutoVariable(DIScope
*Scope
, StringRef Name
,
696 DIFile
*File
, unsigned LineNo
,
697 DIType
*Ty
, bool AlwaysPreserve
,
698 DINode::DIFlags Flags
,
699 uint32_t AlignInBits
) {
700 return createLocalVariable(VMContext
, PreservedVariables
, Scope
, Name
,
701 /* ArgNo */ 0, File
, LineNo
, Ty
, AlwaysPreserve
,
705 DILocalVariable
*DIBuilder::createParameterVariable(
706 DIScope
*Scope
, StringRef Name
, unsigned ArgNo
, DIFile
*File
,
707 unsigned LineNo
, DIType
*Ty
, bool AlwaysPreserve
, DINode::DIFlags Flags
) {
708 assert(ArgNo
&& "Expected non-zero argument number for parameter");
709 return createLocalVariable(VMContext
, PreservedVariables
, Scope
, Name
, ArgNo
,
710 File
, LineNo
, Ty
, AlwaysPreserve
, Flags
,
714 DILabel
*DIBuilder::createLabel(
715 DIScope
*Scope
, StringRef Name
, DIFile
*File
,
716 unsigned LineNo
, bool AlwaysPreserve
) {
717 DIScope
*Context
= getNonCompileUnitScope(Scope
);
720 DILabel::get(VMContext
, cast_or_null
<DILocalScope
>(Context
), Name
,
723 if (AlwaysPreserve
) {
724 /// The optimizer may remove labels. If there is an interest
725 /// to preserve label info in such situation then append it to
726 /// the list of retained nodes of the DISubprogram.
727 DISubprogram
*Fn
= getDISubprogram(Scope
);
728 assert(Fn
&& "Missing subprogram for label");
729 PreservedLabels
[Fn
].emplace_back(Node
);
734 DIExpression
*DIBuilder::createExpression(ArrayRef
<uint64_t> Addr
) {
735 return DIExpression::get(VMContext
, Addr
);
738 DIExpression
*DIBuilder::createExpression(ArrayRef
<int64_t> Signed
) {
739 // TODO: Remove the callers of this signed version and delete.
740 SmallVector
<uint64_t, 8> Addr(Signed
.begin(), Signed
.end());
741 return createExpression(Addr
);
744 template <class... Ts
>
745 static DISubprogram
*getSubprogram(bool IsDistinct
, Ts
&&... Args
) {
747 return DISubprogram::getDistinct(std::forward
<Ts
>(Args
)...);
748 return DISubprogram::get(std::forward
<Ts
>(Args
)...);
751 DISubprogram
*DIBuilder::createFunction(
752 DIScope
*Context
, StringRef Name
, StringRef LinkageName
, DIFile
*File
,
753 unsigned LineNo
, DISubroutineType
*Ty
, bool isLocalToUnit
,
754 bool isDefinition
, unsigned ScopeLine
, DINode::DIFlags Flags
,
755 bool isOptimized
, DITemplateParameterArray TParams
, DISubprogram
*Decl
,
756 DITypeArray ThrownTypes
) {
757 auto *Node
= getSubprogram(
758 /* IsDistinct = */ isDefinition
, VMContext
,
759 getNonCompileUnitScope(Context
), Name
, LinkageName
, File
, LineNo
, Ty
,
760 isLocalToUnit
, isDefinition
, ScopeLine
, nullptr, 0, 0, 0, Flags
,
761 isOptimized
, isDefinition
? CUNode
: nullptr, TParams
, Decl
,
762 MDTuple::getTemporary(VMContext
, None
).release(), ThrownTypes
);
765 AllSubprograms
.push_back(Node
);
766 trackIfUnresolved(Node
);
770 DISubprogram
*DIBuilder::createTempFunctionFwdDecl(
771 DIScope
*Context
, StringRef Name
, StringRef LinkageName
, DIFile
*File
,
772 unsigned LineNo
, DISubroutineType
*Ty
, bool isLocalToUnit
,
773 bool isDefinition
, unsigned ScopeLine
, DINode::DIFlags Flags
,
774 bool isOptimized
, DITemplateParameterArray TParams
, DISubprogram
*Decl
,
775 DITypeArray ThrownTypes
) {
776 return DISubprogram::getTemporary(
777 VMContext
, getNonCompileUnitScope(Context
), Name
, LinkageName
,
778 File
, LineNo
, Ty
, isLocalToUnit
, isDefinition
, ScopeLine
, nullptr,
779 0, 0, 0, Flags
, isOptimized
, isDefinition
? CUNode
: nullptr,
780 TParams
, Decl
, nullptr, ThrownTypes
)
784 DISubprogram
*DIBuilder::createMethod(
785 DIScope
*Context
, StringRef Name
, StringRef LinkageName
, DIFile
*F
,
786 unsigned LineNo
, DISubroutineType
*Ty
, bool isLocalToUnit
,
787 bool isDefinition
, unsigned VK
, unsigned VIndex
, int ThisAdjustment
,
788 DIType
*VTableHolder
, DINode::DIFlags Flags
, bool isOptimized
,
789 DITemplateParameterArray TParams
, DITypeArray ThrownTypes
) {
790 assert(getNonCompileUnitScope(Context
) &&
791 "Methods should have both a Context and a context that isn't "
792 "the compile unit.");
793 // FIXME: Do we want to use different scope/lines?
794 auto *SP
= getSubprogram(
795 /* IsDistinct = */ isDefinition
, VMContext
, cast
<DIScope
>(Context
), Name
,
796 LinkageName
, F
, LineNo
, Ty
, isLocalToUnit
, isDefinition
, LineNo
,
797 VTableHolder
, VK
, VIndex
, ThisAdjustment
, Flags
, isOptimized
,
798 isDefinition
? CUNode
: nullptr, TParams
, nullptr, nullptr, ThrownTypes
);
801 AllSubprograms
.push_back(SP
);
802 trackIfUnresolved(SP
);
806 DINamespace
*DIBuilder::createNameSpace(DIScope
*Scope
, StringRef Name
,
807 bool ExportSymbols
) {
809 // It is okay to *not* make anonymous top-level namespaces distinct, because
810 // all nodes that have an anonymous namespace as their parent scope are
811 // guaranteed to be unique and/or are linked to their containing
812 // DICompileUnit. This decision is an explicit tradeoff of link time versus
813 // memory usage versus code simplicity and may get revisited in the future.
814 return DINamespace::get(VMContext
, getNonCompileUnitScope(Scope
), Name
,
818 DIModule
*DIBuilder::createModule(DIScope
*Scope
, StringRef Name
,
819 StringRef ConfigurationMacros
,
820 StringRef IncludePath
,
821 StringRef ISysRoot
) {
822 return DIModule::get(VMContext
, getNonCompileUnitScope(Scope
), Name
,
823 ConfigurationMacros
, IncludePath
, ISysRoot
);
826 DILexicalBlockFile
*DIBuilder::createLexicalBlockFile(DIScope
*Scope
,
828 unsigned Discriminator
) {
829 return DILexicalBlockFile::get(VMContext
, Scope
, File
, Discriminator
);
832 DILexicalBlock
*DIBuilder::createLexicalBlock(DIScope
*Scope
, DIFile
*File
,
833 unsigned Line
, unsigned Col
) {
834 // Make these distinct, to avoid merging two lexical blocks on the same
836 return DILexicalBlock::getDistinct(VMContext
, getNonCompileUnitScope(Scope
),
840 Instruction
*DIBuilder::insertDeclare(Value
*Storage
, DILocalVariable
*VarInfo
,
841 DIExpression
*Expr
, const DILocation
*DL
,
842 Instruction
*InsertBefore
) {
843 return insertDeclare(Storage
, VarInfo
, Expr
, DL
, InsertBefore
->getParent(),
847 Instruction
*DIBuilder::insertDeclare(Value
*Storage
, DILocalVariable
*VarInfo
,
848 DIExpression
*Expr
, const DILocation
*DL
,
849 BasicBlock
*InsertAtEnd
) {
850 // If this block already has a terminator then insert this intrinsic before
851 // the terminator. Otherwise, put it at the end of the block.
852 Instruction
*InsertBefore
= InsertAtEnd
->getTerminator();
853 return insertDeclare(Storage
, VarInfo
, Expr
, DL
, InsertAtEnd
, InsertBefore
);
856 Instruction
*DIBuilder::insertLabel(DILabel
*LabelInfo
, const DILocation
*DL
,
857 Instruction
*InsertBefore
) {
859 LabelInfo
, DL
, InsertBefore
? InsertBefore
->getParent() : nullptr,
863 Instruction
*DIBuilder::insertLabel(DILabel
*LabelInfo
, const DILocation
*DL
,
864 BasicBlock
*InsertAtEnd
) {
865 return insertLabel(LabelInfo
, DL
, InsertAtEnd
, nullptr);
868 Instruction
*DIBuilder::insertDbgValueIntrinsic(Value
*V
,
869 DILocalVariable
*VarInfo
,
871 const DILocation
*DL
,
872 Instruction
*InsertBefore
) {
873 return insertDbgValueIntrinsic(
874 V
, VarInfo
, Expr
, DL
, InsertBefore
? InsertBefore
->getParent() : nullptr,
878 Instruction
*DIBuilder::insertDbgValueIntrinsic(Value
*V
,
879 DILocalVariable
*VarInfo
,
881 const DILocation
*DL
,
882 BasicBlock
*InsertAtEnd
) {
883 return insertDbgValueIntrinsic(V
, VarInfo
, Expr
, DL
, InsertAtEnd
, nullptr);
886 /// Return an IRBuilder for inserting dbg.declare and dbg.value intrinsics. This
887 /// abstracts over the various ways to specify an insert position.
888 static IRBuilder
<> getIRBForDbgInsertion(const DILocation
*DL
,
889 BasicBlock
*InsertBB
,
890 Instruction
*InsertBefore
) {
891 IRBuilder
<> B(DL
->getContext());
893 B
.SetInsertPoint(InsertBefore
);
895 B
.SetInsertPoint(InsertBB
);
896 B
.SetCurrentDebugLocation(DL
);
900 static Value
*getDbgIntrinsicValueImpl(LLVMContext
&VMContext
, Value
*V
) {
901 assert(V
&& "no value passed to dbg intrinsic");
902 return MetadataAsValue::get(VMContext
, ValueAsMetadata::get(V
));
905 static Function
*getDeclareIntrin(Module
&M
) {
906 return Intrinsic::getDeclaration(&M
, UseDbgAddr
? Intrinsic::dbg_addr
907 : Intrinsic::dbg_declare
);
910 Instruction
*DIBuilder::insertDeclare(Value
*Storage
, DILocalVariable
*VarInfo
,
911 DIExpression
*Expr
, const DILocation
*DL
,
912 BasicBlock
*InsertBB
, Instruction
*InsertBefore
) {
913 assert(VarInfo
&& "empty or invalid DILocalVariable* passed to dbg.declare");
914 assert(DL
&& "Expected debug loc");
915 assert(DL
->getScope()->getSubprogram() ==
916 VarInfo
->getScope()->getSubprogram() &&
917 "Expected matching subprograms");
919 DeclareFn
= getDeclareIntrin(M
);
921 trackIfUnresolved(VarInfo
);
922 trackIfUnresolved(Expr
);
923 Value
*Args
[] = {getDbgIntrinsicValueImpl(VMContext
, Storage
),
924 MetadataAsValue::get(VMContext
, VarInfo
),
925 MetadataAsValue::get(VMContext
, Expr
)};
927 IRBuilder
<> B
= getIRBForDbgInsertion(DL
, InsertBB
, InsertBefore
);
928 return B
.CreateCall(DeclareFn
, Args
);
931 Instruction
*DIBuilder::insertDbgValueIntrinsic(
932 Value
*V
, DILocalVariable
*VarInfo
, DIExpression
*Expr
,
933 const DILocation
*DL
, BasicBlock
*InsertBB
, Instruction
*InsertBefore
) {
934 assert(V
&& "no value passed to dbg.value");
935 assert(VarInfo
&& "empty or invalid DILocalVariable* passed to dbg.value");
936 assert(DL
&& "Expected debug loc");
937 assert(DL
->getScope()->getSubprogram() ==
938 VarInfo
->getScope()->getSubprogram() &&
939 "Expected matching subprograms");
941 ValueFn
= Intrinsic::getDeclaration(&M
, Intrinsic::dbg_value
);
943 trackIfUnresolved(VarInfo
);
944 trackIfUnresolved(Expr
);
945 Value
*Args
[] = {getDbgIntrinsicValueImpl(VMContext
, V
),
946 MetadataAsValue::get(VMContext
, VarInfo
),
947 MetadataAsValue::get(VMContext
, Expr
)};
949 IRBuilder
<> B
= getIRBForDbgInsertion(DL
, InsertBB
, InsertBefore
);
950 return B
.CreateCall(ValueFn
, Args
);
953 Instruction
*DIBuilder::insertLabel(
954 DILabel
*LabelInfo
, const DILocation
*DL
,
955 BasicBlock
*InsertBB
, Instruction
*InsertBefore
) {
956 assert(LabelInfo
&& "empty or invalid DILabel* passed to dbg.label");
957 assert(DL
&& "Expected debug loc");
958 assert(DL
->getScope()->getSubprogram() ==
959 LabelInfo
->getScope()->getSubprogram() &&
960 "Expected matching subprograms");
962 LabelFn
= Intrinsic::getDeclaration(&M
, Intrinsic::dbg_label
);
964 trackIfUnresolved(LabelInfo
);
965 Value
*Args
[] = {MetadataAsValue::get(VMContext
, LabelInfo
)};
967 IRBuilder
<> B
= getIRBForDbgInsertion(DL
, InsertBB
, InsertBefore
);
968 return B
.CreateCall(LabelFn
, Args
);
971 void DIBuilder::replaceVTableHolder(DICompositeType
*&T
,
972 DIType
*VTableHolder
) {
974 TypedTrackingMDRef
<DICompositeType
> N(T
);
975 N
->replaceVTableHolder(VTableHolder
);
979 // If this didn't create a self-reference, just return.
980 if (T
!= VTableHolder
)
983 // Look for unresolved operands. T will drop RAUW support, orphaning any
984 // cycles underneath it.
986 for (const MDOperand
&O
: T
->operands())
987 if (auto *N
= dyn_cast_or_null
<MDNode
>(O
))
988 trackIfUnresolved(N
);
991 void DIBuilder::replaceArrays(DICompositeType
*&T
, DINodeArray Elements
,
992 DINodeArray TParams
) {
994 TypedTrackingMDRef
<DICompositeType
> N(T
);
996 N
->replaceElements(Elements
);
998 N
->replaceTemplateParams(DITemplateParameterArray(TParams
));
1002 // If T isn't resolved, there's no problem.
1003 if (!T
->isResolved())
1006 // If T is resolved, it may be due to a self-reference cycle. Track the
1007 // arrays explicitly if they're unresolved, or else the cycles will be
1010 trackIfUnresolved(Elements
.get());
1012 trackIfUnresolved(TParams
.get());