diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-27 01:21:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-27 01:21:50 +0000 |
commit | f72716d81f64664e6897d9f2e8a7d071bad1de68 (patch) | |
tree | 3f746f0f3a9221c4f0d4e115375fd2fa67e37bd4 /include/llvm/Transforms/Utils/Cloning.h | |
parent | 4b30fcb5f51a841d4ef2bb3ed0f29d4754aa9c46 (diff) |
Implement a new method: CloneAndPruneFunctionInto, as documented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28518 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Utils/Cloning.h')
-rw-r--r-- | include/llvm/Transforms/Utils/Cloning.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/llvm/Transforms/Utils/Cloning.h b/include/llvm/Transforms/Utils/Cloning.h index 4560c72862..38fc5ba740 100644 --- a/include/llvm/Transforms/Utils/Cloning.h +++ b/include/llvm/Transforms/Utils/Cloning.h @@ -130,6 +130,19 @@ void CloneFunctionInto(Function *NewFunc, const Function *OldFunc, const char *NameSuffix = "", ClonedCodeInfo *CodeInfo = 0); +/// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto, +/// except that it does some simple constant prop and DCE on the fly. The +/// effect of this is to copy significantly less code in cases where (for +/// example) a function call with constant arguments is inlined, and those +/// constant arguments cause a significant amount of code in the callee to be +/// dead. Since this doesn't produce an exactly copy of the input, it can't be +/// used for things like CloneFunction or CloneModule. +void CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc, + std::map<const Value*, Value*> &ValueMap, + std::vector<ReturnInst*> &Returns, + const char *NameSuffix = "", + ClonedCodeInfo *CodeInfo = 0); + /// CloneTraceInto - Clone T into NewFunc. Original<->clone mapping is /// saved in ValueMap. |