blob: 038e7ba08acd8a009b4a80982f5f5498060a0e5e [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 Lattner35033ef2006-06-01 19:19:23 +000024#include "llvm/Support/CFG.h"
Anton Korobeynikov344ef192007-11-09 12:27:04 +000025#include "llvm/Transforms/Utils/ValueMapper.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000026#include "llvm/Analysis/ConstantFolding.h"
Devang Patel517576d2009-04-15 00:17:06 +000027#include "llvm/Analysis/DebugInfo.h"
Chris Lattner9fa038d2007-01-30 23:13:49 +000028#include "llvm/ADT/SmallVector.h"
Chris Lattner5e665f52007-02-03 00:08:31 +000029#include <map>
Chris Lattnerf7703df2004-01-09 06:12:26 +000030using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000031
Chris Lattner17d145d2003-04-18 03:50:09 +000032// CloneBasicBlock - See comments in Cloning.h
Chris Lattnerf7703df2004-01-09 06:12:26 +000033BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB,
Chris Lattner5e665f52007-02-03 00:08:31 +000034 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnera4c29d22006-01-13 18:39:17 +000035 const char *NameSuffix, Function *F,
36 ClonedCodeInfo *CodeInfo) {
Owen Anderson1d0be152009-08-13 21:58:54 +000037 BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), "", F);
Chris Lattner17d145d2003-04-18 03:50:09 +000038 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
39
Chris Lattnera4c29d22006-01-13 18:39:17 +000040 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
41
42 // Loop over all instructions, and copy them over.
Chris Lattner17d145d2003-04-18 03:50:09 +000043 for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();
44 II != IE; ++II) {
Nick Lewycky67760642009-09-27 07:38:41 +000045 Instruction *NewInst = II->clone();
Chris Lattner17d145d2003-04-18 03:50:09 +000046 if (II->hasName())
47 NewInst->setName(II->getName()+NameSuffix);
48 NewBB->getInstList().push_back(NewInst);
49 ValueMap[II] = NewInst; // Add instruction map to value.
Chris Lattnera4c29d22006-01-13 18:39:17 +000050
Dale Johannesen8aa90fe2009-03-10 22:20:02 +000051 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
Chris Lattnera4c29d22006-01-13 18:39:17 +000052 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
53 if (isa<ConstantInt>(AI->getArraySize()))
54 hasStaticAllocas = true;
55 else
56 hasDynamicAllocas = true;
57 }
58 }
59
60 if (CodeInfo) {
61 CodeInfo->ContainsCalls |= hasCalls;
62 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(BB->getTerminator());
63 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
64 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
Dan Gohmanecb7a772007-03-22 16:38:57 +000065 BB != &BB->getParent()->getEntryBlock();
Chris Lattner17d145d2003-04-18 03:50:09 +000066 }
67 return NewBB;
68}
69
Chris Lattnerfa703a42002-03-29 19:03:54 +000070// Clone OldFunc into NewFunc, transforming the old arguments into references to
71// ArgMap values.
72//
Chris Lattnerf7703df2004-01-09 06:12:26 +000073void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +000074 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnerec1bea02009-08-27 04:02:30 +000075 SmallVectorImpl<ReturnInst*> &Returns,
Chris Lattnera4c29d22006-01-13 18:39:17 +000076 const char *NameSuffix, ClonedCodeInfo *CodeInfo) {
Chris Lattnerdcd80402002-11-19 21:54:07 +000077 assert(NameSuffix && "NameSuffix cannot be null!");
Misha Brukmanfd939082005-04-21 23:48:37 +000078
Chris Lattnerd1801552002-11-19 22:54:01 +000079#ifndef NDEBUG
Chris Lattnera4c29d22006-01-13 18:39:17 +000080 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
81 E = OldFunc->arg_end(); I != E; ++I)
Chris Lattnerd1801552002-11-19 22:54:01 +000082 assert(ValueMap.count(I) && "No mapping from source argument specified!");
83#endif
Chris Lattnerfa703a42002-03-29 19:03:54 +000084
Duncan Sands28c3cff2008-05-26 19:58:59 +000085 // Clone any attributes.
Andrew Lenharth82cf32e2008-10-07 18:08:38 +000086 if (NewFunc->arg_size() == OldFunc->arg_size())
87 NewFunc->copyAttributesFrom(OldFunc);
88 else {
89 //Some arguments were deleted with the ValueMap. Copy arguments one by one
90 for (Function::const_arg_iterator I = OldFunc->arg_begin(),
91 E = OldFunc->arg_end(); I != E; ++I)
92 if (Argument* Anew = dyn_cast<Argument>(ValueMap[I]))
93 Anew->addAttr( OldFunc->getAttributes()
94 .getParamAttributes(I->getArgNo() + 1));
95 NewFunc->setAttributes(NewFunc->getAttributes()
96 .addAttr(0, OldFunc->getAttributes()
97 .getRetAttributes()));
98 NewFunc->setAttributes(NewFunc->getAttributes()
99 .addAttr(~0, OldFunc->getAttributes()
100 .getFnAttributes()));
101
102 }
Anton Korobeynikov9e49f1b2008-03-23 16:03:00 +0000103
Chris Lattnerfa703a42002-03-29 19:03:54 +0000104 // Loop over all of the basic blocks in the function, cloning them as
Chris Lattnerdcd80402002-11-19 21:54:07 +0000105 // appropriate. Note that we save BE this way in order to handle cloning of
106 // recursive functions into themselves.
Chris Lattnerfa703a42002-03-29 19:03:54 +0000107 //
108 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
109 BI != BE; ++BI) {
Chris Lattner18961502002-06-25 16:12:52 +0000110 const BasicBlock &BB = *BI;
Misha Brukmanfd939082005-04-21 23:48:37 +0000111
Chris Lattner17d145d2003-04-18 03:50:09 +0000112 // Create a new basic block and copy instructions into it!
Chris Lattnera4c29d22006-01-13 18:39:17 +0000113 BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc,
114 CodeInfo);
Chris Lattner18961502002-06-25 16:12:52 +0000115 ValueMap[&BB] = CBB; // Add basic block mapping.
Chris Lattnerfa703a42002-03-29 19:03:54 +0000116
Chris Lattnerdcd80402002-11-19 21:54:07 +0000117 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
118 Returns.push_back(RI);
Chris Lattnerfa703a42002-03-29 19:03:54 +0000119 }
120
Misha Brukmanfd939082005-04-21 23:48:37 +0000121 // Loop over all of the instructions in the function, fixing up operand
Chris Lattnerfa703a42002-03-29 19:03:54 +0000122 // references as we go. This uses ValueMap to do all the hard work.
123 //
Chris Lattnera33ceaa2004-02-04 21:44:26 +0000124 for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]),
Nick Lewycky280a6e62008-04-25 16:53:59 +0000125 BE = NewFunc->end(); BB != BE; ++BB)
Chris Lattnerfa703a42002-03-29 19:03:54 +0000126 // Loop over all instructions, fixing each one as we find it...
Chris Lattnera33ceaa2004-02-04 21:44:26 +0000127 for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II)
Chris Lattner18961502002-06-25 16:12:52 +0000128 RemapInstruction(II, ValueMap);
Chris Lattnerfa703a42002-03-29 19:03:54 +0000129}
Chris Lattner5a8932f2002-11-19 23:12:22 +0000130
131/// CloneFunction - Return a copy of the specified function, but without
132/// embedding the function into another module. Also, any references specified
133/// in the ValueMap are changed to refer to their mapped value instead of the
134/// original one. If any of the arguments to the function are in the ValueMap,
135/// the arguments are deleted from the resultant function. The ValueMap is
136/// updated to include mappings from all of the instructions and basicblocks in
137/// the function from their old to new values.
138///
Chris Lattnerf7703df2004-01-09 06:12:26 +0000139Function *llvm::CloneFunction(const Function *F,
Chris Lattner5e665f52007-02-03 00:08:31 +0000140 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnera4c29d22006-01-13 18:39:17 +0000141 ClonedCodeInfo *CodeInfo) {
Chris Lattner5a8932f2002-11-19 23:12:22 +0000142 std::vector<const Type*> ArgTypes;
143
144 // The user might be deleting arguments to the function by specifying them in
145 // the ValueMap. If so, we need to not add the arguments to the arg ty vector
146 //
Chris Lattnera4c29d22006-01-13 18:39:17 +0000147 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
148 I != E; ++I)
Chris Lattner5a8932f2002-11-19 23:12:22 +0000149 if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet?
150 ArgTypes.push_back(I->getType());
151
152 // Create a new function type...
Owen Andersondebcb012009-07-29 22:17:13 +0000153 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
Chris Lattner5a8932f2002-11-19 23:12:22 +0000154 ArgTypes, F->getFunctionType()->isVarArg());
155
156 // Create the new function...
Gabor Greif051a9502008-04-06 20:25:17 +0000157 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName());
Misha Brukmanfd939082005-04-21 23:48:37 +0000158
Chris Lattner5a8932f2002-11-19 23:12:22 +0000159 // Loop over the arguments, copying the names of the mapped arguments over...
Chris Lattnere4d5c442005-03-15 04:54:21 +0000160 Function::arg_iterator DestI = NewF->arg_begin();
Chris Lattnera4c29d22006-01-13 18:39:17 +0000161 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
162 I != E; ++I)
Chris Lattnerc09aab02002-11-20 18:32:31 +0000163 if (ValueMap.count(I) == 0) { // Is this argument preserved?
Chris Lattner5a8932f2002-11-19 23:12:22 +0000164 DestI->setName(I->getName()); // Copy the name over...
Chris Lattnerc09aab02002-11-20 18:32:31 +0000165 ValueMap[I] = DestI++; // Add mapping to ValueMap
Chris Lattner5a8932f2002-11-19 23:12:22 +0000166 }
167
Chris Lattnerec1bea02009-08-27 04:02:30 +0000168 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned.
Chris Lattnera4c29d22006-01-13 18:39:17 +0000169 CloneFunctionInto(NewF, F, ValueMap, Returns, "", CodeInfo);
Misha Brukmanfd939082005-04-21 23:48:37 +0000170 return NewF;
Chris Lattner5a8932f2002-11-19 23:12:22 +0000171}
Brian Gaeked0fde302003-11-11 22:41:34 +0000172
Chris Lattner83f03bf2006-05-27 01:22:24 +0000173
174
175namespace {
176 /// PruningFunctionCloner - This class is a private class used to implement
177 /// the CloneAndPruneFunctionInto method.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000178 struct PruningFunctionCloner {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000179 Function *NewFunc;
180 const Function *OldFunc;
Chris Lattner5e665f52007-02-03 00:08:31 +0000181 DenseMap<const Value*, Value*> &ValueMap;
Chris Lattnerec1bea02009-08-27 04:02:30 +0000182 SmallVectorImpl<ReturnInst*> &Returns;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000183 const char *NameSuffix;
184 ClonedCodeInfo *CodeInfo;
Chris Lattner1dfdf822007-01-30 23:22:39 +0000185 const TargetData *TD;
Devang Patelf66d7b52009-02-10 07:48:18 +0000186 Value *DbgFnStart;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000187 public:
188 PruningFunctionCloner(Function *newFunc, const Function *oldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +0000189 DenseMap<const Value*, Value*> &valueMap,
Chris Lattnerec1bea02009-08-27 04:02:30 +0000190 SmallVectorImpl<ReturnInst*> &returns,
Chris Lattner83f03bf2006-05-27 01:22:24 +0000191 const char *nameSuffix,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000192 ClonedCodeInfo *codeInfo,
193 const TargetData *td)
Chris Lattner83f03bf2006-05-27 01:22:24 +0000194 : NewFunc(newFunc), OldFunc(oldFunc), ValueMap(valueMap), Returns(returns),
Devang Patelf66d7b52009-02-10 07:48:18 +0000195 NameSuffix(nameSuffix), CodeInfo(codeInfo), TD(td), DbgFnStart(NULL) {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000196 }
197
198 /// CloneBlock - The specified block is found to be reachable, clone it and
199 /// anything that it can reach.
Chris Lattner67ef2412007-03-02 03:11:20 +0000200 void CloneBlock(const BasicBlock *BB,
201 std::vector<const BasicBlock*> &ToClone);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000202
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.
Chris Lattner67ef2412007-03-02 03:11:20 +0000212void PruningFunctionCloner::CloneBlock(const BasicBlock *BB,
213 std::vector<const BasicBlock*> &ToClone){
Chris Lattner83f03bf2006-05-27 01:22:24 +0000214 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 Anderson1d0be152009-08-13 21:58:54 +0000221 BBEntry = NewBB = BasicBlock::Create(BB->getContext());
Chris Lattner83f03bf2006-05-27 01:22:24 +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.
Chris Lattner35033ef2006-06-01 19:19:23 +0000228 for (BasicBlock::const_iterator II = BB->begin(), IE = --BB->end();
Chris Lattner83f03bf2006-05-27 01:22:24 +0000229 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 Patelf66d7b52009-02-10 07:48:18 +0000236
Devang Patel517576d2009-04-15 00:17:06 +0000237 // Do not clone llvm.dbg.region.end. It will be adjusted by the inliner.
Devang Patelf66d7b52009-02-10 07:48:18 +0000238 if (const DbgFuncStartInst *DFSI = dyn_cast<DbgFuncStartInst>(II)) {
Devang Patel517576d2009-04-15 00:17:06 +0000239 if (DbgFnStart == NULL) {
Devang Patele4b27562009-08-28 23:24:31 +0000240 DISubprogram SP(DFSI->getSubprogram());
Devang Patel517576d2009-04-15 00:17:06 +0000241 if (SP.describes(BB->getParent()))
242 DbgFnStart = DFSI->getSubprogram();
243 }
Devang Patelf66d7b52009-02-10 07:48:18 +0000244 }
245 if (const DbgRegionEndInst *DREIS = dyn_cast<DbgRegionEndInst>(II)) {
246 if (DREIS->getContext() == DbgFnStart)
247 continue;
248 }
249
Nick Lewycky67760642009-09-27 07:38:41 +0000250 Instruction *NewInst = II->clone();
Chris Lattner83f03bf2006-05-27 01:22:24 +0000251 if (II->hasName())
252 NewInst->setName(II->getName()+NameSuffix);
253 NewBB->getInstList().push_back(NewInst);
254 ValueMap[II] = NewInst; // Add instruction map to value.
255
Dale Johannesen8aa90fe2009-03-10 22:20:02 +0000256 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
Chris Lattner83f03bf2006-05-27 01:22:24 +0000257 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
258 if (isa<ConstantInt>(AI->getArraySize()))
259 hasStaticAllocas = true;
260 else
261 hasDynamicAllocas = true;
262 }
263 }
264
Chris Lattner35033ef2006-06-01 19:19:23 +0000265 // Finally, clone over the terminator.
266 const TerminatorInst *OldTI = BB->getTerminator();
267 bool TerminatorDone = false;
268 if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) {
269 if (BI->isConditional()) {
270 // If the condition was a known constant in the callee...
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000271 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
272 // Or is a known constant in the caller...
273 if (Cond == 0)
274 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[BI->getCondition()]);
275
276 // Constant fold to uncond branch!
277 if (Cond) {
Reid Spencer579dca12007-01-12 04:24:46 +0000278 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
Gabor Greif051a9502008-04-06 20:25:17 +0000279 ValueMap[OldTI] = BranchInst::Create(Dest, NewBB);
Chris Lattner67ef2412007-03-02 03:11:20 +0000280 ToClone.push_back(Dest);
Chris Lattner35033ef2006-06-01 19:19:23 +0000281 TerminatorDone = true;
282 }
283 }
284 } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) {
285 // If switching on a value known constant in the caller.
286 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
287 if (Cond == 0) // Or known constant after constant prop in the callee...
288 Cond = dyn_cast_or_null<ConstantInt>(ValueMap[SI->getCondition()]);
289 if (Cond) { // Constant fold to uncond branch!
290 BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond));
Gabor Greif051a9502008-04-06 20:25:17 +0000291 ValueMap[OldTI] = BranchInst::Create(Dest, NewBB);
Chris Lattner67ef2412007-03-02 03:11:20 +0000292 ToClone.push_back(Dest);
Chris Lattner35033ef2006-06-01 19:19:23 +0000293 TerminatorDone = true;
294 }
295 }
296
297 if (!TerminatorDone) {
Nick Lewycky67760642009-09-27 07:38:41 +0000298 Instruction *NewInst = OldTI->clone();
Chris Lattner35033ef2006-06-01 19:19:23 +0000299 if (OldTI->hasName())
300 NewInst->setName(OldTI->getName()+NameSuffix);
301 NewBB->getInstList().push_back(NewInst);
302 ValueMap[OldTI] = NewInst; // Add instruction map to value.
303
304 // Recursively clone any reachable successor blocks.
305 const TerminatorInst *TI = BB->getTerminator();
306 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
Chris Lattner67ef2412007-03-02 03:11:20 +0000307 ToClone.push_back(TI->getSuccessor(i));
Chris Lattner35033ef2006-06-01 19:19:23 +0000308 }
309
Chris Lattner83f03bf2006-05-27 01:22:24 +0000310 if (CodeInfo) {
311 CodeInfo->ContainsCalls |= hasCalls;
Chris Lattner35033ef2006-06-01 19:19:23 +0000312 CodeInfo->ContainsUnwinds |= isa<UnwindInst>(OldTI);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000313 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas;
314 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas &&
315 BB != &BB->getParent()->front();
316 }
317
318 if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator()))
319 Returns.push_back(RI);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000320}
321
322/// ConstantFoldMappedInstruction - Constant fold the specified instruction,
323/// mapping its operands through ValueMap if they are available.
324Constant *PruningFunctionCloner::
325ConstantFoldMappedInstruction(const Instruction *I) {
Chris Lattner9fa038d2007-01-30 23:13:49 +0000326 SmallVector<Constant*, 8> Ops;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000327 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
328 if (Constant *Op = dyn_cast_or_null<Constant>(MapValue(I->getOperand(i),
Dan Gohman5fa75b02009-10-24 23:37:16 +0000329 ValueMap)))
Chris Lattner83f03bf2006-05-27 01:22:24 +0000330 Ops.push_back(Op);
331 else
332 return 0; // All operands not constant!
333
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000334 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
Chris Lattner8f73dea2009-11-09 23:06:58 +0000335 return ConstantFoldCompareInstOperands(CI->getPredicate(), Ops[0], Ops[1],
336 TD);
Nate Begeman4be30ac2008-04-25 06:37:06 +0000337
Nate Begeman4182db42008-04-25 17:45:52 +0000338 if (const LoadInst *LI = dyn_cast<LoadInst>(I))
339 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0]))
Nate Begeman4be30ac2008-04-25 06:37:06 +0000340 if (!LI->isVolatile() && CE->getOpcode() == Instruction::GetElementPtr)
341 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
Duncan Sands64da9402009-03-21 21:27:31 +0000342 if (GV->isConstant() && GV->hasDefinitiveInitializer())
Nate Begeman4be30ac2008-04-25 06:37:06 +0000343 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(),
Dan Gohmanc6f69e92009-10-05 16:36:26 +0000344 CE);
Nate Begeman4be30ac2008-04-25 06:37:06 +0000345
346 return ConstantFoldInstOperands(I->getOpcode(), I->getType(), &Ops[0],
Chris Lattner7b550cc2009-11-06 04:27:31 +0000347 Ops.size(), TD);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000348}
349
Chris Lattner101e2ca2009-12-29 08:03:58 +0000350static MDNode *UpdateInlinedAtInfo(MDNode *InsnMD, MDNode *TheCallMD) {
Devang Patel53bb5c92009-11-10 23:06:00 +0000351 DILocation ILoc(InsnMD);
352 if (ILoc.isNull()) return InsnMD;
353
354 DILocation CallLoc(TheCallMD);
355 if (CallLoc.isNull()) return InsnMD;
356
357 DILocation OrigLocation = ILoc.getOrigLocation();
358 MDNode *NewLoc = TheCallMD;
359 if (!OrigLocation.isNull())
Chris Lattner101e2ca2009-12-29 08:03:58 +0000360 NewLoc = UpdateInlinedAtInfo(OrigLocation.getNode(), TheCallMD);
Devang Patel53bb5c92009-11-10 23:06:00 +0000361
362 SmallVector<Value *, 4> MDVs;
363 MDVs.push_back(InsnMD->getElement(0)); // Line
364 MDVs.push_back(InsnMD->getElement(1)); // Col
365 MDVs.push_back(InsnMD->getElement(2)); // Scope
366 MDVs.push_back(NewLoc);
Chris Lattner101e2ca2009-12-29 08:03:58 +0000367 return MDNode::get(InsnMD->getContext(), MDVs.data(), MDVs.size());
Devang Patel53bb5c92009-11-10 23:06:00 +0000368}
369
Chris Lattner83f03bf2006-05-27 01:22:24 +0000370/// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto,
371/// except that it does some simple constant prop and DCE on the fly. The
372/// effect of this is to copy significantly less code in cases where (for
373/// example) a function call with constant arguments is inlined, and those
374/// constant arguments cause a significant amount of code in the callee to be
Duncan Sandsdc024672007-11-27 13:23:08 +0000375/// dead. Since this doesn't produce an exact copy of the input, it can't be
Chris Lattner83f03bf2006-05-27 01:22:24 +0000376/// used for things like CloneFunction or CloneModule.
377void llvm::CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc,
Chris Lattner5e665f52007-02-03 00:08:31 +0000378 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattnerec1bea02009-08-27 04:02:30 +0000379 SmallVectorImpl<ReturnInst*> &Returns,
Chris Lattner83f03bf2006-05-27 01:22:24 +0000380 const char *NameSuffix,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000381 ClonedCodeInfo *CodeInfo,
Devang Patel53bb5c92009-11-10 23:06:00 +0000382 const TargetData *TD,
383 Instruction *TheCall) {
Chris Lattner83f03bf2006-05-27 01:22:24 +0000384 assert(NameSuffix && "NameSuffix cannot be null!");
385
386#ifndef NDEBUG
Jeff Cohend41b30d2006-11-05 19:31:28 +0000387 for (Function::const_arg_iterator II = OldFunc->arg_begin(),
388 E = OldFunc->arg_end(); II != E; ++II)
389 assert(ValueMap.count(II) && "No mapping from source argument specified!");
Chris Lattner83f03bf2006-05-27 01:22:24 +0000390#endif
Duncan Sands28c3cff2008-05-26 19:58:59 +0000391
392 PruningFunctionCloner PFC(NewFunc, OldFunc, ValueMap, Returns,
Chris Lattner1dfdf822007-01-30 23:22:39 +0000393 NameSuffix, CodeInfo, TD);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000394
395 // Clone the entry block, and anything recursively reachable from it.
Chris Lattner67ef2412007-03-02 03:11:20 +0000396 std::vector<const BasicBlock*> CloneWorklist;
397 CloneWorklist.push_back(&OldFunc->getEntryBlock());
398 while (!CloneWorklist.empty()) {
399 const BasicBlock *BB = CloneWorklist.back();
400 CloneWorklist.pop_back();
401 PFC.CloneBlock(BB, CloneWorklist);
402 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000403
404 // Loop over all of the basic blocks in the old function. If the block was
405 // reachable, we have cloned it and the old block is now in the value map:
406 // insert it into the new function in the right order. If not, ignore it.
407 //
Chris Lattner35033ef2006-06-01 19:19:23 +0000408 // Defer PHI resolution until rest of function is resolved.
Chris Lattnerec1bea02009-08-27 04:02:30 +0000409 SmallVector<const PHINode*, 16> PHIToResolve;
Chris Lattner83f03bf2006-05-27 01:22:24 +0000410 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
411 BI != BE; ++BI) {
412 BasicBlock *NewBB = cast_or_null<BasicBlock>(ValueMap[BI]);
413 if (NewBB == 0) continue; // Dead block.
Chris Lattner35033ef2006-06-01 19:19:23 +0000414
Chris Lattner83f03bf2006-05-27 01:22:24 +0000415 // Add the new block to the new function.
416 NewFunc->getBasicBlockList().push_back(NewBB);
417
418 // Loop over all of the instructions in the block, fixing up operand
419 // references as we go. This uses ValueMap to do all the hard work.
420 //
421 BasicBlock::iterator I = NewBB->begin();
Devang Patel53bb5c92009-11-10 23:06:00 +0000422
Chris Lattner08113472009-12-29 09:01:33 +0000423 unsigned DbgKind = OldFunc->getContext().getMDKindID("dbg");
Devang Patel53bb5c92009-11-10 23:06:00 +0000424 MDNode *TheCallMD = NULL;
425 SmallVector<Value *, 4> MDVs;
426 if (TheCall && TheCall->hasMetadata())
Chris Lattner3990b122009-12-28 23:41:32 +0000427 TheCallMD = TheCall->getMetadata(DbgKind);
Chris Lattner83f03bf2006-05-27 01:22:24 +0000428
429 // Handle PHI nodes specially, as we have to remove references to dead
430 // blocks.
431 if (PHINode *PN = dyn_cast<PHINode>(I)) {
Chris Lattner35033ef2006-06-01 19:19:23 +0000432 // Skip over all PHI nodes, remembering them for later.
433 BasicBlock::const_iterator OldI = BI->begin();
Devang Patel53bb5c92009-11-10 23:06:00 +0000434 for (; (PN = dyn_cast<PHINode>(I)); ++I, ++OldI) {
Daniel Dunbardfa92612009-11-12 02:52:56 +0000435 if (I->hasMetadata()) {
Devang Patel53bb5c92009-11-10 23:06:00 +0000436 if (TheCallMD) {
Chris Lattner3990b122009-12-28 23:41:32 +0000437 if (MDNode *IMD = I->getMetadata(DbgKind)) {
Chris Lattner101e2ca2009-12-29 08:03:58 +0000438 MDNode *NewMD = UpdateInlinedAtInfo(IMD, TheCallMD);
Chris Lattner3990b122009-12-28 23:41:32 +0000439 I->setMetadata(DbgKind, NewMD);
Devang Patel53bb5c92009-11-10 23:06:00 +0000440 }
Daniel Dunbardfa92612009-11-12 02:52:56 +0000441 } else {
Devang Patel53bb5c92009-11-10 23:06:00 +0000442 // The cloned instruction has dbg info but the call instruction
443 // does not have dbg info. Remove dbg info from cloned instruction.
Chris Lattner3990b122009-12-28 23:41:32 +0000444 I->setMetadata(DbgKind, 0);
Daniel Dunbardfa92612009-11-12 02:52:56 +0000445 }
446 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000447 PHIToResolve.push_back(cast<PHINode>(OldI));
Devang Patel53bb5c92009-11-10 23:06:00 +0000448 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000449 }
450
Chris Lattner3990b122009-12-28 23:41:32 +0000451 // FIXME:
452 // FIXME:
453 // FIXME: Unclone all this metadata stuff.
454 // FIXME:
455 // FIXME:
456
Chris Lattner83f03bf2006-05-27 01:22:24 +0000457 // Otherwise, remap the rest of the instructions normally.
Devang Patel53bb5c92009-11-10 23:06:00 +0000458 for (; I != NewBB->end(); ++I) {
Daniel Dunbardfa92612009-11-12 02:52:56 +0000459 if (I->hasMetadata()) {
Devang Patel53bb5c92009-11-10 23:06:00 +0000460 if (TheCallMD) {
Chris Lattner3990b122009-12-28 23:41:32 +0000461 if (MDNode *IMD = I->getMetadata(DbgKind)) {
Chris Lattner101e2ca2009-12-29 08:03:58 +0000462 MDNode *NewMD = UpdateInlinedAtInfo(IMD, TheCallMD);
Chris Lattner3990b122009-12-28 23:41:32 +0000463 I->setMetadata(DbgKind, NewMD);
Devang Patel53bb5c92009-11-10 23:06:00 +0000464 }
Daniel Dunbardfa92612009-11-12 02:52:56 +0000465 } else {
Devang Patel53bb5c92009-11-10 23:06:00 +0000466 // The cloned instruction has dbg info but the call instruction
467 // does not have dbg info. Remove dbg info from cloned instruction.
Chris Lattner3990b122009-12-28 23:41:32 +0000468 I->setMetadata(DbgKind, 0);
Daniel Dunbardfa92612009-11-12 02:52:56 +0000469 }
470 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000471 RemapInstruction(I, ValueMap);
Devang Patel53bb5c92009-11-10 23:06:00 +0000472 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000473 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000474
475 // Defer PHI resolution until rest of function is resolved, PHI resolution
476 // requires the CFG to be up-to-date.
477 for (unsigned phino = 0, e = PHIToResolve.size(); phino != e; ) {
478 const PHINode *OPN = PHIToResolve[phino];
Chris Lattner35033ef2006-06-01 19:19:23 +0000479 unsigned NumPreds = OPN->getNumIncomingValues();
Chris Lattner35033ef2006-06-01 19:19:23 +0000480 const BasicBlock *OldBB = OPN->getParent();
481 BasicBlock *NewBB = cast<BasicBlock>(ValueMap[OldBB]);
482
483 // Map operands for blocks that are live and remove operands for blocks
484 // that are dead.
485 for (; phino != PHIToResolve.size() &&
486 PHIToResolve[phino]->getParent() == OldBB; ++phino) {
487 OPN = PHIToResolve[phino];
488 PHINode *PN = cast<PHINode>(ValueMap[OPN]);
489 for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) {
490 if (BasicBlock *MappedBlock =
491 cast_or_null<BasicBlock>(ValueMap[PN->getIncomingBlock(pred)])) {
Owen Anderson0a205a42009-07-05 22:41:43 +0000492 Value *InVal = MapValue(PN->getIncomingValue(pred),
Dan Gohman5fa75b02009-10-24 23:37:16 +0000493 ValueMap);
Chris Lattner35033ef2006-06-01 19:19:23 +0000494 assert(InVal && "Unknown input value?");
495 PN->setIncomingValue(pred, InVal);
496 PN->setIncomingBlock(pred, MappedBlock);
497 } else {
498 PN->removeIncomingValue(pred, false);
499 --pred, --e; // Revisit the next entry.
500 }
501 }
502 }
503
504 // The loop above has removed PHI entries for those blocks that are dead
505 // and has updated others. However, if a block is live (i.e. copied over)
506 // but its terminator has been changed to not go to this block, then our
507 // phi nodes will have invalid entries. Update the PHI nodes in this
508 // case.
509 PHINode *PN = cast<PHINode>(NewBB->begin());
510 NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB));
511 if (NumPreds != PN->getNumIncomingValues()) {
512 assert(NumPreds < PN->getNumIncomingValues());
513 // Count how many times each predecessor comes to this block.
514 std::map<BasicBlock*, unsigned> PredCount;
515 for (pred_iterator PI = pred_begin(NewBB), E = pred_end(NewBB);
516 PI != E; ++PI)
517 --PredCount[*PI];
518
519 // Figure out how many entries to remove from each PHI.
520 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
521 ++PredCount[PN->getIncomingBlock(i)];
522
523 // At this point, the excess predecessor entries are positive in the
524 // map. Loop over all of the PHIs and remove excess predecessor
525 // entries.
526 BasicBlock::iterator I = NewBB->begin();
527 for (; (PN = dyn_cast<PHINode>(I)); ++I) {
528 for (std::map<BasicBlock*, unsigned>::iterator PCI =PredCount.begin(),
529 E = PredCount.end(); PCI != E; ++PCI) {
530 BasicBlock *Pred = PCI->first;
531 for (unsigned NumToRemove = PCI->second; NumToRemove; --NumToRemove)
532 PN->removeIncomingValue(Pred, false);
533 }
534 }
535 }
536
537 // If the loops above have made these phi nodes have 0 or 1 operand,
538 // replace them with undef or the input value. We must do this for
539 // correctness, because 0-operand phis are not valid.
540 PN = cast<PHINode>(NewBB->begin());
541 if (PN->getNumIncomingValues() == 0) {
542 BasicBlock::iterator I = NewBB->begin();
543 BasicBlock::const_iterator OldI = OldBB->begin();
544 while ((PN = dyn_cast<PHINode>(I++))) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000545 Value *NV = UndefValue::get(PN->getType());
Chris Lattner35033ef2006-06-01 19:19:23 +0000546 PN->replaceAllUsesWith(NV);
547 assert(ValueMap[OldI] == PN && "ValueMap mismatch");
548 ValueMap[OldI] = NV;
549 PN->eraseFromParent();
550 ++OldI;
551 }
Chris Lattner35033ef2006-06-01 19:19:23 +0000552 }
Chris Lattner8e8eda72007-02-01 18:48:38 +0000553 // NOTE: We cannot eliminate single entry phi nodes here, because of
554 // ValueMap. Single entry phi nodes can have multiple ValueMap entries
555 // pointing at them. Thus, deleting one would require scanning the ValueMap
556 // to update any entries in it that would require that. This would be
557 // really slow.
Chris Lattner35033ef2006-06-01 19:19:23 +0000558 }
Chris Lattnera4646b62006-09-13 21:27:00 +0000559
560 // Now that the inlined function body has been fully constructed, go through
561 // and zap unconditional fall-through branches. This happen all the time when
562 // specializing code: code specialization turns conditional branches into
563 // uncond branches, and this code folds them.
564 Function::iterator I = cast<BasicBlock>(ValueMap[&OldFunc->getEntryBlock()]);
565 while (I != NewFunc->end()) {
566 BranchInst *BI = dyn_cast<BranchInst>(I->getTerminator());
567 if (!BI || BI->isConditional()) { ++I; continue; }
568
Chris Lattner8e8eda72007-02-01 18:48:38 +0000569 // Note that we can't eliminate uncond branches if the destination has
570 // single-entry PHI nodes. Eliminating the single-entry phi nodes would
571 // require scanning the ValueMap to update any entries that point to the phi
572 // node.
Chris Lattnera4646b62006-09-13 21:27:00 +0000573 BasicBlock *Dest = BI->getSuccessor(0);
Chris Lattner8e8eda72007-02-01 18:48:38 +0000574 if (!Dest->getSinglePredecessor() || isa<PHINode>(Dest->begin())) {
575 ++I; continue;
576 }
Chris Lattnera4646b62006-09-13 21:27:00 +0000577
578 // We know all single-entry PHI nodes in the inlined function have been
579 // removed, so we just need to splice the blocks.
580 BI->eraseFromParent();
581
582 // Move all the instructions in the succ to the pred.
583 I->getInstList().splice(I->end(), Dest->getInstList());
584
585 // Make all PHI nodes that referred to Dest now refer to I as their source.
586 Dest->replaceAllUsesWith(I);
587
588 // Remove the dest block.
589 Dest->eraseFromParent();
590
591 // Do not increment I, iteratively merge all things this block branches to.
592 }
Chris Lattner83f03bf2006-05-27 01:22:24 +0000593}