blob: ca22003b4094eca3158faba5ac4287d3865895e8 [file] [log] [blame]
Chris Lattner8bce9882002-11-19 22:04:49 +00001//===- CloneFunction.cpp - Clone a function into another function ---------===//
2//
3// This file implements the CloneFunctionInto interface, which is used as the
4// low-level function cloner. This is used by the CloneFunction and function
5// inliner to do the dirty work of copying the body of a function around.
6//
7//===----------------------------------------------------------------------===//
Chris Lattner16bfdb52002-03-29 19:03:54 +00008
Chris Lattner16667512002-11-19 20:59:41 +00009#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattnerb1120052002-11-19 21:54:07 +000010#include "llvm/iTerminators.h"
Chris Lattnerfb311d22002-11-19 23:12:22 +000011#include "llvm/DerivedTypes.h"
Chris Lattner16bfdb52002-03-29 19:03:54 +000012#include "llvm/Function.h"
Chris Lattnere4dbb1a2002-11-20 20:47:41 +000013#include "ValueMapper.h"
Chris Lattner16bfdb52002-03-29 19:03:54 +000014
Chris Lattner16bfdb52002-03-29 19:03:54 +000015// RemapInstruction - Convert the instruction operands from referencing the
16// current values into those specified by ValueMap.
17//
18static inline void RemapInstruction(Instruction *I,
19 std::map<const Value *, Value*> &ValueMap) {
20 for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
21 const Value *Op = I->getOperand(op);
Chris Lattnere4dbb1a2002-11-20 20:47:41 +000022 Value *V = MapValue(Op, ValueMap);
Chris Lattner16bfdb52002-03-29 19:03:54 +000023#ifndef NDEBUG
24 if (!V) {
Anand Shukla2ac04a02002-06-25 21:18:19 +000025 std::cerr << "Val = \n" << Op << "Addr = " << (void*)Op;
26 std::cerr << "\nInst = " << I;
Chris Lattner16bfdb52002-03-29 19:03:54 +000027 }
28#endif
29 assert(V && "Referenced value not in value map!");
30 I->setOperand(op, V);
31 }
32}
33
34// Clone OldFunc into NewFunc, transforming the old arguments into references to
35// ArgMap values.
36//
37void CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
Chris Lattnerc3626182002-11-19 22:54:01 +000038 std::map<const Value*, Value*> &ValueMap,
Chris Lattnerb1120052002-11-19 21:54:07 +000039 std::vector<ReturnInst*> &Returns,
40 const char *NameSuffix) {
41 assert(NameSuffix && "NameSuffix cannot be null!");
Chris Lattner16bfdb52002-03-29 19:03:54 +000042
Chris Lattnerc3626182002-11-19 22:54:01 +000043#ifndef NDEBUG
Chris Lattnerfda72b12002-06-25 16:12:52 +000044 for (Function::const_aiterator I = OldFunc->abegin(), E = OldFunc->aend();
Chris Lattnerc3626182002-11-19 22:54:01 +000045 I != E; ++I)
46 assert(ValueMap.count(I) && "No mapping from source argument specified!");
47#endif
Chris Lattner16bfdb52002-03-29 19:03:54 +000048
49 // Loop over all of the basic blocks in the function, cloning them as
Chris Lattnerb1120052002-11-19 21:54:07 +000050 // appropriate. Note that we save BE this way in order to handle cloning of
51 // recursive functions into themselves.
Chris Lattner16bfdb52002-03-29 19:03:54 +000052 //
53 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
54 BI != BE; ++BI) {
Chris Lattnerfda72b12002-06-25 16:12:52 +000055 const BasicBlock &BB = *BI;
Chris Lattner16bfdb52002-03-29 19:03:54 +000056
57 // Create a new basic block to copy instructions into!
Chris Lattnerb1120052002-11-19 21:54:07 +000058 BasicBlock *CBB = new BasicBlock("", NewFunc);
59 if (BB.hasName()) CBB->setName(BB.getName()+NameSuffix);
Chris Lattnerfda72b12002-06-25 16:12:52 +000060 ValueMap[&BB] = CBB; // Add basic block mapping.
Chris Lattner16bfdb52002-03-29 19:03:54 +000061
62 // Loop over all instructions copying them over...
Chris Lattnerfda72b12002-06-25 16:12:52 +000063 for (BasicBlock::const_iterator II = BB.begin(), IE = BB.end();
Chris Lattner16bfdb52002-03-29 19:03:54 +000064 II != IE; ++II) {
Chris Lattnerfda72b12002-06-25 16:12:52 +000065 Instruction *NewInst = II->clone();
Chris Lattnerb1120052002-11-19 21:54:07 +000066 if (II->hasName())
67 NewInst->setName(II->getName()+NameSuffix); // Name is not cloned...
Chris Lattner16bfdb52002-03-29 19:03:54 +000068 CBB->getInstList().push_back(NewInst);
Chris Lattnerfda72b12002-06-25 16:12:52 +000069 ValueMap[II] = NewInst; // Add instruction map to value.
Chris Lattner16bfdb52002-03-29 19:03:54 +000070 }
Chris Lattnerb1120052002-11-19 21:54:07 +000071
72 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
73 Returns.push_back(RI);
Chris Lattner16bfdb52002-03-29 19:03:54 +000074 }
75
76 // Loop over all of the instructions in the function, fixing up operand
77 // references as we go. This uses ValueMap to do all the hard work.
78 //
Chris Lattnerfda72b12002-06-25 16:12:52 +000079 for (Function::const_iterator BB = OldFunc->begin(), BE = OldFunc->end();
80 BB != BE; ++BB) {
Chris Lattner16bfdb52002-03-29 19:03:54 +000081 BasicBlock *NBB = cast<BasicBlock>(ValueMap[BB]);
82
83 // Loop over all instructions, fixing each one as we find it...
Chris Lattnerfda72b12002-06-25 16:12:52 +000084 for (BasicBlock::iterator II = NBB->begin(); II != NBB->end(); ++II)
85 RemapInstruction(II, ValueMap);
Chris Lattner16bfdb52002-03-29 19:03:54 +000086 }
87}
Chris Lattnerfb311d22002-11-19 23:12:22 +000088
89/// CloneFunction - Return a copy of the specified function, but without
90/// embedding the function into another module. Also, any references specified
91/// in the ValueMap are changed to refer to their mapped value instead of the
92/// original one. If any of the arguments to the function are in the ValueMap,
93/// the arguments are deleted from the resultant function. The ValueMap is
94/// updated to include mappings from all of the instructions and basicblocks in
95/// the function from their old to new values.
96///
97Function *CloneFunction(const Function *F,
98 std::map<const Value*, Value*> &ValueMap) {
99 std::vector<const Type*> ArgTypes;
100
101 // The user might be deleting arguments to the function by specifying them in
102 // the ValueMap. If so, we need to not add the arguments to the arg ty vector
103 //
104 for (Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
105 if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet?
106 ArgTypes.push_back(I->getType());
107
108 // Create a new function type...
109 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
110 ArgTypes, F->getFunctionType()->isVarArg());
111
112 // Create the new function...
113 Function *NewF = new Function(FTy, F->hasInternalLinkage(), F->getName());
114
115 // Loop over the arguments, copying the names of the mapped arguments over...
116 Function::aiterator DestI = NewF->abegin();
117 for (Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
Chris Lattner7c6d9d9e2002-11-20 18:32:31 +0000118 if (ValueMap.count(I) == 0) { // Is this argument preserved?
Chris Lattnerfb311d22002-11-19 23:12:22 +0000119 DestI->setName(I->getName()); // Copy the name over...
Chris Lattner7c6d9d9e2002-11-20 18:32:31 +0000120 ValueMap[I] = DestI++; // Add mapping to ValueMap
Chris Lattnerfb311d22002-11-19 23:12:22 +0000121 }
122
123 std::vector<ReturnInst*> Returns; // Ignore returns cloned...
124 CloneFunctionInto(NewF, F, ValueMap, Returns);
125 return NewF;
126}