diff options
author | Devang Patel <dpatel@apple.com> | 2011-04-05 22:52:06 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-04-05 22:52:06 +0000 |
commit | da19475328ece3da19437a2e9eef035dcafa2814 (patch) | |
tree | 684e61811d6206c998d94c6690d3f403e5fa5014 /include | |
parent | 76634dfabb02507b73c0baed6fdd98bd5e703c60 (diff) | |
download | external_llvm-da19475328ece3da19437a2e9eef035dcafa2814.zip external_llvm-da19475328ece3da19437a2e9eef035dcafa2814.tar.gz external_llvm-da19475328ece3da19437a2e9eef035dcafa2814.tar.bz2 |
Add support to encode function's template parameters.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128947 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/DIBuilder.h | 8 | ||||
-rw-r--r-- | include/llvm/Analysis/DebugInfo.h | 1 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/llvm/Analysis/DIBuilder.h b/include/llvm/Analysis/DIBuilder.h index 5c0c037..329db64 100644 --- a/include/llvm/Analysis/DIBuilder.h +++ b/include/llvm/Analysis/DIBuilder.h @@ -368,6 +368,7 @@ namespace llvm { /// This flags are used to emit dwarf attributes. /// @param isOptimized True if optimization is ON. /// @param Fn llvm::Function pointer. + /// @param TParam Function template parameters. DISubprogram createFunction(DIDescriptor Scope, StringRef Name, StringRef LinkageName, DIFile File, unsigned LineNo, @@ -375,7 +376,8 @@ namespace llvm { bool isDefinition, unsigned Flags = 0, bool isOptimized = false, - Function *Fn = 0); + Function *Fn = 0, + MDNode *TParam = 0); /// createMethod - Create a new descriptor for the specified C++ method. /// See comments in DISubprogram for descriptions of these fields. @@ -395,6 +397,7 @@ namespace llvm { /// This flags are used to emit dwarf attributes. /// @param isOptimized True if optimization is ON. /// @param Fn llvm::Function pointer. + /// @param TParam Function template parameters. DISubprogram createMethod(DIDescriptor Scope, StringRef Name, StringRef LinkageName, DIFile File, unsigned LineNo, @@ -404,7 +407,8 @@ namespace llvm { MDNode *VTableHolder = 0, unsigned Flags = 0, bool isOptimized = false, - Function *Fn = 0); + Function *Fn = 0, + MDNode *TParam = 0); /// createNameSpace - This creates new descriptor for a namespace /// with the specified parent scope. diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index 951fd3c..276ac45 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -511,6 +511,7 @@ namespace llvm { bool describes(const Function *F); Function *getFunction() const { return getFunctionField(16); } + DIArray getTemplateParams() const { return getFieldAs<DIArray>(17); } }; /// DIGlobalVariable - This is a wrapper for a global variable. |