blob: f47bf1b7bff152e163cd069f984b26d8d79f52ed [file] [log] [blame]
Chris Lattner8bce9882002-11-19 22:04:49 +00001//===- CloneFunction.cpp - Clone a function into another function ---------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner8bce9882002-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 Lattner16bfdb52002-03-29 19:03:54 +000015
Chris Lattner16667512002-11-19 20:59:41 +000016#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattneredad1282006-01-13 18:39:17 +000017#include "llvm/Constants.h"
Chris Lattnerfb311d22002-11-19 23:12:22 +000018#include "llvm/DerivedTypes.h"
Chris Lattneredad1282006-01-13 18:39:17 +000019#include "llvm/Instructions.h"
Chris Lattner16bfdb52002-03-29 19:03:54 +000020#include "llvm/Function.h"
Chris Lattnercc340c02006-06-01 19:19:23 +000021#include "llvm/Support/CFG.h"
Chris Lattnere4dbb1a2002-11-20 20:47:41 +000022#include "ValueMapper.h"
Chris Lattner3df13f42006-05-27 01:22:24 +000023#include "llvm/Transforms/Utils/Local.h"
Chris Lattner2c4610e2007-01-30 23:13:49 +000024#include "llvm/ADT/SmallVector.h"
Chris Lattnerdf3c3422004-01-09 06:12:26 +000025using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000026
Chris Lattnere9f42322003-04-18 03:50:09 +000027// CloneBasicBlock - See comments in Cloning.h
Chris Lattnerdf3c3422004-01-09 06:12:26 +000028BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB,
29 std::map<const Value*, Value*> &ValueMap,
Chris Lattneredad1282006-01-13 18:39:17 +000030 const char *NameSuffix, Function *F,
31 ClonedCodeInfo *CodeInfo) {
Chris Lattnera6578ef32004-02-04 01:19:43 +000032 BasicBlock *NewBB = new BasicBlock("", F);
Chris Lattnere9f42322003-04-18 03:50:09 +000033 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
34
Chris Lattneredad1282006-01-13 18:39:17 +000035 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
36
37 // Loop over all instructions, and copy them over.
Chris Lattnere9f42322003-04-18 03:50:09 +000038 for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();
39 II != IE; ++II) {
40 Instruction *NewInst = II->clone();
41 if (II->hasName())
42 NewInst->setName(II->getName()+NameSuffix);
43 NewBB->getInstList().push_back(NewInst);
44 ValueMap[II] = NewInst; // Add instruction map to value.
Chris Lattneredad1282006-01-13 18:39:17 +000045
46 hasCalls |= isa<CallInst>(II);
47 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
48 if (isa<ConstantInt>(AI->getArraySize()))
49 hasStaticAllocas = true;
50 else
51 hasDynamicAllocas = true;
52 }
53 }
54
55 if (CodeInfo) {
56 CodeInfo->ContainsCalls |= hasCalls;
57 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(BB->getTerminator());
58 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
59 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
60 BB != &BB->getParent()->front();
Chris Lattnere9f42322003-04-18 03:50:09 +000061 }
62 return NewBB;
63}
64
Chris Lattner16bfdb52002-03-29 19:03:54 +000065// Clone OldFunc into NewFunc, transforming the old arguments into references to
66// ArgMap values.
67//
Chris Lattnerdf3c3422004-01-09 06:12:26 +000068void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
69 std::map<const Value*, Value*> &ValueMap,
70 std::vector<ReturnInst*> &Returns,
Chris Lattneredad1282006-01-13 18:39:17 +000071 const char *NameSuffix, ClonedCodeInfo *CodeInfo) {
Chris Lattnerb1120052002-11-19 21:54:07 +000072 assert(NameSuffix && "NameSuffix cannot be null!");
Misha Brukmanb1c93172005-04-21 23:48:37 +000073
Chris Lattnerc3626182002-11-19 22:54:01 +000074#ifndef NDEBUG
Chris Lattneredad1282006-01-13 18:39:17 +000075 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
76 E = OldFunc->arg_end(); I != E; ++I)
Chris Lattnerc3626182002-11-19 22:54:01 +000077 assert(ValueMap.count(I) && "No mapping from source argument specified!");
78#endif
Chris Lattner16bfdb52002-03-29 19:03:54 +000079
80 // Loop over all of the basic blocks in the function, cloning them as
Chris Lattnerb1120052002-11-19 21:54:07 +000081 // appropriate. Note that we save BE this way in order to handle cloning of
82 // recursive functions into themselves.
Chris Lattner16bfdb52002-03-29 19:03:54 +000083 //
84 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
85 BI != BE; ++BI) {
Chris Lattnerfda72b12002-06-25 16:12:52 +000086 const BasicBlock &BB = *BI;
Misha Brukmanb1c93172005-04-21 23:48:37 +000087
Chris Lattnere9f42322003-04-18 03:50:09 +000088 // Create a new basic block and copy instructions into it!
Chris Lattneredad1282006-01-13 18:39:17 +000089 BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc,
90 CodeInfo);
Chris Lattnerfda72b12002-06-25 16:12:52 +000091 ValueMap[&BB] = CBB; // Add basic block mapping.
Chris Lattner16bfdb52002-03-29 19:03:54 +000092
Chris Lattnerb1120052002-11-19 21:54:07 +000093 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
94 Returns.push_back(RI);
Chris Lattner16bfdb52002-03-29 19:03:54 +000095 }
96
Misha Brukmanb1c93172005-04-21 23:48:37 +000097 // Loop over all of the instructions in the function, fixing up operand
Chris Lattner16bfdb52002-03-29 19:03:54 +000098 // references as we go. This uses ValueMap to do all the hard work.
99 //
Chris Lattner39ad6f22004-02-04 21:44:26 +0000100 for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]),
101 BE = NewFunc->end(); BB != BE; ++BB)
Chris Lattner16bfdb52002-03-29 19:03:54 +0000102 // Loop over all instructions, fixing each one as we find it...
Chris Lattner39ad6f22004-02-04 21:44:26 +0000103 for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II)
Chris Lattnerfda72b12002-06-25 16:12:52 +0000104 RemapInstruction(II, ValueMap);
Chris Lattner16bfdb52002-03-29 19:03:54 +0000105}
Chris Lattnerfb311d22002-11-19 23:12:22 +0000106
107/// CloneFunction - Return a copy of the specified function, but without
108/// embedding the function into another module. Also, any references specified
109/// in the ValueMap are changed to refer to their mapped value instead of the
110/// original one. If any of the arguments to the function are in the ValueMap,
111/// the arguments are deleted from the resultant function. The ValueMap is
112/// updated to include mappings from all of the instructions and basicblocks in
113/// the function from their old to new values.
114///
Chris Lattnerdf3c3422004-01-09 06:12:26 +0000115Function *llvm::CloneFunction(const Function *F,
Chris Lattneredad1282006-01-13 18:39:17 +0000116 std::map<const Value*, Value*> &ValueMap,
117 ClonedCodeInfo *CodeInfo) {
Chris Lattnerfb311d22002-11-19 23:12:22 +0000118 std::vector<const Type*> ArgTypes;
119
120 // The user might be deleting arguments to the function by specifying them in
121 // the ValueMap. If so, we need to not add the arguments to the arg ty vector
122 //
Chris Lattneredad1282006-01-13 18:39:17 +0000123 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
124 I != E; ++I)
Chris Lattnerfb311d22002-11-19 23:12:22 +0000125 if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet?
126 ArgTypes.push_back(I->getType());
127
128 // Create a new function type...
129 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
130 ArgTypes, F->getFunctionType()->isVarArg());
131
132 // Create the new function...
Chris Lattner379a8d22003-04-16 20:28:45 +0000133 Function *NewF = new Function(FTy, F->getLinkage(), F->getName());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000134
Chris Lattnerfb311d22002-11-19 23:12:22 +0000135 // Loop over the arguments, copying the names of the mapped arguments over...
Chris Lattner531f9e92005-03-15 04:54:21 +0000136 Function::arg_iterator DestI = NewF->arg_begin();
Chris Lattneredad1282006-01-13 18:39:17 +0000137 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
138 I != E; ++I)
Chris Lattner7c6d9d9e2002-11-20 18:32:31 +0000139 if (ValueMap.count(I) == 0) { // Is this argument preserved?
Chris Lattnerfb311d22002-11-19 23:12:22 +0000140 DestI->setName(I->getName()); // Copy the name over...
Chris Lattner7c6d9d9e2002-11-20 18:32:31 +0000141 ValueMap[I] = DestI++; // Add mapping to ValueMap
Chris Lattnerfb311d22002-11-19 23:12:22 +0000142 }
143
144 std::vector<ReturnInst*> Returns; // Ignore returns cloned...
Chris Lattneredad1282006-01-13 18:39:17 +0000145 CloneFunctionInto(NewF, F, ValueMap, Returns, "", CodeInfo);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000146 return NewF;
Chris Lattnerfb311d22002-11-19 23:12:22 +0000147}
Brian Gaeke960707c2003-11-11 22:41:34 +0000148
Chris Lattner3df13f42006-05-27 01:22:24 +0000149
150
151namespace {
152 /// PruningFunctionCloner - This class is a private class used to implement
153 /// the CloneAndPruneFunctionInto method.
154 struct PruningFunctionCloner {
155 Function *NewFunc;
156 const Function *OldFunc;
157 std::map<const Value*, Value*> &ValueMap;
158 std::vector<ReturnInst*> &Returns;
159 const char *NameSuffix;
160 ClonedCodeInfo *CodeInfo;
161
162 public:
163 PruningFunctionCloner(Function *newFunc, const Function *oldFunc,
164 std::map<const Value*, Value*> &valueMap,
165 std::vector<ReturnInst*> &returns,
166 const char *nameSuffix,
167 ClonedCodeInfo *codeInfo)
168 : NewFunc(newFunc), OldFunc(oldFunc), ValueMap(valueMap), Returns(returns),
169 NameSuffix(nameSuffix), CodeInfo(codeInfo) {
170 }
171
172 /// CloneBlock - The specified block is found to be reachable, clone it and
173 /// anything that it can reach.
174 void CloneBlock(const BasicBlock *BB);
175
176 public:
177 /// ConstantFoldMappedInstruction - Constant fold the specified instruction,
178 /// mapping its operands through ValueMap if they are available.
179 Constant *ConstantFoldMappedInstruction(const Instruction *I);
180 };
181}
182
183/// CloneBlock - The specified block is found to be reachable, clone it and
184/// anything that it can reach.
185void PruningFunctionCloner::CloneBlock(const BasicBlock *BB) {
186 Value *&BBEntry = ValueMap[BB];
187
188 // Have we already cloned this block?
189 if (BBEntry) return;
190
191 // Nope, clone it now.
192 BasicBlock *NewBB;
193 BBEntry = NewBB = new BasicBlock();
194 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
195
196 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
197
198 // Loop over all instructions, and copy them over, DCE'ing as we go. This
199 // loop doesn't include the terminator.
Chris Lattnercc340c02006-06-01 19:19:23 +0000200 for (BasicBlock::const_iterator II = BB->begin(), IE = --BB->end();
Chris Lattner3df13f42006-05-27 01:22:24 +0000201 II != IE; ++II) {
202 // If this instruction constant folds, don't bother cloning the instruction,
203 // instead, just add the constant to the value map.
204 if (Constant *C = ConstantFoldMappedInstruction(II)) {
205 ValueMap[II] = C;
206 continue;
207 }
208
209 Instruction *NewInst = II->clone();
210 if (II->hasName())
211 NewInst->setName(II->getName()+NameSuffix);
212 NewBB->getInstList().push_back(NewInst);
213 ValueMap[II] = NewInst; // Add instruction map to value.
214
215 hasCalls |= isa<CallInst>(II);
216 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
217 if (isa<ConstantInt>(AI->getArraySize()))
218 hasStaticAllocas = true;
219 else
220 hasDynamicAllocas = true;
221 }
222 }
223
Chris Lattnercc340c02006-06-01 19:19:23 +0000224 // Finally, clone over the terminator.
225 const TerminatorInst *OldTI = BB->getTerminator();
226 bool TerminatorDone = false;
227 if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) {
228 if (BI->isConditional()) {
229 // If the condition was a known constant in the callee...
Zhou Sheng75b871f2007-01-11 12:24:14 +0000230 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
231 // Or is a known constant in the caller...
232 if (Cond == 0)
233 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[BI->getCondition()]);
234
235 // Constant fold to uncond branch!
236 if (Cond) {
Reid Spencercddc9df2007-01-12 04:24:46 +0000237 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
Chris Lattnercc340c02006-06-01 19:19:23 +0000238 ValueMap[OldTI] = new BranchInst(Dest, NewBB);
239 CloneBlock(Dest);
240 TerminatorDone = true;
241 }
242 }
243 } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) {
244 // If switching on a value known constant in the caller.
245 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
246 if (Cond == 0) // Or known constant after constant prop in the callee...
247 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[SI->getCondition()]);
248 if (Cond) { // Constant fold to uncond branch!
249 BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond));
250 ValueMap[OldTI] = new BranchInst(Dest, NewBB);
251 CloneBlock(Dest);
252 TerminatorDone = true;
253 }
254 }
255
256 if (!TerminatorDone) {
257 Instruction *NewInst = OldTI->clone();
258 if (OldTI->hasName())
259 NewInst->setName(OldTI->getName()+NameSuffix);
260 NewBB->getInstList().push_back(NewInst);
261 ValueMap[OldTI] = NewInst; // Add instruction map to value.
262
263 // Recursively clone any reachable successor blocks.
264 const TerminatorInst *TI = BB->getTerminator();
265 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
266 CloneBlock(TI->getSuccessor(i));
267 }
268
Chris Lattner3df13f42006-05-27 01:22:24 +0000269 if (CodeInfo) {
270 CodeInfo->ContainsCalls |= hasCalls;
Chris Lattnercc340c02006-06-01 19:19:23 +0000271 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(OldTI);
Chris Lattner3df13f42006-05-27 01:22:24 +0000272 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
273 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
274 BB != &BB->getParent()->front();
275 }
276
277 if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator()))
278 Returns.push_back(RI);
Chris Lattner3df13f42006-05-27 01:22:24 +0000279}
280
281/// ConstantFoldMappedInstruction - Constant fold the specified instruction,
282/// mapping its operands through ValueMap if they are available.
283Constant *PruningFunctionCloner::
284ConstantFoldMappedInstruction(const Instruction *I) {
Chris Lattner2c4610e2007-01-30 23:13:49 +0000285 SmallVector<Constant*, 8> Ops;
Chris Lattner3df13f42006-05-27 01:22:24 +0000286 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
287 if (Constant *Op = dyn_cast_or_null<Constant>(MapValue(I->getOperand(i),
288 ValueMap)))
289 Ops.push_back(Op);
290 else
291 return 0; // All operands not constant!
292
Chris Lattner2c4610e2007-01-30 23:13:49 +0000293 return ConstantFoldInstOperands(I, &Ops[0], Ops.size());
Chris Lattner3df13f42006-05-27 01:22:24 +0000294}
295
Chris Lattner3df13f42006-05-27 01:22:24 +0000296/// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto,
297/// except that it does some simple constant prop and DCE on the fly. The
298/// effect of this is to copy significantly less code in cases where (for
299/// example) a function call with constant arguments is inlined, and those
300/// constant arguments cause a significant amount of code in the callee to be
301/// dead. Since this doesn't produce an exactly copy of the input, it can't be
302/// used for things like CloneFunction or CloneModule.
303void llvm::CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc,
304 std::map<const Value*, Value*> &ValueMap,
305 std::vector<ReturnInst*> &Returns,
306 const char *NameSuffix,
307 ClonedCodeInfo *CodeInfo) {
308 assert(NameSuffix && "NameSuffix cannot be null!");
309
310#ifndef NDEBUG
Jeff Cohen7d6f3db2006-11-05 19:31:28 +0000311 for (Function::const_arg_iterator II = OldFunc->arg_begin(),
312 E = OldFunc->arg_end(); II != E; ++II)
313 assert(ValueMap.count(II) && "No mapping from source argument specified!");
Chris Lattner3df13f42006-05-27 01:22:24 +0000314#endif
315
316 PruningFunctionCloner PFC(NewFunc, OldFunc, ValueMap, Returns,
317 NameSuffix, CodeInfo);
318
319 // Clone the entry block, and anything recursively reachable from it.
320 PFC.CloneBlock(&OldFunc->getEntryBlock());
321
322 // Loop over all of the basic blocks in the old function. If the block was
323 // reachable, we have cloned it and the old block is now in the value map:
324 // insert it into the new function in the right order. If not, ignore it.
325 //
Chris Lattnercc340c02006-06-01 19:19:23 +0000326 // Defer PHI resolution until rest of function is resolved.
327 std::vector<const PHINode*> PHIToResolve;
Chris Lattner3df13f42006-05-27 01:22:24 +0000328 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
329 BI != BE; ++BI) {
330 BasicBlock *NewBB = cast_or_null<BasicBlock>(ValueMap[BI]);
331 if (NewBB == 0) continue; // Dead block.
Chris Lattnercc340c02006-06-01 19:19:23 +0000332
Chris Lattner3df13f42006-05-27 01:22:24 +0000333 // Add the new block to the new function.
334 NewFunc->getBasicBlockList().push_back(NewBB);
335
336 // Loop over all of the instructions in the block, fixing up operand
337 // references as we go. This uses ValueMap to do all the hard work.
338 //
339 BasicBlock::iterator I = NewBB->begin();
340
341 // Handle PHI nodes specially, as we have to remove references to dead
342 // blocks.
343 if (PHINode *PN = dyn_cast<PHINode>(I)) {
Chris Lattnercc340c02006-06-01 19:19:23 +0000344 // Skip over all PHI nodes, remembering them for later.
345 BasicBlock::const_iterator OldI = BI->begin();
346 for (; (PN = dyn_cast<PHINode>(I)); ++I, ++OldI)
347 PHIToResolve.push_back(cast<PHINode>(OldI));
Chris Lattner3df13f42006-05-27 01:22:24 +0000348 }
349
350 // Otherwise, remap the rest of the instructions normally.
351 for (; I != NewBB->end(); ++I)
352 RemapInstruction(I, ValueMap);
353 }
Chris Lattnercc340c02006-06-01 19:19:23 +0000354
355 // Defer PHI resolution until rest of function is resolved, PHI resolution
356 // requires the CFG to be up-to-date.
357 for (unsigned phino = 0, e = PHIToResolve.size(); phino != e; ) {
358 const PHINode *OPN = PHIToResolve[phino];
Chris Lattnercc340c02006-06-01 19:19:23 +0000359 unsigned NumPreds = OPN->getNumIncomingValues();
Chris Lattnercc340c02006-06-01 19:19:23 +0000360 const BasicBlock *OldBB = OPN->getParent();
361 BasicBlock *NewBB = cast<BasicBlock>(ValueMap[OldBB]);
362
363 // Map operands for blocks that are live and remove operands for blocks
364 // that are dead.
365 for (; phino != PHIToResolve.size() &&
366 PHIToResolve[phino]->getParent() == OldBB; ++phino) {
367 OPN = PHIToResolve[phino];
368 PHINode *PN = cast<PHINode>(ValueMap[OPN]);
369 for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) {
370 if (BasicBlock *MappedBlock =
371 cast_or_null<BasicBlock>(ValueMap[PN->getIncomingBlock(pred)])) {
372 Value *InVal = MapValue(PN->getIncomingValue(pred), ValueMap);
373 assert(InVal && "Unknown input value?");
374 PN->setIncomingValue(pred, InVal);
375 PN->setIncomingBlock(pred, MappedBlock);
376 } else {
377 PN->removeIncomingValue(pred, false);
378 --pred, --e; // Revisit the next entry.
379 }
380 }
381 }
382
383 // The loop above has removed PHI entries for those blocks that are dead
384 // and has updated others. However, if a block is live (i.e. copied over)
385 // but its terminator has been changed to not go to this block, then our
386 // phi nodes will have invalid entries. Update the PHI nodes in this
387 // case.
388 PHINode *PN = cast<PHINode>(NewBB->begin());
389 NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB));
390 if (NumPreds != PN->getNumIncomingValues()) {
391 assert(NumPreds < PN->getNumIncomingValues());
392 // Count how many times each predecessor comes to this block.
393 std::map<BasicBlock*, unsigned> PredCount;
394 for (pred_iterator PI = pred_begin(NewBB), E = pred_end(NewBB);
395 PI != E; ++PI)
396 --PredCount[*PI];
397
398 // Figure out how many entries to remove from each PHI.
399 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
400 ++PredCount[PN->getIncomingBlock(i)];
401
402 // At this point, the excess predecessor entries are positive in the
403 // map. Loop over all of the PHIs and remove excess predecessor
404 // entries.
405 BasicBlock::iterator I = NewBB->begin();
406 for (; (PN = dyn_cast<PHINode>(I)); ++I) {
407 for (std::map<BasicBlock*, unsigned>::iterator PCI =PredCount.begin(),
408 E = PredCount.end(); PCI != E; ++PCI) {
409 BasicBlock *Pred = PCI->first;
410 for (unsigned NumToRemove = PCI->second; NumToRemove; --NumToRemove)
411 PN->removeIncomingValue(Pred, false);
412 }
413 }
414 }
415
416 // If the loops above have made these phi nodes have 0 or 1 operand,
417 // replace them with undef or the input value. We must do this for
418 // correctness, because 0-operand phis are not valid.
419 PN = cast<PHINode>(NewBB->begin());
420 if (PN->getNumIncomingValues() == 0) {
421 BasicBlock::iterator I = NewBB->begin();
422 BasicBlock::const_iterator OldI = OldBB->begin();
423 while ((PN = dyn_cast<PHINode>(I++))) {
424 Value *NV = UndefValue::get(PN->getType());
425 PN->replaceAllUsesWith(NV);
426 assert(ValueMap[OldI] == PN && "ValueMap mismatch");
427 ValueMap[OldI] = NV;
428 PN->eraseFromParent();
429 ++OldI;
430 }
431 } else if (PN->getNumIncomingValues() == 1) {
432 BasicBlock::iterator I = NewBB->begin();
433 BasicBlock::const_iterator OldI = OldBB->begin();
434 while ((PN = dyn_cast<PHINode>(I++))) {
435 Value *NV = PN->getIncomingValue(0);
436 PN->replaceAllUsesWith(NV);
437 assert(ValueMap[OldI] == PN && "ValueMap mismatch");
438 ValueMap[OldI] = NV;
439 PN->eraseFromParent();
440 ++OldI;
441 }
442 }
443 }
Chris Lattner237ccf22006-09-13 21:27:00 +0000444
445 // Now that the inlined function body has been fully constructed, go through
446 // and zap unconditional fall-through branches. This happen all the time when
447 // specializing code: code specialization turns conditional branches into
448 // uncond branches, and this code folds them.
449 Function::iterator I = cast<BasicBlock>(ValueMap[&OldFunc->getEntryBlock()]);
450 while (I != NewFunc->end()) {
451 BranchInst *BI = dyn_cast<BranchInst>(I->getTerminator());
452 if (!BI || BI->isConditional()) { ++I; continue; }
453
454 BasicBlock *Dest = BI->getSuccessor(0);
455 if (!Dest->getSinglePredecessor()) { ++I; continue; }
456
457 // We know all single-entry PHI nodes in the inlined function have been
458 // removed, so we just need to splice the blocks.
459 BI->eraseFromParent();
460
461 // Move all the instructions in the succ to the pred.
462 I->getInstList().splice(I->end(), Dest->getInstList());
463
464 // Make all PHI nodes that referred to Dest now refer to I as their source.
465 Dest->replaceAllUsesWith(I);
466
467 // Remove the dest block.
468 Dest->eraseFromParent();
469
470 // Do not increment I, iteratively merge all things this block branches to.
471 }
Chris Lattner3df13f42006-05-27 01:22:24 +0000472}