blob: f5ea66047a1f31da6be1531d6f0e30a9dd087bec [file] [log] [blame]
Chris Lattner6c2e2e52002-11-19 22:04:49 +00001//===- CloneFunction.cpp - Clone a function into another function ---------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner6c2e2e52002-11-19 22:04:49 +00009//
10// This file implements the CloneFunctionInto interface, which is used as the
11// low-level function cloner. This is used by the CloneFunction and function
12// inliner to do the dirty work of copying the body of a function around.
13//
14//===----------------------------------------------------------------------===//
Chris Lattnerfa703a42002-03-29 19:03:54 +000015
Chris Lattner309f1932002-11-19 20:59:41 +000016#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattnerdcd80402002-11-19 21:54:07 +000017#include "llvm/iTerminators.h"
Chris Lattner5a8932f2002-11-19 23:12:22 +000018#include "llvm/DerivedTypes.h"
Chris Lattnerfa703a42002-03-29 19:03:54 +000019#include "llvm/Function.h"
Chris Lattner51cbcbf2002-11-20 20:47:41 +000020#include "ValueMapper.h"
Chris Lattnerf7703df2004-01-09 06:12:26 +000021using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000022
Chris Lattnerfa703a42002-03-29 19:03:54 +000023// RemapInstruction - Convert the instruction operands from referencing the
24// current values into those specified by ValueMap.
25//
26static inline void RemapInstruction(Instruction *I,
27 std::map<const Value *, Value*> &ValueMap) {
28 for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
29 const Value *Op = I->getOperand(op);
Chris Lattner51cbcbf2002-11-20 20:47:41 +000030 Value *V = MapValue(Op, ValueMap);
Chris Lattnerfa703a42002-03-29 19:03:54 +000031#ifndef NDEBUG
32 if (!V) {
Anand Shukla3b5eabb2002-06-25 21:18:19 +000033 std::cerr << "Val = \n" << Op << "Addr = " << (void*)Op;
34 std::cerr << "\nInst = " << I;
Chris Lattnerfa703a42002-03-29 19:03:54 +000035 }
36#endif
37 assert(V && "Referenced value not in value map!");
38 I->setOperand(op, V);
39 }
40}
41
Chris Lattner17d145d2003-04-18 03:50:09 +000042// CloneBasicBlock - See comments in Cloning.h
Chris Lattnerf7703df2004-01-09 06:12:26 +000043BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB,
44 std::map<const Value*, Value*> &ValueMap,
Chris Lattner23b4c682004-02-04 01:19:43 +000045 const char *NameSuffix, Function *F) {
46 BasicBlock *NewBB = new BasicBlock("", F);
Chris Lattner17d145d2003-04-18 03:50:09 +000047 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
48
49 // Loop over all instructions copying them over...
50 for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();
51 II != IE; ++II) {
52 Instruction *NewInst = II->clone();
53 if (II->hasName())
54 NewInst->setName(II->getName()+NameSuffix);
55 NewBB->getInstList().push_back(NewInst);
56 ValueMap[II] = NewInst; // Add instruction map to value.
57 }
58 return NewBB;
59}
60
Chris Lattnerfa703a42002-03-29 19:03:54 +000061// Clone OldFunc into NewFunc, transforming the old arguments into references to
62// ArgMap values.
63//
Chris Lattnerf7703df2004-01-09 06:12:26 +000064void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
65 std::map<const Value*, Value*> &ValueMap,
66 std::vector<ReturnInst*> &Returns,
67 const char *NameSuffix) {
Chris Lattnerdcd80402002-11-19 21:54:07 +000068 assert(NameSuffix && "NameSuffix cannot be null!");
Chris Lattnerfa703a42002-03-29 19:03:54 +000069
Chris Lattnerd1801552002-11-19 22:54:01 +000070#ifndef NDEBUG
Chris Lattner18961502002-06-25 16:12:52 +000071 for (Function::const_aiterator I = OldFunc->abegin(), E = OldFunc->aend();
Chris Lattnerd1801552002-11-19 22:54:01 +000072 I != E; ++I)
73 assert(ValueMap.count(I) && "No mapping from source argument specified!");
74#endif
Chris Lattnerfa703a42002-03-29 19:03:54 +000075
76 // Loop over all of the basic blocks in the function, cloning them as
Chris Lattnerdcd80402002-11-19 21:54:07 +000077 // appropriate. Note that we save BE this way in order to handle cloning of
78 // recursive functions into themselves.
Chris Lattnerfa703a42002-03-29 19:03:54 +000079 //
80 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
81 BI != BE; ++BI) {
Chris Lattner18961502002-06-25 16:12:52 +000082 const BasicBlock &BB = *BI;
Chris Lattnerfa703a42002-03-29 19:03:54 +000083
Chris Lattner17d145d2003-04-18 03:50:09 +000084 // Create a new basic block and copy instructions into it!
Chris Lattner23b4c682004-02-04 01:19:43 +000085 BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc);
Chris Lattner18961502002-06-25 16:12:52 +000086 ValueMap[&BB] = CBB; // Add basic block mapping.
Chris Lattnerfa703a42002-03-29 19:03:54 +000087
Chris Lattnerdcd80402002-11-19 21:54:07 +000088 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
89 Returns.push_back(RI);
Chris Lattnerfa703a42002-03-29 19:03:54 +000090 }
91
92 // Loop over all of the instructions in the function, fixing up operand
93 // references as we go. This uses ValueMap to do all the hard work.
94 //
Chris Lattnera33ceaa2004-02-04 21:44:26 +000095 for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]),
96 BE = NewFunc->end(); BB != BE; ++BB)
Chris Lattnerfa703a42002-03-29 19:03:54 +000097 // Loop over all instructions, fixing each one as we find it...
Chris Lattnera33ceaa2004-02-04 21:44:26 +000098 for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II)
Chris Lattner18961502002-06-25 16:12:52 +000099 RemapInstruction(II, ValueMap);
Chris Lattnerfa703a42002-03-29 19:03:54 +0000100}
Chris Lattner5a8932f2002-11-19 23:12:22 +0000101
102/// CloneFunction - Return a copy of the specified function, but without
103/// embedding the function into another module. Also, any references specified
104/// in the ValueMap are changed to refer to their mapped value instead of the
105/// original one. If any of the arguments to the function are in the ValueMap,
106/// the arguments are deleted from the resultant function. The ValueMap is
107/// updated to include mappings from all of the instructions and basicblocks in
108/// the function from their old to new values.
109///
Chris Lattnerf7703df2004-01-09 06:12:26 +0000110Function *llvm::CloneFunction(const Function *F,
111 std::map<const Value*, Value*> &ValueMap) {
Chris Lattner5a8932f2002-11-19 23:12:22 +0000112 std::vector<const Type*> ArgTypes;
113
114 // The user might be deleting arguments to the function by specifying them in
115 // the ValueMap. If so, we need to not add the arguments to the arg ty vector
116 //
117 for (Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
118 if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet?
119 ArgTypes.push_back(I->getType());
120
121 // Create a new function type...
122 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
123 ArgTypes, F->getFunctionType()->isVarArg());
124
125 // Create the new function...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000126 Function *NewF = new Function(FTy, F->getLinkage(), F->getName());
Chris Lattner5a8932f2002-11-19 23:12:22 +0000127
128 // Loop over the arguments, copying the names of the mapped arguments over...
129 Function::aiterator DestI = NewF->abegin();
130 for (Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
Chris Lattnerc09aab02002-11-20 18:32:31 +0000131 if (ValueMap.count(I) == 0) { // Is this argument preserved?
Chris Lattner5a8932f2002-11-19 23:12:22 +0000132 DestI->setName(I->getName()); // Copy the name over...
Chris Lattnerc09aab02002-11-20 18:32:31 +0000133 ValueMap[I] = DestI++; // Add mapping to ValueMap
Chris Lattner5a8932f2002-11-19 23:12:22 +0000134 }
135
136 std::vector<ReturnInst*> Returns; // Ignore returns cloned...
137 CloneFunctionInto(NewF, F, ValueMap, Returns);
138 return NewF;
139}
Brian Gaeked0fde302003-11-11 22:41:34 +0000140