summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStuart Hastings <stuart@apple.com>2010-06-04 22:36:03 +0000
committerStuart Hastings <stuart@apple.com>2010-06-04 22:36:03 +0000
commit0f1b8135673f512b3373f3e1f16607f70537be72 (patch)
tree806ddb05ffeb126dbc4d6a6980753de7cce5d041 /include
parent93031ac032219c2200de2df1c73e594a0496ecef (diff)
downloadllvm-0f1b8135673f512b3373f3e1f16607f70537be72.tar.gz
llvm-0f1b8135673f512b3373f3e1f16607f70537be72.tar.bz2
llvm-0f1b8135673f512b3373f3e1f16607f70537be72.tar.xz
Support for nested functions/classes in debug output. Radar 7424645.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105492 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/DebugInfo.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h
index 473b127247..d468b4e6b3 100644
--- a/include/llvm/Analysis/DebugInfo.h
+++ b/include/llvm/Analysis/DebugInfo.h
@@ -56,6 +56,7 @@ namespace llvm {
}
GlobalVariable *getGlobalVariableField(unsigned Elt) const;
+ Function *getFunctionField(unsigned Elt) const;
public:
explicit DIDescriptor() : DbgNode(0) {}
@@ -409,6 +410,8 @@ namespace llvm {
/// describes - Return true if this subprogram provides debugging
/// information for the function F.
bool describes(const Function *F);
+
+ Function *getFunction() const { return getFunctionField(16); }
};
/// DIGlobalVariable - This is a wrapper for a global variable.
@@ -658,7 +661,8 @@ namespace llvm {
unsigned VIndex = 0,
DIType = DIType(),
bool isArtificial = 0,
- bool isOptimized = false);
+ bool isOptimized = false,
+ Function *Fn = 0);
/// CreateSubprogramDefinition - Create new subprogram descriptor for the
/// given declaration.