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