blob: f7b4ab894a3bf45616ee41583961d7f57258e79b [file] [log] [blame]
Chris Lattner530d4bf2003-05-29 15:11:31 +00001//===- InlineFunction.cpp - Code to perform function inlining -------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner530d4bf2003-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 Lattner530d4bf2003-05-29 15:11:31 +000013//===----------------------------------------------------------------------===//
14
15#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattner6e79e552004-10-17 23:21:07 +000016#include "llvm/Constants.h"
Chris Lattnerfc3fe5c2003-08-24 04:06:56 +000017#include "llvm/DerivedTypes.h"
Chris Lattner530d4bf2003-05-29 15:11:31 +000018#include "llvm/Module.h"
Chris Lattner0cc265e2003-08-24 06:59:16 +000019#include "llvm/Instructions.h"
20#include "llvm/Intrinsics.h"
21#include "llvm/Support/CallSite.h"
Chris Lattnerdf3c3422004-01-09 06:12:26 +000022using namespace llvm;
Chris Lattner530d4bf2003-05-29 15:11:31 +000023
Chris Lattnerdf3c3422004-01-09 06:12:26 +000024bool llvm::InlineFunction(CallInst *CI) { return InlineFunction(CallSite(CI)); }
25bool llvm::InlineFunction(InvokeInst *II) {return InlineFunction(CallSite(II));}
Chris Lattner0cc265e2003-08-24 06:59:16 +000026
Chris Lattner908d7952006-01-13 19:05:59 +000027/// HandleInlinedInvoke - If we inlined an invoke site, we need to convert calls
28/// in the body of the inlined function into invokes and turn unwind
29/// instructions into branches to the invoke unwind dest.
30///
31/// II is the invoke instruction begin inlined. FirstNewBlock is the first
32/// block of the inlined code (the last block is the end of the function),
33/// and InlineCodeInfo is information about the code that got inlined.
34static void HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock,
35 ClonedCodeInfo &InlinedCodeInfo) {
36 BasicBlock *InvokeDest = II->getUnwindDest();
37 std::vector<Value*> InvokeDestPHIValues;
38
39 // If there are PHI nodes in the unwind destination block, we need to
40 // keep track of which values came into them from this invoke, then remove
41 // the entry for this block.
42 BasicBlock *InvokeBlock = II->getParent();
43 for (BasicBlock::iterator I = InvokeDest->begin(); isa<PHINode>(I); ++I) {
44 PHINode *PN = cast<PHINode>(I);
45 // Save the value to use for this edge.
46 InvokeDestPHIValues.push_back(PN->getIncomingValueForBlock(InvokeBlock));
47 }
48
49 Function *Caller = FirstNewBlock->getParent();
50
51 // The inlined code is currently at the end of the function, scan from the
52 // start of the inlined code to its end, checking for stuff we need to
53 // rewrite.
Chris Lattner19e6a082006-01-13 19:15:15 +000054 if (InlinedCodeInfo.ContainsCalls || InlinedCodeInfo.ContainsUnwinds) {
55 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
56 BB != E; ++BB) {
57 if (InlinedCodeInfo.ContainsCalls) {
58 for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ){
59 Instruction *I = BBI++;
60
61 // We only need to check for function calls: inlined invoke
62 // instructions require no special handling.
63 if (!isa<CallInst>(I)) continue;
64 CallInst *CI = cast<CallInst>(I);
Chris Lattner908d7952006-01-13 19:05:59 +000065
Chris Lattner19e6a082006-01-13 19:15:15 +000066 // If this is an intrinsic function call, don't convert it to an
67 // invoke.
68 if (CI->getCalledFunction() &&
69 CI->getCalledFunction()->getIntrinsicID())
70 continue;
71
72 // Convert this function call into an invoke instruction.
73 // First, split the basic block.
74 BasicBlock *Split = BB->splitBasicBlock(CI, CI->getName()+".noexc");
75
76 // Next, create the new invoke instruction, inserting it at the end
77 // of the old basic block.
78 InvokeInst *II =
79 new InvokeInst(CI->getCalledValue(), Split, InvokeDest,
80 std::vector<Value*>(CI->op_begin()+1, CI->op_end()),
81 CI->getName(), BB->getTerminator());
82 II->setCallingConv(CI->getCallingConv());
83
84 // Make sure that anything using the call now uses the invoke!
85 CI->replaceAllUsesWith(II);
86
87 // Delete the unconditional branch inserted by splitBasicBlock
88 BB->getInstList().pop_back();
89 Split->getInstList().pop_front(); // Delete the original call
90
91 // Update any PHI nodes in the exceptional block to indicate that
92 // there is now a new entry in them.
93 unsigned i = 0;
94 for (BasicBlock::iterator I = InvokeDest->begin();
95 isa<PHINode>(I); ++I, ++i) {
96 PHINode *PN = cast<PHINode>(I);
97 PN->addIncoming(InvokeDestPHIValues[i], BB);
98 }
99
100 // This basic block is now complete, start scanning the next one.
101 break;
102 }
Chris Lattner908d7952006-01-13 19:05:59 +0000103 }
Chris Lattner19e6a082006-01-13 19:15:15 +0000104
105 if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) {
106 // An UnwindInst requires special handling when it gets inlined into an
107 // invoke site. Once this happens, we know that the unwind would cause
108 // a control transfer to the invoke exception destination, so we can
109 // transform it into a direct branch to the exception destination.
110 new BranchInst(InvokeDest, UI);
Chris Lattner908d7952006-01-13 19:05:59 +0000111
Chris Lattner19e6a082006-01-13 19:15:15 +0000112 // Delete the unwind instruction!
113 UI->getParent()->getInstList().pop_back();
114
115 // Update any PHI nodes in the exceptional block to indicate that
116 // there is now a new entry in them.
117 unsigned i = 0;
118 for (BasicBlock::iterator I = InvokeDest->begin();
119 isa<PHINode>(I); ++I, ++i) {
120 PHINode *PN = cast<PHINode>(I);
121 PN->addIncoming(InvokeDestPHIValues[i], BB);
122 }
Chris Lattner908d7952006-01-13 19:05:59 +0000123 }
124 }
125 }
126
127 // Now that everything is happy, we have one final detail. The PHI nodes in
128 // the exception destination block still have entries due to the original
129 // invoke instruction. Eliminate these entries (which might even delete the
130 // PHI node) now.
131 InvokeDest->removePredecessor(II->getParent());
132}
133
134
Chris Lattner530d4bf2003-05-29 15:11:31 +0000135// InlineFunction - This function inlines the called function into the basic
136// block of the caller. This returns false if it is not possible to inline this
137// call. The program is still in a well defined state if this occurs though.
138//
Misha Brukmanb1c93172005-04-21 23:48:37 +0000139// Note that this only does one level of inlining. For example, if the
140// instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now
Chris Lattner530d4bf2003-05-29 15:11:31 +0000141// exists in the instruction stream. Similiarly this will inline a recursive
142// function by one level.
143//
Chris Lattnerdf3c3422004-01-09 06:12:26 +0000144bool llvm::InlineFunction(CallSite CS) {
Chris Lattner0cc265e2003-08-24 06:59:16 +0000145 Instruction *TheCall = CS.getInstruction();
146 assert(TheCall->getParent() && TheCall->getParent()->getParent() &&
147 "Instruction not in function!");
Chris Lattner530d4bf2003-05-29 15:11:31 +0000148
Chris Lattner0cc265e2003-08-24 06:59:16 +0000149 const Function *CalledFunc = CS.getCalledFunction();
Chris Lattner530d4bf2003-05-29 15:11:31 +0000150 if (CalledFunc == 0 || // Can't inline external function or indirect
151 CalledFunc->isExternal() || // call, or call to a vararg function!
152 CalledFunc->getFunctionType()->isVarArg()) return false;
153
Chris Lattner9f3dced2005-05-06 06:47:52 +0000154
155 // If the call to the callee is a non-tail call, we must clear the 'tail'
156 // flags on any calls that we inline.
157 bool MustClearTailCallFlags =
Chris Lattner7effa0e2005-05-06 17:13:16 +0000158 isa<CallInst>(TheCall) && !cast<CallInst>(TheCall)->isTailCall();
Chris Lattner9f3dced2005-05-06 06:47:52 +0000159
Chris Lattner0cc265e2003-08-24 06:59:16 +0000160 BasicBlock *OrigBB = TheCall->getParent();
Chris Lattner530d4bf2003-05-29 15:11:31 +0000161 Function *Caller = OrigBB->getParent();
162
Chris Lattner9fc977e2004-02-04 01:41:09 +0000163 // Get an iterator to the last basic block in the function, which will have
164 // the new function inlined after it.
165 //
166 Function::iterator LastBlock = &Caller->back();
167
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000168 // Make sure to capture all of the return instructions from the cloned
Chris Lattner530d4bf2003-05-29 15:11:31 +0000169 // function.
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000170 std::vector<ReturnInst*> Returns;
Chris Lattner908d7952006-01-13 19:05:59 +0000171 ClonedCodeInfo InlinedFunctionInfo;
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000172 { // Scope to destroy ValueMap after cloning.
173 // Calculate the vector of arguments to pass into the function cloner...
174 std::map<const Value*, Value*> ValueMap;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000175 assert(std::distance(CalledFunc->arg_begin(), CalledFunc->arg_end()) ==
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000176 std::distance(CS.arg_begin(), CS.arg_end()) &&
177 "No varargs calls can be inlined!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000178
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000179 CallSite::arg_iterator AI = CS.arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +0000180 for (Function::const_arg_iterator I = CalledFunc->arg_begin(),
181 E = CalledFunc->arg_end(); I != E; ++I, ++AI)
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000182 ValueMap[I] = *AI;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000183
184 // Clone the entire body of the callee into the caller.
Chris Lattner908d7952006-01-13 19:05:59 +0000185 CloneFunctionInto(Caller, CalledFunc, ValueMap, Returns, ".i",
186 &InlinedFunctionInfo);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000187 }
Chris Lattner6f8865b2004-02-04 21:33:42 +0000188
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000189 // Remember the first block that is newly cloned over.
190 Function::iterator FirstNewBlock = LastBlock; ++FirstNewBlock;
Chris Lattner530d4bf2003-05-29 15:11:31 +0000191
192 // If there are any alloca instructions in the block that used to be the entry
193 // block for the callee, move them to the entry block of the caller. First
194 // calculate which instruction they should be inserted before. We insert the
195 // instructions at the end of the current alloca list.
196 //
Chris Lattner257492c2006-01-13 18:16:48 +0000197 {
Chris Lattner0cc265e2003-08-24 06:59:16 +0000198 BasicBlock::iterator InsertPoint = Caller->begin()->begin();
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000199 for (BasicBlock::iterator I = FirstNewBlock->begin(),
200 E = FirstNewBlock->end(); I != E; )
Chris Lattnerb4778c72003-10-14 01:11:07 +0000201 if (AllocaInst *AI = dyn_cast<AllocaInst>(I++))
202 if (isa<Constant>(AI->getArraySize())) {
Chris Lattner257492c2006-01-13 18:16:48 +0000203 // Scan for the block of allocas that we can move over, and move them
204 // all at once.
Chris Lattner6f8865b2004-02-04 21:33:42 +0000205 while (isa<AllocaInst>(I) &&
206 isa<Constant>(cast<AllocaInst>(I)->getArraySize()))
207 ++I;
208
209 // Transfer all of the allocas over in a block. Using splice means
210 // that they instructions aren't removed from the symbol table, then
211 // reinserted.
212 Caller->front().getInstList().splice(InsertPoint,
213 FirstNewBlock->getInstList(),
214 AI, I);
Chris Lattnerb4778c72003-10-14 01:11:07 +0000215 }
Chris Lattner0cc265e2003-08-24 06:59:16 +0000216 }
Chris Lattner530d4bf2003-05-29 15:11:31 +0000217
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000218 // If we are inlining tail call instruction through an invoke or
Chris Lattner9f3dced2005-05-06 06:47:52 +0000219 if (MustClearTailCallFlags) {
220 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
221 BB != E; ++BB)
222 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
223 if (CallInst *CI = dyn_cast<CallInst>(I))
224 CI->setTailCall(false);
225 }
226
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000227 // If we are inlining for an invoke instruction, we must make sure to rewrite
228 // any inlined 'unwind' instructions into branches to the invoke exception
229 // destination, and call instructions into invoke instructions.
Chris Lattner908d7952006-01-13 19:05:59 +0000230 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall))
231 HandleInlinedInvoke(II, FirstNewBlock, InlinedFunctionInfo);
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000232
Chris Lattner0fa8c7c2004-02-04 04:17:06 +0000233 // If we cloned in _exactly one_ basic block, and if that block ends in a
234 // return instruction, we splice the body of the inlined callee directly into
235 // the calling basic block.
236 if (Returns.size() == 1 && std::distance(FirstNewBlock, Caller->end()) == 1) {
237 // Move all of the instructions right before the call.
238 OrigBB->getInstList().splice(TheCall, FirstNewBlock->getInstList(),
239 FirstNewBlock->begin(), FirstNewBlock->end());
240 // Remove the cloned basic block.
241 Caller->getBasicBlockList().pop_back();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000242
Chris Lattner0fa8c7c2004-02-04 04:17:06 +0000243 // If the call site was an invoke instruction, add a branch to the normal
244 // destination.
245 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall))
246 new BranchInst(II->getNormalDest(), TheCall);
247
248 // If the return instruction returned a value, replace uses of the call with
249 // uses of the returned value.
250 if (!TheCall->use_empty())
251 TheCall->replaceAllUsesWith(Returns[0]->getReturnValue());
252
253 // Since we are now done with the Call/Invoke, we can delete it.
254 TheCall->getParent()->getInstList().erase(TheCall);
255
256 // Since we are now done with the return instruction, delete it also.
257 Returns[0]->getParent()->getInstList().erase(Returns[0]);
258
259 // We are now done with the inlining.
260 return true;
261 }
262
263 // Otherwise, we have the normal case, of more than one block to inline or
264 // multiple return sites.
265
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000266 // We want to clone the entire callee function into the hole between the
267 // "starter" and "ender" blocks. How we accomplish this depends on whether
268 // this is an invoke instruction or a call instruction.
269 BasicBlock *AfterCallBB;
270 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000271
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000272 // Add an unconditional branch to make this look like the CallInst case...
273 BranchInst *NewBr = new BranchInst(II->getNormalDest(), TheCall);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000274
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000275 // Split the basic block. This guarantees that no PHI nodes will have to be
276 // updated due to new incoming edges, and make the invoke case more
277 // symmetric to the call case.
278 AfterCallBB = OrigBB->splitBasicBlock(NewBr,
Chris Lattnerffefea02004-12-11 16:59:54 +0000279 CalledFunc->getName()+".exit");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000280
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000281 } else { // It's a call
Chris Lattner0fa8c7c2004-02-04 04:17:06 +0000282 // If this is a call instruction, we need to split the basic block that
283 // the call lives in.
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000284 //
285 AfterCallBB = OrigBB->splitBasicBlock(TheCall,
Chris Lattnerffefea02004-12-11 16:59:54 +0000286 CalledFunc->getName()+".exit");
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000287 }
288
Chris Lattner0fa8c7c2004-02-04 04:17:06 +0000289 // Change the branch that used to go to AfterCallBB to branch to the first
290 // basic block of the inlined function.
291 //
292 TerminatorInst *Br = OrigBB->getTerminator();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000293 assert(Br && Br->getOpcode() == Instruction::Br &&
Chris Lattner0fa8c7c2004-02-04 04:17:06 +0000294 "splitBasicBlock broken!");
295 Br->setOperand(0, FirstNewBlock);
296
297
298 // Now that the function is correct, make it a little bit nicer. In
299 // particular, move the basic blocks inserted from the end of the function
300 // into the space made by splitting the source basic block.
301 //
302 Caller->getBasicBlockList().splice(AfterCallBB, Caller->getBasicBlockList(),
303 FirstNewBlock, Caller->end());
304
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000305 // Handle all of the return instructions that we just cloned in, and eliminate
306 // any users of the original call/invoke instruction.
307 if (Returns.size() > 1) {
308 // The PHI node should go at the front of the new basic block to merge all
309 // possible incoming values.
310 //
311 PHINode *PHI = 0;
312 if (!TheCall->use_empty()) {
313 PHI = new PHINode(CalledFunc->getReturnType(),
314 TheCall->getName(), AfterCallBB->begin());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000315
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000316 // Anything that used the result of the function call should now use the
317 // PHI node as their operand.
318 //
319 TheCall->replaceAllUsesWith(PHI);
320 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000321
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000322 // Loop over all of the return instructions, turning them into unconditional
323 // branches to the merge point now, and adding entries to the PHI node as
324 // appropriate.
325 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
326 ReturnInst *RI = Returns[i];
Misha Brukmanb1c93172005-04-21 23:48:37 +0000327
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000328 if (PHI) {
329 assert(RI->getReturnValue() && "Ret should have value!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000330 assert(RI->getReturnValue()->getType() == PHI->getType() &&
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000331 "Ret value not consistent in function!");
332 PHI->addIncoming(RI->getReturnValue(), RI->getParent());
333 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000334
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000335 // Add a branch to the merge point where the PHI node lives if it exists.
336 new BranchInst(AfterCallBB, RI);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000337
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000338 // Delete the return instruction now
339 RI->getParent()->getInstList().erase(RI);
340 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000341
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000342 } else if (!Returns.empty()) {
343 // Otherwise, if there is exactly one return value, just replace anything
344 // using the return value of the call with the computed value.
345 if (!TheCall->use_empty())
346 TheCall->replaceAllUsesWith(Returns[0]->getReturnValue());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000347
Chris Lattner0328d752004-04-16 05:17:59 +0000348 // Splice the code from the return block into the block that it will return
349 // to, which contains the code that was after the call.
350 BasicBlock *ReturnBB = Returns[0]->getParent();
Chris Lattner45b50d12004-07-20 05:45:24 +0000351 AfterCallBB->getInstList().splice(AfterCallBB->begin(),
352 ReturnBB->getInstList());
Chris Lattner0328d752004-04-16 05:17:59 +0000353
Chris Lattner45b50d12004-07-20 05:45:24 +0000354 // Update PHI nodes that use the ReturnBB to use the AfterCallBB.
355 ReturnBB->replaceAllUsesWith(AfterCallBB);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000356
Chris Lattner45b50d12004-07-20 05:45:24 +0000357 // Delete the return instruction now and empty ReturnBB now.
Chris Lattner6e79e552004-10-17 23:21:07 +0000358 Returns[0]->eraseFromParent();
359 ReturnBB->eraseFromParent();
360 } else if (!TheCall->use_empty()) {
361 // No returns, but something is using the return value of the call. Just
362 // nuke the result.
363 TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType()));
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000364 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000365
Chris Lattner18ef3fd2004-02-04 02:51:48 +0000366 // Since we are now done with the Call/Invoke, we can delete it.
Chris Lattner6e79e552004-10-17 23:21:07 +0000367 TheCall->eraseFromParent();
Chris Lattner530d4bf2003-05-29 15:11:31 +0000368
Chris Lattnerfc3fe5c2003-08-24 04:06:56 +0000369 // We should always be able to fold the entry block of the function into the
370 // single predecessor of the block...
Chris Lattner0328d752004-04-16 05:17:59 +0000371 assert(cast<BranchInst>(Br)->isUnconditional() && "splitBasicBlock broken!");
Chris Lattnerfc3fe5c2003-08-24 04:06:56 +0000372 BasicBlock *CalleeEntry = cast<BranchInst>(Br)->getSuccessor(0);
Chris Lattner0fa8c7c2004-02-04 04:17:06 +0000373
Chris Lattner0328d752004-04-16 05:17:59 +0000374 // Splice the code entry block into calling block, right before the
375 // unconditional branch.
376 OrigBB->getInstList().splice(Br, CalleeEntry->getInstList());
377 CalleeEntry->replaceAllUsesWith(OrigBB); // Update PHI nodes
378
379 // Remove the unconditional branch.
380 OrigBB->getInstList().erase(Br);
381
382 // Now we can remove the CalleeEntry block, which is now empty.
383 Caller->getBasicBlockList().erase(CalleeEntry);
Chris Lattner530d4bf2003-05-29 15:11:31 +0000384 return true;
385}