[InstCombine] Signed saturation patterns
[llvm-core.git] / include / llvm / IR / DIBuilder.h
blobad9a35b554144a32ef609547f842a30abcba7516
1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines a DIBuilder that is useful for creating debugging
10 // information entries in LLVM IR form.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_IR_DIBUILDER_H
15 #define LLVM_IR_DIBUILDER_H
17 #include "llvm/ADT/ArrayRef.h"
18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/ADT/MapVector.h"
20 #include "llvm/ADT/Optional.h"
21 #include "llvm/ADT/SetVector.h"
22 #include "llvm/ADT/SmallVector.h"
23 #include "llvm/ADT/StringRef.h"
24 #include "llvm/IR/DebugInfo.h"
25 #include "llvm/IR/DebugInfoMetadata.h"
26 #include "llvm/IR/TrackingMDRef.h"
27 #include "llvm/Support/Casting.h"
28 #include <algorithm>
29 #include <cstdint>
31 namespace llvm {
33 class BasicBlock;
34 class Constant;
35 class Function;
36 class Instruction;
37 class LLVMContext;
38 class Module;
39 class Value;
41 class DIBuilder {
42 Module &M;
43 LLVMContext &VMContext;
45 DICompileUnit *CUNode; ///< The one compile unit created by this DIBuiler.
46 Function *DeclareFn; ///< llvm.dbg.declare
47 Function *ValueFn; ///< llvm.dbg.value
48 Function *LabelFn; ///< llvm.dbg.label
50 SmallVector<Metadata *, 4> AllEnumTypes;
51 /// Track the RetainTypes, since they can be updated later on.
52 SmallVector<TrackingMDNodeRef, 4> AllRetainTypes;
53 SmallVector<Metadata *, 4> AllSubprograms;
54 SmallVector<Metadata *, 4> AllGVs;
55 SmallVector<TrackingMDNodeRef, 4> AllImportedModules;
56 /// Map Macro parent (which can be DIMacroFile or nullptr) to a list of
57 /// Metadata all of type DIMacroNode.
58 /// DIMacroNode's with nullptr parent are DICompileUnit direct children.
59 MapVector<MDNode *, SetVector<Metadata *>> AllMacrosPerParent;
61 /// Track nodes that may be unresolved.
62 SmallVector<TrackingMDNodeRef, 4> UnresolvedNodes;
63 bool AllowUnresolvedNodes;
65 /// Each subprogram's preserved local variables.
66 ///
67 /// Do not use a std::vector. Some versions of libc++ apparently copy
68 /// instead of move on grow operations, and TrackingMDRef is expensive to
69 /// copy.
70 DenseMap<MDNode *, SmallVector<TrackingMDNodeRef, 1>> PreservedVariables;
72 /// Each subprogram's preserved labels.
73 DenseMap<MDNode *, SmallVector<TrackingMDNodeRef, 1>> PreservedLabels;
75 /// Create a temporary.
76 ///
77 /// Create an \a temporary node and track it in \a UnresolvedNodes.
78 void trackIfUnresolved(MDNode *N);
80 /// Internal helper for insertDeclare.
81 Instruction *insertDeclare(llvm::Value *Storage, DILocalVariable *VarInfo,
82 DIExpression *Expr, const DILocation *DL,
83 BasicBlock *InsertBB, Instruction *InsertBefore);
85 /// Internal helper for insertLabel.
86 Instruction *insertLabel(DILabel *LabelInfo, const DILocation *DL,
87 BasicBlock *InsertBB, Instruction *InsertBefore);
89 /// Internal helper for insertDbgValueIntrinsic.
90 Instruction *
91 insertDbgValueIntrinsic(llvm::Value *Val, DILocalVariable *VarInfo,
92 DIExpression *Expr, const DILocation *DL,
93 BasicBlock *InsertBB, Instruction *InsertBefore);
95 public:
96 /// Construct a builder for a module.
97 ///
98 /// If \c AllowUnresolved, collect unresolved nodes attached to the module
99 /// in order to resolve cycles during \a finalize().
101 /// If \p CU is given a value other than nullptr, then set \p CUNode to CU.
102 explicit DIBuilder(Module &M, bool AllowUnresolved = true,
103 DICompileUnit *CU = nullptr);
104 DIBuilder(const DIBuilder &) = delete;
105 DIBuilder &operator=(const DIBuilder &) = delete;
107 /// Construct any deferred debug info descriptors.
108 void finalize();
110 /// Finalize a specific subprogram - no new variables may be added to this
111 /// subprogram afterwards.
112 void finalizeSubprogram(DISubprogram *SP);
114 /// A CompileUnit provides an anchor for all debugging
115 /// information generated during this instance of compilation.
116 /// \param Lang Source programming language, eg. dwarf::DW_LANG_C99
117 /// \param File File info.
118 /// \param Producer Identify the producer of debugging information
119 /// and code. Usually this is a compiler
120 /// version string.
121 /// \param isOptimized A boolean flag which indicates whether optimization
122 /// is enabled or not.
123 /// \param Flags This string lists command line options. This
124 /// string is directly embedded in debug info
125 /// output which may be used by a tool
126 /// analyzing generated debugging information.
127 /// \param RV This indicates runtime version for languages like
128 /// Objective-C.
129 /// \param SplitName The name of the file that we'll split debug info
130 /// out into.
131 /// \param Kind The kind of debug information to generate.
132 /// \param DWOId The DWOId if this is a split skeleton compile unit.
133 /// \param SplitDebugInlining Whether to emit inline debug info.
134 /// \param DebugInfoForProfiling Whether to emit extra debug info for
135 /// profile collection.
136 /// \param NameTableKind Whether to emit .debug_gnu_pubnames,
137 /// .debug_pubnames, or no pubnames at all.
138 DICompileUnit *
139 createCompileUnit(unsigned Lang, DIFile *File, StringRef Producer,
140 bool isOptimized, StringRef Flags, unsigned RV,
141 StringRef SplitName = StringRef(),
142 DICompileUnit::DebugEmissionKind Kind =
143 DICompileUnit::DebugEmissionKind::FullDebug,
144 uint64_t DWOId = 0, bool SplitDebugInlining = true,
145 bool DebugInfoForProfiling = false,
146 DICompileUnit::DebugNameTableKind NameTableKind =
147 DICompileUnit::DebugNameTableKind::Default,
148 bool RangesBaseAddress = false);
150 /// Create a file descriptor to hold debugging information for a file.
151 /// \param Filename File name.
152 /// \param Directory Directory.
153 /// \param Checksum Optional checksum kind (e.g. CSK_MD5, CSK_SHA1, etc.)
154 /// and value.
155 /// \param Source Optional source text.
156 DIFile *
157 createFile(StringRef Filename, StringRef Directory,
158 Optional<DIFile::ChecksumInfo<StringRef>> Checksum = None,
159 Optional<StringRef> Source = None);
161 /// Create debugging information entry for a macro.
162 /// \param Parent Macro parent (could be nullptr).
163 /// \param Line Source line number where the macro is defined.
164 /// \param MacroType DW_MACINFO_define or DW_MACINFO_undef.
165 /// \param Name Macro name.
166 /// \param Value Macro value.
167 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType,
168 StringRef Name, StringRef Value = StringRef());
170 /// Create debugging information temporary entry for a macro file.
171 /// List of macro node direct children will be calculated by DIBuilder,
172 /// using the \p Parent relationship.
173 /// \param Parent Macro file parent (could be nullptr).
174 /// \param Line Source line number where the macro file is included.
175 /// \param File File descriptor containing the name of the macro file.
176 DIMacroFile *createTempMacroFile(DIMacroFile *Parent, unsigned Line,
177 DIFile *File);
179 /// Create a single enumerator value.
180 DIEnumerator *createEnumerator(StringRef Name, int64_t Val, bool IsUnsigned = false);
182 /// Create a DWARF unspecified type.
183 DIBasicType *createUnspecifiedType(StringRef Name);
185 /// Create C++11 nullptr type.
186 DIBasicType *createNullPtrType();
188 /// Create debugging information entry for a basic
189 /// type.
190 /// \param Name Type name.
191 /// \param SizeInBits Size of the type.
192 /// \param Encoding DWARF encoding code, e.g., dwarf::DW_ATE_float.
193 /// \param Flags Optional DWARF attributes, e.g., DW_AT_endianity.
194 DIBasicType *createBasicType(StringRef Name, uint64_t SizeInBits,
195 unsigned Encoding,
196 DINode::DIFlags Flags = DINode::FlagZero);
198 /// Create debugging information entry for a qualified
199 /// type, e.g. 'const int'.
200 /// \param Tag Tag identifing type, e.g. dwarf::TAG_volatile_type
201 /// \param FromTy Base Type.
202 DIDerivedType *createQualifiedType(unsigned Tag, DIType *FromTy);
204 /// Create debugging information entry for a pointer.
205 /// \param PointeeTy Type pointed by this pointer.
206 /// \param SizeInBits Size.
207 /// \param AlignInBits Alignment. (optional)
208 /// \param DWARFAddressSpace DWARF address space. (optional)
209 /// \param Name Pointer type name. (optional)
210 DIDerivedType *createPointerType(DIType *PointeeTy, uint64_t SizeInBits,
211 uint32_t AlignInBits = 0,
212 Optional<unsigned> DWARFAddressSpace =
213 None,
214 StringRef Name = "");
216 /// Create debugging information entry for a pointer to member.
217 /// \param PointeeTy Type pointed to by this pointer.
218 /// \param SizeInBits Size.
219 /// \param AlignInBits Alignment. (optional)
220 /// \param Class Type for which this pointer points to members of.
221 DIDerivedType *
222 createMemberPointerType(DIType *PointeeTy, DIType *Class,
223 uint64_t SizeInBits, uint32_t AlignInBits = 0,
224 DINode::DIFlags Flags = DINode::FlagZero);
226 /// Create debugging information entry for a c++
227 /// style reference or rvalue reference type.
228 DIDerivedType *createReferenceType(unsigned Tag, DIType *RTy,
229 uint64_t SizeInBits = 0,
230 uint32_t AlignInBits = 0,
231 Optional<unsigned> DWARFAddressSpace =
232 None);
234 /// Create debugging information entry for a typedef.
235 /// \param Ty Original type.
236 /// \param Name Typedef name.
237 /// \param File File where this type is defined.
238 /// \param LineNo Line number.
239 /// \param Context The surrounding context for the typedef.
240 DIDerivedType *createTypedef(DIType *Ty, StringRef Name, DIFile *File,
241 unsigned LineNo, DIScope *Context);
243 /// Create debugging information entry for a 'friend'.
244 DIDerivedType *createFriend(DIType *Ty, DIType *FriendTy);
246 /// Create debugging information entry to establish
247 /// inheritance relationship between two types.
248 /// \param Ty Original type.
249 /// \param BaseTy Base type. Ty is inherits from base.
250 /// \param BaseOffset Base offset.
251 /// \param VBPtrOffset Virtual base pointer offset.
252 /// \param Flags Flags to describe inheritance attribute,
253 /// e.g. private
254 DIDerivedType *createInheritance(DIType *Ty, DIType *BaseTy,
255 uint64_t BaseOffset, uint32_t VBPtrOffset,
256 DINode::DIFlags Flags);
258 /// Create debugging information entry for a member.
259 /// \param Scope Member scope.
260 /// \param Name Member name.
261 /// \param File File where this member is defined.
262 /// \param LineNo Line number.
263 /// \param SizeInBits Member size.
264 /// \param AlignInBits Member alignment.
265 /// \param OffsetInBits Member offset.
266 /// \param Flags Flags to encode member attribute, e.g. private
267 /// \param Ty Parent type.
268 DIDerivedType *createMemberType(DIScope *Scope, StringRef Name,
269 DIFile *File, unsigned LineNo,
270 uint64_t SizeInBits,
271 uint32_t AlignInBits,
272 uint64_t OffsetInBits,
273 DINode::DIFlags Flags, DIType *Ty);
275 /// Create debugging information entry for a variant. A variant
276 /// normally should be a member of a variant part.
277 /// \param Scope Member scope.
278 /// \param Name Member name.
279 /// \param File File where this member is defined.
280 /// \param LineNo Line number.
281 /// \param SizeInBits Member size.
282 /// \param AlignInBits Member alignment.
283 /// \param OffsetInBits Member offset.
284 /// \param Flags Flags to encode member attribute, e.g. private
285 /// \param Discriminant The discriminant for this branch; null for
286 /// the default branch
287 /// \param Ty Parent type.
288 DIDerivedType *createVariantMemberType(DIScope *Scope, StringRef Name,
289 DIFile *File, unsigned LineNo,
290 uint64_t SizeInBits,
291 uint32_t AlignInBits,
292 uint64_t OffsetInBits,
293 Constant *Discriminant,
294 DINode::DIFlags Flags, DIType *Ty);
296 /// Create debugging information entry for a bit field member.
297 /// \param Scope Member scope.
298 /// \param Name Member name.
299 /// \param File File where this member is defined.
300 /// \param LineNo Line number.
301 /// \param SizeInBits Member size.
302 /// \param OffsetInBits Member offset.
303 /// \param StorageOffsetInBits Member storage offset.
304 /// \param Flags Flags to encode member attribute.
305 /// \param Ty Parent type.
306 DIDerivedType *createBitFieldMemberType(
307 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNo,
308 uint64_t SizeInBits, uint64_t OffsetInBits,
309 uint64_t StorageOffsetInBits, DINode::DIFlags Flags, DIType *Ty);
311 /// Create debugging information entry for a
312 /// C++ static data member.
313 /// \param Scope Member scope.
314 /// \param Name Member name.
315 /// \param File File where this member is declared.
316 /// \param LineNo Line number.
317 /// \param Ty Type of the static member.
318 /// \param Flags Flags to encode member attribute, e.g. private.
319 /// \param Val Const initializer of the member.
320 /// \param AlignInBits Member alignment.
321 DIDerivedType *createStaticMemberType(DIScope *Scope, StringRef Name,
322 DIFile *File, unsigned LineNo,
323 DIType *Ty, DINode::DIFlags Flags,
324 Constant *Val,
325 uint32_t AlignInBits = 0);
327 /// Create debugging information entry for Objective-C
328 /// instance variable.
329 /// \param Name Member name.
330 /// \param File File where this member is defined.
331 /// \param LineNo Line number.
332 /// \param SizeInBits Member size.
333 /// \param AlignInBits Member alignment.
334 /// \param OffsetInBits Member offset.
335 /// \param Flags Flags to encode member attribute, e.g. private
336 /// \param Ty Parent type.
337 /// \param PropertyNode Property associated with this ivar.
338 DIDerivedType *createObjCIVar(StringRef Name, DIFile *File, unsigned LineNo,
339 uint64_t SizeInBits, uint32_t AlignInBits,
340 uint64_t OffsetInBits, DINode::DIFlags Flags,
341 DIType *Ty, MDNode *PropertyNode);
343 /// Create debugging information entry for Objective-C
344 /// property.
345 /// \param Name Property name.
346 /// \param File File where this property is defined.
347 /// \param LineNumber Line number.
348 /// \param GetterName Name of the Objective C property getter selector.
349 /// \param SetterName Name of the Objective C property setter selector.
350 /// \param PropertyAttributes Objective C property attributes.
351 /// \param Ty Type.
352 DIObjCProperty *createObjCProperty(StringRef Name, DIFile *File,
353 unsigned LineNumber,
354 StringRef GetterName,
355 StringRef SetterName,
356 unsigned PropertyAttributes, DIType *Ty);
358 /// Create debugging information entry for a class.
359 /// \param Scope Scope in which this class is defined.
360 /// \param Name class name.
361 /// \param File File where this member is defined.
362 /// \param LineNumber Line number.
363 /// \param SizeInBits Member size.
364 /// \param AlignInBits Member alignment.
365 /// \param OffsetInBits Member offset.
366 /// \param Flags Flags to encode member attribute, e.g. private
367 /// \param Elements class members.
368 /// \param VTableHolder Debug info of the base class that contains vtable
369 /// for this type. This is used in
370 /// DW_AT_containing_type. See DWARF documentation
371 /// for more info.
372 /// \param TemplateParms Template type parameters.
373 /// \param UniqueIdentifier A unique identifier for the class.
374 DICompositeType *createClassType(
375 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNumber,
376 uint64_t SizeInBits, uint32_t AlignInBits, uint64_t OffsetInBits,
377 DINode::DIFlags Flags, DIType *DerivedFrom, DINodeArray Elements,
378 DIType *VTableHolder = nullptr, MDNode *TemplateParms = nullptr,
379 StringRef UniqueIdentifier = "");
381 /// Create debugging information entry for a struct.
382 /// \param Scope Scope in which this struct is defined.
383 /// \param Name Struct name.
384 /// \param File File where this member is defined.
385 /// \param LineNumber Line number.
386 /// \param SizeInBits Member size.
387 /// \param AlignInBits Member alignment.
388 /// \param Flags Flags to encode member attribute, e.g. private
389 /// \param Elements Struct elements.
390 /// \param RunTimeLang Optional parameter, Objective-C runtime version.
391 /// \param UniqueIdentifier A unique identifier for the struct.
392 DICompositeType *createStructType(
393 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNumber,
394 uint64_t SizeInBits, uint32_t AlignInBits, DINode::DIFlags Flags,
395 DIType *DerivedFrom, DINodeArray Elements, unsigned RunTimeLang = 0,
396 DIType *VTableHolder = nullptr, StringRef UniqueIdentifier = "");
398 /// Create debugging information entry for an union.
399 /// \param Scope Scope in which this union is defined.
400 /// \param Name Union name.
401 /// \param File File where this member is defined.
402 /// \param LineNumber Line number.
403 /// \param SizeInBits Member size.
404 /// \param AlignInBits Member alignment.
405 /// \param Flags Flags to encode member attribute, e.g. private
406 /// \param Elements Union elements.
407 /// \param RunTimeLang Optional parameter, Objective-C runtime version.
408 /// \param UniqueIdentifier A unique identifier for the union.
409 DICompositeType *createUnionType(DIScope *Scope, StringRef Name,
410 DIFile *File, unsigned LineNumber,
411 uint64_t SizeInBits, uint32_t AlignInBits,
412 DINode::DIFlags Flags,
413 DINodeArray Elements,
414 unsigned RunTimeLang = 0,
415 StringRef UniqueIdentifier = "");
417 /// Create debugging information entry for a variant part. A
418 /// variant part normally has a discriminator (though this is not
419 /// required) and a number of variant children.
420 /// \param Scope Scope in which this union is defined.
421 /// \param Name Union name.
422 /// \param File File where this member is defined.
423 /// \param LineNumber Line number.
424 /// \param SizeInBits Member size.
425 /// \param AlignInBits Member alignment.
426 /// \param Flags Flags to encode member attribute, e.g. private
427 /// \param Discriminator Discriminant member
428 /// \param Elements Variant elements.
429 /// \param UniqueIdentifier A unique identifier for the union.
430 DICompositeType *createVariantPart(DIScope *Scope, StringRef Name,
431 DIFile *File, unsigned LineNumber,
432 uint64_t SizeInBits, uint32_t AlignInBits,
433 DINode::DIFlags Flags,
434 DIDerivedType *Discriminator,
435 DINodeArray Elements,
436 StringRef UniqueIdentifier = "");
438 /// Create debugging information for template
439 /// type parameter.
440 /// \param Scope Scope in which this type is defined.
441 /// \param Name Type parameter name.
442 /// \param Ty Parameter type.
443 DITemplateTypeParameter *
444 createTemplateTypeParameter(DIScope *Scope, StringRef Name, DIType *Ty);
446 /// Create debugging information for template
447 /// value parameter.
448 /// \param Scope Scope in which this type is defined.
449 /// \param Name Value parameter name.
450 /// \param Ty Parameter type.
451 /// \param Val Constant parameter value.
452 DITemplateValueParameter *createTemplateValueParameter(DIScope *Scope,
453 StringRef Name,
454 DIType *Ty,
455 Constant *Val);
457 /// Create debugging information for a template template parameter.
458 /// \param Scope Scope in which this type is defined.
459 /// \param Name Value parameter name.
460 /// \param Ty Parameter type.
461 /// \param Val The fully qualified name of the template.
462 DITemplateValueParameter *createTemplateTemplateParameter(DIScope *Scope,
463 StringRef Name,
464 DIType *Ty,
465 StringRef Val);
467 /// Create debugging information for a template parameter pack.
468 /// \param Scope Scope in which this type is defined.
469 /// \param Name Value parameter name.
470 /// \param Ty Parameter type.
471 /// \param Val An array of types in the pack.
472 DITemplateValueParameter *createTemplateParameterPack(DIScope *Scope,
473 StringRef Name,
474 DIType *Ty,
475 DINodeArray Val);
477 /// Create debugging information entry for an array.
478 /// \param Size Array size.
479 /// \param AlignInBits Alignment.
480 /// \param Ty Element type.
481 /// \param Subscripts Subscripts.
482 DICompositeType *createArrayType(uint64_t Size, uint32_t AlignInBits,
483 DIType *Ty, DINodeArray Subscripts);
485 /// Create debugging information entry for a vector type.
486 /// \param Size Array size.
487 /// \param AlignInBits Alignment.
488 /// \param Ty Element type.
489 /// \param Subscripts Subscripts.
490 DICompositeType *createVectorType(uint64_t Size, uint32_t AlignInBits,
491 DIType *Ty, DINodeArray Subscripts);
493 /// Create debugging information entry for an
494 /// enumeration.
495 /// \param Scope Scope in which this enumeration is defined.
496 /// \param Name Union name.
497 /// \param File File where this member is defined.
498 /// \param LineNumber Line number.
499 /// \param SizeInBits Member size.
500 /// \param AlignInBits Member alignment.
501 /// \param Elements Enumeration elements.
502 /// \param UnderlyingType Underlying type of a C++11/ObjC fixed enum.
503 /// \param UniqueIdentifier A unique identifier for the enum.
504 /// \param IsScoped Boolean flag indicate if this is C++11/ObjC 'enum class'.
505 DICompositeType *createEnumerationType(
506 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNumber,
507 uint64_t SizeInBits, uint32_t AlignInBits, DINodeArray Elements,
508 DIType *UnderlyingType, StringRef UniqueIdentifier = "", bool IsScoped = false);
510 /// Create subroutine type.
511 /// \param ParameterTypes An array of subroutine parameter types. This
512 /// includes return type at 0th index.
513 /// \param Flags E.g.: LValueReference.
514 /// These flags are used to emit dwarf attributes.
515 /// \param CC Calling convention, e.g. dwarf::DW_CC_normal
516 DISubroutineType *
517 createSubroutineType(DITypeRefArray ParameterTypes,
518 DINode::DIFlags Flags = DINode::FlagZero,
519 unsigned CC = 0);
521 /// Create a distinct clone of \p SP with FlagArtificial set.
522 static DISubprogram *createArtificialSubprogram(DISubprogram *SP);
524 /// Create a uniqued clone of \p Ty with FlagArtificial set.
525 static DIType *createArtificialType(DIType *Ty);
527 /// Create a uniqued clone of \p Ty with FlagObjectPointer and
528 /// FlagArtificial set.
529 static DIType *createObjectPointerType(DIType *Ty);
531 /// Create a permanent forward-declared type.
532 DICompositeType *createForwardDecl(unsigned Tag, StringRef Name,
533 DIScope *Scope, DIFile *F, unsigned Line,
534 unsigned RuntimeLang = 0,
535 uint64_t SizeInBits = 0,
536 uint32_t AlignInBits = 0,
537 StringRef UniqueIdentifier = "");
539 /// Create a temporary forward-declared type.
540 DICompositeType *createReplaceableCompositeType(
541 unsigned Tag, StringRef Name, DIScope *Scope, DIFile *F, unsigned Line,
542 unsigned RuntimeLang = 0, uint64_t SizeInBits = 0,
543 uint32_t AlignInBits = 0, DINode::DIFlags Flags = DINode::FlagFwdDecl,
544 StringRef UniqueIdentifier = "");
546 /// Retain DIScope* in a module even if it is not referenced
547 /// through debug info anchors.
548 void retainType(DIScope *T);
550 /// Create unspecified parameter type
551 /// for a subroutine type.
552 DIBasicType *createUnspecifiedParameter();
554 /// Get a DINodeArray, create one if required.
555 DINodeArray getOrCreateArray(ArrayRef<Metadata *> Elements);
557 /// Get a DIMacroNodeArray, create one if required.
558 DIMacroNodeArray getOrCreateMacroArray(ArrayRef<Metadata *> Elements);
560 /// Get a DITypeRefArray, create one if required.
561 DITypeRefArray getOrCreateTypeArray(ArrayRef<Metadata *> Elements);
563 /// Create a descriptor for a value range. This
564 /// implicitly uniques the values returned.
565 DISubrange *getOrCreateSubrange(int64_t Lo, int64_t Count);
566 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
568 /// Create a new descriptor for the specified variable.
569 /// \param Context Variable scope.
570 /// \param Name Name of the variable.
571 /// \param LinkageName Mangled name of the variable.
572 /// \param File File where this variable is defined.
573 /// \param LineNo Line number.
574 /// \param Ty Variable Type.
575 /// \param isLocalToUnit Boolean flag indicate whether this variable is
576 /// externally visible or not.
577 /// \param Expr The location of the global relative to the attached
578 /// GlobalVariable.
579 /// \param Decl Reference to the corresponding declaration.
580 /// \param AlignInBits Variable alignment(or 0 if no alignment attr was
581 /// specified)
582 DIGlobalVariableExpression *createGlobalVariableExpression(
583 DIScope *Context, StringRef Name, StringRef LinkageName, DIFile *File,
584 unsigned LineNo, DIType *Ty, bool isLocalToUnit,
585 DIExpression *Expr = nullptr, MDNode *Decl = nullptr,
586 MDTuple *templateParams = nullptr, uint32_t AlignInBits = 0);
588 /// Identical to createGlobalVariable
589 /// except that the resulting DbgNode is temporary and meant to be RAUWed.
590 DIGlobalVariable *createTempGlobalVariableFwdDecl(
591 DIScope *Context, StringRef Name, StringRef LinkageName, DIFile *File,
592 unsigned LineNo, DIType *Ty, bool isLocalToUnit, MDNode *Decl = nullptr,
593 MDTuple *templateParams = nullptr, uint32_t AlignInBits = 0);
595 /// Create a new descriptor for an auto variable. This is a local variable
596 /// that is not a subprogram parameter.
598 /// \c Scope must be a \a DILocalScope, and thus its scope chain eventually
599 /// leads to a \a DISubprogram.
601 /// If \c AlwaysPreserve, this variable will be referenced from its
602 /// containing subprogram, and will survive some optimizations.
603 DILocalVariable *
604 createAutoVariable(DIScope *Scope, StringRef Name, DIFile *File,
605 unsigned LineNo, DIType *Ty, bool AlwaysPreserve = false,
606 DINode::DIFlags Flags = DINode::FlagZero,
607 uint32_t AlignInBits = 0);
609 /// Create a new descriptor for an label.
611 /// \c Scope must be a \a DILocalScope, and thus its scope chain eventually
612 /// leads to a \a DISubprogram.
613 DILabel *
614 createLabel(DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNo,
615 bool AlwaysPreserve = false);
617 /// Create a new descriptor for a parameter variable.
619 /// \c Scope must be a \a DILocalScope, and thus its scope chain eventually
620 /// leads to a \a DISubprogram.
622 /// \c ArgNo is the index (starting from \c 1) of this variable in the
623 /// subprogram parameters. \c ArgNo should not conflict with other
624 /// parameters of the same subprogram.
626 /// If \c AlwaysPreserve, this variable will be referenced from its
627 /// containing subprogram, and will survive some optimizations.
628 DILocalVariable *
629 createParameterVariable(DIScope *Scope, StringRef Name, unsigned ArgNo,
630 DIFile *File, unsigned LineNo, DIType *Ty,
631 bool AlwaysPreserve = false,
632 DINode::DIFlags Flags = DINode::FlagZero);
634 /// Create a new descriptor for the specified
635 /// variable which has a complex address expression for its address.
636 /// \param Addr An array of complex address operations.
637 DIExpression *createExpression(ArrayRef<uint64_t> Addr = None);
638 DIExpression *createExpression(ArrayRef<int64_t> Addr);
640 /// Create an expression for a variable that does not have an address, but
641 /// does have a constant value.
642 DIExpression *createConstantValueExpression(uint64_t Val) {
643 return DIExpression::get(
644 VMContext, {dwarf::DW_OP_constu, Val, dwarf::DW_OP_stack_value});
647 /// Create a new descriptor for the specified subprogram.
648 /// See comments in DISubprogram* for descriptions of these fields.
649 /// \param Scope Function scope.
650 /// \param Name Function name.
651 /// \param LinkageName Mangled function name.
652 /// \param File File where this variable is defined.
653 /// \param LineNo Line number.
654 /// \param Ty Function type.
655 /// \param ScopeLine Set to the beginning of the scope this starts
656 /// \param Flags e.g. is this function prototyped or not.
657 /// These flags are used to emit dwarf attributes.
658 /// \param SPFlags Additional flags specific to subprograms.
659 /// \param TParams Function template parameters.
660 /// \param ThrownTypes Exception types this function may throw.
661 DISubprogram *
662 createFunction(DIScope *Scope, StringRef Name, StringRef LinkageName,
663 DIFile *File, unsigned LineNo, DISubroutineType *Ty,
664 unsigned ScopeLine, DINode::DIFlags Flags = DINode::FlagZero,
665 DISubprogram::DISPFlags SPFlags = DISubprogram::SPFlagZero,
666 DITemplateParameterArray TParams = nullptr,
667 DISubprogram *Decl = nullptr,
668 DITypeArray ThrownTypes = nullptr);
670 /// Identical to createFunction,
671 /// except that the resulting DbgNode is meant to be RAUWed.
672 DISubprogram *createTempFunctionFwdDecl(
673 DIScope *Scope, StringRef Name, StringRef LinkageName, DIFile *File,
674 unsigned LineNo, DISubroutineType *Ty, unsigned ScopeLine,
675 DINode::DIFlags Flags = DINode::FlagZero,
676 DISubprogram::DISPFlags SPFlags = DISubprogram::SPFlagZero,
677 DITemplateParameterArray TParams = nullptr,
678 DISubprogram *Decl = nullptr, DITypeArray ThrownTypes = nullptr);
680 /// Create a new descriptor for the specified C++ method.
681 /// See comments in \a DISubprogram* for descriptions of these fields.
682 /// \param Scope Function scope.
683 /// \param Name Function name.
684 /// \param LinkageName Mangled function name.
685 /// \param File File where this variable is defined.
686 /// \param LineNo Line number.
687 /// \param Ty Function type.
688 /// \param VTableIndex Index no of this method in virtual table, or -1u if
689 /// unrepresentable.
690 /// \param ThisAdjustment
691 /// MS ABI-specific adjustment of 'this' that occurs
692 /// in the prologue.
693 /// \param VTableHolder Type that holds vtable.
694 /// \param Flags e.g. is this function prototyped or not.
695 /// This flags are used to emit dwarf attributes.
696 /// \param SPFlags Additional flags specific to subprograms.
697 /// \param TParams Function template parameters.
698 /// \param ThrownTypes Exception types this function may throw.
699 DISubprogram *
700 createMethod(DIScope *Scope, StringRef Name, StringRef LinkageName,
701 DIFile *File, unsigned LineNo, DISubroutineType *Ty,
702 unsigned VTableIndex = 0, int ThisAdjustment = 0,
703 DIType *VTableHolder = nullptr,
704 DINode::DIFlags Flags = DINode::FlagZero,
705 DISubprogram::DISPFlags SPFlags = DISubprogram::SPFlagZero,
706 DITemplateParameterArray TParams = nullptr,
707 DITypeArray ThrownTypes = nullptr);
709 /// Create common block entry for a Fortran common block.
710 /// \param Scope Scope of this common block.
711 /// \param decl Global variable declaration.
712 /// \param Name The name of this common block.
713 /// \param File The file this common block is defined.
714 /// \param LineNo Line number.
715 DICommonBlock *createCommonBlock(DIScope *Scope, DIGlobalVariable *decl,
716 StringRef Name, DIFile *File,
717 unsigned LineNo);
719 /// This creates new descriptor for a namespace with the specified
720 /// parent scope.
721 /// \param Scope Namespace scope
722 /// \param Name Name of this namespace
723 /// \param ExportSymbols True for C++ inline namespaces.
724 DINamespace *createNameSpace(DIScope *Scope, StringRef Name,
725 bool ExportSymbols);
727 /// This creates new descriptor for a module with the specified
728 /// parent scope.
729 /// \param Scope Parent scope
730 /// \param Name Name of this module
731 /// \param ConfigurationMacros
732 /// A space-separated shell-quoted list of -D macro
733 /// definitions as they would appear on a command line.
734 /// \param IncludePath The path to the module map file.
735 /// \param ISysRoot The clang system root (value of -isysroot).
736 DIModule *createModule(DIScope *Scope, StringRef Name,
737 StringRef ConfigurationMacros,
738 StringRef IncludePath,
739 StringRef ISysRoot);
741 /// This creates a descriptor for a lexical block with a new file
742 /// attached. This merely extends the existing
743 /// lexical block as it crosses a file.
744 /// \param Scope Lexical block.
745 /// \param File Source file.
746 /// \param Discriminator DWARF path discriminator value.
747 DILexicalBlockFile *createLexicalBlockFile(DIScope *Scope, DIFile *File,
748 unsigned Discriminator = 0);
750 /// This creates a descriptor for a lexical block with the
751 /// specified parent context.
752 /// \param Scope Parent lexical scope.
753 /// \param File Source file.
754 /// \param Line Line number.
755 /// \param Col Column number.
756 DILexicalBlock *createLexicalBlock(DIScope *Scope, DIFile *File,
757 unsigned Line, unsigned Col);
759 /// Create a descriptor for an imported module.
760 /// \param Context The scope this module is imported into
761 /// \param NS The namespace being imported here.
762 /// \param File File where the declaration is located.
763 /// \param Line Line number of the declaration.
764 DIImportedEntity *createImportedModule(DIScope *Context, DINamespace *NS,
765 DIFile *File, unsigned Line);
767 /// Create a descriptor for an imported module.
768 /// \param Context The scope this module is imported into.
769 /// \param NS An aliased namespace.
770 /// \param File File where the declaration is located.
771 /// \param Line Line number of the declaration.
772 DIImportedEntity *createImportedModule(DIScope *Context,
773 DIImportedEntity *NS, DIFile *File,
774 unsigned Line);
776 /// Create a descriptor for an imported module.
777 /// \param Context The scope this module is imported into.
778 /// \param M The module being imported here
779 /// \param File File where the declaration is located.
780 /// \param Line Line number of the declaration.
781 DIImportedEntity *createImportedModule(DIScope *Context, DIModule *M,
782 DIFile *File, unsigned Line);
784 /// Create a descriptor for an imported function.
785 /// \param Context The scope this module is imported into.
786 /// \param Decl The declaration (or definition) of a function, type, or
787 /// variable.
788 /// \param File File where the declaration is located.
789 /// \param Line Line number of the declaration.
790 DIImportedEntity *createImportedDeclaration(DIScope *Context, DINode *Decl,
791 DIFile *File, unsigned Line,
792 StringRef Name = "");
794 /// Insert a new llvm.dbg.declare intrinsic call.
795 /// \param Storage llvm::Value of the variable
796 /// \param VarInfo Variable's debug info descriptor.
797 /// \param Expr A complex location expression.
798 /// \param DL Debug info location.
799 /// \param InsertAtEnd Location for the new intrinsic.
800 Instruction *insertDeclare(llvm::Value *Storage, DILocalVariable *VarInfo,
801 DIExpression *Expr, const DILocation *DL,
802 BasicBlock *InsertAtEnd);
804 /// Insert a new llvm.dbg.declare intrinsic call.
805 /// \param Storage llvm::Value of the variable
806 /// \param VarInfo Variable's debug info descriptor.
807 /// \param Expr A complex location expression.
808 /// \param DL Debug info location.
809 /// \param InsertBefore Location for the new intrinsic.
810 Instruction *insertDeclare(llvm::Value *Storage, DILocalVariable *VarInfo,
811 DIExpression *Expr, const DILocation *DL,
812 Instruction *InsertBefore);
814 /// Insert a new llvm.dbg.label intrinsic call.
815 /// \param LabelInfo Label's debug info descriptor.
816 /// \param DL Debug info location.
817 /// \param InsertBefore Location for the new intrinsic.
818 Instruction *insertLabel(DILabel *LabelInfo, const DILocation *DL,
819 Instruction *InsertBefore);
821 /// Insert a new llvm.dbg.label intrinsic call.
822 /// \param LabelInfo Label's debug info descriptor.
823 /// \param DL Debug info location.
824 /// \param InsertAtEnd Location for the new intrinsic.
825 Instruction *insertLabel(DILabel *LabelInfo, const DILocation *DL,
826 BasicBlock *InsertAtEnd);
828 /// Insert a new llvm.dbg.value intrinsic call.
829 /// \param Val llvm::Value of the variable
830 /// \param VarInfo Variable's debug info descriptor.
831 /// \param Expr A complex location expression.
832 /// \param DL Debug info location.
833 /// \param InsertAtEnd Location for the new intrinsic.
834 Instruction *insertDbgValueIntrinsic(llvm::Value *Val,
835 DILocalVariable *VarInfo,
836 DIExpression *Expr,
837 const DILocation *DL,
838 BasicBlock *InsertAtEnd);
840 /// Insert a new llvm.dbg.value intrinsic call.
841 /// \param Val llvm::Value of the variable
842 /// \param VarInfo Variable's debug info descriptor.
843 /// \param Expr A complex location expression.
844 /// \param DL Debug info location.
845 /// \param InsertBefore Location for the new intrinsic.
846 Instruction *insertDbgValueIntrinsic(llvm::Value *Val,
847 DILocalVariable *VarInfo,
848 DIExpression *Expr,
849 const DILocation *DL,
850 Instruction *InsertBefore);
852 /// Replace the vtable holder in the given type.
854 /// If this creates a self reference, it may orphan some unresolved cycles
855 /// in the operands of \c T, so \a DIBuilder needs to track that.
856 void replaceVTableHolder(DICompositeType *&T,
857 DIType *VTableHolder);
859 /// Replace arrays on a composite type.
861 /// If \c T is resolved, but the arrays aren't -- which can happen if \c T
862 /// has a self-reference -- \a DIBuilder needs to track the array to
863 /// resolve cycles.
864 void replaceArrays(DICompositeType *&T, DINodeArray Elements,
865 DINodeArray TParams = DINodeArray());
867 /// Replace a temporary node.
869 /// Call \a MDNode::replaceAllUsesWith() on \c N, replacing it with \c
870 /// Replacement.
872 /// If \c Replacement is the same as \c N.get(), instead call \a
873 /// MDNode::replaceWithUniqued(). In this case, the uniqued node could
874 /// have a different address, so we return the final address.
875 template <class NodeTy>
876 NodeTy *replaceTemporary(TempMDNode &&N, NodeTy *Replacement) {
877 if (N.get() == Replacement)
878 return cast<NodeTy>(MDNode::replaceWithUniqued(std::move(N)));
880 N->replaceAllUsesWith(Replacement);
881 return Replacement;
885 // Create wrappers for C Binding types (see CBindingWrapping.h).
886 DEFINE_ISA_CONVERSION_FUNCTIONS(DIBuilder, LLVMDIBuilderRef)
888 } // end namespace llvm
890 #endif // LLVM_IR_DIBUILDER_H