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