Move a few more convenience factory functions from Constant to LLVMContext.
[oota-llvm.git] / include / llvm / Analysis / DebugInfo.h
1 //===--- llvm/Analysis/DebugInfo.h - Debug Information Helpers --*- 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 bunch of datatypes that are useful for creating and
11 // walking debug info in LLVM IR form. They essentially provide wrappers around
12 // the information in the global variables that's needed when constructing the
13 // DWARF information.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_ANALYSIS_DEBUGINFO_H
18 #define LLVM_ANALYSIS_DEBUGINFO_H
19
20 #include "llvm/Target/TargetMachine.h"
21 #include "llvm/ADT/StringMap.h"
22 #include "llvm/ADT/DenseMap.h"
23 #include "llvm/ADT/SmallVector.h"
24 #include "llvm/Support/Dwarf.h"
25
26 namespace llvm {
27   class BasicBlock;
28   class Constant;
29   class Function;
30   class GlobalVariable;
31   class Module;
32   class Type;
33   class Value;
34   struct DbgStopPointInst;
35   struct DbgDeclareInst;
36   struct DbgFuncStartInst;
37   struct DbgRegionStartInst;
38   struct DbgRegionEndInst;
39   class DebugLoc;
40   struct DebugLocTracker;
41   class Instruction;
42   class LLVMContext;
43
44   class DIDescriptor {
45   protected:    
46     GlobalVariable *DbgGV;
47
48     /// DIDescriptor constructor.  If the specified GV is non-null, this checks
49     /// to make sure that the tag in the descriptor matches 'RequiredTag'.  If
50     /// not, the debug info is corrupt and we ignore it.
51     DIDescriptor(GlobalVariable *GV, unsigned RequiredTag);
52
53     const std::string &getStringField(unsigned Elt, std::string &Result) const;
54     unsigned getUnsignedField(unsigned Elt) const {
55       return (unsigned)getUInt64Field(Elt);
56     }
57     uint64_t getUInt64Field(unsigned Elt) const;
58     DIDescriptor getDescriptorField(unsigned Elt) const;
59
60     template <typename DescTy>
61     DescTy getFieldAs(unsigned Elt) const {
62       return DescTy(getDescriptorField(Elt).getGV());
63     }
64
65     GlobalVariable *getGlobalVariableField(unsigned Elt) const;
66
67   public:
68     explicit DIDescriptor() : DbgGV(0) {}
69     explicit DIDescriptor(GlobalVariable *GV) : DbgGV(GV) {}
70
71     bool isNull() const { return DbgGV == 0; }
72
73     GlobalVariable *getGV() const { return DbgGV; }
74
75     unsigned getVersion() const {
76       return getUnsignedField(0) & LLVMDebugVersionMask;
77     }
78
79     unsigned getTag() const {
80       return getUnsignedField(0) & ~LLVMDebugVersionMask;
81     }
82
83     /// ValidDebugInfo - Return true if V represents valid debug info value.
84     static bool ValidDebugInfo(Value *V, CodeGenOpt::Level OptLevel);
85
86     /// dump - print descriptor.
87     void dump() const;
88   };
89
90   /// DISubrange - This is used to represent ranges, for array bounds.
91   class DISubrange : public DIDescriptor {
92   public:
93     explicit DISubrange(GlobalVariable *GV = 0)
94       : DIDescriptor(GV, dwarf::DW_TAG_subrange_type) {}
95
96     int64_t getLo() const { return (int64_t)getUInt64Field(1); }
97     int64_t getHi() const { return (int64_t)getUInt64Field(2); }
98   };
99
100   /// DIArray - This descriptor holds an array of descriptors.
101   class DIArray : public DIDescriptor {
102   public:
103     explicit DIArray(GlobalVariable *GV = 0) : DIDescriptor(GV) {}
104
105     unsigned getNumElements() const;
106     DIDescriptor getElement(unsigned Idx) const {
107       return getDescriptorField(Idx);
108     }
109   };
110
111   /// DICompileUnit - A wrapper for a compile unit.
112   class DICompileUnit : public DIDescriptor {
113   public:
114     explicit DICompileUnit(GlobalVariable *GV = 0)
115       : DIDescriptor(GV, dwarf::DW_TAG_compile_unit) {}
116
117     unsigned getLanguage() const     { return getUnsignedField(2); }
118     const std::string &getFilename(std::string &F) const {
119       return getStringField(3, F);
120     }
121     const std::string &getDirectory(std::string &F) const {
122       return getStringField(4, F);
123     }
124     const std::string &getProducer(std::string &F) const {
125       return getStringField(5, F);
126     }
127     
128     /// isMain - Each input file is encoded as a separate compile unit in LLVM
129     /// debugging information output. However, many target specific tool chains
130     /// prefer to encode only one compile unit in an object file. In this 
131     /// situation, the LLVM code generator will include  debugging information
132     /// entities in the compile unit that is marked as main compile unit. The 
133     /// code generator accepts maximum one main compile unit per module. If a
134     /// module does not contain any main compile unit then the code generator 
135     /// will emit multiple compile units in the output object file.
136
137     bool isMain() const                { return getUnsignedField(6); }
138     bool isOptimized() const           { return getUnsignedField(7); }
139     const std::string &getFlags(std::string &F) const {
140       return getStringField(8, F);
141     }
142     unsigned getRunTimeVersion() const { return getUnsignedField(9); }
143
144     /// Verify - Verify that a compile unit is well formed.
145     bool Verify() const;
146
147     /// dump - print compile unit.
148     void dump() const;
149   };
150
151   /// DIEnumerator - A wrapper for an enumerator (e.g. X and Y in 'enum {X,Y}').
152   /// FIXME: it seems strange that this doesn't have either a reference to the
153   /// type/precision or a file/line pair for location info.
154   class DIEnumerator : public DIDescriptor {
155   public:
156     explicit DIEnumerator(GlobalVariable *GV = 0)
157       : DIDescriptor(GV, dwarf::DW_TAG_enumerator) {}
158
159     const std::string &getName(std::string &F) const {
160       return getStringField(1, F);
161     }
162     uint64_t getEnumValue() const { return getUInt64Field(2); }
163   };
164
165   /// DIType - This is a wrapper for a type.
166   /// FIXME: Types should be factored much better so that CV qualifiers and
167   /// others do not require a huge and empty descriptor full of zeros.
168   class DIType : public DIDescriptor {
169   public:
170     enum {
171       FlagPrivate   = 1 << 0,
172       FlagProtected = 1 << 1,
173       FlagFwdDecl   = 1 << 2
174     };
175
176   protected:
177     DIType(GlobalVariable *GV, unsigned Tag) : DIDescriptor(GV, Tag) {}
178     // This ctor is used when the Tag has already been validated by a derived
179     // ctor.
180     DIType(GlobalVariable *GV, bool, bool) : DIDescriptor(GV) {}
181
182   public:
183     /// isDerivedType - Return true if the specified tag is legal for
184     /// DIDerivedType.
185     static bool isDerivedType(unsigned TAG);
186
187     /// isCompositeType - Return true if the specified tag is legal for
188     /// DICompositeType.
189     static bool isCompositeType(unsigned TAG);
190
191     /// isBasicType - Return true if the specified tag is legal for
192     /// DIBasicType.
193     static bool isBasicType(unsigned TAG) {
194       return TAG == dwarf::DW_TAG_base_type;
195     }
196
197     /// Verify - Verify that a type descriptor is well formed.
198     bool Verify() const;
199   public:
200     explicit DIType(GlobalVariable *GV);
201     explicit DIType() {}
202     virtual ~DIType() {}
203
204     DIDescriptor getContext() const     { return getDescriptorField(1); }
205     const std::string &getName(std::string &F) const {
206       return getStringField(2, F);
207     }
208     DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(3); }
209     unsigned getLineNumber() const      { return getUnsignedField(4); }
210     uint64_t getSizeInBits() const      { return getUInt64Field(5); }
211     uint64_t getAlignInBits() const     { return getUInt64Field(6); }
212     // FIXME: Offset is only used for DW_TAG_member nodes.  Making every type
213     // carry this is just plain insane.
214     uint64_t getOffsetInBits() const    { return getUInt64Field(7); }
215     unsigned getFlags() const           { return getUnsignedField(8); }
216     bool isPrivate() const              { return (getFlags() & FlagPrivate) != 0; }
217     bool isProtected() const            { return (getFlags() & FlagProtected) != 0; }
218     bool isForwardDecl() const          { return (getFlags() & FlagFwdDecl) != 0; }
219
220     /// dump - print type.
221     void dump() const;
222   };
223
224   /// DIBasicType - A basic type, like 'int' or 'float'.
225   class DIBasicType : public DIType {
226   public:
227     explicit DIBasicType(GlobalVariable *GV)
228       : DIType(GV, dwarf::DW_TAG_base_type) {}
229
230     unsigned getEncoding() const { return getUnsignedField(9); }
231
232     /// dump - print basic type.
233     void dump() const;
234   };
235
236   /// DIDerivedType - A simple derived type, like a const qualified type,
237   /// a typedef, a pointer or reference, etc.
238   class DIDerivedType : public DIType {
239   protected:
240     explicit DIDerivedType(GlobalVariable *GV, bool, bool)
241       : DIType(GV, true, true) {}
242   public:
243     explicit DIDerivedType(GlobalVariable *GV)
244       : DIType(GV, true, true) {
245       if (GV && !isDerivedType(getTag()))
246         DbgGV = 0;
247     }
248
249     DIType getTypeDerivedFrom() const { return getFieldAs<DIType>(9); }
250
251     /// getOriginalTypeSize - If this type is derived from a base type then
252     /// return base type size.
253     uint64_t getOriginalTypeSize() const;
254     /// dump - print derived type.
255     void dump() const;
256   };
257
258   /// DICompositeType - This descriptor holds a type that can refer to multiple
259   /// other types, like a function or struct.
260   /// FIXME: Why is this a DIDerivedType??
261   class DICompositeType : public DIDerivedType {
262   public:
263     explicit DICompositeType(GlobalVariable *GV)
264       : DIDerivedType(GV, true, true) {
265       if (GV && !isCompositeType(getTag()))
266         DbgGV = 0;
267     }
268
269     DIArray getTypeArray() const { return getFieldAs<DIArray>(10); }
270     unsigned getRunTimeLang() const { return getUnsignedField(11); }
271
272     /// Verify - Verify that a composite type descriptor is well formed.
273     bool Verify() const;
274
275     /// dump - print composite type.
276     void dump() const;
277   };
278
279   /// DIGlobal - This is a common class for global variables and subprograms.
280   class DIGlobal : public DIDescriptor {
281   protected:
282     explicit DIGlobal(GlobalVariable *GV, unsigned RequiredTag)
283       : DIDescriptor(GV, RequiredTag) {}
284
285     /// isSubprogram - Return true if the specified tag is legal for
286     /// DISubprogram.
287     static bool isSubprogram(unsigned TAG) {
288       return TAG == dwarf::DW_TAG_subprogram;
289     }
290
291     /// isGlobalVariable - Return true if the specified tag is legal for
292     /// DIGlobalVariable.
293     static bool isGlobalVariable(unsigned TAG) {
294       return TAG == dwarf::DW_TAG_variable;
295     }
296
297   public:
298     virtual ~DIGlobal() {}
299
300     DIDescriptor getContext() const     { return getDescriptorField(2); }
301     const std::string &getName(std::string &F) const {
302       return getStringField(3, F);
303     }
304     const std::string &getDisplayName(std::string &F) const {
305       return getStringField(4, F);
306     }
307     const std::string &getLinkageName(std::string &F) const {
308       return getStringField(5, F);
309     }
310     DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(6); }
311     unsigned getLineNumber() const      { return getUnsignedField(7); }
312     DIType getType() const              { return getFieldAs<DIType>(8); }
313
314     /// isLocalToUnit - Return true if this subprogram is local to the current
315     /// compile unit, like 'static' in C.
316     unsigned isLocalToUnit() const      { return getUnsignedField(9); }
317     unsigned isDefinition() const       { return getUnsignedField(10); }
318
319     /// dump - print global.
320     void dump() const;
321   };
322
323   /// DISubprogram - This is a wrapper for a subprogram (e.g. a function).
324   class DISubprogram : public DIGlobal {
325   public:
326     explicit DISubprogram(GlobalVariable *GV = 0)
327       : DIGlobal(GV, dwarf::DW_TAG_subprogram) {}
328
329     DICompositeType getType() const { return getFieldAs<DICompositeType>(8); }
330
331     /// getReturnTypeName - Subprogram return types are encoded either as
332     /// DIType or as DICompositeType.
333     const std::string &getReturnTypeName(std::string &F) const {
334       DICompositeType DCT(getFieldAs<DICompositeType>(8));
335       if (!DCT.isNull()) {
336         DIArray A = DCT.getTypeArray();
337         DIType T(A.getElement(0).getGV());
338         return T.getName(F);
339       }
340       DIType T(getFieldAs<DIType>(8));
341       return T.getName(F);
342     }
343
344     /// Verify - Verify that a subprogram descriptor is well formed.
345     bool Verify() const;
346
347     /// dump - print subprogram.
348     void dump() const;
349
350     /// describes - Return true if this subprogram provides debugging
351     /// information for the function F.
352     bool describes(const Function *F);
353   };
354
355   /// DIGlobalVariable - This is a wrapper for a global variable.
356   class DIGlobalVariable : public DIGlobal {
357   public:
358     explicit DIGlobalVariable(GlobalVariable *GV = 0)
359       : DIGlobal(GV, dwarf::DW_TAG_variable) {}
360
361     GlobalVariable *getGlobal() const { return getGlobalVariableField(11); }
362
363     /// Verify - Verify that a global variable descriptor is well formed.
364     bool Verify() const;
365
366     /// dump - print global variable.
367     void dump() const;
368   };
369
370   /// DIVariable - This is a wrapper for a variable (e.g. parameter, local,
371   /// global etc).
372   class DIVariable : public DIDescriptor {
373   public:
374     explicit DIVariable(GlobalVariable *GV = 0)
375       : DIDescriptor(GV) {
376       if (GV && !isVariable(getTag()))
377         DbgGV = 0;
378     }
379
380     DIDescriptor getContext() const { return getDescriptorField(1); }
381     const std::string &getName(std::string &F) const {
382       return getStringField(2, F);
383     }
384     DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(3); }
385     unsigned getLineNumber() const      { return getUnsignedField(4); }
386     DIType getType() const              { return getFieldAs<DIType>(5); }
387
388     /// isVariable - Return true if the specified tag is legal for DIVariable.
389     static bool isVariable(unsigned Tag);
390
391     /// Verify - Verify that a variable descriptor is well formed.
392     bool Verify() const;
393
394     /// dump - print variable.
395     void dump() const;
396   };
397
398   /// DIBlock - This is a wrapper for a block (e.g. a function, scope, etc).
399   class DIBlock : public DIDescriptor {
400   public:
401     explicit DIBlock(GlobalVariable *GV = 0)
402       : DIDescriptor(GV, dwarf::DW_TAG_lexical_block) {}
403
404     DIDescriptor getContext() const { return getDescriptorField(1); }
405   };
406
407   /// DIFactory - This object assists with the construction of the various
408   /// descriptors.
409   class DIFactory {
410     Module &M;
411     LLVMContext& VMContext;
412     
413     // Cached values for uniquing and faster lookups.
414     const Type *EmptyStructPtr; // "{}*".
415     Function *StopPointFn;   // llvm.dbg.stoppoint
416     Function *FuncStartFn;   // llvm.dbg.func.start
417     Function *RegionStartFn; // llvm.dbg.region.start
418     Function *RegionEndFn;   // llvm.dbg.region.end
419     Function *DeclareFn;     // llvm.dbg.declare
420     StringMap<Constant*> StringCache;
421     DenseMap<Constant*, DIDescriptor> SimpleConstantCache;
422
423     DIFactory(const DIFactory &);     // DO NOT IMPLEMENT
424     void operator=(const DIFactory&); // DO NOT IMPLEMENT
425   public:
426     explicit DIFactory(Module &m);
427
428     /// GetOrCreateArray - Create an descriptor for an array of descriptors. 
429     /// This implicitly uniques the arrays created.
430     DIArray GetOrCreateArray(DIDescriptor *Tys, unsigned NumTys);
431
432     /// GetOrCreateSubrange - Create a descriptor for a value range.  This
433     /// implicitly uniques the values returned.
434     DISubrange GetOrCreateSubrange(int64_t Lo, int64_t Hi);
435
436     /// CreateCompileUnit - Create a new descriptor for the specified compile
437     /// unit.
438     DICompileUnit CreateCompileUnit(unsigned LangID,
439                                     const std::string &Filename,
440                                     const std::string &Directory,
441                                     const std::string &Producer,
442                                     bool isMain = false,
443                                     bool isOptimized = false,
444                                     const char *Flags = "",
445                                     unsigned RunTimeVer = 0);
446
447     /// CreateEnumerator - Create a single enumerator value.
448     DIEnumerator CreateEnumerator(const std::string &Name, uint64_t Val);
449
450     /// CreateBasicType - Create a basic type like int, float, etc.
451     DIBasicType CreateBasicType(DIDescriptor Context, const std::string &Name,
452                                 DICompileUnit CompileUnit, unsigned LineNumber,
453                                 uint64_t SizeInBits, uint64_t AlignInBits,
454                                 uint64_t OffsetInBits, unsigned Flags,
455                                 unsigned Encoding);
456
457     /// CreateDerivedType - Create a derived type like const qualified type,
458     /// pointer, typedef, etc.
459     DIDerivedType CreateDerivedType(unsigned Tag, DIDescriptor Context,
460                                     const std::string &Name,
461                                     DICompileUnit CompileUnit,
462                                     unsigned LineNumber,
463                                     uint64_t SizeInBits, uint64_t AlignInBits,
464                                     uint64_t OffsetInBits, unsigned Flags,
465                                     DIType DerivedFrom);
466
467     /// CreateCompositeType - Create a composite type like array, struct, etc.
468     DICompositeType CreateCompositeType(unsigned Tag, DIDescriptor Context,
469                                         const std::string &Name,
470                                         DICompileUnit CompileUnit,
471                                         unsigned LineNumber,
472                                         uint64_t SizeInBits,
473                                         uint64_t AlignInBits,
474                                         uint64_t OffsetInBits, unsigned Flags,
475                                         DIType DerivedFrom,
476                                         DIArray Elements,
477                                         unsigned RunTimeLang = 0);
478
479     /// CreateSubprogram - Create a new descriptor for the specified subprogram.
480     /// See comments in DISubprogram for descriptions of these fields.
481     DISubprogram CreateSubprogram(DIDescriptor Context, const std::string &Name,
482                                   const std::string &DisplayName,
483                                   const std::string &LinkageName,
484                                   DICompileUnit CompileUnit, unsigned LineNo,
485                                   DIType Type, bool isLocalToUnit,
486                                   bool isDefinition);
487
488     /// CreateGlobalVariable - Create a new descriptor for the specified global.
489     DIGlobalVariable
490     CreateGlobalVariable(DIDescriptor Context, const std::string &Name,
491                          const std::string &DisplayName,
492                          const std::string &LinkageName, 
493                          DICompileUnit CompileUnit,
494                          unsigned LineNo, DIType Type, bool isLocalToUnit,
495                          bool isDefinition, llvm::GlobalVariable *GV);
496
497     /// CreateVariable - Create a new descriptor for the specified variable.
498     DIVariable CreateVariable(unsigned Tag, DIDescriptor Context,
499                               const std::string &Name,
500                               DICompileUnit CompileUnit, unsigned LineNo,
501                               DIType Type);
502
503     /// CreateBlock - This creates a descriptor for a lexical block with the
504     /// specified parent context.
505     DIBlock CreateBlock(DIDescriptor Context);
506
507     /// InsertStopPoint - Create a new llvm.dbg.stoppoint intrinsic invocation,
508     /// inserting it at the end of the specified basic block.
509     void InsertStopPoint(DICompileUnit CU, unsigned LineNo, unsigned ColNo,
510                          BasicBlock *BB);
511
512     /// InsertSubprogramStart - Create a new llvm.dbg.func.start intrinsic to
513     /// mark the start of the specified subprogram.
514     void InsertSubprogramStart(DISubprogram SP, BasicBlock *BB);
515
516     /// InsertRegionStart - Insert a new llvm.dbg.region.start intrinsic call to
517     /// mark the start of a region for the specified scoping descriptor.
518     void InsertRegionStart(DIDescriptor D, BasicBlock *BB);
519
520     /// InsertRegionEnd - Insert a new llvm.dbg.region.end intrinsic call to
521     /// mark the end of a region for the specified scoping descriptor.
522     void InsertRegionEnd(DIDescriptor D, BasicBlock *BB);
523
524     /// InsertDeclare - Insert a new llvm.dbg.declare intrinsic call.
525     void InsertDeclare(llvm::Value *Storage, DIVariable D, BasicBlock *BB);
526
527   private:
528     Constant *GetTagConstant(unsigned TAG);
529     Constant *GetStringConstant(const std::string &String);
530
531     /// getCastToEmpty - Return the descriptor as a Constant* with type '{}*'.
532     Constant *getCastToEmpty(DIDescriptor D);
533   };
534
535   /// Finds the stoppoint coressponding to this instruction, that is the
536   /// stoppoint that dominates this instruction 
537   const DbgStopPointInst *findStopPoint(const Instruction *Inst);
538
539   /// Finds the stoppoint corresponding to first real (non-debug intrinsic) 
540   /// instruction in this Basic Block, and returns the stoppoint for it.
541   const DbgStopPointInst *findBBStopPoint(const BasicBlock *BB);
542
543   /// Finds the dbg.declare intrinsic corresponding to this value if any.
544   /// It looks through pointer casts too.
545   const DbgDeclareInst *findDbgDeclare(const Value *V, bool stripCasts = true);
546
547   /// Find the debug info descriptor corresponding to this global variable.
548   Value *findDbgGlobalDeclare(GlobalVariable *V);
549
550   bool getLocationInfo(const Value *V, std::string &DisplayName, std::string &Type, 
551                        unsigned &LineNo, std::string &File, std::string &Dir); 
552
553   /// CollectDebugInfoAnchors - Collect debugging information anchors.
554   void CollectDebugInfoAnchors(Module &M,
555                                SmallVector<GlobalVariable *, 2> &CompileUnits,
556                                SmallVector<GlobalVariable *, 4> &GlobalVars,
557                                SmallVector<GlobalVariable *, 4> &Subprograms);
558
559   /// isValidDebugInfoIntrinsic - Return true if SPI is a valid debug 
560   /// info intrinsic.
561   bool isValidDebugInfoIntrinsic(DbgStopPointInst &SPI, 
562                                  CodeGenOpt::Level OptLev);
563
564   /// isValidDebugInfoIntrinsic - Return true if FSI is a valid debug 
565   /// info intrinsic.
566   bool isValidDebugInfoIntrinsic(DbgFuncStartInst &FSI,
567                                  CodeGenOpt::Level OptLev);
568
569   /// isValidDebugInfoIntrinsic - Return true if RSI is a valid debug 
570   /// info intrinsic.
571   bool isValidDebugInfoIntrinsic(DbgRegionStartInst &RSI,
572                                  CodeGenOpt::Level OptLev);
573
574   /// isValidDebugInfoIntrinsic - Return true if REI is a valid debug 
575   /// info intrinsic.
576   bool isValidDebugInfoIntrinsic(DbgRegionEndInst &REI,
577                                  CodeGenOpt::Level OptLev);
578
579   /// isValidDebugInfoIntrinsic - Return true if DI is a valid debug 
580   /// info intrinsic.
581   bool isValidDebugInfoIntrinsic(DbgDeclareInst &DI,
582                                  CodeGenOpt::Level OptLev);
583
584   /// ExtractDebugLocation - Extract debug location information 
585   /// from llvm.dbg.stoppoint intrinsic.
586   DebugLoc ExtractDebugLocation(DbgStopPointInst &SPI,
587                                 DebugLocTracker &DebugLocInfo);
588
589   /// ExtractDebugLocation - Extract debug location information 
590   /// from llvm.dbg.func_start intrinsic.
591   DebugLoc ExtractDebugLocation(DbgFuncStartInst &FSI,
592                                 DebugLocTracker &DebugLocInfo);
593
594   /// isInlinedFnStart - Return true if FSI is starting an inlined function.
595   bool isInlinedFnStart(DbgFuncStartInst &FSI, const Function *CurrentFn);
596
597   /// isInlinedFnEnd - Return true if REI is ending an inlined function.
598   bool isInlinedFnEnd(DbgRegionEndInst &REI, const Function *CurrentFn);
599
600 } // end namespace llvm
601
602 #endif