Debug info: Use DW_OP_bit_piece instead of DW_OP_piece in the
[oota-llvm.git] / include / llvm / IR / DIBuilder.h
1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
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 defines a DIBuilder that is useful for creating debugging
11 // information entries in LLVM IR form.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_IR_DIBUILDER_H
16 #define LLVM_IR_DIBUILDER_H
17
18 #include "llvm/ADT/ArrayRef.h"
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/IR/DebugInfo.h"
21 #include "llvm/IR/TrackingMDRef.h"
22 #include "llvm/IR/ValueHandle.h"
23 #include "llvm/Support/DataTypes.h"
24
25 namespace llvm {
26   class BasicBlock;
27   class Instruction;
28   class Function;
29   class Module;
30   class Value;
31   class Constant;
32   class LLVMContext;
33   class MDNode;
34   class StringRef;
35   class DIBasicType;
36   class DICompileUnit;
37   class DICompositeType;
38   class DIDerivedType;
39   class DIDescriptor;
40   class DIFile;
41   class DIEnumerator;
42   class DIType;
43   class DIGlobalVariable;
44   class DIImportedEntity;
45   class DINameSpace;
46   class DIVariable;
47   class DISubrange;
48   class DILexicalBlockFile;
49   class DILexicalBlock;
50   class DIScope;
51   class DISubprogram;
52   class DITemplateTypeParameter;
53   class DITemplateValueParameter;
54   class DIObjCProperty;
55
56   class DIBuilder {
57     Module &M;
58     LLVMContext &VMContext;
59
60     MDNode *TempEnumTypes;
61     MDNode *TempRetainTypes;
62     MDNode *TempSubprograms;
63     MDNode *TempGVs;
64     MDNode *TempImportedModules;
65
66     Function *DeclareFn;     // llvm.dbg.declare
67     Function *ValueFn;       // llvm.dbg.value
68
69     SmallVector<Metadata *, 4> AllEnumTypes;
70     /// Track the RetainTypes, since they can be updated later on.
71     SmallVector<TrackingMDNodeRef, 4> AllRetainTypes;
72     SmallVector<Metadata *, 4> AllSubprograms;
73     SmallVector<Metadata *, 4> AllGVs;
74     SmallVector<TrackingMDNodeRef, 4> AllImportedModules;
75
76     /// \brief Track nodes that may be unresolved.
77     SmallVector<TrackingMDNodeRef, 4> UnresolvedNodes;
78     bool AllowUnresolvedNodes;
79
80     /// Each subprogram's preserved local variables.
81     DenseMap<MDNode *, std::vector<TrackingMDNodeRef>> PreservedVariables;
82
83     DIBuilder(const DIBuilder &) LLVM_DELETED_FUNCTION;
84     void operator=(const DIBuilder &) LLVM_DELETED_FUNCTION;
85
86     /// \brief Create a temporary.
87     ///
88     /// Create an \a temporary node and track it in \a UnresolvedNodes.
89     void trackIfUnresolved(MDNode *N);
90
91   public:
92     /// \brief Construct a builder for a module.
93     ///
94     /// If \c AllowUnresolved, collect unresolved nodes attached to the module
95     /// in order to resolve cycles during \a finalize().
96     explicit DIBuilder(Module &M, bool AllowUnresolved = true);
97     enum DebugEmissionKind { FullDebug=1, LineTablesOnly };
98
99     /// finalize - Construct any deferred debug info descriptors.
100     void finalize();
101
102     /// createCompileUnit - A CompileUnit provides an anchor for all debugging
103     /// information generated during this instance of compilation.
104     /// @param Lang     Source programming language, eg. dwarf::DW_LANG_C99
105     /// @param File     File name
106     /// @param Dir      Directory
107     /// @param Producer Identify the producer of debugging information and code.
108     ///                 Usually this is a compiler version string.
109     /// @param isOptimized A boolean flag which indicates whether optimization
110     ///                    is ON or not.
111     /// @param Flags    This string lists command line options. This string is
112     ///                 directly embedded in debug info output which may be used
113     ///                 by a tool analyzing generated debugging information.
114     /// @param RV       This indicates runtime version for languages like
115     ///                 Objective-C.
116     /// @param SplitName The name of the file that we'll split debug info out
117     ///                  into.
118     /// @param Kind     The kind of debug information to generate.
119     /// @param EmitDebugInfo   A boolean flag which indicates whether debug
120     ///                        information should be written to the final
121     ///                        output or not. When this is false, debug
122     ///                        information annotations will be present in
123     ///                        the IL but they are not written to the final
124     ///                        assembly or object file. This supports tracking
125     ///                        source location information in the back end
126     ///                        without actually changing the output (e.g.,
127     ///                        when using optimization remarks).
128     DICompileUnit createCompileUnit(unsigned Lang, StringRef File,
129                                     StringRef Dir, StringRef Producer,
130                                     bool isOptimized, StringRef Flags,
131                                     unsigned RV,
132                                     StringRef SplitName = StringRef(),
133                                     DebugEmissionKind Kind = FullDebug,
134                                     bool EmitDebugInfo = true);
135
136     /// createFile - Create a file descriptor to hold debugging information
137     /// for a file.
138     DIFile createFile(StringRef Filename, StringRef Directory);
139
140     /// createEnumerator - Create a single enumerator value.
141     DIEnumerator createEnumerator(StringRef Name, int64_t Val);
142
143     /// \brief Create a DWARF unspecified type.
144     DIBasicType createUnspecifiedType(StringRef Name);
145
146     /// \brief Create C++11 nullptr type.
147     DIBasicType createNullPtrType();
148
149     /// createBasicType - Create debugging information entry for a basic
150     /// type.
151     /// @param Name        Type name.
152     /// @param SizeInBits  Size of the type.
153     /// @param AlignInBits Type alignment.
154     /// @param Encoding    DWARF encoding code, e.g. dwarf::DW_ATE_float.
155     DIBasicType createBasicType(StringRef Name, uint64_t SizeInBits,
156                                 uint64_t AlignInBits, unsigned Encoding);
157
158     /// createQualifiedType - Create debugging information entry for a qualified
159     /// type, e.g. 'const int'.
160     /// @param Tag         Tag identifing type, e.g. dwarf::TAG_volatile_type
161     /// @param FromTy      Base Type.
162     DIDerivedType createQualifiedType(unsigned Tag, DIType FromTy);
163
164     /// createPointerType - Create debugging information entry for a pointer.
165     /// @param PointeeTy   Type pointed by this pointer.
166     /// @param SizeInBits  Size.
167     /// @param AlignInBits Alignment. (optional)
168     /// @param Name        Pointer type name. (optional)
169     DIDerivedType
170     createPointerType(DIType PointeeTy, uint64_t SizeInBits,
171                       uint64_t AlignInBits = 0, StringRef Name = StringRef());
172
173     /// \brief Create debugging information entry for a pointer to member.
174     /// @param PointeeTy Type pointed to by this pointer.
175     /// @param SizeInBits  Size.
176     /// @param AlignInBits Alignment. (optional)
177     /// @param Class Type for which this pointer points to members of.
178     DIDerivedType createMemberPointerType(DIType PointeeTy, DIType Class,
179                                           uint64_t SizeInBits,
180                                           uint64_t AlignInBits = 0);
181
182     /// createReferenceType - Create debugging information entry for a c++
183     /// style reference or rvalue reference type.
184     DIDerivedType createReferenceType(unsigned Tag, DIType RTy);
185
186     /// createTypedef - Create debugging information entry for a typedef.
187     /// @param Ty          Original type.
188     /// @param Name        Typedef name.
189     /// @param File        File where this type is defined.
190     /// @param LineNo      Line number.
191     /// @param Context     The surrounding context for the typedef.
192     DIDerivedType createTypedef(DIType Ty, StringRef Name, DIFile File,
193                                 unsigned LineNo, DIDescriptor Context);
194
195     /// createFriend - Create debugging information entry for a 'friend'.
196     DIDerivedType createFriend(DIType Ty, DIType FriendTy);
197
198     /// createInheritance - Create debugging information entry to establish
199     /// inheritance relationship between two types.
200     /// @param Ty           Original type.
201     /// @param BaseTy       Base type. Ty is inherits from base.
202     /// @param BaseOffset   Base offset.
203     /// @param Flags        Flags to describe inheritance attribute,
204     ///                     e.g. private
205     DIDerivedType createInheritance(DIType Ty, DIType BaseTy,
206                                     uint64_t BaseOffset, unsigned Flags);
207
208     /// createMemberType - Create debugging information entry for a member.
209     /// @param Scope        Member scope.
210     /// @param Name         Member name.
211     /// @param File         File where this member is defined.
212     /// @param LineNo       Line number.
213     /// @param SizeInBits   Member size.
214     /// @param AlignInBits  Member alignment.
215     /// @param OffsetInBits Member offset.
216     /// @param Flags        Flags to encode member attribute, e.g. private
217     /// @param Ty           Parent type.
218     DIDerivedType
219     createMemberType(DIDescriptor Scope, StringRef Name, DIFile File,
220                      unsigned LineNo, uint64_t SizeInBits, uint64_t AlignInBits,
221                      uint64_t OffsetInBits, unsigned Flags, DIType Ty);
222
223     /// createStaticMemberType - Create debugging information entry for a
224     /// C++ static data member.
225     /// @param Scope      Member scope.
226     /// @param Name       Member name.
227     /// @param File       File where this member is declared.
228     /// @param LineNo     Line number.
229     /// @param Ty         Type of the static member.
230     /// @param Flags      Flags to encode member attribute, e.g. private.
231     /// @param Val        Const initializer of the member.
232     DIDerivedType createStaticMemberType(DIDescriptor Scope, StringRef Name,
233                                          DIFile File, unsigned LineNo,
234                                          DIType Ty, unsigned Flags,
235                                          llvm::Constant *Val);
236
237     /// createObjCIVar - Create debugging information entry for Objective-C
238     /// instance variable.
239     /// @param Name         Member name.
240     /// @param File         File where this member is defined.
241     /// @param LineNo       Line number.
242     /// @param SizeInBits   Member size.
243     /// @param AlignInBits  Member alignment.
244     /// @param OffsetInBits Member offset.
245     /// @param Flags        Flags to encode member attribute, e.g. private
246     /// @param Ty           Parent type.
247     /// @param PropertyNode Property associated with this ivar.
248     DIDerivedType createObjCIVar(StringRef Name, DIFile File,
249                                  unsigned LineNo, uint64_t SizeInBits,
250                                  uint64_t AlignInBits, uint64_t OffsetInBits,
251                                  unsigned Flags, DIType Ty,
252                                  MDNode *PropertyNode);
253
254     /// createObjCProperty - Create debugging information entry for Objective-C
255     /// property.
256     /// @param Name         Property name.
257     /// @param File         File where this property is defined.
258     /// @param LineNumber   Line number.
259     /// @param GetterName   Name of the Objective C property getter selector.
260     /// @param SetterName   Name of the Objective C property setter selector.
261     /// @param PropertyAttributes Objective C property attributes.
262     /// @param Ty           Type.
263     DIObjCProperty createObjCProperty(StringRef Name,
264                                       DIFile File, unsigned LineNumber,
265                                       StringRef GetterName,
266                                       StringRef SetterName,
267                                       unsigned PropertyAttributes,
268                                       DIType Ty);
269
270     /// createClassType - Create debugging information entry for a class.
271     /// @param Scope        Scope in which this class is defined.
272     /// @param Name         class name.
273     /// @param File         File where this member is defined.
274     /// @param LineNumber   Line number.
275     /// @param SizeInBits   Member size.
276     /// @param AlignInBits  Member alignment.
277     /// @param OffsetInBits Member offset.
278     /// @param Flags        Flags to encode member attribute, e.g. private
279     /// @param Elements     class members.
280     /// @param VTableHolder Debug info of the base class that contains vtable
281     ///                     for this type. This is used in
282     ///                     DW_AT_containing_type. See DWARF documentation
283     ///                     for more info.
284     /// @param TemplateParms Template type parameters.
285     /// @param UniqueIdentifier A unique identifier for the class.
286     DICompositeType createClassType(DIDescriptor Scope, StringRef Name,
287                                     DIFile File, unsigned LineNumber,
288                                     uint64_t SizeInBits, uint64_t AlignInBits,
289                                     uint64_t OffsetInBits, unsigned Flags,
290                                     DIType DerivedFrom, DIArray Elements,
291                                     DIType VTableHolder = DIType(),
292                                     MDNode *TemplateParms = nullptr,
293                                     StringRef UniqueIdentifier = StringRef());
294
295     /// createStructType - Create debugging information entry for a struct.
296     /// @param Scope        Scope in which this struct is defined.
297     /// @param Name         Struct name.
298     /// @param File         File where this member is defined.
299     /// @param LineNumber   Line number.
300     /// @param SizeInBits   Member size.
301     /// @param AlignInBits  Member alignment.
302     /// @param Flags        Flags to encode member attribute, e.g. private
303     /// @param Elements     Struct elements.
304     /// @param RunTimeLang  Optional parameter, Objective-C runtime version.
305     /// @param UniqueIdentifier A unique identifier for the struct.
306     DICompositeType createStructType(DIDescriptor Scope, StringRef Name,
307                                      DIFile File, unsigned LineNumber,
308                                      uint64_t SizeInBits, uint64_t AlignInBits,
309                                      unsigned Flags, DIType DerivedFrom,
310                                      DIArray Elements, unsigned RunTimeLang = 0,
311                                      DIType VTableHolder = DIType(),
312                                      StringRef UniqueIdentifier = StringRef());
313
314     /// createUnionType - Create debugging information entry for an union.
315     /// @param Scope        Scope in which this union is defined.
316     /// @param Name         Union name.
317     /// @param File         File where this member is defined.
318     /// @param LineNumber   Line number.
319     /// @param SizeInBits   Member size.
320     /// @param AlignInBits  Member alignment.
321     /// @param Flags        Flags to encode member attribute, e.g. private
322     /// @param Elements     Union elements.
323     /// @param RunTimeLang  Optional parameter, Objective-C runtime version.
324     /// @param UniqueIdentifier A unique identifier for the union.
325     DICompositeType createUnionType(
326         DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber,
327         uint64_t SizeInBits, uint64_t AlignInBits, unsigned Flags,
328         DIArray Elements, unsigned RunTimeLang = 0,
329         StringRef UniqueIdentifier = StringRef());
330
331     /// createTemplateTypeParameter - Create debugging information for template
332     /// type parameter.
333     /// @param Scope        Scope in which this type is defined.
334     /// @param Name         Type parameter name.
335     /// @param Ty           Parameter type.
336     /// @param File         File where this type parameter is defined.
337     /// @param LineNo       Line number.
338     /// @param ColumnNo     Column Number.
339     DITemplateTypeParameter
340     createTemplateTypeParameter(DIDescriptor Scope, StringRef Name, DIType Ty,
341                                 MDNode *File = nullptr, unsigned LineNo = 0,
342                                 unsigned ColumnNo = 0);
343
344     /// createTemplateValueParameter - Create debugging information for template
345     /// value parameter.
346     /// @param Scope        Scope in which this type is defined.
347     /// @param Name         Value parameter name.
348     /// @param Ty           Parameter type.
349     /// @param Val          Constant parameter value.
350     /// @param File         File where this type parameter is defined.
351     /// @param LineNo       Line number.
352     /// @param ColumnNo     Column Number.
353     DITemplateValueParameter
354     createTemplateValueParameter(DIDescriptor Scope, StringRef Name, DIType Ty,
355                                  Constant *Val, MDNode *File = nullptr,
356                                  unsigned LineNo = 0, unsigned ColumnNo = 0);
357
358     /// \brief Create debugging information for a template template parameter.
359     /// @param Scope        Scope in which this type is defined.
360     /// @param Name         Value parameter name.
361     /// @param Ty           Parameter type.
362     /// @param Val          The fully qualified name of the template.
363     /// @param File         File where this type parameter is defined.
364     /// @param LineNo       Line number.
365     /// @param ColumnNo     Column Number.
366     DITemplateValueParameter
367     createTemplateTemplateParameter(DIDescriptor Scope, StringRef Name,
368                                     DIType Ty, StringRef Val,
369                                     MDNode *File = nullptr, unsigned LineNo = 0,
370                                     unsigned ColumnNo = 0);
371
372     /// \brief Create debugging information for a template parameter pack.
373     /// @param Scope        Scope in which this type is defined.
374     /// @param Name         Value parameter name.
375     /// @param Ty           Parameter type.
376     /// @param Val          An array of types in the pack.
377     /// @param File         File where this type parameter is defined.
378     /// @param LineNo       Line number.
379     /// @param ColumnNo     Column Number.
380     DITemplateValueParameter
381     createTemplateParameterPack(DIDescriptor Scope, StringRef Name,
382                                 DIType Ty, DIArray Val, MDNode *File = nullptr,
383                                 unsigned LineNo = 0, unsigned ColumnNo = 0);
384
385     /// createArrayType - Create debugging information entry for an array.
386     /// @param Size         Array size.
387     /// @param AlignInBits  Alignment.
388     /// @param Ty           Element type.
389     /// @param Subscripts   Subscripts.
390     DICompositeType createArrayType(uint64_t Size, uint64_t AlignInBits,
391                                     DIType Ty, DIArray Subscripts);
392
393     /// createVectorType - Create debugging information entry for a vector type.
394     /// @param Size         Array size.
395     /// @param AlignInBits  Alignment.
396     /// @param Ty           Element type.
397     /// @param Subscripts   Subscripts.
398     DICompositeType createVectorType(uint64_t Size, uint64_t AlignInBits,
399                                      DIType Ty, DIArray Subscripts);
400
401     /// createEnumerationType - Create debugging information entry for an
402     /// enumeration.
403     /// @param Scope          Scope in which this enumeration is defined.
404     /// @param Name           Union name.
405     /// @param File           File where this member is defined.
406     /// @param LineNumber     Line number.
407     /// @param SizeInBits     Member size.
408     /// @param AlignInBits    Member alignment.
409     /// @param Elements       Enumeration elements.
410     /// @param UnderlyingType Underlying type of a C++11/ObjC fixed enum.
411     /// @param UniqueIdentifier A unique identifier for the enum.
412     DICompositeType createEnumerationType(DIDescriptor Scope, StringRef Name,
413         DIFile File, unsigned LineNumber, uint64_t SizeInBits,
414         uint64_t AlignInBits, DIArray Elements, DIType UnderlyingType,
415         StringRef UniqueIdentifier = StringRef());
416
417     /// createSubroutineType - Create subroutine type.
418     /// @param File            File in which this subroutine is defined.
419     /// @param ParameterTypes  An array of subroutine parameter types. This
420     ///                        includes return type at 0th index.
421     /// @param Flags           E.g.: LValueReference.
422     ///                        These flags are used to emit dwarf attributes.
423     DISubroutineType createSubroutineType(DIFile File,
424                                           DITypeArray ParameterTypes,
425                                           unsigned Flags = 0);
426
427     /// createArtificialType - Create a new DIType with "artificial" flag set.
428     DIType createArtificialType(DIType Ty);
429
430     /// createObjectPointerType - Create a new DIType with the "object pointer"
431     /// flag set.
432     DIType createObjectPointerType(DIType Ty);
433
434     /// \brief Create a permanent forward-declared type.
435     DICompositeType createForwardDecl(unsigned Tag, StringRef Name,
436                                       DIDescriptor Scope, DIFile F,
437                                       unsigned Line, unsigned RuntimeLang = 0,
438                                       uint64_t SizeInBits = 0,
439                                       uint64_t AlignInBits = 0,
440                                       StringRef UniqueIdentifier = StringRef());
441
442     /// \brief Create a temporary forward-declared type.
443     DICompositeType createReplaceableForwardDecl(
444         unsigned Tag, StringRef Name, DIDescriptor Scope, DIFile F,
445         unsigned Line, unsigned RuntimeLang = 0, uint64_t SizeInBits = 0,
446         uint64_t AlignInBits = 0, StringRef UniqueIdentifier = StringRef());
447
448     /// retainType - Retain DIType in a module even if it is not referenced
449     /// through debug info anchors.
450     void retainType(DIType T);
451
452     /// createUnspecifiedParameter - Create unspecified parameter type
453     /// for a subroutine type.
454     DIBasicType createUnspecifiedParameter();
455
456     /// getOrCreateArray - Get a DIArray, create one if required.
457     DIArray getOrCreateArray(ArrayRef<Metadata *> Elements);
458
459     /// getOrCreateTypeArray - Get a DITypeArray, create one if required.
460     DITypeArray getOrCreateTypeArray(ArrayRef<Metadata *> Elements);
461
462     /// getOrCreateSubrange - Create a descriptor for a value range.  This
463     /// implicitly uniques the values returned.
464     DISubrange getOrCreateSubrange(int64_t Lo, int64_t Count);
465
466
467     /// createGlobalVariable - Create a new descriptor for the specified
468     /// variable.
469     /// @param Context     Variable scope.
470     /// @param Name        Name of the variable.
471     /// @param LinkageName Mangled  name of the variable.
472     /// @param File        File where this variable is defined.
473     /// @param LineNo      Line number.
474     /// @param Ty          Variable Type.
475     /// @param isLocalToUnit Boolean flag indicate whether this variable is
476     ///                      externally visible or not.
477     /// @param Val         llvm::Value of the variable.
478     /// @param Decl        Reference to the corresponding declaration.
479     DIGlobalVariable createGlobalVariable(DIDescriptor Context, StringRef Name,
480                                           StringRef LinkageName, DIFile File,
481                                           unsigned LineNo, DITypeRef Ty,
482                                           bool isLocalToUnit,
483                                           llvm::Constant *Val,
484                                           MDNode *Decl = nullptr);
485
486     /// createTempGlobalVariableFwdDecl - Identical to createGlobalVariable
487     /// except that the resulting DbgNode is temporary and meant to be RAUWed.
488     DIGlobalVariable createTempGlobalVariableFwdDecl(
489         DIDescriptor Context, StringRef Name, StringRef LinkageName,
490         DIFile File, unsigned LineNo, DITypeRef Ty, bool isLocalToUnit,
491         llvm::Constant *Val, MDNode *Decl = nullptr);
492
493     /// createLocalVariable - Create a new descriptor for the specified
494     /// local variable.
495     /// @param Tag         Dwarf TAG. Usually DW_TAG_auto_variable or
496     ///                    DW_TAG_arg_variable.
497     /// @param Scope       Variable scope.
498     /// @param Name        Variable name.
499     /// @param File        File where this variable is defined.
500     /// @param LineNo      Line number.
501     /// @param Ty          Variable Type
502     /// @param AlwaysPreserve Boolean. Set to true if debug info for this
503     ///                       variable should be preserved in optimized build.
504     /// @param Flags       Flags, e.g. artificial variable.
505     /// @param ArgNo       If this variable is an argument then this argument's
506     ///                    number. 1 indicates 1st argument.
507     DIVariable createLocalVariable(unsigned Tag, DIDescriptor Scope,
508                                    StringRef Name,
509                                    DIFile File, unsigned LineNo,
510                                    DITypeRef Ty, bool AlwaysPreserve = false,
511                                    unsigned Flags = 0,
512                                    unsigned ArgNo = 0);
513
514     /// createExpression - Create a new descriptor for the specified
515     /// variable which has a complex address expression for its address.
516     /// @param Addr        An array of complex address operations.
517     DIExpression createExpression(ArrayRef<uint64_t> Addr = None);
518     DIExpression createExpression(ArrayRef<int64_t> Addr);
519
520     /// createBitPieceExpression - Create a descriptor to describe one part
521     /// of aggregate variable that is fragmented across multiple Values.
522     ///
523     /// @param OffsetInBits Offset of the piece in bits.
524     /// @param SizeInBits   Size of the piece in bits.
525     DIExpression createBitPieceExpression(unsigned OffsetInBits,
526                                           unsigned SizeInBits);
527
528     /// createFunction - Create a new descriptor for the specified subprogram.
529     /// See comments in DISubprogram for descriptions of these fields.
530     /// @param Scope         Function scope.
531     /// @param Name          Function name.
532     /// @param LinkageName   Mangled function name.
533     /// @param File          File where this variable is defined.
534     /// @param LineNo        Line number.
535     /// @param Ty            Function type.
536     /// @param isLocalToUnit True if this function is not externally visible.
537     /// @param isDefinition  True if this is a function definition.
538     /// @param ScopeLine     Set to the beginning of the scope this starts
539     /// @param Flags         e.g. is this function prototyped or not.
540     ///                      These flags are used to emit dwarf attributes.
541     /// @param isOptimized   True if optimization is ON.
542     /// @param Fn            llvm::Function pointer.
543     /// @param TParam        Function template parameters.
544     DISubprogram createFunction(DIDescriptor Scope, StringRef Name,
545                                 StringRef LinkageName,
546                                 DIFile File, unsigned LineNo,
547                                 DICompositeType Ty, bool isLocalToUnit,
548                                 bool isDefinition,
549                                 unsigned ScopeLine,
550                                 unsigned Flags = 0,
551                                 bool isOptimized = false,
552                                 Function *Fn = nullptr,
553                                 MDNode *TParam = nullptr,
554                                 MDNode *Decl = nullptr);
555
556     /// createTempFunctionFwdDecl - Identical to createFunction,
557     /// except that the resulting DbgNode is meant to be RAUWed.
558     DISubprogram createTempFunctionFwdDecl(DIDescriptor Scope, StringRef Name,
559                                            StringRef LinkageName,
560                                            DIFile File, unsigned LineNo,
561                                            DICompositeType Ty, bool isLocalToUnit,
562                                            bool isDefinition,
563                                            unsigned ScopeLine,
564                                            unsigned Flags = 0,
565                                            bool isOptimized = false,
566                                            Function *Fn = nullptr,
567                                            MDNode *TParam = nullptr,
568                                            MDNode *Decl = nullptr);
569
570
571     /// FIXME: this is added for dragonegg. Once we update dragonegg
572     /// to call resolve function, this will be removed.
573     DISubprogram createFunction(DIScopeRef Scope, StringRef Name,
574                                 StringRef LinkageName,
575                                 DIFile File, unsigned LineNo,
576                                 DICompositeType Ty, bool isLocalToUnit,
577                                 bool isDefinition,
578                                 unsigned ScopeLine,
579                                 unsigned Flags = 0,
580                                 bool isOptimized = false,
581                                 Function *Fn = nullptr,
582                                 MDNode *TParam = nullptr,
583                                 MDNode *Decl = nullptr);
584
585     /// createMethod - Create a new descriptor for the specified C++ method.
586     /// See comments in DISubprogram for descriptions of these fields.
587     /// @param Scope         Function scope.
588     /// @param Name          Function name.
589     /// @param LinkageName   Mangled function name.
590     /// @param File          File where this variable is defined.
591     /// @param LineNo        Line number.
592     /// @param Ty            Function type.
593     /// @param isLocalToUnit True if this function is not externally visible..
594     /// @param isDefinition  True if this is a function definition.
595     /// @param Virtuality    Attributes describing virtualness. e.g. pure
596     ///                      virtual function.
597     /// @param VTableIndex   Index no of this method in virtual table.
598     /// @param VTableHolder  Type that holds vtable.
599     /// @param Flags         e.g. is this function prototyped or not.
600     ///                      This flags are used to emit dwarf attributes.
601     /// @param isOptimized   True if optimization is ON.
602     /// @param Fn            llvm::Function pointer.
603     /// @param TParam        Function template parameters.
604     DISubprogram createMethod(DIDescriptor Scope, StringRef Name,
605                               StringRef LinkageName,
606                               DIFile File, unsigned LineNo,
607                               DICompositeType Ty, bool isLocalToUnit,
608                               bool isDefinition,
609                               unsigned Virtuality = 0, unsigned VTableIndex = 0,
610                               DIType VTableHolder = DIType(),
611                               unsigned Flags = 0,
612                               bool isOptimized = false,
613                               Function *Fn = nullptr,
614                               MDNode *TParam = nullptr);
615
616     /// createNameSpace - This creates new descriptor for a namespace
617     /// with the specified parent scope.
618     /// @param Scope       Namespace scope
619     /// @param Name        Name of this namespace
620     /// @param File        Source file
621     /// @param LineNo      Line number
622     DINameSpace createNameSpace(DIDescriptor Scope, StringRef Name,
623                                 DIFile File, unsigned LineNo);
624
625
626     /// createLexicalBlockFile - This creates a descriptor for a lexical
627     /// block with a new file attached. This merely extends the existing
628     /// lexical block as it crosses a file.
629     /// @param Scope       Lexical block.
630     /// @param File        Source file.
631     /// @param Discriminator DWARF path discriminator value.
632     DILexicalBlockFile createLexicalBlockFile(DIDescriptor Scope, DIFile File,
633                                               unsigned Discriminator = 0);
634
635     /// createLexicalBlock - This creates a descriptor for a lexical block
636     /// with the specified parent context.
637     /// @param Scope         Parent lexical scope.
638     /// @param File          Source file.
639     /// @param Line          Line number.
640     /// @param Col           Column number.
641     DILexicalBlock createLexicalBlock(DIDescriptor Scope, DIFile File,
642                                       unsigned Line, unsigned Col);
643
644     /// \brief Create a descriptor for an imported module.
645     /// @param Context The scope this module is imported into
646     /// @param NS The namespace being imported here
647     /// @param Line Line number
648     DIImportedEntity createImportedModule(DIScope Context, DINameSpace NS,
649                                           unsigned Line);
650
651     /// \brief Create a descriptor for an imported module.
652     /// @param Context The scope this module is imported into
653     /// @param NS An aliased namespace
654     /// @param Line Line number
655     DIImportedEntity createImportedModule(DIScope Context, DIImportedEntity NS,
656                                           unsigned Line);
657
658     /// \brief Create a descriptor for an imported function.
659     /// @param Context The scope this module is imported into
660     /// @param Decl The declaration (or definition) of a function, type, or
661     ///             variable
662     /// @param Line Line number
663     DIImportedEntity createImportedDeclaration(DIScope Context, DIDescriptor Decl,
664                                                unsigned Line,
665                                                StringRef Name = StringRef());
666     DIImportedEntity createImportedDeclaration(DIScope Context,
667                                                DIImportedEntity NS,
668                                                unsigned Line,
669                                                StringRef Name = StringRef());
670
671     /// insertDeclare - Insert a new llvm.dbg.declare intrinsic call.
672     /// @param Storage     llvm::Value of the variable
673     /// @param VarInfo     Variable's debug info descriptor.
674     /// @param Expr         A complex location expression.
675     /// @param InsertAtEnd Location for the new intrinsic.
676     Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo,
677                                DIExpression Expr, BasicBlock *InsertAtEnd);
678
679     /// insertDeclare - Insert a new llvm.dbg.declare intrinsic call.
680     /// @param Storage      llvm::Value of the variable
681     /// @param VarInfo      Variable's debug info descriptor.
682     /// @param Expr         A complex location expression.
683     /// @param InsertBefore Location for the new intrinsic.
684     Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo,
685                                DIExpression Expr, Instruction *InsertBefore);
686
687     /// insertDbgValueIntrinsic - Insert a new llvm.dbg.value intrinsic call.
688     /// @param Val          llvm::Value of the variable
689     /// @param Offset       Offset
690     /// @param VarInfo      Variable's debug info descriptor.
691     /// @param Expr         A complex location expression.
692     /// @param InsertAtEnd Location for the new intrinsic.
693     Instruction *insertDbgValueIntrinsic(llvm::Value *Val, uint64_t Offset,
694                                          DIVariable VarInfo, DIExpression Expr,
695                                          BasicBlock *InsertAtEnd);
696
697     /// insertDbgValueIntrinsic - Insert a new llvm.dbg.value intrinsic call.
698     /// @param Val          llvm::Value of the variable
699     /// @param Offset       Offset
700     /// @param VarInfo      Variable's debug info descriptor.
701     /// @param Expr         A complex location expression.
702     /// @param InsertBefore Location for the new intrinsic.
703     Instruction *insertDbgValueIntrinsic(llvm::Value *Val, uint64_t Offset,
704                                          DIVariable VarInfo, DIExpression Expr,
705                                          Instruction *InsertBefore);
706
707     /// \brief Replace the vtable holder in the given composite type.
708     ///
709     /// If this creates a self reference, it may orphan some unresolved cycles
710     /// in the operands of \c T, so \a DIBuilder needs to track that.
711     void replaceVTableHolder(DICompositeType &T, DICompositeType VTableHolder);
712
713     /// \brief Replace arrays on a composite type.
714     ///
715     /// If \c T is resolved, but the arrays aren't -- which can happen if \c T
716     /// has a self-reference -- \a DIBuilder needs to track the array to
717     /// resolve cycles.
718     void replaceArrays(DICompositeType &T, DIArray Elements,
719                        DIArray TParems = DIArray());
720   };
721 } // end namespace llvm
722
723 #endif