blob: ba9b57d4f568b89461ab824dde4cece7393decb3 [file] [log] [blame]
Chris Lattner6c2e2e52002-11-19 22:04:49 +00001//===- CloneFunction.cpp - Clone a function into another function ---------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
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 Lattnera4c29d22006-01-13 18:39:17 +000017#include "llvm/Constants.h"
Chris Lattner5a8932f2002-11-19 23:12:22 +000018#include "llvm/DerivedTypes.h"
Chris Lattnera4c29d22006-01-13 18:39:17 +000019#include "llvm/Instructions.h"
Chris Lattnerfa703a42002-03-29 19:03:54 +000020#include "llvm/Function.h"
Chris Lattner35033ef2006-06-01 19:19:23 +000021#include "llvm/Support/CFG.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000022#include "llvm/Support/Compiler.h"
Anton Korobeynikov344ef192007-11-09 12:27:04 +000023#include "llvm/Transforms/Utils/ValueMapper.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000024#include "llvm/Analysis/ConstantFolding.h"
Chris Lattner9fa038d2007-01-30 23:13:49 +000025#include "llvm/ADT/SmallVector.h"
Chris Lattner5e665f52007-02-03 00:08:31 +000026#include <map>
Chris Lattnerf7703df2004-01-09 06:12:26 +000027using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000028
Chris Lattner17d145d2003-04-18 03:50:09 +000029// CloneBasicBlock - See comments in Cloning.h
Chris Lattnerf7703df2004-01-09 06:12:26 +000030BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB,
Chris Lattner5e665f52007-02-03 00:08:31 +000031 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnera4c29d22006-01-13 18:39:17 +000032 const char *NameSuffix, Function *F,
33 ClonedCodeInfo *CodeInfo) {
Gabor Greif051a9502008-04-06 20:25:17 +000034 BasicBlock *NewBB = BasicBlock::Create("", F);
Chris Lattner17d145d2003-04-18 03:50:09 +000035 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
Nick Lewycky529de8a2008-03-09 05:24:34 +000036 NewBB->setUnwindDest(const_cast<BasicBlock*>(BB->getUnwindDest()));
Chris Lattner17d145d2003-04-18 03:50:09 +000037
Chris Lattnera4c29d22006-01-13 18:39:17 +000038 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
39
40 // Loop over all instructions, and copy them over.
Chris Lattner17d145d2003-04-18 03:50:09 +000041 for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();
42 II != IE; ++II) {
43 Instruction *NewInst = II->clone();
44 if (II->hasName())
45 NewInst->setName(II->getName()+NameSuffix);
46 NewBB->getInstList().push_back(NewInst);
47 ValueMap[II] = NewInst; // Add instruction map to value.
Chris Lattnera4c29d22006-01-13 18:39:17 +000048
49 hasCalls |= isa<CallInst>(II);
50 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
51 if (isa<ConstantInt>(AI->getArraySize()))
52 hasStaticAllocas = true;
53 else
54 hasDynamicAllocas = true;
55 }
56 }
57
58 if (CodeInfo) {
59 CodeInfo->ContainsCalls |= hasCalls;
60 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(BB->getTerminator());
61 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
62 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
Dan Gohmanecb7a772007-03-22 16:38:57 +000063 BB != &BB->getParent()->getEntryBlock();
Chris Lattner17d145d2003-04-18 03:50:09 +000064 }
65 return NewBB;
66}
67
Chris Lattnerfa703a42002-03-29 19:03:54 +000068// Clone OldFunc into NewFunc, transforming the old arguments into references to
69// ArgMap values.
70//
Chris Lattnerf7703df2004-01-09 06:12:26 +000071void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +000072 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnerf7703df2004-01-09 06:12:26 +000073 std::vector<ReturnInst*> &Returns,
Chris Lattnera4c29d22006-01-13 18:39:17 +000074 const char *NameSuffix, ClonedCodeInfo *CodeInfo) {
Chris Lattnerdcd80402002-11-19 21:54:07 +000075 assert(NameSuffix && "NameSuffix cannot be null!");
Misha Brukmanfd939082005-04-21 23:48:37 +000076
Chris Lattnerd1801552002-11-19 22:54:01 +000077#ifndef NDEBUG
Chris Lattnera4c29d22006-01-13 18:39:17 +000078 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
79 E = OldFunc->arg_end(); I != E; ++I)
Chris Lattnerd1801552002-11-19 22:54:01 +000080 assert(ValueMap.count(I) && "No mapping from source argument specified!");
81#endif
Chris Lattnerfa703a42002-03-29 19:03:54 +000082
Duncan Sandsdc024672007-11-27 13:23:08 +000083 // Clone the parameter attributes
84 NewFunc->setParamAttrs(OldFunc->getParamAttrs());
85
Anton Korobeynikov9e49f1b2008-03-23 16:03:00 +000086 // Clone the calling convention
87 NewFunc->setCallingConv(OldFunc->getCallingConv());
88
Chris Lattnerfa703a42002-03-29 19:03:54 +000089 // Loop over all of the basic blocks in the function, cloning them as
Chris Lattnerdcd80402002-11-19 21:54:07 +000090 // appropriate. Note that we save BE this way in order to handle cloning of
91 // recursive functions into themselves.
Chris Lattnerfa703a42002-03-29 19:03:54 +000092 //
93 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
94 BI != BE; ++BI) {
Chris Lattner18961502002-06-25 16:12:52 +000095 const BasicBlock &BB = *BI;
Misha Brukmanfd939082005-04-21 23:48:37 +000096
Chris Lattner17d145d2003-04-18 03:50:09 +000097 // Create a new basic block and copy instructions into it!
Chris Lattnera4c29d22006-01-13 18:39:17 +000098 BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc,
99 CodeInfo);
Chris Lattner18961502002-06-25 16:12:52 +0000100 ValueMap[&BB] = CBB; // Add basic block mapping.
Chris Lattnerfa703a42002-03-29 19:03:54 +0000101
Chris Lattnerdcd80402002-11-19 21:54:07 +0000102 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
103 Returns.push_back(RI);
Chris Lattnerfa703a42002-03-29 19:03:54 +0000104 }
105
Misha Brukmanfd939082005-04-21 23:48:37 +0000106 // Loop over all of the instructions in the function, fixing up operand
Chris Lattnerfa703a42002-03-29 19:03:54 +0000107 // references as we go. This uses ValueMap to do all the hard work.
108 //
Chris Lattnera33ceaa2004-02-04 21:44:26 +0000109 for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]),
Nick Lewycky529de8a2008-03-09 05:24:34 +0000110 BE = NewFunc->end(); BB != BE; ++BB) {
Nick Lewycky9be3c972008-03-10 02:20:00 +0000111 // Fix up the unwind destination.
Nick Lewycky529de8a2008-03-09 05:24:34 +0000112 if (BasicBlock *UnwindDest = BB->getUnwindDest())
113 BB->setUnwindDest(cast<BasicBlock>(ValueMap[UnwindDest]));
114
Chris Lattnerfa703a42002-03-29 19:03:54 +0000115 // Loop over all instructions, fixing each one as we find it...
Chris Lattnera33ceaa2004-02-04 21:44:26 +0000116 for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II)
Chris Lattner18961502002-06-25 16:12:52 +0000117 RemapInstruction(II, ValueMap);
Nick Lewycky529de8a2008-03-09 05:24:34 +0000118 }
Chris Lattnerfa703a42002-03-29 19:03:54 +0000119}
Chris Lattner5a8932f2002-11-19 23:12:22 +0000120
121/// CloneFunction - Return a copy of the specified function, but without
122/// embedding the function into another module. Also, any references specified
123/// in the ValueMap are changed to refer to their mapped value instead of the
124/// original one. If any of the arguments to the function are in the ValueMap,
125/// the arguments are deleted from the resultant function. The ValueMap is
126/// updated to include mappings from all of the instructions and basicblocks in
127/// the function from their old to new values.
128///
Chris Lattnerf7703df2004-01-09 06:12:26 +0000129Function *llvm::CloneFunction(const Function *F,
Chris Lattner5e665f52007-02-03 00:08:31 +0000130 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnera4c29d22006-01-13 18:39:17 +0000131 ClonedCodeInfo *CodeInfo) {
Chris Lattner5a8932f2002-11-19 23:12:22 +0000132 std::vector<const Type*> ArgTypes;
133
134 // The user might be deleting arguments to the function by specifying them in
135 // the ValueMap. If so, we need to not add the arguments to the arg ty vector
136 //
Chris Lattnera4c29d22006-01-13 18:39:17 +0000137 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
138 I != E; ++I)
Chris Lattner5a8932f2002-11-19 23:12:22 +0000139 if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet?
140 ArgTypes.push_back(I->getType());
141
142 // Create a new function type...
143 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
144 ArgTypes, F->getFunctionType()->isVarArg());
145
146 // Create the new function...
Gabor Greif051a9502008-04-06 20:25:17 +0000147 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName());
Misha Brukmanfd939082005-04-21 23:48:37 +0000148
Chris Lattner5a8932f2002-11-19 23:12:22 +0000149 // Loop over the arguments, copying the names of the mapped arguments over...
Chris Lattnere4d5c442005-03-15 04:54:21 +0000150 Function::arg_iterator DestI = NewF->arg_begin();
Chris Lattnera4c29d22006-01-13 18:39:17 +0000151 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
152 I != E; ++I)
Chris Lattnerc09aab02002-11-20 18:32:31 +0000153 if (ValueMap.count(I) == 0) { // Is this argument preserved?
Chris Lattner5a8932f2002-11-19 23:12:22 +0000154 DestI->setName(I->getName()); // Copy the name over...
Chris Lattnerc09aab02002-11-20 18:32:31 +0000155 ValueMap[I] = DestI++; // Add mapping to ValueMap
Chris Lattner5a8932f2002-11-19 23:12:22 +0000156 }
157
158 std::vector<ReturnInst*> Returns; // Ignore returns cloned...
Chris Lattnera4c29d22006-01-13 18:39:17 +0000159 CloneFunctionInto(NewF, F, ValueMap, Returns, "", CodeInfo);
Misha Brukmanfd939082005-04-21 23:48:37 +0000160 return NewF;
Chris Lattner5a8932f2002-11-19 23:12:22 +0000161}
Brian Gaeked0fde302003-11-11 22:41:34 +0000162
Chris Lattner83f03bf2006-05-27 01:22:24 +0000163
164
165namespace {
166 /// PruningFunctionCloner - This class is a private class used to implement
167 /// the CloneAndPruneFunctionInto method.
Reid Spencer9133fe22007-02-05 23:32:05 +0000168 struct VISIBILITY_HIDDEN PruningFunctionCloner {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000169 Function *NewFunc;
170 const Function *OldFunc;
Chris Lattner5e665f52007-02-03 00:08:31 +0000171 DenseMap<const Value*, Value*> &ValueMap;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000172 std::vector<ReturnInst*> &Returns;
173 const char *NameSuffix;
174 ClonedCodeInfo *CodeInfo;
Chris Lattner1dfdf822007-01-30 23:22:39 +0000175 const TargetData *TD;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000176
177 public:
178 PruningFunctionCloner(Function *newFunc, const Function *oldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +0000179 DenseMap<const Value*, Value*> &valueMap,
Chris Lattner83f03bf2006-05-27 01:22:24 +0000180 std::vector<ReturnInst*> &returns,
181 const char *nameSuffix,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000182 ClonedCodeInfo *codeInfo,
183 const TargetData *td)
Chris Lattner83f03bf2006-05-27 01:22:24 +0000184 : NewFunc(newFunc), OldFunc(oldFunc), ValueMap(valueMap), Returns(returns),
Chris Lattner1dfdf822007-01-30 23:22:39 +0000185 NameSuffix(nameSuffix), CodeInfo(codeInfo), TD(td) {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000186 }
187
188 /// CloneBlock - The specified block is found to be reachable, clone it and
189 /// anything that it can reach.
Chris Lattner67ef2412007-03-02 03:11:20 +0000190 void CloneBlock(const BasicBlock *BB,
191 std::vector<const BasicBlock*> &ToClone);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000192
193 public:
194 /// ConstantFoldMappedInstruction - Constant fold the specified instruction,
195 /// mapping its operands through ValueMap if they are available.
196 Constant *ConstantFoldMappedInstruction(const Instruction *I);
197 };
198}
199
200/// CloneBlock - The specified block is found to be reachable, clone it and
201/// anything that it can reach.
Chris Lattner67ef2412007-03-02 03:11:20 +0000202void PruningFunctionCloner::CloneBlock(const BasicBlock *BB,
203 std::vector<const BasicBlock*> &ToClone){
Chris Lattner83f03bf2006-05-27 01:22:24 +0000204 Value *&BBEntry = ValueMap[BB];
205
206 // Have we already cloned this block?
207 if (BBEntry) return;
208
209 // Nope, clone it now.
210 BasicBlock *NewBB;
Gabor Greif051a9502008-04-06 20:25:17 +0000211 BBEntry = NewBB = BasicBlock::Create();
Chris Lattner83f03bf2006-05-27 01:22:24 +0000212 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
213
214 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
215
216 // Loop over all instructions, and copy them over, DCE'ing as we go. This
217 // loop doesn't include the terminator.
Chris Lattner35033ef2006-06-01 19:19:23 +0000218 for (BasicBlock::const_iterator II = BB->begin(), IE = --BB->end();
Chris Lattner83f03bf2006-05-27 01:22:24 +0000219 II != IE; ++II) {
220 // If this instruction constant folds, don't bother cloning the instruction,
221 // instead, just add the constant to the value map.
222 if (Constant *C = ConstantFoldMappedInstruction(II)) {
223 ValueMap[II] = C;
224 continue;
225 }
226
227 Instruction *NewInst = II->clone();
228 if (II->hasName())
229 NewInst->setName(II->getName()+NameSuffix);
230 NewBB->getInstList().push_back(NewInst);
231 ValueMap[II] = NewInst; // Add instruction map to value.
232
233 hasCalls |= isa<CallInst>(II);
234 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
235 if (isa<ConstantInt>(AI->getArraySize()))
236 hasStaticAllocas = true;
237 else
238 hasDynamicAllocas = true;
239 }
240 }
241
Chris Lattner35033ef2006-06-01 19:19:23 +0000242 // Finally, clone over the terminator.
243 const TerminatorInst *OldTI = BB->getTerminator();
244 bool TerminatorDone = false;
245 if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) {
246 if (BI->isConditional()) {
247 // If the condition was a known constant in the callee...
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000248 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
249 // Or is a known constant in the caller...
250 if (Cond == 0)
251 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[BI->getCondition()]);
252
253 // Constant fold to uncond branch!
254 if (Cond) {
Reid Spencer579dca12007-01-12 04:24:46 +0000255 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
Gabor Greif051a9502008-04-06 20:25:17 +0000256 ValueMap[OldTI] = BranchInst::Create(Dest, NewBB);
Chris Lattner67ef2412007-03-02 03:11:20 +0000257 ToClone.push_back(Dest);
Chris Lattner35033ef2006-06-01 19:19:23 +0000258 TerminatorDone = true;
259 }
260 }
261 } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) {
262 // If switching on a value known constant in the caller.
263 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
264 if (Cond == 0) // Or known constant after constant prop in the callee...
265 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[SI->getCondition()]);
266 if (Cond) { // Constant fold to uncond branch!
267 BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond));
Gabor Greif051a9502008-04-06 20:25:17 +0000268 ValueMap[OldTI] = BranchInst::Create(Dest, NewBB);
Chris Lattner67ef2412007-03-02 03:11:20 +0000269 ToClone.push_back(Dest);
Chris Lattner35033ef2006-06-01 19:19:23 +0000270 TerminatorDone = true;
271 }
272 }
273
274 if (!TerminatorDone) {
275 Instruction *NewInst = OldTI->clone();
276 if (OldTI->hasName())
277 NewInst->setName(OldTI->getName()+NameSuffix);
278 NewBB->getInstList().push_back(NewInst);
279 ValueMap[OldTI] = NewInst; // Add instruction map to value.
280
281 // Recursively clone any reachable successor blocks.
282 const TerminatorInst *TI = BB->getTerminator();
283 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
Chris Lattner67ef2412007-03-02 03:11:20 +0000284 ToClone.push_back(TI->getSuccessor(i));
Chris Lattner35033ef2006-06-01 19:19:23 +0000285 }
286
Chris Lattner83f03bf2006-05-27 01:22:24 +0000287 if (CodeInfo) {
288 CodeInfo->ContainsCalls |= hasCalls;
Chris Lattner35033ef2006-06-01 19:19:23 +0000289 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(OldTI);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000290 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
291 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
292 BB != &BB->getParent()->front();
293 }
294
295 if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator()))
296 Returns.push_back(RI);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000297}
298
299/// ConstantFoldMappedInstruction - Constant fold the specified instruction,
300/// mapping its operands through ValueMap if they are available.
301Constant *PruningFunctionCloner::
302ConstantFoldMappedInstruction(const Instruction *I) {
Chris Lattner9fa038d2007-01-30 23:13:49 +0000303 SmallVector<Constant*, 8> Ops;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000304 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
305 if (Constant *Op = dyn_cast_or_null<Constant>(MapValue(I->getOperand(i),
306 ValueMap)))
307 Ops.push_back(Op);
308 else
309 return 0; // All operands not constant!
310
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000311
312 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
313 return ConstantFoldCompareInstOperands(CI->getPredicate(),
314 &Ops[0], Ops.size(), TD);
315 else
316 return ConstantFoldInstOperands(I->getOpcode(), I->getType(),
317 &Ops[0], Ops.size(), TD);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000318}
319
Chris Lattner83f03bf2006-05-27 01:22:24 +0000320/// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto,
321/// except that it does some simple constant prop and DCE on the fly. The
322/// effect of this is to copy significantly less code in cases where (for
323/// example) a function call with constant arguments is inlined, and those
324/// constant arguments cause a significant amount of code in the callee to be
Duncan Sandsdc024672007-11-27 13:23:08 +0000325/// dead. Since this doesn't produce an exact copy of the input, it can't be
Chris Lattner83f03bf2006-05-27 01:22:24 +0000326/// used for things like CloneFunction or CloneModule.
327void llvm::CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +0000328 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattner83f03bf2006-05-27 01:22:24 +0000329 std::vector<ReturnInst*> &Returns,
330 const char *NameSuffix,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000331 ClonedCodeInfo *CodeInfo,
332 const TargetData *TD) {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000333 assert(NameSuffix && "NameSuffix cannot be null!");
334
335#ifndef NDEBUG
Jeff Cohend41b30d2006-11-05 19:31:28 +0000336 for (Function::const_arg_iterator II = OldFunc->arg_begin(),
337 E = OldFunc->arg_end(); II != E; ++II)
338 assert(ValueMap.count(II) && "No mapping from source argument specified!");
Chris Lattner83f03bf2006-05-27 01:22:24 +0000339#endif
340
341 PruningFunctionCloner PFC(NewFunc, OldFunc, ValueMap, Returns,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000342 NameSuffix, CodeInfo, TD);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000343
344 // Clone the entry block, and anything recursively reachable from it.
Chris Lattner67ef2412007-03-02 03:11:20 +0000345 std::vector<const BasicBlock*> CloneWorklist;
346 CloneWorklist.push_back(&OldFunc->getEntryBlock());
347 while (!CloneWorklist.empty()) {
348 const BasicBlock *BB = CloneWorklist.back();
349 CloneWorklist.pop_back();
350 PFC.CloneBlock(BB, CloneWorklist);
351 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000352
353 // Loop over all of the basic blocks in the old function. If the block was
354 // reachable, we have cloned it and the old block is now in the value map:
355 // insert it into the new function in the right order. If not, ignore it.
356 //
Chris Lattner35033ef2006-06-01 19:19:23 +0000357 // Defer PHI resolution until rest of function is resolved.
358 std::vector<const PHINode*> PHIToResolve;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000359 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
360 BI != BE; ++BI) {
361 BasicBlock *NewBB = cast_or_null<BasicBlock>(ValueMap[BI]);
362 if (NewBB == 0) continue; // Dead block.
Chris Lattner35033ef2006-06-01 19:19:23 +0000363
Chris Lattner83f03bf2006-05-27 01:22:24 +0000364 // Add the new block to the new function.
365 NewFunc->getBasicBlockList().push_back(NewBB);
366
367 // Loop over all of the instructions in the block, fixing up operand
368 // references as we go. This uses ValueMap to do all the hard work.
369 //
370 BasicBlock::iterator I = NewBB->begin();
371
372 // Handle PHI nodes specially, as we have to remove references to dead
373 // blocks.
374 if (PHINode *PN = dyn_cast<PHINode>(I)) {
Chris Lattner35033ef2006-06-01 19:19:23 +0000375 // Skip over all PHI nodes, remembering them for later.
376 BasicBlock::const_iterator OldI = BI->begin();
377 for (; (PN = dyn_cast<PHINode>(I)); ++I, ++OldI)
378 PHIToResolve.push_back(cast<PHINode>(OldI));
Chris Lattner83f03bf2006-05-27 01:22:24 +0000379 }
380
381 // Otherwise, remap the rest of the instructions normally.
382 for (; I != NewBB->end(); ++I)
383 RemapInstruction(I, ValueMap);
384 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000385
386 // Defer PHI resolution until rest of function is resolved, PHI resolution
387 // requires the CFG to be up-to-date.
388 for (unsigned phino = 0, e = PHIToResolve.size(); phino != e; ) {
389 const PHINode *OPN = PHIToResolve[phino];
Chris Lattner35033ef2006-06-01 19:19:23 +0000390 unsigned NumPreds = OPN->getNumIncomingValues();
Chris Lattner35033ef2006-06-01 19:19:23 +0000391 const BasicBlock *OldBB = OPN->getParent();
392 BasicBlock *NewBB = cast<BasicBlock>(ValueMap[OldBB]);
393
394 // Map operands for blocks that are live and remove operands for blocks
395 // that are dead.
396 for (; phino != PHIToResolve.size() &&
397 PHIToResolve[phino]->getParent() == OldBB; ++phino) {
398 OPN = PHIToResolve[phino];
399 PHINode *PN = cast<PHINode>(ValueMap[OPN]);
400 for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) {
401 if (BasicBlock *MappedBlock =
402 cast_or_null<BasicBlock>(ValueMap[PN->getIncomingBlock(pred)])) {
403 Value *InVal = MapValue(PN->getIncomingValue(pred), ValueMap);
404 assert(InVal && "Unknown input value?");
405 PN->setIncomingValue(pred, InVal);
406 PN->setIncomingBlock(pred, MappedBlock);
407 } else {
408 PN->removeIncomingValue(pred, false);
409 --pred, --e; // Revisit the next entry.
410 }
411 }
412 }
413
414 // The loop above has removed PHI entries for those blocks that are dead
415 // and has updated others. However, if a block is live (i.e. copied over)
416 // but its terminator has been changed to not go to this block, then our
417 // phi nodes will have invalid entries. Update the PHI nodes in this
418 // case.
419 PHINode *PN = cast<PHINode>(NewBB->begin());
420 NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB));
421 if (NumPreds != PN->getNumIncomingValues()) {
422 assert(NumPreds < PN->getNumIncomingValues());
423 // Count how many times each predecessor comes to this block.
424 std::map<BasicBlock*, unsigned> PredCount;
425 for (pred_iterator PI = pred_begin(NewBB), E = pred_end(NewBB);
426 PI != E; ++PI)
427 --PredCount[*PI];
428
429 // Figure out how many entries to remove from each PHI.
430 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
431 ++PredCount[PN->getIncomingBlock(i)];
432
433 // At this point, the excess predecessor entries are positive in the
434 // map. Loop over all of the PHIs and remove excess predecessor
435 // entries.
436 BasicBlock::iterator I = NewBB->begin();
437 for (; (PN = dyn_cast<PHINode>(I)); ++I) {
438 for (std::map<BasicBlock*, unsigned>::iterator PCI =PredCount.begin(),
439 E = PredCount.end(); PCI != E; ++PCI) {
440 BasicBlock *Pred = PCI->first;
441 for (unsigned NumToRemove = PCI->second; NumToRemove; --NumToRemove)
442 PN->removeIncomingValue(Pred, false);
443 }
444 }
445 }
446
447 // If the loops above have made these phi nodes have 0 or 1 operand,
448 // replace them with undef or the input value. We must do this for
449 // correctness, because 0-operand phis are not valid.
450 PN = cast<PHINode>(NewBB->begin());
451 if (PN->getNumIncomingValues() == 0) {
452 BasicBlock::iterator I = NewBB->begin();
453 BasicBlock::const_iterator OldI = OldBB->begin();
454 while ((PN = dyn_cast<PHINode>(I++))) {
455 Value *NV = UndefValue::get(PN->getType());
456 PN->replaceAllUsesWith(NV);
457 assert(ValueMap[OldI] == PN && "ValueMap mismatch");
458 ValueMap[OldI] = NV;
459 PN->eraseFromParent();
460 ++OldI;
461 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000462 }
Chris Lattner8e8eda72007-02-01 18:48:38 +0000463 // NOTE: We cannot eliminate single entry phi nodes here, because of
464 // ValueMap. Single entry phi nodes can have multiple ValueMap entries
465 // pointing at them. Thus, deleting one would require scanning the ValueMap
466 // to update any entries in it that would require that. This would be
467 // really slow.
Chris Lattner35033ef2006-06-01 19:19:23 +0000468 }
Chris Lattnera4646b62006-09-13 21:27:00 +0000469
470 // Now that the inlined function body has been fully constructed, go through
471 // and zap unconditional fall-through branches. This happen all the time when
472 // specializing code: code specialization turns conditional branches into
473 // uncond branches, and this code folds them.
474 Function::iterator I = cast<BasicBlock>(ValueMap[&OldFunc->getEntryBlock()]);
475 while (I != NewFunc->end()) {
476 BranchInst *BI = dyn_cast<BranchInst>(I->getTerminator());
477 if (!BI || BI->isConditional()) { ++I; continue; }
478
Chris Lattner8e8eda72007-02-01 18:48:38 +0000479 // Note that we can't eliminate uncond branches if the destination has
480 // single-entry PHI nodes. Eliminating the single-entry phi nodes would
481 // require scanning the ValueMap to update any entries that point to the phi
482 // node.
Chris Lattnera4646b62006-09-13 21:27:00 +0000483 BasicBlock *Dest = BI->getSuccessor(0);
Chris Lattner8e8eda72007-02-01 18:48:38 +0000484 if (!Dest->getSinglePredecessor() || isa<PHINode>(Dest->begin())) {
485 ++I; continue;
486 }
Chris Lattnera4646b62006-09-13 21:27:00 +0000487
488 // We know all single-entry PHI nodes in the inlined function have been
489 // removed, so we just need to splice the blocks.
490 BI->eraseFromParent();
491
492 // Move all the instructions in the succ to the pred.
493 I->getInstList().splice(I->end(), Dest->getInstList());
494
495 // Make all PHI nodes that referred to Dest now refer to I as their source.
496 Dest->replaceAllUsesWith(I);
497
498 // Remove the dest block.
499 Dest->eraseFromParent();
500
501 // Do not increment I, iteratively merge all things this block branches to.
502 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000503}