Gordon Henriksen | a8a118b | 2008-05-08 17:46:35 +0000 | [diff] [blame] | 1 | //===-- StructRetPromotion.cpp - Promote sret arguments ------------------===// |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Gordon Henriksen | a8a118b | 2008-05-08 17:46:35 +0000 | [diff] [blame] | 10 | // This pass finds functions that return a struct (using a pointer to the struct |
| 11 | // as the first argument of the function, marked with the 'sret' attribute) and |
| 12 | // replaces them with a new function that simply returns each of the elements of |
| 13 | // that struct (using multiple return values). |
| 14 | // |
| 15 | // This pass works under a number of conditions: |
| 16 | // 1. The returned struct must not contain other structs |
| 17 | // 2. The returned struct must only be used to load values from |
| 18 | // 3. The placeholder struct passed in is the result of an alloca |
| 19 | // |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 20 | //===----------------------------------------------------------------------===// |
| 21 | |
| 22 | #define DEBUG_TYPE "sretpromotion" |
| 23 | #include "llvm/Transforms/IPO.h" |
| 24 | #include "llvm/Constants.h" |
| 25 | #include "llvm/DerivedTypes.h" |
Owen Anderson | 14ce9ef | 2009-07-06 01:34:54 +0000 | [diff] [blame] | 26 | #include "llvm/LLVMContext.h" |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 27 | #include "llvm/Module.h" |
| 28 | #include "llvm/CallGraphSCCPass.h" |
| 29 | #include "llvm/Instructions.h" |
| 30 | #include "llvm/Analysis/CallGraph.h" |
| 31 | #include "llvm/Support/CallSite.h" |
| 32 | #include "llvm/Support/CFG.h" |
| 33 | #include "llvm/Support/Debug.h" |
| 34 | #include "llvm/ADT/Statistic.h" |
| 35 | #include "llvm/ADT/SmallVector.h" |
Devang Patel | 98a6e06 | 2008-03-04 17:44:37 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/Statistic.h" |
Daniel Dunbar | 460f656 | 2009-07-26 09:48:23 +0000 | [diff] [blame] | 37 | #include "llvm/Support/raw_ostream.h" |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 38 | using namespace llvm; |
| 39 | |
Devang Patel | 98a6e06 | 2008-03-04 17:44:37 +0000 | [diff] [blame] | 40 | STATISTIC(NumRejectedSRETUses , "Number of sret rejected due to unexpected uses"); |
| 41 | STATISTIC(NumSRET , "Number of sret promoted"); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 42 | namespace { |
| 43 | /// SRETPromotion - This pass removes sret parameter and updates |
| 44 | /// function to use multiple return value. |
| 45 | /// |
Nick Lewycky | 6726b6d | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 46 | struct SRETPromotion : public CallGraphSCCPass { |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 47 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 48 | CallGraphSCCPass::getAnalysisUsage(AU); |
| 49 | } |
| 50 | |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 51 | virtual bool runOnSCC(CallGraphSCC &SCC); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 52 | static char ID; // Pass identification, replacement for typeid |
Owen Anderson | 1f74590 | 2010-08-06 00:23:35 +0000 | [diff] [blame^] | 53 | SRETPromotion() : CallGraphSCCPass(&ID) {} |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 54 | |
| 55 | private: |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 56 | CallGraphNode *PromoteReturn(CallGraphNode *CGN); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 57 | bool isSafeToUpdateAllCallers(Function *F); |
| 58 | Function *cloneFunctionBody(Function *F, const StructType *STy); |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 59 | CallGraphNode *updateCallSites(Function *F, Function *NF); |
Devang Patel | a9fe8bb | 2008-03-04 21:32:09 +0000 | [diff] [blame] | 60 | bool nestedStructType(const StructType *STy); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 61 | }; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 62 | } |
| 63 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 64 | char SRETPromotion::ID = 0; |
Owen Anderson | d13db2c | 2010-07-21 22:09:45 +0000 | [diff] [blame] | 65 | INITIALIZE_PASS(SRETPromotion, "sretpromotion", |
| 66 | "Promote sret arguments to multiple ret values", false, false); |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 67 | |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 68 | Pass *llvm::createStructRetPromotionPass() { |
| 69 | return new SRETPromotion(); |
| 70 | } |
| 71 | |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 72 | bool SRETPromotion::runOnSCC(CallGraphSCC &SCC) { |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 73 | bool Changed = false; |
| 74 | |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 75 | for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) |
| 76 | if (CallGraphNode *NewNode = PromoteReturn(*I)) { |
| 77 | SCC.ReplaceNode(*I, NewNode); |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 78 | Changed = true; |
| 79 | } |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 80 | |
| 81 | return Changed; |
| 82 | } |
| 83 | |
| 84 | /// PromoteReturn - This method promotes function that uses StructRet paramater |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 85 | /// into a function that uses multiple return values. |
| 86 | CallGraphNode *SRETPromotion::PromoteReturn(CallGraphNode *CGN) { |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 87 | Function *F = CGN->getFunction(); |
| 88 | |
Rafael Espindola | bb46f52 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 89 | if (!F || F->isDeclaration() || !F->hasLocalLinkage()) |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 90 | return 0; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 91 | |
| 92 | // Make sure that function returns struct. |
Devang Patel | 41e2397 | 2008-03-03 21:46:28 +0000 | [diff] [blame] | 93 | if (F->arg_size() == 0 || !F->hasStructRetAttr() || F->doesNotReturn()) |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 94 | return 0; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 95 | |
David Greene | 09d70db | 2010-01-05 01:27:54 +0000 | [diff] [blame] | 96 | DEBUG(dbgs() << "SretPromotion: Looking at sret function " |
Daniel Dunbar | 460f656 | 2009-07-26 09:48:23 +0000 | [diff] [blame] | 97 | << F->getName() << "\n"); |
Matthijs Kooijman | 81ec248 | 2008-08-07 15:14:04 +0000 | [diff] [blame] | 98 | |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 99 | assert(F->getReturnType()->isVoidTy() && "Invalid function return type"); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 100 | Function::arg_iterator AI = F->arg_begin(); |
| 101 | const llvm::PointerType *FArgType = dyn_cast<PointerType>(AI->getType()); |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 102 | assert(FArgType && "Invalid sret parameter type"); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 103 | const llvm::StructType *STy = |
| 104 | dyn_cast<StructType>(FArgType->getElementType()); |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 105 | assert(STy && "Invalid sret parameter element type"); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 106 | |
| 107 | // Check if it is ok to perform this promotion. |
Devang Patel | 98a6e06 | 2008-03-04 17:44:37 +0000 | [diff] [blame] | 108 | if (isSafeToUpdateAllCallers(F) == false) { |
David Greene | 09d70db | 2010-01-05 01:27:54 +0000 | [diff] [blame] | 109 | DEBUG(dbgs() << "SretPromotion: Not all callers can be updated\n"); |
Dan Gohman | fe60104 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 110 | ++NumRejectedSRETUses; |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 111 | return 0; |
Devang Patel | 98a6e06 | 2008-03-04 17:44:37 +0000 | [diff] [blame] | 112 | } |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 113 | |
David Greene | 09d70db | 2010-01-05 01:27:54 +0000 | [diff] [blame] | 114 | DEBUG(dbgs() << "SretPromotion: sret argument will be promoted\n"); |
Dan Gohman | fe60104 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 115 | ++NumSRET; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 116 | // [1] Replace use of sret parameter |
Owen Anderson | 50dead0 | 2009-07-15 23:53:25 +0000 | [diff] [blame] | 117 | AllocaInst *TheAlloca = new AllocaInst(STy, NULL, "mrv", |
| 118 | F->getEntryBlock().begin()); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 119 | Value *NFirstArg = F->arg_begin(); |
| 120 | NFirstArg->replaceAllUsesWith(TheAlloca); |
| 121 | |
Devang Patel | 98a6e06 | 2008-03-04 17:44:37 +0000 | [diff] [blame] | 122 | // [2] Find and replace ret instructions |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 123 | for (Function::iterator FI = F->begin(), FE = F->end(); FI != FE; ++FI) |
| 124 | for(BasicBlock::iterator BI = FI->begin(), BE = FI->end(); BI != BE; ) { |
| 125 | Instruction *I = BI; |
| 126 | ++BI; |
| 127 | if (isa<ReturnInst>(I)) { |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 128 | Value *NV = new LoadInst(TheAlloca, "mrv.ld", I); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 129 | ReturnInst *NR = ReturnInst::Create(F->getContext(), NV, I); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 130 | I->replaceAllUsesWith(NR); |
| 131 | I->eraseFromParent(); |
| 132 | } |
| 133 | } |
| 134 | |
Devang Patel | 98a6e06 | 2008-03-04 17:44:37 +0000 | [diff] [blame] | 135 | // [3] Create the new function body and insert it into the module. |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 136 | Function *NF = cloneFunctionBody(F, STy); |
| 137 | |
Devang Patel | 98a6e06 | 2008-03-04 17:44:37 +0000 | [diff] [blame] | 138 | // [4] Update all call sites to use new function |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 139 | CallGraphNode *NF_CFN = updateCallSites(F, NF); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 140 | |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 141 | CallGraph &CG = getAnalysis<CallGraph>(); |
| 142 | NF_CFN->stealCalledFunctionsFrom(CG[F]); |
| 143 | |
| 144 | delete CG.removeFunctionFromModule(F); |
| 145 | return NF_CFN; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 146 | } |
| 147 | |
Duncan Sands | 33af59d | 2008-05-09 12:20:10 +0000 | [diff] [blame] | 148 | // Check if it is ok to perform this promotion. |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 149 | bool SRETPromotion::isSafeToUpdateAllCallers(Function *F) { |
| 150 | |
| 151 | if (F->use_empty()) |
| 152 | // No users. OK to modify signature. |
| 153 | return true; |
| 154 | |
| 155 | for (Value::use_iterator FnUseI = F->use_begin(), FnUseE = F->use_end(); |
| 156 | FnUseI != FnUseE; ++FnUseI) { |
Matthijs Kooijman | 257da0a | 2008-06-05 08:48:32 +0000 | [diff] [blame] | 157 | // The function is passed in as an argument to (possibly) another function, |
| 158 | // we can't change it! |
Gabor Greif | 7d3056b | 2010-07-28 22:50:26 +0000 | [diff] [blame] | 159 | CallSite CS(*FnUseI); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 160 | Instruction *Call = CS.getInstruction(); |
Matthijs Kooijman | 47c6fd7 | 2008-06-05 08:57:20 +0000 | [diff] [blame] | 161 | // The function is used by something else than a call or invoke instruction, |
| 162 | // we can't change it! |
Gabor Greif | edc4d69 | 2009-01-22 21:35:57 +0000 | [diff] [blame] | 163 | if (!Call || !CS.isCallee(FnUseI)) |
Matthijs Kooijman | 47c6fd7 | 2008-06-05 08:57:20 +0000 | [diff] [blame] | 164 | return false; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 165 | CallSite::arg_iterator AI = CS.arg_begin(); |
| 166 | Value *FirstArg = *AI; |
| 167 | |
| 168 | if (!isa<AllocaInst>(FirstArg)) |
| 169 | return false; |
| 170 | |
| 171 | // Check FirstArg's users. |
| 172 | for (Value::use_iterator ArgI = FirstArg->use_begin(), |
| 173 | ArgE = FirstArg->use_end(); ArgI != ArgE; ++ArgI) { |
Gabor Greif | fc41f90 | 2010-07-12 11:19:24 +0000 | [diff] [blame] | 174 | User *U = *ArgI; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 175 | // If FirstArg user is a CallInst that does not correspond to current |
| 176 | // call site then this function F is not suitable for sret promotion. |
Gabor Greif | fc41f90 | 2010-07-12 11:19:24 +0000 | [diff] [blame] | 177 | if (CallInst *CI = dyn_cast<CallInst>(U)) { |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 178 | if (CI != Call) |
| 179 | return false; |
| 180 | } |
| 181 | // If FirstArg user is a GEP whose all users are not LoadInst then |
| 182 | // this function F is not suitable for sret promotion. |
Gabor Greif | fc41f90 | 2010-07-12 11:19:24 +0000 | [diff] [blame] | 183 | else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) { |
Devang Patel | e0a6a3f | 2008-03-05 23:39:23 +0000 | [diff] [blame] | 184 | // TODO : Use dom info and insert PHINodes to collect get results |
| 185 | // from multiple call sites for this GEP. |
| 186 | if (GEP->getParent() != Call->getParent()) |
| 187 | return false; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 188 | for (Value::use_iterator GEPI = GEP->use_begin(), GEPE = GEP->use_end(); |
| 189 | GEPI != GEPE; ++GEPI) |
Gabor Greif | 96f1d8e | 2010-07-22 13:36:47 +0000 | [diff] [blame] | 190 | if (!isa<LoadInst>(*GEPI)) |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 191 | return false; |
| 192 | } |
| 193 | // Any other FirstArg users make this function unsuitable for sret |
| 194 | // promotion. |
| 195 | else |
| 196 | return false; |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | return true; |
| 201 | } |
| 202 | |
| 203 | /// cloneFunctionBody - Create a new function based on F and |
| 204 | /// insert it into module. Remove first argument. Use STy as |
| 205 | /// the return type for new function. |
| 206 | Function *SRETPromotion::cloneFunctionBody(Function *F, |
| 207 | const StructType *STy) { |
| 208 | |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 209 | const FunctionType *FTy = F->getFunctionType(); |
| 210 | std::vector<const Type*> Params; |
| 211 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 212 | // Attributes - Keep track of the parameter attributes for the arguments. |
| 213 | SmallVector<AttributeWithIndex, 8> AttributesVec; |
| 214 | const AttrListPtr &PAL = F->getAttributes(); |
Devang Patel | 2a4821b | 2008-03-03 18:36:03 +0000 | [diff] [blame] | 215 | |
| 216 | // Add any return attributes. |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 217 | if (Attributes attrs = PAL.getRetAttributes()) |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 218 | AttributesVec.push_back(AttributeWithIndex::get(0, attrs)); |
Devang Patel | 2a4821b | 2008-03-03 18:36:03 +0000 | [diff] [blame] | 219 | |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 220 | // Skip first argument. |
| 221 | Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); |
| 222 | ++I; |
Devang Patel | 8f9b551 | 2008-03-12 00:07:03 +0000 | [diff] [blame] | 223 | // 0th parameter attribute is reserved for return type. |
| 224 | // 1th parameter attribute is for first 1st sret argument. |
| 225 | unsigned ParamIndex = 2; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 226 | while (I != E) { |
| 227 | Params.push_back(I->getType()); |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 228 | if (Attributes Attrs = PAL.getParamAttributes(ParamIndex)) |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 229 | AttributesVec.push_back(AttributeWithIndex::get(ParamIndex - 1, Attrs)); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 230 | ++I; |
Devang Patel | 2a4821b | 2008-03-03 18:36:03 +0000 | [diff] [blame] | 231 | ++ParamIndex; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 234 | // Add any fn attributes. |
| 235 | if (Attributes attrs = PAL.getFnAttributes()) |
| 236 | AttributesVec.push_back(AttributeWithIndex::get(~0, attrs)); |
| 237 | |
| 238 | |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 239 | FunctionType *NFTy = FunctionType::get(STy, Params, FTy->isVarArg()); |
Matthijs Kooijman | 7d94200 | 2008-08-07 16:01:23 +0000 | [diff] [blame] | 240 | Function *NF = Function::Create(NFTy, F->getLinkage()); |
| 241 | NF->takeName(F); |
Duncan Sands | 28c3cff | 2008-05-26 19:58:59 +0000 | [diff] [blame] | 242 | NF->copyAttributesFrom(F); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 243 | NF->setAttributes(AttrListPtr::get(AttributesVec.begin(), AttributesVec.end())); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 244 | F->getParent()->getFunctionList().insert(F, NF); |
| 245 | NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList()); |
| 246 | |
| 247 | // Replace arguments |
| 248 | I = F->arg_begin(); |
| 249 | E = F->arg_end(); |
| 250 | Function::arg_iterator NI = NF->arg_begin(); |
| 251 | ++I; |
| 252 | while (I != E) { |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 253 | I->replaceAllUsesWith(NI); |
| 254 | NI->takeName(I); |
| 255 | ++I; |
| 256 | ++NI; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | return NF; |
| 260 | } |
| 261 | |
| 262 | /// updateCallSites - Update all sites that call F to use NF. |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 263 | CallGraphNode *SRETPromotion::updateCallSites(Function *F, Function *NF) { |
Duncan Sands | a9c3251 | 2008-09-08 11:08:09 +0000 | [diff] [blame] | 264 | CallGraph &CG = getAnalysis<CallGraph>(); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 265 | SmallVector<Value*, 16> Args; |
| 266 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 267 | // Attributes - Keep track of the parameter attributes for the arguments. |
| 268 | SmallVector<AttributeWithIndex, 8> ArgAttrsVec; |
Devang Patel | 2a4821b | 2008-03-03 18:36:03 +0000 | [diff] [blame] | 269 | |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 270 | // Get a new callgraph node for NF. |
| 271 | CallGraphNode *NF_CGN = CG.getOrInsertFunction(NF); |
| 272 | |
Matthijs Kooijman | c1f1d46 | 2008-08-14 15:03:05 +0000 | [diff] [blame] | 273 | while (!F->use_empty()) { |
Gabor Greif | 7d3056b | 2010-07-28 22:50:26 +0000 | [diff] [blame] | 274 | CallSite CS(*F->use_begin()); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 275 | Instruction *Call = CS.getInstruction(); |
| 276 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 277 | const AttrListPtr &PAL = F->getAttributes(); |
Devang Patel | 2a4821b | 2008-03-03 18:36:03 +0000 | [diff] [blame] | 278 | // Add any return attributes. |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 279 | if (Attributes attrs = PAL.getRetAttributes()) |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 280 | ArgAttrsVec.push_back(AttributeWithIndex::get(0, attrs)); |
Devang Patel | 2a4821b | 2008-03-03 18:36:03 +0000 | [diff] [blame] | 281 | |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 282 | // Copy arguments, however skip first one. |
| 283 | CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end(); |
| 284 | Value *FirstCArg = *AI; |
| 285 | ++AI; |
Devang Patel | 8f9b551 | 2008-03-12 00:07:03 +0000 | [diff] [blame] | 286 | // 0th parameter attribute is reserved for return type. |
| 287 | // 1th parameter attribute is for first 1st sret argument. |
| 288 | unsigned ParamIndex = 2; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 289 | while (AI != AE) { |
| 290 | Args.push_back(*AI); |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 291 | if (Attributes Attrs = PAL.getParamAttributes(ParamIndex)) |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 292 | ArgAttrsVec.push_back(AttributeWithIndex::get(ParamIndex - 1, Attrs)); |
Devang Patel | 2a4821b | 2008-03-03 18:36:03 +0000 | [diff] [blame] | 293 | ++ParamIndex; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 294 | ++AI; |
| 295 | } |
| 296 | |
Devang Patel | 19c8746 | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 297 | // Add any function attributes. |
| 298 | if (Attributes attrs = PAL.getFnAttributes()) |
| 299 | ArgAttrsVec.push_back(AttributeWithIndex::get(~0, attrs)); |
Chris Lattner | 58d7491 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 300 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 301 | AttrListPtr NewPAL = AttrListPtr::get(ArgAttrsVec.begin(), ArgAttrsVec.end()); |
Chris Lattner | 58d7491 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 302 | |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 303 | // Build new call instruction. |
| 304 | Instruction *New; |
| 305 | if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) { |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 306 | New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(), |
| 307 | Args.begin(), Args.end(), "", Call); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 308 | cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv()); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 309 | cast<InvokeInst>(New)->setAttributes(NewPAL); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 310 | } else { |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 311 | New = CallInst::Create(NF, Args.begin(), Args.end(), "", Call); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 312 | cast<CallInst>(New)->setCallingConv(CS.getCallingConv()); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 313 | cast<CallInst>(New)->setAttributes(NewPAL); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 314 | if (cast<CallInst>(Call)->isTailCall()) |
| 315 | cast<CallInst>(New)->setTailCall(); |
| 316 | } |
| 317 | Args.clear(); |
Devang Patel | 544b92b | 2008-03-04 19:12:58 +0000 | [diff] [blame] | 318 | ArgAttrsVec.clear(); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 319 | New->takeName(Call); |
| 320 | |
Duncan Sands | a9c3251 | 2008-09-08 11:08:09 +0000 | [diff] [blame] | 321 | // Update the callgraph to know that the callsite has been transformed. |
Chris Lattner | da230cb | 2009-09-01 18:52:39 +0000 | [diff] [blame] | 322 | CallGraphNode *CalleeNode = CG[Call->getParent()->getParent()]; |
| 323 | CalleeNode->removeCallEdgeFor(Call); |
| 324 | CalleeNode->addCalledFunction(New, NF_CGN); |
Chris Lattner | 7c8c1ba | 2009-09-01 18:50:55 +0000 | [diff] [blame] | 325 | |
Dan Gohman | fc74abf | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 326 | // Update all users of sret parameter to extract value using extractvalue. |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 327 | for (Value::use_iterator UI = FirstCArg->use_begin(), |
| 328 | UE = FirstCArg->use_end(); UI != UE; ) { |
| 329 | User *U2 = *UI++; |
| 330 | CallInst *C2 = dyn_cast<CallInst>(U2); |
| 331 | if (C2 && (C2 == Call)) |
| 332 | continue; |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 333 | |
Chris Lattner | 7c8c1ba | 2009-09-01 18:50:55 +0000 | [diff] [blame] | 334 | GetElementPtrInst *UGEP = cast<GetElementPtrInst>(U2); |
| 335 | ConstantInt *Idx = cast<ConstantInt>(UGEP->getOperand(2)); |
| 336 | Value *GR = ExtractValueInst::Create(New, Idx->getZExtValue(), |
| 337 | "evi", UGEP); |
| 338 | while(!UGEP->use_empty()) { |
| 339 | // isSafeToUpdateAllCallers has checked that all GEP uses are |
| 340 | // LoadInsts |
| 341 | LoadInst *L = cast<LoadInst>(*UGEP->use_begin()); |
| 342 | L->replaceAllUsesWith(GR); |
| 343 | L->eraseFromParent(); |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 344 | } |
Chris Lattner | 7c8c1ba | 2009-09-01 18:50:55 +0000 | [diff] [blame] | 345 | UGEP->eraseFromParent(); |
| 346 | continue; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 347 | } |
| 348 | Call->eraseFromParent(); |
| 349 | } |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 350 | |
| 351 | return NF_CGN; |
Devang Patel | ca891ec | 2008-02-29 23:34:08 +0000 | [diff] [blame] | 352 | } |
Devang Patel | a9fe8bb | 2008-03-04 21:32:09 +0000 | [diff] [blame] | 353 | |
| 354 | /// nestedStructType - Return true if STy includes any |
| 355 | /// other aggregate types |
| 356 | bool SRETPromotion::nestedStructType(const StructType *STy) { |
| 357 | unsigned Num = STy->getNumElements(); |
| 358 | for (unsigned i = 0; i < Num; i++) { |
| 359 | const Type *Ty = STy->getElementType(i); |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 360 | if (!Ty->isSingleValueType() && !Ty->isVoidTy()) |
Devang Patel | a9fe8bb | 2008-03-04 21:32:09 +0000 | [diff] [blame] | 361 | return true; |
| 362 | } |
| 363 | return false; |
| 364 | } |