blob: eb136b503497255943399cc8de1e346a684abd0b [file] [log] [blame]
Chris Lattnerca398dc2003-05-29 15:11:31 +00001//===- InlineFunction.cpp - Code to perform function inlining -------------===//
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 Lattnerca398dc2003-05-29 15:11:31 +00009//
10// This file implements inlining of a function into a call site, resolving
11// parameters and the return value as appropriate.
12//
Chris Lattnerca398dc2003-05-29 15:11:31 +000013//===----------------------------------------------------------------------===//
14
15#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattner3787e762004-10-17 23:21:07 +000016#include "llvm/Constants.h"
Chris Lattner7152c232003-08-24 04:06:56 +000017#include "llvm/DerivedTypes.h"
Chris Lattnerca398dc2003-05-29 15:11:31 +000018#include "llvm/Module.h"
Chris Lattner80a38d22003-08-24 06:59:16 +000019#include "llvm/Instructions.h"
20#include "llvm/Intrinsics.h"
Devang Pateleaf42ab2008-09-23 23:03:40 +000021#include "llvm/Attributes.h"
Chris Lattner468fb1d2006-01-14 20:07:50 +000022#include "llvm/Analysis/CallGraph.h"
Chris Lattnerc93adca2008-01-11 06:09:30 +000023#include "llvm/Target/TargetData.h"
Chris Lattner93e985f2007-02-13 02:10:56 +000024#include "llvm/ADT/SmallVector.h"
Devang Patel641ca932008-03-10 18:22:16 +000025#include "llvm/ADT/StringExtras.h"
Chris Lattner80a38d22003-08-24 06:59:16 +000026#include "llvm/Support/CallSite.h"
Chris Lattnerf7703df2004-01-09 06:12:26 +000027using namespace llvm;
Chris Lattnerca398dc2003-05-29 15:11:31 +000028
Chris Lattner1dfdf822007-01-30 23:22:39 +000029bool llvm::InlineFunction(CallInst *CI, CallGraph *CG, const TargetData *TD) {
30 return InlineFunction(CallSite(CI), CG, TD);
Chris Lattner468fb1d2006-01-14 20:07:50 +000031}
Chris Lattner1dfdf822007-01-30 23:22:39 +000032bool llvm::InlineFunction(InvokeInst *II, CallGraph *CG, const TargetData *TD) {
33 return InlineFunction(CallSite(II), CG, TD);
Chris Lattner468fb1d2006-01-14 20:07:50 +000034}
Chris Lattner80a38d22003-08-24 06:59:16 +000035
Chris Lattnercd4d3392006-01-13 19:05:59 +000036/// HandleInlinedInvoke - If we inlined an invoke site, we need to convert calls
37/// in the body of the inlined function into invokes and turn unwind
38/// instructions into branches to the invoke unwind dest.
39///
Nick Lewyckydac5c4b2009-02-03 04:34:40 +000040/// II is the invoke instruction being inlined. FirstNewBlock is the first
Chris Lattnercd4d3392006-01-13 19:05:59 +000041/// block of the inlined code (the last block is the end of the function),
42/// and InlineCodeInfo is information about the code that got inlined.
43static void HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock,
Nick Lewyckydac5c4b2009-02-03 04:34:40 +000044 ClonedCodeInfo &InlinedCodeInfo,
45 CallGraph *CG) {
Chris Lattnercd4d3392006-01-13 19:05:59 +000046 BasicBlock *InvokeDest = II->getUnwindDest();
47 std::vector<Value*> InvokeDestPHIValues;
48
49 // If there are PHI nodes in the unwind destination block, we need to
50 // keep track of which values came into them from this invoke, then remove
51 // the entry for this block.
52 BasicBlock *InvokeBlock = II->getParent();
53 for (BasicBlock::iterator I = InvokeDest->begin(); isa<PHINode>(I); ++I) {
54 PHINode *PN = cast<PHINode>(I);
55 // Save the value to use for this edge.
56 InvokeDestPHIValues.push_back(PN->getIncomingValueForBlock(InvokeBlock));
57 }
58
59 Function *Caller = FirstNewBlock->getParent();
Duncan Sandsa7212e52008-09-05 12:37:12 +000060
Chris Lattnercd4d3392006-01-13 19:05:59 +000061 // The inlined code is currently at the end of the function, scan from the
62 // start of the inlined code to its end, checking for stuff we need to
63 // rewrite.
Chris Lattner727d1dd2006-01-13 19:15:15 +000064 if (InlinedCodeInfo.ContainsCalls || InlinedCodeInfo.ContainsUnwinds) {
65 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
66 BB != E; ++BB) {
67 if (InlinedCodeInfo.ContainsCalls) {
68 for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ){
69 Instruction *I = BBI++;
Duncan Sandsa7212e52008-09-05 12:37:12 +000070
Chris Lattner727d1dd2006-01-13 19:15:15 +000071 // We only need to check for function calls: inlined invoke
72 // instructions require no special handling.
73 if (!isa<CallInst>(I)) continue;
74 CallInst *CI = cast<CallInst>(I);
Chris Lattnercd4d3392006-01-13 19:05:59 +000075
Duncan Sandsfd7b3262007-12-17 18:08:19 +000076 // If this call cannot unwind, don't convert it to an invoke.
Duncan Sands2b0e8992007-12-18 09:59:50 +000077 if (CI->doesNotThrow())
Chris Lattner727d1dd2006-01-13 19:15:15 +000078 continue;
Duncan Sandsa3355ff2007-12-03 20:06:50 +000079
Chris Lattner727d1dd2006-01-13 19:15:15 +000080 // Convert this function call into an invoke instruction.
81 // First, split the basic block.
82 BasicBlock *Split = BB->splitBasicBlock(CI, CI->getName()+".noexc");
Duncan Sandsa7212e52008-09-05 12:37:12 +000083
Chris Lattner727d1dd2006-01-13 19:15:15 +000084 // Next, create the new invoke instruction, inserting it at the end
85 // of the old basic block.
Chris Lattner93e985f2007-02-13 02:10:56 +000086 SmallVector<Value*, 8> InvokeArgs(CI->op_begin()+1, CI->op_end());
Chris Lattner727d1dd2006-01-13 19:15:15 +000087 InvokeInst *II =
Gabor Greif051a9502008-04-06 20:25:17 +000088 InvokeInst::Create(CI->getCalledValue(), Split, InvokeDest,
89 InvokeArgs.begin(), InvokeArgs.end(),
90 CI->getName(), BB->getTerminator());
Chris Lattner727d1dd2006-01-13 19:15:15 +000091 II->setCallingConv(CI->getCallingConv());
Devang Patel05988662008-09-25 21:00:45 +000092 II->setAttributes(CI->getAttributes());
Duncan Sandsa7212e52008-09-05 12:37:12 +000093
Chris Lattner727d1dd2006-01-13 19:15:15 +000094 // Make sure that anything using the call now uses the invoke!
95 CI->replaceAllUsesWith(II);
Duncan Sandsa7212e52008-09-05 12:37:12 +000096
Nick Lewyckydac5c4b2009-02-03 04:34:40 +000097 // Update the callgraph.
98 if (CG)
99 (*CG)[Caller]->replaceCallSite(CI, II);
100
Chris Lattner727d1dd2006-01-13 19:15:15 +0000101 // Delete the unconditional branch inserted by splitBasicBlock
102 BB->getInstList().pop_back();
103 Split->getInstList().pop_front(); // Delete the original call
Duncan Sandsa7212e52008-09-05 12:37:12 +0000104
Chris Lattner727d1dd2006-01-13 19:15:15 +0000105 // Update any PHI nodes in the exceptional block to indicate that
106 // there is now a new entry in them.
107 unsigned i = 0;
108 for (BasicBlock::iterator I = InvokeDest->begin();
109 isa<PHINode>(I); ++I, ++i) {
110 PHINode *PN = cast<PHINode>(I);
111 PN->addIncoming(InvokeDestPHIValues[i], BB);
112 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000113
Chris Lattner727d1dd2006-01-13 19:15:15 +0000114 // This basic block is now complete, start scanning the next one.
115 break;
116 }
Chris Lattnercd4d3392006-01-13 19:05:59 +0000117 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000118
Chris Lattner727d1dd2006-01-13 19:15:15 +0000119 if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) {
120 // An UnwindInst requires special handling when it gets inlined into an
121 // invoke site. Once this happens, we know that the unwind would cause
122 // a control transfer to the invoke exception destination, so we can
123 // transform it into a direct branch to the exception destination.
Gabor Greif051a9502008-04-06 20:25:17 +0000124 BranchInst::Create(InvokeDest, UI);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000125
Chris Lattner727d1dd2006-01-13 19:15:15 +0000126 // Delete the unwind instruction!
Dan Gohman1adec832008-06-21 22:08:46 +0000127 UI->eraseFromParent();
Duncan Sandsa7212e52008-09-05 12:37:12 +0000128
Chris Lattner727d1dd2006-01-13 19:15:15 +0000129 // Update any PHI nodes in the exceptional block to indicate that
130 // there is now a new entry in them.
131 unsigned i = 0;
132 for (BasicBlock::iterator I = InvokeDest->begin();
133 isa<PHINode>(I); ++I, ++i) {
134 PHINode *PN = cast<PHINode>(I);
135 PN->addIncoming(InvokeDestPHIValues[i], BB);
136 }
Chris Lattnercd4d3392006-01-13 19:05:59 +0000137 }
138 }
139 }
140
141 // Now that everything is happy, we have one final detail. The PHI nodes in
142 // the exception destination block still have entries due to the original
143 // invoke instruction. Eliminate these entries (which might even delete the
144 // PHI node) now.
145 InvokeDest->removePredecessor(II->getParent());
146}
147
Chris Lattnerd85340f2006-07-12 18:29:36 +0000148/// UpdateCallGraphAfterInlining - Once we have cloned code over from a callee
149/// into the caller, update the specified callgraph to reflect the changes we
150/// made. Note that it's possible that not all code was copied over, so only
Duncan Sandsd7b98512008-09-08 11:05:51 +0000151/// some edges of the callgraph may remain.
152static void UpdateCallGraphAfterInlining(CallSite CS,
Chris Lattnerd85340f2006-07-12 18:29:36 +0000153 Function::iterator FirstNewBlock,
Chris Lattner5e665f52007-02-03 00:08:31 +0000154 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattner468fb1d2006-01-14 20:07:50 +0000155 CallGraph &CG) {
Duncan Sandsd7b98512008-09-08 11:05:51 +0000156 const Function *Caller = CS.getInstruction()->getParent()->getParent();
157 const Function *Callee = CS.getCalledFunction();
Chris Lattner468fb1d2006-01-14 20:07:50 +0000158 CallGraphNode *CalleeNode = CG[Callee];
159 CallGraphNode *CallerNode = CG[Caller];
Duncan Sandsa7212e52008-09-05 12:37:12 +0000160
Chris Lattnerd85340f2006-07-12 18:29:36 +0000161 // Since we inlined some uninlined call sites in the callee into the caller,
Chris Lattner468fb1d2006-01-14 20:07:50 +0000162 // add edges from the caller to all of the callees of the callee.
Gabor Greifc478e522009-01-15 18:40:09 +0000163 CallGraphNode::iterator I = CalleeNode->begin(), E = CalleeNode->end();
164
165 // Consider the case where CalleeNode == CallerNode.
Gabor Greif12532982009-01-17 00:09:08 +0000166 CallGraphNode::CalledFunctionsVector CallCache;
Gabor Greifc478e522009-01-15 18:40:09 +0000167 if (CalleeNode == CallerNode) {
168 CallCache.assign(I, E);
169 I = CallCache.begin();
170 E = CallCache.end();
171 }
172
173 for (; I != E; ++I) {
Chris Lattnerd85340f2006-07-12 18:29:36 +0000174 const Instruction *OrigCall = I->first.getInstruction();
Duncan Sandsa7212e52008-09-05 12:37:12 +0000175
Chris Lattner5e665f52007-02-03 00:08:31 +0000176 DenseMap<const Value*, Value*>::iterator VMI = ValueMap.find(OrigCall);
Chris Lattner981418b2006-07-12 21:37:11 +0000177 // Only copy the edge if the call was inlined!
178 if (VMI != ValueMap.end() && VMI->second) {
Chris Lattner1bb3a402006-07-12 18:37:18 +0000179 // If the call was inlined, but then constant folded, there is no edge to
180 // add. Check for this case.
181 if (Instruction *NewCall = dyn_cast<Instruction>(VMI->second))
182 CallerNode->addCalledFunction(CallSite::get(NewCall), I->second);
Chris Lattnerd85340f2006-07-12 18:29:36 +0000183 }
184 }
Dale Johannesen39fa3242009-01-13 22:43:37 +0000185 // Update the call graph by deleting the edge from Callee to Caller. We must
186 // do this after the loop above in case Caller and Callee are the same.
187 CallerNode->removeCallEdgeFor(CS);
Chris Lattner468fb1d2006-01-14 20:07:50 +0000188}
189
Chris Lattnercd4d3392006-01-13 19:05:59 +0000190
Chris Lattnerca398dc2003-05-29 15:11:31 +0000191// InlineFunction - This function inlines the called function into the basic
192// block of the caller. This returns false if it is not possible to inline this
193// call. The program is still in a well defined state if this occurs though.
194//
Misha Brukmanfd939082005-04-21 23:48:37 +0000195// Note that this only does one level of inlining. For example, if the
196// instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now
Chris Lattnerca398dc2003-05-29 15:11:31 +0000197// exists in the instruction stream. Similiarly this will inline a recursive
198// function by one level.
199//
Chris Lattner1dfdf822007-01-30 23:22:39 +0000200bool llvm::InlineFunction(CallSite CS, CallGraph *CG, const TargetData *TD) {
Chris Lattner80a38d22003-08-24 06:59:16 +0000201 Instruction *TheCall = CS.getInstruction();
202 assert(TheCall->getParent() && TheCall->getParent()->getParent() &&
203 "Instruction not in function!");
Chris Lattnerca398dc2003-05-29 15:11:31 +0000204
Chris Lattner80a38d22003-08-24 06:59:16 +0000205 const Function *CalledFunc = CS.getCalledFunction();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000206 if (CalledFunc == 0 || // Can't inline external function or indirect
Reid Spencer5cbf9852007-01-30 20:08:39 +0000207 CalledFunc->isDeclaration() || // call, or call to a vararg function!
Chris Lattnerca398dc2003-05-29 15:11:31 +0000208 CalledFunc->getFunctionType()->isVarArg()) return false;
209
Chris Lattner1b491412005-05-06 06:47:52 +0000210
211 // If the call to the callee is a non-tail call, we must clear the 'tail'
212 // flags on any calls that we inline.
213 bool MustClearTailCallFlags =
Chris Lattner3799ed82005-05-06 17:13:16 +0000214 isa<CallInst>(TheCall) && !cast<CallInst>(TheCall)->isTailCall();
Chris Lattner1b491412005-05-06 06:47:52 +0000215
Duncan Sandsf0c33542007-12-19 21:13:37 +0000216 // If the call to the callee cannot throw, set the 'nounwind' flag on any
217 // calls that we inline.
218 bool MarkNoUnwind = CS.doesNotThrow();
219
Chris Lattner80a38d22003-08-24 06:59:16 +0000220 BasicBlock *OrigBB = TheCall->getParent();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000221 Function *Caller = OrigBB->getParent();
222
Gordon Henriksen0e138212007-12-25 03:10:07 +0000223 // GC poses two hazards to inlining, which only occur when the callee has GC:
224 // 1. If the caller has no GC, then the callee's GC must be propagated to the
225 // caller.
226 // 2. If the caller has a differing GC, it is invalid to inline.
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000227 if (CalledFunc->hasGC()) {
228 if (!Caller->hasGC())
229 Caller->setGC(CalledFunc->getGC());
230 else if (CalledFunc->getGC() != Caller->getGC())
Gordon Henriksen0e138212007-12-25 03:10:07 +0000231 return false;
232 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000233
Chris Lattner5052c912004-02-04 01:41:09 +0000234 // Get an iterator to the last basic block in the function, which will have
235 // the new function inlined after it.
236 //
237 Function::iterator LastBlock = &Caller->back();
238
Chris Lattner5e923de2004-02-04 02:51:48 +0000239 // Make sure to capture all of the return instructions from the cloned
Chris Lattnerca398dc2003-05-29 15:11:31 +0000240 // function.
Chris Lattner5e923de2004-02-04 02:51:48 +0000241 std::vector<ReturnInst*> Returns;
Chris Lattnercd4d3392006-01-13 19:05:59 +0000242 ClonedCodeInfo InlinedFunctionInfo;
Chris Lattnerd85340f2006-07-12 18:29:36 +0000243 Function::iterator FirstNewBlock;
Duncan Sandsf0c33542007-12-19 21:13:37 +0000244
Chris Lattner5e923de2004-02-04 02:51:48 +0000245 { // Scope to destroy ValueMap after cloning.
Chris Lattner5e665f52007-02-03 00:08:31 +0000246 DenseMap<const Value*, Value*> ValueMap;
Chris Lattner5b5bc302006-05-27 01:28:04 +0000247
Dan Gohman9614fcc2008-06-20 17:11:32 +0000248 assert(CalledFunc->arg_size() == CS.arg_size() &&
Chris Lattner5e923de2004-02-04 02:51:48 +0000249 "No varargs calls can be inlined!");
Duncan Sandsa7212e52008-09-05 12:37:12 +0000250
Chris Lattnerc93adca2008-01-11 06:09:30 +0000251 // Calculate the vector of arguments to pass into the function cloner, which
252 // matches up the formal to the actual argument values.
Chris Lattner5e923de2004-02-04 02:51:48 +0000253 CallSite::arg_iterator AI = CS.arg_begin();
Chris Lattnerc93adca2008-01-11 06:09:30 +0000254 unsigned ArgNo = 0;
Chris Lattnere4d5c442005-03-15 04:54:21 +0000255 for (Function::const_arg_iterator I = CalledFunc->arg_begin(),
Chris Lattnerc93adca2008-01-11 06:09:30 +0000256 E = CalledFunc->arg_end(); I != E; ++I, ++AI, ++ArgNo) {
257 Value *ActualArg = *AI;
Duncan Sandsa7212e52008-09-05 12:37:12 +0000258
Duncan Sandsd82375c2008-01-27 18:12:58 +0000259 // When byval arguments actually inlined, we need to make the copy implied
260 // by them explicit. However, we don't do this if the callee is readonly
261 // or readnone, because the copy would be unneeded: the callee doesn't
262 // modify the struct.
Devang Patel05988662008-09-25 21:00:45 +0000263 if (CalledFunc->paramHasAttr(ArgNo+1, Attribute::ByVal) &&
Duncan Sandsd82375c2008-01-27 18:12:58 +0000264 !CalledFunc->onlyReadsMemory()) {
Chris Lattnerc93adca2008-01-11 06:09:30 +0000265 const Type *AggTy = cast<PointerType>(I->getType())->getElementType();
266 const Type *VoidPtrTy = PointerType::getUnqual(Type::Int8Ty);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000267
Chris Lattnerc93adca2008-01-11 06:09:30 +0000268 // Create the alloca. If we have TargetData, use nice alignment.
269 unsigned Align = 1;
270 if (TD) Align = TD->getPrefTypeAlignment(AggTy);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000271 Value *NewAlloca = new AllocaInst(AggTy, 0, Align, I->getName(),
Chris Lattnerc93adca2008-01-11 06:09:30 +0000272 Caller->begin()->begin());
273 // Emit a memcpy.
Chris Lattner824b9582008-11-21 16:42:48 +0000274 const Type *Tys[] = { Type::Int64Ty };
Chris Lattnerc93adca2008-01-11 06:09:30 +0000275 Function *MemCpyFn = Intrinsic::getDeclaration(Caller->getParent(),
Chris Lattner824b9582008-11-21 16:42:48 +0000276 Intrinsic::memcpy,
277 Tys, 1);
Chris Lattnerc93adca2008-01-11 06:09:30 +0000278 Value *DestCast = new BitCastInst(NewAlloca, VoidPtrTy, "tmp", TheCall);
279 Value *SrcCast = new BitCastInst(*AI, VoidPtrTy, "tmp", TheCall);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000280
Chris Lattnerc93adca2008-01-11 06:09:30 +0000281 Value *Size;
282 if (TD == 0)
283 Size = ConstantExpr::getSizeOf(AggTy);
284 else
285 Size = ConstantInt::get(Type::Int64Ty, TD->getTypeStoreSize(AggTy));
Duncan Sandsa7212e52008-09-05 12:37:12 +0000286
Chris Lattnerc93adca2008-01-11 06:09:30 +0000287 // Always generate a memcpy of alignment 1 here because we don't know
288 // the alignment of the src pointer. Other optimizations can infer
289 // better alignment.
290 Value *CallArgs[] = {
291 DestCast, SrcCast, Size, ConstantInt::get(Type::Int32Ty, 1)
292 };
293 CallInst *TheMemCpy =
Gabor Greif051a9502008-04-06 20:25:17 +0000294 CallInst::Create(MemCpyFn, CallArgs, CallArgs+4, "", TheCall);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000295
Chris Lattnerc93adca2008-01-11 06:09:30 +0000296 // If we have a call graph, update it.
297 if (CG) {
298 CallGraphNode *MemCpyCGN = CG->getOrInsertFunction(MemCpyFn);
299 CallGraphNode *CallerNode = (*CG)[Caller];
300 CallerNode->addCalledFunction(TheMemCpy, MemCpyCGN);
301 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000302
Chris Lattnerc93adca2008-01-11 06:09:30 +0000303 // Uses of the argument in the function should use our new alloca
304 // instead.
305 ActualArg = NewAlloca;
306 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000307
Chris Lattnerc93adca2008-01-11 06:09:30 +0000308 ValueMap[I] = ActualArg;
309 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000310
Chris Lattner5b5bc302006-05-27 01:28:04 +0000311 // We want the inliner to prune the code as it copies. We would LOVE to
312 // have no dead or constant instructions leftover after inlining occurs
313 // (which can happen, e.g., because an argument was constant), but we'll be
314 // happy with whatever the cloner can do.
315 CloneAndPruneFunctionInto(Caller, CalledFunc, ValueMap, Returns, ".i",
Chris Lattner1dfdf822007-01-30 23:22:39 +0000316 &InlinedFunctionInfo, TD);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000317
Chris Lattnerd85340f2006-07-12 18:29:36 +0000318 // Remember the first block that is newly cloned over.
319 FirstNewBlock = LastBlock; ++FirstNewBlock;
Duncan Sandsa7212e52008-09-05 12:37:12 +0000320
Chris Lattnerd85340f2006-07-12 18:29:36 +0000321 // Update the callgraph if requested.
322 if (CG)
Duncan Sandsd7b98512008-09-08 11:05:51 +0000323 UpdateCallGraphAfterInlining(CS, FirstNewBlock, ValueMap, *CG);
Misha Brukmanfd939082005-04-21 23:48:37 +0000324 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000325
Chris Lattnerca398dc2003-05-29 15:11:31 +0000326 // If there are any alloca instructions in the block that used to be the entry
327 // block for the callee, move them to the entry block of the caller. First
328 // calculate which instruction they should be inserted before. We insert the
329 // instructions at the end of the current alloca list.
330 //
Chris Lattner21f20552006-01-13 18:16:48 +0000331 {
Chris Lattner80a38d22003-08-24 06:59:16 +0000332 BasicBlock::iterator InsertPoint = Caller->begin()->begin();
Chris Lattner5e923de2004-02-04 02:51:48 +0000333 for (BasicBlock::iterator I = FirstNewBlock->begin(),
334 E = FirstNewBlock->end(); I != E; )
Chris Lattner33bb3c82006-09-13 19:23:57 +0000335 if (AllocaInst *AI = dyn_cast<AllocaInst>(I++)) {
336 // If the alloca is now dead, remove it. This often occurs due to code
337 // specialization.
338 if (AI->use_empty()) {
339 AI->eraseFromParent();
340 continue;
341 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000342
Chris Lattnerf775f952003-10-14 01:11:07 +0000343 if (isa<Constant>(AI->getArraySize())) {
Chris Lattner21f20552006-01-13 18:16:48 +0000344 // Scan for the block of allocas that we can move over, and move them
345 // all at once.
Chris Lattnerc1df7e12004-02-04 21:33:42 +0000346 while (isa<AllocaInst>(I) &&
347 isa<Constant>(cast<AllocaInst>(I)->getArraySize()))
348 ++I;
349
350 // Transfer all of the allocas over in a block. Using splice means
Dan Gohmane26bff22007-02-20 20:52:03 +0000351 // that the instructions aren't removed from the symbol table, then
Chris Lattnerc1df7e12004-02-04 21:33:42 +0000352 // reinserted.
Dan Gohmanecb7a772007-03-22 16:38:57 +0000353 Caller->getEntryBlock().getInstList().splice(
354 InsertPoint,
355 FirstNewBlock->getInstList(),
356 AI, I);
Chris Lattnerf775f952003-10-14 01:11:07 +0000357 }
Chris Lattner33bb3c82006-09-13 19:23:57 +0000358 }
Chris Lattner80a38d22003-08-24 06:59:16 +0000359 }
Chris Lattnerca398dc2003-05-29 15:11:31 +0000360
Chris Lattnerbf229f42006-01-13 19:34:14 +0000361 // If the inlined code contained dynamic alloca instructions, wrap the inlined
362 // code with llvm.stacksave/llvm.stackrestore intrinsics.
363 if (InlinedFunctionInfo.ContainsDynamicAllocas) {
364 Module *M = Caller->getParent();
Chris Lattnerbf229f42006-01-13 19:34:14 +0000365 // Get the two intrinsics we care about.
Chris Lattnera121fdd2007-01-07 07:54:34 +0000366 Constant *StackSave, *StackRestore;
Duncan Sands3d292ac2008-04-07 13:43:58 +0000367 StackSave = Intrinsic::getDeclaration(M, Intrinsic::stacksave);
368 StackRestore = Intrinsic::getDeclaration(M, Intrinsic::stackrestore);
Chris Lattnerd85340f2006-07-12 18:29:36 +0000369
370 // If we are preserving the callgraph, add edges to the stacksave/restore
371 // functions for the calls we insert.
Chris Lattner21ba23d2006-07-18 21:48:57 +0000372 CallGraphNode *StackSaveCGN = 0, *StackRestoreCGN = 0, *CallerNode = 0;
Chris Lattnerd85340f2006-07-12 18:29:36 +0000373 if (CG) {
Chris Lattnera121fdd2007-01-07 07:54:34 +0000374 // We know that StackSave/StackRestore are Function*'s, because they are
375 // intrinsics which must have the right types.
376 StackSaveCGN = CG->getOrInsertFunction(cast<Function>(StackSave));
377 StackRestoreCGN = CG->getOrInsertFunction(cast<Function>(StackRestore));
Chris Lattnerd85340f2006-07-12 18:29:36 +0000378 CallerNode = (*CG)[Caller];
379 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000380
Chris Lattnerbf229f42006-01-13 19:34:14 +0000381 // Insert the llvm.stacksave.
Duncan Sandsa7212e52008-09-05 12:37:12 +0000382 CallInst *SavedPtr = CallInst::Create(StackSave, "savedstack",
Gabor Greif051a9502008-04-06 20:25:17 +0000383 FirstNewBlock->begin());
Chris Lattnerd85340f2006-07-12 18:29:36 +0000384 if (CG) CallerNode->addCalledFunction(SavedPtr, StackSaveCGN);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000385
Chris Lattnerbf229f42006-01-13 19:34:14 +0000386 // Insert a call to llvm.stackrestore before any return instructions in the
387 // inlined function.
Chris Lattnerd85340f2006-07-12 18:29:36 +0000388 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
Gabor Greif051a9502008-04-06 20:25:17 +0000389 CallInst *CI = CallInst::Create(StackRestore, SavedPtr, "", Returns[i]);
Chris Lattnerd85340f2006-07-12 18:29:36 +0000390 if (CG) CallerNode->addCalledFunction(CI, StackRestoreCGN);
391 }
Chris Lattner468fb1d2006-01-14 20:07:50 +0000392
393 // Count the number of StackRestore calls we insert.
394 unsigned NumStackRestores = Returns.size();
Duncan Sandsa7212e52008-09-05 12:37:12 +0000395
Chris Lattnerbf229f42006-01-13 19:34:14 +0000396 // If we are inlining an invoke instruction, insert restores before each
397 // unwind. These unwinds will be rewritten into branches later.
398 if (InlinedFunctionInfo.ContainsUnwinds && isa<InvokeInst>(TheCall)) {
399 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
400 BB != E; ++BB)
Chris Lattner468fb1d2006-01-14 20:07:50 +0000401 if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) {
Duncan Sands3d292ac2008-04-07 13:43:58 +0000402 CallInst::Create(StackRestore, SavedPtr, "", UI);
Chris Lattner468fb1d2006-01-14 20:07:50 +0000403 ++NumStackRestores;
404 }
405 }
Chris Lattnerbf229f42006-01-13 19:34:14 +0000406 }
407
Duncan Sandsa7212e52008-09-05 12:37:12 +0000408 // If we are inlining tail call instruction through a call site that isn't
Chris Lattner1fdf4a82006-01-13 19:18:11 +0000409 // marked 'tail', we must remove the tail marker for any calls in the inlined
Duncan Sandsf0c33542007-12-19 21:13:37 +0000410 // code. Also, calls inlined through a 'nounwind' call site should be marked
411 // 'nounwind'.
412 if (InlinedFunctionInfo.ContainsCalls &&
413 (MustClearTailCallFlags || MarkNoUnwind)) {
Chris Lattner1b491412005-05-06 06:47:52 +0000414 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
415 BB != E; ++BB)
416 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Duncan Sandsf0c33542007-12-19 21:13:37 +0000417 if (CallInst *CI = dyn_cast<CallInst>(I)) {
418 if (MustClearTailCallFlags)
419 CI->setTailCall(false);
420 if (MarkNoUnwind)
421 CI->setDoesNotThrow();
422 }
Chris Lattner1b491412005-05-06 06:47:52 +0000423 }
424
Duncan Sandsf0c33542007-12-19 21:13:37 +0000425 // If we are inlining through a 'nounwind' call site then any inlined 'unwind'
426 // instructions are unreachable.
427 if (InlinedFunctionInfo.ContainsUnwinds && MarkNoUnwind)
428 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
429 BB != E; ++BB) {
430 TerminatorInst *Term = BB->getTerminator();
431 if (isa<UnwindInst>(Term)) {
432 new UnreachableInst(Term);
433 BB->getInstList().erase(Term);
434 }
435 }
436
Chris Lattner5e923de2004-02-04 02:51:48 +0000437 // If we are inlining for an invoke instruction, we must make sure to rewrite
438 // any inlined 'unwind' instructions into branches to the invoke exception
439 // destination, and call instructions into invoke instructions.
Chris Lattnercd4d3392006-01-13 19:05:59 +0000440 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall))
Nick Lewyckydac5c4b2009-02-03 04:34:40 +0000441 HandleInlinedInvoke(II, FirstNewBlock, InlinedFunctionInfo, CG);
Chris Lattner5e923de2004-02-04 02:51:48 +0000442
Chris Lattner44a68072004-02-04 04:17:06 +0000443 // If we cloned in _exactly one_ basic block, and if that block ends in a
444 // return instruction, we splice the body of the inlined callee directly into
445 // the calling basic block.
446 if (Returns.size() == 1 && std::distance(FirstNewBlock, Caller->end()) == 1) {
447 // Move all of the instructions right before the call.
448 OrigBB->getInstList().splice(TheCall, FirstNewBlock->getInstList(),
449 FirstNewBlock->begin(), FirstNewBlock->end());
450 // Remove the cloned basic block.
451 Caller->getBasicBlockList().pop_back();
Misha Brukmanfd939082005-04-21 23:48:37 +0000452
Chris Lattner44a68072004-02-04 04:17:06 +0000453 // If the call site was an invoke instruction, add a branch to the normal
454 // destination.
455 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall))
Gabor Greif051a9502008-04-06 20:25:17 +0000456 BranchInst::Create(II->getNormalDest(), TheCall);
Chris Lattner44a68072004-02-04 04:17:06 +0000457
458 // If the return instruction returned a value, replace uses of the call with
459 // uses of the returned value.
Devang Pateldc00d422008-03-04 21:15:15 +0000460 if (!TheCall->use_empty()) {
461 ReturnInst *R = Returns[0];
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000462 TheCall->replaceAllUsesWith(R->getReturnValue());
Devang Pateldc00d422008-03-04 21:15:15 +0000463 }
Chris Lattner44a68072004-02-04 04:17:06 +0000464 // Since we are now done with the Call/Invoke, we can delete it.
Dan Gohman1adec832008-06-21 22:08:46 +0000465 TheCall->eraseFromParent();
Chris Lattner44a68072004-02-04 04:17:06 +0000466
467 // Since we are now done with the return instruction, delete it also.
Dan Gohman1adec832008-06-21 22:08:46 +0000468 Returns[0]->eraseFromParent();
Chris Lattner44a68072004-02-04 04:17:06 +0000469
470 // We are now done with the inlining.
471 return true;
472 }
473
474 // Otherwise, we have the normal case, of more than one block to inline or
475 // multiple return sites.
476
Chris Lattner5e923de2004-02-04 02:51:48 +0000477 // We want to clone the entire callee function into the hole between the
478 // "starter" and "ender" blocks. How we accomplish this depends on whether
479 // this is an invoke instruction or a call instruction.
480 BasicBlock *AfterCallBB;
481 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000482
Chris Lattner5e923de2004-02-04 02:51:48 +0000483 // Add an unconditional branch to make this look like the CallInst case...
Gabor Greif051a9502008-04-06 20:25:17 +0000484 BranchInst *NewBr = BranchInst::Create(II->getNormalDest(), TheCall);
Misha Brukmanfd939082005-04-21 23:48:37 +0000485
Chris Lattner5e923de2004-02-04 02:51:48 +0000486 // Split the basic block. This guarantees that no PHI nodes will have to be
487 // updated due to new incoming edges, and make the invoke case more
488 // symmetric to the call case.
489 AfterCallBB = OrigBB->splitBasicBlock(NewBr,
Chris Lattner284d1b82004-12-11 16:59:54 +0000490 CalledFunc->getName()+".exit");
Misha Brukmanfd939082005-04-21 23:48:37 +0000491
Chris Lattner5e923de2004-02-04 02:51:48 +0000492 } else { // It's a call
Chris Lattner44a68072004-02-04 04:17:06 +0000493 // If this is a call instruction, we need to split the basic block that
494 // the call lives in.
Chris Lattner5e923de2004-02-04 02:51:48 +0000495 //
496 AfterCallBB = OrigBB->splitBasicBlock(TheCall,
Chris Lattner284d1b82004-12-11 16:59:54 +0000497 CalledFunc->getName()+".exit");
Chris Lattner5e923de2004-02-04 02:51:48 +0000498 }
499
Chris Lattner44a68072004-02-04 04:17:06 +0000500 // Change the branch that used to go to AfterCallBB to branch to the first
501 // basic block of the inlined function.
502 //
503 TerminatorInst *Br = OrigBB->getTerminator();
Misha Brukmanfd939082005-04-21 23:48:37 +0000504 assert(Br && Br->getOpcode() == Instruction::Br &&
Chris Lattner44a68072004-02-04 04:17:06 +0000505 "splitBasicBlock broken!");
506 Br->setOperand(0, FirstNewBlock);
507
508
509 // Now that the function is correct, make it a little bit nicer. In
510 // particular, move the basic blocks inserted from the end of the function
511 // into the space made by splitting the source basic block.
Chris Lattner44a68072004-02-04 04:17:06 +0000512 Caller->getBasicBlockList().splice(AfterCallBB, Caller->getBasicBlockList(),
513 FirstNewBlock, Caller->end());
514
Chris Lattner5e923de2004-02-04 02:51:48 +0000515 // Handle all of the return instructions that we just cloned in, and eliminate
516 // any users of the original call/invoke instruction.
Devang Patelb8f198a2008-03-10 18:34:00 +0000517 const Type *RTy = CalledFunc->getReturnType();
Dan Gohman2c317502008-06-20 01:03:44 +0000518
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000519 if (Returns.size() > 1) {
Chris Lattner5e923de2004-02-04 02:51:48 +0000520 // The PHI node should go at the front of the new basic block to merge all
521 // possible incoming values.
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000522 PHINode *PHI = 0;
Chris Lattner5e923de2004-02-04 02:51:48 +0000523 if (!TheCall->use_empty()) {
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000524 PHI = PHINode::Create(RTy, TheCall->getName(),
525 AfterCallBB->begin());
526 // Anything that used the result of the function call should now use the
527 // PHI node as their operand.
Duncan Sandsa7212e52008-09-05 12:37:12 +0000528 TheCall->replaceAllUsesWith(PHI);
Chris Lattner5e923de2004-02-04 02:51:48 +0000529 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000530
Gabor Greifc478e522009-01-15 18:40:09 +0000531 // Loop over all of the return instructions adding entries to the PHI node
532 // as appropriate.
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000533 if (PHI) {
534 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
535 ReturnInst *RI = Returns[i];
536 assert(RI->getReturnValue()->getType() == PHI->getType() &&
537 "Ret value not consistent in function!");
538 PHI->addIncoming(RI->getReturnValue(), RI->getParent());
Devang Patel12a466b2008-03-07 20:06:16 +0000539 }
540 }
541
Gabor Greifde62aea2009-01-16 23:08:50 +0000542 // Add a branch to the merge points and remove return instructions.
Chris Lattner5e923de2004-02-04 02:51:48 +0000543 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
544 ReturnInst *RI = Returns[i];
Gabor Greif051a9502008-04-06 20:25:17 +0000545 BranchInst::Create(AfterCallBB, RI);
Devang Patelb8f198a2008-03-10 18:34:00 +0000546 RI->eraseFromParent();
Chris Lattner5e923de2004-02-04 02:51:48 +0000547 }
Devang Patelb8f198a2008-03-10 18:34:00 +0000548 } else if (!Returns.empty()) {
549 // Otherwise, if there is exactly one return value, just replace anything
550 // using the return value of the call with the computed value.
551 if (!TheCall->use_empty())
552 TheCall->replaceAllUsesWith(Returns[0]->getReturnValue());
Duncan Sandsa7212e52008-09-05 12:37:12 +0000553
Devang Patelb8f198a2008-03-10 18:34:00 +0000554 // Splice the code from the return block into the block that it will return
555 // to, which contains the code that was after the call.
556 BasicBlock *ReturnBB = Returns[0]->getParent();
557 AfterCallBB->getInstList().splice(AfterCallBB->begin(),
558 ReturnBB->getInstList());
Duncan Sandsa7212e52008-09-05 12:37:12 +0000559
Devang Patelb8f198a2008-03-10 18:34:00 +0000560 // Update PHI nodes that use the ReturnBB to use the AfterCallBB.
561 ReturnBB->replaceAllUsesWith(AfterCallBB);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000562
Devang Patelb8f198a2008-03-10 18:34:00 +0000563 // Delete the return instruction now and empty ReturnBB now.
564 Returns[0]->eraseFromParent();
565 ReturnBB->eraseFromParent();
Chris Lattner3787e762004-10-17 23:21:07 +0000566 } else if (!TheCall->use_empty()) {
567 // No returns, but something is using the return value of the call. Just
568 // nuke the result.
569 TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType()));
Chris Lattner5e923de2004-02-04 02:51:48 +0000570 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000571
Chris Lattner5e923de2004-02-04 02:51:48 +0000572 // Since we are now done with the Call/Invoke, we can delete it.
Chris Lattner3787e762004-10-17 23:21:07 +0000573 TheCall->eraseFromParent();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000574
Chris Lattner7152c232003-08-24 04:06:56 +0000575 // We should always be able to fold the entry block of the function into the
576 // single predecessor of the block...
Chris Lattnercd01ae52004-04-16 05:17:59 +0000577 assert(cast<BranchInst>(Br)->isUnconditional() && "splitBasicBlock broken!");
Chris Lattner7152c232003-08-24 04:06:56 +0000578 BasicBlock *CalleeEntry = cast<BranchInst>(Br)->getSuccessor(0);
Chris Lattner44a68072004-02-04 04:17:06 +0000579
Chris Lattnercd01ae52004-04-16 05:17:59 +0000580 // Splice the code entry block into calling block, right before the
581 // unconditional branch.
582 OrigBB->getInstList().splice(Br, CalleeEntry->getInstList());
583 CalleeEntry->replaceAllUsesWith(OrigBB); // Update PHI nodes
584
585 // Remove the unconditional branch.
586 OrigBB->getInstList().erase(Br);
587
588 // Now we can remove the CalleeEntry block, which is now empty.
589 Caller->getBasicBlockList().erase(CalleeEntry);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000590
Chris Lattnerca398dc2003-05-29 15:11:31 +0000591 return true;
592}