From 870cfcf9a6189b65a8ee805b93a2c737c0183e62 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 31 Mar 2010 03:34:40 +0000 Subject: add new apis for getting/setting !dbg metadata on instructions. In addition to being a convenience, they are faster than the old apis, particularly when not going from an MDKindID like people should be doing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99982 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Instruction.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'include/llvm/Instruction.h') diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h index 41841126b3..472ab83f2e 100644 --- a/include/llvm/Instruction.h +++ b/include/llvm/Instruction.h @@ -156,6 +156,16 @@ public: void setMetadata(unsigned KindID, MDNode *Node); void setMetadata(const char *Kind, MDNode *Node); + /// setDbgMetadata - This is just an optimized helper function that is + /// equivalent to setMetadata("dbg", Node); + void setDbgMetadata(MDNode *Node); + + /// getDbgMetadata - This is just an optimized helper function that is + /// equivalent to calling getMetadata("dbg"). + MDNode *getDbgMetadata() const { + return DbgInfo; + } + private: /// hasMetadataHashEntry - Return true if we have an entry in the on-the-side /// metadata hash. -- cgit v1.2.3