blob: c80827d49832d6ff795e10d069a20ea3b8566da9 [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"
Devang Patel90a0fe32009-11-10 23:06:00 +000023#include "llvm/LLVMContext.h"
Chris Lattnera878db02009-12-31 03:02:08 +000024#include "llvm/Metadata.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025#include "llvm/Support/CFG.h"
Anton Korobeynikovad7ea242007-11-09 12:27:04 +000026#include "llvm/Transforms/Utils/ValueMapper.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include "llvm/Analysis/ConstantFolding.h"
Devang Patel41f60452009-04-15 00:17:06 +000028#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include "llvm/ADT/SmallVector.h"
30#include <map>
31using namespace llvm;
32
33// CloneBasicBlock - See comments in Cloning.h
34BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB,
35 DenseMap<const Value*, Value*> &ValueMap,
Benjamin Kramer5c594c82010-01-27 19:58:47 +000036 const Twine &NameSuffix, Function *F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037 ClonedCodeInfo *CodeInfo) {
Owen Anderson35b47072009-08-13 21:58:54 +000038 BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), "", F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
40
41 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
42
43 // Loop over all instructions, and copy them over.
44 for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();
45 II != IE; ++II) {
Nick Lewyckyc94270c2009-09-27 07:38:41 +000046 Instruction *NewInst = II->clone();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047 if (II->hasName())
48 NewInst->setName(II->getName()+NameSuffix);
49 NewBB->getInstList().push_back(NewInst);
50 ValueMap[II] = NewInst; // Add instruction map to value.
51
Dale Johannesenb15866e2009-03-10 22:20:02 +000052 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
54 if (isa<ConstantInt>(AI->getArraySize()))
55 hasStaticAllocas = true;
56 else
57 hasDynamicAllocas = true;
58 }
59 }
60
61 if (CodeInfo) {
62 CodeInfo->ContainsCalls |= hasCalls;
63 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(BB->getTerminator());
64 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
65 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
66 BB != &BB->getParent()->getEntryBlock();
67 }
68 return NewBB;
69}
70
71// Clone OldFunc into NewFunc, transforming the old arguments into references to
72// ArgMap values.
73//
74void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
75 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnereb875902009-08-27 04:02:30 +000076 SmallVectorImpl<ReturnInst*> &Returns,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077 const char *NameSuffix, ClonedCodeInfo *CodeInfo) {
78 assert(NameSuffix && "NameSuffix cannot be null!");
79
80#ifndef NDEBUG
81 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
82 E = OldFunc->arg_end(); I != E; ++I)
83 assert(ValueMap.count(I) && "No mapping from source argument specified!");
84#endif
85
Duncan Sands0cc90582008-05-26 19:58:59 +000086 // Clone any attributes.
Andrew Lenharth1c864f62008-10-07 18:08:38 +000087 if (NewFunc->arg_size() == OldFunc->arg_size())
88 NewFunc->copyAttributesFrom(OldFunc);
89 else {
90 //Some arguments were deleted with the ValueMap. Copy arguments one by one
91 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
92 E = OldFunc->arg_end(); I != E; ++I)
93 if (Argument* Anew = dyn_cast<Argument>(ValueMap[I]))
94 Anew->addAttr( OldFunc->getAttributes()
95 .getParamAttributes(I->getArgNo() + 1));
96 NewFunc->setAttributes(NewFunc->getAttributes()
97 .addAttr(0, OldFunc->getAttributes()
98 .getRetAttributes()));
99 NewFunc->setAttributes(NewFunc->getAttributes()
100 .addAttr(~0, OldFunc->getAttributes()
101 .getFnAttributes()));
102
103 }
Anton Korobeynikov649382f2008-03-23 16:03:00 +0000104
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105 // Loop over all of the basic blocks in the function, cloning them as
106 // appropriate. Note that we save BE this way in order to handle cloning of
107 // recursive functions into themselves.
108 //
109 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
110 BI != BE; ++BI) {
111 const BasicBlock &BB = *BI;
112
113 // Create a new basic block and copy instructions into it!
114 BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc,
115 CodeInfo);
116 ValueMap[&BB] = CBB; // Add basic block mapping.
117
118 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
119 Returns.push_back(RI);
120 }
121
122 // Loop over all of the instructions in the function, fixing up operand
123 // references as we go. This uses ValueMap to do all the hard work.
124 //
125 for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]),
Nick Lewyckyd8aa33a2008-04-25 16:53:59 +0000126 BE = NewFunc->end(); BB != BE; ++BB)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 // Loop over all instructions, fixing each one as we find it...
128 for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II)
129 RemapInstruction(II, ValueMap);
130}
131
132/// CloneFunction - Return a copy of the specified function, but without
133/// embedding the function into another module. Also, any references specified
134/// in the ValueMap are changed to refer to their mapped value instead of the
135/// original one. If any of the arguments to the function are in the ValueMap,
136/// the arguments are deleted from the resultant function. The ValueMap is
137/// updated to include mappings from all of the instructions and basicblocks in
138/// the function from their old to new values.
139///
140Function *llvm::CloneFunction(const Function *F,
141 DenseMap<const Value*, Value*> &ValueMap,
142 ClonedCodeInfo *CodeInfo) {
143 std::vector<const Type*> ArgTypes;
144
145 // The user might be deleting arguments to the function by specifying them in
146 // the ValueMap. If so, we need to not add the arguments to the arg ty vector
147 //
148 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
149 I != E; ++I)
150 if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet?
151 ArgTypes.push_back(I->getType());
152
153 // Create a new function type...
Owen Anderson6b6e2d92009-07-29 22:17:13 +0000154 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 ArgTypes, F->getFunctionType()->isVarArg());
156
157 // Create the new function...
Gabor Greifd6da1d02008-04-06 20:25:17 +0000158 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159
160 // Loop over the arguments, copying the names of the mapped arguments over...
161 Function::arg_iterator DestI = NewF->arg_begin();
162 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
163 I != E; ++I)
164 if (ValueMap.count(I) == 0) { // Is this argument preserved?
165 DestI->setName(I->getName()); // Copy the name over...
166 ValueMap[I] = DestI++; // Add mapping to ValueMap
167 }
168
Chris Lattnereb875902009-08-27 04:02:30 +0000169 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 CloneFunctionInto(NewF, F, ValueMap, Returns, "", CodeInfo);
171 return NewF;
172}
173
174
175
176namespace {
177 /// PruningFunctionCloner - This class is a private class used to implement
178 /// the CloneAndPruneFunctionInto method.
Nick Lewycky492d06e2009-10-25 06:33:48 +0000179 struct PruningFunctionCloner {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 Function *NewFunc;
181 const Function *OldFunc;
182 DenseMap<const Value*, Value*> &ValueMap;
Chris Lattnereb875902009-08-27 04:02:30 +0000183 SmallVectorImpl<ReturnInst*> &Returns;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 const char *NameSuffix;
185 ClonedCodeInfo *CodeInfo;
186 const TargetData *TD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000187 public:
188 PruningFunctionCloner(Function *newFunc, const Function *oldFunc,
189 DenseMap<const Value*, Value*> &valueMap,
Chris Lattnereb875902009-08-27 04:02:30 +0000190 SmallVectorImpl<ReturnInst*> &returns,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 const char *nameSuffix,
192 ClonedCodeInfo *codeInfo,
193 const TargetData *td)
194 : NewFunc(newFunc), OldFunc(oldFunc), ValueMap(valueMap), Returns(returns),
Devang Patel9fcb4c12010-01-05 01:10:40 +0000195 NameSuffix(nameSuffix), CodeInfo(codeInfo), TD(td) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 }
197
198 /// CloneBlock - The specified block is found to be reachable, clone it and
199 /// anything that it can reach.
200 void CloneBlock(const BasicBlock *BB,
201 std::vector<const BasicBlock*> &ToClone);
202
203 public:
204 /// ConstantFoldMappedInstruction - Constant fold the specified instruction,
205 /// mapping its operands through ValueMap if they are available.
206 Constant *ConstantFoldMappedInstruction(const Instruction *I);
207 };
208}
209
210/// CloneBlock - The specified block is found to be reachable, clone it and
211/// anything that it can reach.
212void PruningFunctionCloner::CloneBlock(const BasicBlock *BB,
213 std::vector<const BasicBlock*> &ToClone){
214 Value *&BBEntry = ValueMap[BB];
215
216 // Have we already cloned this block?
217 if (BBEntry) return;
218
219 // Nope, clone it now.
220 BasicBlock *NewBB;
Owen Anderson35b47072009-08-13 21:58:54 +0000221 BBEntry = NewBB = BasicBlock::Create(BB->getContext());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000222 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
223
224 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
225
226 // Loop over all instructions, and copy them over, DCE'ing as we go. This
227 // loop doesn't include the terminator.
228 for (BasicBlock::const_iterator II = BB->begin(), IE = --BB->end();
229 II != IE; ++II) {
230 // If this instruction constant folds, don't bother cloning the instruction,
231 // instead, just add the constant to the value map.
232 if (Constant *C = ConstantFoldMappedInstruction(II)) {
233 ValueMap[II] = C;
234 continue;
235 }
Devang Patel2d9d4282009-02-10 07:48:18 +0000236
Nick Lewyckyc94270c2009-09-27 07:38:41 +0000237 Instruction *NewInst = II->clone();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 if (II->hasName())
239 NewInst->setName(II->getName()+NameSuffix);
240 NewBB->getInstList().push_back(NewInst);
241 ValueMap[II] = NewInst; // Add instruction map to value.
242
Dale Johannesenb15866e2009-03-10 22:20:02 +0000243 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
245 if (isa<ConstantInt>(AI->getArraySize()))
246 hasStaticAllocas = true;
247 else
248 hasDynamicAllocas = true;
249 }
250 }
251
252 // Finally, clone over the terminator.
253 const TerminatorInst *OldTI = BB->getTerminator();
254 bool TerminatorDone = false;
255 if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) {
256 if (BI->isConditional()) {
257 // If the condition was a known constant in the callee...
258 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
259 // Or is a known constant in the caller...
260 if (Cond == 0)
261 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[BI->getCondition()]);
262
263 // Constant fold to uncond branch!
264 if (Cond) {
265 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
Gabor Greifd6da1d02008-04-06 20:25:17 +0000266 ValueMap[OldTI] = BranchInst::Create(Dest, NewBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267 ToClone.push_back(Dest);
268 TerminatorDone = true;
269 }
270 }
271 } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) {
272 // If switching on a value known constant in the caller.
273 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
274 if (Cond == 0) // Or known constant after constant prop in the callee...
275 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[SI->getCondition()]);
276 if (Cond) { // Constant fold to uncond branch!
277 BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond));
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
284 if (!TerminatorDone) {
Nick Lewyckyc94270c2009-09-27 07:38:41 +0000285 Instruction *NewInst = OldTI->clone();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286 if (OldTI->hasName())
287 NewInst->setName(OldTI->getName()+NameSuffix);
288 NewBB->getInstList().push_back(NewInst);
289 ValueMap[OldTI] = NewInst; // Add instruction map to value.
290
291 // Recursively clone any reachable successor blocks.
292 const TerminatorInst *TI = BB->getTerminator();
293 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
294 ToClone.push_back(TI->getSuccessor(i));
295 }
296
297 if (CodeInfo) {
298 CodeInfo->ContainsCalls |= hasCalls;
299 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(OldTI);
300 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
301 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
302 BB != &BB->getParent()->front();
303 }
304
305 if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator()))
306 Returns.push_back(RI);
307}
308
309/// ConstantFoldMappedInstruction - Constant fold the specified instruction,
310/// mapping its operands through ValueMap if they are available.
311Constant *PruningFunctionCloner::
312ConstantFoldMappedInstruction(const Instruction *I) {
313 SmallVector<Constant*, 8> Ops;
314 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
315 if (Constant *Op = dyn_cast_or_null<Constant>(MapValue(I->getOperand(i),
Dan Gohmana5b5be12009-10-24 23:37:16 +0000316 ValueMap)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 Ops.push_back(Op);
318 else
319 return 0; // All operands not constant!
320
Chris Lattnerd6e56912007-12-10 22:53:04 +0000321 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
Chris Lattner10381be2009-11-09 23:06:58 +0000322 return ConstantFoldCompareInstOperands(CI->getPredicate(), Ops[0], Ops[1],
323 TD);
Nate Begemanc368b5b2008-04-25 06:37:06 +0000324
Nate Begemanc6962632008-04-25 17:45:52 +0000325 if (const LoadInst *LI = dyn_cast<LoadInst>(I))
326 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0]))
Nate Begemanc368b5b2008-04-25 06:37:06 +0000327 if (!LI->isVolatile() && CE->getOpcode() == Instruction::GetElementPtr)
328 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
Duncan Sands54e70f62009-03-21 21:27:31 +0000329 if (GV->isConstant() && GV->hasDefinitiveInitializer())
Nate Begemanc368b5b2008-04-25 06:37:06 +0000330 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(),
Dan Gohmanf49f7b02009-10-05 16:36:26 +0000331 CE);
Nate Begemanc368b5b2008-04-25 06:37:06 +0000332
333 return ConstantFoldInstOperands(I->getOpcode(), I->getType(), &Ops[0],
Chris Lattner6070c012009-11-06 04:27:31 +0000334 Ops.size(), TD);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000335}
336
Chris Lattner2c342102009-12-29 08:03:58 +0000337static MDNode *UpdateInlinedAtInfo(MDNode *InsnMD, MDNode *TheCallMD) {
Devang Patel90a0fe32009-11-10 23:06:00 +0000338 DILocation ILoc(InsnMD);
339 if (ILoc.isNull()) return InsnMD;
340
341 DILocation CallLoc(TheCallMD);
342 if (CallLoc.isNull()) return InsnMD;
343
344 DILocation OrigLocation = ILoc.getOrigLocation();
345 MDNode *NewLoc = TheCallMD;
346 if (!OrigLocation.isNull())
Chris Lattner2c342102009-12-29 08:03:58 +0000347 NewLoc = UpdateInlinedAtInfo(OrigLocation.getNode(), TheCallMD);
Devang Patel90a0fe32009-11-10 23:06:00 +0000348
Benjamin Kramerca952c52009-12-29 11:04:52 +0000349 Value *MDVs[] = {
Chris Lattnerece76b02009-12-31 01:22:29 +0000350 InsnMD->getOperand(0), // Line
351 InsnMD->getOperand(1), // Col
352 InsnMD->getOperand(2), // Scope
Benjamin Kramerca952c52009-12-29 11:04:52 +0000353 NewLoc
354 };
355 return MDNode::get(InsnMD->getContext(), MDVs, 4);
Devang Patel90a0fe32009-11-10 23:06:00 +0000356}
357
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358/// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto,
359/// except that it does some simple constant prop and DCE on the fly. The
360/// effect of this is to copy significantly less code in cases where (for
361/// example) a function call with constant arguments is inlined, and those
362/// constant arguments cause a significant amount of code in the callee to be
Duncan Sandsf5588dc2007-11-27 13:23:08 +0000363/// dead. Since this doesn't produce an exact copy of the input, it can't be
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000364/// used for things like CloneFunction or CloneModule.
365void llvm::CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc,
366 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnereb875902009-08-27 04:02:30 +0000367 SmallVectorImpl<ReturnInst*> &Returns,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 const char *NameSuffix,
369 ClonedCodeInfo *CodeInfo,
Devang Patel90a0fe32009-11-10 23:06:00 +0000370 const TargetData *TD,
371 Instruction *TheCall) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 assert(NameSuffix && "NameSuffix cannot be null!");
373
374#ifndef NDEBUG
375 for (Function::const_arg_iterator II = OldFunc->arg_begin(),
376 E = OldFunc->arg_end(); II != E; ++II)
377 assert(ValueMap.count(II) && "No mapping from source argument specified!");
378#endif
Duncan Sands0cc90582008-05-26 19:58:59 +0000379
380 PruningFunctionCloner PFC(NewFunc, OldFunc, ValueMap, Returns,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381 NameSuffix, CodeInfo, TD);
382
383 // Clone the entry block, and anything recursively reachable from it.
384 std::vector<const BasicBlock*> CloneWorklist;
385 CloneWorklist.push_back(&OldFunc->getEntryBlock());
386 while (!CloneWorklist.empty()) {
387 const BasicBlock *BB = CloneWorklist.back();
388 CloneWorklist.pop_back();
389 PFC.CloneBlock(BB, CloneWorklist);
390 }
391
392 // Loop over all of the basic blocks in the old function. If the block was
393 // reachable, we have cloned it and the old block is now in the value map:
394 // insert it into the new function in the right order. If not, ignore it.
395 //
396 // Defer PHI resolution until rest of function is resolved.
Chris Lattnereb875902009-08-27 04:02:30 +0000397 SmallVector<const PHINode*, 16> PHIToResolve;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
399 BI != BE; ++BI) {
400 BasicBlock *NewBB = cast_or_null<BasicBlock>(ValueMap[BI]);
401 if (NewBB == 0) continue; // Dead block.
402
403 // Add the new block to the new function.
404 NewFunc->getBasicBlockList().push_back(NewBB);
405
406 // Loop over all of the instructions in the block, fixing up operand
407 // references as we go. This uses ValueMap to do all the hard work.
408 //
409 BasicBlock::iterator I = NewBB->begin();
Devang Patel90a0fe32009-11-10 23:06:00 +0000410
Chris Lattnera0d451f2009-12-29 09:01:33 +0000411 unsigned DbgKind = OldFunc->getContext().getMDKindID("dbg");
Devang Patel90a0fe32009-11-10 23:06:00 +0000412 MDNode *TheCallMD = NULL;
Devang Patel90a0fe32009-11-10 23:06:00 +0000413 if (TheCall && TheCall->hasMetadata())
Chris Lattnerdcf06572009-12-28 23:41:32 +0000414 TheCallMD = TheCall->getMetadata(DbgKind);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415
416 // Handle PHI nodes specially, as we have to remove references to dead
417 // blocks.
418 if (PHINode *PN = dyn_cast<PHINode>(I)) {
419 // Skip over all PHI nodes, remembering them for later.
420 BasicBlock::const_iterator OldI = BI->begin();
Devang Patel90a0fe32009-11-10 23:06:00 +0000421 for (; (PN = dyn_cast<PHINode>(I)); ++I, ++OldI) {
Daniel Dunbar1b692202009-11-12 02:52:56 +0000422 if (I->hasMetadata()) {
Devang Patel90a0fe32009-11-10 23:06:00 +0000423 if (TheCallMD) {
Chris Lattnerdcf06572009-12-28 23:41:32 +0000424 if (MDNode *IMD = I->getMetadata(DbgKind)) {
Chris Lattner2c342102009-12-29 08:03:58 +0000425 MDNode *NewMD = UpdateInlinedAtInfo(IMD, TheCallMD);
Chris Lattnerdcf06572009-12-28 23:41:32 +0000426 I->setMetadata(DbgKind, NewMD);
Devang Patel90a0fe32009-11-10 23:06:00 +0000427 }
Daniel Dunbar1b692202009-11-12 02:52:56 +0000428 } else {
Devang Patel90a0fe32009-11-10 23:06:00 +0000429 // The cloned instruction has dbg info but the call instruction
430 // does not have dbg info. Remove dbg info from cloned instruction.
Chris Lattnerdcf06572009-12-28 23:41:32 +0000431 I->setMetadata(DbgKind, 0);
Daniel Dunbar1b692202009-11-12 02:52:56 +0000432 }
433 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434 PHIToResolve.push_back(cast<PHINode>(OldI));
Devang Patel90a0fe32009-11-10 23:06:00 +0000435 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436 }
437
Chris Lattnerdcf06572009-12-28 23:41:32 +0000438 // FIXME:
439 // FIXME:
440 // FIXME: Unclone all this metadata stuff.
441 // FIXME:
442 // FIXME:
443
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 // Otherwise, remap the rest of the instructions normally.
Devang Patel90a0fe32009-11-10 23:06:00 +0000445 for (; I != NewBB->end(); ++I) {
Daniel Dunbar1b692202009-11-12 02:52:56 +0000446 if (I->hasMetadata()) {
Devang Patel90a0fe32009-11-10 23:06:00 +0000447 if (TheCallMD) {
Chris Lattnerdcf06572009-12-28 23:41:32 +0000448 if (MDNode *IMD = I->getMetadata(DbgKind)) {
Chris Lattner2c342102009-12-29 08:03:58 +0000449 MDNode *NewMD = UpdateInlinedAtInfo(IMD, TheCallMD);
Chris Lattnerdcf06572009-12-28 23:41:32 +0000450 I->setMetadata(DbgKind, NewMD);
Devang Patel90a0fe32009-11-10 23:06:00 +0000451 }
Daniel Dunbar1b692202009-11-12 02:52:56 +0000452 } else {
Devang Patel90a0fe32009-11-10 23:06:00 +0000453 // The cloned instruction has dbg info but the call instruction
454 // does not have dbg info. Remove dbg info from cloned instruction.
Chris Lattnerdcf06572009-12-28 23:41:32 +0000455 I->setMetadata(DbgKind, 0);
Daniel Dunbar1b692202009-11-12 02:52:56 +0000456 }
457 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458 RemapInstruction(I, ValueMap);
Devang Patel90a0fe32009-11-10 23:06:00 +0000459 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460 }
461
462 // Defer PHI resolution until rest of function is resolved, PHI resolution
463 // requires the CFG to be up-to-date.
464 for (unsigned phino = 0, e = PHIToResolve.size(); phino != e; ) {
465 const PHINode *OPN = PHIToResolve[phino];
466 unsigned NumPreds = OPN->getNumIncomingValues();
467 const BasicBlock *OldBB = OPN->getParent();
468 BasicBlock *NewBB = cast<BasicBlock>(ValueMap[OldBB]);
469
470 // Map operands for blocks that are live and remove operands for blocks
471 // that are dead.
472 for (; phino != PHIToResolve.size() &&
473 PHIToResolve[phino]->getParent() == OldBB; ++phino) {
474 OPN = PHIToResolve[phino];
475 PHINode *PN = cast<PHINode>(ValueMap[OPN]);
476 for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) {
477 if (BasicBlock *MappedBlock =
478 cast_or_null<BasicBlock>(ValueMap[PN->getIncomingBlock(pred)])) {
Owen Andersona09d2342009-07-05 22:41:43 +0000479 Value *InVal = MapValue(PN->getIncomingValue(pred),
Dan Gohmana5b5be12009-10-24 23:37:16 +0000480 ValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 assert(InVal && "Unknown input value?");
482 PN->setIncomingValue(pred, InVal);
483 PN->setIncomingBlock(pred, MappedBlock);
484 } else {
485 PN->removeIncomingValue(pred, false);
486 --pred, --e; // Revisit the next entry.
487 }
488 }
489 }
490
491 // The loop above has removed PHI entries for those blocks that are dead
492 // and has updated others. However, if a block is live (i.e. copied over)
493 // but its terminator has been changed to not go to this block, then our
494 // phi nodes will have invalid entries. Update the PHI nodes in this
495 // case.
496 PHINode *PN = cast<PHINode>(NewBB->begin());
497 NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB));
498 if (NumPreds != PN->getNumIncomingValues()) {
499 assert(NumPreds < PN->getNumIncomingValues());
500 // Count how many times each predecessor comes to this block.
501 std::map<BasicBlock*, unsigned> PredCount;
502 for (pred_iterator PI = pred_begin(NewBB), E = pred_end(NewBB);
503 PI != E; ++PI)
504 --PredCount[*PI];
505
506 // Figure out how many entries to remove from each PHI.
507 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
508 ++PredCount[PN->getIncomingBlock(i)];
509
510 // At this point, the excess predecessor entries are positive in the
511 // map. Loop over all of the PHIs and remove excess predecessor
512 // entries.
513 BasicBlock::iterator I = NewBB->begin();
514 for (; (PN = dyn_cast<PHINode>(I)); ++I) {
515 for (std::map<BasicBlock*, unsigned>::iterator PCI =PredCount.begin(),
516 E = PredCount.end(); PCI != E; ++PCI) {
517 BasicBlock *Pred = PCI->first;
518 for (unsigned NumToRemove = PCI->second; NumToRemove; --NumToRemove)
519 PN->removeIncomingValue(Pred, false);
520 }
521 }
522 }
523
524 // If the loops above have made these phi nodes have 0 or 1 operand,
525 // replace them with undef or the input value. We must do this for
526 // correctness, because 0-operand phis are not valid.
527 PN = cast<PHINode>(NewBB->begin());
528 if (PN->getNumIncomingValues() == 0) {
529 BasicBlock::iterator I = NewBB->begin();
530 BasicBlock::const_iterator OldI = OldBB->begin();
531 while ((PN = dyn_cast<PHINode>(I++))) {
Owen Andersonb99ecca2009-07-30 23:03:37 +0000532 Value *NV = UndefValue::get(PN->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 PN->replaceAllUsesWith(NV);
534 assert(ValueMap[OldI] == PN && "ValueMap mismatch");
535 ValueMap[OldI] = NV;
536 PN->eraseFromParent();
537 ++OldI;
538 }
539 }
540 // NOTE: We cannot eliminate single entry phi nodes here, because of
541 // ValueMap. Single entry phi nodes can have multiple ValueMap entries
542 // pointing at them. Thus, deleting one would require scanning the ValueMap
543 // to update any entries in it that would require that. This would be
544 // really slow.
545 }
546
547 // Now that the inlined function body has been fully constructed, go through
548 // and zap unconditional fall-through branches. This happen all the time when
549 // specializing code: code specialization turns conditional branches into
550 // uncond branches, and this code folds them.
551 Function::iterator I = cast<BasicBlock>(ValueMap[&OldFunc->getEntryBlock()]);
552 while (I != NewFunc->end()) {
553 BranchInst *BI = dyn_cast<BranchInst>(I->getTerminator());
554 if (!BI || BI->isConditional()) { ++I; continue; }
555
556 // Note that we can't eliminate uncond branches if the destination has
557 // single-entry PHI nodes. Eliminating the single-entry phi nodes would
558 // require scanning the ValueMap to update any entries that point to the phi
559 // node.
560 BasicBlock *Dest = BI->getSuccessor(0);
561 if (!Dest->getSinglePredecessor() || isa<PHINode>(Dest->begin())) {
562 ++I; continue;
563 }
564
565 // We know all single-entry PHI nodes in the inlined function have been
566 // removed, so we just need to splice the blocks.
567 BI->eraseFromParent();
568
569 // Move all the instructions in the succ to the pred.
570 I->getInstList().splice(I->end(), Dest->getInstList());
571
572 // Make all PHI nodes that referred to Dest now refer to I as their source.
573 Dest->replaceAllUsesWith(I);
574
575 // Remove the dest block.
576 Dest->eraseFromParent();
577
578 // Do not increment I, iteratively merge all things this block branches to.
579 }
580}