blob: 24542a5e4a321410fb1829cf3011a646c05ad542 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- CloneFunction.cpp - Clone a function into another function ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
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//===----------------------------------------------------------------------===//
15
16#include "llvm/Transforms/Utils/Cloning.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/Instructions.h"
Devang Patel2d9d4282009-02-10 07:48:18 +000020#include "llvm/IntrinsicInst.h"
Nate Begemanc368b5b2008-04-25 06:37:06 +000021#include "llvm/GlobalVariable.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022#include "llvm/Function.h"
23#include "llvm/Support/CFG.h"
Anton Korobeynikovad7ea242007-11-09 12:27:04 +000024#include "llvm/Transforms/Utils/ValueMapper.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025#include "llvm/Analysis/ConstantFolding.h"
Devang Patel41f60452009-04-15 00:17:06 +000026#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include "llvm/ADT/SmallVector.h"
28#include <map>
29using namespace llvm;
30
31// CloneBasicBlock - See comments in Cloning.h
32BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB,
33 DenseMap<const Value*, Value*> &ValueMap,
34 const char *NameSuffix, Function *F,
35 ClonedCodeInfo *CodeInfo) {
Owen Anderson35b47072009-08-13 21:58:54 +000036 BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), "", F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
38
39 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
40
41 // Loop over all instructions, and copy them over.
42 for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();
43 II != IE; ++II) {
Nick Lewyckyc94270c2009-09-27 07:38:41 +000044 Instruction *NewInst = II->clone();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045 if (II->hasName())
46 NewInst->setName(II->getName()+NameSuffix);
47 NewBB->getInstList().push_back(NewInst);
48 ValueMap[II] = NewInst; // Add instruction map to value.
49
Dale Johannesenb15866e2009-03-10 22:20:02 +000050 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
52 if (isa<ConstantInt>(AI->getArraySize()))
53 hasStaticAllocas = true;
54 else
55 hasDynamicAllocas = true;
56 }
57 }
58
59 if (CodeInfo) {
60 CodeInfo->ContainsCalls |= hasCalls;
61 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(BB->getTerminator());
62 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
63 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
64 BB != &BB->getParent()->getEntryBlock();
65 }
66 return NewBB;
67}
68
69// Clone OldFunc into NewFunc, transforming the old arguments into references to
70// ArgMap values.
71//
72void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
73 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnereb875902009-08-27 04:02:30 +000074 SmallVectorImpl<ReturnInst*> &Returns,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075 const char *NameSuffix, ClonedCodeInfo *CodeInfo) {
76 assert(NameSuffix && "NameSuffix cannot be null!");
77
78#ifndef NDEBUG
79 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
80 E = OldFunc->arg_end(); I != E; ++I)
81 assert(ValueMap.count(I) && "No mapping from source argument specified!");
82#endif
83
Duncan Sands0cc90582008-05-26 19:58:59 +000084 // Clone any attributes.
Andrew Lenharth1c864f62008-10-07 18:08:38 +000085 if (NewFunc->arg_size() == OldFunc->arg_size())
86 NewFunc->copyAttributesFrom(OldFunc);
87 else {
88 //Some arguments were deleted with the ValueMap. Copy arguments one by one
89 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
90 E = OldFunc->arg_end(); I != E; ++I)
91 if (Argument* Anew = dyn_cast<Argument>(ValueMap[I]))
92 Anew->addAttr( OldFunc->getAttributes()
93 .getParamAttributes(I->getArgNo() + 1));
94 NewFunc->setAttributes(NewFunc->getAttributes()
95 .addAttr(0, OldFunc->getAttributes()
96 .getRetAttributes()));
97 NewFunc->setAttributes(NewFunc->getAttributes()
98 .addAttr(~0, OldFunc->getAttributes()
99 .getFnAttributes()));
100
101 }
Anton Korobeynikov649382f2008-03-23 16:03:00 +0000102
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000103 // Loop over all of the basic blocks in the function, cloning them as
104 // appropriate. Note that we save BE this way in order to handle cloning of
105 // recursive functions into themselves.
106 //
107 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
108 BI != BE; ++BI) {
109 const BasicBlock &BB = *BI;
110
111 // Create a new basic block and copy instructions into it!
112 BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc,
113 CodeInfo);
114 ValueMap[&BB] = CBB; // Add basic block mapping.
115
116 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
117 Returns.push_back(RI);
118 }
119
120 // Loop over all of the instructions in the function, fixing up operand
121 // references as we go. This uses ValueMap to do all the hard work.
122 //
123 for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]),
Nick Lewyckyd8aa33a2008-04-25 16:53:59 +0000124 BE = NewFunc->end(); BB != BE; ++BB)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 // Loop over all instructions, fixing each one as we find it...
126 for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II)
127 RemapInstruction(II, ValueMap);
128}
129
130/// CloneFunction - Return a copy of the specified function, but without
131/// embedding the function into another module. Also, any references specified
132/// in the ValueMap are changed to refer to their mapped value instead of the
133/// original one. If any of the arguments to the function are in the ValueMap,
134/// the arguments are deleted from the resultant function. The ValueMap is
135/// updated to include mappings from all of the instructions and basicblocks in
136/// the function from their old to new values.
137///
138Function *llvm::CloneFunction(const Function *F,
139 DenseMap<const Value*, Value*> &ValueMap,
140 ClonedCodeInfo *CodeInfo) {
141 std::vector<const Type*> ArgTypes;
142
143 // The user might be deleting arguments to the function by specifying them in
144 // the ValueMap. If so, we need to not add the arguments to the arg ty vector
145 //
146 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
147 I != E; ++I)
148 if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet?
149 ArgTypes.push_back(I->getType());
150
151 // Create a new function type...
Owen Anderson6b6e2d92009-07-29 22:17:13 +0000152 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 ArgTypes, F->getFunctionType()->isVarArg());
154
155 // Create the new function...
Gabor Greifd6da1d02008-04-06 20:25:17 +0000156 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157
158 // Loop over the arguments, copying the names of the mapped arguments over...
159 Function::arg_iterator DestI = NewF->arg_begin();
160 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
161 I != E; ++I)
162 if (ValueMap.count(I) == 0) { // Is this argument preserved?
163 DestI->setName(I->getName()); // Copy the name over...
164 ValueMap[I] = DestI++; // Add mapping to ValueMap
165 }
166
Chris Lattnereb875902009-08-27 04:02:30 +0000167 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 CloneFunctionInto(NewF, F, ValueMap, Returns, "", CodeInfo);
169 return NewF;
170}
171
172
173
174namespace {
175 /// PruningFunctionCloner - This class is a private class used to implement
176 /// the CloneAndPruneFunctionInto method.
Nick Lewycky492d06e2009-10-25 06:33:48 +0000177 struct PruningFunctionCloner {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 Function *NewFunc;
179 const Function *OldFunc;
180 DenseMap<const Value*, Value*> &ValueMap;
Chris Lattnereb875902009-08-27 04:02:30 +0000181 SmallVectorImpl<ReturnInst*> &Returns;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 const char *NameSuffix;
183 ClonedCodeInfo *CodeInfo;
184 const TargetData *TD;
Devang Patel2d9d4282009-02-10 07:48:18 +0000185 Value *DbgFnStart;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 public:
187 PruningFunctionCloner(Function *newFunc, const Function *oldFunc,
188 DenseMap<const Value*, Value*> &valueMap,
Chris Lattnereb875902009-08-27 04:02:30 +0000189 SmallVectorImpl<ReturnInst*> &returns,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 const char *nameSuffix,
191 ClonedCodeInfo *codeInfo,
192 const TargetData *td)
193 : NewFunc(newFunc), OldFunc(oldFunc), ValueMap(valueMap), Returns(returns),
Devang Patel2d9d4282009-02-10 07:48:18 +0000194 NameSuffix(nameSuffix), CodeInfo(codeInfo), TD(td), DbgFnStart(NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 }
196
197 /// CloneBlock - The specified block is found to be reachable, clone it and
198 /// anything that it can reach.
199 void CloneBlock(const BasicBlock *BB,
200 std::vector<const BasicBlock*> &ToClone);
201
202 public:
203 /// ConstantFoldMappedInstruction - Constant fold the specified instruction,
204 /// mapping its operands through ValueMap if they are available.
205 Constant *ConstantFoldMappedInstruction(const Instruction *I);
206 };
207}
208
209/// CloneBlock - The specified block is found to be reachable, clone it and
210/// anything that it can reach.
211void PruningFunctionCloner::CloneBlock(const BasicBlock *BB,
212 std::vector<const BasicBlock*> &ToClone){
213 Value *&BBEntry = ValueMap[BB];
214
215 // Have we already cloned this block?
216 if (BBEntry) return;
217
218 // Nope, clone it now.
219 BasicBlock *NewBB;
Owen Anderson35b47072009-08-13 21:58:54 +0000220 BBEntry = NewBB = BasicBlock::Create(BB->getContext());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
222
223 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
224
225 // Loop over all instructions, and copy them over, DCE'ing as we go. This
226 // loop doesn't include the terminator.
227 for (BasicBlock::const_iterator II = BB->begin(), IE = --BB->end();
228 II != IE; ++II) {
229 // If this instruction constant folds, don't bother cloning the instruction,
230 // instead, just add the constant to the value map.
231 if (Constant *C = ConstantFoldMappedInstruction(II)) {
232 ValueMap[II] = C;
233 continue;
234 }
Devang Patel2d9d4282009-02-10 07:48:18 +0000235
Devang Patel41f60452009-04-15 00:17:06 +0000236 // Do not clone llvm.dbg.region.end. It will be adjusted by the inliner.
Devang Patel2d9d4282009-02-10 07:48:18 +0000237 if (const DbgFuncStartInst *DFSI = dyn_cast<DbgFuncStartInst>(II)) {
Devang Patel41f60452009-04-15 00:17:06 +0000238 if (DbgFnStart == NULL) {
Devang Patel15e723d2009-08-28 23:24:31 +0000239 DISubprogram SP(DFSI->getSubprogram());
Devang Patel41f60452009-04-15 00:17:06 +0000240 if (SP.describes(BB->getParent()))
241 DbgFnStart = DFSI->getSubprogram();
242 }
Devang Patel2d9d4282009-02-10 07:48:18 +0000243 }
244 if (const DbgRegionEndInst *DREIS = dyn_cast<DbgRegionEndInst>(II)) {
245 if (DREIS->getContext() == DbgFnStart)
246 continue;
247 }
248
Nick Lewyckyc94270c2009-09-27 07:38:41 +0000249 Instruction *NewInst = II->clone();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000250 if (II->hasName())
251 NewInst->setName(II->getName()+NameSuffix);
252 NewBB->getInstList().push_back(NewInst);
253 ValueMap[II] = NewInst; // Add instruction map to value.
254
Dale Johannesenb15866e2009-03-10 22:20:02 +0000255 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
257 if (isa<ConstantInt>(AI->getArraySize()))
258 hasStaticAllocas = true;
259 else
260 hasDynamicAllocas = true;
261 }
262 }
263
264 // Finally, clone over the terminator.
265 const TerminatorInst *OldTI = BB->getTerminator();
266 bool TerminatorDone = false;
267 if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) {
268 if (BI->isConditional()) {
269 // If the condition was a known constant in the callee...
270 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
271 // Or is a known constant in the caller...
272 if (Cond == 0)
273 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[BI->getCondition()]);
274
275 // Constant fold to uncond branch!
276 if (Cond) {
277 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
Gabor Greifd6da1d02008-04-06 20:25:17 +0000278 ValueMap[OldTI] = BranchInst::Create(Dest, NewBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279 ToClone.push_back(Dest);
280 TerminatorDone = true;
281 }
282 }
283 } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) {
284 // If switching on a value known constant in the caller.
285 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
286 if (Cond == 0) // Or known constant after constant prop in the callee...
287 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[SI->getCondition()]);
288 if (Cond) { // Constant fold to uncond branch!
289 BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond));
Gabor Greifd6da1d02008-04-06 20:25:17 +0000290 ValueMap[OldTI] = BranchInst::Create(Dest, NewBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291 ToClone.push_back(Dest);
292 TerminatorDone = true;
293 }
294 }
295
296 if (!TerminatorDone) {
Nick Lewyckyc94270c2009-09-27 07:38:41 +0000297 Instruction *NewInst = OldTI->clone();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000298 if (OldTI->hasName())
299 NewInst->setName(OldTI->getName()+NameSuffix);
300 NewBB->getInstList().push_back(NewInst);
301 ValueMap[OldTI] = NewInst; // Add instruction map to value.
302
303 // Recursively clone any reachable successor blocks.
304 const TerminatorInst *TI = BB->getTerminator();
305 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
306 ToClone.push_back(TI->getSuccessor(i));
307 }
308
309 if (CodeInfo) {
310 CodeInfo->ContainsCalls |= hasCalls;
311 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(OldTI);
312 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
313 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
314 BB != &BB->getParent()->front();
315 }
316
317 if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator()))
318 Returns.push_back(RI);
319}
320
321/// ConstantFoldMappedInstruction - Constant fold the specified instruction,
322/// mapping its operands through ValueMap if they are available.
323Constant *PruningFunctionCloner::
324ConstantFoldMappedInstruction(const Instruction *I) {
325 SmallVector<Constant*, 8> Ops;
326 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
327 if (Constant *Op = dyn_cast_or_null<Constant>(MapValue(I->getOperand(i),
Dan Gohmana5b5be12009-10-24 23:37:16 +0000328 ValueMap)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329 Ops.push_back(Op);
330 else
331 return 0; // All operands not constant!
332
Chris Lattnerd6e56912007-12-10 22:53:04 +0000333 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
Chris Lattner10381be2009-11-09 23:06:58 +0000334 return ConstantFoldCompareInstOperands(CI->getPredicate(), Ops[0], Ops[1],
335 TD);
Nate Begemanc368b5b2008-04-25 06:37:06 +0000336
Nate Begemanc6962632008-04-25 17:45:52 +0000337 if (const LoadInst *LI = dyn_cast<LoadInst>(I))
338 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0]))
Nate Begemanc368b5b2008-04-25 06:37:06 +0000339 if (!LI->isVolatile() && CE->getOpcode() == Instruction::GetElementPtr)
340 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
Duncan Sands54e70f62009-03-21 21:27:31 +0000341 if (GV->isConstant() && GV->hasDefinitiveInitializer())
Nate Begemanc368b5b2008-04-25 06:37:06 +0000342 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(),
Dan Gohmanf49f7b02009-10-05 16:36:26 +0000343 CE);
Nate Begemanc368b5b2008-04-25 06:37:06 +0000344
345 return ConstantFoldInstOperands(I->getOpcode(), I->getType(), &Ops[0],
Chris Lattner6070c012009-11-06 04:27:31 +0000346 Ops.size(), TD);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000347}
348
349/// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto,
350/// except that it does some simple constant prop and DCE on the fly. The
351/// effect of this is to copy significantly less code in cases where (for
352/// example) a function call with constant arguments is inlined, and those
353/// constant arguments cause a significant amount of code in the callee to be
Duncan Sandsf5588dc2007-11-27 13:23:08 +0000354/// dead. Since this doesn't produce an exact copy of the input, it can't be
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355/// used for things like CloneFunction or CloneModule.
356void llvm::CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc,
357 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnereb875902009-08-27 04:02:30 +0000358 SmallVectorImpl<ReturnInst*> &Returns,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359 const char *NameSuffix,
360 ClonedCodeInfo *CodeInfo,
361 const TargetData *TD) {
362 assert(NameSuffix && "NameSuffix cannot be null!");
363
364#ifndef NDEBUG
365 for (Function::const_arg_iterator II = OldFunc->arg_begin(),
366 E = OldFunc->arg_end(); II != E; ++II)
367 assert(ValueMap.count(II) && "No mapping from source argument specified!");
368#endif
Duncan Sands0cc90582008-05-26 19:58:59 +0000369
370 PruningFunctionCloner PFC(NewFunc, OldFunc, ValueMap, Returns,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 NameSuffix, CodeInfo, TD);
372
373 // Clone the entry block, and anything recursively reachable from it.
374 std::vector<const BasicBlock*> CloneWorklist;
375 CloneWorklist.push_back(&OldFunc->getEntryBlock());
376 while (!CloneWorklist.empty()) {
377 const BasicBlock *BB = CloneWorklist.back();
378 CloneWorklist.pop_back();
379 PFC.CloneBlock(BB, CloneWorklist);
380 }
381
382 // Loop over all of the basic blocks in the old function. If the block was
383 // reachable, we have cloned it and the old block is now in the value map:
384 // insert it into the new function in the right order. If not, ignore it.
385 //
386 // Defer PHI resolution until rest of function is resolved.
Chris Lattnereb875902009-08-27 04:02:30 +0000387 SmallVector<const PHINode*, 16> PHIToResolve;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000388 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
389 BI != BE; ++BI) {
390 BasicBlock *NewBB = cast_or_null<BasicBlock>(ValueMap[BI]);
391 if (NewBB == 0) continue; // Dead block.
392
393 // Add the new block to the new function.
394 NewFunc->getBasicBlockList().push_back(NewBB);
395
396 // Loop over all of the instructions in the block, fixing up operand
397 // references as we go. This uses ValueMap to do all the hard work.
398 //
399 BasicBlock::iterator I = NewBB->begin();
400
401 // Handle PHI nodes specially, as we have to remove references to dead
402 // blocks.
403 if (PHINode *PN = dyn_cast<PHINode>(I)) {
404 // Skip over all PHI nodes, remembering them for later.
405 BasicBlock::const_iterator OldI = BI->begin();
406 for (; (PN = dyn_cast<PHINode>(I)); ++I, ++OldI)
407 PHIToResolve.push_back(cast<PHINode>(OldI));
408 }
409
410 // Otherwise, remap the rest of the instructions normally.
411 for (; I != NewBB->end(); ++I)
412 RemapInstruction(I, ValueMap);
413 }
414
415 // Defer PHI resolution until rest of function is resolved, PHI resolution
416 // requires the CFG to be up-to-date.
417 for (unsigned phino = 0, e = PHIToResolve.size(); phino != e; ) {
418 const PHINode *OPN = PHIToResolve[phino];
419 unsigned NumPreds = OPN->getNumIncomingValues();
420 const BasicBlock *OldBB = OPN->getParent();
421 BasicBlock *NewBB = cast<BasicBlock>(ValueMap[OldBB]);
422
423 // Map operands for blocks that are live and remove operands for blocks
424 // that are dead.
425 for (; phino != PHIToResolve.size() &&
426 PHIToResolve[phino]->getParent() == OldBB; ++phino) {
427 OPN = PHIToResolve[phino];
428 PHINode *PN = cast<PHINode>(ValueMap[OPN]);
429 for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) {
430 if (BasicBlock *MappedBlock =
431 cast_or_null<BasicBlock>(ValueMap[PN->getIncomingBlock(pred)])) {
Owen Andersona09d2342009-07-05 22:41:43 +0000432 Value *InVal = MapValue(PN->getIncomingValue(pred),
Dan Gohmana5b5be12009-10-24 23:37:16 +0000433 ValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434 assert(InVal && "Unknown input value?");
435 PN->setIncomingValue(pred, InVal);
436 PN->setIncomingBlock(pred, MappedBlock);
437 } else {
438 PN->removeIncomingValue(pred, false);
439 --pred, --e; // Revisit the next entry.
440 }
441 }
442 }
443
444 // The loop above has removed PHI entries for those blocks that are dead
445 // and has updated others. However, if a block is live (i.e. copied over)
446 // but its terminator has been changed to not go to this block, then our
447 // phi nodes will have invalid entries. Update the PHI nodes in this
448 // case.
449 PHINode *PN = cast<PHINode>(NewBB->begin());
450 NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB));
451 if (NumPreds != PN->getNumIncomingValues()) {
452 assert(NumPreds < PN->getNumIncomingValues());
453 // Count how many times each predecessor comes to this block.
454 std::map<BasicBlock*, unsigned> PredCount;
455 for (pred_iterator PI = pred_begin(NewBB), E = pred_end(NewBB);
456 PI != E; ++PI)
457 --PredCount[*PI];
458
459 // Figure out how many entries to remove from each PHI.
460 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
461 ++PredCount[PN->getIncomingBlock(i)];
462
463 // At this point, the excess predecessor entries are positive in the
464 // map. Loop over all of the PHIs and remove excess predecessor
465 // entries.
466 BasicBlock::iterator I = NewBB->begin();
467 for (; (PN = dyn_cast<PHINode>(I)); ++I) {
468 for (std::map<BasicBlock*, unsigned>::iterator PCI =PredCount.begin(),
469 E = PredCount.end(); PCI != E; ++PCI) {
470 BasicBlock *Pred = PCI->first;
471 for (unsigned NumToRemove = PCI->second; NumToRemove; --NumToRemove)
472 PN->removeIncomingValue(Pred, false);
473 }
474 }
475 }
476
477 // If the loops above have made these phi nodes have 0 or 1 operand,
478 // replace them with undef or the input value. We must do this for
479 // correctness, because 0-operand phis are not valid.
480 PN = cast<PHINode>(NewBB->begin());
481 if (PN->getNumIncomingValues() == 0) {
482 BasicBlock::iterator I = NewBB->begin();
483 BasicBlock::const_iterator OldI = OldBB->begin();
484 while ((PN = dyn_cast<PHINode>(I++))) {
Owen Andersonb99ecca2009-07-30 23:03:37 +0000485 Value *NV = UndefValue::get(PN->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 PN->replaceAllUsesWith(NV);
487 assert(ValueMap[OldI] == PN && "ValueMap mismatch");
488 ValueMap[OldI] = NV;
489 PN->eraseFromParent();
490 ++OldI;
491 }
492 }
493 // NOTE: We cannot eliminate single entry phi nodes here, because of
494 // ValueMap. Single entry phi nodes can have multiple ValueMap entries
495 // pointing at them. Thus, deleting one would require scanning the ValueMap
496 // to update any entries in it that would require that. This would be
497 // really slow.
498 }
499
500 // Now that the inlined function body has been fully constructed, go through
501 // and zap unconditional fall-through branches. This happen all the time when
502 // specializing code: code specialization turns conditional branches into
503 // uncond branches, and this code folds them.
504 Function::iterator I = cast<BasicBlock>(ValueMap[&OldFunc->getEntryBlock()]);
505 while (I != NewFunc->end()) {
506 BranchInst *BI = dyn_cast<BranchInst>(I->getTerminator());
507 if (!BI || BI->isConditional()) { ++I; continue; }
508
509 // Note that we can't eliminate uncond branches if the destination has
510 // single-entry PHI nodes. Eliminating the single-entry phi nodes would
511 // require scanning the ValueMap to update any entries that point to the phi
512 // node.
513 BasicBlock *Dest = BI->getSuccessor(0);
514 if (!Dest->getSinglePredecessor() || isa<PHINode>(Dest->begin())) {
515 ++I; continue;
516 }
517
518 // We know all single-entry PHI nodes in the inlined function have been
519 // removed, so we just need to splice the blocks.
520 BI->eraseFromParent();
521
522 // Move all the instructions in the succ to the pred.
523 I->getInstList().splice(I->end(), Dest->getInstList());
524
525 // Make all PHI nodes that referred to Dest now refer to I as their source.
526 Dest->replaceAllUsesWith(I);
527
528 // Remove the dest block.
529 Dest->eraseFromParent();
530
531 // Do not increment I, iteratively merge all things this block branches to.
532 }
533}