diff options
Diffstat (limited to 'contrib/llvm/include/llvm/IR/ModuleSlotTracker.h')
-rw-r--r-- | contrib/llvm/include/llvm/IR/ModuleSlotTracker.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h b/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h index c37dcec..49730a6 100644 --- a/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h +++ b/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h @@ -17,6 +17,7 @@ namespace llvm { class Module; class Function; class SlotTracker; +class Value; /// Manage lifetime of a slot tracker for printing IR. /// @@ -61,6 +62,13 @@ public: /// Purge the currently incorporated function and incorporate \c F. If \c F /// is currently incorporated, this is a no-op. void incorporateFunction(const Function &F); + + /// Return the slot number of the specified local value. + /// + /// A function that defines this value should be incorporated prior to calling + /// this method. + /// Return -1 if the value is not in the function's SlotTracker. + int getLocalSlot(const Value *V); }; } // end namespace llvm |