Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 1 | //===- InlineFunction.cpp - Code to perform function inlining -------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements inlining of a function into a call site, resolving |
| 11 | // parameters and the return value as appropriate. |
| 12 | // |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/Transforms/Utils/Cloning.h" |
Chris Lattner | 3787e76 | 2004-10-17 23:21:07 +0000 | [diff] [blame] | 16 | #include "llvm/Constants.h" |
Chris Lattner | 7152c23 | 2003-08-24 04:06:56 +0000 | [diff] [blame] | 17 | #include "llvm/DerivedTypes.h" |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 18 | #include "llvm/Module.h" |
Chris Lattner | 80a38d2 | 2003-08-24 06:59:16 +0000 | [diff] [blame] | 19 | #include "llvm/Instructions.h" |
Devang Patel | 517576d | 2009-04-15 00:17:06 +0000 | [diff] [blame] | 20 | #include "llvm/IntrinsicInst.h" |
Chris Lattner | 80a38d2 | 2003-08-24 06:59:16 +0000 | [diff] [blame] | 21 | #include "llvm/Intrinsics.h" |
Devang Patel | eaf42ab | 2008-09-23 23:03:40 +0000 | [diff] [blame] | 22 | #include "llvm/Attributes.h" |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/CallGraph.h" |
Devang Patel | 517576d | 2009-04-15 00:17:06 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/DebugInfo.h" |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 93e985f | 2007-02-13 02:10:56 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/SmallVector.h" |
Devang Patel | 641ca93 | 2008-03-10 18:22:16 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/StringExtras.h" |
Chris Lattner | 80a38d2 | 2003-08-24 06:59:16 +0000 | [diff] [blame] | 28 | #include "llvm/Support/CallSite.h" |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 29 | using namespace llvm; |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 30 | |
Chris Lattner | 1dfdf82 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 31 | bool llvm::InlineFunction(CallInst *CI, CallGraph *CG, const TargetData *TD) { |
| 32 | return InlineFunction(CallSite(CI), CG, TD); |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 33 | } |
Chris Lattner | 1dfdf82 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 34 | bool llvm::InlineFunction(InvokeInst *II, CallGraph *CG, const TargetData *TD) { |
| 35 | return InlineFunction(CallSite(II), CG, TD); |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 36 | } |
Chris Lattner | 80a38d2 | 2003-08-24 06:59:16 +0000 | [diff] [blame] | 37 | |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 38 | /// HandleInlinedInvoke - If we inlined an invoke site, we need to convert calls |
| 39 | /// in the body of the inlined function into invokes and turn unwind |
| 40 | /// instructions into branches to the invoke unwind dest. |
| 41 | /// |
Nick Lewycky | dac5c4b | 2009-02-03 04:34:40 +0000 | [diff] [blame] | 42 | /// II is the invoke instruction being inlined. FirstNewBlock is the first |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 43 | /// block of the inlined code (the last block is the end of the function), |
| 44 | /// and InlineCodeInfo is information about the code that got inlined. |
| 45 | static void HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock, |
Devang Patel | 28c531c | 2009-03-31 17:36:12 +0000 | [diff] [blame] | 46 | ClonedCodeInfo &InlinedCodeInfo, |
| 47 | CallGraph *CG) { |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 48 | BasicBlock *InvokeDest = II->getUnwindDest(); |
| 49 | std::vector<Value*> InvokeDestPHIValues; |
| 50 | |
| 51 | // If there are PHI nodes in the unwind destination block, we need to |
| 52 | // keep track of which values came into them from this invoke, then remove |
| 53 | // the entry for this block. |
| 54 | BasicBlock *InvokeBlock = II->getParent(); |
| 55 | for (BasicBlock::iterator I = InvokeDest->begin(); isa<PHINode>(I); ++I) { |
| 56 | PHINode *PN = cast<PHINode>(I); |
| 57 | // Save the value to use for this edge. |
| 58 | InvokeDestPHIValues.push_back(PN->getIncomingValueForBlock(InvokeBlock)); |
| 59 | } |
| 60 | |
| 61 | Function *Caller = FirstNewBlock->getParent(); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 62 | |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 63 | // The inlined code is currently at the end of the function, scan from the |
| 64 | // start of the inlined code to its end, checking for stuff we need to |
| 65 | // rewrite. |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 66 | if (InlinedCodeInfo.ContainsCalls || InlinedCodeInfo.ContainsUnwinds) { |
| 67 | for (Function::iterator BB = FirstNewBlock, E = Caller->end(); |
| 68 | BB != E; ++BB) { |
| 69 | if (InlinedCodeInfo.ContainsCalls) { |
| 70 | for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ){ |
| 71 | Instruction *I = BBI++; |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 72 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 73 | // We only need to check for function calls: inlined invoke |
| 74 | // instructions require no special handling. |
| 75 | if (!isa<CallInst>(I)) continue; |
| 76 | CallInst *CI = cast<CallInst>(I); |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 77 | |
Duncan Sands | fd7b326 | 2007-12-17 18:08:19 +0000 | [diff] [blame] | 78 | // If this call cannot unwind, don't convert it to an invoke. |
Duncan Sands | 2b0e899 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 79 | if (CI->doesNotThrow()) |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 80 | continue; |
Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 81 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 82 | // Convert this function call into an invoke instruction. |
| 83 | // First, split the basic block. |
| 84 | BasicBlock *Split = BB->splitBasicBlock(CI, CI->getName()+".noexc"); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 85 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 86 | // Next, create the new invoke instruction, inserting it at the end |
| 87 | // of the old basic block. |
Chris Lattner | 93e985f | 2007-02-13 02:10:56 +0000 | [diff] [blame] | 88 | SmallVector<Value*, 8> InvokeArgs(CI->op_begin()+1, CI->op_end()); |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 89 | InvokeInst *II = |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 90 | InvokeInst::Create(CI->getCalledValue(), Split, InvokeDest, |
| 91 | InvokeArgs.begin(), InvokeArgs.end(), |
| 92 | CI->getName(), BB->getTerminator()); |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 93 | II->setCallingConv(CI->getCallingConv()); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 94 | II->setAttributes(CI->getAttributes()); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 95 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 96 | // Make sure that anything using the call now uses the invoke! |
| 97 | CI->replaceAllUsesWith(II); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 98 | |
Devang Patel | 28c531c | 2009-03-31 17:36:12 +0000 | [diff] [blame] | 99 | // Update the callgraph. |
| 100 | if (CG) { |
| 101 | // We should be able to do this: |
| 102 | // (*CG)[Caller]->replaceCallSite(CI, II); |
| 103 | // but that fails if the old call site isn't in the call graph, |
| 104 | // which, because of LLVM bug 3601, it sometimes isn't. |
| 105 | CallGraphNode *CGN = (*CG)[Caller]; |
| 106 | for (CallGraphNode::iterator NI = CGN->begin(), NE = CGN->end(); |
| 107 | NI != NE; ++NI) { |
| 108 | if (NI->first == CI) { |
| 109 | NI->first = II; |
| 110 | break; |
| 111 | } |
| 112 | } |
| 113 | } |
| 114 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 115 | // Delete the unconditional branch inserted by splitBasicBlock |
| 116 | BB->getInstList().pop_back(); |
| 117 | Split->getInstList().pop_front(); // Delete the original call |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 118 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 119 | // Update any PHI nodes in the exceptional block to indicate that |
| 120 | // there is now a new entry in them. |
| 121 | unsigned i = 0; |
| 122 | for (BasicBlock::iterator I = InvokeDest->begin(); |
| 123 | isa<PHINode>(I); ++I, ++i) { |
| 124 | PHINode *PN = cast<PHINode>(I); |
| 125 | PN->addIncoming(InvokeDestPHIValues[i], BB); |
| 126 | } |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 127 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 128 | // This basic block is now complete, start scanning the next one. |
| 129 | break; |
| 130 | } |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 131 | } |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 132 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 133 | if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) { |
| 134 | // An UnwindInst requires special handling when it gets inlined into an |
| 135 | // invoke site. Once this happens, we know that the unwind would cause |
| 136 | // a control transfer to the invoke exception destination, so we can |
| 137 | // transform it into a direct branch to the exception destination. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 138 | BranchInst::Create(InvokeDest, UI); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 139 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 140 | // Delete the unwind instruction! |
Dan Gohman | 1adec83 | 2008-06-21 22:08:46 +0000 | [diff] [blame] | 141 | UI->eraseFromParent(); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 142 | |
Chris Lattner | 727d1dd | 2006-01-13 19:15:15 +0000 | [diff] [blame] | 143 | // Update any PHI nodes in the exceptional block to indicate that |
| 144 | // there is now a new entry in them. |
| 145 | unsigned i = 0; |
| 146 | for (BasicBlock::iterator I = InvokeDest->begin(); |
| 147 | isa<PHINode>(I); ++I, ++i) { |
| 148 | PHINode *PN = cast<PHINode>(I); |
| 149 | PN->addIncoming(InvokeDestPHIValues[i], BB); |
| 150 | } |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 151 | } |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | // Now that everything is happy, we have one final detail. The PHI nodes in |
| 156 | // the exception destination block still have entries due to the original |
| 157 | // invoke instruction. Eliminate these entries (which might even delete the |
| 158 | // PHI node) now. |
| 159 | InvokeDest->removePredecessor(II->getParent()); |
| 160 | } |
| 161 | |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 162 | /// UpdateCallGraphAfterInlining - Once we have cloned code over from a callee |
| 163 | /// into the caller, update the specified callgraph to reflect the changes we |
| 164 | /// made. Note that it's possible that not all code was copied over, so only |
Duncan Sands | d7b9851 | 2008-09-08 11:05:51 +0000 | [diff] [blame] | 165 | /// some edges of the callgraph may remain. |
| 166 | static void UpdateCallGraphAfterInlining(CallSite CS, |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 167 | Function::iterator FirstNewBlock, |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 168 | DenseMap<const Value*, Value*> &ValueMap, |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 169 | CallGraph &CG) { |
Duncan Sands | d7b9851 | 2008-09-08 11:05:51 +0000 | [diff] [blame] | 170 | const Function *Caller = CS.getInstruction()->getParent()->getParent(); |
| 171 | const Function *Callee = CS.getCalledFunction(); |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 172 | CallGraphNode *CalleeNode = CG[Callee]; |
| 173 | CallGraphNode *CallerNode = CG[Caller]; |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 174 | |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 175 | // Since we inlined some uninlined call sites in the callee into the caller, |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 176 | // add edges from the caller to all of the callees of the callee. |
Gabor Greif | c478e52 | 2009-01-15 18:40:09 +0000 | [diff] [blame] | 177 | CallGraphNode::iterator I = CalleeNode->begin(), E = CalleeNode->end(); |
| 178 | |
| 179 | // Consider the case where CalleeNode == CallerNode. |
Gabor Greif | 1253298 | 2009-01-17 00:09:08 +0000 | [diff] [blame] | 180 | CallGraphNode::CalledFunctionsVector CallCache; |
Gabor Greif | c478e52 | 2009-01-15 18:40:09 +0000 | [diff] [blame] | 181 | if (CalleeNode == CallerNode) { |
| 182 | CallCache.assign(I, E); |
| 183 | I = CallCache.begin(); |
| 184 | E = CallCache.end(); |
| 185 | } |
| 186 | |
| 187 | for (; I != E; ++I) { |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 188 | const Instruction *OrigCall = I->first.getInstruction(); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 189 | |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 190 | DenseMap<const Value*, Value*>::iterator VMI = ValueMap.find(OrigCall); |
Chris Lattner | 981418b | 2006-07-12 21:37:11 +0000 | [diff] [blame] | 191 | // Only copy the edge if the call was inlined! |
| 192 | if (VMI != ValueMap.end() && VMI->second) { |
Chris Lattner | 1bb3a40 | 2006-07-12 18:37:18 +0000 | [diff] [blame] | 193 | // If the call was inlined, but then constant folded, there is no edge to |
| 194 | // add. Check for this case. |
| 195 | if (Instruction *NewCall = dyn_cast<Instruction>(VMI->second)) |
| 196 | CallerNode->addCalledFunction(CallSite::get(NewCall), I->second); |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 197 | } |
| 198 | } |
Dale Johannesen | 39fa324 | 2009-01-13 22:43:37 +0000 | [diff] [blame] | 199 | // Update the call graph by deleting the edge from Callee to Caller. We must |
| 200 | // do this after the loop above in case Caller and Callee are the same. |
| 201 | CallerNode->removeCallEdgeFor(CS); |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Devang Patel | 517576d | 2009-04-15 00:17:06 +0000 | [diff] [blame] | 204 | /// findFnRegionEndMarker - This is a utility routine that is used by |
| 205 | /// InlineFunction. Return llvm.dbg.region.end intrinsic that corresponds |
| 206 | /// to the llvm.dbg.func.start of the function F. Otherwise return NULL. |
| 207 | static const DbgRegionEndInst *findFnRegionEndMarker(const Function *F) { |
| 208 | |
| 209 | GlobalVariable *FnStart = NULL; |
| 210 | const DbgRegionEndInst *FnEnd = NULL; |
| 211 | for (Function::const_iterator FI = F->begin(), FE =F->end(); FI != FE; ++FI) |
| 212 | for (BasicBlock::const_iterator BI = FI->begin(), BE = FI->end(); BI != BE; |
| 213 | ++BI) { |
| 214 | if (FnStart == NULL) { |
| 215 | if (const DbgFuncStartInst *FSI = dyn_cast<DbgFuncStartInst>(BI)) { |
| 216 | DISubprogram SP(cast<GlobalVariable>(FSI->getSubprogram())); |
| 217 | assert (SP.isNull() == false && "Invalid llvm.dbg.func.start"); |
| 218 | if (SP.describes(F)) |
| 219 | FnStart = SP.getGV(); |
| 220 | } |
| 221 | } else { |
| 222 | if (const DbgRegionEndInst *REI = dyn_cast<DbgRegionEndInst>(BI)) |
| 223 | if (REI->getContext() == FnStart) |
| 224 | FnEnd = REI; |
| 225 | } |
| 226 | } |
| 227 | return FnEnd; |
| 228 | } |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 229 | |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 230 | // InlineFunction - This function inlines the called function into the basic |
| 231 | // block of the caller. This returns false if it is not possible to inline this |
| 232 | // call. The program is still in a well defined state if this occurs though. |
| 233 | // |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 234 | // Note that this only does one level of inlining. For example, if the |
| 235 | // instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 236 | // exists in the instruction stream. Similiarly this will inline a recursive |
| 237 | // function by one level. |
| 238 | // |
Chris Lattner | 1dfdf82 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 239 | bool llvm::InlineFunction(CallSite CS, CallGraph *CG, const TargetData *TD) { |
Chris Lattner | 80a38d2 | 2003-08-24 06:59:16 +0000 | [diff] [blame] | 240 | Instruction *TheCall = CS.getInstruction(); |
| 241 | assert(TheCall->getParent() && TheCall->getParent()->getParent() && |
| 242 | "Instruction not in function!"); |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 243 | |
Chris Lattner | 80a38d2 | 2003-08-24 06:59:16 +0000 | [diff] [blame] | 244 | const Function *CalledFunc = CS.getCalledFunction(); |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 245 | if (CalledFunc == 0 || // Can't inline external function or indirect |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 246 | CalledFunc->isDeclaration() || // call, or call to a vararg function! |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 247 | CalledFunc->getFunctionType()->isVarArg()) return false; |
| 248 | |
Chris Lattner | 1b49141 | 2005-05-06 06:47:52 +0000 | [diff] [blame] | 249 | |
Chris Lattner | af9985c | 2009-02-12 07:06:42 +0000 | [diff] [blame] | 250 | // If the call to the callee is not a tail call, we must clear the 'tail' |
Chris Lattner | 1b49141 | 2005-05-06 06:47:52 +0000 | [diff] [blame] | 251 | // flags on any calls that we inline. |
| 252 | bool MustClearTailCallFlags = |
Chris Lattner | af9985c | 2009-02-12 07:06:42 +0000 | [diff] [blame] | 253 | !(isa<CallInst>(TheCall) && cast<CallInst>(TheCall)->isTailCall()); |
Chris Lattner | 1b49141 | 2005-05-06 06:47:52 +0000 | [diff] [blame] | 254 | |
Duncan Sands | f0c3354 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 255 | // If the call to the callee cannot throw, set the 'nounwind' flag on any |
| 256 | // calls that we inline. |
| 257 | bool MarkNoUnwind = CS.doesNotThrow(); |
| 258 | |
Chris Lattner | 80a38d2 | 2003-08-24 06:59:16 +0000 | [diff] [blame] | 259 | BasicBlock *OrigBB = TheCall->getParent(); |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 260 | Function *Caller = OrigBB->getParent(); |
| 261 | |
Gordon Henriksen | 0e13821 | 2007-12-25 03:10:07 +0000 | [diff] [blame] | 262 | // GC poses two hazards to inlining, which only occur when the callee has GC: |
| 263 | // 1. If the caller has no GC, then the callee's GC must be propagated to the |
| 264 | // caller. |
| 265 | // 2. If the caller has a differing GC, it is invalid to inline. |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 266 | if (CalledFunc->hasGC()) { |
| 267 | if (!Caller->hasGC()) |
| 268 | Caller->setGC(CalledFunc->getGC()); |
| 269 | else if (CalledFunc->getGC() != Caller->getGC()) |
Gordon Henriksen | 0e13821 | 2007-12-25 03:10:07 +0000 | [diff] [blame] | 270 | return false; |
| 271 | } |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 272 | |
Chris Lattner | 5052c91 | 2004-02-04 01:41:09 +0000 | [diff] [blame] | 273 | // Get an iterator to the last basic block in the function, which will have |
| 274 | // the new function inlined after it. |
| 275 | // |
| 276 | Function::iterator LastBlock = &Caller->back(); |
| 277 | |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 278 | // Make sure to capture all of the return instructions from the cloned |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 279 | // function. |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 280 | std::vector<ReturnInst*> Returns; |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 281 | ClonedCodeInfo InlinedFunctionInfo; |
Dale Johannesen | 0744f09 | 2009-03-04 02:09:48 +0000 | [diff] [blame] | 282 | Function::iterator FirstNewBlock; |
Duncan Sands | f0c3354 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 283 | |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 284 | { // Scope to destroy ValueMap after cloning. |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 285 | DenseMap<const Value*, Value*> ValueMap; |
Chris Lattner | 5b5bc30 | 2006-05-27 01:28:04 +0000 | [diff] [blame] | 286 | |
Dan Gohman | 9614fcc | 2008-06-20 17:11:32 +0000 | [diff] [blame] | 287 | assert(CalledFunc->arg_size() == CS.arg_size() && |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 288 | "No varargs calls can be inlined!"); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 289 | |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 290 | // Calculate the vector of arguments to pass into the function cloner, which |
| 291 | // matches up the formal to the actual argument values. |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 292 | CallSite::arg_iterator AI = CS.arg_begin(); |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 293 | unsigned ArgNo = 0; |
Chris Lattner | e4d5c44 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 294 | for (Function::const_arg_iterator I = CalledFunc->arg_begin(), |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 295 | E = CalledFunc->arg_end(); I != E; ++I, ++AI, ++ArgNo) { |
| 296 | Value *ActualArg = *AI; |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 297 | |
Duncan Sands | d82375c | 2008-01-27 18:12:58 +0000 | [diff] [blame] | 298 | // When byval arguments actually inlined, we need to make the copy implied |
| 299 | // by them explicit. However, we don't do this if the callee is readonly |
| 300 | // or readnone, because the copy would be unneeded: the callee doesn't |
| 301 | // modify the struct. |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 302 | if (CalledFunc->paramHasAttr(ArgNo+1, Attribute::ByVal) && |
Duncan Sands | d82375c | 2008-01-27 18:12:58 +0000 | [diff] [blame] | 303 | !CalledFunc->onlyReadsMemory()) { |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 304 | const Type *AggTy = cast<PointerType>(I->getType())->getElementType(); |
| 305 | const Type *VoidPtrTy = PointerType::getUnqual(Type::Int8Ty); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 306 | |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 307 | // Create the alloca. If we have TargetData, use nice alignment. |
| 308 | unsigned Align = 1; |
| 309 | if (TD) Align = TD->getPrefTypeAlignment(AggTy); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 310 | Value *NewAlloca = new AllocaInst(AggTy, 0, Align, I->getName(), |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 311 | Caller->begin()->begin()); |
| 312 | // Emit a memcpy. |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 313 | const Type *Tys[] = { Type::Int64Ty }; |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 314 | Function *MemCpyFn = Intrinsic::getDeclaration(Caller->getParent(), |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 315 | Intrinsic::memcpy, |
| 316 | Tys, 1); |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 317 | Value *DestCast = new BitCastInst(NewAlloca, VoidPtrTy, "tmp", TheCall); |
| 318 | Value *SrcCast = new BitCastInst(*AI, VoidPtrTy, "tmp", TheCall); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 319 | |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 320 | Value *Size; |
| 321 | if (TD == 0) |
| 322 | Size = ConstantExpr::getSizeOf(AggTy); |
| 323 | else |
| 324 | Size = ConstantInt::get(Type::Int64Ty, TD->getTypeStoreSize(AggTy)); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 325 | |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 326 | // Always generate a memcpy of alignment 1 here because we don't know |
| 327 | // the alignment of the src pointer. Other optimizations can infer |
| 328 | // better alignment. |
| 329 | Value *CallArgs[] = { |
| 330 | DestCast, SrcCast, Size, ConstantInt::get(Type::Int32Ty, 1) |
| 331 | }; |
| 332 | CallInst *TheMemCpy = |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 333 | CallInst::Create(MemCpyFn, CallArgs, CallArgs+4, "", TheCall); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 334 | |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 335 | // If we have a call graph, update it. |
| 336 | if (CG) { |
| 337 | CallGraphNode *MemCpyCGN = CG->getOrInsertFunction(MemCpyFn); |
| 338 | CallGraphNode *CallerNode = (*CG)[Caller]; |
| 339 | CallerNode->addCalledFunction(TheMemCpy, MemCpyCGN); |
| 340 | } |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 341 | |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 342 | // Uses of the argument in the function should use our new alloca |
| 343 | // instead. |
| 344 | ActualArg = NewAlloca; |
| 345 | } |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 346 | |
Chris Lattner | c93adca | 2008-01-11 06:09:30 +0000 | [diff] [blame] | 347 | ValueMap[I] = ActualArg; |
| 348 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 349 | |
Devang Patel | 517576d | 2009-04-15 00:17:06 +0000 | [diff] [blame] | 350 | // Adjust llvm.dbg.region.end. If the CalledFunc has region end |
| 351 | // marker then clone that marker after next stop point at the |
| 352 | // call site. The function body cloner does not clone original |
| 353 | // region end marker from the CalledFunc. This will ensure that |
| 354 | // inlined function's scope ends at the right place. |
| 355 | const DbgRegionEndInst *DREI = findFnRegionEndMarker(CalledFunc); |
| 356 | if (DREI) { |
| 357 | for (BasicBlock::iterator BI = TheCall, |
| 358 | BE = TheCall->getParent()->end(); BI != BE; ++BI) { |
| 359 | if (DbgStopPointInst *DSPI = dyn_cast<DbgStopPointInst>(BI)) { |
| 360 | if (DbgRegionEndInst *NewDREI = |
| 361 | dyn_cast<DbgRegionEndInst>(DREI->clone())) |
| 362 | NewDREI->insertAfter(DSPI); |
| 363 | break; |
| 364 | } |
| 365 | } |
| 366 | } |
| 367 | |
Chris Lattner | 5b5bc30 | 2006-05-27 01:28:04 +0000 | [diff] [blame] | 368 | // We want the inliner to prune the code as it copies. We would LOVE to |
| 369 | // have no dead or constant instructions leftover after inlining occurs |
| 370 | // (which can happen, e.g., because an argument was constant), but we'll be |
| 371 | // happy with whatever the cloner can do. |
| 372 | CloneAndPruneFunctionInto(Caller, CalledFunc, ValueMap, Returns, ".i", |
Chris Lattner | 1dfdf82 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 373 | &InlinedFunctionInfo, TD); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 374 | |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 375 | // Remember the first block that is newly cloned over. |
| 376 | FirstNewBlock = LastBlock; ++FirstNewBlock; |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 377 | |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 378 | // Update the callgraph if requested. |
| 379 | if (CG) |
Duncan Sands | d7b9851 | 2008-09-08 11:05:51 +0000 | [diff] [blame] | 380 | UpdateCallGraphAfterInlining(CS, FirstNewBlock, ValueMap, *CG); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 381 | } |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 382 | |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 383 | // If there are any alloca instructions in the block that used to be the entry |
| 384 | // block for the callee, move them to the entry block of the caller. First |
| 385 | // calculate which instruction they should be inserted before. We insert the |
| 386 | // instructions at the end of the current alloca list. |
| 387 | // |
Chris Lattner | 21f2055 | 2006-01-13 18:16:48 +0000 | [diff] [blame] | 388 | { |
Chris Lattner | 80a38d2 | 2003-08-24 06:59:16 +0000 | [diff] [blame] | 389 | BasicBlock::iterator InsertPoint = Caller->begin()->begin(); |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 390 | for (BasicBlock::iterator I = FirstNewBlock->begin(), |
| 391 | E = FirstNewBlock->end(); I != E; ) |
Chris Lattner | 33bb3c8 | 2006-09-13 19:23:57 +0000 | [diff] [blame] | 392 | if (AllocaInst *AI = dyn_cast<AllocaInst>(I++)) { |
| 393 | // If the alloca is now dead, remove it. This often occurs due to code |
| 394 | // specialization. |
| 395 | if (AI->use_empty()) { |
| 396 | AI->eraseFromParent(); |
| 397 | continue; |
| 398 | } |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 399 | |
Chris Lattner | f775f95 | 2003-10-14 01:11:07 +0000 | [diff] [blame] | 400 | if (isa<Constant>(AI->getArraySize())) { |
Chris Lattner | 21f2055 | 2006-01-13 18:16:48 +0000 | [diff] [blame] | 401 | // Scan for the block of allocas that we can move over, and move them |
| 402 | // all at once. |
Chris Lattner | c1df7e1 | 2004-02-04 21:33:42 +0000 | [diff] [blame] | 403 | while (isa<AllocaInst>(I) && |
| 404 | isa<Constant>(cast<AllocaInst>(I)->getArraySize())) |
| 405 | ++I; |
| 406 | |
| 407 | // Transfer all of the allocas over in a block. Using splice means |
Dan Gohman | e26bff2 | 2007-02-20 20:52:03 +0000 | [diff] [blame] | 408 | // that the instructions aren't removed from the symbol table, then |
Chris Lattner | c1df7e1 | 2004-02-04 21:33:42 +0000 | [diff] [blame] | 409 | // reinserted. |
Dan Gohman | ecb7a77 | 2007-03-22 16:38:57 +0000 | [diff] [blame] | 410 | Caller->getEntryBlock().getInstList().splice( |
| 411 | InsertPoint, |
| 412 | FirstNewBlock->getInstList(), |
| 413 | AI, I); |
Chris Lattner | f775f95 | 2003-10-14 01:11:07 +0000 | [diff] [blame] | 414 | } |
Chris Lattner | 33bb3c8 | 2006-09-13 19:23:57 +0000 | [diff] [blame] | 415 | } |
Chris Lattner | 80a38d2 | 2003-08-24 06:59:16 +0000 | [diff] [blame] | 416 | } |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 417 | |
Chris Lattner | bf229f4 | 2006-01-13 19:34:14 +0000 | [diff] [blame] | 418 | // If the inlined code contained dynamic alloca instructions, wrap the inlined |
| 419 | // code with llvm.stacksave/llvm.stackrestore intrinsics. |
| 420 | if (InlinedFunctionInfo.ContainsDynamicAllocas) { |
| 421 | Module *M = Caller->getParent(); |
Chris Lattner | bf229f4 | 2006-01-13 19:34:14 +0000 | [diff] [blame] | 422 | // Get the two intrinsics we care about. |
Chris Lattner | a121fdd | 2007-01-07 07:54:34 +0000 | [diff] [blame] | 423 | Constant *StackSave, *StackRestore; |
Duncan Sands | 3d292ac | 2008-04-07 13:43:58 +0000 | [diff] [blame] | 424 | StackSave = Intrinsic::getDeclaration(M, Intrinsic::stacksave); |
| 425 | StackRestore = Intrinsic::getDeclaration(M, Intrinsic::stackrestore); |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 426 | |
| 427 | // If we are preserving the callgraph, add edges to the stacksave/restore |
| 428 | // functions for the calls we insert. |
Chris Lattner | 21ba23d | 2006-07-18 21:48:57 +0000 | [diff] [blame] | 429 | CallGraphNode *StackSaveCGN = 0, *StackRestoreCGN = 0, *CallerNode = 0; |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 430 | if (CG) { |
Chris Lattner | a121fdd | 2007-01-07 07:54:34 +0000 | [diff] [blame] | 431 | // We know that StackSave/StackRestore are Function*'s, because they are |
| 432 | // intrinsics which must have the right types. |
| 433 | StackSaveCGN = CG->getOrInsertFunction(cast<Function>(StackSave)); |
| 434 | StackRestoreCGN = CG->getOrInsertFunction(cast<Function>(StackRestore)); |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 435 | CallerNode = (*CG)[Caller]; |
| 436 | } |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 437 | |
Chris Lattner | bf229f4 | 2006-01-13 19:34:14 +0000 | [diff] [blame] | 438 | // Insert the llvm.stacksave. |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 439 | CallInst *SavedPtr = CallInst::Create(StackSave, "savedstack", |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 440 | FirstNewBlock->begin()); |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 441 | if (CG) CallerNode->addCalledFunction(SavedPtr, StackSaveCGN); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 442 | |
Chris Lattner | bf229f4 | 2006-01-13 19:34:14 +0000 | [diff] [blame] | 443 | // Insert a call to llvm.stackrestore before any return instructions in the |
| 444 | // inlined function. |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 445 | for (unsigned i = 0, e = Returns.size(); i != e; ++i) { |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 446 | CallInst *CI = CallInst::Create(StackRestore, SavedPtr, "", Returns[i]); |
Chris Lattner | d85340f | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 447 | if (CG) CallerNode->addCalledFunction(CI, StackRestoreCGN); |
| 448 | } |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 449 | |
| 450 | // Count the number of StackRestore calls we insert. |
| 451 | unsigned NumStackRestores = Returns.size(); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 452 | |
Chris Lattner | bf229f4 | 2006-01-13 19:34:14 +0000 | [diff] [blame] | 453 | // If we are inlining an invoke instruction, insert restores before each |
| 454 | // unwind. These unwinds will be rewritten into branches later. |
| 455 | if (InlinedFunctionInfo.ContainsUnwinds && isa<InvokeInst>(TheCall)) { |
| 456 | for (Function::iterator BB = FirstNewBlock, E = Caller->end(); |
| 457 | BB != E; ++BB) |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 458 | if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) { |
Duncan Sands | 3d292ac | 2008-04-07 13:43:58 +0000 | [diff] [blame] | 459 | CallInst::Create(StackRestore, SavedPtr, "", UI); |
Chris Lattner | 468fb1d | 2006-01-14 20:07:50 +0000 | [diff] [blame] | 460 | ++NumStackRestores; |
| 461 | } |
| 462 | } |
Chris Lattner | bf229f4 | 2006-01-13 19:34:14 +0000 | [diff] [blame] | 463 | } |
| 464 | |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 465 | // If we are inlining tail call instruction through a call site that isn't |
Chris Lattner | 1fdf4a8 | 2006-01-13 19:18:11 +0000 | [diff] [blame] | 466 | // marked 'tail', we must remove the tail marker for any calls in the inlined |
Duncan Sands | f0c3354 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 467 | // code. Also, calls inlined through a 'nounwind' call site should be marked |
| 468 | // 'nounwind'. |
| 469 | if (InlinedFunctionInfo.ContainsCalls && |
| 470 | (MustClearTailCallFlags || MarkNoUnwind)) { |
Chris Lattner | 1b49141 | 2005-05-06 06:47:52 +0000 | [diff] [blame] | 471 | for (Function::iterator BB = FirstNewBlock, E = Caller->end(); |
| 472 | BB != E; ++BB) |
| 473 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
Duncan Sands | f0c3354 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 474 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 475 | if (MustClearTailCallFlags) |
| 476 | CI->setTailCall(false); |
| 477 | if (MarkNoUnwind) |
| 478 | CI->setDoesNotThrow(); |
| 479 | } |
Chris Lattner | 1b49141 | 2005-05-06 06:47:52 +0000 | [diff] [blame] | 480 | } |
| 481 | |
Duncan Sands | f0c3354 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 482 | // If we are inlining through a 'nounwind' call site then any inlined 'unwind' |
| 483 | // instructions are unreachable. |
| 484 | if (InlinedFunctionInfo.ContainsUnwinds && MarkNoUnwind) |
| 485 | for (Function::iterator BB = FirstNewBlock, E = Caller->end(); |
| 486 | BB != E; ++BB) { |
| 487 | TerminatorInst *Term = BB->getTerminator(); |
| 488 | if (isa<UnwindInst>(Term)) { |
| 489 | new UnreachableInst(Term); |
| 490 | BB->getInstList().erase(Term); |
| 491 | } |
| 492 | } |
| 493 | |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 494 | // If we are inlining for an invoke instruction, we must make sure to rewrite |
| 495 | // any inlined 'unwind' instructions into branches to the invoke exception |
| 496 | // destination, and call instructions into invoke instructions. |
Chris Lattner | cd4d339 | 2006-01-13 19:05:59 +0000 | [diff] [blame] | 497 | if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) |
Devang Patel | 28c531c | 2009-03-31 17:36:12 +0000 | [diff] [blame] | 498 | HandleInlinedInvoke(II, FirstNewBlock, InlinedFunctionInfo, CG); |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 499 | |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 500 | // If we cloned in _exactly one_ basic block, and if that block ends in a |
| 501 | // return instruction, we splice the body of the inlined callee directly into |
| 502 | // the calling basic block. |
| 503 | if (Returns.size() == 1 && std::distance(FirstNewBlock, Caller->end()) == 1) { |
| 504 | // Move all of the instructions right before the call. |
| 505 | OrigBB->getInstList().splice(TheCall, FirstNewBlock->getInstList(), |
| 506 | FirstNewBlock->begin(), FirstNewBlock->end()); |
| 507 | // Remove the cloned basic block. |
| 508 | Caller->getBasicBlockList().pop_back(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 509 | |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 510 | // If the call site was an invoke instruction, add a branch to the normal |
| 511 | // destination. |
| 512 | if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 513 | BranchInst::Create(II->getNormalDest(), TheCall); |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 514 | |
| 515 | // If the return instruction returned a value, replace uses of the call with |
| 516 | // uses of the returned value. |
Devang Patel | dc00d42 | 2008-03-04 21:15:15 +0000 | [diff] [blame] | 517 | if (!TheCall->use_empty()) { |
| 518 | ReturnInst *R = Returns[0]; |
Eli Friedman | 5877ad7 | 2009-05-08 00:22:04 +0000 | [diff] [blame^] | 519 | if (TheCall == R->getReturnValue()) |
| 520 | TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType())); |
| 521 | else |
| 522 | TheCall->replaceAllUsesWith(R->getReturnValue()); |
Devang Patel | dc00d42 | 2008-03-04 21:15:15 +0000 | [diff] [blame] | 523 | } |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 524 | // Since we are now done with the Call/Invoke, we can delete it. |
Dan Gohman | 1adec83 | 2008-06-21 22:08:46 +0000 | [diff] [blame] | 525 | TheCall->eraseFromParent(); |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 526 | |
| 527 | // Since we are now done with the return instruction, delete it also. |
Dan Gohman | 1adec83 | 2008-06-21 22:08:46 +0000 | [diff] [blame] | 528 | Returns[0]->eraseFromParent(); |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 529 | |
| 530 | // We are now done with the inlining. |
| 531 | return true; |
| 532 | } |
| 533 | |
| 534 | // Otherwise, we have the normal case, of more than one block to inline or |
| 535 | // multiple return sites. |
| 536 | |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 537 | // We want to clone the entire callee function into the hole between the |
| 538 | // "starter" and "ender" blocks. How we accomplish this depends on whether |
| 539 | // this is an invoke instruction or a call instruction. |
| 540 | BasicBlock *AfterCallBB; |
| 541 | if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) { |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 542 | |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 543 | // Add an unconditional branch to make this look like the CallInst case... |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 544 | BranchInst *NewBr = BranchInst::Create(II->getNormalDest(), TheCall); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 545 | |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 546 | // Split the basic block. This guarantees that no PHI nodes will have to be |
| 547 | // updated due to new incoming edges, and make the invoke case more |
| 548 | // symmetric to the call case. |
| 549 | AfterCallBB = OrigBB->splitBasicBlock(NewBr, |
Chris Lattner | 284d1b8 | 2004-12-11 16:59:54 +0000 | [diff] [blame] | 550 | CalledFunc->getName()+".exit"); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 551 | |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 552 | } else { // It's a call |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 553 | // If this is a call instruction, we need to split the basic block that |
| 554 | // the call lives in. |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 555 | // |
| 556 | AfterCallBB = OrigBB->splitBasicBlock(TheCall, |
Chris Lattner | 284d1b8 | 2004-12-11 16:59:54 +0000 | [diff] [blame] | 557 | CalledFunc->getName()+".exit"); |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 558 | } |
| 559 | |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 560 | // Change the branch that used to go to AfterCallBB to branch to the first |
| 561 | // basic block of the inlined function. |
| 562 | // |
| 563 | TerminatorInst *Br = OrigBB->getTerminator(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 564 | assert(Br && Br->getOpcode() == Instruction::Br && |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 565 | "splitBasicBlock broken!"); |
| 566 | Br->setOperand(0, FirstNewBlock); |
| 567 | |
| 568 | |
| 569 | // Now that the function is correct, make it a little bit nicer. In |
| 570 | // particular, move the basic blocks inserted from the end of the function |
| 571 | // into the space made by splitting the source basic block. |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 572 | Caller->getBasicBlockList().splice(AfterCallBB, Caller->getBasicBlockList(), |
| 573 | FirstNewBlock, Caller->end()); |
| 574 | |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 575 | // Handle all of the return instructions that we just cloned in, and eliminate |
| 576 | // any users of the original call/invoke instruction. |
Devang Patel | b8f198a | 2008-03-10 18:34:00 +0000 | [diff] [blame] | 577 | const Type *RTy = CalledFunc->getReturnType(); |
Dan Gohman | 2c31750 | 2008-06-20 01:03:44 +0000 | [diff] [blame] | 578 | |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 579 | if (Returns.size() > 1) { |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 580 | // The PHI node should go at the front of the new basic block to merge all |
| 581 | // possible incoming values. |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 582 | PHINode *PHI = 0; |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 583 | if (!TheCall->use_empty()) { |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 584 | PHI = PHINode::Create(RTy, TheCall->getName(), |
| 585 | AfterCallBB->begin()); |
| 586 | // Anything that used the result of the function call should now use the |
| 587 | // PHI node as their operand. |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 588 | TheCall->replaceAllUsesWith(PHI); |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 589 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 590 | |
Gabor Greif | c478e52 | 2009-01-15 18:40:09 +0000 | [diff] [blame] | 591 | // Loop over all of the return instructions adding entries to the PHI node |
| 592 | // as appropriate. |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 593 | if (PHI) { |
| 594 | for (unsigned i = 0, e = Returns.size(); i != e; ++i) { |
| 595 | ReturnInst *RI = Returns[i]; |
| 596 | assert(RI->getReturnValue()->getType() == PHI->getType() && |
| 597 | "Ret value not consistent in function!"); |
| 598 | PHI->addIncoming(RI->getReturnValue(), RI->getParent()); |
Devang Patel | 12a466b | 2008-03-07 20:06:16 +0000 | [diff] [blame] | 599 | } |
| 600 | } |
| 601 | |
Gabor Greif | de62aea | 2009-01-16 23:08:50 +0000 | [diff] [blame] | 602 | // Add a branch to the merge points and remove return instructions. |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 603 | for (unsigned i = 0, e = Returns.size(); i != e; ++i) { |
| 604 | ReturnInst *RI = Returns[i]; |
Dale Johannesen | 0744f09 | 2009-03-04 02:09:48 +0000 | [diff] [blame] | 605 | BranchInst::Create(AfterCallBB, RI); |
Devang Patel | b8f198a | 2008-03-10 18:34:00 +0000 | [diff] [blame] | 606 | RI->eraseFromParent(); |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 607 | } |
Devang Patel | b8f198a | 2008-03-10 18:34:00 +0000 | [diff] [blame] | 608 | } else if (!Returns.empty()) { |
| 609 | // Otherwise, if there is exactly one return value, just replace anything |
| 610 | // using the return value of the call with the computed value. |
Eli Friedman | 5877ad7 | 2009-05-08 00:22:04 +0000 | [diff] [blame^] | 611 | if (!TheCall->use_empty()) { |
| 612 | if (TheCall == Returns[0]->getReturnValue()) |
| 613 | TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType())); |
| 614 | else |
| 615 | TheCall->replaceAllUsesWith(Returns[0]->getReturnValue()); |
| 616 | } |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 617 | |
Devang Patel | b8f198a | 2008-03-10 18:34:00 +0000 | [diff] [blame] | 618 | // Splice the code from the return block into the block that it will return |
| 619 | // to, which contains the code that was after the call. |
| 620 | BasicBlock *ReturnBB = Returns[0]->getParent(); |
| 621 | AfterCallBB->getInstList().splice(AfterCallBB->begin(), |
| 622 | ReturnBB->getInstList()); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 623 | |
Devang Patel | b8f198a | 2008-03-10 18:34:00 +0000 | [diff] [blame] | 624 | // Update PHI nodes that use the ReturnBB to use the AfterCallBB. |
| 625 | ReturnBB->replaceAllUsesWith(AfterCallBB); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 626 | |
Devang Patel | b8f198a | 2008-03-10 18:34:00 +0000 | [diff] [blame] | 627 | // Delete the return instruction now and empty ReturnBB now. |
| 628 | Returns[0]->eraseFromParent(); |
| 629 | ReturnBB->eraseFromParent(); |
Chris Lattner | 3787e76 | 2004-10-17 23:21:07 +0000 | [diff] [blame] | 630 | } else if (!TheCall->use_empty()) { |
| 631 | // No returns, but something is using the return value of the call. Just |
| 632 | // nuke the result. |
| 633 | TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType())); |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 634 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 635 | |
Chris Lattner | 5e923de | 2004-02-04 02:51:48 +0000 | [diff] [blame] | 636 | // Since we are now done with the Call/Invoke, we can delete it. |
Chris Lattner | 3787e76 | 2004-10-17 23:21:07 +0000 | [diff] [blame] | 637 | TheCall->eraseFromParent(); |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 638 | |
Chris Lattner | 7152c23 | 2003-08-24 04:06:56 +0000 | [diff] [blame] | 639 | // We should always be able to fold the entry block of the function into the |
| 640 | // single predecessor of the block... |
Chris Lattner | cd01ae5 | 2004-04-16 05:17:59 +0000 | [diff] [blame] | 641 | assert(cast<BranchInst>(Br)->isUnconditional() && "splitBasicBlock broken!"); |
Chris Lattner | 7152c23 | 2003-08-24 04:06:56 +0000 | [diff] [blame] | 642 | BasicBlock *CalleeEntry = cast<BranchInst>(Br)->getSuccessor(0); |
Chris Lattner | 44a6807 | 2004-02-04 04:17:06 +0000 | [diff] [blame] | 643 | |
Chris Lattner | cd01ae5 | 2004-04-16 05:17:59 +0000 | [diff] [blame] | 644 | // Splice the code entry block into calling block, right before the |
| 645 | // unconditional branch. |
| 646 | OrigBB->getInstList().splice(Br, CalleeEntry->getInstList()); |
| 647 | CalleeEntry->replaceAllUsesWith(OrigBB); // Update PHI nodes |
| 648 | |
| 649 | // Remove the unconditional branch. |
| 650 | OrigBB->getInstList().erase(Br); |
| 651 | |
| 652 | // Now we can remove the CalleeEntry block, which is now empty. |
| 653 | Caller->getBasicBlockList().erase(CalleeEntry); |
Duncan Sands | a7212e5 | 2008-09-05 12:37:12 +0000 | [diff] [blame] | 654 | |
Chris Lattner | ca398dc | 2003-05-29 15:11:31 +0000 | [diff] [blame] | 655 | return true; |
| 656 | } |