blob: cff58ab15410c916e72f7e2b5c18b7d5af1a13fe [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//
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.
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"
Chris Lattner51cbcbf2002-11-20 20:47:41 +000023#include "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) {
Chris Lattner23b4c682004-02-04 01:19:43 +000034 BasicBlock *NewBB = new BasicBlock("", F);
Chris Lattner17d145d2003-04-18 03:50:09 +000035 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
36
Chris Lattnera4c29d22006-01-13 18:39:17 +000037 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
38
39 // Loop over all instructions, and copy them over.
Chris Lattner17d145d2003-04-18 03:50:09 +000040 for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();
41 II != IE; ++II) {
42 Instruction *NewInst = II->clone();
43 if (II->hasName())
44 NewInst->setName(II->getName()+NameSuffix);
45 NewBB->getInstList().push_back(NewInst);
46 ValueMap[II] = NewInst; // Add instruction map to value.
Chris Lattnera4c29d22006-01-13 18:39:17 +000047
48 hasCalls |= isa<CallInst>(II);
49 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
50 if (isa<ConstantInt>(AI->getArraySize()))
51 hasStaticAllocas = true;
52 else
53 hasDynamicAllocas = true;
54 }
55 }
56
57 if (CodeInfo) {
58 CodeInfo->ContainsCalls |= hasCalls;
59 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(BB->getTerminator());
60 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
61 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
Dan Gohmanecb7a772007-03-22 16:38:57 +000062 BB != &BB->getParent()->getEntryBlock();
Chris Lattner17d145d2003-04-18 03:50:09 +000063 }
64 return NewBB;
65}
66
Chris Lattnerfa703a42002-03-29 19:03:54 +000067// Clone OldFunc into NewFunc, transforming the old arguments into references to
68// ArgMap values.
69//
Chris Lattnerf7703df2004-01-09 06:12:26 +000070void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +000071 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnerf7703df2004-01-09 06:12:26 +000072 std::vector<ReturnInst*> &Returns,
Chris Lattnera4c29d22006-01-13 18:39:17 +000073 const char *NameSuffix, ClonedCodeInfo *CodeInfo) {
Chris Lattnerdcd80402002-11-19 21:54:07 +000074 assert(NameSuffix && "NameSuffix cannot be null!");
Misha Brukmanfd939082005-04-21 23:48:37 +000075
Chris Lattnerd1801552002-11-19 22:54:01 +000076#ifndef NDEBUG
Chris Lattnera4c29d22006-01-13 18:39:17 +000077 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
78 E = OldFunc->arg_end(); I != E; ++I)
Chris Lattnerd1801552002-11-19 22:54:01 +000079 assert(ValueMap.count(I) && "No mapping from source argument specified!");
80#endif
Chris Lattnerfa703a42002-03-29 19:03:54 +000081
82 // Loop over all of the basic blocks in the function, cloning them as
Chris Lattnerdcd80402002-11-19 21:54:07 +000083 // appropriate. Note that we save BE this way in order to handle cloning of
84 // recursive functions into themselves.
Chris Lattnerfa703a42002-03-29 19:03:54 +000085 //
86 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
87 BI != BE; ++BI) {
Chris Lattner18961502002-06-25 16:12:52 +000088 const BasicBlock &BB = *BI;
Misha Brukmanfd939082005-04-21 23:48:37 +000089
Chris Lattner17d145d2003-04-18 03:50:09 +000090 // Create a new basic block and copy instructions into it!
Chris Lattnera4c29d22006-01-13 18:39:17 +000091 BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc,
92 CodeInfo);
Chris Lattner18961502002-06-25 16:12:52 +000093 ValueMap[&BB] = CBB; // Add basic block mapping.
Chris Lattnerfa703a42002-03-29 19:03:54 +000094
Chris Lattnerdcd80402002-11-19 21:54:07 +000095 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
96 Returns.push_back(RI);
Chris Lattnerfa703a42002-03-29 19:03:54 +000097 }
98
Misha Brukmanfd939082005-04-21 23:48:37 +000099 // Loop over all of the instructions in the function, fixing up operand
Chris Lattnerfa703a42002-03-29 19:03:54 +0000100 // references as we go. This uses ValueMap to do all the hard work.
101 //
Chris Lattnera33ceaa2004-02-04 21:44:26 +0000102 for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]),
103 BE = NewFunc->end(); BB != BE; ++BB)
Chris Lattnerfa703a42002-03-29 19:03:54 +0000104 // Loop over all instructions, fixing each one as we find it...
Chris Lattnera33ceaa2004-02-04 21:44:26 +0000105 for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II)
Chris Lattner18961502002-06-25 16:12:52 +0000106 RemapInstruction(II, ValueMap);
Chris Lattnerfa703a42002-03-29 19:03:54 +0000107}
Chris Lattner5a8932f2002-11-19 23:12:22 +0000108
109/// CloneFunction - Return a copy of the specified function, but without
110/// embedding the function into another module. Also, any references specified
111/// in the ValueMap are changed to refer to their mapped value instead of the
112/// original one. If any of the arguments to the function are in the ValueMap,
113/// the arguments are deleted from the resultant function. The ValueMap is
114/// updated to include mappings from all of the instructions and basicblocks in
115/// the function from their old to new values.
116///
Chris Lattnerf7703df2004-01-09 06:12:26 +0000117Function *llvm::CloneFunction(const Function *F,
Chris Lattner5e665f52007-02-03 00:08:31 +0000118 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnera4c29d22006-01-13 18:39:17 +0000119 ClonedCodeInfo *CodeInfo) {
Chris Lattner5a8932f2002-11-19 23:12:22 +0000120 std::vector<const Type*> ArgTypes;
121
122 // The user might be deleting arguments to the function by specifying them in
123 // the ValueMap. If so, we need to not add the arguments to the arg ty vector
124 //
Chris Lattnera4c29d22006-01-13 18:39:17 +0000125 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
126 I != E; ++I)
Chris Lattner5a8932f2002-11-19 23:12:22 +0000127 if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet?
128 ArgTypes.push_back(I->getType());
129
130 // Create a new function type...
131 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
132 ArgTypes, F->getFunctionType()->isVarArg());
133
134 // Create the new function...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000135 Function *NewF = new Function(FTy, F->getLinkage(), F->getName());
Misha Brukmanfd939082005-04-21 23:48:37 +0000136
Chris Lattner5a8932f2002-11-19 23:12:22 +0000137 // Loop over the arguments, copying the names of the mapped arguments over...
Chris Lattnere4d5c442005-03-15 04:54:21 +0000138 Function::arg_iterator DestI = NewF->arg_begin();
Chris Lattnera4c29d22006-01-13 18:39:17 +0000139 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
140 I != E; ++I)
Chris Lattnerc09aab02002-11-20 18:32:31 +0000141 if (ValueMap.count(I) == 0) { // Is this argument preserved?
Chris Lattner5a8932f2002-11-19 23:12:22 +0000142 DestI->setName(I->getName()); // Copy the name over...
Chris Lattnerc09aab02002-11-20 18:32:31 +0000143 ValueMap[I] = DestI++; // Add mapping to ValueMap
Chris Lattner5a8932f2002-11-19 23:12:22 +0000144 }
145
146 std::vector<ReturnInst*> Returns; // Ignore returns cloned...
Chris Lattnera4c29d22006-01-13 18:39:17 +0000147 CloneFunctionInto(NewF, F, ValueMap, Returns, "", CodeInfo);
Misha Brukmanfd939082005-04-21 23:48:37 +0000148 return NewF;
Chris Lattner5a8932f2002-11-19 23:12:22 +0000149}
Brian Gaeked0fde302003-11-11 22:41:34 +0000150
Chris Lattner83f03bf2006-05-27 01:22:24 +0000151
152
153namespace {
154 /// PruningFunctionCloner - This class is a private class used to implement
155 /// the CloneAndPruneFunctionInto method.
Reid Spencer9133fe22007-02-05 23:32:05 +0000156 struct VISIBILITY_HIDDEN PruningFunctionCloner {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000157 Function *NewFunc;
158 const Function *OldFunc;
Chris Lattner5e665f52007-02-03 00:08:31 +0000159 DenseMap<const Value*, Value*> &ValueMap;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000160 std::vector<ReturnInst*> &Returns;
161 const char *NameSuffix;
162 ClonedCodeInfo *CodeInfo;
Chris Lattner1dfdf822007-01-30 23:22:39 +0000163 const TargetData *TD;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000164
165 public:
166 PruningFunctionCloner(Function *newFunc, const Function *oldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +0000167 DenseMap<const Value*, Value*> &valueMap,
Chris Lattner83f03bf2006-05-27 01:22:24 +0000168 std::vector<ReturnInst*> &returns,
169 const char *nameSuffix,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000170 ClonedCodeInfo *codeInfo,
171 const TargetData *td)
Chris Lattner83f03bf2006-05-27 01:22:24 +0000172 : NewFunc(newFunc), OldFunc(oldFunc), ValueMap(valueMap), Returns(returns),
Chris Lattner1dfdf822007-01-30 23:22:39 +0000173 NameSuffix(nameSuffix), CodeInfo(codeInfo), TD(td) {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000174 }
175
176 /// CloneBlock - The specified block is found to be reachable, clone it and
177 /// anything that it can reach.
Chris Lattner67ef2412007-03-02 03:11:20 +0000178 void CloneBlock(const BasicBlock *BB,
179 std::vector<const BasicBlock*> &ToClone);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000180
181 public:
182 /// ConstantFoldMappedInstruction - Constant fold the specified instruction,
183 /// mapping its operands through ValueMap if they are available.
184 Constant *ConstantFoldMappedInstruction(const Instruction *I);
185 };
186}
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 +0000190void PruningFunctionCloner::CloneBlock(const BasicBlock *BB,
191 std::vector<const BasicBlock*> &ToClone){
Chris Lattner83f03bf2006-05-27 01:22:24 +0000192 Value *&BBEntry = ValueMap[BB];
193
194 // Have we already cloned this block?
195 if (BBEntry) return;
196
197 // Nope, clone it now.
198 BasicBlock *NewBB;
199 BBEntry = NewBB = new BasicBlock();
200 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
201
202 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
203
204 // Loop over all instructions, and copy them over, DCE'ing as we go. This
205 // loop doesn't include the terminator.
Chris Lattner35033ef2006-06-01 19:19:23 +0000206 for (BasicBlock::const_iterator II = BB->begin(), IE = --BB->end();
Chris Lattner83f03bf2006-05-27 01:22:24 +0000207 II != IE; ++II) {
208 // If this instruction constant folds, don't bother cloning the instruction,
209 // instead, just add the constant to the value map.
210 if (Constant *C = ConstantFoldMappedInstruction(II)) {
211 ValueMap[II] = C;
212 continue;
213 }
214
215 Instruction *NewInst = II->clone();
216 if (II->hasName())
217 NewInst->setName(II->getName()+NameSuffix);
218 NewBB->getInstList().push_back(NewInst);
219 ValueMap[II] = NewInst; // Add instruction map to value.
220
221 hasCalls |= isa<CallInst>(II);
222 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
223 if (isa<ConstantInt>(AI->getArraySize()))
224 hasStaticAllocas = true;
225 else
226 hasDynamicAllocas = true;
227 }
228 }
229
Chris Lattner35033ef2006-06-01 19:19:23 +0000230 // Finally, clone over the terminator.
231 const TerminatorInst *OldTI = BB->getTerminator();
232 bool TerminatorDone = false;
233 if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) {
234 if (BI->isConditional()) {
235 // If the condition was a known constant in the callee...
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000236 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
237 // Or is a known constant in the caller...
238 if (Cond == 0)
239 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[BI->getCondition()]);
240
241 // Constant fold to uncond branch!
242 if (Cond) {
Reid Spencer579dca12007-01-12 04:24:46 +0000243 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
Chris Lattner35033ef2006-06-01 19:19:23 +0000244 ValueMap[OldTI] = new BranchInst(Dest, NewBB);
Chris Lattner67ef2412007-03-02 03:11:20 +0000245 ToClone.push_back(Dest);
Chris Lattner35033ef2006-06-01 19:19:23 +0000246 TerminatorDone = true;
247 }
248 }
249 } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) {
250 // If switching on a value known constant in the caller.
251 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
252 if (Cond == 0) // Or known constant after constant prop in the callee...
253 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[SI->getCondition()]);
254 if (Cond) { // Constant fold to uncond branch!
255 BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond));
256 ValueMap[OldTI] = new BranchInst(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
262 if (!TerminatorDone) {
263 Instruction *NewInst = OldTI->clone();
264 if (OldTI->hasName())
265 NewInst->setName(OldTI->getName()+NameSuffix);
266 NewBB->getInstList().push_back(NewInst);
267 ValueMap[OldTI] = NewInst; // Add instruction map to value.
268
269 // Recursively clone any reachable successor blocks.
270 const TerminatorInst *TI = BB->getTerminator();
271 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
Chris Lattner67ef2412007-03-02 03:11:20 +0000272 ToClone.push_back(TI->getSuccessor(i));
Chris Lattner35033ef2006-06-01 19:19:23 +0000273 }
274
Chris Lattner83f03bf2006-05-27 01:22:24 +0000275 if (CodeInfo) {
276 CodeInfo->ContainsCalls |= hasCalls;
Chris Lattner35033ef2006-06-01 19:19:23 +0000277 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(OldTI);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000278 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
279 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
280 BB != &BB->getParent()->front();
281 }
282
283 if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator()))
284 Returns.push_back(RI);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000285}
286
287/// ConstantFoldMappedInstruction - Constant fold the specified instruction,
288/// mapping its operands through ValueMap if they are available.
289Constant *PruningFunctionCloner::
290ConstantFoldMappedInstruction(const Instruction *I) {
Chris Lattner9fa038d2007-01-30 23:13:49 +0000291 SmallVector<Constant*, 8> Ops;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000292 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
293 if (Constant *Op = dyn_cast_or_null<Constant>(MapValue(I->getOperand(i),
294 ValueMap)))
295 Ops.push_back(Op);
296 else
297 return 0; // All operands not constant!
298
Chris Lattner1dfdf822007-01-30 23:22:39 +0000299 return ConstantFoldInstOperands(I, &Ops[0], Ops.size(), TD);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000300}
301
Chris Lattner83f03bf2006-05-27 01:22:24 +0000302/// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto,
303/// except that it does some simple constant prop and DCE on the fly. The
304/// effect of this is to copy significantly less code in cases where (for
305/// example) a function call with constant arguments is inlined, and those
306/// constant arguments cause a significant amount of code in the callee to be
307/// dead. Since this doesn't produce an exactly copy of the input, it can't be
308/// used for things like CloneFunction or CloneModule.
309void llvm::CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +0000310 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattner83f03bf2006-05-27 01:22:24 +0000311 std::vector<ReturnInst*> &Returns,
312 const char *NameSuffix,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000313 ClonedCodeInfo *CodeInfo,
314 const TargetData *TD) {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000315 assert(NameSuffix && "NameSuffix cannot be null!");
316
317#ifndef NDEBUG
Jeff Cohend41b30d2006-11-05 19:31:28 +0000318 for (Function::const_arg_iterator II = OldFunc->arg_begin(),
319 E = OldFunc->arg_end(); II != E; ++II)
320 assert(ValueMap.count(II) && "No mapping from source argument specified!");
Chris Lattner83f03bf2006-05-27 01:22:24 +0000321#endif
322
323 PruningFunctionCloner PFC(NewFunc, OldFunc, ValueMap, Returns,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000324 NameSuffix, CodeInfo, TD);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000325
326 // Clone the entry block, and anything recursively reachable from it.
Chris Lattner67ef2412007-03-02 03:11:20 +0000327 std::vector<const BasicBlock*> CloneWorklist;
328 CloneWorklist.push_back(&OldFunc->getEntryBlock());
329 while (!CloneWorklist.empty()) {
330 const BasicBlock *BB = CloneWorklist.back();
331 CloneWorklist.pop_back();
332 PFC.CloneBlock(BB, CloneWorklist);
333 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000334
335 // Loop over all of the basic blocks in the old function. If the block was
336 // reachable, we have cloned it and the old block is now in the value map:
337 // insert it into the new function in the right order. If not, ignore it.
338 //
Chris Lattner35033ef2006-06-01 19:19:23 +0000339 // Defer PHI resolution until rest of function is resolved.
340 std::vector<const PHINode*> PHIToResolve;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000341 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
342 BI != BE; ++BI) {
343 BasicBlock *NewBB = cast_or_null<BasicBlock>(ValueMap[BI]);
344 if (NewBB == 0) continue; // Dead block.
Chris Lattner35033ef2006-06-01 19:19:23 +0000345
Chris Lattner83f03bf2006-05-27 01:22:24 +0000346 // Add the new block to the new function.
347 NewFunc->getBasicBlockList().push_back(NewBB);
348
349 // Loop over all of the instructions in the block, fixing up operand
350 // references as we go. This uses ValueMap to do all the hard work.
351 //
352 BasicBlock::iterator I = NewBB->begin();
353
354 // Handle PHI nodes specially, as we have to remove references to dead
355 // blocks.
356 if (PHINode *PN = dyn_cast<PHINode>(I)) {
Chris Lattner35033ef2006-06-01 19:19:23 +0000357 // Skip over all PHI nodes, remembering them for later.
358 BasicBlock::const_iterator OldI = BI->begin();
359 for (; (PN = dyn_cast<PHINode>(I)); ++I, ++OldI)
360 PHIToResolve.push_back(cast<PHINode>(OldI));
Chris Lattner83f03bf2006-05-27 01:22:24 +0000361 }
362
363 // Otherwise, remap the rest of the instructions normally.
364 for (; I != NewBB->end(); ++I)
365 RemapInstruction(I, ValueMap);
366 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000367
368 // Defer PHI resolution until rest of function is resolved, PHI resolution
369 // requires the CFG to be up-to-date.
370 for (unsigned phino = 0, e = PHIToResolve.size(); phino != e; ) {
371 const PHINode *OPN = PHIToResolve[phino];
Chris Lattner35033ef2006-06-01 19:19:23 +0000372 unsigned NumPreds = OPN->getNumIncomingValues();
Chris Lattner35033ef2006-06-01 19:19:23 +0000373 const BasicBlock *OldBB = OPN->getParent();
374 BasicBlock *NewBB = cast<BasicBlock>(ValueMap[OldBB]);
375
376 // Map operands for blocks that are live and remove operands for blocks
377 // that are dead.
378 for (; phino != PHIToResolve.size() &&
379 PHIToResolve[phino]->getParent() == OldBB; ++phino) {
380 OPN = PHIToResolve[phino];
381 PHINode *PN = cast<PHINode>(ValueMap[OPN]);
382 for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) {
383 if (BasicBlock *MappedBlock =
384 cast_or_null<BasicBlock>(ValueMap[PN->getIncomingBlock(pred)])) {
385 Value *InVal = MapValue(PN->getIncomingValue(pred), ValueMap);
386 assert(InVal && "Unknown input value?");
387 PN->setIncomingValue(pred, InVal);
388 PN->setIncomingBlock(pred, MappedBlock);
389 } else {
390 PN->removeIncomingValue(pred, false);
391 --pred, --e; // Revisit the next entry.
392 }
393 }
394 }
395
396 // The loop above has removed PHI entries for those blocks that are dead
397 // and has updated others. However, if a block is live (i.e. copied over)
398 // but its terminator has been changed to not go to this block, then our
399 // phi nodes will have invalid entries. Update the PHI nodes in this
400 // case.
401 PHINode *PN = cast<PHINode>(NewBB->begin());
402 NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB));
403 if (NumPreds != PN->getNumIncomingValues()) {
404 assert(NumPreds < PN->getNumIncomingValues());
405 // Count how many times each predecessor comes to this block.
406 std::map<BasicBlock*, unsigned> PredCount;
407 for (pred_iterator PI = pred_begin(NewBB), E = pred_end(NewBB);
408 PI != E; ++PI)
409 --PredCount[*PI];
410
411 // Figure out how many entries to remove from each PHI.
412 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
413 ++PredCount[PN->getIncomingBlock(i)];
414
415 // At this point, the excess predecessor entries are positive in the
416 // map. Loop over all of the PHIs and remove excess predecessor
417 // entries.
418 BasicBlock::iterator I = NewBB->begin();
419 for (; (PN = dyn_cast<PHINode>(I)); ++I) {
420 for (std::map<BasicBlock*, unsigned>::iterator PCI =PredCount.begin(),
421 E = PredCount.end(); PCI != E; ++PCI) {
422 BasicBlock *Pred = PCI->first;
423 for (unsigned NumToRemove = PCI->second; NumToRemove; --NumToRemove)
424 PN->removeIncomingValue(Pred, false);
425 }
426 }
427 }
428
429 // If the loops above have made these phi nodes have 0 or 1 operand,
430 // replace them with undef or the input value. We must do this for
431 // correctness, because 0-operand phis are not valid.
432 PN = cast<PHINode>(NewBB->begin());
433 if (PN->getNumIncomingValues() == 0) {
434 BasicBlock::iterator I = NewBB->begin();
435 BasicBlock::const_iterator OldI = OldBB->begin();
436 while ((PN = dyn_cast<PHINode>(I++))) {
437 Value *NV = UndefValue::get(PN->getType());
438 PN->replaceAllUsesWith(NV);
439 assert(ValueMap[OldI] == PN && "ValueMap mismatch");
440 ValueMap[OldI] = NV;
441 PN->eraseFromParent();
442 ++OldI;
443 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000444 }
Chris Lattner8e8eda72007-02-01 18:48:38 +0000445 // NOTE: We cannot eliminate single entry phi nodes here, because of
446 // ValueMap. Single entry phi nodes can have multiple ValueMap entries
447 // pointing at them. Thus, deleting one would require scanning the ValueMap
448 // to update any entries in it that would require that. This would be
449 // really slow.
Chris Lattner35033ef2006-06-01 19:19:23 +0000450 }
Chris Lattnera4646b62006-09-13 21:27:00 +0000451
452 // Now that the inlined function body has been fully constructed, go through
453 // and zap unconditional fall-through branches. This happen all the time when
454 // specializing code: code specialization turns conditional branches into
455 // uncond branches, and this code folds them.
456 Function::iterator I = cast<BasicBlock>(ValueMap[&OldFunc->getEntryBlock()]);
457 while (I != NewFunc->end()) {
458 BranchInst *BI = dyn_cast<BranchInst>(I->getTerminator());
459 if (!BI || BI->isConditional()) { ++I; continue; }
460
Chris Lattner8e8eda72007-02-01 18:48:38 +0000461 // Note that we can't eliminate uncond branches if the destination has
462 // single-entry PHI nodes. Eliminating the single-entry phi nodes would
463 // require scanning the ValueMap to update any entries that point to the phi
464 // node.
Chris Lattnera4646b62006-09-13 21:27:00 +0000465 BasicBlock *Dest = BI->getSuccessor(0);
Chris Lattner8e8eda72007-02-01 18:48:38 +0000466 if (!Dest->getSinglePredecessor() || isa<PHINode>(Dest->begin())) {
467 ++I; continue;
468 }
Chris Lattnera4646b62006-09-13 21:27:00 +0000469
470 // We know all single-entry PHI nodes in the inlined function have been
471 // removed, so we just need to splice the blocks.
472 BI->eraseFromParent();
473
474 // Move all the instructions in the succ to the pred.
475 I->getInstList().splice(I->end(), Dest->getInstList());
476
477 // Make all PHI nodes that referred to Dest now refer to I as their source.
478 Dest->replaceAllUsesWith(I);
479
480 // Remove the dest block.
481 Dest->eraseFromParent();
482
483 // Do not increment I, iteratively merge all things this block branches to.
484 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000485}