Chris Lattner | 6c2e2e5 | 2002-11-19 22:04:49 +0000 | [diff] [blame] | 1 | //===- CloneFunction.cpp - Clone a function into another function ---------===// |
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 | 6c2e2e5 | 2002-11-19 22:04:49 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the CloneFunctionInto interface, which is used as the |
| 11 | // low-level function cloner. This is used by the CloneFunction and function |
| 12 | // inliner to do the dirty work of copying the body of a function around. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 15 | |
Chris Lattner | 309f193 | 2002-11-19 20:59:41 +0000 | [diff] [blame] | 16 | #include "llvm/Transforms/Utils/Cloning.h" |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 17 | #include "llvm/Constants.h" |
Chris Lattner | 5a8932f | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 18 | #include "llvm/DerivedTypes.h" |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 19 | #include "llvm/Instructions.h" |
Devang Patel | f66d7b5 | 2009-02-10 07:48:18 +0000 | [diff] [blame] | 20 | #include "llvm/IntrinsicInst.h" |
Nate Begeman | 4be30ac | 2008-04-25 06:37:06 +0000 | [diff] [blame] | 21 | #include "llvm/GlobalVariable.h" |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 22 | #include "llvm/Function.h" |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame^] | 23 | #include "llvm/LLVMContext.h" |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 24 | #include "llvm/Support/CFG.h" |
Anton Korobeynikov | 344ef19 | 2007-11-09 12:27:04 +0000 | [diff] [blame] | 25 | #include "llvm/Transforms/Utils/ValueMapper.h" |
Chris Lattner | 79066fa | 2007-01-30 23:46:24 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/ConstantFolding.h" |
Devang Patel | 517576d | 2009-04-15 00:17:06 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/DebugInfo.h" |
Chris Lattner | 9fa038d | 2007-01-30 23:13:49 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 29 | #include <map> |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 30 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 31 | |
Chris Lattner | 17d145d | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 32 | // CloneBasicBlock - See comments in Cloning.h |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 33 | BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB, |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 34 | DenseMap<const Value*, Value*> &ValueMap, |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 35 | const char *NameSuffix, Function *F, |
| 36 | ClonedCodeInfo *CodeInfo) { |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 37 | BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), "", F); |
Chris Lattner | 17d145d | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 38 | if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix); |
| 39 | |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 40 | bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false; |
| 41 | |
| 42 | // Loop over all instructions, and copy them over. |
Chris Lattner | 17d145d | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 43 | for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end(); |
| 44 | II != IE; ++II) { |
Nick Lewycky | 6776064 | 2009-09-27 07:38:41 +0000 | [diff] [blame] | 45 | Instruction *NewInst = II->clone(); |
Chris Lattner | 17d145d | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 46 | if (II->hasName()) |
| 47 | NewInst->setName(II->getName()+NameSuffix); |
| 48 | NewBB->getInstList().push_back(NewInst); |
| 49 | ValueMap[II] = NewInst; // Add instruction map to value. |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 50 | |
Dale Johannesen | 8aa90fe | 2009-03-10 22:20:02 +0000 | [diff] [blame] | 51 | hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II)); |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 52 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) { |
| 53 | if (isa<ConstantInt>(AI->getArraySize())) |
| 54 | hasStaticAllocas = true; |
| 55 | else |
| 56 | hasDynamicAllocas = true; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | if (CodeInfo) { |
| 61 | CodeInfo->ContainsCalls |= hasCalls; |
| 62 | CodeInfo->ContainsUnwinds |= isa<UnwindInst>(BB->getTerminator()); |
| 63 | CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas; |
| 64 | CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas && |
Dan Gohman | ecb7a77 | 2007-03-22 16:38:57 +0000 | [diff] [blame] | 65 | BB != &BB->getParent()->getEntryBlock(); |
Chris Lattner | 17d145d | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 66 | } |
| 67 | return NewBB; |
| 68 | } |
| 69 | |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 70 | // Clone OldFunc into NewFunc, transforming the old arguments into references to |
| 71 | // ArgMap values. |
| 72 | // |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 73 | void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc, |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 74 | DenseMap<const Value*, Value*> &ValueMap, |
Chris Lattner | ec1bea0 | 2009-08-27 04:02:30 +0000 | [diff] [blame] | 75 | SmallVectorImpl<ReturnInst*> &Returns, |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 76 | const char *NameSuffix, ClonedCodeInfo *CodeInfo) { |
Chris Lattner | dcd8040 | 2002-11-19 21:54:07 +0000 | [diff] [blame] | 77 | assert(NameSuffix && "NameSuffix cannot be null!"); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 78 | |
Chris Lattner | d180155 | 2002-11-19 22:54:01 +0000 | [diff] [blame] | 79 | #ifndef NDEBUG |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 80 | for (Function::const_arg_iterator I = OldFunc->arg_begin(), |
| 81 | E = OldFunc->arg_end(); I != E; ++I) |
Chris Lattner | d180155 | 2002-11-19 22:54:01 +0000 | [diff] [blame] | 82 | assert(ValueMap.count(I) && "No mapping from source argument specified!"); |
| 83 | #endif |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 84 | |
Duncan Sands | 28c3cff | 2008-05-26 19:58:59 +0000 | [diff] [blame] | 85 | // Clone any attributes. |
Andrew Lenharth | 82cf32e | 2008-10-07 18:08:38 +0000 | [diff] [blame] | 86 | if (NewFunc->arg_size() == OldFunc->arg_size()) |
| 87 | NewFunc->copyAttributesFrom(OldFunc); |
| 88 | else { |
| 89 | //Some arguments were deleted with the ValueMap. Copy arguments one by one |
| 90 | for (Function::const_arg_iterator I = OldFunc->arg_begin(), |
| 91 | E = OldFunc->arg_end(); I != E; ++I) |
| 92 | if (Argument* Anew = dyn_cast<Argument>(ValueMap[I])) |
| 93 | Anew->addAttr( OldFunc->getAttributes() |
| 94 | .getParamAttributes(I->getArgNo() + 1)); |
| 95 | NewFunc->setAttributes(NewFunc->getAttributes() |
| 96 | .addAttr(0, OldFunc->getAttributes() |
| 97 | .getRetAttributes())); |
| 98 | NewFunc->setAttributes(NewFunc->getAttributes() |
| 99 | .addAttr(~0, OldFunc->getAttributes() |
| 100 | .getFnAttributes())); |
| 101 | |
| 102 | } |
Anton Korobeynikov | 9e49f1b | 2008-03-23 16:03:00 +0000 | [diff] [blame] | 103 | |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 104 | // Loop over all of the basic blocks in the function, cloning them as |
Chris Lattner | dcd8040 | 2002-11-19 21:54:07 +0000 | [diff] [blame] | 105 | // appropriate. Note that we save BE this way in order to handle cloning of |
| 106 | // recursive functions into themselves. |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 107 | // |
| 108 | for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end(); |
| 109 | BI != BE; ++BI) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 110 | const BasicBlock &BB = *BI; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 111 | |
Chris Lattner | 17d145d | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 112 | // Create a new basic block and copy instructions into it! |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 113 | BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc, |
| 114 | CodeInfo); |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 115 | ValueMap[&BB] = CBB; // Add basic block mapping. |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 116 | |
Chris Lattner | dcd8040 | 2002-11-19 21:54:07 +0000 | [diff] [blame] | 117 | if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator())) |
| 118 | Returns.push_back(RI); |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 121 | // Loop over all of the instructions in the function, fixing up operand |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 122 | // references as we go. This uses ValueMap to do all the hard work. |
| 123 | // |
Chris Lattner | a33ceaa | 2004-02-04 21:44:26 +0000 | [diff] [blame] | 124 | for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]), |
Nick Lewycky | 280a6e6 | 2008-04-25 16:53:59 +0000 | [diff] [blame] | 125 | BE = NewFunc->end(); BB != BE; ++BB) |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 126 | // Loop over all instructions, fixing each one as we find it... |
Chris Lattner | a33ceaa | 2004-02-04 21:44:26 +0000 | [diff] [blame] | 127 | for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II) |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 128 | RemapInstruction(II, ValueMap); |
Chris Lattner | fa703a4 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 129 | } |
Chris Lattner | 5a8932f | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 130 | |
| 131 | /// CloneFunction - Return a copy of the specified function, but without |
| 132 | /// embedding the function into another module. Also, any references specified |
| 133 | /// in the ValueMap are changed to refer to their mapped value instead of the |
| 134 | /// original one. If any of the arguments to the function are in the ValueMap, |
| 135 | /// the arguments are deleted from the resultant function. The ValueMap is |
| 136 | /// updated to include mappings from all of the instructions and basicblocks in |
| 137 | /// the function from their old to new values. |
| 138 | /// |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 139 | Function *llvm::CloneFunction(const Function *F, |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 140 | DenseMap<const Value*, Value*> &ValueMap, |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 141 | ClonedCodeInfo *CodeInfo) { |
Chris Lattner | 5a8932f | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 142 | std::vector<const Type*> ArgTypes; |
| 143 | |
| 144 | // The user might be deleting arguments to the function by specifying them in |
| 145 | // the ValueMap. If so, we need to not add the arguments to the arg ty vector |
| 146 | // |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 147 | for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); |
| 148 | I != E; ++I) |
Chris Lattner | 5a8932f | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 149 | if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet? |
| 150 | ArgTypes.push_back(I->getType()); |
| 151 | |
| 152 | // Create a new function type... |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 153 | FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(), |
Chris Lattner | 5a8932f | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 154 | ArgTypes, F->getFunctionType()->isVarArg()); |
| 155 | |
| 156 | // Create the new function... |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 157 | Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName()); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 158 | |
Chris Lattner | 5a8932f | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 159 | // Loop over the arguments, copying the names of the mapped arguments over... |
Chris Lattner | e4d5c44 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 160 | Function::arg_iterator DestI = NewF->arg_begin(); |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 161 | for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); |
| 162 | I != E; ++I) |
Chris Lattner | c09aab0 | 2002-11-20 18:32:31 +0000 | [diff] [blame] | 163 | if (ValueMap.count(I) == 0) { // Is this argument preserved? |
Chris Lattner | 5a8932f | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 164 | DestI->setName(I->getName()); // Copy the name over... |
Chris Lattner | c09aab0 | 2002-11-20 18:32:31 +0000 | [diff] [blame] | 165 | ValueMap[I] = DestI++; // Add mapping to ValueMap |
Chris Lattner | 5a8932f | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Chris Lattner | ec1bea0 | 2009-08-27 04:02:30 +0000 | [diff] [blame] | 168 | SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned. |
Chris Lattner | a4c29d2 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 169 | CloneFunctionInto(NewF, F, ValueMap, Returns, "", CodeInfo); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 170 | return NewF; |
Chris Lattner | 5a8932f | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 171 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 172 | |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 173 | |
| 174 | |
| 175 | namespace { |
| 176 | /// PruningFunctionCloner - This class is a private class used to implement |
| 177 | /// the CloneAndPruneFunctionInto method. |
Nick Lewycky | 6726b6d | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 178 | struct PruningFunctionCloner { |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 179 | Function *NewFunc; |
| 180 | const Function *OldFunc; |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 181 | DenseMap<const Value*, Value*> &ValueMap; |
Chris Lattner | ec1bea0 | 2009-08-27 04:02:30 +0000 | [diff] [blame] | 182 | SmallVectorImpl<ReturnInst*> &Returns; |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 183 | const char *NameSuffix; |
| 184 | ClonedCodeInfo *CodeInfo; |
Chris Lattner | 1dfdf82 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 185 | const TargetData *TD; |
Devang Patel | f66d7b5 | 2009-02-10 07:48:18 +0000 | [diff] [blame] | 186 | Value *DbgFnStart; |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 187 | public: |
| 188 | PruningFunctionCloner(Function *newFunc, const Function *oldFunc, |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 189 | DenseMap<const Value*, Value*> &valueMap, |
Chris Lattner | ec1bea0 | 2009-08-27 04:02:30 +0000 | [diff] [blame] | 190 | SmallVectorImpl<ReturnInst*> &returns, |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 191 | const char *nameSuffix, |
Chris Lattner | 1dfdf82 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 192 | ClonedCodeInfo *codeInfo, |
| 193 | const TargetData *td) |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 194 | : NewFunc(newFunc), OldFunc(oldFunc), ValueMap(valueMap), Returns(returns), |
Devang Patel | f66d7b5 | 2009-02-10 07:48:18 +0000 | [diff] [blame] | 195 | NameSuffix(nameSuffix), CodeInfo(codeInfo), TD(td), DbgFnStart(NULL) { |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | /// CloneBlock - The specified block is found to be reachable, clone it and |
| 199 | /// anything that it can reach. |
Chris Lattner | 67ef241 | 2007-03-02 03:11:20 +0000 | [diff] [blame] | 200 | void CloneBlock(const BasicBlock *BB, |
| 201 | std::vector<const BasicBlock*> &ToClone); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 202 | |
| 203 | public: |
| 204 | /// ConstantFoldMappedInstruction - Constant fold the specified instruction, |
| 205 | /// mapping its operands through ValueMap if they are available. |
| 206 | Constant *ConstantFoldMappedInstruction(const Instruction *I); |
| 207 | }; |
| 208 | } |
| 209 | |
| 210 | /// CloneBlock - The specified block is found to be reachable, clone it and |
| 211 | /// anything that it can reach. |
Chris Lattner | 67ef241 | 2007-03-02 03:11:20 +0000 | [diff] [blame] | 212 | void PruningFunctionCloner::CloneBlock(const BasicBlock *BB, |
| 213 | std::vector<const BasicBlock*> &ToClone){ |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 214 | Value *&BBEntry = ValueMap[BB]; |
| 215 | |
| 216 | // Have we already cloned this block? |
| 217 | if (BBEntry) return; |
| 218 | |
| 219 | // Nope, clone it now. |
| 220 | BasicBlock *NewBB; |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 221 | BBEntry = NewBB = BasicBlock::Create(BB->getContext()); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 222 | if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix); |
| 223 | |
| 224 | bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false; |
| 225 | |
| 226 | // Loop over all instructions, and copy them over, DCE'ing as we go. This |
| 227 | // loop doesn't include the terminator. |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 228 | for (BasicBlock::const_iterator II = BB->begin(), IE = --BB->end(); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 229 | II != IE; ++II) { |
| 230 | // If this instruction constant folds, don't bother cloning the instruction, |
| 231 | // instead, just add the constant to the value map. |
| 232 | if (Constant *C = ConstantFoldMappedInstruction(II)) { |
| 233 | ValueMap[II] = C; |
| 234 | continue; |
| 235 | } |
Devang Patel | f66d7b5 | 2009-02-10 07:48:18 +0000 | [diff] [blame] | 236 | |
Devang Patel | 517576d | 2009-04-15 00:17:06 +0000 | [diff] [blame] | 237 | // Do not clone llvm.dbg.region.end. It will be adjusted by the inliner. |
Devang Patel | f66d7b5 | 2009-02-10 07:48:18 +0000 | [diff] [blame] | 238 | if (const DbgFuncStartInst *DFSI = dyn_cast<DbgFuncStartInst>(II)) { |
Devang Patel | 517576d | 2009-04-15 00:17:06 +0000 | [diff] [blame] | 239 | if (DbgFnStart == NULL) { |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 240 | DISubprogram SP(DFSI->getSubprogram()); |
Devang Patel | 517576d | 2009-04-15 00:17:06 +0000 | [diff] [blame] | 241 | if (SP.describes(BB->getParent())) |
| 242 | DbgFnStart = DFSI->getSubprogram(); |
| 243 | } |
Devang Patel | f66d7b5 | 2009-02-10 07:48:18 +0000 | [diff] [blame] | 244 | } |
| 245 | if (const DbgRegionEndInst *DREIS = dyn_cast<DbgRegionEndInst>(II)) { |
| 246 | if (DREIS->getContext() == DbgFnStart) |
| 247 | continue; |
| 248 | } |
| 249 | |
Nick Lewycky | 6776064 | 2009-09-27 07:38:41 +0000 | [diff] [blame] | 250 | Instruction *NewInst = II->clone(); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 251 | if (II->hasName()) |
| 252 | NewInst->setName(II->getName()+NameSuffix); |
| 253 | NewBB->getInstList().push_back(NewInst); |
| 254 | ValueMap[II] = NewInst; // Add instruction map to value. |
| 255 | |
Dale Johannesen | 8aa90fe | 2009-03-10 22:20:02 +0000 | [diff] [blame] | 256 | hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II)); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 257 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) { |
| 258 | if (isa<ConstantInt>(AI->getArraySize())) |
| 259 | hasStaticAllocas = true; |
| 260 | else |
| 261 | hasDynamicAllocas = true; |
| 262 | } |
| 263 | } |
| 264 | |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 265 | // Finally, clone over the terminator. |
| 266 | const TerminatorInst *OldTI = BB->getTerminator(); |
| 267 | bool TerminatorDone = false; |
| 268 | if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) { |
| 269 | if (BI->isConditional()) { |
| 270 | // If the condition was a known constant in the callee... |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 271 | ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition()); |
| 272 | // Or is a known constant in the caller... |
| 273 | if (Cond == 0) |
| 274 | Cond = dyn_cast_or_null<ConstantInt>(ValueMap[BI->getCondition()]); |
| 275 | |
| 276 | // Constant fold to uncond branch! |
| 277 | if (Cond) { |
Reid Spencer | 579dca1 | 2007-01-12 04:24:46 +0000 | [diff] [blame] | 278 | BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue()); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 279 | ValueMap[OldTI] = BranchInst::Create(Dest, NewBB); |
Chris Lattner | 67ef241 | 2007-03-02 03:11:20 +0000 | [diff] [blame] | 280 | ToClone.push_back(Dest); |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 281 | TerminatorDone = true; |
| 282 | } |
| 283 | } |
| 284 | } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) { |
| 285 | // If switching on a value known constant in the caller. |
| 286 | ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition()); |
| 287 | if (Cond == 0) // Or known constant after constant prop in the callee... |
| 288 | Cond = dyn_cast_or_null<ConstantInt>(ValueMap[SI->getCondition()]); |
| 289 | if (Cond) { // Constant fold to uncond branch! |
| 290 | BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond)); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 291 | ValueMap[OldTI] = BranchInst::Create(Dest, NewBB); |
Chris Lattner | 67ef241 | 2007-03-02 03:11:20 +0000 | [diff] [blame] | 292 | ToClone.push_back(Dest); |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 293 | TerminatorDone = true; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | if (!TerminatorDone) { |
Nick Lewycky | 6776064 | 2009-09-27 07:38:41 +0000 | [diff] [blame] | 298 | Instruction *NewInst = OldTI->clone(); |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 299 | if (OldTI->hasName()) |
| 300 | NewInst->setName(OldTI->getName()+NameSuffix); |
| 301 | NewBB->getInstList().push_back(NewInst); |
| 302 | ValueMap[OldTI] = NewInst; // Add instruction map to value. |
| 303 | |
| 304 | // Recursively clone any reachable successor blocks. |
| 305 | const TerminatorInst *TI = BB->getTerminator(); |
| 306 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) |
Chris Lattner | 67ef241 | 2007-03-02 03:11:20 +0000 | [diff] [blame] | 307 | ToClone.push_back(TI->getSuccessor(i)); |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 310 | if (CodeInfo) { |
| 311 | CodeInfo->ContainsCalls |= hasCalls; |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 312 | CodeInfo->ContainsUnwinds |= isa<UnwindInst>(OldTI); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 313 | CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas; |
| 314 | CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas && |
| 315 | BB != &BB->getParent()->front(); |
| 316 | } |
| 317 | |
| 318 | if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator())) |
| 319 | Returns.push_back(RI); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 320 | } |
| 321 | |
| 322 | /// ConstantFoldMappedInstruction - Constant fold the specified instruction, |
| 323 | /// mapping its operands through ValueMap if they are available. |
| 324 | Constant *PruningFunctionCloner:: |
| 325 | ConstantFoldMappedInstruction(const Instruction *I) { |
Chris Lattner | 9fa038d | 2007-01-30 23:13:49 +0000 | [diff] [blame] | 326 | SmallVector<Constant*, 8> Ops; |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 327 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 328 | if (Constant *Op = dyn_cast_or_null<Constant>(MapValue(I->getOperand(i), |
Dan Gohman | 5fa75b0 | 2009-10-24 23:37:16 +0000 | [diff] [blame] | 329 | ValueMap))) |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 330 | Ops.push_back(Op); |
| 331 | else |
| 332 | return 0; // All operands not constant! |
| 333 | |
Chris Lattner | f286f6f | 2007-12-10 22:53:04 +0000 | [diff] [blame] | 334 | if (const CmpInst *CI = dyn_cast<CmpInst>(I)) |
Chris Lattner | 8f73dea | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 335 | return ConstantFoldCompareInstOperands(CI->getPredicate(), Ops[0], Ops[1], |
| 336 | TD); |
Nate Begeman | 4be30ac | 2008-04-25 06:37:06 +0000 | [diff] [blame] | 337 | |
Nate Begeman | 4182db4 | 2008-04-25 17:45:52 +0000 | [diff] [blame] | 338 | if (const LoadInst *LI = dyn_cast<LoadInst>(I)) |
| 339 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0])) |
Nate Begeman | 4be30ac | 2008-04-25 06:37:06 +0000 | [diff] [blame] | 340 | if (!LI->isVolatile() && CE->getOpcode() == Instruction::GetElementPtr) |
| 341 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0))) |
Duncan Sands | 64da940 | 2009-03-21 21:27:31 +0000 | [diff] [blame] | 342 | if (GV->isConstant() && GV->hasDefinitiveInitializer()) |
Nate Begeman | 4be30ac | 2008-04-25 06:37:06 +0000 | [diff] [blame] | 343 | return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), |
Dan Gohman | c6f69e9 | 2009-10-05 16:36:26 +0000 | [diff] [blame] | 344 | CE); |
Nate Begeman | 4be30ac | 2008-04-25 06:37:06 +0000 | [diff] [blame] | 345 | |
| 346 | return ConstantFoldInstOperands(I->getOpcode(), I->getType(), &Ops[0], |
Chris Lattner | 7b550cc | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 347 | Ops.size(), TD); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 348 | } |
| 349 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame^] | 350 | static MDNode *UpdateInlinedAtInfo(MDNode *InsnMD, MDNode *TheCallMD, |
| 351 | LLVMContext &Context) { |
| 352 | DILocation ILoc(InsnMD); |
| 353 | if (ILoc.isNull()) return InsnMD; |
| 354 | |
| 355 | DILocation CallLoc(TheCallMD); |
| 356 | if (CallLoc.isNull()) return InsnMD; |
| 357 | |
| 358 | DILocation OrigLocation = ILoc.getOrigLocation(); |
| 359 | MDNode *NewLoc = TheCallMD; |
| 360 | if (!OrigLocation.isNull()) |
| 361 | NewLoc = UpdateInlinedAtInfo(OrigLocation.getNode(), TheCallMD, Context); |
| 362 | |
| 363 | SmallVector<Value *, 4> MDVs; |
| 364 | MDVs.push_back(InsnMD->getElement(0)); // Line |
| 365 | MDVs.push_back(InsnMD->getElement(1)); // Col |
| 366 | MDVs.push_back(InsnMD->getElement(2)); // Scope |
| 367 | MDVs.push_back(NewLoc); |
| 368 | return MDNode::get(Context, MDVs.data(), MDVs.size()); |
| 369 | } |
| 370 | |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 371 | /// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto, |
| 372 | /// except that it does some simple constant prop and DCE on the fly. The |
| 373 | /// effect of this is to copy significantly less code in cases where (for |
| 374 | /// example) a function call with constant arguments is inlined, and those |
| 375 | /// constant arguments cause a significant amount of code in the callee to be |
Duncan Sands | dc02467 | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 376 | /// dead. Since this doesn't produce an exact copy of the input, it can't be |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 377 | /// used for things like CloneFunction or CloneModule. |
| 378 | void llvm::CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc, |
Chris Lattner | 5e665f5 | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 379 | DenseMap<const Value*, Value*> &ValueMap, |
Chris Lattner | ec1bea0 | 2009-08-27 04:02:30 +0000 | [diff] [blame] | 380 | SmallVectorImpl<ReturnInst*> &Returns, |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 381 | const char *NameSuffix, |
Chris Lattner | 1dfdf82 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 382 | ClonedCodeInfo *CodeInfo, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame^] | 383 | const TargetData *TD, |
| 384 | Instruction *TheCall) { |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 385 | assert(NameSuffix && "NameSuffix cannot be null!"); |
| 386 | |
| 387 | #ifndef NDEBUG |
Jeff Cohen | d41b30d | 2006-11-05 19:31:28 +0000 | [diff] [blame] | 388 | for (Function::const_arg_iterator II = OldFunc->arg_begin(), |
| 389 | E = OldFunc->arg_end(); II != E; ++II) |
| 390 | assert(ValueMap.count(II) && "No mapping from source argument specified!"); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 391 | #endif |
Duncan Sands | 28c3cff | 2008-05-26 19:58:59 +0000 | [diff] [blame] | 392 | |
| 393 | PruningFunctionCloner PFC(NewFunc, OldFunc, ValueMap, Returns, |
Chris Lattner | 1dfdf82 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 394 | NameSuffix, CodeInfo, TD); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 395 | |
| 396 | // Clone the entry block, and anything recursively reachable from it. |
Chris Lattner | 67ef241 | 2007-03-02 03:11:20 +0000 | [diff] [blame] | 397 | std::vector<const BasicBlock*> CloneWorklist; |
| 398 | CloneWorklist.push_back(&OldFunc->getEntryBlock()); |
| 399 | while (!CloneWorklist.empty()) { |
| 400 | const BasicBlock *BB = CloneWorklist.back(); |
| 401 | CloneWorklist.pop_back(); |
| 402 | PFC.CloneBlock(BB, CloneWorklist); |
| 403 | } |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 404 | |
| 405 | // Loop over all of the basic blocks in the old function. If the block was |
| 406 | // reachable, we have cloned it and the old block is now in the value map: |
| 407 | // insert it into the new function in the right order. If not, ignore it. |
| 408 | // |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 409 | // Defer PHI resolution until rest of function is resolved. |
Chris Lattner | ec1bea0 | 2009-08-27 04:02:30 +0000 | [diff] [blame] | 410 | SmallVector<const PHINode*, 16> PHIToResolve; |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 411 | for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end(); |
| 412 | BI != BE; ++BI) { |
| 413 | BasicBlock *NewBB = cast_or_null<BasicBlock>(ValueMap[BI]); |
| 414 | if (NewBB == 0) continue; // Dead block. |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 415 | |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 416 | // Add the new block to the new function. |
| 417 | NewFunc->getBasicBlockList().push_back(NewBB); |
| 418 | |
| 419 | // Loop over all of the instructions in the block, fixing up operand |
| 420 | // references as we go. This uses ValueMap to do all the hard work. |
| 421 | // |
| 422 | BasicBlock::iterator I = NewBB->begin(); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame^] | 423 | |
| 424 | LLVMContext &Context = OldFunc->getContext(); |
| 425 | unsigned DbgKind = Context.getMetadata().getMDKind("dbg"); |
| 426 | MDNode *TheCallMD = NULL; |
| 427 | SmallVector<Value *, 4> MDVs; |
| 428 | if (TheCall && TheCall->hasMetadata()) |
| 429 | TheCallMD = Context.getMetadata().getMD(DbgKind, TheCall); |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 430 | |
| 431 | // Handle PHI nodes specially, as we have to remove references to dead |
| 432 | // blocks. |
| 433 | if (PHINode *PN = dyn_cast<PHINode>(I)) { |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 434 | // Skip over all PHI nodes, remembering them for later. |
| 435 | BasicBlock::const_iterator OldI = BI->begin(); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame^] | 436 | for (; (PN = dyn_cast<PHINode>(I)); ++I, ++OldI) { |
| 437 | if (I->hasMetadata()) |
| 438 | if (TheCallMD) { |
| 439 | if (MDNode *IMD = Context.getMetadata().getMD(DbgKind, I)) { |
| 440 | MDNode *NewMD = UpdateInlinedAtInfo(IMD, TheCallMD, Context); |
| 441 | Context.getMetadata().addMD(DbgKind, NewMD, I); |
| 442 | } |
| 443 | } else |
| 444 | // The cloned instruction has dbg info but the call instruction |
| 445 | // does not have dbg info. Remove dbg info from cloned instruction. |
| 446 | Context.getMetadata().removeMD(DbgKind, I); |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 447 | PHIToResolve.push_back(cast<PHINode>(OldI)); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame^] | 448 | } |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | // Otherwise, remap the rest of the instructions normally. |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame^] | 452 | for (; I != NewBB->end(); ++I) { |
| 453 | if (I->hasMetadata()) |
| 454 | if (TheCallMD) { |
| 455 | if (MDNode *IMD = Context.getMetadata().getMD(DbgKind, I)) { |
| 456 | MDNode *NewMD = UpdateInlinedAtInfo(IMD, TheCallMD, Context); |
| 457 | Context.getMetadata().addMD(DbgKind, NewMD, I); |
| 458 | } |
| 459 | } else |
| 460 | // The cloned instruction has dbg info but the call instruction |
| 461 | // does not have dbg info. Remove dbg info from cloned instruction. |
| 462 | Context.getMetadata().removeMD(DbgKind, I); |
| 463 | |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 464 | RemapInstruction(I, ValueMap); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame^] | 465 | } |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 466 | } |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 467 | |
| 468 | // Defer PHI resolution until rest of function is resolved, PHI resolution |
| 469 | // requires the CFG to be up-to-date. |
| 470 | for (unsigned phino = 0, e = PHIToResolve.size(); phino != e; ) { |
| 471 | const PHINode *OPN = PHIToResolve[phino]; |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 472 | unsigned NumPreds = OPN->getNumIncomingValues(); |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 473 | const BasicBlock *OldBB = OPN->getParent(); |
| 474 | BasicBlock *NewBB = cast<BasicBlock>(ValueMap[OldBB]); |
| 475 | |
| 476 | // Map operands for blocks that are live and remove operands for blocks |
| 477 | // that are dead. |
| 478 | for (; phino != PHIToResolve.size() && |
| 479 | PHIToResolve[phino]->getParent() == OldBB; ++phino) { |
| 480 | OPN = PHIToResolve[phino]; |
| 481 | PHINode *PN = cast<PHINode>(ValueMap[OPN]); |
| 482 | for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) { |
| 483 | if (BasicBlock *MappedBlock = |
| 484 | cast_or_null<BasicBlock>(ValueMap[PN->getIncomingBlock(pred)])) { |
Owen Anderson | 0a205a4 | 2009-07-05 22:41:43 +0000 | [diff] [blame] | 485 | Value *InVal = MapValue(PN->getIncomingValue(pred), |
Dan Gohman | 5fa75b0 | 2009-10-24 23:37:16 +0000 | [diff] [blame] | 486 | ValueMap); |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 487 | assert(InVal && "Unknown input value?"); |
| 488 | PN->setIncomingValue(pred, InVal); |
| 489 | PN->setIncomingBlock(pred, MappedBlock); |
| 490 | } else { |
| 491 | PN->removeIncomingValue(pred, false); |
| 492 | --pred, --e; // Revisit the next entry. |
| 493 | } |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | // The loop above has removed PHI entries for those blocks that are dead |
| 498 | // and has updated others. However, if a block is live (i.e. copied over) |
| 499 | // but its terminator has been changed to not go to this block, then our |
| 500 | // phi nodes will have invalid entries. Update the PHI nodes in this |
| 501 | // case. |
| 502 | PHINode *PN = cast<PHINode>(NewBB->begin()); |
| 503 | NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB)); |
| 504 | if (NumPreds != PN->getNumIncomingValues()) { |
| 505 | assert(NumPreds < PN->getNumIncomingValues()); |
| 506 | // Count how many times each predecessor comes to this block. |
| 507 | std::map<BasicBlock*, unsigned> PredCount; |
| 508 | for (pred_iterator PI = pred_begin(NewBB), E = pred_end(NewBB); |
| 509 | PI != E; ++PI) |
| 510 | --PredCount[*PI]; |
| 511 | |
| 512 | // Figure out how many entries to remove from each PHI. |
| 513 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 514 | ++PredCount[PN->getIncomingBlock(i)]; |
| 515 | |
| 516 | // At this point, the excess predecessor entries are positive in the |
| 517 | // map. Loop over all of the PHIs and remove excess predecessor |
| 518 | // entries. |
| 519 | BasicBlock::iterator I = NewBB->begin(); |
| 520 | for (; (PN = dyn_cast<PHINode>(I)); ++I) { |
| 521 | for (std::map<BasicBlock*, unsigned>::iterator PCI =PredCount.begin(), |
| 522 | E = PredCount.end(); PCI != E; ++PCI) { |
| 523 | BasicBlock *Pred = PCI->first; |
| 524 | for (unsigned NumToRemove = PCI->second; NumToRemove; --NumToRemove) |
| 525 | PN->removeIncomingValue(Pred, false); |
| 526 | } |
| 527 | } |
| 528 | } |
| 529 | |
| 530 | // If the loops above have made these phi nodes have 0 or 1 operand, |
| 531 | // replace them with undef or the input value. We must do this for |
| 532 | // correctness, because 0-operand phis are not valid. |
| 533 | PN = cast<PHINode>(NewBB->begin()); |
| 534 | if (PN->getNumIncomingValues() == 0) { |
| 535 | BasicBlock::iterator I = NewBB->begin(); |
| 536 | BasicBlock::const_iterator OldI = OldBB->begin(); |
| 537 | while ((PN = dyn_cast<PHINode>(I++))) { |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 538 | Value *NV = UndefValue::get(PN->getType()); |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 539 | PN->replaceAllUsesWith(NV); |
| 540 | assert(ValueMap[OldI] == PN && "ValueMap mismatch"); |
| 541 | ValueMap[OldI] = NV; |
| 542 | PN->eraseFromParent(); |
| 543 | ++OldI; |
| 544 | } |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 545 | } |
Chris Lattner | 8e8eda7 | 2007-02-01 18:48:38 +0000 | [diff] [blame] | 546 | // NOTE: We cannot eliminate single entry phi nodes here, because of |
| 547 | // ValueMap. Single entry phi nodes can have multiple ValueMap entries |
| 548 | // pointing at them. Thus, deleting one would require scanning the ValueMap |
| 549 | // to update any entries in it that would require that. This would be |
| 550 | // really slow. |
Chris Lattner | 35033ef | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 551 | } |
Chris Lattner | a4646b6 | 2006-09-13 21:27:00 +0000 | [diff] [blame] | 552 | |
| 553 | // Now that the inlined function body has been fully constructed, go through |
| 554 | // and zap unconditional fall-through branches. This happen all the time when |
| 555 | // specializing code: code specialization turns conditional branches into |
| 556 | // uncond branches, and this code folds them. |
| 557 | Function::iterator I = cast<BasicBlock>(ValueMap[&OldFunc->getEntryBlock()]); |
| 558 | while (I != NewFunc->end()) { |
| 559 | BranchInst *BI = dyn_cast<BranchInst>(I->getTerminator()); |
| 560 | if (!BI || BI->isConditional()) { ++I; continue; } |
| 561 | |
Chris Lattner | 8e8eda7 | 2007-02-01 18:48:38 +0000 | [diff] [blame] | 562 | // Note that we can't eliminate uncond branches if the destination has |
| 563 | // single-entry PHI nodes. Eliminating the single-entry phi nodes would |
| 564 | // require scanning the ValueMap to update any entries that point to the phi |
| 565 | // node. |
Chris Lattner | a4646b6 | 2006-09-13 21:27:00 +0000 | [diff] [blame] | 566 | BasicBlock *Dest = BI->getSuccessor(0); |
Chris Lattner | 8e8eda7 | 2007-02-01 18:48:38 +0000 | [diff] [blame] | 567 | if (!Dest->getSinglePredecessor() || isa<PHINode>(Dest->begin())) { |
| 568 | ++I; continue; |
| 569 | } |
Chris Lattner | a4646b6 | 2006-09-13 21:27:00 +0000 | [diff] [blame] | 570 | |
| 571 | // We know all single-entry PHI nodes in the inlined function have been |
| 572 | // removed, so we just need to splice the blocks. |
| 573 | BI->eraseFromParent(); |
| 574 | |
| 575 | // Move all the instructions in the succ to the pred. |
| 576 | I->getInstList().splice(I->end(), Dest->getInstList()); |
| 577 | |
| 578 | // Make all PHI nodes that referred to Dest now refer to I as their source. |
| 579 | Dest->replaceAllUsesWith(I); |
| 580 | |
| 581 | // Remove the dest block. |
| 582 | Dest->eraseFromParent(); |
| 583 | |
| 584 | // Do not increment I, iteratively merge all things this block branches to. |
| 585 | } |
Chris Lattner | 83f03bf | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 586 | } |