blob: c287747b91d36c48211b00a5ea07c455ca6a7b22 [file] [log] [blame]
Chris Lattner6c2e2e52002-11-19 22:04:49 +00001//===- CloneFunction.cpp - Clone a function into another function ---------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner6c2e2e52002-11-19 22:04:49 +00009//
10// This file implements the CloneFunctionInto interface, which is used as the
11// low-level function cloner. This is used by the CloneFunction and function
12// inliner to do the dirty work of copying the body of a function around.
13//
14//===----------------------------------------------------------------------===//
Chris Lattnerfa703a42002-03-29 19:03:54 +000015
Chris Lattner309f1932002-11-19 20:59:41 +000016#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattnera4c29d22006-01-13 18:39:17 +000017#include "llvm/Constants.h"
Chris Lattner5a8932f2002-11-19 23:12:22 +000018#include "llvm/DerivedTypes.h"
Chris Lattnera4c29d22006-01-13 18:39:17 +000019#include "llvm/Instructions.h"
Devang Patelf66d7b52009-02-10 07:48:18 +000020#include "llvm/IntrinsicInst.h"
Nate Begeman4be30ac2008-04-25 06:37:06 +000021#include "llvm/GlobalVariable.h"
Chris Lattnerfa703a42002-03-29 19:03:54 +000022#include "llvm/Function.h"
Devang Patel53bb5c92009-11-10 23:06:00 +000023#include "llvm/LLVMContext.h"
Chris Lattnerf0908a32009-12-31 03:02:08 +000024#include "llvm/Metadata.h"
Chris Lattner35033ef2006-06-01 19:19:23 +000025#include "llvm/Support/CFG.h"
Anton Korobeynikov344ef192007-11-09 12:27:04 +000026#include "llvm/Transforms/Utils/ValueMapper.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000027#include "llvm/Analysis/ConstantFolding.h"
Devang Patel517576d2009-04-15 00:17:06 +000028#include "llvm/Analysis/DebugInfo.h"
Chris Lattner9fa038d2007-01-30 23:13:49 +000029#include "llvm/ADT/SmallVector.h"
Chris Lattner5e665f52007-02-03 00:08:31 +000030#include <map>
Chris Lattnerf7703df2004-01-09 06:12:26 +000031using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000032
Chris Lattner17d145d2003-04-18 03:50:09 +000033// CloneBasicBlock - See comments in Cloning.h
Chris Lattnerf7703df2004-01-09 06:12:26 +000034BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB,
Chris Lattner5e665f52007-02-03 00:08:31 +000035 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnera4c29d22006-01-13 18:39:17 +000036 const char *NameSuffix, Function *F,
37 ClonedCodeInfo *CodeInfo) {
Owen Anderson1d0be152009-08-13 21:58:54 +000038 BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), "", F);
Chris Lattner17d145d2003-04-18 03:50:09 +000039 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
40
Chris Lattnera4c29d22006-01-13 18:39:17 +000041 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
42
43 // Loop over all instructions, and copy them over.
Chris Lattner17d145d2003-04-18 03:50:09 +000044 for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();
45 II != IE; ++II) {
Nick Lewycky67760642009-09-27 07:38:41 +000046 Instruction *NewInst = II->clone();
Chris Lattner17d145d2003-04-18 03:50:09 +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.
Chris Lattnera4c29d22006-01-13 18:39:17 +000051
Dale Johannesen8aa90fe2009-03-10 22:20:02 +000052 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
Chris Lattnera4c29d22006-01-13 18:39:17 +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 &&
Dan Gohmanecb7a772007-03-22 16:38:57 +000066 BB != &BB->getParent()->getEntryBlock();
Chris Lattner17d145d2003-04-18 03:50:09 +000067 }
68 return NewBB;
69}
70
Chris Lattnerfa703a42002-03-29 19:03:54 +000071// Clone OldFunc into NewFunc, transforming the old arguments into references to
72// ArgMap values.
73//
Chris Lattnerf7703df2004-01-09 06:12:26 +000074void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +000075 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnerec1bea02009-08-27 04:02:30 +000076 SmallVectorImpl<ReturnInst*> &Returns,
Chris Lattnera4c29d22006-01-13 18:39:17 +000077 const char *NameSuffix, ClonedCodeInfo *CodeInfo) {
Chris Lattnerdcd80402002-11-19 21:54:07 +000078 assert(NameSuffix && "NameSuffix cannot be null!");
Misha Brukmanfd939082005-04-21 23:48:37 +000079
Chris Lattnerd1801552002-11-19 22:54:01 +000080#ifndef NDEBUG
Chris Lattnera4c29d22006-01-13 18:39:17 +000081 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
82 E = OldFunc->arg_end(); I != E; ++I)
Chris Lattnerd1801552002-11-19 22:54:01 +000083 assert(ValueMap.count(I) && "No mapping from source argument specified!");
84#endif
Chris Lattnerfa703a42002-03-29 19:03:54 +000085
Duncan Sands28c3cff2008-05-26 19:58:59 +000086 // Clone any attributes.
Andrew Lenharth82cf32e2008-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 Korobeynikov9e49f1b2008-03-23 16:03:00 +0000104
Chris Lattnerfa703a42002-03-29 19:03:54 +0000105 // Loop over all of the basic blocks in the function, cloning them as
Chris Lattnerdcd80402002-11-19 21:54:07 +0000106 // appropriate. Note that we save BE this way in order to handle cloning of
107 // recursive functions into themselves.
Chris Lattnerfa703a42002-03-29 19:03:54 +0000108 //
109 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
110 BI != BE; ++BI) {
Chris Lattner18961502002-06-25 16:12:52 +0000111 const BasicBlock &BB = *BI;
Misha Brukmanfd939082005-04-21 23:48:37 +0000112
Chris Lattner17d145d2003-04-18 03:50:09 +0000113 // Create a new basic block and copy instructions into it!
Chris Lattnera4c29d22006-01-13 18:39:17 +0000114 BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc,
115 CodeInfo);
Chris Lattner18961502002-06-25 16:12:52 +0000116 ValueMap[&BB] = CBB; // Add basic block mapping.
Chris Lattnerfa703a42002-03-29 19:03:54 +0000117
Chris Lattnerdcd80402002-11-19 21:54:07 +0000118 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
119 Returns.push_back(RI);
Chris Lattnerfa703a42002-03-29 19:03:54 +0000120 }
121
Misha Brukmanfd939082005-04-21 23:48:37 +0000122 // Loop over all of the instructions in the function, fixing up operand
Chris Lattnerfa703a42002-03-29 19:03:54 +0000123 // references as we go. This uses ValueMap to do all the hard work.
124 //
Chris Lattnera33ceaa2004-02-04 21:44:26 +0000125 for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]),
Nick Lewycky280a6e62008-04-25 16:53:59 +0000126 BE = NewFunc->end(); BB != BE; ++BB)
Chris Lattnerfa703a42002-03-29 19:03:54 +0000127 // Loop over all instructions, fixing each one as we find it...
Chris Lattnera33ceaa2004-02-04 21:44:26 +0000128 for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II)
Chris Lattner18961502002-06-25 16:12:52 +0000129 RemapInstruction(II, ValueMap);
Chris Lattnerfa703a42002-03-29 19:03:54 +0000130}
Chris Lattner5a8932f2002-11-19 23:12:22 +0000131
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///
Chris Lattnerf7703df2004-01-09 06:12:26 +0000140Function *llvm::CloneFunction(const Function *F,
Chris Lattner5e665f52007-02-03 00:08:31 +0000141 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnera4c29d22006-01-13 18:39:17 +0000142 ClonedCodeInfo *CodeInfo) {
Chris Lattner5a8932f2002-11-19 23:12:22 +0000143 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 //
Chris Lattnera4c29d22006-01-13 18:39:17 +0000148 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
149 I != E; ++I)
Chris Lattner5a8932f2002-11-19 23:12:22 +0000150 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 Andersondebcb012009-07-29 22:17:13 +0000154 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
Chris Lattner5a8932f2002-11-19 23:12:22 +0000155 ArgTypes, F->getFunctionType()->isVarArg());
156
157 // Create the new function...
Gabor Greif051a9502008-04-06 20:25:17 +0000158 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName());
Misha Brukmanfd939082005-04-21 23:48:37 +0000159
Chris Lattner5a8932f2002-11-19 23:12:22 +0000160 // Loop over the arguments, copying the names of the mapped arguments over...
Chris Lattnere4d5c442005-03-15 04:54:21 +0000161 Function::arg_iterator DestI = NewF->arg_begin();
Chris Lattnera4c29d22006-01-13 18:39:17 +0000162 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
163 I != E; ++I)
Chris Lattnerc09aab02002-11-20 18:32:31 +0000164 if (ValueMap.count(I) == 0) { // Is this argument preserved?
Chris Lattner5a8932f2002-11-19 23:12:22 +0000165 DestI->setName(I->getName()); // Copy the name over...
Chris Lattnerc09aab02002-11-20 18:32:31 +0000166 ValueMap[I] = DestI++; // Add mapping to ValueMap
Chris Lattner5a8932f2002-11-19 23:12:22 +0000167 }
168
Chris Lattnerec1bea02009-08-27 04:02:30 +0000169 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned.
Chris Lattnera4c29d22006-01-13 18:39:17 +0000170 CloneFunctionInto(NewF, F, ValueMap, Returns, "", CodeInfo);
Misha Brukmanfd939082005-04-21 23:48:37 +0000171 return NewF;
Chris Lattner5a8932f2002-11-19 23:12:22 +0000172}
Brian Gaeked0fde302003-11-11 22:41:34 +0000173
Chris Lattner83f03bf2006-05-27 01:22:24 +0000174
175
176namespace {
177 /// PruningFunctionCloner - This class is a private class used to implement
178 /// the CloneAndPruneFunctionInto method.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000179 struct PruningFunctionCloner {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000180 Function *NewFunc;
181 const Function *OldFunc;
Chris Lattner5e665f52007-02-03 00:08:31 +0000182 DenseMap<const Value*, Value*> &ValueMap;
Chris Lattnerec1bea02009-08-27 04:02:30 +0000183 SmallVectorImpl<ReturnInst*> &Returns;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000184 const char *NameSuffix;
185 ClonedCodeInfo *CodeInfo;
Chris Lattner1dfdf822007-01-30 23:22:39 +0000186 const TargetData *TD;
Devang Patelf66d7b52009-02-10 07:48:18 +0000187 Value *DbgFnStart;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000188 public:
189 PruningFunctionCloner(Function *newFunc, const Function *oldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +0000190 DenseMap<const Value*, Value*> &valueMap,
Chris Lattnerec1bea02009-08-27 04:02:30 +0000191 SmallVectorImpl<ReturnInst*> &returns,
Chris Lattner83f03bf2006-05-27 01:22:24 +0000192 const char *nameSuffix,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000193 ClonedCodeInfo *codeInfo,
194 const TargetData *td)
Chris Lattner83f03bf2006-05-27 01:22:24 +0000195 : NewFunc(newFunc), OldFunc(oldFunc), ValueMap(valueMap), Returns(returns),
Devang Patelf66d7b52009-02-10 07:48:18 +0000196 NameSuffix(nameSuffix), CodeInfo(codeInfo), TD(td), DbgFnStart(NULL) {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000197 }
198
199 /// CloneBlock - The specified block is found to be reachable, clone it and
200 /// anything that it can reach.
Chris Lattner67ef2412007-03-02 03:11:20 +0000201 void CloneBlock(const BasicBlock *BB,
202 std::vector<const BasicBlock*> &ToClone);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000203
204 public:
205 /// ConstantFoldMappedInstruction - Constant fold the specified instruction,
206 /// mapping its operands through ValueMap if they are available.
207 Constant *ConstantFoldMappedInstruction(const Instruction *I);
208 };
209}
210
211/// CloneBlock - The specified block is found to be reachable, clone it and
212/// anything that it can reach.
Chris Lattner67ef2412007-03-02 03:11:20 +0000213void PruningFunctionCloner::CloneBlock(const BasicBlock *BB,
214 std::vector<const BasicBlock*> &ToClone){
Chris Lattner83f03bf2006-05-27 01:22:24 +0000215 Value *&BBEntry = ValueMap[BB];
216
217 // Have we already cloned this block?
218 if (BBEntry) return;
219
220 // Nope, clone it now.
221 BasicBlock *NewBB;
Owen Anderson1d0be152009-08-13 21:58:54 +0000222 BBEntry = NewBB = BasicBlock::Create(BB->getContext());
Chris Lattner83f03bf2006-05-27 01:22:24 +0000223 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
224
225 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
226
227 // Loop over all instructions, and copy them over, DCE'ing as we go. This
228 // loop doesn't include the terminator.
Chris Lattner35033ef2006-06-01 19:19:23 +0000229 for (BasicBlock::const_iterator II = BB->begin(), IE = --BB->end();
Chris Lattner83f03bf2006-05-27 01:22:24 +0000230 II != IE; ++II) {
231 // If this instruction constant folds, don't bother cloning the instruction,
232 // instead, just add the constant to the value map.
233 if (Constant *C = ConstantFoldMappedInstruction(II)) {
234 ValueMap[II] = C;
235 continue;
236 }
Devang Patelf66d7b52009-02-10 07:48:18 +0000237
Devang Patel517576d2009-04-15 00:17:06 +0000238 // Do not clone llvm.dbg.region.end. It will be adjusted by the inliner.
Devang Patelf66d7b52009-02-10 07:48:18 +0000239 if (const DbgFuncStartInst *DFSI = dyn_cast<DbgFuncStartInst>(II)) {
Devang Patel517576d2009-04-15 00:17:06 +0000240 if (DbgFnStart == NULL) {
Devang Patele4b27562009-08-28 23:24:31 +0000241 DISubprogram SP(DFSI->getSubprogram());
Devang Patel517576d2009-04-15 00:17:06 +0000242 if (SP.describes(BB->getParent()))
243 DbgFnStart = DFSI->getSubprogram();
244 }
Devang Patelf66d7b52009-02-10 07:48:18 +0000245 }
246 if (const DbgRegionEndInst *DREIS = dyn_cast<DbgRegionEndInst>(II)) {
247 if (DREIS->getContext() == DbgFnStart)
248 continue;
249 }
250
Nick Lewycky67760642009-09-27 07:38:41 +0000251 Instruction *NewInst = II->clone();
Chris Lattner83f03bf2006-05-27 01:22:24 +0000252 if (II->hasName())
253 NewInst->setName(II->getName()+NameSuffix);
254 NewBB->getInstList().push_back(NewInst);
255 ValueMap[II] = NewInst; // Add instruction map to value.
256
Dale Johannesen8aa90fe2009-03-10 22:20:02 +0000257 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
Chris Lattner83f03bf2006-05-27 01:22:24 +0000258 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
259 if (isa<ConstantInt>(AI->getArraySize()))
260 hasStaticAllocas = true;
261 else
262 hasDynamicAllocas = true;
263 }
264 }
265
Chris Lattner35033ef2006-06-01 19:19:23 +0000266 // Finally, clone over the terminator.
267 const TerminatorInst *OldTI = BB->getTerminator();
268 bool TerminatorDone = false;
269 if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) {
270 if (BI->isConditional()) {
271 // If the condition was a known constant in the callee...
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000272 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
273 // Or is a known constant in the caller...
274 if (Cond == 0)
275 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[BI->getCondition()]);
276
277 // Constant fold to uncond branch!
278 if (Cond) {
Reid Spencer579dca12007-01-12 04:24:46 +0000279 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
Gabor Greif051a9502008-04-06 20:25:17 +0000280 ValueMap[OldTI] = BranchInst::Create(Dest, NewBB);
Chris Lattner67ef2412007-03-02 03:11:20 +0000281 ToClone.push_back(Dest);
Chris Lattner35033ef2006-06-01 19:19:23 +0000282 TerminatorDone = true;
283 }
284 }
285 } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) {
286 // If switching on a value known constant in the caller.
287 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
288 if (Cond == 0) // Or known constant after constant prop in the callee...
289 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[SI->getCondition()]);
290 if (Cond) { // Constant fold to uncond branch!
291 BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond));
Gabor Greif051a9502008-04-06 20:25:17 +0000292 ValueMap[OldTI] = BranchInst::Create(Dest, NewBB);
Chris Lattner67ef2412007-03-02 03:11:20 +0000293 ToClone.push_back(Dest);
Chris Lattner35033ef2006-06-01 19:19:23 +0000294 TerminatorDone = true;
295 }
296 }
297
298 if (!TerminatorDone) {
Nick Lewycky67760642009-09-27 07:38:41 +0000299 Instruction *NewInst = OldTI->clone();
Chris Lattner35033ef2006-06-01 19:19:23 +0000300 if (OldTI->hasName())
301 NewInst->setName(OldTI->getName()+NameSuffix);
302 NewBB->getInstList().push_back(NewInst);
303 ValueMap[OldTI] = NewInst; // Add instruction map to value.
304
305 // Recursively clone any reachable successor blocks.
306 const TerminatorInst *TI = BB->getTerminator();
307 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
Chris Lattner67ef2412007-03-02 03:11:20 +0000308 ToClone.push_back(TI->getSuccessor(i));
Chris Lattner35033ef2006-06-01 19:19:23 +0000309 }
310
Chris Lattner83f03bf2006-05-27 01:22:24 +0000311 if (CodeInfo) {
312 CodeInfo->ContainsCalls |= hasCalls;
Chris Lattner35033ef2006-06-01 19:19:23 +0000313 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(OldTI);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000314 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
315 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
316 BB != &BB->getParent()->front();
317 }
318
319 if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator()))
320 Returns.push_back(RI);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000321}
322
323/// ConstantFoldMappedInstruction - Constant fold the specified instruction,
324/// mapping its operands through ValueMap if they are available.
325Constant *PruningFunctionCloner::
326ConstantFoldMappedInstruction(const Instruction *I) {
Chris Lattner9fa038d2007-01-30 23:13:49 +0000327 SmallVector<Constant*, 8> Ops;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000328 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
329 if (Constant *Op = dyn_cast_or_null<Constant>(MapValue(I->getOperand(i),
Dan Gohman5fa75b02009-10-24 23:37:16 +0000330 ValueMap)))
Chris Lattner83f03bf2006-05-27 01:22:24 +0000331 Ops.push_back(Op);
332 else
333 return 0; // All operands not constant!
334
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000335 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
Chris Lattner8f73dea2009-11-09 23:06:58 +0000336 return ConstantFoldCompareInstOperands(CI->getPredicate(), Ops[0], Ops[1],
337 TD);
Nate Begeman4be30ac2008-04-25 06:37:06 +0000338
Nate Begeman4182db42008-04-25 17:45:52 +0000339 if (const LoadInst *LI = dyn_cast<LoadInst>(I))
340 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0]))
Nate Begeman4be30ac2008-04-25 06:37:06 +0000341 if (!LI->isVolatile() && CE->getOpcode() == Instruction::GetElementPtr)
342 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
Duncan Sands64da9402009-03-21 21:27:31 +0000343 if (GV->isConstant() && GV->hasDefinitiveInitializer())
Nate Begeman4be30ac2008-04-25 06:37:06 +0000344 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(),
Dan Gohmanc6f69e92009-10-05 16:36:26 +0000345 CE);
Nate Begeman4be30ac2008-04-25 06:37:06 +0000346
347 return ConstantFoldInstOperands(I->getOpcode(), I->getType(), &Ops[0],
Chris Lattner7b550cc2009-11-06 04:27:31 +0000348 Ops.size(), TD);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000349}
350
Chris Lattner101e2ca2009-12-29 08:03:58 +0000351static MDNode *UpdateInlinedAtInfo(MDNode *InsnMD, MDNode *TheCallMD) {
Devang Patel53bb5c92009-11-10 23:06:00 +0000352 DILocation ILoc(InsnMD);
353 if (ILoc.isNull()) return InsnMD;
354
355 DILocation CallLoc(TheCallMD);
356 if (CallLoc.isNull()) return InsnMD;
357
358 DILocation OrigLocation = ILoc.getOrigLocation();
359 MDNode *NewLoc = TheCallMD;
360 if (!OrigLocation.isNull())
Chris Lattner101e2ca2009-12-29 08:03:58 +0000361 NewLoc = UpdateInlinedAtInfo(OrigLocation.getNode(), TheCallMD);
Devang Patel53bb5c92009-11-10 23:06:00 +0000362
Benjamin Kramerfda08e12009-12-29 11:04:52 +0000363 Value *MDVs[] = {
Chris Lattner5d0cacd2009-12-31 01:22:29 +0000364 InsnMD->getOperand(0), // Line
365 InsnMD->getOperand(1), // Col
366 InsnMD->getOperand(2), // Scope
Benjamin Kramerfda08e12009-12-29 11:04:52 +0000367 NewLoc
368 };
369 return MDNode::get(InsnMD->getContext(), MDVs, 4);
Devang Patel53bb5c92009-11-10 23:06:00 +0000370}
371
Chris Lattner83f03bf2006-05-27 01:22:24 +0000372/// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto,
373/// except that it does some simple constant prop and DCE on the fly. The
374/// effect of this is to copy significantly less code in cases where (for
375/// example) a function call with constant arguments is inlined, and those
376/// constant arguments cause a significant amount of code in the callee to be
Duncan Sandsdc024672007-11-27 13:23:08 +0000377/// dead. Since this doesn't produce an exact copy of the input, it can't be
Chris Lattner83f03bf2006-05-27 01:22:24 +0000378/// used for things like CloneFunction or CloneModule.
379void llvm::CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +0000380 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnerec1bea02009-08-27 04:02:30 +0000381 SmallVectorImpl<ReturnInst*> &Returns,
Chris Lattner83f03bf2006-05-27 01:22:24 +0000382 const char *NameSuffix,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000383 ClonedCodeInfo *CodeInfo,
Devang Patel53bb5c92009-11-10 23:06:00 +0000384 const TargetData *TD,
385 Instruction *TheCall) {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000386 assert(NameSuffix && "NameSuffix cannot be null!");
387
388#ifndef NDEBUG
Jeff Cohend41b30d2006-11-05 19:31:28 +0000389 for (Function::const_arg_iterator II = OldFunc->arg_begin(),
390 E = OldFunc->arg_end(); II != E; ++II)
391 assert(ValueMap.count(II) && "No mapping from source argument specified!");
Chris Lattner83f03bf2006-05-27 01:22:24 +0000392#endif
Duncan Sands28c3cff2008-05-26 19:58:59 +0000393
394 PruningFunctionCloner PFC(NewFunc, OldFunc, ValueMap, Returns,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000395 NameSuffix, CodeInfo, TD);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000396
397 // Clone the entry block, and anything recursively reachable from it.
Chris Lattner67ef2412007-03-02 03:11:20 +0000398 std::vector<const BasicBlock*> CloneWorklist;
399 CloneWorklist.push_back(&OldFunc->getEntryBlock());
400 while (!CloneWorklist.empty()) {
401 const BasicBlock *BB = CloneWorklist.back();
402 CloneWorklist.pop_back();
403 PFC.CloneBlock(BB, CloneWorklist);
404 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000405
406 // Loop over all of the basic blocks in the old function. If the block was
407 // reachable, we have cloned it and the old block is now in the value map:
408 // insert it into the new function in the right order. If not, ignore it.
409 //
Chris Lattner35033ef2006-06-01 19:19:23 +0000410 // Defer PHI resolution until rest of function is resolved.
Chris Lattnerec1bea02009-08-27 04:02:30 +0000411 SmallVector<const PHINode*, 16> PHIToResolve;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000412 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
413 BI != BE; ++BI) {
414 BasicBlock *NewBB = cast_or_null<BasicBlock>(ValueMap[BI]);
415 if (NewBB == 0) continue; // Dead block.
Chris Lattner35033ef2006-06-01 19:19:23 +0000416
Chris Lattner83f03bf2006-05-27 01:22:24 +0000417 // Add the new block to the new function.
418 NewFunc->getBasicBlockList().push_back(NewBB);
419
420 // Loop over all of the instructions in the block, fixing up operand
421 // references as we go. This uses ValueMap to do all the hard work.
422 //
423 BasicBlock::iterator I = NewBB->begin();
Devang Patel53bb5c92009-11-10 23:06:00 +0000424
Chris Lattner08113472009-12-29 09:01:33 +0000425 unsigned DbgKind = OldFunc->getContext().getMDKindID("dbg");
Devang Patel53bb5c92009-11-10 23:06:00 +0000426 MDNode *TheCallMD = NULL;
Devang Patel53bb5c92009-11-10 23:06:00 +0000427 if (TheCall && TheCall->hasMetadata())
Chris Lattner3990b122009-12-28 23:41:32 +0000428 TheCallMD = TheCall->getMetadata(DbgKind);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000429
430 // Handle PHI nodes specially, as we have to remove references to dead
431 // blocks.
432 if (PHINode *PN = dyn_cast<PHINode>(I)) {
Chris Lattner35033ef2006-06-01 19:19:23 +0000433 // Skip over all PHI nodes, remembering them for later.
434 BasicBlock::const_iterator OldI = BI->begin();
Devang Patel53bb5c92009-11-10 23:06:00 +0000435 for (; (PN = dyn_cast<PHINode>(I)); ++I, ++OldI) {
Daniel Dunbardfa92612009-11-12 02:52:56 +0000436 if (I->hasMetadata()) {
Devang Patel53bb5c92009-11-10 23:06:00 +0000437 if (TheCallMD) {
Chris Lattner3990b122009-12-28 23:41:32 +0000438 if (MDNode *IMD = I->getMetadata(DbgKind)) {
Chris Lattner101e2ca2009-12-29 08:03:58 +0000439 MDNode *NewMD = UpdateInlinedAtInfo(IMD, TheCallMD);
Chris Lattner3990b122009-12-28 23:41:32 +0000440 I->setMetadata(DbgKind, NewMD);
Devang Patel53bb5c92009-11-10 23:06:00 +0000441 }
Daniel Dunbardfa92612009-11-12 02:52:56 +0000442 } else {
Devang Patel53bb5c92009-11-10 23:06:00 +0000443 // The cloned instruction has dbg info but the call instruction
444 // does not have dbg info. Remove dbg info from cloned instruction.
Chris Lattner3990b122009-12-28 23:41:32 +0000445 I->setMetadata(DbgKind, 0);
Daniel Dunbardfa92612009-11-12 02:52:56 +0000446 }
447 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000448 PHIToResolve.push_back(cast<PHINode>(OldI));
Devang Patel53bb5c92009-11-10 23:06:00 +0000449 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000450 }
451
Chris Lattner3990b122009-12-28 23:41:32 +0000452 // FIXME:
453 // FIXME:
454 // FIXME: Unclone all this metadata stuff.
455 // FIXME:
456 // FIXME:
457
Chris Lattner83f03bf2006-05-27 01:22:24 +0000458 // Otherwise, remap the rest of the instructions normally.
Devang Patel53bb5c92009-11-10 23:06:00 +0000459 for (; I != NewBB->end(); ++I) {
Daniel Dunbardfa92612009-11-12 02:52:56 +0000460 if (I->hasMetadata()) {
Devang Patel53bb5c92009-11-10 23:06:00 +0000461 if (TheCallMD) {
Chris Lattner3990b122009-12-28 23:41:32 +0000462 if (MDNode *IMD = I->getMetadata(DbgKind)) {
Chris Lattner101e2ca2009-12-29 08:03:58 +0000463 MDNode *NewMD = UpdateInlinedAtInfo(IMD, TheCallMD);
Chris Lattner3990b122009-12-28 23:41:32 +0000464 I->setMetadata(DbgKind, NewMD);
Devang Patel53bb5c92009-11-10 23:06:00 +0000465 }
Daniel Dunbardfa92612009-11-12 02:52:56 +0000466 } else {
Devang Patel53bb5c92009-11-10 23:06:00 +0000467 // The cloned instruction has dbg info but the call instruction
468 // does not have dbg info. Remove dbg info from cloned instruction.
Chris Lattner3990b122009-12-28 23:41:32 +0000469 I->setMetadata(DbgKind, 0);
Daniel Dunbardfa92612009-11-12 02:52:56 +0000470 }
471 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000472 RemapInstruction(I, ValueMap);
Devang Patel53bb5c92009-11-10 23:06:00 +0000473 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000474 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000475
476 // Defer PHI resolution until rest of function is resolved, PHI resolution
477 // requires the CFG to be up-to-date.
478 for (unsigned phino = 0, e = PHIToResolve.size(); phino != e; ) {
479 const PHINode *OPN = PHIToResolve[phino];
Chris Lattner35033ef2006-06-01 19:19:23 +0000480 unsigned NumPreds = OPN->getNumIncomingValues();
Chris Lattner35033ef2006-06-01 19:19:23 +0000481 const BasicBlock *OldBB = OPN->getParent();
482 BasicBlock *NewBB = cast<BasicBlock>(ValueMap[OldBB]);
483
484 // Map operands for blocks that are live and remove operands for blocks
485 // that are dead.
486 for (; phino != PHIToResolve.size() &&
487 PHIToResolve[phino]->getParent() == OldBB; ++phino) {
488 OPN = PHIToResolve[phino];
489 PHINode *PN = cast<PHINode>(ValueMap[OPN]);
490 for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) {
491 if (BasicBlock *MappedBlock =
492 cast_or_null<BasicBlock>(ValueMap[PN->getIncomingBlock(pred)])) {
Owen Anderson0a205a42009-07-05 22:41:43 +0000493 Value *InVal = MapValue(PN->getIncomingValue(pred),
Dan Gohman5fa75b02009-10-24 23:37:16 +0000494 ValueMap);
Chris Lattner35033ef2006-06-01 19:19:23 +0000495 assert(InVal && "Unknown input value?");
496 PN->setIncomingValue(pred, InVal);
497 PN->setIncomingBlock(pred, MappedBlock);
498 } else {
499 PN->removeIncomingValue(pred, false);
500 --pred, --e; // Revisit the next entry.
501 }
502 }
503 }
504
505 // The loop above has removed PHI entries for those blocks that are dead
506 // and has updated others. However, if a block is live (i.e. copied over)
507 // but its terminator has been changed to not go to this block, then our
508 // phi nodes will have invalid entries. Update the PHI nodes in this
509 // case.
510 PHINode *PN = cast<PHINode>(NewBB->begin());
511 NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB));
512 if (NumPreds != PN->getNumIncomingValues()) {
513 assert(NumPreds < PN->getNumIncomingValues());
514 // Count how many times each predecessor comes to this block.
515 std::map<BasicBlock*, unsigned> PredCount;
516 for (pred_iterator PI = pred_begin(NewBB), E = pred_end(NewBB);
517 PI != E; ++PI)
518 --PredCount[*PI];
519
520 // Figure out how many entries to remove from each PHI.
521 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
522 ++PredCount[PN->getIncomingBlock(i)];
523
524 // At this point, the excess predecessor entries are positive in the
525 // map. Loop over all of the PHIs and remove excess predecessor
526 // entries.
527 BasicBlock::iterator I = NewBB->begin();
528 for (; (PN = dyn_cast<PHINode>(I)); ++I) {
529 for (std::map<BasicBlock*, unsigned>::iterator PCI =PredCount.begin(),
530 E = PredCount.end(); PCI != E; ++PCI) {
531 BasicBlock *Pred = PCI->first;
532 for (unsigned NumToRemove = PCI->second; NumToRemove; --NumToRemove)
533 PN->removeIncomingValue(Pred, false);
534 }
535 }
536 }
537
538 // If the loops above have made these phi nodes have 0 or 1 operand,
539 // replace them with undef or the input value. We must do this for
540 // correctness, because 0-operand phis are not valid.
541 PN = cast<PHINode>(NewBB->begin());
542 if (PN->getNumIncomingValues() == 0) {
543 BasicBlock::iterator I = NewBB->begin();
544 BasicBlock::const_iterator OldI = OldBB->begin();
545 while ((PN = dyn_cast<PHINode>(I++))) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000546 Value *NV = UndefValue::get(PN->getType());
Chris Lattner35033ef2006-06-01 19:19:23 +0000547 PN->replaceAllUsesWith(NV);
548 assert(ValueMap[OldI] == PN && "ValueMap mismatch");
549 ValueMap[OldI] = NV;
550 PN->eraseFromParent();
551 ++OldI;
552 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000553 }
Chris Lattner8e8eda72007-02-01 18:48:38 +0000554 // NOTE: We cannot eliminate single entry phi nodes here, because of
555 // ValueMap. Single entry phi nodes can have multiple ValueMap entries
556 // pointing at them. Thus, deleting one would require scanning the ValueMap
557 // to update any entries in it that would require that. This would be
558 // really slow.
Chris Lattner35033ef2006-06-01 19:19:23 +0000559 }
Chris Lattnera4646b62006-09-13 21:27:00 +0000560
561 // Now that the inlined function body has been fully constructed, go through
562 // and zap unconditional fall-through branches. This happen all the time when
563 // specializing code: code specialization turns conditional branches into
564 // uncond branches, and this code folds them.
565 Function::iterator I = cast<BasicBlock>(ValueMap[&OldFunc->getEntryBlock()]);
566 while (I != NewFunc->end()) {
567 BranchInst *BI = dyn_cast<BranchInst>(I->getTerminator());
568 if (!BI || BI->isConditional()) { ++I; continue; }
569
Chris Lattner8e8eda72007-02-01 18:48:38 +0000570 // Note that we can't eliminate uncond branches if the destination has
571 // single-entry PHI nodes. Eliminating the single-entry phi nodes would
572 // require scanning the ValueMap to update any entries that point to the phi
573 // node.
Chris Lattnera4646b62006-09-13 21:27:00 +0000574 BasicBlock *Dest = BI->getSuccessor(0);
Chris Lattner8e8eda72007-02-01 18:48:38 +0000575 if (!Dest->getSinglePredecessor() || isa<PHINode>(Dest->begin())) {
576 ++I; continue;
577 }
Chris Lattnera4646b62006-09-13 21:27:00 +0000578
579 // We know all single-entry PHI nodes in the inlined function have been
580 // removed, so we just need to splice the blocks.
581 BI->eraseFromParent();
582
583 // Move all the instructions in the succ to the pred.
584 I->getInstList().splice(I->end(), Dest->getInstList());
585
586 // Make all PHI nodes that referred to Dest now refer to I as their source.
587 Dest->replaceAllUsesWith(I);
588
589 // Remove the dest block.
590 Dest->eraseFromParent();
591
592 // Do not increment I, iteratively merge all things this block branches to.
593 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000594}