Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 1 | //===-- ArgumentPromotion.cpp - Promote by-reference arguments ------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 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 | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass promotes "by reference" arguments to be "by value" arguments. In |
| 11 | // practice, this means looking for internal functions that have pointer |
Gordon Henriksen | 78c63ac | 2007-10-26 03:03:51 +0000 | [diff] [blame] | 12 | // arguments. If it can prove, through the use of alias analysis, that an |
| 13 | // argument is *only* loaded, then it can pass the value into the function |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 14 | // instead of the address of the value. This can cause recursive simplification |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 15 | // of code and lead to the elimination of allocas (especially in C++ template |
| 16 | // code like the STL). |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 17 | // |
Chris Lattner | fe6f2e3 | 2004-03-08 01:04:36 +0000 | [diff] [blame] | 18 | // This pass also handles aggregate arguments that are passed into a function, |
| 19 | // scalarizing them if the elements of the aggregate are only loaded. Note that |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 20 | // by default it refuses to scalarize aggregates which would require passing in |
| 21 | // more than three operands to the function, because passing thousands of |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 22 | // operands for a large array or structure is unprofitable! This limit can be |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 23 | // configured or disabled, however. |
Chris Lattner | fe6f2e3 | 2004-03-08 01:04:36 +0000 | [diff] [blame] | 24 | // |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 25 | // Note that this transformation could also be done for arguments that are only |
Gordon Henriksen | 78c63ac | 2007-10-26 03:03:51 +0000 | [diff] [blame] | 26 | // stored to (returning the value instead), but does not currently. This case |
| 27 | // would be best handled when and if LLVM begins supporting multiple return |
| 28 | // values from functions. |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 29 | // |
| 30 | //===----------------------------------------------------------------------===// |
| 31 | |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/DepthFirstIterator.h" |
| 33 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | 06fa176 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/StringExtras.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 35 | #include "llvm/Analysis/AliasAnalysis.h" |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 36 | #include "llvm/Analysis/AssumptionCache.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 37 | #include "llvm/Analysis/BasicAliasAnalysis.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 38 | #include "llvm/Analysis/CallGraph.h" |
Chandler Carruth | 839a98e | 2013-01-07 15:26:48 +0000 | [diff] [blame] | 39 | #include "llvm/Analysis/CallGraphSCCPass.h" |
Artur Pilipenko | 31bcca4 | 2016-02-24 12:49:04 +0000 | [diff] [blame] | 40 | #include "llvm/Analysis/Loads.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 41 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 42 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 219b89b | 2014-03-04 11:01:28 +0000 | [diff] [blame] | 43 | #include "llvm/IR/CallSite.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 44 | #include "llvm/IR/Constants.h" |
Hal Finkel | 2e42c34 | 2014-07-10 05:27:53 +0000 | [diff] [blame] | 45 | #include "llvm/IR/DataLayout.h" |
David Blaikie | e844cd5 | 2014-07-01 21:13:37 +0000 | [diff] [blame] | 46 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 47 | #include "llvm/IR/DerivedTypes.h" |
| 48 | #include "llvm/IR/Instructions.h" |
| 49 | #include "llvm/IR/LLVMContext.h" |
| 50 | #include "llvm/IR/Module.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 51 | #include "llvm/Support/Debug.h" |
| 52 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 53 | #include "llvm/Transforms/IPO.h" |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 54 | #include <set> |
| 55 | using namespace llvm; |
| 56 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 57 | #define DEBUG_TYPE "argpromotion" |
| 58 | |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 59 | STATISTIC(NumArgumentsPromoted, "Number of pointer arguments promoted"); |
Chris Lattner | 1631bcb | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 60 | STATISTIC(NumAggregatesPromoted, "Number of aggregate arguments promoted"); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 61 | STATISTIC(NumByValArgsPromoted, "Number of byval arguments promoted"); |
| 62 | STATISTIC(NumArgumentsDead, "Number of dead pointer args eliminated"); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 63 | |
Sean Silva | e2133e7 | 2016-07-02 18:59:51 +0000 | [diff] [blame] | 64 | /// A vector used to hold the indices of a single GEP instruction |
| 65 | typedef std::vector<uint64_t> IndicesVector; |
| 66 | |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 67 | /// DoPromotion - This method actually performs the promotion of the specified |
Chris Lattner | 37b6c4f | 2004-09-18 00:34:13 +0000 | [diff] [blame] | 68 | /// arguments, and returns the new function. At this point, we know that it's |
| 69 | /// safe to do so. |
Sean Silva | e2133e7 | 2016-07-02 18:59:51 +0000 | [diff] [blame] | 70 | static CallGraphNode * |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 71 | doPromotion(Function *F, SmallPtrSetImpl<Argument *> &ArgsToPromote, |
Sean Silva | e2133e7 | 2016-07-02 18:59:51 +0000 | [diff] [blame] | 72 | SmallPtrSetImpl<Argument *> &ByValArgsToTransform, CallGraph &CG) { |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 73 | |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 74 | // Start by computing a new prototype for the function, which is the same as |
| 75 | // the old function, but has modified arguments. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 76 | FunctionType *FTy = F->getFunctionType(); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 77 | std::vector<Type *> Params; |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 78 | |
David Blaikie | 72edd88 | 2015-03-14 21:40:12 +0000 | [diff] [blame] | 79 | typedef std::set<std::pair<Type *, IndicesVector>> ScalarizeTable; |
Chris Lattner | 1c676f7 | 2004-06-21 00:07:58 +0000 | [diff] [blame] | 80 | |
Chris Lattner | fe6f2e3 | 2004-03-08 01:04:36 +0000 | [diff] [blame] | 81 | // ScalarizedElements - If we are promoting a pointer that has elements |
| 82 | // accessed out of it, keep track of which elements are accessed so that we |
| 83 | // can add one argument for each. |
| 84 | // |
| 85 | // Arguments that are directly loaded will have a zero element value here, to |
| 86 | // handle cases where there are both a direct load and GEP accesses. |
| 87 | // |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 88 | std::map<Argument *, ScalarizeTable> ScalarizedElements; |
Chris Lattner | fe6f2e3 | 2004-03-08 01:04:36 +0000 | [diff] [blame] | 89 | |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 90 | // OriginalLoads - Keep track of a representative load instruction from the |
| 91 | // original function so that we can tell the alias analysis implementation |
| 92 | // what the new GEP/Load instructions we are inserting look like. |
Manman Ren | bc37658 | 2013-11-15 20:41:15 +0000 | [diff] [blame] | 93 | // We need to keep the original loads for each argument and the elements |
| 94 | // of the argument that are accessed. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 95 | std::map<std::pair<Argument *, IndicesVector>, LoadInst *> OriginalLoads; |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 96 | |
Bill Wendling | 3d7b0b8 | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 97 | // Attribute - Keep track of the parameter attributes for the arguments |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 98 | // that we are *not* promoting. For the ones that we do promote, the parameter |
| 99 | // attributes are lost |
Bill Wendling | 37a52df | 2013-01-27 01:57:28 +0000 | [diff] [blame] | 100 | SmallVector<AttributeSet, 8> AttributesVec; |
Bill Wendling | e94d843 | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 101 | const AttributeSet &PAL = F->getAttributes(); |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 102 | |
Duncan Sands | 9aa789f | 2008-02-01 20:37:16 +0000 | [diff] [blame] | 103 | // Add any return attributes. |
Bill Wendling | 658d24d | 2013-01-18 21:53:16 +0000 | [diff] [blame] | 104 | if (PAL.hasAttributes(AttributeSet::ReturnIndex)) |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 105 | AttributesVec.push_back( |
| 106 | AttributeSet::get(F->getContext(), PAL.getRetAttributes())); |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 107 | |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 108 | // First, determine the new argument list |
Chris Lattner | 5630c4f | 2008-01-17 01:17:03 +0000 | [diff] [blame] | 109 | unsigned ArgIndex = 1; |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 110 | for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; |
Chris Lattner | 5630c4f | 2008-01-17 01:17:03 +0000 | [diff] [blame] | 111 | ++I, ++ArgIndex) { |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 112 | if (ByValArgsToTransform.count(&*I)) { |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 113 | // Simple byval argument? Just add all the struct element types. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 114 | Type *AgTy = cast<PointerType>(I->getType())->getElementType(); |
| 115 | StructType *STy = cast<StructType>(AgTy); |
Benjamin Kramer | 5fbfe2f | 2015-02-28 13:20:15 +0000 | [diff] [blame] | 116 | Params.insert(Params.end(), STy->element_begin(), STy->element_end()); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 117 | ++NumByValArgsPromoted; |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 118 | } else if (!ArgsToPromote.count(&*I)) { |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 119 | // Unchanged argument |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 120 | Params.push_back(I->getType()); |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 121 | AttributeSet attrs = PAL.getParamAttributes(ArgIndex); |
| 122 | if (attrs.hasAttributes(ArgIndex)) { |
Bill Wendling | 37a52df | 2013-01-27 01:57:28 +0000 | [diff] [blame] | 123 | AttrBuilder B(attrs, ArgIndex); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 124 | AttributesVec.push_back( |
| 125 | AttributeSet::get(F->getContext(), Params.size(), B)); |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 126 | } |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 127 | } else if (I->use_empty()) { |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 128 | // Dead argument (which are always marked as promotable) |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 129 | ++NumArgumentsDead; |
| 130 | } else { |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 131 | // Okay, this is being promoted. This means that the only uses are loads |
| 132 | // or GEPs which are only used by loads |
| 133 | |
| 134 | // In this table, we will track which indices are loaded from the argument |
| 135 | // (where direct loads are tracked as no indices). |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 136 | ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 137 | for (User *U : I->users()) { |
| 138 | Instruction *UI = cast<Instruction>(U); |
David Blaikie | 7682663 | 2015-03-14 21:11:26 +0000 | [diff] [blame] | 139 | Type *SrcTy; |
| 140 | if (LoadInst *L = dyn_cast<LoadInst>(UI)) |
| 141 | SrcTy = L->getType(); |
| 142 | else |
| 143 | SrcTy = cast<GetElementPtrInst>(UI)->getSourceElementType(); |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 144 | IndicesVector Indices; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 145 | Indices.reserve(UI->getNumOperands() - 1); |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 146 | // Since loads will only have a single operand, and GEPs only a single |
| 147 | // non-index operand, this will record direct loads without any indices, |
| 148 | // and gep+loads with the GEP indices. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 149 | for (User::op_iterator II = UI->op_begin() + 1, IE = UI->op_end(); |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 150 | II != IE; ++II) |
| 151 | Indices.push_back(cast<ConstantInt>(*II)->getSExtValue()); |
| 152 | // GEPs with a single 0 index can be merged with direct loads |
| 153 | if (Indices.size() == 1 && Indices.front() == 0) |
| 154 | Indices.clear(); |
David Blaikie | 7682663 | 2015-03-14 21:11:26 +0000 | [diff] [blame] | 155 | ArgIndices.insert(std::make_pair(SrcTy, Indices)); |
Owen Anderson | edadd3f | 2006-09-15 05:22:51 +0000 | [diff] [blame] | 156 | LoadInst *OrigLoad; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 157 | if (LoadInst *L = dyn_cast<LoadInst>(UI)) |
Owen Anderson | edadd3f | 2006-09-15 05:22:51 +0000 | [diff] [blame] | 158 | OrigLoad = L; |
| 159 | else |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 160 | // Take any load, we will use it only to update Alias Analysis |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 161 | OrigLoad = cast<LoadInst>(UI->user_back()); |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 162 | OriginalLoads[std::make_pair(&*I, Indices)] = OrigLoad; |
Chris Lattner | fe6f2e3 | 2004-03-08 01:04:36 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | // Add a parameter to the function for each element passed in. |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 166 | for (const auto &ArgIndex : ArgIndices) { |
Torok Edwin | 026259f | 2008-11-16 17:21:25 +0000 | [diff] [blame] | 167 | // not allowed to dereference ->begin() if size() is 0 |
David Blaikie | d288fb8 | 2015-03-30 21:41:43 +0000 | [diff] [blame] | 168 | Params.push_back(GetElementPtrInst::getIndexedType( |
| 169 | cast<PointerType>(I->getType()->getScalarType())->getElementType(), |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 170 | ArgIndex.second)); |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 171 | assert(Params.back()); |
| 172 | } |
Chris Lattner | fe6f2e3 | 2004-03-08 01:04:36 +0000 | [diff] [blame] | 173 | |
David Blaikie | 7682663 | 2015-03-14 21:11:26 +0000 | [diff] [blame] | 174 | if (ArgIndices.size() == 1 && ArgIndices.begin()->second.empty()) |
Chris Lattner | fe6f2e3 | 2004-03-08 01:04:36 +0000 | [diff] [blame] | 175 | ++NumArgumentsPromoted; |
| 176 | else |
| 177 | ++NumAggregatesPromoted; |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 178 | } |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 179 | } |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 180 | |
Devang Patel | a05633e | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 181 | // Add any function attributes. |
Bill Wendling | 7754389 | 2013-01-18 21:11:39 +0000 | [diff] [blame] | 182 | if (PAL.hasAttributes(AttributeSet::FunctionIndex)) |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 183 | AttributesVec.push_back( |
| 184 | AttributeSet::get(FTy->getContext(), PAL.getFnAttributes())); |
Devang Patel | a05633e | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 185 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 186 | Type *RetTy = FTy->getReturnType(); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 187 | |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 188 | // Construct the new function type using the new arguments. |
Owen Anderson | 4056ca9 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 189 | FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg()); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 190 | |
Chris Lattner | e098721 | 2009-09-15 05:40:35 +0000 | [diff] [blame] | 191 | // Create the new function body and insert it into the module. |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 192 | Function *NF = Function::Create(NFTy, F->getLinkage(), F->getName()); |
Duncan Sands | dd7daee | 2008-05-26 19:58:59 +0000 | [diff] [blame] | 193 | NF->copyAttributesFrom(F); |
Chris Lattner | 5630c4f | 2008-01-17 01:17:03 +0000 | [diff] [blame] | 194 | |
David Blaikie | e844cd5 | 2014-07-01 21:13:37 +0000 | [diff] [blame] | 195 | // Patch the pointer to LLVM function in debug info descriptor. |
Peter Collingbourne | d4bff30 | 2015-11-05 22:03:56 +0000 | [diff] [blame] | 196 | NF->setSubprogram(F->getSubprogram()); |
| 197 | F->setSubprogram(nullptr); |
David Blaikie | 8e9cfa5 | 2014-07-23 22:09:29 +0000 | [diff] [blame] | 198 | |
David Greene | cf0addf | 2010-01-05 01:28:37 +0000 | [diff] [blame] | 199 | DEBUG(dbgs() << "ARG PROMOTION: Promoting to:" << *NF << "\n" |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 200 | << "From: " << *F); |
| 201 | |
Chris Lattner | 5630c4f | 2008-01-17 01:17:03 +0000 | [diff] [blame] | 202 | // Recompute the parameter attributes list based on the new arguments for |
| 203 | // the function. |
Bill Wendling | e94d843 | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 204 | NF->setAttributes(AttributeSet::get(F->getContext(), AttributesVec)); |
Devang Patel | 4c758ea | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 205 | AttributesVec.clear(); |
Duncan Sands | dd7daee | 2008-05-26 19:58:59 +0000 | [diff] [blame] | 206 | |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 207 | F->getParent()->getFunctionList().insert(F->getIterator(), NF); |
Zhou Sheng | a30cdb9 | 2008-03-20 08:05:05 +0000 | [diff] [blame] | 208 | NF->takeName(F); |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 209 | |
Chris Lattner | 305b115 | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 210 | // Get a new callgraph node for NF. |
| 211 | CallGraphNode *NF_CGN = CG.getOrInsertFunction(NF); |
Duncan Sands | 3cf7d86 | 2008-09-08 11:07:35 +0000 | [diff] [blame] | 212 | |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 213 | // Loop over all of the callers of the function, transforming the call sites |
| 214 | // to pass in the loaded pointers. |
| 215 | // |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 216 | SmallVector<Value *, 16> Args; |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 217 | while (!F->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 218 | CallSite CS(F->user_back()); |
Gabor Greif | 161cb04 | 2010-03-23 14:40:20 +0000 | [diff] [blame] | 219 | assert(CS.getCalledFunction() == F); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 220 | Instruction *Call = CS.getInstruction(); |
Bill Wendling | e94d843 | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 221 | const AttributeSet &CallPAL = CS.getAttributes(); |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 222 | |
Duncan Sands | 9aa789f | 2008-02-01 20:37:16 +0000 | [diff] [blame] | 223 | // Add any return attributes. |
Bill Wendling | 658d24d | 2013-01-18 21:53:16 +0000 | [diff] [blame] | 224 | if (CallPAL.hasAttributes(AttributeSet::ReturnIndex)) |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 225 | AttributesVec.push_back( |
| 226 | AttributeSet::get(F->getContext(), CallPAL.getRetAttributes())); |
Duncan Sands | 9aa789f | 2008-02-01 20:37:16 +0000 | [diff] [blame] | 227 | |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 228 | // Loop over the operands, inserting GEP and loads in the caller as |
| 229 | // appropriate. |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 230 | CallSite::arg_iterator AI = CS.arg_begin(); |
Chris Lattner | 5630c4f | 2008-01-17 01:17:03 +0000 | [diff] [blame] | 231 | ArgIndex = 1; |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 232 | for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; |
| 233 | ++I, ++AI, ++ArgIndex) |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 234 | if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) { |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 235 | Args.push_back(*AI); // Unmodified argument |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 236 | |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 237 | if (CallPAL.hasAttributes(ArgIndex)) { |
Bill Wendling | 37a52df | 2013-01-27 01:57:28 +0000 | [diff] [blame] | 238 | AttrBuilder B(CallPAL, ArgIndex); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 239 | AttributesVec.push_back( |
| 240 | AttributeSet::get(F->getContext(), Args.size(), B)); |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 241 | } |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 242 | } else if (ByValArgsToTransform.count(&*I)) { |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 243 | // Emit a GEP and load for each element of the struct. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 244 | Type *AgTy = cast<PointerType>(I->getType())->getElementType(); |
| 245 | StructType *STy = cast<StructType>(AgTy); |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 246 | Value *Idxs[2] = { |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 247 | ConstantInt::get(Type::getInt32Ty(F->getContext()), 0), nullptr}; |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 248 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 249 | Idxs[1] = ConstantInt::get(Type::getInt32Ty(F->getContext()), i); |
David Blaikie | 7682663 | 2015-03-14 21:11:26 +0000 | [diff] [blame] | 250 | Value *Idx = GetElementPtrInst::Create( |
Benjamin Kramer | dba7ee9 | 2015-05-28 11:24:24 +0000 | [diff] [blame] | 251 | STy, *AI, Idxs, (*AI)->getName() + "." + Twine(i), Call); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 252 | // TODO: Tell AA about the new values? |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 253 | Args.push_back(new LoadInst(Idx, Idx->getName() + ".val", Call)); |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 254 | } |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 255 | } else if (!I->use_empty()) { |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 256 | // Non-dead argument: insert GEPs and loads as appropriate. |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 257 | ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 258 | // Store the Value* version of the indices in here, but declare it now |
Gabor Greif | 161cb04 | 2010-03-23 14:40:20 +0000 | [diff] [blame] | 259 | // for reuse. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 260 | std::vector<Value *> Ops; |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 261 | for (const auto &ArgIndex : ArgIndices) { |
Chris Lattner | fe6f2e3 | 2004-03-08 01:04:36 +0000 | [diff] [blame] | 262 | Value *V = *AI; |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 263 | LoadInst *OrigLoad = |
| 264 | OriginalLoads[std::make_pair(&*I, ArgIndex.second)]; |
| 265 | if (!ArgIndex.second.empty()) { |
| 266 | Ops.reserve(ArgIndex.second.size()); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 267 | Type *ElTy = V->getType(); |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 268 | for (unsigned long II : ArgIndex.second) { |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 269 | // Use i32 to index structs, and i64 for others (pointers/arrays). |
| 270 | // This satisfies GEP constraints. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 271 | Type *IdxTy = |
| 272 | (ElTy->isStructTy() ? Type::getInt32Ty(F->getContext()) |
| 273 | : Type::getInt64Ty(F->getContext())); |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 274 | Ops.push_back(ConstantInt::get(IdxTy, II)); |
Gabor Greif | 161cb04 | 2010-03-23 14:40:20 +0000 | [diff] [blame] | 275 | // Keep track of the type we're currently indexing. |
Peter Collingbourne | 4568158 | 2016-12-02 03:05:41 +0000 | [diff] [blame] | 276 | if (auto *ElPTy = dyn_cast<PointerType>(ElTy)) |
| 277 | ElTy = ElPTy->getElementType(); |
| 278 | else |
| 279 | ElTy = cast<CompositeType>(ElTy)->getTypeAtIndex(II); |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 280 | } |
Gabor Greif | 161cb04 | 2010-03-23 14:40:20 +0000 | [diff] [blame] | 281 | // And create a GEP to extract those indices. |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 282 | V = GetElementPtrInst::Create(ArgIndex.first, V, Ops, |
David Blaikie | 72edd88 | 2015-03-14 21:40:12 +0000 | [diff] [blame] | 283 | V->getName() + ".idx", Call); |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 284 | Ops.clear(); |
Chris Lattner | 254f8f8 | 2004-05-23 21:21:17 +0000 | [diff] [blame] | 285 | } |
Eric Christopher | 81c0344 | 2010-03-27 01:54:00 +0000 | [diff] [blame] | 286 | // Since we're replacing a load make sure we take the alignment |
| 287 | // of the previous load. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 288 | LoadInst *newLoad = new LoadInst(V, V->getName() + ".val", Call); |
Eric Christopher | 81c0344 | 2010-03-27 01:54:00 +0000 | [diff] [blame] | 289 | newLoad->setAlignment(OrigLoad->getAlignment()); |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 290 | // Transfer the AA info too. |
| 291 | AAMDNodes AAInfo; |
| 292 | OrigLoad->getAAMetadata(AAInfo); |
| 293 | newLoad->setAAMetadata(AAInfo); |
| 294 | |
Eric Christopher | 81c0344 | 2010-03-27 01:54:00 +0000 | [diff] [blame] | 295 | Args.push_back(newLoad); |
Chris Lattner | fe6f2e3 | 2004-03-08 01:04:36 +0000 | [diff] [blame] | 296 | } |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Gabor Greif | 161cb04 | 2010-03-23 14:40:20 +0000 | [diff] [blame] | 299 | // Push any varargs arguments on the list. |
Chris Lattner | 5630c4f | 2008-01-17 01:17:03 +0000 | [diff] [blame] | 300 | for (; AI != CS.arg_end(); ++AI, ++ArgIndex) { |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 301 | Args.push_back(*AI); |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 302 | if (CallPAL.hasAttributes(ArgIndex)) { |
Bill Wendling | 37a52df | 2013-01-27 01:57:28 +0000 | [diff] [blame] | 303 | AttrBuilder B(CallPAL, ArgIndex); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 304 | AttributesVec.push_back( |
| 305 | AttributeSet::get(F->getContext(), Args.size(), B)); |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 306 | } |
Chris Lattner | 5630c4f | 2008-01-17 01:17:03 +0000 | [diff] [blame] | 307 | } |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 308 | |
Devang Patel | a05633e | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 309 | // Add any function attributes. |
Bill Wendling | 7754389 | 2013-01-18 21:11:39 +0000 | [diff] [blame] | 310 | if (CallPAL.hasAttributes(AttributeSet::FunctionIndex)) |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 311 | AttributesVec.push_back( |
| 312 | AttributeSet::get(Call->getContext(), CallPAL.getFnAttributes())); |
Devang Patel | a05633e | 2008-09-26 22:53:05 +0000 | [diff] [blame] | 313 | |
David Majnemer | cd24bb1 | 2016-04-29 04:56:12 +0000 | [diff] [blame] | 314 | SmallVector<OperandBundleDef, 1> OpBundles; |
| 315 | CS.getOperandBundlesAsDefs(OpBundles); |
| 316 | |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 317 | Instruction *New; |
| 318 | if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) { |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 319 | New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(), |
David Majnemer | cd24bb1 | 2016-04-29 04:56:12 +0000 | [diff] [blame] | 320 | Args, OpBundles, "", Call); |
Chris Lattner | d0525a2 | 2005-05-09 01:05:50 +0000 | [diff] [blame] | 321 | cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv()); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 322 | cast<InvokeInst>(New)->setAttributes( |
| 323 | AttributeSet::get(II->getContext(), AttributesVec)); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 324 | } else { |
David Majnemer | cd24bb1 | 2016-04-29 04:56:12 +0000 | [diff] [blame] | 325 | New = CallInst::Create(NF, Args, OpBundles, "", Call); |
Chris Lattner | d0525a2 | 2005-05-09 01:05:50 +0000 | [diff] [blame] | 326 | cast<CallInst>(New)->setCallingConv(CS.getCallingConv()); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 327 | cast<CallInst>(New)->setAttributes( |
| 328 | AttributeSet::get(New->getContext(), AttributesVec)); |
David Majnemer | d5648c7 | 2016-11-25 22:35:09 +0000 | [diff] [blame] | 329 | cast<CallInst>(New)->setTailCallKind( |
| 330 | cast<CallInst>(Call)->getTailCallKind()); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 331 | } |
David Blaikie | b0cdf530 | 2014-06-27 05:32:09 +0000 | [diff] [blame] | 332 | New->setDebugLoc(Call->getDebugLoc()); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 333 | Args.clear(); |
Devang Patel | 4c758ea | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 334 | AttributesVec.clear(); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 335 | |
Duncan Sands | 3cf7d86 | 2008-09-08 11:07:35 +0000 | [diff] [blame] | 336 | // Update the callgraph to know that the callsite has been transformed. |
Chris Lattner | 9b46372 | 2009-09-01 18:52:39 +0000 | [diff] [blame] | 337 | CallGraphNode *CalleeNode = CG[Call->getParent()->getParent()]; |
Benjamin Kramer | 3a09ef6 | 2015-04-10 14:50:08 +0000 | [diff] [blame] | 338 | CalleeNode->replaceCallEdge(CS, CallSite(New), NF_CGN); |
Duncan Sands | 3cf7d86 | 2008-09-08 11:07:35 +0000 | [diff] [blame] | 339 | |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 340 | if (!Call->use_empty()) { |
| 341 | Call->replaceAllUsesWith(New); |
Chris Lattner | 8d4c36b | 2007-02-11 01:08:35 +0000 | [diff] [blame] | 342 | New->takeName(Call); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 343 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 344 | |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 345 | // Finally, remove the old call from the program, reducing the use-count of |
| 346 | // F. |
Chris Lattner | 4062a62 | 2008-01-11 19:20:39 +0000 | [diff] [blame] | 347 | Call->eraseFromParent(); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | // Since we have now created the new function, splice the body of the old |
| 351 | // function right into the new function, leaving the old rotting hulk of the |
| 352 | // function empty. |
| 353 | NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList()); |
| 354 | |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 355 | // Loop over the argument list, transferring uses of the old arguments over to |
| 356 | // the new arguments, also transferring over the names as well. |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 357 | // |
Chris Lattner | a06a8fd | 2007-02-13 02:10:56 +0000 | [diff] [blame] | 358 | for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(), |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 359 | I2 = NF->arg_begin(); |
| 360 | I != E; ++I) { |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 361 | if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) { |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 362 | // If this is an unmodified argument, move the name and users over to the |
| 363 | // new version. |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 364 | I->replaceAllUsesWith(&*I2); |
| 365 | I2->takeName(&*I); |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 366 | ++I2; |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 367 | continue; |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 368 | } |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 369 | |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 370 | if (ByValArgsToTransform.count(&*I)) { |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 371 | // In the callee, we create an alloca, and store each of the new incoming |
| 372 | // arguments into the alloca. |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 373 | Instruction *InsertPt = &NF->begin()->front(); |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 374 | |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 375 | // Just add all the struct element types. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 376 | Type *AgTy = cast<PointerType>(I->getType())->getElementType(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 377 | Value *TheAlloca = new AllocaInst(AgTy, nullptr, "", InsertPt); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 378 | StructType *STy = cast<StructType>(AgTy); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 379 | Value *Idxs[2] = {ConstantInt::get(Type::getInt32Ty(F->getContext()), 0), |
| 380 | nullptr}; |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 381 | |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 382 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 383 | Idxs[1] = ConstantInt::get(Type::getInt32Ty(F->getContext()), i); |
David Blaikie | 096b1da | 2015-03-14 19:53:33 +0000 | [diff] [blame] | 384 | Value *Idx = GetElementPtrInst::Create( |
| 385 | AgTy, TheAlloca, Idxs, TheAlloca->getName() + "." + Twine(i), |
| 386 | InsertPt); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 387 | I2->setName(I->getName() + "." + Twine(i)); |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 388 | new StoreInst(&*I2++, Idx, InsertPt); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 389 | } |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 390 | |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 391 | // Anything that used the arg should now use the alloca. |
| 392 | I->replaceAllUsesWith(TheAlloca); |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 393 | TheAlloca->takeName(&*I); |
Rafael Espindola | 2a05ea5 | 2014-01-23 17:19:42 +0000 | [diff] [blame] | 394 | |
| 395 | // If the alloca is used in a call, we must clear the tail flag since |
| 396 | // the callee now uses an alloca from the caller. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 397 | for (User *U : TheAlloca->users()) { |
| 398 | CallInst *Call = dyn_cast<CallInst>(U); |
Rafael Espindola | 2a05ea5 | 2014-01-23 17:19:42 +0000 | [diff] [blame] | 399 | if (!Call) |
| 400 | continue; |
| 401 | Call->setTailCall(false); |
| 402 | } |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 403 | continue; |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 404 | } |
| 405 | |
Chandler Carruth | a1032a0 | 2015-07-22 09:49:59 +0000 | [diff] [blame] | 406 | if (I->use_empty()) |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 407 | continue; |
Duncan Sands | 1ea0d2e | 2008-09-07 09:54:09 +0000 | [diff] [blame] | 408 | |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 409 | // Otherwise, if we promoted this argument, then all users are load |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 410 | // instructions (or GEPs with only load users), and all loads should be |
| 411 | // using the new argument that we added. |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 412 | ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 413 | |
| 414 | while (!I->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 415 | if (LoadInst *LI = dyn_cast<LoadInst>(I->user_back())) { |
David Blaikie | 7682663 | 2015-03-14 21:11:26 +0000 | [diff] [blame] | 416 | assert(ArgIndices.begin()->second.empty() && |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 417 | "Load element should sort to front!"); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 418 | I2->setName(I->getName() + ".val"); |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 419 | LI->replaceAllUsesWith(&*I2); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 420 | LI->eraseFromParent(); |
David Greene | cf0addf | 2010-01-05 01:28:37 +0000 | [diff] [blame] | 421 | DEBUG(dbgs() << "*** Promoted load of argument '" << I->getName() |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 422 | << "' in function '" << F->getName() << "'\n"); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 423 | } else { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 424 | GetElementPtrInst *GEP = cast<GetElementPtrInst>(I->user_back()); |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 425 | IndicesVector Operands; |
| 426 | Operands.reserve(GEP->getNumIndices()); |
| 427 | for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end(); |
| 428 | II != IE; ++II) |
| 429 | Operands.push_back(cast<ConstantInt>(*II)->getSExtValue()); |
| 430 | |
| 431 | // GEPs with a single 0 index can be merged with direct loads |
| 432 | if (Operands.size() == 1 && Operands.front() == 0) |
| 433 | Operands.clear(); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 434 | |
| 435 | Function::arg_iterator TheArg = I2; |
| 436 | for (ScalarizeTable::iterator It = ArgIndices.begin(); |
David Blaikie | 7682663 | 2015-03-14 21:11:26 +0000 | [diff] [blame] | 437 | It->second != Operands; ++It, ++TheArg) { |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 438 | assert(It != ArgIndices.end() && "GEP not handled??"); |
| 439 | } |
| 440 | |
| 441 | std::string NewName = I->getName(); |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 442 | for (unsigned i = 0, e = Operands.size(); i != e; ++i) { |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 443 | NewName += "." + utostr(Operands[i]); |
Matthijs Kooijman | fd30704 | 2008-07-29 10:00:13 +0000 | [diff] [blame] | 444 | } |
| 445 | NewName += ".val"; |
| 446 | TheArg->setName(NewName); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 447 | |
David Greene | cf0addf | 2010-01-05 01:28:37 +0000 | [diff] [blame] | 448 | DEBUG(dbgs() << "*** Promoted agg argument '" << TheArg->getName() |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 449 | << "' of function '" << NF->getName() << "'\n"); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 450 | |
| 451 | // All of the uses must be load instructions. Replace them all with |
| 452 | // the argument specified by ArgNo. |
| 453 | while (!GEP->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 454 | LoadInst *L = cast<LoadInst>(GEP->user_back()); |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 455 | L->replaceAllUsesWith(&*TheArg); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 456 | L->eraseFromParent(); |
| 457 | } |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 458 | GEP->eraseFromParent(); |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | // Increment I2 past all of the arguments added for this promoted pointer. |
Benjamin Kramer | 8403625 | 2012-09-30 17:31:56 +0000 | [diff] [blame] | 463 | std::advance(I2, ArgIndices.size()); |
Chris Lattner | b5bd924 | 2008-01-11 22:31:41 +0000 | [diff] [blame] | 464 | } |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 465 | |
Chris Lattner | 305b115 | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 466 | NF_CGN->stealCalledFunctionsFrom(CG[F]); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 467 | |
Chris Lattner | e938467 | 2010-04-20 00:46:50 +0000 | [diff] [blame] | 468 | // Now that the old function is dead, delete it. If there is a dangling |
| 469 | // reference to the CallgraphNode, just leave the dead function around for |
| 470 | // someone else to nuke. |
| 471 | CallGraphNode *CGN = CG[F]; |
| 472 | if (CGN->getNumReferences() == 0) |
| 473 | delete CG.removeFunctionFromModule(CGN); |
| 474 | else |
| 475 | F->setLinkage(Function::ExternalLinkage); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 476 | |
Chris Lattner | 305b115 | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 477 | return NF_CGN; |
Chris Lattner | 483ae01 | 2004-03-07 21:29:54 +0000 | [diff] [blame] | 478 | } |
David Blaikie | e844cd5 | 2014-07-01 21:13:37 +0000 | [diff] [blame] | 479 | |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 480 | /// AllCallersPassInValidPointerForArgument - Return true if we can prove that |
| 481 | /// all callees pass in a valid pointer for the specified function argument. |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 482 | static bool allCallersPassInValidPointerForArgument(Argument *Arg) { |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 483 | Function *Callee = Arg->getParent(); |
| 484 | const DataLayout &DL = Callee->getParent()->getDataLayout(); |
| 485 | |
| 486 | unsigned ArgNo = Arg->getArgNo(); |
| 487 | |
| 488 | // Look at all call sites of the function. At this point we know we only have |
| 489 | // direct callees. |
| 490 | for (User *U : Callee->users()) { |
| 491 | CallSite CS(U); |
| 492 | assert(CS && "Should only have direct calls!"); |
| 493 | |
| 494 | if (!isDereferenceablePointer(CS.getArgument(ArgNo), DL)) |
| 495 | return false; |
| 496 | } |
| 497 | return true; |
| 498 | } |
| 499 | |
| 500 | /// Returns true if Prefix is a prefix of longer. That means, Longer has a size |
| 501 | /// that is greater than or equal to the size of prefix, and each of the |
| 502 | /// elements in Prefix is the same as the corresponding elements in Longer. |
| 503 | /// |
| 504 | /// This means it also returns true when Prefix and Longer are equal! |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 505 | static bool isPrefix(const IndicesVector &Prefix, const IndicesVector &Longer) { |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 506 | if (Prefix.size() > Longer.size()) |
| 507 | return false; |
| 508 | return std::equal(Prefix.begin(), Prefix.end(), Longer.begin()); |
| 509 | } |
| 510 | |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 511 | /// Checks if Indices, or a prefix of Indices, is in Set. |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 512 | static bool prefixIn(const IndicesVector &Indices, |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 513 | std::set<IndicesVector> &Set) { |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 514 | std::set<IndicesVector>::iterator Low; |
| 515 | Low = Set.upper_bound(Indices); |
| 516 | if (Low != Set.begin()) |
| 517 | Low--; |
| 518 | // Low is now the last element smaller than or equal to Indices. This means |
| 519 | // it points to a prefix of Indices (possibly Indices itself), if such |
| 520 | // prefix exists. |
| 521 | // |
| 522 | // This load is safe if any prefix of its operands is safe to load. |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 523 | return Low != Set.end() && isPrefix(*Low, Indices); |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | /// Mark the given indices (ToMark) as safe in the given set of indices |
| 527 | /// (Safe). Marking safe usually means adding ToMark to Safe. However, if there |
| 528 | /// is already a prefix of Indices in Safe, Indices are implicitely marked safe |
| 529 | /// already. Furthermore, any indices that Indices is itself a prefix of, are |
| 530 | /// removed from Safe (since they are implicitely safe because of Indices now). |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 531 | static void markIndicesSafe(const IndicesVector &ToMark, |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 532 | std::set<IndicesVector> &Safe) { |
| 533 | std::set<IndicesVector>::iterator Low; |
| 534 | Low = Safe.upper_bound(ToMark); |
| 535 | // Guard against the case where Safe is empty |
| 536 | if (Low != Safe.begin()) |
| 537 | Low--; |
| 538 | // Low is now the last element smaller than or equal to Indices. This |
| 539 | // means it points to a prefix of Indices (possibly Indices itself), if |
| 540 | // such prefix exists. |
| 541 | if (Low != Safe.end()) { |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 542 | if (isPrefix(*Low, ToMark)) |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 543 | // If there is already a prefix of these indices (or exactly these |
| 544 | // indices) marked a safe, don't bother adding these indices |
| 545 | return; |
| 546 | |
| 547 | // Increment Low, so we can use it as a "insert before" hint |
| 548 | ++Low; |
| 549 | } |
| 550 | // Insert |
| 551 | Low = Safe.insert(Low, ToMark); |
| 552 | ++Low; |
| 553 | // If there we're a prefix of longer index list(s), remove those |
| 554 | std::set<IndicesVector>::iterator End = Safe.end(); |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 555 | while (Low != End && isPrefix(ToMark, *Low)) { |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 556 | std::set<IndicesVector>::iterator Remove = Low; |
| 557 | ++Low; |
| 558 | Safe.erase(Remove); |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | /// isSafeToPromoteArgument - As you might guess from the name of this method, |
| 563 | /// it checks to see if it is both safe and useful to promote the argument. |
| 564 | /// This method limits promotion of aggregates to only promote up to three |
| 565 | /// elements of the aggregate in order to avoid exploding the number of |
| 566 | /// arguments passed in. |
| 567 | static bool isSafeToPromoteArgument(Argument *Arg, bool isByValOrInAlloca, |
| 568 | AAResults &AAR, unsigned MaxElements) { |
| 569 | typedef std::set<IndicesVector> GEPIndicesSet; |
| 570 | |
| 571 | // Quick exit for unused arguments |
| 572 | if (Arg->use_empty()) |
| 573 | return true; |
| 574 | |
| 575 | // We can only promote this argument if all of the uses are loads, or are GEP |
| 576 | // instructions (with constant indices) that are subsequently loaded. |
| 577 | // |
| 578 | // Promoting the argument causes it to be loaded in the caller |
| 579 | // unconditionally. This is only safe if we can prove that either the load |
| 580 | // would have happened in the callee anyway (ie, there is a load in the entry |
| 581 | // block) or the pointer passed in at every call site is guaranteed to be |
| 582 | // valid. |
| 583 | // In the former case, invalid loads can happen, but would have happened |
| 584 | // anyway, in the latter case, invalid loads won't happen. This prevents us |
| 585 | // from introducing an invalid load that wouldn't have happened in the |
| 586 | // original code. |
| 587 | // |
| 588 | // This set will contain all sets of indices that are loaded in the entry |
| 589 | // block, and thus are safe to unconditionally load in the caller. |
| 590 | // |
| 591 | // This optimization is also safe for InAlloca parameters, because it verifies |
| 592 | // that the address isn't captured. |
| 593 | GEPIndicesSet SafeToUnconditionallyLoad; |
| 594 | |
| 595 | // This set contains all the sets of indices that we are planning to promote. |
| 596 | // This makes it possible to limit the number of arguments added. |
| 597 | GEPIndicesSet ToPromote; |
| 598 | |
| 599 | // If the pointer is always valid, any load with first index 0 is valid. |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 600 | if (isByValOrInAlloca || allCallersPassInValidPointerForArgument(Arg)) |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 601 | SafeToUnconditionallyLoad.insert(IndicesVector(1, 0)); |
| 602 | |
| 603 | // First, iterate the entry block and mark loads of (geps of) arguments as |
| 604 | // safe. |
| 605 | BasicBlock &EntryBlock = Arg->getParent()->front(); |
| 606 | // Declare this here so we can reuse it |
| 607 | IndicesVector Indices; |
| 608 | for (Instruction &I : EntryBlock) |
| 609 | if (LoadInst *LI = dyn_cast<LoadInst>(&I)) { |
| 610 | Value *V = LI->getPointerOperand(); |
| 611 | if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(V)) { |
| 612 | V = GEP->getPointerOperand(); |
| 613 | if (V == Arg) { |
| 614 | // This load actually loads (part of) Arg? Check the indices then. |
| 615 | Indices.reserve(GEP->getNumIndices()); |
| 616 | for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end(); |
| 617 | II != IE; ++II) |
| 618 | if (ConstantInt *CI = dyn_cast<ConstantInt>(*II)) |
| 619 | Indices.push_back(CI->getSExtValue()); |
| 620 | else |
| 621 | // We found a non-constant GEP index for this argument? Bail out |
| 622 | // right away, can't promote this argument at all. |
| 623 | return false; |
| 624 | |
| 625 | // Indices checked out, mark them as safe |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 626 | markIndicesSafe(Indices, SafeToUnconditionallyLoad); |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 627 | Indices.clear(); |
| 628 | } |
| 629 | } else if (V == Arg) { |
| 630 | // Direct loads are equivalent to a GEP with a single 0 index. |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 631 | markIndicesSafe(IndicesVector(1, 0), SafeToUnconditionallyLoad); |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 632 | } |
| 633 | } |
| 634 | |
| 635 | // Now, iterate all uses of the argument to see if there are any uses that are |
| 636 | // not (GEP+)loads, or any (GEP+)loads that are not safe to promote. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 637 | SmallVector<LoadInst *, 16> Loads; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 638 | IndicesVector Operands; |
| 639 | for (Use &U : Arg->uses()) { |
| 640 | User *UR = U.getUser(); |
| 641 | Operands.clear(); |
| 642 | if (LoadInst *LI = dyn_cast<LoadInst>(UR)) { |
| 643 | // Don't hack volatile/atomic loads |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 644 | if (!LI->isSimple()) |
| 645 | return false; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 646 | Loads.push_back(LI); |
| 647 | // Direct loads are equivalent to a GEP with a zero index and then a load. |
| 648 | Operands.push_back(0); |
| 649 | } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(UR)) { |
| 650 | if (GEP->use_empty()) { |
| 651 | // Dead GEP's cause trouble later. Just remove them if we run into |
| 652 | // them. |
| 653 | GEP->eraseFromParent(); |
| 654 | // TODO: This runs the above loop over and over again for dead GEPs |
| 655 | // Couldn't we just do increment the UI iterator earlier and erase the |
| 656 | // use? |
| 657 | return isSafeToPromoteArgument(Arg, isByValOrInAlloca, AAR, |
| 658 | MaxElements); |
| 659 | } |
| 660 | |
| 661 | // Ensure that all of the indices are constants. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 662 | for (User::op_iterator i = GEP->idx_begin(), e = GEP->idx_end(); i != e; |
| 663 | ++i) |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 664 | if (ConstantInt *C = dyn_cast<ConstantInt>(*i)) |
| 665 | Operands.push_back(C->getSExtValue()); |
| 666 | else |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 667 | return false; // Not a constant operand GEP! |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 668 | |
| 669 | // Ensure that the only users of the GEP are load instructions. |
| 670 | for (User *GEPU : GEP->users()) |
| 671 | if (LoadInst *LI = dyn_cast<LoadInst>(GEPU)) { |
| 672 | // Don't hack volatile/atomic loads |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 673 | if (!LI->isSimple()) |
| 674 | return false; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 675 | Loads.push_back(LI); |
| 676 | } else { |
| 677 | // Other uses than load? |
| 678 | return false; |
| 679 | } |
| 680 | } else { |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 681 | return false; // Not a load or a GEP. |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 682 | } |
| 683 | |
| 684 | // Now, see if it is safe to promote this load / loads of this GEP. Loading |
| 685 | // is safe if Operands, or a prefix of Operands, is marked as safe. |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 686 | if (!prefixIn(Operands, SafeToUnconditionallyLoad)) |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 687 | return false; |
| 688 | |
| 689 | // See if we are already promoting a load with these indices. If not, check |
| 690 | // to make sure that we aren't promoting too many elements. If so, nothing |
| 691 | // to do. |
| 692 | if (ToPromote.find(Operands) == ToPromote.end()) { |
| 693 | if (MaxElements > 0 && ToPromote.size() == MaxElements) { |
| 694 | DEBUG(dbgs() << "argpromotion not promoting argument '" |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 695 | << Arg->getName() |
| 696 | << "' because it would require adding more " |
| 697 | << "than " << MaxElements |
| 698 | << " arguments to the function.\n"); |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 699 | // We limit aggregate promotion to only promoting up to a fixed number |
| 700 | // of elements of the aggregate. |
| 701 | return false; |
| 702 | } |
| 703 | ToPromote.insert(std::move(Operands)); |
| 704 | } |
| 705 | } |
| 706 | |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 707 | if (Loads.empty()) |
| 708 | return true; // No users, this is a dead argument. |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 709 | |
| 710 | // Okay, now we know that the argument is only used by load instructions and |
| 711 | // it is safe to unconditionally perform all of them. Use alias analysis to |
| 712 | // check to see if the pointer is guaranteed to not be modified from entry of |
| 713 | // the function to each of the load instructions. |
| 714 | |
| 715 | // Because there could be several/many load instructions, remember which |
| 716 | // blocks we know to be transparent to the load. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 717 | df_iterator_default_set<BasicBlock *, 16> TranspBlocks; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 718 | |
| 719 | for (LoadInst *Load : Loads) { |
| 720 | // Check to see if the load is invalidated from the start of the block to |
| 721 | // the load itself. |
| 722 | BasicBlock *BB = Load->getParent(); |
| 723 | |
| 724 | MemoryLocation Loc = MemoryLocation::get(Load); |
| 725 | if (AAR.canInstructionRangeModRef(BB->front(), *Load, Loc, MRI_Mod)) |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 726 | return false; // Pointer is invalidated! |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 727 | |
| 728 | // Now check every path from the entry block to the load for transparency. |
| 729 | // To do this, we perform a depth first search on the inverse CFG from the |
| 730 | // loading block. |
| 731 | for (BasicBlock *P : predecessors(BB)) { |
| 732 | for (BasicBlock *TranspBB : inverse_depth_first_ext(P, TranspBlocks)) |
| 733 | if (AAR.canBasicBlockModify(*TranspBB, Loc)) |
| 734 | return false; |
| 735 | } |
| 736 | } |
| 737 | |
| 738 | // If the path from the entry of the function to each load is free of |
| 739 | // instructions that potentially invalidate the load, we can make the |
| 740 | // transformation! |
| 741 | return true; |
| 742 | } |
| 743 | |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 744 | /// \brief Checks if a type could have padding bytes. |
| 745 | static bool isDenselyPacked(Type *type, const DataLayout &DL) { |
| 746 | |
| 747 | // There is no size information, so be conservative. |
| 748 | if (!type->isSized()) |
| 749 | return false; |
| 750 | |
| 751 | // If the alloc size is not equal to the storage size, then there are padding |
| 752 | // bytes. For x86_fp80 on x86-64, size: 80 alloc size: 128. |
| 753 | if (DL.getTypeSizeInBits(type) != DL.getTypeAllocSizeInBits(type)) |
| 754 | return false; |
| 755 | |
| 756 | if (!isa<CompositeType>(type)) |
| 757 | return true; |
| 758 | |
| 759 | // For homogenous sequential types, check for padding within members. |
| 760 | if (SequentialType *seqTy = dyn_cast<SequentialType>(type)) |
| 761 | return isDenselyPacked(seqTy->getElementType(), DL); |
| 762 | |
| 763 | // Check for padding within and between elements of a struct. |
| 764 | StructType *StructTy = cast<StructType>(type); |
| 765 | const StructLayout *Layout = DL.getStructLayout(StructTy); |
| 766 | uint64_t StartPos = 0; |
| 767 | for (unsigned i = 0, E = StructTy->getNumElements(); i < E; ++i) { |
| 768 | Type *ElTy = StructTy->getElementType(i); |
| 769 | if (!isDenselyPacked(ElTy, DL)) |
| 770 | return false; |
| 771 | if (StartPos != Layout->getElementOffsetInBits(i)) |
| 772 | return false; |
| 773 | StartPos += DL.getTypeAllocSizeInBits(ElTy); |
| 774 | } |
| 775 | |
| 776 | return true; |
| 777 | } |
| 778 | |
| 779 | /// \brief Checks if the padding bytes of an argument could be accessed. |
| 780 | static bool canPaddingBeAccessed(Argument *arg) { |
| 781 | |
| 782 | assert(arg->hasByValAttr()); |
| 783 | |
| 784 | // Track all the pointers to the argument to make sure they are not captured. |
| 785 | SmallPtrSet<Value *, 16> PtrValues; |
| 786 | PtrValues.insert(arg); |
| 787 | |
| 788 | // Track all of the stores. |
| 789 | SmallVector<StoreInst *, 16> Stores; |
| 790 | |
| 791 | // Scan through the uses recursively to make sure the pointer is always used |
| 792 | // sanely. |
| 793 | SmallVector<Value *, 16> WorkList; |
| 794 | WorkList.insert(WorkList.end(), arg->user_begin(), arg->user_end()); |
| 795 | while (!WorkList.empty()) { |
| 796 | Value *V = WorkList.back(); |
| 797 | WorkList.pop_back(); |
| 798 | if (isa<GetElementPtrInst>(V) || isa<PHINode>(V)) { |
| 799 | if (PtrValues.insert(V).second) |
| 800 | WorkList.insert(WorkList.end(), V->user_begin(), V->user_end()); |
| 801 | } else if (StoreInst *Store = dyn_cast<StoreInst>(V)) { |
| 802 | Stores.push_back(Store); |
| 803 | } else if (!isa<LoadInst>(V)) { |
| 804 | return true; |
| 805 | } |
| 806 | } |
| 807 | |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 808 | // Check to make sure the pointers aren't captured |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 809 | for (StoreInst *Store : Stores) |
| 810 | if (PtrValues.count(Store->getValueOperand())) |
| 811 | return true; |
| 812 | |
| 813 | return false; |
| 814 | } |
| 815 | |
| 816 | /// PromoteArguments - This method checks the specified function to see if there |
| 817 | /// are any promotable arguments and if it is safe to promote the function (for |
| 818 | /// example, all callers are direct). If safe to promote some arguments, it |
| 819 | /// calls the DoPromotion method. |
| 820 | /// |
| 821 | static CallGraphNode * |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 822 | promoteArguments(CallGraphNode *CGN, CallGraph &CG, |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 823 | function_ref<AAResults &(Function &F)> AARGetter, |
| 824 | unsigned MaxElements) { |
| 825 | Function *F = CGN->getFunction(); |
| 826 | |
| 827 | // Make sure that it is local to this module. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 828 | if (!F || !F->hasLocalLinkage()) |
| 829 | return nullptr; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 830 | |
| 831 | // Don't promote arguments for variadic functions. Adding, removing, or |
| 832 | // changing non-pack parameters can change the classification of pack |
| 833 | // parameters. Frontends encode that classification at the call site in the |
| 834 | // IR, while in the callee the classification is determined dynamically based |
| 835 | // on the number of registers consumed so far. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 836 | if (F->isVarArg()) |
| 837 | return nullptr; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 838 | |
| 839 | // First check: see if there are any pointer arguments! If not, quick exit. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 840 | SmallVector<Argument *, 16> PointerArgs; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 841 | for (Argument &I : F->args()) |
| 842 | if (I.getType()->isPointerTy()) |
| 843 | PointerArgs.push_back(&I); |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 844 | if (PointerArgs.empty()) |
| 845 | return nullptr; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 846 | |
| 847 | // Second check: make sure that all callers are direct callers. We can't |
| 848 | // transform functions that have indirect callers. Also see if the function |
| 849 | // is self-recursive. |
| 850 | bool isSelfRecursive = false; |
| 851 | for (Use &U : F->uses()) { |
| 852 | CallSite CS(U.getUser()); |
| 853 | // Must be a direct call. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 854 | if (CS.getInstruction() == nullptr || !CS.isCallee(&U)) |
| 855 | return nullptr; |
| 856 | |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 857 | if (CS.getInstruction()->getParent()->getParent() == F) |
| 858 | isSelfRecursive = true; |
| 859 | } |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 860 | |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 861 | const DataLayout &DL = F->getParent()->getDataLayout(); |
| 862 | |
| 863 | AAResults &AAR = AARGetter(*F); |
| 864 | |
| 865 | // Check to see which arguments are promotable. If an argument is promotable, |
| 866 | // add it to ArgsToPromote. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 867 | SmallPtrSet<Argument *, 8> ArgsToPromote; |
| 868 | SmallPtrSet<Argument *, 8> ByValArgsToTransform; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 869 | for (Argument *PtrArg : PointerArgs) { |
| 870 | Type *AgTy = cast<PointerType>(PtrArg->getType())->getElementType(); |
| 871 | |
| 872 | // Replace sret attribute with noalias. This reduces register pressure by |
| 873 | // avoiding a register copy. |
| 874 | if (PtrArg->hasStructRetAttr()) { |
| 875 | unsigned ArgNo = PtrArg->getArgNo(); |
| 876 | F->setAttributes( |
| 877 | F->getAttributes() |
| 878 | .removeAttribute(F->getContext(), ArgNo + 1, Attribute::StructRet) |
| 879 | .addAttribute(F->getContext(), ArgNo + 1, Attribute::NoAlias)); |
| 880 | for (Use &U : F->uses()) { |
| 881 | CallSite CS(U.getUser()); |
| 882 | CS.setAttributes( |
| 883 | CS.getAttributes() |
| 884 | .removeAttribute(F->getContext(), ArgNo + 1, |
| 885 | Attribute::StructRet) |
| 886 | .addAttribute(F->getContext(), ArgNo + 1, Attribute::NoAlias)); |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | // If this is a byval argument, and if the aggregate type is small, just |
| 891 | // pass the elements, which is always safe, if the passed value is densely |
| 892 | // packed or if we can prove the padding bytes are never accessed. This does |
| 893 | // not apply to inalloca. |
| 894 | bool isSafeToPromote = |
| 895 | PtrArg->hasByValAttr() && |
| 896 | (isDenselyPacked(AgTy, DL) || !canPaddingBeAccessed(PtrArg)); |
| 897 | if (isSafeToPromote) { |
| 898 | if (StructType *STy = dyn_cast<StructType>(AgTy)) { |
| 899 | if (MaxElements > 0 && STy->getNumElements() > MaxElements) { |
| 900 | DEBUG(dbgs() << "argpromotion disable promoting argument '" |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 901 | << PtrArg->getName() |
| 902 | << "' because it would require adding more" |
| 903 | << " than " << MaxElements |
| 904 | << " arguments to the function.\n"); |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 905 | continue; |
| 906 | } |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 907 | |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 908 | // If all the elements are single-value types, we can promote it. |
| 909 | bool AllSimple = true; |
| 910 | for (const auto *EltTy : STy->elements()) { |
| 911 | if (!EltTy->isSingleValueType()) { |
| 912 | AllSimple = false; |
| 913 | break; |
| 914 | } |
| 915 | } |
| 916 | |
| 917 | // Safe to transform, don't even bother trying to "promote" it. |
| 918 | // Passing the elements as a scalar will allow sroa to hack on |
| 919 | // the new alloca we introduce. |
| 920 | if (AllSimple) { |
| 921 | ByValArgsToTransform.insert(PtrArg); |
| 922 | continue; |
| 923 | } |
| 924 | } |
| 925 | } |
| 926 | |
| 927 | // If the argument is a recursive type and we're in a recursive |
| 928 | // function, we could end up infinitely peeling the function argument. |
| 929 | if (isSelfRecursive) { |
| 930 | if (StructType *STy = dyn_cast<StructType>(AgTy)) { |
| 931 | bool RecursiveType = false; |
| 932 | for (const auto *EltTy : STy->elements()) { |
| 933 | if (EltTy == PtrArg->getType()) { |
| 934 | RecursiveType = true; |
| 935 | break; |
| 936 | } |
| 937 | } |
| 938 | if (RecursiveType) |
| 939 | continue; |
| 940 | } |
| 941 | } |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 942 | |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 943 | // Otherwise, see if we can promote the pointer to its value. |
| 944 | if (isSafeToPromoteArgument(PtrArg, PtrArg->hasByValOrInAllocaAttr(), AAR, |
| 945 | MaxElements)) |
| 946 | ArgsToPromote.insert(PtrArg); |
| 947 | } |
| 948 | |
| 949 | // No promotable pointer arguments. |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 950 | if (ArgsToPromote.empty() && ByValArgsToTransform.empty()) |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 951 | return nullptr; |
| 952 | |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 953 | return doPromotion(F, ArgsToPromote, ByValArgsToTransform, CG); |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 954 | } |
| 955 | |
| 956 | namespace { |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 957 | /// ArgPromotion - The 'by reference' to 'by value' argument promotion pass. |
| 958 | /// |
| 959 | struct ArgPromotion : public CallGraphSCCPass { |
| 960 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 961 | AU.addRequired<AssumptionCacheTracker>(); |
| 962 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
| 963 | getAAResultsAnalysisUsage(AU); |
| 964 | CallGraphSCCPass::getAnalysisUsage(AU); |
| 965 | } |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 966 | |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 967 | bool runOnSCC(CallGraphSCC &SCC) override; |
| 968 | static char ID; // Pass identification, replacement for typeid |
| 969 | explicit ArgPromotion(unsigned MaxElements = 3) |
| 970 | : CallGraphSCCPass(ID), MaxElements(MaxElements) { |
| 971 | initializeArgPromotionPass(*PassRegistry::getPassRegistry()); |
| 972 | } |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 973 | |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 974 | private: |
| 975 | using llvm::Pass::doInitialization; |
| 976 | bool doInitialization(CallGraph &CG) override; |
| 977 | /// The maximum number of elements to expand, or 0 for unlimited. |
| 978 | unsigned MaxElements; |
| 979 | }; |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | char ArgPromotion::ID = 0; |
| 983 | INITIALIZE_PASS_BEGIN(ArgPromotion, "argpromotion", |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 984 | "Promote 'by reference' arguments to scalars", false, |
| 985 | false) |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 986 | INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) |
| 987 | INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass) |
| 988 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
| 989 | INITIALIZE_PASS_END(ArgPromotion, "argpromotion", |
Chandler Carruth | ae9ce3d | 2017-01-29 08:03:19 +0000 | [diff] [blame] | 990 | "Promote 'by reference' arguments to scalars", false, false) |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 991 | |
| 992 | Pass *llvm::createArgumentPromotionPass(unsigned MaxElements) { |
| 993 | return new ArgPromotion(MaxElements); |
| 994 | } |
| 995 | |
| 996 | bool ArgPromotion::runOnSCC(CallGraphSCC &SCC) { |
| 997 | if (skipSCC(SCC)) |
| 998 | return false; |
| 999 | |
| 1000 | // Get the callgraph information that we need to update to reflect our |
| 1001 | // changes. |
| 1002 | CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph(); |
| 1003 | |
| 1004 | // We compute dedicated AA results for each function in the SCC as needed. We |
| 1005 | // use a lambda referencing external objects so that they live long enough to |
| 1006 | // be queried, but we re-use them each time. |
| 1007 | Optional<BasicAAResult> BAR; |
| 1008 | Optional<AAResults> AAR; |
| 1009 | auto AARGetter = [&](Function &F) -> AAResults & { |
| 1010 | BAR.emplace(createLegacyPMBasicAAResult(*this, F)); |
| 1011 | AAR.emplace(createLegacyPMAAResults(*this, F, *BAR)); |
| 1012 | return *AAR; |
| 1013 | }; |
| 1014 | |
| 1015 | bool Changed = false, LocalChange; |
| 1016 | |
| 1017 | // Iterate until we stop promoting from this SCC. |
| 1018 | do { |
| 1019 | LocalChange = false; |
| 1020 | // Attempt to promote arguments from all functions in this SCC. |
| 1021 | for (CallGraphNode *OldNode : SCC) { |
| 1022 | if (CallGraphNode *NewNode = |
Chandler Carruth | 8e9c0a8 | 2017-01-29 08:03:21 +0000 | [diff] [blame] | 1023 | promoteArguments(OldNode, CG, AARGetter, MaxElements)) { |
Chandler Carruth | cd836cd | 2017-01-29 08:03:16 +0000 | [diff] [blame] | 1024 | LocalChange = true; |
| 1025 | SCC.ReplaceNode(OldNode, NewNode); |
| 1026 | } |
| 1027 | } |
| 1028 | // Remember that we changed something. |
| 1029 | Changed |= LocalChange; |
| 1030 | } while (LocalChange); |
| 1031 | |
| 1032 | return Changed; |
| 1033 | } |
| 1034 | |
David Blaikie | e844cd5 | 2014-07-01 21:13:37 +0000 | [diff] [blame] | 1035 | bool ArgPromotion::doInitialization(CallGraph &CG) { |
David Blaikie | e844cd5 | 2014-07-01 21:13:37 +0000 | [diff] [blame] | 1036 | return CallGraphSCCPass::doInitialization(CG); |
| 1037 | } |