blob: 9735a2fcda444b0502fbfd83cc6f5cc5b69a47b6 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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"
Chris Lattner468fb1d2006-01-14 20:07:50 +000021#include "llvm/Analysis/CallGraph.h"
Chris Lattner93e985f2007-02-13 02:10:56 +000022#include "llvm/ADT/SmallVector.h"
Chris Lattner80a38d22003-08-24 06:59:16 +000023#include "llvm/Support/CallSite.h"
Chris Lattnerf7703df2004-01-09 06:12:26 +000024using namespace llvm;
Chris Lattnerca398dc2003-05-29 15:11:31 +000025
Chris Lattner1dfdf822007-01-30 23:22:39 +000026bool llvm::InlineFunction(CallInst *CI, CallGraph *CG, const TargetData *TD) {
27 return InlineFunction(CallSite(CI), CG, TD);
Chris Lattner468fb1d2006-01-14 20:07:50 +000028}
Chris Lattner1dfdf822007-01-30 23:22:39 +000029bool llvm::InlineFunction(InvokeInst *II, CallGraph *CG, const TargetData *TD) {
30 return InlineFunction(CallSite(II), CG, TD);
Chris Lattner468fb1d2006-01-14 20:07:50 +000031}
Chris Lattner80a38d22003-08-24 06:59:16 +000032
Chris Lattnercd4d3392006-01-13 19:05:59 +000033/// HandleInlinedInvoke - If we inlined an invoke site, we need to convert calls
34/// in the body of the inlined function into invokes and turn unwind
35/// instructions into branches to the invoke unwind dest.
36///
37/// II is the invoke instruction begin inlined. FirstNewBlock is the first
38/// block of the inlined code (the last block is the end of the function),
39/// and InlineCodeInfo is information about the code that got inlined.
40static void HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock,
41 ClonedCodeInfo &InlinedCodeInfo) {
42 BasicBlock *InvokeDest = II->getUnwindDest();
43 std::vector<Value*> InvokeDestPHIValues;
44
45 // If there are PHI nodes in the unwind destination block, we need to
46 // keep track of which values came into them from this invoke, then remove
47 // the entry for this block.
48 BasicBlock *InvokeBlock = II->getParent();
49 for (BasicBlock::iterator I = InvokeDest->begin(); isa<PHINode>(I); ++I) {
50 PHINode *PN = cast<PHINode>(I);
51 // Save the value to use for this edge.
52 InvokeDestPHIValues.push_back(PN->getIncomingValueForBlock(InvokeBlock));
53 }
54
55 Function *Caller = FirstNewBlock->getParent();
56
57 // The inlined code is currently at the end of the function, scan from the
58 // start of the inlined code to its end, checking for stuff we need to
59 // rewrite.
Chris Lattner727d1dd2006-01-13 19:15:15 +000060 if (InlinedCodeInfo.ContainsCalls || InlinedCodeInfo.ContainsUnwinds) {
61 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
62 BB != E; ++BB) {
63 if (InlinedCodeInfo.ContainsCalls) {
64 for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ){
65 Instruction *I = BBI++;
66
67 // We only need to check for function calls: inlined invoke
68 // instructions require no special handling.
69 if (!isa<CallInst>(I)) continue;
70 CallInst *CI = cast<CallInst>(I);
Chris Lattnercd4d3392006-01-13 19:05:59 +000071
Chris Lattnera6a996d2007-04-15 21:38:06 +000072 // If this is an intrinsic function call or an inline asm, don't
73 // convert it to an invoke.
74 if ((CI->getCalledFunction() &&
75 CI->getCalledFunction()->getIntrinsicID()) ||
76 isa<InlineAsm>(CI->getCalledValue()))
Chris Lattner727d1dd2006-01-13 19:15:15 +000077 continue;
78
79 // Convert this function call into an invoke instruction.
80 // First, split the basic block.
81 BasicBlock *Split = BB->splitBasicBlock(CI, CI->getName()+".noexc");
82
83 // Next, create the new invoke instruction, inserting it at the end
84 // of the old basic block.
Chris Lattner93e985f2007-02-13 02:10:56 +000085 SmallVector<Value*, 8> InvokeArgs(CI->op_begin()+1, CI->op_end());
Chris Lattner727d1dd2006-01-13 19:15:15 +000086 InvokeInst *II =
87 new InvokeInst(CI->getCalledValue(), Split, InvokeDest,
Chris Lattner93e985f2007-02-13 02:10:56 +000088 &InvokeArgs[0], InvokeArgs.size(),
Chris Lattner727d1dd2006-01-13 19:15:15 +000089 CI->getName(), BB->getTerminator());
90 II->setCallingConv(CI->getCallingConv());
91
92 // Make sure that anything using the call now uses the invoke!
93 CI->replaceAllUsesWith(II);
94
95 // Delete the unconditional branch inserted by splitBasicBlock
96 BB->getInstList().pop_back();
97 Split->getInstList().pop_front(); // Delete the original call
98
99 // Update any PHI nodes in the exceptional block to indicate that
100 // there is now a new entry in them.
101 unsigned i = 0;
102 for (BasicBlock::iterator I = InvokeDest->begin();
103 isa<PHINode>(I); ++I, ++i) {
104 PHINode *PN = cast<PHINode>(I);
105 PN->addIncoming(InvokeDestPHIValues[i], BB);
106 }
107
108 // This basic block is now complete, start scanning the next one.
109 break;
110 }
Chris Lattnercd4d3392006-01-13 19:05:59 +0000111 }
Chris Lattner727d1dd2006-01-13 19:15:15 +0000112
113 if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) {
114 // An UnwindInst requires special handling when it gets inlined into an
115 // invoke site. Once this happens, we know that the unwind would cause
116 // a control transfer to the invoke exception destination, so we can
117 // transform it into a direct branch to the exception destination.
118 new BranchInst(InvokeDest, UI);
Chris Lattnercd4d3392006-01-13 19:05:59 +0000119
Chris Lattner727d1dd2006-01-13 19:15:15 +0000120 // Delete the unwind instruction!
121 UI->getParent()->getInstList().pop_back();
122
123 // Update any PHI nodes in the exceptional block to indicate that
124 // there is now a new entry in them.
125 unsigned i = 0;
126 for (BasicBlock::iterator I = InvokeDest->begin();
127 isa<PHINode>(I); ++I, ++i) {
128 PHINode *PN = cast<PHINode>(I);
129 PN->addIncoming(InvokeDestPHIValues[i], BB);
130 }
Chris Lattnercd4d3392006-01-13 19:05:59 +0000131 }
132 }
133 }
134
135 // Now that everything is happy, we have one final detail. The PHI nodes in
136 // the exception destination block still have entries due to the original
137 // invoke instruction. Eliminate these entries (which might even delete the
138 // PHI node) now.
139 InvokeDest->removePredecessor(II->getParent());
140}
141
Chris Lattnerd85340f2006-07-12 18:29:36 +0000142/// UpdateCallGraphAfterInlining - Once we have cloned code over from a callee
143/// into the caller, update the specified callgraph to reflect the changes we
144/// made. Note that it's possible that not all code was copied over, so only
145/// some edges of the callgraph will be remain.
146static void UpdateCallGraphAfterInlining(const Function *Caller,
Chris Lattner468fb1d2006-01-14 20:07:50 +0000147 const Function *Callee,
Chris Lattnerd85340f2006-07-12 18:29:36 +0000148 Function::iterator FirstNewBlock,
Chris Lattner5e665f52007-02-03 00:08:31 +0000149 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattner468fb1d2006-01-14 20:07:50 +0000150 CallGraph &CG) {
151 // Update the call graph by deleting the edge from Callee to Caller
152 CallGraphNode *CalleeNode = CG[Callee];
153 CallGraphNode *CallerNode = CG[Caller];
154 CallerNode->removeCallEdgeTo(CalleeNode);
155
Chris Lattnerd85340f2006-07-12 18:29:36 +0000156 // Since we inlined some uninlined call sites in the callee into the caller,
Chris Lattner468fb1d2006-01-14 20:07:50 +0000157 // add edges from the caller to all of the callees of the callee.
158 for (CallGraphNode::iterator I = CalleeNode->begin(),
Chris Lattnerd85340f2006-07-12 18:29:36 +0000159 E = CalleeNode->end(); I != E; ++I) {
160 const Instruction *OrigCall = I->first.getInstruction();
161
Chris Lattner5e665f52007-02-03 00:08:31 +0000162 DenseMap<const Value*, Value*>::iterator VMI = ValueMap.find(OrigCall);
Chris Lattner981418b2006-07-12 21:37:11 +0000163 // Only copy the edge if the call was inlined!
164 if (VMI != ValueMap.end() && VMI->second) {
Chris Lattner1bb3a402006-07-12 18:37:18 +0000165 // If the call was inlined, but then constant folded, there is no edge to
166 // add. Check for this case.
167 if (Instruction *NewCall = dyn_cast<Instruction>(VMI->second))
168 CallerNode->addCalledFunction(CallSite::get(NewCall), I->second);
Chris Lattnerd85340f2006-07-12 18:29:36 +0000169 }
170 }
Chris Lattner468fb1d2006-01-14 20:07:50 +0000171}
172
Chris Lattnercd4d3392006-01-13 19:05:59 +0000173
Chris Lattnerca398dc2003-05-29 15:11:31 +0000174// InlineFunction - This function inlines the called function into the basic
175// block of the caller. This returns false if it is not possible to inline this
176// call. The program is still in a well defined state if this occurs though.
177//
Misha Brukmanfd939082005-04-21 23:48:37 +0000178// Note that this only does one level of inlining. For example, if the
179// instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now
Chris Lattnerca398dc2003-05-29 15:11:31 +0000180// exists in the instruction stream. Similiarly this will inline a recursive
181// function by one level.
182//
Chris Lattner1dfdf822007-01-30 23:22:39 +0000183bool llvm::InlineFunction(CallSite CS, CallGraph *CG, const TargetData *TD) {
Chris Lattner80a38d22003-08-24 06:59:16 +0000184 Instruction *TheCall = CS.getInstruction();
185 assert(TheCall->getParent() && TheCall->getParent()->getParent() &&
186 "Instruction not in function!");
Chris Lattnerca398dc2003-05-29 15:11:31 +0000187
Chris Lattner80a38d22003-08-24 06:59:16 +0000188 const Function *CalledFunc = CS.getCalledFunction();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000189 if (CalledFunc == 0 || // Can't inline external function or indirect
Reid Spencer5cbf9852007-01-30 20:08:39 +0000190 CalledFunc->isDeclaration() || // call, or call to a vararg function!
Chris Lattnerca398dc2003-05-29 15:11:31 +0000191 CalledFunc->getFunctionType()->isVarArg()) return false;
192
Chris Lattner1b491412005-05-06 06:47:52 +0000193
194 // If the call to the callee is a non-tail call, we must clear the 'tail'
195 // flags on any calls that we inline.
196 bool MustClearTailCallFlags =
Chris Lattner3799ed82005-05-06 17:13:16 +0000197 isa<CallInst>(TheCall) && !cast<CallInst>(TheCall)->isTailCall();
Chris Lattner1b491412005-05-06 06:47:52 +0000198
Chris Lattner80a38d22003-08-24 06:59:16 +0000199 BasicBlock *OrigBB = TheCall->getParent();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000200 Function *Caller = OrigBB->getParent();
201
Chris Lattner5052c912004-02-04 01:41:09 +0000202 // Get an iterator to the last basic block in the function, which will have
203 // the new function inlined after it.
204 //
205 Function::iterator LastBlock = &Caller->back();
206
Chris Lattner5e923de2004-02-04 02:51:48 +0000207 // Make sure to capture all of the return instructions from the cloned
Chris Lattnerca398dc2003-05-29 15:11:31 +0000208 // function.
Chris Lattner5e923de2004-02-04 02:51:48 +0000209 std::vector<ReturnInst*> Returns;
Chris Lattnercd4d3392006-01-13 19:05:59 +0000210 ClonedCodeInfo InlinedFunctionInfo;
Chris Lattnerd85340f2006-07-12 18:29:36 +0000211 Function::iterator FirstNewBlock;
212
Chris Lattner5e923de2004-02-04 02:51:48 +0000213 { // Scope to destroy ValueMap after cloning.
Chris Lattner5e665f52007-02-03 00:08:31 +0000214 DenseMap<const Value*, Value*> ValueMap;
Chris Lattner5b5bc302006-05-27 01:28:04 +0000215
216 // Calculate the vector of arguments to pass into the function cloner, which
217 // matches up the formal to the actual argument values.
Misha Brukmanfd939082005-04-21 23:48:37 +0000218 assert(std::distance(CalledFunc->arg_begin(), CalledFunc->arg_end()) ==
Chris Lattner5e923de2004-02-04 02:51:48 +0000219 std::distance(CS.arg_begin(), CS.arg_end()) &&
220 "No varargs calls can be inlined!");
Chris Lattner5e923de2004-02-04 02:51:48 +0000221 CallSite::arg_iterator AI = CS.arg_begin();
Chris Lattnere4d5c442005-03-15 04:54:21 +0000222 for (Function::const_arg_iterator I = CalledFunc->arg_begin(),
223 E = CalledFunc->arg_end(); I != E; ++I, ++AI)
Chris Lattner5e923de2004-02-04 02:51:48 +0000224 ValueMap[I] = *AI;
Misha Brukmanfd939082005-04-21 23:48:37 +0000225
Chris Lattner5b5bc302006-05-27 01:28:04 +0000226 // We want the inliner to prune the code as it copies. We would LOVE to
227 // have no dead or constant instructions leftover after inlining occurs
228 // (which can happen, e.g., because an argument was constant), but we'll be
229 // happy with whatever the cloner can do.
230 CloneAndPruneFunctionInto(Caller, CalledFunc, ValueMap, Returns, ".i",
Chris Lattner1dfdf822007-01-30 23:22:39 +0000231 &InlinedFunctionInfo, TD);
Chris Lattnerd85340f2006-07-12 18:29:36 +0000232
233 // Remember the first block that is newly cloned over.
234 FirstNewBlock = LastBlock; ++FirstNewBlock;
235
236 // Update the callgraph if requested.
237 if (CG)
238 UpdateCallGraphAfterInlining(Caller, CalledFunc, FirstNewBlock, ValueMap,
239 *CG);
Misha Brukmanfd939082005-04-21 23:48:37 +0000240 }
Chris Lattnerd85340f2006-07-12 18:29:36 +0000241
Chris Lattnerca398dc2003-05-29 15:11:31 +0000242 // If there are any alloca instructions in the block that used to be the entry
243 // block for the callee, move them to the entry block of the caller. First
244 // calculate which instruction they should be inserted before. We insert the
245 // instructions at the end of the current alloca list.
246 //
Chris Lattner21f20552006-01-13 18:16:48 +0000247 {
Chris Lattner80a38d22003-08-24 06:59:16 +0000248 BasicBlock::iterator InsertPoint = Caller->begin()->begin();
Chris Lattner5e923de2004-02-04 02:51:48 +0000249 for (BasicBlock::iterator I = FirstNewBlock->begin(),
250 E = FirstNewBlock->end(); I != E; )
Chris Lattner33bb3c82006-09-13 19:23:57 +0000251 if (AllocaInst *AI = dyn_cast<AllocaInst>(I++)) {
252 // If the alloca is now dead, remove it. This often occurs due to code
253 // specialization.
254 if (AI->use_empty()) {
255 AI->eraseFromParent();
256 continue;
257 }
258
Chris Lattnerf775f952003-10-14 01:11:07 +0000259 if (isa<Constant>(AI->getArraySize())) {
Chris Lattner21f20552006-01-13 18:16:48 +0000260 // Scan for the block of allocas that we can move over, and move them
261 // all at once.
Chris Lattnerc1df7e12004-02-04 21:33:42 +0000262 while (isa<AllocaInst>(I) &&
263 isa<Constant>(cast<AllocaInst>(I)->getArraySize()))
264 ++I;
265
266 // Transfer all of the allocas over in a block. Using splice means
Dan Gohmane26bff22007-02-20 20:52:03 +0000267 // that the instructions aren't removed from the symbol table, then
Chris Lattnerc1df7e12004-02-04 21:33:42 +0000268 // reinserted.
Dan Gohmanecb7a772007-03-22 16:38:57 +0000269 Caller->getEntryBlock().getInstList().splice(
270 InsertPoint,
271 FirstNewBlock->getInstList(),
272 AI, I);
Chris Lattnerf775f952003-10-14 01:11:07 +0000273 }
Chris Lattner33bb3c82006-09-13 19:23:57 +0000274 }
Chris Lattner80a38d22003-08-24 06:59:16 +0000275 }
Chris Lattnerca398dc2003-05-29 15:11:31 +0000276
Chris Lattnerbf229f42006-01-13 19:34:14 +0000277 // If the inlined code contained dynamic alloca instructions, wrap the inlined
278 // code with llvm.stacksave/llvm.stackrestore intrinsics.
279 if (InlinedFunctionInfo.ContainsDynamicAllocas) {
280 Module *M = Caller->getParent();
Chris Lattnera121fdd2007-01-07 07:54:34 +0000281 const Type *BytePtr = PointerType::get(Type::Int8Ty);
Chris Lattnerbf229f42006-01-13 19:34:14 +0000282 // Get the two intrinsics we care about.
Chris Lattnera121fdd2007-01-07 07:54:34 +0000283 Constant *StackSave, *StackRestore;
284 StackSave = M->getOrInsertFunction("llvm.stacksave", BytePtr, NULL);
Chris Lattnerbf229f42006-01-13 19:34:14 +0000285 StackRestore = M->getOrInsertFunction("llvm.stackrestore", Type::VoidTy,
Chris Lattnera121fdd2007-01-07 07:54:34 +0000286 BytePtr, NULL);
Chris Lattnerd85340f2006-07-12 18:29:36 +0000287
288 // If we are preserving the callgraph, add edges to the stacksave/restore
289 // functions for the calls we insert.
Chris Lattner21ba23d2006-07-18 21:48:57 +0000290 CallGraphNode *StackSaveCGN = 0, *StackRestoreCGN = 0, *CallerNode = 0;
Chris Lattnerd85340f2006-07-12 18:29:36 +0000291 if (CG) {
Chris Lattnera121fdd2007-01-07 07:54:34 +0000292 // We know that StackSave/StackRestore are Function*'s, because they are
293 // intrinsics which must have the right types.
294 StackSaveCGN = CG->getOrInsertFunction(cast<Function>(StackSave));
295 StackRestoreCGN = CG->getOrInsertFunction(cast<Function>(StackRestore));
Chris Lattnerd85340f2006-07-12 18:29:36 +0000296 CallerNode = (*CG)[Caller];
297 }
298
Chris Lattnerbf229f42006-01-13 19:34:14 +0000299 // Insert the llvm.stacksave.
Chris Lattnerd85340f2006-07-12 18:29:36 +0000300 CallInst *SavedPtr = new CallInst(StackSave, "savedstack",
301 FirstNewBlock->begin());
302 if (CG) CallerNode->addCalledFunction(SavedPtr, StackSaveCGN);
303
Chris Lattnerbf229f42006-01-13 19:34:14 +0000304 // Insert a call to llvm.stackrestore before any return instructions in the
305 // inlined function.
Chris Lattnerd85340f2006-07-12 18:29:36 +0000306 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
307 CallInst *CI = new CallInst(StackRestore, SavedPtr, "", Returns[i]);
308 if (CG) CallerNode->addCalledFunction(CI, StackRestoreCGN);
309 }
Chris Lattner468fb1d2006-01-14 20:07:50 +0000310
311 // Count the number of StackRestore calls we insert.
312 unsigned NumStackRestores = Returns.size();
Chris Lattnerbf229f42006-01-13 19:34:14 +0000313
314 // If we are inlining an invoke instruction, insert restores before each
315 // unwind. These unwinds will be rewritten into branches later.
316 if (InlinedFunctionInfo.ContainsUnwinds && isa<InvokeInst>(TheCall)) {
317 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
318 BB != E; ++BB)
Chris Lattner468fb1d2006-01-14 20:07:50 +0000319 if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) {
Chris Lattnerbf229f42006-01-13 19:34:14 +0000320 new CallInst(StackRestore, SavedPtr, "", UI);
Chris Lattner468fb1d2006-01-14 20:07:50 +0000321 ++NumStackRestores;
322 }
323 }
Chris Lattnerbf229f42006-01-13 19:34:14 +0000324 }
325
Chris Lattner1fdf4a82006-01-13 19:18:11 +0000326 // If we are inlining tail call instruction through a call site that isn't
327 // marked 'tail', we must remove the tail marker for any calls in the inlined
328 // code.
329 if (MustClearTailCallFlags && InlinedFunctionInfo.ContainsCalls) {
Chris Lattner1b491412005-05-06 06:47:52 +0000330 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
331 BB != E; ++BB)
332 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
333 if (CallInst *CI = dyn_cast<CallInst>(I))
334 CI->setTailCall(false);
335 }
336
Chris Lattner5e923de2004-02-04 02:51:48 +0000337 // If we are inlining for an invoke instruction, we must make sure to rewrite
338 // any inlined 'unwind' instructions into branches to the invoke exception
339 // destination, and call instructions into invoke instructions.
Chris Lattnercd4d3392006-01-13 19:05:59 +0000340 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall))
341 HandleInlinedInvoke(II, FirstNewBlock, InlinedFunctionInfo);
Chris Lattner5e923de2004-02-04 02:51:48 +0000342
Chris Lattner44a68072004-02-04 04:17:06 +0000343 // If we cloned in _exactly one_ basic block, and if that block ends in a
344 // return instruction, we splice the body of the inlined callee directly into
345 // the calling basic block.
346 if (Returns.size() == 1 && std::distance(FirstNewBlock, Caller->end()) == 1) {
347 // Move all of the instructions right before the call.
348 OrigBB->getInstList().splice(TheCall, FirstNewBlock->getInstList(),
349 FirstNewBlock->begin(), FirstNewBlock->end());
350 // Remove the cloned basic block.
351 Caller->getBasicBlockList().pop_back();
Misha Brukmanfd939082005-04-21 23:48:37 +0000352
Chris Lattner44a68072004-02-04 04:17:06 +0000353 // If the call site was an invoke instruction, add a branch to the normal
354 // destination.
355 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall))
356 new BranchInst(II->getNormalDest(), TheCall);
357
358 // If the return instruction returned a value, replace uses of the call with
359 // uses of the returned value.
360 if (!TheCall->use_empty())
361 TheCall->replaceAllUsesWith(Returns[0]->getReturnValue());
362
363 // Since we are now done with the Call/Invoke, we can delete it.
364 TheCall->getParent()->getInstList().erase(TheCall);
365
366 // Since we are now done with the return instruction, delete it also.
367 Returns[0]->getParent()->getInstList().erase(Returns[0]);
368
369 // We are now done with the inlining.
370 return true;
371 }
372
373 // Otherwise, we have the normal case, of more than one block to inline or
374 // multiple return sites.
375
Chris Lattner5e923de2004-02-04 02:51:48 +0000376 // We want to clone the entire callee function into the hole between the
377 // "starter" and "ender" blocks. How we accomplish this depends on whether
378 // this is an invoke instruction or a call instruction.
379 BasicBlock *AfterCallBB;
380 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000381
Chris Lattner5e923de2004-02-04 02:51:48 +0000382 // Add an unconditional branch to make this look like the CallInst case...
383 BranchInst *NewBr = new BranchInst(II->getNormalDest(), TheCall);
Misha Brukmanfd939082005-04-21 23:48:37 +0000384
Chris Lattner5e923de2004-02-04 02:51:48 +0000385 // Split the basic block. This guarantees that no PHI nodes will have to be
386 // updated due to new incoming edges, and make the invoke case more
387 // symmetric to the call case.
388 AfterCallBB = OrigBB->splitBasicBlock(NewBr,
Chris Lattner284d1b82004-12-11 16:59:54 +0000389 CalledFunc->getName()+".exit");
Misha Brukmanfd939082005-04-21 23:48:37 +0000390
Chris Lattner5e923de2004-02-04 02:51:48 +0000391 } else { // It's a call
Chris Lattner44a68072004-02-04 04:17:06 +0000392 // If this is a call instruction, we need to split the basic block that
393 // the call lives in.
Chris Lattner5e923de2004-02-04 02:51:48 +0000394 //
395 AfterCallBB = OrigBB->splitBasicBlock(TheCall,
Chris Lattner284d1b82004-12-11 16:59:54 +0000396 CalledFunc->getName()+".exit");
Chris Lattner5e923de2004-02-04 02:51:48 +0000397 }
398
Chris Lattner44a68072004-02-04 04:17:06 +0000399 // Change the branch that used to go to AfterCallBB to branch to the first
400 // basic block of the inlined function.
401 //
402 TerminatorInst *Br = OrigBB->getTerminator();
Misha Brukmanfd939082005-04-21 23:48:37 +0000403 assert(Br && Br->getOpcode() == Instruction::Br &&
Chris Lattner44a68072004-02-04 04:17:06 +0000404 "splitBasicBlock broken!");
405 Br->setOperand(0, FirstNewBlock);
406
407
408 // Now that the function is correct, make it a little bit nicer. In
409 // particular, move the basic blocks inserted from the end of the function
410 // into the space made by splitting the source basic block.
411 //
412 Caller->getBasicBlockList().splice(AfterCallBB, Caller->getBasicBlockList(),
413 FirstNewBlock, Caller->end());
414
Chris Lattner5e923de2004-02-04 02:51:48 +0000415 // Handle all of the return instructions that we just cloned in, and eliminate
416 // any users of the original call/invoke instruction.
417 if (Returns.size() > 1) {
418 // The PHI node should go at the front of the new basic block to merge all
419 // possible incoming values.
420 //
421 PHINode *PHI = 0;
422 if (!TheCall->use_empty()) {
423 PHI = new PHINode(CalledFunc->getReturnType(),
424 TheCall->getName(), AfterCallBB->begin());
Misha Brukmanfd939082005-04-21 23:48:37 +0000425
Chris Lattner5e923de2004-02-04 02:51:48 +0000426 // Anything that used the result of the function call should now use the
427 // PHI node as their operand.
428 //
429 TheCall->replaceAllUsesWith(PHI);
430 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000431
Chris Lattner5e923de2004-02-04 02:51:48 +0000432 // Loop over all of the return instructions, turning them into unconditional
433 // branches to the merge point now, and adding entries to the PHI node as
434 // appropriate.
435 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
436 ReturnInst *RI = Returns[i];
Misha Brukmanfd939082005-04-21 23:48:37 +0000437
Chris Lattner5e923de2004-02-04 02:51:48 +0000438 if (PHI) {
439 assert(RI->getReturnValue() && "Ret should have value!");
Misha Brukmanfd939082005-04-21 23:48:37 +0000440 assert(RI->getReturnValue()->getType() == PHI->getType() &&
Chris Lattner5e923de2004-02-04 02:51:48 +0000441 "Ret value not consistent in function!");
442 PHI->addIncoming(RI->getReturnValue(), RI->getParent());
443 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000444
Chris Lattner5e923de2004-02-04 02:51:48 +0000445 // Add a branch to the merge point where the PHI node lives if it exists.
446 new BranchInst(AfterCallBB, RI);
Misha Brukmanfd939082005-04-21 23:48:37 +0000447
Chris Lattner5e923de2004-02-04 02:51:48 +0000448 // Delete the return instruction now
449 RI->getParent()->getInstList().erase(RI);
450 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000451
Chris Lattner5e923de2004-02-04 02:51:48 +0000452 } else if (!Returns.empty()) {
453 // Otherwise, if there is exactly one return value, just replace anything
454 // using the return value of the call with the computed value.
455 if (!TheCall->use_empty())
456 TheCall->replaceAllUsesWith(Returns[0]->getReturnValue());
Misha Brukmanfd939082005-04-21 23:48:37 +0000457
Chris Lattnercd01ae52004-04-16 05:17:59 +0000458 // Splice the code from the return block into the block that it will return
459 // to, which contains the code that was after the call.
460 BasicBlock *ReturnBB = Returns[0]->getParent();
Chris Lattneradfd32f2004-07-20 05:45:24 +0000461 AfterCallBB->getInstList().splice(AfterCallBB->begin(),
462 ReturnBB->getInstList());
Chris Lattnercd01ae52004-04-16 05:17:59 +0000463
Chris Lattneradfd32f2004-07-20 05:45:24 +0000464 // Update PHI nodes that use the ReturnBB to use the AfterCallBB.
465 ReturnBB->replaceAllUsesWith(AfterCallBB);
Misha Brukmanfd939082005-04-21 23:48:37 +0000466
Chris Lattneradfd32f2004-07-20 05:45:24 +0000467 // Delete the return instruction now and empty ReturnBB now.
Chris Lattner3787e762004-10-17 23:21:07 +0000468 Returns[0]->eraseFromParent();
469 ReturnBB->eraseFromParent();
470 } else if (!TheCall->use_empty()) {
471 // No returns, but something is using the return value of the call. Just
472 // nuke the result.
473 TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType()));
Chris Lattner5e923de2004-02-04 02:51:48 +0000474 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000475
Chris Lattner5e923de2004-02-04 02:51:48 +0000476 // Since we are now done with the Call/Invoke, we can delete it.
Chris Lattner3787e762004-10-17 23:21:07 +0000477 TheCall->eraseFromParent();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000478
Chris Lattner7152c232003-08-24 04:06:56 +0000479 // We should always be able to fold the entry block of the function into the
480 // single predecessor of the block...
Chris Lattnercd01ae52004-04-16 05:17:59 +0000481 assert(cast<BranchInst>(Br)->isUnconditional() && "splitBasicBlock broken!");
Chris Lattner7152c232003-08-24 04:06:56 +0000482 BasicBlock *CalleeEntry = cast<BranchInst>(Br)->getSuccessor(0);
Chris Lattner44a68072004-02-04 04:17:06 +0000483
Chris Lattnercd01ae52004-04-16 05:17:59 +0000484 // Splice the code entry block into calling block, right before the
485 // unconditional branch.
486 OrigBB->getInstList().splice(Br, CalleeEntry->getInstList());
487 CalleeEntry->replaceAllUsesWith(OrigBB); // Update PHI nodes
488
489 // Remove the unconditional branch.
490 OrigBB->getInstList().erase(Br);
491
492 // Now we can remove the CalleeEntry block, which is now empty.
493 Caller->getBasicBlockList().erase(CalleeEntry);
Chris Lattner468fb1d2006-01-14 20:07:50 +0000494
Chris Lattnerca398dc2003-05-29 15:11:31 +0000495 return true;
496}