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