blob: d6382af379c0a5c493fe67f2e6df5a97e72dca01 [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"
Owen Anderson0a205a42009-07-05 22:41:43 +000018#include "llvm/LLVMContext.h"
Chris Lattnerca398dc2003-05-29 15:11:31 +000019#include "llvm/Module.h"
Chris Lattner80a38d22003-08-24 06:59:16 +000020#include "llvm/Instructions.h"
Devang Patel517576d2009-04-15 00:17:06 +000021#include "llvm/IntrinsicInst.h"
Chris Lattner80a38d22003-08-24 06:59:16 +000022#include "llvm/Intrinsics.h"
Devang Pateleaf42ab2008-09-23 23:03:40 +000023#include "llvm/Attributes.h"
Chris Lattner468fb1d2006-01-14 20:07:50 +000024#include "llvm/Analysis/CallGraph.h"
Devang Patel517576d2009-04-15 00:17:06 +000025#include "llvm/Analysis/DebugInfo.h"
Chris Lattnerc93adca2008-01-11 06:09:30 +000026#include "llvm/Target/TargetData.h"
Chris Lattner93e985f2007-02-13 02:10:56 +000027#include "llvm/ADT/SmallVector.h"
Devang Patel641ca932008-03-10 18:22:16 +000028#include "llvm/ADT/StringExtras.h"
Chris Lattner80a38d22003-08-24 06:59:16 +000029#include "llvm/Support/CallSite.h"
Chris Lattnerf7703df2004-01-09 06:12:26 +000030using namespace llvm;
Chris Lattnerca398dc2003-05-29 15:11:31 +000031
Chris Lattner1dfdf822007-01-30 23:22:39 +000032bool llvm::InlineFunction(CallInst *CI, CallGraph *CG, const TargetData *TD) {
33 return InlineFunction(CallSite(CI), CG, TD);
Chris Lattner468fb1d2006-01-14 20:07:50 +000034}
Chris Lattner1dfdf822007-01-30 23:22:39 +000035bool llvm::InlineFunction(InvokeInst *II, CallGraph *CG, const TargetData *TD) {
36 return InlineFunction(CallSite(II), CG, TD);
Chris Lattner468fb1d2006-01-14 20:07:50 +000037}
Chris Lattner80a38d22003-08-24 06:59:16 +000038
Chris Lattnercd4d3392006-01-13 19:05:59 +000039/// HandleInlinedInvoke - If we inlined an invoke site, we need to convert calls
40/// in the body of the inlined function into invokes and turn unwind
41/// instructions into branches to the invoke unwind dest.
42///
Nick Lewyckydac5c4b2009-02-03 04:34:40 +000043/// II is the invoke instruction being inlined. FirstNewBlock is the first
Chris Lattnercd4d3392006-01-13 19:05:59 +000044/// block of the inlined code (the last block is the end of the function),
45/// and InlineCodeInfo is information about the code that got inlined.
46static void HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock,
Devang Patel28c531c2009-03-31 17:36:12 +000047 ClonedCodeInfo &InlinedCodeInfo,
48 CallGraph *CG) {
Chris Lattnercd4d3392006-01-13 19:05:59 +000049 BasicBlock *InvokeDest = II->getUnwindDest();
50 std::vector<Value*> InvokeDestPHIValues;
51
52 // If there are PHI nodes in the unwind destination block, we need to
53 // keep track of which values came into them from this invoke, then remove
54 // the entry for this block.
55 BasicBlock *InvokeBlock = II->getParent();
56 for (BasicBlock::iterator I = InvokeDest->begin(); isa<PHINode>(I); ++I) {
57 PHINode *PN = cast<PHINode>(I);
58 // Save the value to use for this edge.
59 InvokeDestPHIValues.push_back(PN->getIncomingValueForBlock(InvokeBlock));
60 }
61
62 Function *Caller = FirstNewBlock->getParent();
Duncan Sandsa7212e52008-09-05 12:37:12 +000063
Chris Lattnercd4d3392006-01-13 19:05:59 +000064 // The inlined code is currently at the end of the function, scan from the
65 // start of the inlined code to its end, checking for stuff we need to
66 // rewrite.
Chris Lattner727d1dd2006-01-13 19:15:15 +000067 if (InlinedCodeInfo.ContainsCalls || InlinedCodeInfo.ContainsUnwinds) {
68 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
69 BB != E; ++BB) {
70 if (InlinedCodeInfo.ContainsCalls) {
71 for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ){
72 Instruction *I = BBI++;
Duncan Sandsa7212e52008-09-05 12:37:12 +000073
Chris Lattner727d1dd2006-01-13 19:15:15 +000074 // We only need to check for function calls: inlined invoke
75 // instructions require no special handling.
76 if (!isa<CallInst>(I)) continue;
77 CallInst *CI = cast<CallInst>(I);
Chris Lattnercd4d3392006-01-13 19:05:59 +000078
Duncan Sandsfd7b3262007-12-17 18:08:19 +000079 // If this call cannot unwind, don't convert it to an invoke.
Duncan Sands2b0e8992007-12-18 09:59:50 +000080 if (CI->doesNotThrow())
Chris Lattner727d1dd2006-01-13 19:15:15 +000081 continue;
Duncan Sandsa3355ff2007-12-03 20:06:50 +000082
Chris Lattner727d1dd2006-01-13 19:15:15 +000083 // Convert this function call into an invoke instruction.
84 // First, split the basic block.
85 BasicBlock *Split = BB->splitBasicBlock(CI, CI->getName()+".noexc");
Duncan Sandsa7212e52008-09-05 12:37:12 +000086
Chris Lattner727d1dd2006-01-13 19:15:15 +000087 // Next, create the new invoke instruction, inserting it at the end
88 // of the old basic block.
Chris Lattner93e985f2007-02-13 02:10:56 +000089 SmallVector<Value*, 8> InvokeArgs(CI->op_begin()+1, CI->op_end());
Chris Lattner727d1dd2006-01-13 19:15:15 +000090 InvokeInst *II =
Gabor Greif051a9502008-04-06 20:25:17 +000091 InvokeInst::Create(CI->getCalledValue(), Split, InvokeDest,
92 InvokeArgs.begin(), InvokeArgs.end(),
93 CI->getName(), BB->getTerminator());
Chris Lattner727d1dd2006-01-13 19:15:15 +000094 II->setCallingConv(CI->getCallingConv());
Devang Patel05988662008-09-25 21:00:45 +000095 II->setAttributes(CI->getAttributes());
Duncan Sandsa7212e52008-09-05 12:37:12 +000096
Chris Lattner727d1dd2006-01-13 19:15:15 +000097 // Make sure that anything using the call now uses the invoke!
98 CI->replaceAllUsesWith(II);
Duncan Sandsa7212e52008-09-05 12:37:12 +000099
Devang Patel28c531c2009-03-31 17:36:12 +0000100 // Update the callgraph.
101 if (CG) {
102 // We should be able to do this:
103 // (*CG)[Caller]->replaceCallSite(CI, II);
104 // but that fails if the old call site isn't in the call graph,
105 // which, because of LLVM bug 3601, it sometimes isn't.
106 CallGraphNode *CGN = (*CG)[Caller];
107 for (CallGraphNode::iterator NI = CGN->begin(), NE = CGN->end();
108 NI != NE; ++NI) {
109 if (NI->first == CI) {
110 NI->first = II;
111 break;
112 }
113 }
114 }
115
Chris Lattner727d1dd2006-01-13 19:15:15 +0000116 // Delete the unconditional branch inserted by splitBasicBlock
117 BB->getInstList().pop_back();
118 Split->getInstList().pop_front(); // Delete the original call
Duncan Sandsa7212e52008-09-05 12:37:12 +0000119
Chris Lattner727d1dd2006-01-13 19:15:15 +0000120 // Update any PHI nodes in the exceptional block to indicate that
121 // there is now a new entry in them.
122 unsigned i = 0;
123 for (BasicBlock::iterator I = InvokeDest->begin();
124 isa<PHINode>(I); ++I, ++i) {
125 PHINode *PN = cast<PHINode>(I);
126 PN->addIncoming(InvokeDestPHIValues[i], BB);
127 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000128
Chris Lattner727d1dd2006-01-13 19:15:15 +0000129 // This basic block is now complete, start scanning the next one.
130 break;
131 }
Chris Lattnercd4d3392006-01-13 19:05:59 +0000132 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000133
Chris Lattner727d1dd2006-01-13 19:15:15 +0000134 if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) {
135 // An UnwindInst requires special handling when it gets inlined into an
136 // invoke site. Once this happens, we know that the unwind would cause
137 // a control transfer to the invoke exception destination, so we can
138 // transform it into a direct branch to the exception destination.
Gabor Greif051a9502008-04-06 20:25:17 +0000139 BranchInst::Create(InvokeDest, UI);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000140
Chris Lattner727d1dd2006-01-13 19:15:15 +0000141 // Delete the unwind instruction!
Dan Gohman1adec832008-06-21 22:08:46 +0000142 UI->eraseFromParent();
Duncan Sandsa7212e52008-09-05 12:37:12 +0000143
Chris Lattner727d1dd2006-01-13 19:15:15 +0000144 // Update any PHI nodes in the exceptional block to indicate that
145 // there is now a new entry in them.
146 unsigned i = 0;
147 for (BasicBlock::iterator I = InvokeDest->begin();
148 isa<PHINode>(I); ++I, ++i) {
149 PHINode *PN = cast<PHINode>(I);
150 PN->addIncoming(InvokeDestPHIValues[i], BB);
151 }
Chris Lattnercd4d3392006-01-13 19:05:59 +0000152 }
153 }
154 }
155
156 // Now that everything is happy, we have one final detail. The PHI nodes in
157 // the exception destination block still have entries due to the original
158 // invoke instruction. Eliminate these entries (which might even delete the
159 // PHI node) now.
160 InvokeDest->removePredecessor(II->getParent());
161}
162
Chris Lattnerd85340f2006-07-12 18:29:36 +0000163/// UpdateCallGraphAfterInlining - Once we have cloned code over from a callee
164/// into the caller, update the specified callgraph to reflect the changes we
165/// made. Note that it's possible that not all code was copied over, so only
Duncan Sandsd7b98512008-09-08 11:05:51 +0000166/// some edges of the callgraph may remain.
167static void UpdateCallGraphAfterInlining(CallSite CS,
Chris Lattnerd85340f2006-07-12 18:29:36 +0000168 Function::iterator FirstNewBlock,
Chris Lattner5e665f52007-02-03 00:08:31 +0000169 DenseMap<const Value*, Value*> &ValueMap,
Chris Lattner468fb1d2006-01-14 20:07:50 +0000170 CallGraph &CG) {
Duncan Sandsd7b98512008-09-08 11:05:51 +0000171 const Function *Caller = CS.getInstruction()->getParent()->getParent();
172 const Function *Callee = CS.getCalledFunction();
Chris Lattner468fb1d2006-01-14 20:07:50 +0000173 CallGraphNode *CalleeNode = CG[Callee];
174 CallGraphNode *CallerNode = CG[Caller];
Duncan Sandsa7212e52008-09-05 12:37:12 +0000175
Chris Lattnerd85340f2006-07-12 18:29:36 +0000176 // Since we inlined some uninlined call sites in the callee into the caller,
Chris Lattner468fb1d2006-01-14 20:07:50 +0000177 // add edges from the caller to all of the callees of the callee.
Gabor Greifc478e522009-01-15 18:40:09 +0000178 CallGraphNode::iterator I = CalleeNode->begin(), E = CalleeNode->end();
179
180 // Consider the case where CalleeNode == CallerNode.
Gabor Greif12532982009-01-17 00:09:08 +0000181 CallGraphNode::CalledFunctionsVector CallCache;
Gabor Greifc478e522009-01-15 18:40:09 +0000182 if (CalleeNode == CallerNode) {
183 CallCache.assign(I, E);
184 I = CallCache.begin();
185 E = CallCache.end();
186 }
187
188 for (; I != E; ++I) {
Chris Lattnerd85340f2006-07-12 18:29:36 +0000189 const Instruction *OrigCall = I->first.getInstruction();
Duncan Sandsa7212e52008-09-05 12:37:12 +0000190
Chris Lattner5e665f52007-02-03 00:08:31 +0000191 DenseMap<const Value*, Value*>::iterator VMI = ValueMap.find(OrigCall);
Chris Lattner981418b2006-07-12 21:37:11 +0000192 // Only copy the edge if the call was inlined!
193 if (VMI != ValueMap.end() && VMI->second) {
Chris Lattner1bb3a402006-07-12 18:37:18 +0000194 // If the call was inlined, but then constant folded, there is no edge to
195 // add. Check for this case.
196 if (Instruction *NewCall = dyn_cast<Instruction>(VMI->second))
197 CallerNode->addCalledFunction(CallSite::get(NewCall), I->second);
Chris Lattnerd85340f2006-07-12 18:29:36 +0000198 }
199 }
Dale Johannesen39fa3242009-01-13 22:43:37 +0000200 // Update the call graph by deleting the edge from Callee to Caller. We must
201 // do this after the loop above in case Caller and Callee are the same.
202 CallerNode->removeCallEdgeFor(CS);
Chris Lattner468fb1d2006-01-14 20:07:50 +0000203}
204
Devang Patel517576d2009-04-15 00:17:06 +0000205/// findFnRegionEndMarker - This is a utility routine that is used by
206/// InlineFunction. Return llvm.dbg.region.end intrinsic that corresponds
207/// to the llvm.dbg.func.start of the function F. Otherwise return NULL.
208static const DbgRegionEndInst *findFnRegionEndMarker(const Function *F) {
209
210 GlobalVariable *FnStart = NULL;
211 const DbgRegionEndInst *FnEnd = NULL;
212 for (Function::const_iterator FI = F->begin(), FE =F->end(); FI != FE; ++FI)
213 for (BasicBlock::const_iterator BI = FI->begin(), BE = FI->end(); BI != BE;
214 ++BI) {
215 if (FnStart == NULL) {
216 if (const DbgFuncStartInst *FSI = dyn_cast<DbgFuncStartInst>(BI)) {
217 DISubprogram SP(cast<GlobalVariable>(FSI->getSubprogram()));
218 assert (SP.isNull() == false && "Invalid llvm.dbg.func.start");
219 if (SP.describes(F))
220 FnStart = SP.getGV();
221 }
222 } else {
223 if (const DbgRegionEndInst *REI = dyn_cast<DbgRegionEndInst>(BI))
224 if (REI->getContext() == FnStart)
225 FnEnd = REI;
226 }
227 }
228 return FnEnd;
229}
Chris Lattnercd4d3392006-01-13 19:05:59 +0000230
Chris Lattnerca398dc2003-05-29 15:11:31 +0000231// InlineFunction - This function inlines the called function into the basic
232// block of the caller. This returns false if it is not possible to inline this
233// call. The program is still in a well defined state if this occurs though.
234//
Misha Brukmanfd939082005-04-21 23:48:37 +0000235// Note that this only does one level of inlining. For example, if the
236// instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now
Chris Lattnerca398dc2003-05-29 15:11:31 +0000237// exists in the instruction stream. Similiarly this will inline a recursive
238// function by one level.
239//
Chris Lattner1dfdf822007-01-30 23:22:39 +0000240bool llvm::InlineFunction(CallSite CS, CallGraph *CG, const TargetData *TD) {
Chris Lattner80a38d22003-08-24 06:59:16 +0000241 Instruction *TheCall = CS.getInstruction();
Owen Andersone922c022009-07-22 00:24:57 +0000242 LLVMContext &Context = TheCall->getContext();
Chris Lattner80a38d22003-08-24 06:59:16 +0000243 assert(TheCall->getParent() && TheCall->getParent()->getParent() &&
244 "Instruction not in function!");
Chris Lattnerca398dc2003-05-29 15:11:31 +0000245
Chris Lattner80a38d22003-08-24 06:59:16 +0000246 const Function *CalledFunc = CS.getCalledFunction();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000247 if (CalledFunc == 0 || // Can't inline external function or indirect
Reid Spencer5cbf9852007-01-30 20:08:39 +0000248 CalledFunc->isDeclaration() || // call, or call to a vararg function!
Chris Lattnerca398dc2003-05-29 15:11:31 +0000249 CalledFunc->getFunctionType()->isVarArg()) return false;
250
Chris Lattner1b491412005-05-06 06:47:52 +0000251
Chris Lattneraf9985c2009-02-12 07:06:42 +0000252 // If the call to the callee is not a tail call, we must clear the 'tail'
Chris Lattner1b491412005-05-06 06:47:52 +0000253 // flags on any calls that we inline.
254 bool MustClearTailCallFlags =
Chris Lattneraf9985c2009-02-12 07:06:42 +0000255 !(isa<CallInst>(TheCall) && cast<CallInst>(TheCall)->isTailCall());
Chris Lattner1b491412005-05-06 06:47:52 +0000256
Duncan Sandsf0c33542007-12-19 21:13:37 +0000257 // If the call to the callee cannot throw, set the 'nounwind' flag on any
258 // calls that we inline.
259 bool MarkNoUnwind = CS.doesNotThrow();
260
Chris Lattner80a38d22003-08-24 06:59:16 +0000261 BasicBlock *OrigBB = TheCall->getParent();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000262 Function *Caller = OrigBB->getParent();
263
Gordon Henriksen0e138212007-12-25 03:10:07 +0000264 // GC poses two hazards to inlining, which only occur when the callee has GC:
265 // 1. If the caller has no GC, then the callee's GC must be propagated to the
266 // caller.
267 // 2. If the caller has a differing GC, it is invalid to inline.
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000268 if (CalledFunc->hasGC()) {
269 if (!Caller->hasGC())
270 Caller->setGC(CalledFunc->getGC());
271 else if (CalledFunc->getGC() != Caller->getGC())
Gordon Henriksen0e138212007-12-25 03:10:07 +0000272 return false;
273 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000274
Chris Lattner5052c912004-02-04 01:41:09 +0000275 // Get an iterator to the last basic block in the function, which will have
276 // the new function inlined after it.
277 //
278 Function::iterator LastBlock = &Caller->back();
279
Chris Lattner5e923de2004-02-04 02:51:48 +0000280 // Make sure to capture all of the return instructions from the cloned
Chris Lattnerca398dc2003-05-29 15:11:31 +0000281 // function.
Chris Lattner5e923de2004-02-04 02:51:48 +0000282 std::vector<ReturnInst*> Returns;
Chris Lattnercd4d3392006-01-13 19:05:59 +0000283 ClonedCodeInfo InlinedFunctionInfo;
Dale Johannesen0744f092009-03-04 02:09:48 +0000284 Function::iterator FirstNewBlock;
Duncan Sandsf0c33542007-12-19 21:13:37 +0000285
Chris Lattner5e923de2004-02-04 02:51:48 +0000286 { // Scope to destroy ValueMap after cloning.
Chris Lattner5e665f52007-02-03 00:08:31 +0000287 DenseMap<const Value*, Value*> ValueMap;
Chris Lattner5b5bc302006-05-27 01:28:04 +0000288
Dan Gohman9614fcc2008-06-20 17:11:32 +0000289 assert(CalledFunc->arg_size() == CS.arg_size() &&
Chris Lattner5e923de2004-02-04 02:51:48 +0000290 "No varargs calls can be inlined!");
Duncan Sandsa7212e52008-09-05 12:37:12 +0000291
Chris Lattnerc93adca2008-01-11 06:09:30 +0000292 // Calculate the vector of arguments to pass into the function cloner, which
293 // matches up the formal to the actual argument values.
Chris Lattner5e923de2004-02-04 02:51:48 +0000294 CallSite::arg_iterator AI = CS.arg_begin();
Chris Lattnerc93adca2008-01-11 06:09:30 +0000295 unsigned ArgNo = 0;
Chris Lattnere4d5c442005-03-15 04:54:21 +0000296 for (Function::const_arg_iterator I = CalledFunc->arg_begin(),
Chris Lattnerc93adca2008-01-11 06:09:30 +0000297 E = CalledFunc->arg_end(); I != E; ++I, ++AI, ++ArgNo) {
298 Value *ActualArg = *AI;
Duncan Sandsa7212e52008-09-05 12:37:12 +0000299
Duncan Sandsd82375c2008-01-27 18:12:58 +0000300 // When byval arguments actually inlined, we need to make the copy implied
301 // by them explicit. However, we don't do this if the callee is readonly
302 // or readnone, because the copy would be unneeded: the callee doesn't
303 // modify the struct.
Devang Patel05988662008-09-25 21:00:45 +0000304 if (CalledFunc->paramHasAttr(ArgNo+1, Attribute::ByVal) &&
Duncan Sandsd82375c2008-01-27 18:12:58 +0000305 !CalledFunc->onlyReadsMemory()) {
Chris Lattnerc93adca2008-01-11 06:09:30 +0000306 const Type *AggTy = cast<PointerType>(I->getType())->getElementType();
Owen Andersondebcb012009-07-29 22:17:13 +0000307 const Type *VoidPtrTy = PointerType::getUnqual(Type::Int8Ty);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000308
Chris Lattnerc93adca2008-01-11 06:09:30 +0000309 // Create the alloca. If we have TargetData, use nice alignment.
310 unsigned Align = 1;
311 if (TD) Align = TD->getPrefTypeAlignment(AggTy);
Owen Anderson50dead02009-07-15 23:53:25 +0000312 Value *NewAlloca = new AllocaInst(AggTy, 0, Align,
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000313 I->getName(),
314 &*Caller->begin()->begin());
Chris Lattnerc93adca2008-01-11 06:09:30 +0000315 // Emit a memcpy.
Chris Lattner824b9582008-11-21 16:42:48 +0000316 const Type *Tys[] = { Type::Int64Ty };
Chris Lattnerc93adca2008-01-11 06:09:30 +0000317 Function *MemCpyFn = Intrinsic::getDeclaration(Caller->getParent(),
Chris Lattner824b9582008-11-21 16:42:48 +0000318 Intrinsic::memcpy,
319 Tys, 1);
Chris Lattnerc93adca2008-01-11 06:09:30 +0000320 Value *DestCast = new BitCastInst(NewAlloca, VoidPtrTy, "tmp", TheCall);
321 Value *SrcCast = new BitCastInst(*AI, VoidPtrTy, "tmp", TheCall);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000322
Chris Lattnerc93adca2008-01-11 06:09:30 +0000323 Value *Size;
324 if (TD == 0)
Owen Andersonbaf3c402009-07-29 18:55:55 +0000325 Size = ConstantExpr::getSizeOf(AggTy);
Chris Lattnerc93adca2008-01-11 06:09:30 +0000326 else
Owen Andersoneed707b2009-07-24 23:12:02 +0000327 Size = ConstantInt::get(Type::Int64Ty,
Owen Anderson0a205a42009-07-05 22:41:43 +0000328 TD->getTypeStoreSize(AggTy));
Duncan Sandsa7212e52008-09-05 12:37:12 +0000329
Chris Lattnerc93adca2008-01-11 06:09:30 +0000330 // Always generate a memcpy of alignment 1 here because we don't know
331 // the alignment of the src pointer. Other optimizations can infer
332 // better alignment.
333 Value *CallArgs[] = {
Owen Andersoneed707b2009-07-24 23:12:02 +0000334 DestCast, SrcCast, Size, ConstantInt::get(Type::Int32Ty, 1)
Chris Lattnerc93adca2008-01-11 06:09:30 +0000335 };
336 CallInst *TheMemCpy =
Gabor Greif051a9502008-04-06 20:25:17 +0000337 CallInst::Create(MemCpyFn, CallArgs, CallArgs+4, "", TheCall);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000338
Chris Lattnerc93adca2008-01-11 06:09:30 +0000339 // If we have a call graph, update it.
340 if (CG) {
341 CallGraphNode *MemCpyCGN = CG->getOrInsertFunction(MemCpyFn);
342 CallGraphNode *CallerNode = (*CG)[Caller];
343 CallerNode->addCalledFunction(TheMemCpy, MemCpyCGN);
344 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000345
Chris Lattnerc93adca2008-01-11 06:09:30 +0000346 // Uses of the argument in the function should use our new alloca
347 // instead.
348 ActualArg = NewAlloca;
349 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000350
Chris Lattnerc93adca2008-01-11 06:09:30 +0000351 ValueMap[I] = ActualArg;
352 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000353
Devang Patel517576d2009-04-15 00:17:06 +0000354 // Adjust llvm.dbg.region.end. If the CalledFunc has region end
355 // marker then clone that marker after next stop point at the
356 // call site. The function body cloner does not clone original
357 // region end marker from the CalledFunc. This will ensure that
358 // inlined function's scope ends at the right place.
359 const DbgRegionEndInst *DREI = findFnRegionEndMarker(CalledFunc);
360 if (DREI) {
361 for (BasicBlock::iterator BI = TheCall,
362 BE = TheCall->getParent()->end(); BI != BE; ++BI) {
363 if (DbgStopPointInst *DSPI = dyn_cast<DbgStopPointInst>(BI)) {
364 if (DbgRegionEndInst *NewDREI =
Owen Andersone922c022009-07-22 00:24:57 +0000365 dyn_cast<DbgRegionEndInst>(DREI->clone(Context)))
Devang Patel517576d2009-04-15 00:17:06 +0000366 NewDREI->insertAfter(DSPI);
367 break;
368 }
369 }
370 }
371
Chris Lattner5b5bc302006-05-27 01:28:04 +0000372 // We want the inliner to prune the code as it copies. We would LOVE to
373 // have no dead or constant instructions leftover after inlining occurs
374 // (which can happen, e.g., because an argument was constant), but we'll be
375 // happy with whatever the cloner can do.
376 CloneAndPruneFunctionInto(Caller, CalledFunc, ValueMap, Returns, ".i",
Chris Lattner1dfdf822007-01-30 23:22:39 +0000377 &InlinedFunctionInfo, TD);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000378
Chris Lattnerd85340f2006-07-12 18:29:36 +0000379 // Remember the first block that is newly cloned over.
380 FirstNewBlock = LastBlock; ++FirstNewBlock;
Duncan Sandsa7212e52008-09-05 12:37:12 +0000381
Chris Lattnerd85340f2006-07-12 18:29:36 +0000382 // Update the callgraph if requested.
383 if (CG)
Duncan Sandsd7b98512008-09-08 11:05:51 +0000384 UpdateCallGraphAfterInlining(CS, FirstNewBlock, ValueMap, *CG);
Misha Brukmanfd939082005-04-21 23:48:37 +0000385 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000386
Chris Lattnerca398dc2003-05-29 15:11:31 +0000387 // If there are any alloca instructions in the block that used to be the entry
388 // block for the callee, move them to the entry block of the caller. First
389 // calculate which instruction they should be inserted before. We insert the
390 // instructions at the end of the current alloca list.
391 //
Chris Lattner21f20552006-01-13 18:16:48 +0000392 {
Chris Lattner80a38d22003-08-24 06:59:16 +0000393 BasicBlock::iterator InsertPoint = Caller->begin()->begin();
Chris Lattner5e923de2004-02-04 02:51:48 +0000394 for (BasicBlock::iterator I = FirstNewBlock->begin(),
395 E = FirstNewBlock->end(); I != E; )
Chris Lattner33bb3c82006-09-13 19:23:57 +0000396 if (AllocaInst *AI = dyn_cast<AllocaInst>(I++)) {
397 // If the alloca is now dead, remove it. This often occurs due to code
398 // specialization.
399 if (AI->use_empty()) {
400 AI->eraseFromParent();
401 continue;
402 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000403
Chris Lattnerf775f952003-10-14 01:11:07 +0000404 if (isa<Constant>(AI->getArraySize())) {
Chris Lattner21f20552006-01-13 18:16:48 +0000405 // Scan for the block of allocas that we can move over, and move them
406 // all at once.
Chris Lattnerc1df7e12004-02-04 21:33:42 +0000407 while (isa<AllocaInst>(I) &&
408 isa<Constant>(cast<AllocaInst>(I)->getArraySize()))
409 ++I;
410
411 // Transfer all of the allocas over in a block. Using splice means
Dan Gohmane26bff22007-02-20 20:52:03 +0000412 // that the instructions aren't removed from the symbol table, then
Chris Lattnerc1df7e12004-02-04 21:33:42 +0000413 // reinserted.
Dan Gohmanecb7a772007-03-22 16:38:57 +0000414 Caller->getEntryBlock().getInstList().splice(
415 InsertPoint,
416 FirstNewBlock->getInstList(),
417 AI, I);
Chris Lattnerf775f952003-10-14 01:11:07 +0000418 }
Chris Lattner33bb3c82006-09-13 19:23:57 +0000419 }
Chris Lattner80a38d22003-08-24 06:59:16 +0000420 }
Chris Lattnerca398dc2003-05-29 15:11:31 +0000421
Chris Lattnerbf229f42006-01-13 19:34:14 +0000422 // If the inlined code contained dynamic alloca instructions, wrap the inlined
423 // code with llvm.stacksave/llvm.stackrestore intrinsics.
424 if (InlinedFunctionInfo.ContainsDynamicAllocas) {
425 Module *M = Caller->getParent();
Chris Lattnerbf229f42006-01-13 19:34:14 +0000426 // Get the two intrinsics we care about.
Chris Lattnera121fdd2007-01-07 07:54:34 +0000427 Constant *StackSave, *StackRestore;
Duncan Sands3d292ac2008-04-07 13:43:58 +0000428 StackSave = Intrinsic::getDeclaration(M, Intrinsic::stacksave);
429 StackRestore = Intrinsic::getDeclaration(M, Intrinsic::stackrestore);
Chris Lattnerd85340f2006-07-12 18:29:36 +0000430
431 // If we are preserving the callgraph, add edges to the stacksave/restore
432 // functions for the calls we insert.
Chris Lattner21ba23d2006-07-18 21:48:57 +0000433 CallGraphNode *StackSaveCGN = 0, *StackRestoreCGN = 0, *CallerNode = 0;
Chris Lattnerd85340f2006-07-12 18:29:36 +0000434 if (CG) {
Chris Lattnera121fdd2007-01-07 07:54:34 +0000435 // We know that StackSave/StackRestore are Function*'s, because they are
436 // intrinsics which must have the right types.
437 StackSaveCGN = CG->getOrInsertFunction(cast<Function>(StackSave));
438 StackRestoreCGN = CG->getOrInsertFunction(cast<Function>(StackRestore));
Chris Lattnerd85340f2006-07-12 18:29:36 +0000439 CallerNode = (*CG)[Caller];
440 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000441
Chris Lattnerbf229f42006-01-13 19:34:14 +0000442 // Insert the llvm.stacksave.
Duncan Sandsa7212e52008-09-05 12:37:12 +0000443 CallInst *SavedPtr = CallInst::Create(StackSave, "savedstack",
Gabor Greif051a9502008-04-06 20:25:17 +0000444 FirstNewBlock->begin());
Chris Lattnerd85340f2006-07-12 18:29:36 +0000445 if (CG) CallerNode->addCalledFunction(SavedPtr, StackSaveCGN);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000446
Chris Lattnerbf229f42006-01-13 19:34:14 +0000447 // Insert a call to llvm.stackrestore before any return instructions in the
448 // inlined function.
Chris Lattnerd85340f2006-07-12 18:29:36 +0000449 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
Gabor Greif051a9502008-04-06 20:25:17 +0000450 CallInst *CI = CallInst::Create(StackRestore, SavedPtr, "", Returns[i]);
Chris Lattnerd85340f2006-07-12 18:29:36 +0000451 if (CG) CallerNode->addCalledFunction(CI, StackRestoreCGN);
452 }
Chris Lattner468fb1d2006-01-14 20:07:50 +0000453
454 // Count the number of StackRestore calls we insert.
455 unsigned NumStackRestores = Returns.size();
Duncan Sandsa7212e52008-09-05 12:37:12 +0000456
Chris Lattnerbf229f42006-01-13 19:34:14 +0000457 // If we are inlining an invoke instruction, insert restores before each
458 // unwind. These unwinds will be rewritten into branches later.
459 if (InlinedFunctionInfo.ContainsUnwinds && isa<InvokeInst>(TheCall)) {
460 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
461 BB != E; ++BB)
Chris Lattner468fb1d2006-01-14 20:07:50 +0000462 if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) {
Duncan Sands3d292ac2008-04-07 13:43:58 +0000463 CallInst::Create(StackRestore, SavedPtr, "", UI);
Chris Lattner468fb1d2006-01-14 20:07:50 +0000464 ++NumStackRestores;
465 }
466 }
Chris Lattnerbf229f42006-01-13 19:34:14 +0000467 }
468
Duncan Sandsa7212e52008-09-05 12:37:12 +0000469 // If we are inlining tail call instruction through a call site that isn't
Chris Lattner1fdf4a82006-01-13 19:18:11 +0000470 // marked 'tail', we must remove the tail marker for any calls in the inlined
Duncan Sandsf0c33542007-12-19 21:13:37 +0000471 // code. Also, calls inlined through a 'nounwind' call site should be marked
472 // 'nounwind'.
473 if (InlinedFunctionInfo.ContainsCalls &&
474 (MustClearTailCallFlags || MarkNoUnwind)) {
Chris Lattner1b491412005-05-06 06:47:52 +0000475 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
476 BB != E; ++BB)
477 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Duncan Sandsf0c33542007-12-19 21:13:37 +0000478 if (CallInst *CI = dyn_cast<CallInst>(I)) {
479 if (MustClearTailCallFlags)
480 CI->setTailCall(false);
481 if (MarkNoUnwind)
482 CI->setDoesNotThrow();
483 }
Chris Lattner1b491412005-05-06 06:47:52 +0000484 }
485
Duncan Sandsf0c33542007-12-19 21:13:37 +0000486 // If we are inlining through a 'nounwind' call site then any inlined 'unwind'
487 // instructions are unreachable.
488 if (InlinedFunctionInfo.ContainsUnwinds && MarkNoUnwind)
489 for (Function::iterator BB = FirstNewBlock, E = Caller->end();
490 BB != E; ++BB) {
491 TerminatorInst *Term = BB->getTerminator();
492 if (isa<UnwindInst>(Term)) {
493 new UnreachableInst(Term);
494 BB->getInstList().erase(Term);
495 }
496 }
497
Chris Lattner5e923de2004-02-04 02:51:48 +0000498 // If we are inlining for an invoke instruction, we must make sure to rewrite
499 // any inlined 'unwind' instructions into branches to the invoke exception
500 // destination, and call instructions into invoke instructions.
Chris Lattnercd4d3392006-01-13 19:05:59 +0000501 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall))
Devang Patel28c531c2009-03-31 17:36:12 +0000502 HandleInlinedInvoke(II, FirstNewBlock, InlinedFunctionInfo, CG);
Chris Lattner5e923de2004-02-04 02:51:48 +0000503
Chris Lattner44a68072004-02-04 04:17:06 +0000504 // If we cloned in _exactly one_ basic block, and if that block ends in a
505 // return instruction, we splice the body of the inlined callee directly into
506 // the calling basic block.
507 if (Returns.size() == 1 && std::distance(FirstNewBlock, Caller->end()) == 1) {
508 // Move all of the instructions right before the call.
509 OrigBB->getInstList().splice(TheCall, FirstNewBlock->getInstList(),
510 FirstNewBlock->begin(), FirstNewBlock->end());
511 // Remove the cloned basic block.
512 Caller->getBasicBlockList().pop_back();
Misha Brukmanfd939082005-04-21 23:48:37 +0000513
Chris Lattner44a68072004-02-04 04:17:06 +0000514 // If the call site was an invoke instruction, add a branch to the normal
515 // destination.
516 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall))
Gabor Greif051a9502008-04-06 20:25:17 +0000517 BranchInst::Create(II->getNormalDest(), TheCall);
Chris Lattner44a68072004-02-04 04:17:06 +0000518
519 // If the return instruction returned a value, replace uses of the call with
520 // uses of the returned value.
Devang Pateldc00d422008-03-04 21:15:15 +0000521 if (!TheCall->use_empty()) {
522 ReturnInst *R = Returns[0];
Eli Friedman5877ad72009-05-08 00:22:04 +0000523 if (TheCall == R->getReturnValue())
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000524 TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType()));
Eli Friedman5877ad72009-05-08 00:22:04 +0000525 else
526 TheCall->replaceAllUsesWith(R->getReturnValue());
Devang Pateldc00d422008-03-04 21:15:15 +0000527 }
Chris Lattner44a68072004-02-04 04:17:06 +0000528 // Since we are now done with the Call/Invoke, we can delete it.
Dan Gohman1adec832008-06-21 22:08:46 +0000529 TheCall->eraseFromParent();
Chris Lattner44a68072004-02-04 04:17:06 +0000530
531 // Since we are now done with the return instruction, delete it also.
Dan Gohman1adec832008-06-21 22:08:46 +0000532 Returns[0]->eraseFromParent();
Chris Lattner44a68072004-02-04 04:17:06 +0000533
534 // We are now done with the inlining.
535 return true;
536 }
537
538 // Otherwise, we have the normal case, of more than one block to inline or
539 // multiple return sites.
540
Chris Lattner5e923de2004-02-04 02:51:48 +0000541 // We want to clone the entire callee function into the hole between the
542 // "starter" and "ender" blocks. How we accomplish this depends on whether
543 // this is an invoke instruction or a call instruction.
544 BasicBlock *AfterCallBB;
545 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000546
Chris Lattner5e923de2004-02-04 02:51:48 +0000547 // Add an unconditional branch to make this look like the CallInst case...
Gabor Greif051a9502008-04-06 20:25:17 +0000548 BranchInst *NewBr = BranchInst::Create(II->getNormalDest(), TheCall);
Misha Brukmanfd939082005-04-21 23:48:37 +0000549
Chris Lattner5e923de2004-02-04 02:51:48 +0000550 // Split the basic block. This guarantees that no PHI nodes will have to be
551 // updated due to new incoming edges, and make the invoke case more
552 // symmetric to the call case.
553 AfterCallBB = OrigBB->splitBasicBlock(NewBr,
Chris Lattner284d1b82004-12-11 16:59:54 +0000554 CalledFunc->getName()+".exit");
Misha Brukmanfd939082005-04-21 23:48:37 +0000555
Chris Lattner5e923de2004-02-04 02:51:48 +0000556 } else { // It's a call
Chris Lattner44a68072004-02-04 04:17:06 +0000557 // If this is a call instruction, we need to split the basic block that
558 // the call lives in.
Chris Lattner5e923de2004-02-04 02:51:48 +0000559 //
560 AfterCallBB = OrigBB->splitBasicBlock(TheCall,
Chris Lattner284d1b82004-12-11 16:59:54 +0000561 CalledFunc->getName()+".exit");
Chris Lattner5e923de2004-02-04 02:51:48 +0000562 }
563
Chris Lattner44a68072004-02-04 04:17:06 +0000564 // Change the branch that used to go to AfterCallBB to branch to the first
565 // basic block of the inlined function.
566 //
567 TerminatorInst *Br = OrigBB->getTerminator();
Misha Brukmanfd939082005-04-21 23:48:37 +0000568 assert(Br && Br->getOpcode() == Instruction::Br &&
Chris Lattner44a68072004-02-04 04:17:06 +0000569 "splitBasicBlock broken!");
570 Br->setOperand(0, FirstNewBlock);
571
572
573 // Now that the function is correct, make it a little bit nicer. In
574 // particular, move the basic blocks inserted from the end of the function
575 // into the space made by splitting the source basic block.
Chris Lattner44a68072004-02-04 04:17:06 +0000576 Caller->getBasicBlockList().splice(AfterCallBB, Caller->getBasicBlockList(),
577 FirstNewBlock, Caller->end());
578
Chris Lattner5e923de2004-02-04 02:51:48 +0000579 // Handle all of the return instructions that we just cloned in, and eliminate
580 // any users of the original call/invoke instruction.
Devang Patelb8f198a2008-03-10 18:34:00 +0000581 const Type *RTy = CalledFunc->getReturnType();
Dan Gohman2c317502008-06-20 01:03:44 +0000582
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000583 if (Returns.size() > 1) {
Chris Lattner5e923de2004-02-04 02:51:48 +0000584 // The PHI node should go at the front of the new basic block to merge all
585 // possible incoming values.
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000586 PHINode *PHI = 0;
Chris Lattner5e923de2004-02-04 02:51:48 +0000587 if (!TheCall->use_empty()) {
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000588 PHI = PHINode::Create(RTy, TheCall->getName(),
589 AfterCallBB->begin());
590 // Anything that used the result of the function call should now use the
591 // PHI node as their operand.
Duncan Sandsa7212e52008-09-05 12:37:12 +0000592 TheCall->replaceAllUsesWith(PHI);
Chris Lattner5e923de2004-02-04 02:51:48 +0000593 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000594
Gabor Greifc478e522009-01-15 18:40:09 +0000595 // Loop over all of the return instructions adding entries to the PHI node
596 // as appropriate.
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000597 if (PHI) {
598 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
599 ReturnInst *RI = Returns[i];
600 assert(RI->getReturnValue()->getType() == PHI->getType() &&
601 "Ret value not consistent in function!");
602 PHI->addIncoming(RI->getReturnValue(), RI->getParent());
Devang Patel12a466b2008-03-07 20:06:16 +0000603 }
604 }
605
Gabor Greifde62aea2009-01-16 23:08:50 +0000606 // Add a branch to the merge points and remove return instructions.
Chris Lattner5e923de2004-02-04 02:51:48 +0000607 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
608 ReturnInst *RI = Returns[i];
Dale Johannesen0744f092009-03-04 02:09:48 +0000609 BranchInst::Create(AfterCallBB, RI);
Devang Patelb8f198a2008-03-10 18:34:00 +0000610 RI->eraseFromParent();
Chris Lattner5e923de2004-02-04 02:51:48 +0000611 }
Devang Patelb8f198a2008-03-10 18:34:00 +0000612 } else if (!Returns.empty()) {
613 // Otherwise, if there is exactly one return value, just replace anything
614 // using the return value of the call with the computed value.
Eli Friedman5877ad72009-05-08 00:22:04 +0000615 if (!TheCall->use_empty()) {
616 if (TheCall == Returns[0]->getReturnValue())
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000617 TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType()));
Eli Friedman5877ad72009-05-08 00:22:04 +0000618 else
619 TheCall->replaceAllUsesWith(Returns[0]->getReturnValue());
620 }
Duncan Sandsa7212e52008-09-05 12:37:12 +0000621
Devang Patelb8f198a2008-03-10 18:34:00 +0000622 // Splice the code from the return block into the block that it will return
623 // to, which contains the code that was after the call.
624 BasicBlock *ReturnBB = Returns[0]->getParent();
625 AfterCallBB->getInstList().splice(AfterCallBB->begin(),
626 ReturnBB->getInstList());
Duncan Sandsa7212e52008-09-05 12:37:12 +0000627
Devang Patelb8f198a2008-03-10 18:34:00 +0000628 // Update PHI nodes that use the ReturnBB to use the AfterCallBB.
629 ReturnBB->replaceAllUsesWith(AfterCallBB);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000630
Devang Patelb8f198a2008-03-10 18:34:00 +0000631 // Delete the return instruction now and empty ReturnBB now.
632 Returns[0]->eraseFromParent();
633 ReturnBB->eraseFromParent();
Chris Lattner3787e762004-10-17 23:21:07 +0000634 } else if (!TheCall->use_empty()) {
635 // No returns, but something is using the return value of the call. Just
636 // nuke the result.
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000637 TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType()));
Chris Lattner5e923de2004-02-04 02:51:48 +0000638 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000639
Chris Lattner5e923de2004-02-04 02:51:48 +0000640 // Since we are now done with the Call/Invoke, we can delete it.
Chris Lattner3787e762004-10-17 23:21:07 +0000641 TheCall->eraseFromParent();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000642
Chris Lattner7152c232003-08-24 04:06:56 +0000643 // We should always be able to fold the entry block of the function into the
644 // single predecessor of the block...
Chris Lattnercd01ae52004-04-16 05:17:59 +0000645 assert(cast<BranchInst>(Br)->isUnconditional() && "splitBasicBlock broken!");
Chris Lattner7152c232003-08-24 04:06:56 +0000646 BasicBlock *CalleeEntry = cast<BranchInst>(Br)->getSuccessor(0);
Chris Lattner44a68072004-02-04 04:17:06 +0000647
Chris Lattnercd01ae52004-04-16 05:17:59 +0000648 // Splice the code entry block into calling block, right before the
649 // unconditional branch.
650 OrigBB->getInstList().splice(Br, CalleeEntry->getInstList());
651 CalleeEntry->replaceAllUsesWith(OrigBB); // Update PHI nodes
652
653 // Remove the unconditional branch.
654 OrigBB->getInstList().erase(Br);
655
656 // Now we can remove the CalleeEntry block, which is now empty.
657 Caller->getBasicBlockList().erase(CalleeEntry);
Duncan Sandsa7212e52008-09-05 12:37:12 +0000658
Chris Lattnerca398dc2003-05-29 15:11:31 +0000659 return true;
660}