Chris Lattner | 8bce988 | 2002-11-19 22:04:49 +0000 | [diff] [blame] | 1 | //===- CloneFunction.cpp - Clone a function into another function ---------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 8bce988 | 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 | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 15 | |
Chris Lattner | 1666751 | 2002-11-19 20:59:41 +0000 | [diff] [blame] | 16 | #include "llvm/Transforms/Utils/Cloning.h" |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 17 | #include "llvm/Constants.h" |
Chris Lattner | fb311d2 | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 18 | #include "llvm/DerivedTypes.h" |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 19 | #include "llvm/Instructions.h" |
Chris Lattner | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 20 | #include "llvm/Function.h" |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 21 | #include "llvm/Support/CFG.h" |
Chris Lattner | e4dbb1a | 2002-11-20 20:47:41 +0000 | [diff] [blame] | 22 | #include "ValueMapper.h" |
Chris Lattner | 024f4ab | 2007-01-30 23:46:24 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/ConstantFolding.h" |
Chris Lattner | 2c4610e | 2007-01-30 23:13:49 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 1bfc7ab | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 25 | #include <map> |
Chris Lattner | df3c342 | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 26 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 27 | |
Chris Lattner | e9f4232 | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 28 | // CloneBasicBlock - See comments in Cloning.h |
Chris Lattner | df3c342 | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 29 | BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB, |
Chris Lattner | 1bfc7ab | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 30 | DenseMap<const Value*, Value*> &ValueMap, |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 31 | const char *NameSuffix, Function *F, |
| 32 | ClonedCodeInfo *CodeInfo) { |
Chris Lattner | a6578ef3 | 2004-02-04 01:19:43 +0000 | [diff] [blame] | 33 | BasicBlock *NewBB = new BasicBlock("", F); |
Chris Lattner | e9f4232 | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 34 | if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix); |
| 35 | |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 36 | bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false; |
| 37 | |
| 38 | // Loop over all instructions, and copy them over. |
Chris Lattner | e9f4232 | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 39 | for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end(); |
| 40 | II != IE; ++II) { |
| 41 | Instruction *NewInst = II->clone(); |
| 42 | if (II->hasName()) |
| 43 | NewInst->setName(II->getName()+NameSuffix); |
| 44 | NewBB->getInstList().push_back(NewInst); |
| 45 | ValueMap[II] = NewInst; // Add instruction map to value. |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 46 | |
| 47 | hasCalls |= isa<CallInst>(II); |
| 48 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) { |
| 49 | if (isa<ConstantInt>(AI->getArraySize())) |
| 50 | hasStaticAllocas = true; |
| 51 | else |
| 52 | hasDynamicAllocas = true; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | if (CodeInfo) { |
| 57 | CodeInfo->ContainsCalls |= hasCalls; |
| 58 | CodeInfo->ContainsUnwinds |= isa<UnwindInst>(BB->getTerminator()); |
| 59 | CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas; |
| 60 | CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas && |
| 61 | BB != &BB->getParent()->front(); |
Chris Lattner | e9f4232 | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 62 | } |
| 63 | return NewBB; |
| 64 | } |
| 65 | |
Chris Lattner | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 66 | // Clone OldFunc into NewFunc, transforming the old arguments into references to |
| 67 | // ArgMap values. |
| 68 | // |
Chris Lattner | df3c342 | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 69 | void llvm::CloneFunctionInto(Function *NewFunc, const Function *OldFunc, |
Chris Lattner | 1bfc7ab | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 70 | DenseMap<const Value*, Value*> &ValueMap, |
Chris Lattner | df3c342 | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 71 | std::vector<ReturnInst*> &Returns, |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 72 | const char *NameSuffix, ClonedCodeInfo *CodeInfo) { |
Chris Lattner | b112005 | 2002-11-19 21:54:07 +0000 | [diff] [blame] | 73 | assert(NameSuffix && "NameSuffix cannot be null!"); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 74 | |
Chris Lattner | c362618 | 2002-11-19 22:54:01 +0000 | [diff] [blame] | 75 | #ifndef NDEBUG |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 76 | for (Function::const_arg_iterator I = OldFunc->arg_begin(), |
| 77 | E = OldFunc->arg_end(); I != E; ++I) |
Chris Lattner | c362618 | 2002-11-19 22:54:01 +0000 | [diff] [blame] | 78 | assert(ValueMap.count(I) && "No mapping from source argument specified!"); |
| 79 | #endif |
Chris Lattner | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 80 | |
| 81 | // Loop over all of the basic blocks in the function, cloning them as |
Chris Lattner | b112005 | 2002-11-19 21:54:07 +0000 | [diff] [blame] | 82 | // appropriate. Note that we save BE this way in order to handle cloning of |
| 83 | // recursive functions into themselves. |
Chris Lattner | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 84 | // |
| 85 | for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end(); |
| 86 | BI != BE; ++BI) { |
Chris Lattner | fda72b1 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 87 | const BasicBlock &BB = *BI; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 88 | |
Chris Lattner | e9f4232 | 2003-04-18 03:50:09 +0000 | [diff] [blame] | 89 | // Create a new basic block and copy instructions into it! |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 90 | BasicBlock *CBB = CloneBasicBlock(&BB, ValueMap, NameSuffix, NewFunc, |
| 91 | CodeInfo); |
Chris Lattner | fda72b1 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 92 | ValueMap[&BB] = CBB; // Add basic block mapping. |
Chris Lattner | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 93 | |
Chris Lattner | b112005 | 2002-11-19 21:54:07 +0000 | [diff] [blame] | 94 | if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator())) |
| 95 | Returns.push_back(RI); |
Chris Lattner | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 96 | } |
| 97 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 98 | // Loop over all of the instructions in the function, fixing up operand |
Chris Lattner | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 99 | // references as we go. This uses ValueMap to do all the hard work. |
| 100 | // |
Chris Lattner | 39ad6f2 | 2004-02-04 21:44:26 +0000 | [diff] [blame] | 101 | for (Function::iterator BB = cast<BasicBlock>(ValueMap[OldFunc->begin()]), |
| 102 | BE = NewFunc->end(); BB != BE; ++BB) |
Chris Lattner | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 103 | // Loop over all instructions, fixing each one as we find it... |
Chris Lattner | 39ad6f2 | 2004-02-04 21:44:26 +0000 | [diff] [blame] | 104 | for (BasicBlock::iterator II = BB->begin(); II != BB->end(); ++II) |
Chris Lattner | fda72b1 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 105 | RemapInstruction(II, ValueMap); |
Chris Lattner | 16bfdb5 | 2002-03-29 19:03:54 +0000 | [diff] [blame] | 106 | } |
Chris Lattner | fb311d2 | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 107 | |
| 108 | /// CloneFunction - Return a copy of the specified function, but without |
| 109 | /// embedding the function into another module. Also, any references specified |
| 110 | /// in the ValueMap are changed to refer to their mapped value instead of the |
| 111 | /// original one. If any of the arguments to the function are in the ValueMap, |
| 112 | /// the arguments are deleted from the resultant function. The ValueMap is |
| 113 | /// updated to include mappings from all of the instructions and basicblocks in |
| 114 | /// the function from their old to new values. |
| 115 | /// |
Chris Lattner | df3c342 | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 116 | Function *llvm::CloneFunction(const Function *F, |
Chris Lattner | 1bfc7ab | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 117 | DenseMap<const Value*, Value*> &ValueMap, |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 118 | ClonedCodeInfo *CodeInfo) { |
Chris Lattner | fb311d2 | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 119 | std::vector<const Type*> ArgTypes; |
| 120 | |
| 121 | // The user might be deleting arguments to the function by specifying them in |
| 122 | // the ValueMap. If so, we need to not add the arguments to the arg ty vector |
| 123 | // |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 124 | for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); |
| 125 | I != E; ++I) |
Chris Lattner | fb311d2 | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 126 | if (ValueMap.count(I) == 0) // Haven't mapped the argument to anything yet? |
| 127 | ArgTypes.push_back(I->getType()); |
| 128 | |
| 129 | // Create a new function type... |
| 130 | FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(), |
| 131 | ArgTypes, F->getFunctionType()->isVarArg()); |
| 132 | |
| 133 | // Create the new function... |
Chris Lattner | 379a8d2 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 134 | Function *NewF = new Function(FTy, F->getLinkage(), F->getName()); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 135 | |
Chris Lattner | fb311d2 | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 136 | // Loop over the arguments, copying the names of the mapped arguments over... |
Chris Lattner | 531f9e9 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 137 | Function::arg_iterator DestI = NewF->arg_begin(); |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 138 | for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); |
| 139 | I != E; ++I) |
Chris Lattner | 7c6d9d9e | 2002-11-20 18:32:31 +0000 | [diff] [blame] | 140 | if (ValueMap.count(I) == 0) { // Is this argument preserved? |
Chris Lattner | fb311d2 | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 141 | DestI->setName(I->getName()); // Copy the name over... |
Chris Lattner | 7c6d9d9e | 2002-11-20 18:32:31 +0000 | [diff] [blame] | 142 | ValueMap[I] = DestI++; // Add mapping to ValueMap |
Chris Lattner | fb311d2 | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | std::vector<ReturnInst*> Returns; // Ignore returns cloned... |
Chris Lattner | edad128 | 2006-01-13 18:39:17 +0000 | [diff] [blame] | 146 | CloneFunctionInto(NewF, F, ValueMap, Returns, "", CodeInfo); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 147 | return NewF; |
Chris Lattner | fb311d2 | 2002-11-19 23:12:22 +0000 | [diff] [blame] | 148 | } |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 149 | |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 150 | |
| 151 | |
| 152 | namespace { |
| 153 | /// PruningFunctionCloner - This class is a private class used to implement |
| 154 | /// the CloneAndPruneFunctionInto method. |
| 155 | struct PruningFunctionCloner { |
| 156 | Function *NewFunc; |
| 157 | const Function *OldFunc; |
Chris Lattner | 1bfc7ab | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 158 | DenseMap<const Value*, Value*> &ValueMap; |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 159 | std::vector<ReturnInst*> &Returns; |
| 160 | const char *NameSuffix; |
| 161 | ClonedCodeInfo *CodeInfo; |
Chris Lattner | ad84a73 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 162 | const TargetData *TD; |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 163 | |
| 164 | public: |
| 165 | PruningFunctionCloner(Function *newFunc, const Function *oldFunc, |
Chris Lattner | 1bfc7ab | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 166 | DenseMap<const Value*, Value*> &valueMap, |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 167 | std::vector<ReturnInst*> &returns, |
| 168 | const char *nameSuffix, |
Chris Lattner | ad84a73 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 169 | ClonedCodeInfo *codeInfo, |
| 170 | const TargetData *td) |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 171 | : NewFunc(newFunc), OldFunc(oldFunc), ValueMap(valueMap), Returns(returns), |
Chris Lattner | ad84a73 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 172 | NameSuffix(nameSuffix), CodeInfo(codeInfo), TD(td) { |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | /// CloneBlock - The specified block is found to be reachable, clone it and |
| 176 | /// anything that it can reach. |
| 177 | void CloneBlock(const BasicBlock *BB); |
| 178 | |
| 179 | public: |
| 180 | /// ConstantFoldMappedInstruction - Constant fold the specified instruction, |
| 181 | /// mapping its operands through ValueMap if they are available. |
| 182 | Constant *ConstantFoldMappedInstruction(const Instruction *I); |
| 183 | }; |
| 184 | } |
| 185 | |
| 186 | /// CloneBlock - The specified block is found to be reachable, clone it and |
| 187 | /// anything that it can reach. |
| 188 | void PruningFunctionCloner::CloneBlock(const BasicBlock *BB) { |
| 189 | Value *&BBEntry = ValueMap[BB]; |
| 190 | |
| 191 | // Have we already cloned this block? |
| 192 | if (BBEntry) return; |
| 193 | |
| 194 | // Nope, clone it now. |
| 195 | BasicBlock *NewBB; |
| 196 | BBEntry = NewBB = new BasicBlock(); |
| 197 | if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix); |
| 198 | |
| 199 | bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false; |
| 200 | |
| 201 | // Loop over all instructions, and copy them over, DCE'ing as we go. This |
| 202 | // loop doesn't include the terminator. |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 203 | for (BasicBlock::const_iterator II = BB->begin(), IE = --BB->end(); |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 204 | II != IE; ++II) { |
| 205 | // If this instruction constant folds, don't bother cloning the instruction, |
| 206 | // instead, just add the constant to the value map. |
| 207 | if (Constant *C = ConstantFoldMappedInstruction(II)) { |
| 208 | ValueMap[II] = C; |
| 209 | continue; |
| 210 | } |
| 211 | |
| 212 | Instruction *NewInst = II->clone(); |
| 213 | if (II->hasName()) |
| 214 | NewInst->setName(II->getName()+NameSuffix); |
| 215 | NewBB->getInstList().push_back(NewInst); |
| 216 | ValueMap[II] = NewInst; // Add instruction map to value. |
| 217 | |
| 218 | hasCalls |= isa<CallInst>(II); |
| 219 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) { |
| 220 | if (isa<ConstantInt>(AI->getArraySize())) |
| 221 | hasStaticAllocas = true; |
| 222 | else |
| 223 | hasDynamicAllocas = true; |
| 224 | } |
| 225 | } |
| 226 | |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 227 | // Finally, clone over the terminator. |
| 228 | const TerminatorInst *OldTI = BB->getTerminator(); |
| 229 | bool TerminatorDone = false; |
| 230 | if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) { |
| 231 | if (BI->isConditional()) { |
| 232 | // If the condition was a known constant in the callee... |
Zhou Sheng | 75b871f | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 233 | ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition()); |
| 234 | // Or is a known constant in the caller... |
| 235 | if (Cond == 0) |
| 236 | Cond = dyn_cast_or_null<ConstantInt>(ValueMap[BI->getCondition()]); |
| 237 | |
| 238 | // Constant fold to uncond branch! |
| 239 | if (Cond) { |
Reid Spencer | cddc9df | 2007-01-12 04:24:46 +0000 | [diff] [blame] | 240 | BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue()); |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 241 | ValueMap[OldTI] = new BranchInst(Dest, NewBB); |
| 242 | CloneBlock(Dest); |
| 243 | TerminatorDone = true; |
| 244 | } |
| 245 | } |
| 246 | } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) { |
| 247 | // If switching on a value known constant in the caller. |
| 248 | ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition()); |
| 249 | if (Cond == 0) // Or known constant after constant prop in the callee... |
| 250 | Cond = dyn_cast_or_null<ConstantInt>(ValueMap[SI->getCondition()]); |
| 251 | if (Cond) { // Constant fold to uncond branch! |
| 252 | BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond)); |
| 253 | ValueMap[OldTI] = new BranchInst(Dest, NewBB); |
| 254 | CloneBlock(Dest); |
| 255 | TerminatorDone = true; |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | if (!TerminatorDone) { |
| 260 | Instruction *NewInst = OldTI->clone(); |
| 261 | if (OldTI->hasName()) |
| 262 | NewInst->setName(OldTI->getName()+NameSuffix); |
| 263 | NewBB->getInstList().push_back(NewInst); |
| 264 | ValueMap[OldTI] = NewInst; // Add instruction map to value. |
| 265 | |
| 266 | // Recursively clone any reachable successor blocks. |
| 267 | const TerminatorInst *TI = BB->getTerminator(); |
| 268 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) |
| 269 | CloneBlock(TI->getSuccessor(i)); |
| 270 | } |
| 271 | |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 272 | if (CodeInfo) { |
| 273 | CodeInfo->ContainsCalls |= hasCalls; |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 274 | CodeInfo->ContainsUnwinds |= isa<UnwindInst>(OldTI); |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 275 | CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas; |
| 276 | CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas && |
| 277 | BB != &BB->getParent()->front(); |
| 278 | } |
| 279 | |
| 280 | if (ReturnInst *RI = dyn_cast<ReturnInst>(NewBB->getTerminator())) |
| 281 | Returns.push_back(RI); |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | /// ConstantFoldMappedInstruction - Constant fold the specified instruction, |
| 285 | /// mapping its operands through ValueMap if they are available. |
| 286 | Constant *PruningFunctionCloner:: |
| 287 | ConstantFoldMappedInstruction(const Instruction *I) { |
Chris Lattner | 2c4610e | 2007-01-30 23:13:49 +0000 | [diff] [blame] | 288 | SmallVector<Constant*, 8> Ops; |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 289 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 290 | if (Constant *Op = dyn_cast_or_null<Constant>(MapValue(I->getOperand(i), |
| 291 | ValueMap))) |
| 292 | Ops.push_back(Op); |
| 293 | else |
| 294 | return 0; // All operands not constant! |
| 295 | |
Chris Lattner | ad84a73 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 296 | return ConstantFoldInstOperands(I, &Ops[0], Ops.size(), TD); |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 299 | /// CloneAndPruneFunctionInto - This works exactly like CloneFunctionInto, |
| 300 | /// except that it does some simple constant prop and DCE on the fly. The |
| 301 | /// effect of this is to copy significantly less code in cases where (for |
| 302 | /// example) a function call with constant arguments is inlined, and those |
| 303 | /// constant arguments cause a significant amount of code in the callee to be |
| 304 | /// dead. Since this doesn't produce an exactly copy of the input, it can't be |
| 305 | /// used for things like CloneFunction or CloneModule. |
| 306 | void llvm::CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc, |
Chris Lattner | 1bfc7ab | 2007-02-03 00:08:31 +0000 | [diff] [blame] | 307 | DenseMap<const Value*, Value*> &ValueMap, |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 308 | std::vector<ReturnInst*> &Returns, |
| 309 | const char *NameSuffix, |
Chris Lattner | ad84a73 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 310 | ClonedCodeInfo *CodeInfo, |
| 311 | const TargetData *TD) { |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 312 | assert(NameSuffix && "NameSuffix cannot be null!"); |
| 313 | |
| 314 | #ifndef NDEBUG |
Jeff Cohen | 7d6f3db | 2006-11-05 19:31:28 +0000 | [diff] [blame] | 315 | for (Function::const_arg_iterator II = OldFunc->arg_begin(), |
| 316 | E = OldFunc->arg_end(); II != E; ++II) |
| 317 | assert(ValueMap.count(II) && "No mapping from source argument specified!"); |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 318 | #endif |
| 319 | |
| 320 | PruningFunctionCloner PFC(NewFunc, OldFunc, ValueMap, Returns, |
Chris Lattner | ad84a73 | 2007-01-30 23:22:39 +0000 | [diff] [blame] | 321 | NameSuffix, CodeInfo, TD); |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 322 | |
| 323 | // Clone the entry block, and anything recursively reachable from it. |
| 324 | PFC.CloneBlock(&OldFunc->getEntryBlock()); |
| 325 | |
| 326 | // Loop over all of the basic blocks in the old function. If the block was |
| 327 | // reachable, we have cloned it and the old block is now in the value map: |
| 328 | // insert it into the new function in the right order. If not, ignore it. |
| 329 | // |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 330 | // Defer PHI resolution until rest of function is resolved. |
| 331 | std::vector<const PHINode*> PHIToResolve; |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 332 | for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end(); |
| 333 | BI != BE; ++BI) { |
| 334 | BasicBlock *NewBB = cast_or_null<BasicBlock>(ValueMap[BI]); |
| 335 | if (NewBB == 0) continue; // Dead block. |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 336 | |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 337 | // Add the new block to the new function. |
| 338 | NewFunc->getBasicBlockList().push_back(NewBB); |
| 339 | |
| 340 | // Loop over all of the instructions in the block, fixing up operand |
| 341 | // references as we go. This uses ValueMap to do all the hard work. |
| 342 | // |
| 343 | BasicBlock::iterator I = NewBB->begin(); |
| 344 | |
| 345 | // Handle PHI nodes specially, as we have to remove references to dead |
| 346 | // blocks. |
| 347 | if (PHINode *PN = dyn_cast<PHINode>(I)) { |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 348 | // Skip over all PHI nodes, remembering them for later. |
| 349 | BasicBlock::const_iterator OldI = BI->begin(); |
| 350 | for (; (PN = dyn_cast<PHINode>(I)); ++I, ++OldI) |
| 351 | PHIToResolve.push_back(cast<PHINode>(OldI)); |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | // Otherwise, remap the rest of the instructions normally. |
| 355 | for (; I != NewBB->end(); ++I) |
| 356 | RemapInstruction(I, ValueMap); |
| 357 | } |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 358 | |
| 359 | // Defer PHI resolution until rest of function is resolved, PHI resolution |
| 360 | // requires the CFG to be up-to-date. |
| 361 | for (unsigned phino = 0, e = PHIToResolve.size(); phino != e; ) { |
| 362 | const PHINode *OPN = PHIToResolve[phino]; |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 363 | unsigned NumPreds = OPN->getNumIncomingValues(); |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 364 | const BasicBlock *OldBB = OPN->getParent(); |
| 365 | BasicBlock *NewBB = cast<BasicBlock>(ValueMap[OldBB]); |
| 366 | |
| 367 | // Map operands for blocks that are live and remove operands for blocks |
| 368 | // that are dead. |
| 369 | for (; phino != PHIToResolve.size() && |
| 370 | PHIToResolve[phino]->getParent() == OldBB; ++phino) { |
| 371 | OPN = PHIToResolve[phino]; |
| 372 | PHINode *PN = cast<PHINode>(ValueMap[OPN]); |
| 373 | for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) { |
| 374 | if (BasicBlock *MappedBlock = |
| 375 | cast_or_null<BasicBlock>(ValueMap[PN->getIncomingBlock(pred)])) { |
| 376 | Value *InVal = MapValue(PN->getIncomingValue(pred), ValueMap); |
| 377 | assert(InVal && "Unknown input value?"); |
| 378 | PN->setIncomingValue(pred, InVal); |
| 379 | PN->setIncomingBlock(pred, MappedBlock); |
| 380 | } else { |
| 381 | PN->removeIncomingValue(pred, false); |
| 382 | --pred, --e; // Revisit the next entry. |
| 383 | } |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | // The loop above has removed PHI entries for those blocks that are dead |
| 388 | // and has updated others. However, if a block is live (i.e. copied over) |
| 389 | // but its terminator has been changed to not go to this block, then our |
| 390 | // phi nodes will have invalid entries. Update the PHI nodes in this |
| 391 | // case. |
| 392 | PHINode *PN = cast<PHINode>(NewBB->begin()); |
| 393 | NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB)); |
| 394 | if (NumPreds != PN->getNumIncomingValues()) { |
| 395 | assert(NumPreds < PN->getNumIncomingValues()); |
| 396 | // Count how many times each predecessor comes to this block. |
| 397 | std::map<BasicBlock*, unsigned> PredCount; |
| 398 | for (pred_iterator PI = pred_begin(NewBB), E = pred_end(NewBB); |
| 399 | PI != E; ++PI) |
| 400 | --PredCount[*PI]; |
| 401 | |
| 402 | // Figure out how many entries to remove from each PHI. |
| 403 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 404 | ++PredCount[PN->getIncomingBlock(i)]; |
| 405 | |
| 406 | // At this point, the excess predecessor entries are positive in the |
| 407 | // map. Loop over all of the PHIs and remove excess predecessor |
| 408 | // entries. |
| 409 | BasicBlock::iterator I = NewBB->begin(); |
| 410 | for (; (PN = dyn_cast<PHINode>(I)); ++I) { |
| 411 | for (std::map<BasicBlock*, unsigned>::iterator PCI =PredCount.begin(), |
| 412 | E = PredCount.end(); PCI != E; ++PCI) { |
| 413 | BasicBlock *Pred = PCI->first; |
| 414 | for (unsigned NumToRemove = PCI->second; NumToRemove; --NumToRemove) |
| 415 | PN->removeIncomingValue(Pred, false); |
| 416 | } |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | // If the loops above have made these phi nodes have 0 or 1 operand, |
| 421 | // replace them with undef or the input value. We must do this for |
| 422 | // correctness, because 0-operand phis are not valid. |
| 423 | PN = cast<PHINode>(NewBB->begin()); |
| 424 | if (PN->getNumIncomingValues() == 0) { |
| 425 | BasicBlock::iterator I = NewBB->begin(); |
| 426 | BasicBlock::const_iterator OldI = OldBB->begin(); |
| 427 | while ((PN = dyn_cast<PHINode>(I++))) { |
| 428 | Value *NV = UndefValue::get(PN->getType()); |
| 429 | PN->replaceAllUsesWith(NV); |
| 430 | assert(ValueMap[OldI] == PN && "ValueMap mismatch"); |
| 431 | ValueMap[OldI] = NV; |
| 432 | PN->eraseFromParent(); |
| 433 | ++OldI; |
| 434 | } |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 435 | } |
Chris Lattner | ce49422 | 2007-02-01 18:48:38 +0000 | [diff] [blame] | 436 | // NOTE: We cannot eliminate single entry phi nodes here, because of |
| 437 | // ValueMap. Single entry phi nodes can have multiple ValueMap entries |
| 438 | // pointing at them. Thus, deleting one would require scanning the ValueMap |
| 439 | // to update any entries in it that would require that. This would be |
| 440 | // really slow. |
Chris Lattner | cc340c0 | 2006-06-01 19:19:23 +0000 | [diff] [blame] | 441 | } |
Chris Lattner | 237ccf2 | 2006-09-13 21:27:00 +0000 | [diff] [blame] | 442 | |
| 443 | // Now that the inlined function body has been fully constructed, go through |
| 444 | // and zap unconditional fall-through branches. This happen all the time when |
| 445 | // specializing code: code specialization turns conditional branches into |
| 446 | // uncond branches, and this code folds them. |
| 447 | Function::iterator I = cast<BasicBlock>(ValueMap[&OldFunc->getEntryBlock()]); |
| 448 | while (I != NewFunc->end()) { |
| 449 | BranchInst *BI = dyn_cast<BranchInst>(I->getTerminator()); |
| 450 | if (!BI || BI->isConditional()) { ++I; continue; } |
| 451 | |
Chris Lattner | ce49422 | 2007-02-01 18:48:38 +0000 | [diff] [blame] | 452 | // Note that we can't eliminate uncond branches if the destination has |
| 453 | // single-entry PHI nodes. Eliminating the single-entry phi nodes would |
| 454 | // require scanning the ValueMap to update any entries that point to the phi |
| 455 | // node. |
Chris Lattner | 237ccf2 | 2006-09-13 21:27:00 +0000 | [diff] [blame] | 456 | BasicBlock *Dest = BI->getSuccessor(0); |
Chris Lattner | ce49422 | 2007-02-01 18:48:38 +0000 | [diff] [blame] | 457 | if (!Dest->getSinglePredecessor() || isa<PHINode>(Dest->begin())) { |
| 458 | ++I; continue; |
| 459 | } |
Chris Lattner | 237ccf2 | 2006-09-13 21:27:00 +0000 | [diff] [blame] | 460 | |
| 461 | // We know all single-entry PHI nodes in the inlined function have been |
| 462 | // removed, so we just need to splice the blocks. |
| 463 | BI->eraseFromParent(); |
| 464 | |
| 465 | // Move all the instructions in the succ to the pred. |
| 466 | I->getInstList().splice(I->end(), Dest->getInstList()); |
| 467 | |
| 468 | // Make all PHI nodes that referred to Dest now refer to I as their source. |
| 469 | Dest->replaceAllUsesWith(I); |
| 470 | |
| 471 | // Remove the dest block. |
| 472 | Dest->eraseFromParent(); |
| 473 | |
| 474 | // Do not increment I, iteratively merge all things this block branches to. |
| 475 | } |
Chris Lattner | 3df13f4 | 2006-05-27 01:22:24 +0000 | [diff] [blame] | 476 | } |