aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/Utils/Cloning.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-19 22:54:01 +0000
committerChris Lattner <sabre@nondot.org>2002-11-19 22:54:01 +0000
commitd18015599cbe09dd327b5f73501581a865bf27da (patch)
treee79c4792f7ce0bd99b129e0f7df07e8994d34d21 /include/llvm/Transforms/Utils/Cloning.h
parent6c2e2e52870230838380778415d9ad543e66dae3 (diff)
Minor changes to cloning interface
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4770 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Utils/Cloning.h')
-rw-r--r--include/llvm/Transforms/Utils/Cloning.h25
1 files changed, 24 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Utils/Cloning.h b/include/llvm/Transforms/Utils/Cloning.h
index 7434a2ece8..a6cefc5589 100644
--- a/include/llvm/Transforms/Utils/Cloning.h
+++ b/include/llvm/Transforms/Utils/Cloning.h
@@ -12,6 +12,7 @@
#define LLVM_TRANSFORMS_UTIlS_CLONING_H
#include <vector>
+#include <map>
class Module;
class Function;
class BasicBlock;
@@ -19,6 +20,28 @@ class Value;
class CallInst;
class ReturnInst;
+/// CloneModule - Return an exact copy of the specified module
+///
+Module *CloneModule(Module *M);
+
+/// CloneFunction - Return a copy of the specified function, but without
+/// embedding the function into another module. Also, any references specified
+/// in the ValueMap are changed to refer to their mapped value instead of the
+/// original one. If any of the arguments to the function are in the ValueMap,
+/// the arguments are deleted from the resultant function. The ValueMap is
+/// updated to include mappings from all of the instructions and basicblocks in
+/// the function from their old to new values.
+///
+Function *CloneFunction(const Function *F,
+ std::map<const Value*, Value*> &ValueMap);
+
+/// CloneFunction - Version of the function that doesn't need the ValueMap.
+///
+inline Function *CloneFunction(const Function *F) {
+ std::map<const Value*, Value*> ValueMap;
+ return CloneFunction(F, ValueMap);
+}
+
// Clone OldFunc into NewFunc, transforming the old arguments into references to
// ArgMap values. Note that if NewFunc already has basic blocks, the ones
// cloned into it will be added to the end of the function. This function fills
@@ -26,7 +49,7 @@ class ReturnInst;
// suffix to all values cloned.
//
void CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
- const std::vector<Value*> &ArgMap,
+ std::map<const Value*, Value*> &ValueMap,
std::vector<ReturnInst*> &Returns,
const char *NameSuffix = "");