Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 1 | //===- GlobalOpt.cpp - Optimize Global Variables --------------------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +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 | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass transforms simple global variables that never have their address |
| 11 | // taken. If obviously true, it marks read/write globals as constant, deletes |
| 12 | // variables only stored to, etc. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 16 | #include "llvm/Transforms/IPO/GlobalOpt.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseMap.h" |
| 18 | #include "llvm/ADT/STLExtras.h" |
| 19 | #include "llvm/ADT/SmallPtrSet.h" |
| 20 | #include "llvm/ADT/SmallVector.h" |
| 21 | #include "llvm/ADT/Statistic.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Twine.h" |
| 23 | #include "llvm/ADT/iterator_range.h" |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/BlockFrequencyInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/ConstantFolding.h" |
| 26 | #include "llvm/Analysis/MemoryBuiltins.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 28 | #include "llvm/Analysis/TargetTransformInfo.h" |
David Blaikie | 31b98d2 | 2018-06-04 21:23:21 +0000 | [diff] [blame] | 29 | #include "llvm/Transforms/Utils/Local.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 30 | #include "llvm/BinaryFormat/Dwarf.h" |
| 31 | #include "llvm/IR/Attributes.h" |
| 32 | #include "llvm/IR/BasicBlock.h" |
Chandler Carruth | 219b89b | 2014-03-04 11:01:28 +0000 | [diff] [blame] | 33 | #include "llvm/IR/CallSite.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 34 | #include "llvm/IR/CallingConv.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 35 | #include "llvm/IR/Constant.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 36 | #include "llvm/IR/Constants.h" |
| 37 | #include "llvm/IR/DataLayout.h" |
Victor Leschuk | 56b03d0 | 2017-08-04 04:51:15 +0000 | [diff] [blame] | 38 | #include "llvm/IR/DebugInfoMetadata.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 39 | #include "llvm/IR/DerivedTypes.h" |
James Molloy | 9c7d4d8 | 2015-11-15 14:21:37 +0000 | [diff] [blame] | 40 | #include "llvm/IR/Dominators.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 41 | #include "llvm/IR/Function.h" |
Chandler Carruth | 03eb0de | 2014-03-04 10:40:04 +0000 | [diff] [blame] | 42 | #include "llvm/IR/GetElementPtrTypeIterator.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 43 | #include "llvm/IR/GlobalAlias.h" |
| 44 | #include "llvm/IR/GlobalValue.h" |
| 45 | #include "llvm/IR/GlobalVariable.h" |
| 46 | #include "llvm/IR/InstrTypes.h" |
| 47 | #include "llvm/IR/Instruction.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 48 | #include "llvm/IR/Instructions.h" |
| 49 | #include "llvm/IR/IntrinsicInst.h" |
| 50 | #include "llvm/IR/Module.h" |
| 51 | #include "llvm/IR/Operator.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 52 | #include "llvm/IR/Type.h" |
| 53 | #include "llvm/IR/Use.h" |
| 54 | #include "llvm/IR/User.h" |
| 55 | #include "llvm/IR/Value.h" |
Chandler Carruth | 4220e9c | 2014-03-04 11:17:44 +0000 | [diff] [blame] | 56 | #include "llvm/IR/ValueHandle.h" |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 57 | #include "llvm/Pass.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 58 | #include "llvm/Support/AtomicOrdering.h" |
| 59 | #include "llvm/Support/Casting.h" |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 60 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | 024f4ab | 2007-01-30 23:46:24 +0000 | [diff] [blame] | 61 | #include "llvm/Support/Debug.h" |
Torok Edwin | 56d0659 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 62 | #include "llvm/Support/ErrorHandling.h" |
Chris Lattner | 67ca6f63 | 2008-04-26 07:40:11 +0000 | [diff] [blame] | 63 | #include "llvm/Support/MathExtras.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 64 | #include "llvm/Support/raw_ostream.h" |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 65 | #include "llvm/Transforms/IPO.h" |
Nico Weber | 4b2acde | 2014-05-02 18:35:25 +0000 | [diff] [blame] | 66 | #include "llvm/Transforms/Utils/CtorUtils.h" |
Peter Collingbourne | 9f7ec14 | 2016-02-03 02:51:00 +0000 | [diff] [blame] | 67 | #include "llvm/Transforms/Utils/Evaluator.h" |
Rafael Espindola | 3d7fc25 | 2013-10-21 17:14:55 +0000 | [diff] [blame] | 68 | #include "llvm/Transforms/Utils/GlobalStatus.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 69 | #include <cassert> |
| 70 | #include <cstdint> |
| 71 | #include <utility> |
| 72 | #include <vector> |
| 73 | |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 74 | using namespace llvm; |
| 75 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 76 | #define DEBUG_TYPE "globalopt" |
| 77 | |
Chris Lattner | 1631bcb | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 78 | STATISTIC(NumMarked , "Number of globals marked constant"); |
Rafael Espindola | fc355bc | 2011-01-19 16:32:21 +0000 | [diff] [blame] | 79 | STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr"); |
Chris Lattner | 1631bcb | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 80 | STATISTIC(NumSRA , "Number of aggregate globals broken into scalars"); |
| 81 | STATISTIC(NumHeapSRA , "Number of heap objects SRA'd"); |
| 82 | STATISTIC(NumSubstitute,"Number of globals with initializers stored into them"); |
| 83 | STATISTIC(NumDeleted , "Number of globals deleted"); |
Chris Lattner | 1631bcb | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 84 | STATISTIC(NumGlobUses , "Number of global uses devirtualized"); |
Alexey Samsonov | a1944e6 | 2013-10-07 19:03:24 +0000 | [diff] [blame] | 85 | STATISTIC(NumLocalized , "Number of globals localized"); |
Chris Lattner | 1631bcb | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 86 | STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans"); |
| 87 | STATISTIC(NumFastCallFns , "Number of functions converted to fastcc"); |
| 88 | STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated"); |
Duncan Sands | 573b3f8 | 2008-02-16 20:56:04 +0000 | [diff] [blame] | 89 | STATISTIC(NumNestRemoved , "Number of nest attributes removed"); |
Duncan Sands | b3f2788 | 2009-02-15 09:56:08 +0000 | [diff] [blame] | 90 | STATISTIC(NumAliasesResolved, "Number of global aliases resolved"); |
| 91 | STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated"); |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 92 | STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed"); |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 93 | STATISTIC(NumInternalFunc, "Number of internal functions"); |
| 94 | STATISTIC(NumColdCC, "Number of functions marked coldcc"); |
| 95 | |
| 96 | static cl::opt<bool> |
| 97 | EnableColdCCStressTest("enable-coldcc-stress-test", |
| 98 | cl::desc("Enable stress test of coldcc by adding " |
| 99 | "calling conv to all internal functions."), |
| 100 | cl::init(false), cl::Hidden); |
| 101 | |
| 102 | static cl::opt<int> ColdCCRelFreq( |
| 103 | "coldcc-rel-freq", cl::Hidden, cl::init(2), cl::ZeroOrMore, |
| 104 | cl::desc( |
| 105 | "Maximum block frequency, expressed as a percentage of caller's " |
| 106 | "entry frequency, for a call site to be considered cold for enabling" |
| 107 | "coldcc")); |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 108 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 109 | /// Is this global variable possibly used by a leak checker as a root? If so, |
| 110 | /// we might not really want to eliminate the stores to it. |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 111 | static bool isLeakCheckerRoot(GlobalVariable *GV) { |
| 112 | // A global variable is a root if it is a pointer, or could plausibly contain |
| 113 | // a pointer. There are two challenges; one is that we could have a struct |
| 114 | // the has an inner member which is a pointer. We recurse through the type to |
| 115 | // detect these (up to a point). The other is that we may actually be a union |
| 116 | // of a pointer and another type, and so our LLVM type is an integer which |
| 117 | // gets converted into a pointer, or our type is an [i8 x #] with a pointer |
| 118 | // potentially contained here. |
| 119 | |
| 120 | if (GV->hasPrivateLinkage()) |
| 121 | return false; |
| 122 | |
| 123 | SmallVector<Type *, 4> Types; |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 124 | Types.push_back(GV->getValueType()); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 125 | |
| 126 | unsigned Limit = 20; |
| 127 | do { |
| 128 | Type *Ty = Types.pop_back_val(); |
| 129 | switch (Ty->getTypeID()) { |
| 130 | default: break; |
| 131 | case Type::PointerTyID: return true; |
| 132 | case Type::ArrayTyID: |
| 133 | case Type::VectorTyID: { |
| 134 | SequentialType *STy = cast<SequentialType>(Ty); |
| 135 | Types.push_back(STy->getElementType()); |
| 136 | break; |
| 137 | } |
| 138 | case Type::StructTyID: { |
| 139 | StructType *STy = cast<StructType>(Ty); |
| 140 | if (STy->isOpaque()) return true; |
| 141 | for (StructType::element_iterator I = STy->element_begin(), |
| 142 | E = STy->element_end(); I != E; ++I) { |
| 143 | Type *InnerTy = *I; |
| 144 | if (isa<PointerType>(InnerTy)) return true; |
| 145 | if (isa<CompositeType>(InnerTy)) |
| 146 | Types.push_back(InnerTy); |
| 147 | } |
| 148 | break; |
| 149 | } |
| 150 | } |
| 151 | if (--Limit == 0) return true; |
| 152 | } while (!Types.empty()); |
| 153 | return false; |
| 154 | } |
| 155 | |
| 156 | /// Given a value that is stored to a global but never read, determine whether |
| 157 | /// it's safe to remove the store and the chain of computation that feeds the |
| 158 | /// store. |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 159 | static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) { |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 160 | do { |
| 161 | if (isa<Constant>(V)) |
| 162 | return true; |
| 163 | if (!V->hasOneUse()) |
| 164 | return false; |
Nick Lewycky | 7d0f110 | 2012-07-25 21:19:40 +0000 | [diff] [blame] | 165 | if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) || |
| 166 | isa<GlobalValue>(V)) |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 167 | return false; |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 168 | if (isAllocationFn(V, TLI)) |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 169 | return true; |
| 170 | |
| 171 | Instruction *I = cast<Instruction>(V); |
| 172 | if (I->mayHaveSideEffects()) |
| 173 | return false; |
| 174 | if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) { |
| 175 | if (!GEP->hasAllConstantIndices()) |
| 176 | return false; |
| 177 | } else if (I->getNumOperands() != 1) { |
| 178 | return false; |
| 179 | } |
| 180 | |
| 181 | V = I->getOperand(0); |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 182 | } while (true); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 183 | } |
| 184 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 185 | /// This GV is a pointer root. Loop over all users of the global and clean up |
| 186 | /// any that obviously don't assign the global a value that isn't dynamically |
| 187 | /// allocated. |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 188 | static bool CleanupPointerRootUsers(GlobalVariable *GV, |
| 189 | const TargetLibraryInfo *TLI) { |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 190 | // A brief explanation of leak checkers. The goal is to find bugs where |
| 191 | // pointers are forgotten, causing an accumulating growth in memory |
| 192 | // usage over time. The common strategy for leak checkers is to whitelist the |
| 193 | // memory pointed to by globals at exit. This is popular because it also |
| 194 | // solves another problem where the main thread of a C++ program may shut down |
| 195 | // before other threads that are still expecting to use those globals. To |
| 196 | // handle that case, we expect the program may create a singleton and never |
| 197 | // destroy it. |
| 198 | |
| 199 | bool Changed = false; |
| 200 | |
| 201 | // If Dead[n].first is the only use of a malloc result, we can delete its |
| 202 | // chain of computation and the store to the global in Dead[n].second. |
| 203 | SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead; |
| 204 | |
| 205 | // Constants can't be pointers to dynamically allocated memory. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 206 | for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end(); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 207 | UI != E;) { |
| 208 | User *U = *UI++; |
| 209 | if (StoreInst *SI = dyn_cast<StoreInst>(U)) { |
| 210 | Value *V = SI->getValueOperand(); |
| 211 | if (isa<Constant>(V)) { |
| 212 | Changed = true; |
| 213 | SI->eraseFromParent(); |
| 214 | } else if (Instruction *I = dyn_cast<Instruction>(V)) { |
| 215 | if (I->hasOneUse()) |
| 216 | Dead.push_back(std::make_pair(I, SI)); |
| 217 | } |
| 218 | } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) { |
| 219 | if (isa<Constant>(MSI->getValue())) { |
| 220 | Changed = true; |
| 221 | MSI->eraseFromParent(); |
| 222 | } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) { |
| 223 | if (I->hasOneUse()) |
| 224 | Dead.push_back(std::make_pair(I, MSI)); |
| 225 | } |
| 226 | } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) { |
| 227 | GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource()); |
| 228 | if (MemSrc && MemSrc->isConstant()) { |
| 229 | Changed = true; |
| 230 | MTI->eraseFromParent(); |
| 231 | } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) { |
| 232 | if (I->hasOneUse()) |
| 233 | Dead.push_back(std::make_pair(I, MTI)); |
| 234 | } |
| 235 | } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) { |
| 236 | if (CE->use_empty()) { |
| 237 | CE->destroyConstant(); |
| 238 | Changed = true; |
| 239 | } |
| 240 | } else if (Constant *C = dyn_cast<Constant>(U)) { |
Rafael Espindola | 27797ba | 2013-10-17 18:06:32 +0000 | [diff] [blame] | 241 | if (isSafeToDestroyConstant(C)) { |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 242 | C->destroyConstant(); |
| 243 | // This could have invalidated UI, start over from scratch. |
| 244 | Dead.clear(); |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 245 | CleanupPointerRootUsers(GV, TLI); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 246 | return true; |
| 247 | } |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | for (int i = 0, e = Dead.size(); i != e; ++i) { |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 252 | if (IsSafeComputationToRemove(Dead[i].first, TLI)) { |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 253 | Dead[i].second->eraseFromParent(); |
| 254 | Instruction *I = Dead[i].first; |
| 255 | do { |
Michael Gottesman | 2a65427 | 2013-01-11 23:08:52 +0000 | [diff] [blame] | 256 | if (isAllocationFn(I, TLI)) |
| 257 | break; |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 258 | Instruction *J = dyn_cast<Instruction>(I->getOperand(0)); |
| 259 | if (!J) |
| 260 | break; |
| 261 | I->eraseFromParent(); |
| 262 | I = J; |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 263 | } while (true); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 264 | I->eraseFromParent(); |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | return Changed; |
| 269 | } |
| 270 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 271 | /// We just marked GV constant. Loop over all users of the global, cleaning up |
| 272 | /// the obvious ones. This is largely just a quick scan over the use list to |
| 273 | /// clean up the easy and obvious cruft. This returns true if it made a change. |
Nick Lewycky | cf6aae6 | 2012-02-12 01:13:18 +0000 | [diff] [blame] | 274 | static bool CleanupConstantGlobalUsers(Value *V, Constant *Init, |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 275 | const DataLayout &DL, |
Rafael Espindola | aeff8a9 | 2014-02-24 23:12:18 +0000 | [diff] [blame] | 276 | TargetLibraryInfo *TLI) { |
Chris Lattner | cb9f152 | 2004-10-10 16:43:46 +0000 | [diff] [blame] | 277 | bool Changed = false; |
Hal Finkel | f59fd7d | 2013-12-12 20:45:24 +0000 | [diff] [blame] | 278 | // Note that we need to use a weak value handle for the worklist items. When |
| 279 | // we delete a constant array, we may also be holding pointer to one of its |
| 280 | // elements (or an element of one of its elements if we're dealing with an |
| 281 | // array of arrays) in the worklist. |
Sanjoy Das | e6bca0e | 2017-05-01 17:07:49 +0000 | [diff] [blame] | 282 | SmallVector<WeakTrackingVH, 8> WorkList(V->user_begin(), V->user_end()); |
Bill Wendling | 88d06c3 | 2013-04-02 08:16:45 +0000 | [diff] [blame] | 283 | while (!WorkList.empty()) { |
Hal Finkel | f59fd7d | 2013-12-12 20:45:24 +0000 | [diff] [blame] | 284 | Value *UV = WorkList.pop_back_val(); |
| 285 | if (!UV) |
| 286 | continue; |
| 287 | |
| 288 | User *U = cast<User>(UV); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 289 | |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 290 | if (LoadInst *LI = dyn_cast<LoadInst>(U)) { |
Chris Lattner | 7561ca1 | 2005-02-27 18:58:52 +0000 | [diff] [blame] | 291 | if (Init) { |
| 292 | // Replace the load with the initializer. |
| 293 | LI->replaceAllUsesWith(Init); |
| 294 | LI->eraseFromParent(); |
| 295 | Changed = true; |
| 296 | } |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 297 | } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) { |
| 298 | // Store must be unreachable or storing Init into the global. |
Chris Lattner | 8e71c6a | 2004-10-16 18:09:00 +0000 | [diff] [blame] | 299 | SI->eraseFromParent(); |
Chris Lattner | cb9f152 | 2004-10-10 16:43:46 +0000 | [diff] [blame] | 300 | Changed = true; |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 301 | } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) { |
| 302 | if (CE->getOpcode() == Instruction::GetElementPtr) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 303 | Constant *SubInit = nullptr; |
Chris Lattner | 46d9ff08 | 2005-09-26 07:34:35 +0000 | [diff] [blame] | 304 | if (Init) |
Dan Gohman | e525d9d | 2009-10-05 16:36:26 +0000 | [diff] [blame] | 305 | SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 306 | Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI); |
Matt Arsenault | 461c8e0 | 2014-01-02 20:01:43 +0000 | [diff] [blame] | 307 | } else if ((CE->getOpcode() == Instruction::BitCast && |
| 308 | CE->getType()->isPointerTy()) || |
| 309 | CE->getOpcode() == Instruction::AddrSpaceCast) { |
Chris Lattner | 7561ca1 | 2005-02-27 18:58:52 +0000 | [diff] [blame] | 310 | // Pointer cast, delete any stores and memsets to the global. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 311 | Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI); |
Chris Lattner | 7561ca1 | 2005-02-27 18:58:52 +0000 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | if (CE->use_empty()) { |
| 315 | CE->destroyConstant(); |
| 316 | Changed = true; |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 317 | } |
| 318 | } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) { |
Chris Lattner | f9c0fd7 | 2007-11-09 17:33:02 +0000 | [diff] [blame] | 319 | // Do not transform "gepinst (gep constexpr (GV))" here, because forming |
| 320 | // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold |
| 321 | // and will invalidate our notion of what Init is. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 322 | Constant *SubInit = nullptr; |
Chris Lattner | f9c0fd7 | 2007-11-09 17:33:02 +0000 | [diff] [blame] | 323 | if (!isa<ConstantExpr>(GEP->getOperand(0))) { |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 324 | ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>( |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 325 | ConstantFoldInstruction(GEP, DL, TLI)); |
Chris Lattner | f9c0fd7 | 2007-11-09 17:33:02 +0000 | [diff] [blame] | 326 | if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr) |
Dan Gohman | e525d9d | 2009-10-05 16:36:26 +0000 | [diff] [blame] | 327 | SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE); |
Benjamin Kramer | aa9e4a5 | 2012-03-28 14:50:09 +0000 | [diff] [blame] | 328 | |
| 329 | // If the initializer is an all-null value and we have an inbounds GEP, |
| 330 | // we already know what the result of any load from that GEP is. |
| 331 | // TODO: Handle splats. |
| 332 | if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds()) |
Eduard Burtescu | 19eb031 | 2016-01-19 17:28:00 +0000 | [diff] [blame] | 333 | SubInit = Constant::getNullValue(GEP->getResultElementType()); |
Chris Lattner | f9c0fd7 | 2007-11-09 17:33:02 +0000 | [diff] [blame] | 334 | } |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 335 | Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI); |
Chris Lattner | a0e769c | 2004-10-10 16:47:33 +0000 | [diff] [blame] | 336 | |
Chris Lattner | cb9f152 | 2004-10-10 16:43:46 +0000 | [diff] [blame] | 337 | if (GEP->use_empty()) { |
Chris Lattner | 8e71c6a | 2004-10-16 18:09:00 +0000 | [diff] [blame] | 338 | GEP->eraseFromParent(); |
Chris Lattner | cb9f152 | 2004-10-10 16:43:46 +0000 | [diff] [blame] | 339 | Changed = true; |
| 340 | } |
Chris Lattner | 7561ca1 | 2005-02-27 18:58:52 +0000 | [diff] [blame] | 341 | } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv |
| 342 | if (MI->getRawDest() == V) { |
| 343 | MI->eraseFromParent(); |
| 344 | Changed = true; |
| 345 | } |
| 346 | |
Chris Lattner | 1c4bddc | 2004-10-08 20:59:28 +0000 | [diff] [blame] | 347 | } else if (Constant *C = dyn_cast<Constant>(U)) { |
| 348 | // If we have a chain of dead constantexprs or other things dangling from |
| 349 | // us, and if they are all dead, nuke them without remorse. |
Rafael Espindola | 27797ba | 2013-10-17 18:06:32 +0000 | [diff] [blame] | 350 | if (isSafeToDestroyConstant(C)) { |
Devang Patel | d926aaa | 2009-03-06 01:37:41 +0000 | [diff] [blame] | 351 | C->destroyConstant(); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 352 | CleanupConstantGlobalUsers(V, Init, DL, TLI); |
Chris Lattner | cb9f152 | 2004-10-10 16:43:46 +0000 | [diff] [blame] | 353 | return true; |
Chris Lattner | 1c4bddc | 2004-10-08 20:59:28 +0000 | [diff] [blame] | 354 | } |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 355 | } |
| 356 | } |
Chris Lattner | cb9f152 | 2004-10-10 16:43:46 +0000 | [diff] [blame] | 357 | return Changed; |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 358 | } |
| 359 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 360 | /// Return true if the specified instruction is a safe user of a derived |
| 361 | /// expression from a global that we want to SROA. |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 362 | static bool isSafeSROAElementUse(Value *V) { |
| 363 | // We might have a dead and dangling constant hanging off of here. |
| 364 | if (Constant *C = dyn_cast<Constant>(V)) |
Rafael Espindola | 27797ba | 2013-10-17 18:06:32 +0000 | [diff] [blame] | 365 | return isSafeToDestroyConstant(C); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 366 | |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 367 | Instruction *I = dyn_cast<Instruction>(V); |
| 368 | if (!I) return false; |
| 369 | |
| 370 | // Loads are ok. |
| 371 | if (isa<LoadInst>(I)) return true; |
| 372 | |
| 373 | // Stores *to* the pointer are ok. |
| 374 | if (StoreInst *SI = dyn_cast<StoreInst>(I)) |
| 375 | return SI->getOperand(0) != V; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 376 | |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 377 | // Otherwise, it must be a GEP. |
| 378 | GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 379 | if (!GEPI) return false; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 380 | |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 381 | if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) || |
| 382 | !cast<Constant>(GEPI->getOperand(1))->isNullValue()) |
| 383 | return false; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 384 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 385 | for (User *U : GEPI->users()) |
| 386 | if (!isSafeSROAElementUse(U)) |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 387 | return false; |
Chris Lattner | ab05372 | 2008-01-14 01:31:05 +0000 | [diff] [blame] | 388 | return true; |
| 389 | } |
| 390 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 391 | /// U is a direct user of the specified global value. Look at it and its uses |
| 392 | /// and decide whether it is safe to SROA this global. |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 393 | static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) { |
| 394 | // The user of the global must be a GEP Inst or a ConstantExpr GEP. |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 395 | if (!isa<GetElementPtrInst>(U) && |
| 396 | (!isa<ConstantExpr>(U) || |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 397 | cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr)) |
| 398 | return false; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 399 | |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 400 | // Check to see if this ConstantExpr GEP is SRA'able. In particular, we |
| 401 | // don't like < 3 operand CE's, and we don't like non-constant integer |
| 402 | // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some |
| 403 | // value of C. |
| 404 | if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) || |
| 405 | !cast<Constant>(U->getOperand(1))->isNullValue() || |
| 406 | !isa<ConstantInt>(U->getOperand(2))) |
| 407 | return false; |
| 408 | |
| 409 | gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U); |
| 410 | ++GEPI; // Skip over the pointer index. |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 411 | |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 412 | // If this is a use of an array allocation, do a bit more checking for sanity. |
Peter Collingbourne | ab85225b | 2016-12-02 02:24:42 +0000 | [diff] [blame] | 413 | if (GEPI.isSequential()) { |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 414 | ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2)); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 415 | |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 416 | // Check to make sure that index falls within the array. If not, |
| 417 | // something funny is going on, so we won't do the optimization. |
| 418 | // |
Peter Collingbourne | ab85225b | 2016-12-02 02:24:42 +0000 | [diff] [blame] | 419 | if (GEPI.isBoundedSequential() && |
| 420 | Idx->getZExtValue() >= GEPI.getSequentialNumElements()) |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 421 | return false; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 422 | |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 423 | // We cannot scalar repl this level of the array unless any array |
| 424 | // sub-indices are in-range constants. In particular, consider: |
| 425 | // A[0][i]. We cannot know that the user isn't doing invalid things like |
| 426 | // allowing i to index an out-of-range subscript that accesses A[1]. |
| 427 | // |
| 428 | // Scalar replacing *just* the outer index of the array is probably not |
| 429 | // going to be a win anyway, so just give up. |
| 430 | for (++GEPI; // Skip array index. |
Dan Gohman | 82ac81b | 2009-08-18 14:58:19 +0000 | [diff] [blame] | 431 | GEPI != E; |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 432 | ++GEPI) { |
Peter Collingbourne | ab85225b | 2016-12-02 02:24:42 +0000 | [diff] [blame] | 433 | if (GEPI.isStruct()) |
Dan Gohman | 82ac81b | 2009-08-18 14:58:19 +0000 | [diff] [blame] | 434 | continue; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 435 | |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 436 | ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand()); |
Peter Collingbourne | ab85225b | 2016-12-02 02:24:42 +0000 | [diff] [blame] | 437 | if (!IdxVal || |
| 438 | (GEPI.isBoundedSequential() && |
| 439 | IdxVal->getZExtValue() >= GEPI.getSequentialNumElements())) |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 440 | return false; |
| 441 | } |
| 442 | } |
| 443 | |
Davide Italiano | c163fac | 2017-08-09 09:23:29 +0000 | [diff] [blame] | 444 | return llvm::all_of(U->users(), |
| 445 | [](User *UU) { return isSafeSROAElementUse(UU); }); |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 446 | } |
| 447 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 448 | /// Look at all uses of the global and decide whether it is safe for us to |
| 449 | /// perform this transformation. |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 450 | static bool GlobalUsersSafeToSRA(GlobalValue *GV) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 451 | for (User *U : GV->users()) |
| 452 | if (!IsUserOfGlobalSafeForSRA(U, GV)) |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 453 | return false; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 454 | |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 455 | return true; |
| 456 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 457 | |
Victor Leschuk | 56b03d0 | 2017-08-04 04:51:15 +0000 | [diff] [blame] | 458 | /// Copy over the debug info for a variable to its SRA replacements. |
| 459 | static void transferSRADebugInfo(GlobalVariable *GV, GlobalVariable *NGV, |
| 460 | uint64_t FragmentOffsetInBits, |
Adrian Prantl | 504b82d | 2017-08-31 00:06:18 +0000 | [diff] [blame] | 461 | uint64_t FragmentSizeInBits, |
| 462 | unsigned NumElements) { |
Victor Leschuk | 56b03d0 | 2017-08-04 04:51:15 +0000 | [diff] [blame] | 463 | SmallVector<DIGlobalVariableExpression *, 1> GVs; |
| 464 | GV->getDebugInfo(GVs); |
| 465 | for (auto *GVE : GVs) { |
| 466 | DIVariable *Var = GVE->getVariable(); |
| 467 | DIExpression *Expr = GVE->getExpression(); |
Adrian Prantl | 25a09dd | 2017-11-07 00:45:34 +0000 | [diff] [blame] | 468 | if (NumElements > 1) { |
| 469 | if (auto E = DIExpression::createFragmentExpression( |
| 470 | Expr, FragmentOffsetInBits, FragmentSizeInBits)) |
| 471 | Expr = *E; |
| 472 | else |
| 473 | return; |
| 474 | } |
Adrian Prantl | 504b82d | 2017-08-31 00:06:18 +0000 | [diff] [blame] | 475 | auto *NGVE = DIGlobalVariableExpression::get(GVE->getContext(), Var, Expr); |
Victor Leschuk | 56b03d0 | 2017-08-04 04:51:15 +0000 | [diff] [blame] | 476 | NGV->addDebugInfo(NGVE); |
| 477 | } |
| 478 | } |
| 479 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 480 | /// Perform scalar replacement of aggregates on the specified global variable. |
| 481 | /// This opens the door for other optimizations by exposing the behavior of the |
| 482 | /// program in a more fine-grained way. We have determined that this |
| 483 | /// transformation is safe already. We return the first global variable we |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 484 | /// insert so that the caller can reprocess it. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 485 | static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) { |
Chris Lattner | ab05372 | 2008-01-14 01:31:05 +0000 | [diff] [blame] | 486 | // Make sure this global only has simple uses that we can SRA. |
Chris Lattner | 26fe7eb | 2008-01-14 02:09:12 +0000 | [diff] [blame] | 487 | if (!GlobalUsersSafeToSRA(GV)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 488 | return nullptr; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 489 | |
James Molloy | eb040cc | 2016-04-25 10:48:29 +0000 | [diff] [blame] | 490 | assert(GV->hasLocalLinkage()); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 491 | Constant *Init = GV->getInitializer(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 492 | Type *Ty = Init->getType(); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 493 | |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 494 | std::vector<GlobalVariable *> NewGlobals; |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 495 | Module::GlobalListType &Globals = GV->getParent()->getGlobalList(); |
| 496 | |
Chris Lattner | 67ca6f63 | 2008-04-26 07:40:11 +0000 | [diff] [blame] | 497 | // Get the alignment of the global, either explicit or target-specific. |
| 498 | unsigned StartAlignment = GV->getAlignment(); |
| 499 | if (StartAlignment == 0) |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 500 | StartAlignment = DL.getABITypeAlignment(GV->getType()); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 501 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 502 | if (StructType *STy = dyn_cast<StructType>(Ty)) { |
Adrian Prantl | 504b82d | 2017-08-31 00:06:18 +0000 | [diff] [blame] | 503 | unsigned NumElements = STy->getNumElements(); |
| 504 | NewGlobals.reserve(NumElements); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 505 | const StructLayout &Layout = *DL.getStructLayout(STy); |
Adrian Prantl | 504b82d | 2017-08-31 00:06:18 +0000 | [diff] [blame] | 506 | for (unsigned i = 0, e = NumElements; i != e; ++i) { |
Chris Lattner | 6705883 | 2012-01-25 06:48:06 +0000 | [diff] [blame] | 507 | Constant *In = Init->getAggregateElement(i); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 508 | assert(In && "Couldn't get element of initializer?"); |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 509 | GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false, |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 510 | GlobalVariable::InternalLinkage, |
Daniel Dunbar | 132f783 | 2009-07-30 17:37:43 +0000 | [diff] [blame] | 511 | In, GV->getName()+"."+Twine(i), |
Hans Wennborg | cbe34b4 | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 512 | GV->getThreadLocalMode(), |
Owen Anderson | 5948fdf | 2009-07-08 01:26:06 +0000 | [diff] [blame] | 513 | GV->getType()->getAddressSpace()); |
Oliver Stannard | c110339 | 2015-11-09 16:47:16 +0000 | [diff] [blame] | 514 | NGV->setExternallyInitialized(GV->isExternallyInitialized()); |
Sergei Larin | 94be2de | 2016-01-22 21:18:20 +0000 | [diff] [blame] | 515 | NGV->copyAttributesFrom(GV); |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 516 | Globals.push_back(NGV); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 517 | NewGlobals.push_back(NGV); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 518 | |
Chris Lattner | 67ca6f63 | 2008-04-26 07:40:11 +0000 | [diff] [blame] | 519 | // Calculate the known alignment of the field. If the original aggregate |
| 520 | // had 256 byte alignment for example, something might depend on that: |
| 521 | // propagate info to each field. |
| 522 | uint64_t FieldOffset = Layout.getElementOffset(i); |
| 523 | unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 524 | if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i))) |
Chris Lattner | 67ca6f63 | 2008-04-26 07:40:11 +0000 | [diff] [blame] | 525 | NGV->setAlignment(NewAlign); |
Victor Leschuk | 56b03d0 | 2017-08-04 04:51:15 +0000 | [diff] [blame] | 526 | |
| 527 | // Copy over the debug info for the variable. |
Mikael Holmen | b69e5b7 | 2018-02-02 10:34:13 +0000 | [diff] [blame] | 528 | uint64_t Size = DL.getTypeAllocSizeInBits(NGV->getValueType()); |
Mikael Holmen | 886edf8 | 2018-01-25 10:09:26 +0000 | [diff] [blame] | 529 | uint64_t FragmentOffsetInBits = Layout.getElementOffsetInBits(i); |
| 530 | transferSRADebugInfo(GV, NGV, FragmentOffsetInBits, Size, NumElements); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 531 | } |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 532 | } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) { |
Peter Collingbourne | bc07052 | 2016-12-02 03:20:58 +0000 | [diff] [blame] | 533 | unsigned NumElements = STy->getNumElements(); |
Chris Lattner | 25169ca | 2005-02-23 16:53:04 +0000 | [diff] [blame] | 534 | if (NumElements > 16 && GV->hasNUsesOrMore(16)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 535 | return nullptr; // It's not worth it. |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 536 | NewGlobals.reserve(NumElements); |
Victor Leschuk | 56b03d0 | 2017-08-04 04:51:15 +0000 | [diff] [blame] | 537 | auto ElTy = STy->getElementType(); |
| 538 | uint64_t EltSize = DL.getTypeAllocSize(ElTy); |
| 539 | unsigned EltAlign = DL.getABITypeAlignment(ElTy); |
Mikael Holmen | b69e5b7 | 2018-02-02 10:34:13 +0000 | [diff] [blame] | 540 | uint64_t FragmentSizeInBits = DL.getTypeAllocSizeInBits(ElTy); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 541 | for (unsigned i = 0, e = NumElements; i != e; ++i) { |
Chris Lattner | 6705883 | 2012-01-25 06:48:06 +0000 | [diff] [blame] | 542 | Constant *In = Init->getAggregateElement(i); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 543 | assert(In && "Couldn't get element of initializer?"); |
| 544 | |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 545 | GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false, |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 546 | GlobalVariable::InternalLinkage, |
Daniel Dunbar | 132f783 | 2009-07-30 17:37:43 +0000 | [diff] [blame] | 547 | In, GV->getName()+"."+Twine(i), |
Hans Wennborg | cbe34b4 | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 548 | GV->getThreadLocalMode(), |
Owen Anderson | b17f329 | 2009-07-08 19:03:57 +0000 | [diff] [blame] | 549 | GV->getType()->getAddressSpace()); |
Oliver Stannard | c110339 | 2015-11-09 16:47:16 +0000 | [diff] [blame] | 550 | NGV->setExternallyInitialized(GV->isExternallyInitialized()); |
Sergei Larin | 94be2de | 2016-01-22 21:18:20 +0000 | [diff] [blame] | 551 | NGV->copyAttributesFrom(GV); |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 552 | Globals.push_back(NGV); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 553 | NewGlobals.push_back(NGV); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 554 | |
Chris Lattner | 67ca6f63 | 2008-04-26 07:40:11 +0000 | [diff] [blame] | 555 | // Calculate the known alignment of the field. If the original aggregate |
| 556 | // had 256 byte alignment for example, something might depend on that: |
| 557 | // propagate info to each field. |
| 558 | unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i); |
| 559 | if (NewAlign > EltAlign) |
| 560 | NGV->setAlignment(NewAlign); |
Adrian Prantl | 504b82d | 2017-08-31 00:06:18 +0000 | [diff] [blame] | 561 | transferSRADebugInfo(GV, NGV, FragmentSizeInBits * i, FragmentSizeInBits, |
| 562 | NumElements); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 563 | } |
| 564 | } |
| 565 | |
| 566 | if (NewGlobals.empty()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 567 | return nullptr; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 568 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 569 | LLVM_DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n"); |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 570 | |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 571 | Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext())); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 572 | |
| 573 | // Loop over all of the uses of the global, replacing the constantexpr geps, |
| 574 | // with smaller constantexpr geps or direct references. |
| 575 | while (!GV->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 576 | User *GEP = GV->user_back(); |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 577 | assert(((isa<ConstantExpr>(GEP) && |
| 578 | cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)|| |
| 579 | isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!"); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 580 | |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 581 | // Ignore the 1th operand, which has to be zero or else the program is quite |
| 582 | // broken (undefined). Get the 2nd operand, which is the structure or array |
| 583 | // index. |
Reid Spencer | e0fc4df | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 584 | unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue(); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 585 | if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access. |
| 586 | |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 587 | Value *NewPtr = NewGlobals[Val]; |
David Blaikie | d9d900c | 2015-05-07 17:28:58 +0000 | [diff] [blame] | 588 | Type *NewTy = NewGlobals[Val]->getValueType(); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 589 | |
| 590 | // Form a shorter GEP if needed. |
Anton Korobeynikov | 1bfd121 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 591 | if (GEP->getNumOperands() > 3) { |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 592 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) { |
Chris Lattner | f96f4a8 | 2007-01-31 04:40:53 +0000 | [diff] [blame] | 593 | SmallVector<Constant*, 8> Idxs; |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 594 | Idxs.push_back(NullInt); |
| 595 | for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i) |
| 596 | Idxs.push_back(CE->getOperand(i)); |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 597 | NewPtr = |
| 598 | ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs); |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 599 | } else { |
| 600 | GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP); |
Chris Lattner | 927653f | 2007-01-31 19:59:55 +0000 | [diff] [blame] | 601 | SmallVector<Value*, 8> Idxs; |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 602 | Idxs.push_back(NullInt); |
| 603 | for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i) |
| 604 | Idxs.push_back(GEPI->getOperand(i)); |
David Blaikie | 741c8f8 | 2015-03-14 01:53:18 +0000 | [diff] [blame] | 605 | NewPtr = GetElementPtrInst::Create( |
David Blaikie | d9d900c | 2015-05-07 17:28:58 +0000 | [diff] [blame] | 606 | NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI); |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 607 | } |
Anton Korobeynikov | 1bfd121 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 608 | } |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 609 | GEP->replaceAllUsesWith(NewPtr); |
| 610 | |
| 611 | if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP)) |
Chris Lattner | 8e71c6a | 2004-10-16 18:09:00 +0000 | [diff] [blame] | 612 | GEPI->eraseFromParent(); |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 613 | else |
| 614 | cast<ConstantExpr>(GEP)->destroyConstant(); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 615 | } |
| 616 | |
Chris Lattner | 73ad73e | 2004-10-08 20:25:55 +0000 | [diff] [blame] | 617 | // Delete the old global, now that it is dead. |
| 618 | Globals.erase(GV); |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 619 | ++NumSRA; |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 620 | |
| 621 | // Loop over the new globals array deleting any globals that are obviously |
| 622 | // dead. This can arise due to scalarization of a structure or an array that |
| 623 | // has elements that are dead. |
| 624 | unsigned FirstGlobal = 0; |
| 625 | for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i) |
| 626 | if (NewGlobals[i]->use_empty()) { |
| 627 | Globals.erase(NewGlobals[i]); |
| 628 | if (FirstGlobal == i) ++FirstGlobal; |
| 629 | } |
| 630 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 631 | return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr; |
Chris Lattner | abab071 | 2004-10-08 17:32:09 +0000 | [diff] [blame] | 632 | } |
| 633 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 634 | /// Return true if all users of the specified value will trap if the value is |
| 635 | /// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid |
| 636 | /// reprocessing them. |
Gabor Greif | 6797287 | 2010-04-06 19:24:18 +0000 | [diff] [blame] | 637 | static bool AllUsesOfValueWillTrapIfNull(const Value *V, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 638 | SmallPtrSetImpl<const PHINode*> &PHIs) { |
Manoj Gupta | 77eeac3 | 2018-07-09 22:27:23 +0000 | [diff] [blame^] | 639 | for (const User *U : V->users()) { |
| 640 | if (const Instruction *I = dyn_cast<Instruction>(U)) { |
| 641 | // If null pointer is considered valid, then all uses are non-trapping. |
| 642 | // Non address-space 0 globals have already been pruned by the caller. |
| 643 | if (NullPointerIsDefined(I->getFunction())) |
| 644 | return false; |
| 645 | } |
Gabor Greif | 08355d6 | 2010-04-06 19:14:05 +0000 | [diff] [blame] | 646 | if (isa<LoadInst>(U)) { |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 647 | // Will trap. |
Gabor Greif | 6797287 | 2010-04-06 19:24:18 +0000 | [diff] [blame] | 648 | } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) { |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 649 | if (SI->getOperand(0) == V) { |
Gabor Greif | 08355d6 | 2010-04-06 19:14:05 +0000 | [diff] [blame] | 650 | //cerr << "NONTRAPPING USE: " << *U; |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 651 | return false; // Storing the value. |
| 652 | } |
Gabor Greif | 6797287 | 2010-04-06 19:24:18 +0000 | [diff] [blame] | 653 | } else if (const CallInst *CI = dyn_cast<CallInst>(U)) { |
Gabor Greif | febf6ab | 2010-03-20 21:00:25 +0000 | [diff] [blame] | 654 | if (CI->getCalledValue() != V) { |
Gabor Greif | 08355d6 | 2010-04-06 19:14:05 +0000 | [diff] [blame] | 655 | //cerr << "NONTRAPPING USE: " << *U; |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 656 | return false; // Not calling the ptr |
| 657 | } |
Gabor Greif | 6797287 | 2010-04-06 19:24:18 +0000 | [diff] [blame] | 658 | } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) { |
Gabor Greif | febf6ab | 2010-03-20 21:00:25 +0000 | [diff] [blame] | 659 | if (II->getCalledValue() != V) { |
Gabor Greif | 08355d6 | 2010-04-06 19:14:05 +0000 | [diff] [blame] | 660 | //cerr << "NONTRAPPING USE: " << *U; |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 661 | return false; // Not calling the ptr |
| 662 | } |
Gabor Greif | 6797287 | 2010-04-06 19:24:18 +0000 | [diff] [blame] | 663 | } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) { |
Chris Lattner | 2d2892e | 2007-09-13 16:30:19 +0000 | [diff] [blame] | 664 | if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false; |
Gabor Greif | 6797287 | 2010-04-06 19:24:18 +0000 | [diff] [blame] | 665 | } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) { |
Chris Lattner | 2d2892e | 2007-09-13 16:30:19 +0000 | [diff] [blame] | 666 | if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false; |
Gabor Greif | 6797287 | 2010-04-06 19:24:18 +0000 | [diff] [blame] | 667 | } else if (const PHINode *PN = dyn_cast<PHINode>(U)) { |
Chris Lattner | 2d2892e | 2007-09-13 16:30:19 +0000 | [diff] [blame] | 668 | // If we've already seen this phi node, ignore it, it has already been |
| 669 | // checked. |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 670 | if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs)) |
Jakob Stoklund Olesen | e27dc72 | 2010-01-29 23:54:14 +0000 | [diff] [blame] | 671 | return false; |
Gabor Greif | 08355d6 | 2010-04-06 19:14:05 +0000 | [diff] [blame] | 672 | } else if (isa<ICmpInst>(U) && |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 673 | isa<ConstantPointerNull>(U->getOperand(1))) { |
Nick Lewycky | 614fb94 | 2010-02-25 06:39:10 +0000 | [diff] [blame] | 674 | // Ignore icmp X, null |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 675 | } else { |
Gabor Greif | 08355d6 | 2010-04-06 19:14:05 +0000 | [diff] [blame] | 676 | //cerr << "NONTRAPPING USE: " << *U; |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 677 | return false; |
| 678 | } |
Manoj Gupta | 77eeac3 | 2018-07-09 22:27:23 +0000 | [diff] [blame^] | 679 | } |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 680 | return true; |
| 681 | } |
| 682 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 683 | /// Return true if all uses of any loads from GV will trap if the loaded value |
| 684 | /// is null. Note that this also permits comparisons of the loaded value |
| 685 | /// against null, as a special case. |
Gabor Greif | 6797287 | 2010-04-06 19:24:18 +0000 | [diff] [blame] | 686 | static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 687 | for (const User *U : GV->users()) |
Gabor Greif | 6797287 | 2010-04-06 19:24:18 +0000 | [diff] [blame] | 688 | if (const LoadInst *LI = dyn_cast<LoadInst>(U)) { |
| 689 | SmallPtrSet<const PHINode*, 8> PHIs; |
Chris Lattner | 2d2892e | 2007-09-13 16:30:19 +0000 | [diff] [blame] | 690 | if (!AllUsesOfValueWillTrapIfNull(LI, PHIs)) |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 691 | return false; |
Gabor Greif | 08355d6 | 2010-04-06 19:14:05 +0000 | [diff] [blame] | 692 | } else if (isa<StoreInst>(U)) { |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 693 | // Ignore stores to the global. |
| 694 | } else { |
| 695 | // We don't know or understand this user, bail out. |
Gabor Greif | 08355d6 | 2010-04-06 19:14:05 +0000 | [diff] [blame] | 696 | //cerr << "UNKNOWN USER OF GLOBAL!: " << *U; |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 697 | return false; |
| 698 | } |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 699 | return true; |
| 700 | } |
| 701 | |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 702 | static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) { |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 703 | bool Changed = false; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 704 | for (auto UI = V->user_begin(), E = V->user_end(); UI != E; ) { |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 705 | Instruction *I = cast<Instruction>(*UI++); |
Manoj Gupta | 77eeac3 | 2018-07-09 22:27:23 +0000 | [diff] [blame^] | 706 | // Uses are non-trapping if null pointer is considered valid. |
| 707 | // Non address-space 0 globals are already pruned by the caller. |
| 708 | if (NullPointerIsDefined(I->getFunction())) |
| 709 | return false; |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 710 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) { |
| 711 | LI->setOperand(0, NewV); |
| 712 | Changed = true; |
| 713 | } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) { |
| 714 | if (SI->getOperand(1) == V) { |
| 715 | SI->setOperand(1, NewV); |
| 716 | Changed = true; |
| 717 | } |
| 718 | } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) { |
Gabor Greif | 0439789 | 2010-04-06 18:45:08 +0000 | [diff] [blame] | 719 | CallSite CS(I); |
| 720 | if (CS.getCalledValue() == V) { |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 721 | // Calling through the pointer! Turn into a direct call, but be careful |
| 722 | // that the pointer is not also being passed as an argument. |
Gabor Greif | 0439789 | 2010-04-06 18:45:08 +0000 | [diff] [blame] | 723 | CS.setCalledFunction(NewV); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 724 | Changed = true; |
| 725 | bool PassedAsArg = false; |
Gabor Greif | 0439789 | 2010-04-06 18:45:08 +0000 | [diff] [blame] | 726 | for (unsigned i = 0, e = CS.arg_size(); i != e; ++i) |
| 727 | if (CS.getArgument(i) == V) { |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 728 | PassedAsArg = true; |
Gabor Greif | 0439789 | 2010-04-06 18:45:08 +0000 | [diff] [blame] | 729 | CS.setArgument(i, NewV); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 730 | } |
| 731 | |
| 732 | if (PassedAsArg) { |
| 733 | // Being passed as an argument also. Be careful to not invalidate UI! |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 734 | UI = V->user_begin(); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 735 | } |
| 736 | } |
| 737 | } else if (CastInst *CI = dyn_cast<CastInst>(I)) { |
| 738 | Changed |= OptimizeAwayTrappingUsesOfValue(CI, |
Owen Anderson | 487375e | 2009-07-29 18:55:55 +0000 | [diff] [blame] | 739 | ConstantExpr::getCast(CI->getOpcode(), |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 740 | NewV, CI->getType())); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 741 | if (CI->use_empty()) { |
| 742 | Changed = true; |
Chris Lattner | 8e71c6a | 2004-10-16 18:09:00 +0000 | [diff] [blame] | 743 | CI->eraseFromParent(); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 744 | } |
| 745 | } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) { |
| 746 | // Should handle GEP here. |
Chris Lattner | f96f4a8 | 2007-01-31 04:40:53 +0000 | [diff] [blame] | 747 | SmallVector<Constant*, 8> Idxs; |
| 748 | Idxs.reserve(GEPI->getNumOperands()-1); |
Gabor Greif | 3a9fba5 | 2008-05-29 01:59:18 +0000 | [diff] [blame] | 749 | for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end(); |
| 750 | i != e; ++i) |
| 751 | if (Constant *C = dyn_cast<Constant>(*i)) |
Chris Lattner | f96f4a8 | 2007-01-31 04:40:53 +0000 | [diff] [blame] | 752 | Idxs.push_back(C); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 753 | else |
| 754 | break; |
Chris Lattner | f96f4a8 | 2007-01-31 04:40:53 +0000 | [diff] [blame] | 755 | if (Idxs.size() == GEPI->getNumOperands()-1) |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 756 | Changed |= OptimizeAwayTrappingUsesOfValue( |
| 757 | GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs)); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 758 | if (GEPI->use_empty()) { |
| 759 | Changed = true; |
Chris Lattner | 8e71c6a | 2004-10-16 18:09:00 +0000 | [diff] [blame] | 760 | GEPI->eraseFromParent(); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 761 | } |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | return Changed; |
| 766 | } |
| 767 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 768 | /// The specified global has only one non-null value stored into it. If there |
| 769 | /// are uses of the loaded value that would trap if the loaded value is |
| 770 | /// dynamically null, then we know that they cannot be reachable with a null |
| 771 | /// optimize away the load. |
Nick Lewycky | cf6aae6 | 2012-02-12 01:13:18 +0000 | [diff] [blame] | 772 | static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV, |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 773 | const DataLayout &DL, |
Nick Lewycky | cf6aae6 | 2012-02-12 01:13:18 +0000 | [diff] [blame] | 774 | TargetLibraryInfo *TLI) { |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 775 | bool Changed = false; |
| 776 | |
Chris Lattner | 2538eb6 | 2009-01-14 00:12:58 +0000 | [diff] [blame] | 777 | // Keep track of whether we are able to remove all the uses of the global |
| 778 | // other than the store that defines it. |
| 779 | bool AllNonStoreUsesGone = true; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 780 | |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 781 | // Replace all uses of loads with uses of uses of the stored value. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 782 | for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){ |
Chris Lattner | 2538eb6 | 2009-01-14 00:12:58 +0000 | [diff] [blame] | 783 | User *GlobalUser = *GUI++; |
| 784 | if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) { |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 785 | Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV); |
Chris Lattner | 2538eb6 | 2009-01-14 00:12:58 +0000 | [diff] [blame] | 786 | // If we were able to delete all uses of the loads |
| 787 | if (LI->use_empty()) { |
| 788 | LI->eraseFromParent(); |
| 789 | Changed = true; |
| 790 | } else { |
| 791 | AllNonStoreUsesGone = false; |
| 792 | } |
| 793 | } else if (isa<StoreInst>(GlobalUser)) { |
| 794 | // Ignore the store that stores "LV" to the global. |
| 795 | assert(GlobalUser->getOperand(1) == GV && |
| 796 | "Must be storing *to* the global"); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 797 | } else { |
Chris Lattner | 2538eb6 | 2009-01-14 00:12:58 +0000 | [diff] [blame] | 798 | AllNonStoreUsesGone = false; |
| 799 | |
| 800 | // If we get here we could have other crazy uses that are transitively |
| 801 | // loaded. |
| 802 | assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) || |
Benjamin Kramer | ed84360 | 2012-09-28 10:01:27 +0000 | [diff] [blame] | 803 | isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) || |
| 804 | isa<BitCastInst>(GlobalUser) || |
| 805 | isa<GetElementPtrInst>(GlobalUser)) && |
Chris Lattner | 1a1acc2 | 2011-05-22 07:15:13 +0000 | [diff] [blame] | 806 | "Only expect load and stores!"); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 807 | } |
Chris Lattner | 2538eb6 | 2009-01-14 00:12:58 +0000 | [diff] [blame] | 808 | } |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 809 | |
| 810 | if (Changed) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 811 | LLVM_DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV |
| 812 | << "\n"); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 813 | ++NumGlobUses; |
| 814 | } |
| 815 | |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 816 | // If we nuked all of the loads, then none of the stores are needed either, |
| 817 | // nor is the global. |
Chris Lattner | 2538eb6 | 2009-01-14 00:12:58 +0000 | [diff] [blame] | 818 | if (AllNonStoreUsesGone) { |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 819 | if (isLeakCheckerRoot(GV)) { |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 820 | Changed |= CleanupPointerRootUsers(GV, TLI); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 821 | } else { |
| 822 | Changed = true; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 823 | CleanupConstantGlobalUsers(GV, nullptr, DL, TLI); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 824 | } |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 825 | if (GV->use_empty()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 826 | LLVM_DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n"); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 827 | Changed = true; |
Chris Lattner | 8e71c6a | 2004-10-16 18:09:00 +0000 | [diff] [blame] | 828 | GV->eraseFromParent(); |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 829 | ++NumDeleted; |
| 830 | } |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 831 | } |
| 832 | return Changed; |
| 833 | } |
| 834 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 835 | /// Walk the use list of V, constant folding all of the instructions that are |
| 836 | /// foldable. |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 837 | static void ConstantPropUsersOf(Value *V, const DataLayout &DL, |
Rafael Espindola | aeff8a9 | 2014-02-24 23:12:18 +0000 | [diff] [blame] | 838 | TargetLibraryInfo *TLI) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 839 | for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; ) |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 840 | if (Instruction *I = dyn_cast<Instruction>(*UI++)) |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 841 | if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) { |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 842 | I->replaceAllUsesWith(NewC); |
| 843 | |
Chris Lattner | d6a4492 | 2005-02-01 01:23:31 +0000 | [diff] [blame] | 844 | // Advance UI to the next non-I use to avoid invalidating it! |
| 845 | // Instructions could multiply use V. |
| 846 | while (UI != E && *UI == I) |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 847 | ++UI; |
David Majnemer | 522a911 | 2016-07-22 04:54:44 +0000 | [diff] [blame] | 848 | if (isInstructionTriviallyDead(I, TLI)) |
| 849 | I->eraseFromParent(); |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 850 | } |
| 851 | } |
| 852 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 853 | /// This function takes the specified global variable, and transforms the |
| 854 | /// program as if it always contained the result of the specified malloc. |
| 855 | /// Because it is always the result of the specified malloc, there is no reason |
| 856 | /// to actually DO the malloc. Instead, turn the malloc into a global, and any |
| 857 | /// loads of GV as uses of the new global. |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 858 | static GlobalVariable * |
| 859 | OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy, |
| 860 | ConstantInt *NElements, const DataLayout &DL, |
| 861 | TargetLibraryInfo *TLI) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 862 | LLVM_DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI |
| 863 | << '\n'); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 864 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 865 | Type *GlobalType; |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 866 | if (NElements->getZExtValue() == 1) |
| 867 | GlobalType = AllocTy; |
| 868 | else |
| 869 | // If we have an array allocation, the global variable is of an array. |
| 870 | GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue()); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 871 | |
| 872 | // Create the new global variable. The contents of the malloc'd memory is |
| 873 | // undefined, so initialize with an undef value. |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 874 | GlobalVariable *NewGV = new GlobalVariable( |
| 875 | *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage, |
| 876 | UndefValue::get(GlobalType), GV->getName() + ".body", nullptr, |
| 877 | GV->getThreadLocalMode()); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 878 | |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 879 | // If there are bitcast users of the malloc (which is typical, usually we have |
| 880 | // a malloc + bitcast) then replace them with uses of the new global. Update |
| 881 | // other users to use the global as well. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 882 | BitCastInst *TheBC = nullptr; |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 883 | while (!CI->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 884 | Instruction *User = cast<Instruction>(CI->user_back()); |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 885 | if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) { |
| 886 | if (BCI->getType() == NewGV->getType()) { |
| 887 | BCI->replaceAllUsesWith(NewGV); |
| 888 | BCI->eraseFromParent(); |
| 889 | } else { |
| 890 | BCI->setOperand(0, NewGV); |
| 891 | } |
| 892 | } else { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 893 | if (!TheBC) |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 894 | TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI); |
| 895 | User->replaceUsesOfWith(CI, TheBC); |
| 896 | } |
| 897 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 898 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 899 | Constant *RepValue = NewGV; |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 900 | if (NewGV->getType() != GV->getValueType()) |
| 901 | RepValue = ConstantExpr::getBitCast(RepValue, GV->getValueType()); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 902 | |
| 903 | // If there is a comparison against null, we will insert a global bool to |
| 904 | // keep track of whether the global was initialized yet or not. |
| 905 | GlobalVariable *InitBool = |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 906 | new GlobalVariable(Type::getInt1Ty(GV->getContext()), false, |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 907 | GlobalValue::InternalLinkage, |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 908 | ConstantInt::getFalse(GV->getContext()), |
Hans Wennborg | cbe34b4 | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 909 | GV->getName()+".init", GV->getThreadLocalMode()); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 910 | bool InitBoolUsed = false; |
| 911 | |
| 912 | // Loop over all uses of GV, processing them in turn. |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 913 | while (!GV->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 914 | if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) { |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 915 | // The global is initialized when the store to it occurs. |
Nick Lewycky | 52da72b | 2012-02-05 19:56:38 +0000 | [diff] [blame] | 916 | new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0, |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 917 | SI->getOrdering(), SI->getSyncScopeID(), SI); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 918 | SI->eraseFromParent(); |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 919 | continue; |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 920 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 921 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 922 | LoadInst *LI = cast<LoadInst>(GV->user_back()); |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 923 | while (!LI->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 924 | Use &LoadUse = *LI->use_begin(); |
| 925 | ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser()); |
| 926 | if (!ICI) { |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 927 | LoadUse = RepValue; |
| 928 | continue; |
| 929 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 930 | |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 931 | // Replace the cmp X, 0 with a use of the bool value. |
Nick Lewycky | 52da72b | 2012-02-05 19:56:38 +0000 | [diff] [blame] | 932 | // Sink the load to where the compare was, if atomic rules allow us to. |
| 933 | Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0, |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 934 | LI->getOrdering(), LI->getSyncScopeID(), |
Nick Lewycky | 52da72b | 2012-02-05 19:56:38 +0000 | [diff] [blame] | 935 | LI->isUnordered() ? (Instruction*)ICI : LI); |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 936 | InitBoolUsed = true; |
| 937 | switch (ICI->getPredicate()) { |
| 938 | default: llvm_unreachable("Unknown ICmp Predicate!"); |
| 939 | case ICmpInst::ICMP_ULT: |
| 940 | case ICmpInst::ICMP_SLT: // X < null -> always false |
| 941 | LV = ConstantInt::getFalse(GV->getContext()); |
| 942 | break; |
| 943 | case ICmpInst::ICMP_ULE: |
| 944 | case ICmpInst::ICMP_SLE: |
| 945 | case ICmpInst::ICMP_EQ: |
| 946 | LV = BinaryOperator::CreateNot(LV, "notinit", ICI); |
| 947 | break; |
| 948 | case ICmpInst::ICMP_NE: |
| 949 | case ICmpInst::ICMP_UGE: |
| 950 | case ICmpInst::ICMP_SGE: |
| 951 | case ICmpInst::ICMP_UGT: |
| 952 | case ICmpInst::ICMP_SGT: |
| 953 | break; // no change. |
| 954 | } |
| 955 | ICI->replaceAllUsesWith(LV); |
| 956 | ICI->eraseFromParent(); |
| 957 | } |
| 958 | LI->eraseFromParent(); |
| 959 | } |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 960 | |
| 961 | // If the initialization boolean was used, insert it, otherwise delete it. |
| 962 | if (!InitBoolUsed) { |
| 963 | while (!InitBool->use_empty()) // Delete initializations |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 964 | cast<StoreInst>(InitBool->user_back())->eraseFromParent(); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 965 | delete InitBool; |
| 966 | } else |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 967 | GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 968 | |
Chris Lattner | 7939f79 | 2010-02-25 22:33:52 +0000 | [diff] [blame] | 969 | // Now the GV is dead, nuke it and the malloc.. |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 970 | GV->eraseFromParent(); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 971 | CI->eraseFromParent(); |
| 972 | |
| 973 | // To further other optimizations, loop over all users of NewGV and try to |
| 974 | // constant prop them. This will promote GEP instructions with constant |
| 975 | // indices into GEP constant-exprs, which will allow global-opt to hack on it. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 976 | ConstantPropUsersOf(NewGV, DL, TLI); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 977 | if (RepValue != NewGV) |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 978 | ConstantPropUsersOf(RepValue, DL, TLI); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 979 | |
| 980 | return NewGV; |
| 981 | } |
| 982 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 983 | /// Scan the use-list of V checking to make sure that there are no complex uses |
| 984 | /// of V. We permit simple things like dereferencing the pointer, but not |
| 985 | /// storing through the address, unless it is to the specified global. |
Gabor Greif | a21bc0f | 2010-04-06 18:58:22 +0000 | [diff] [blame] | 986 | static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V, |
| 987 | const GlobalVariable *GV, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 988 | SmallPtrSetImpl<const PHINode*> &PHIs) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 989 | for (const User *U : V->users()) { |
| 990 | const Instruction *Inst = cast<Instruction>(U); |
Gabor Greif | 08355d6 | 2010-04-06 19:14:05 +0000 | [diff] [blame] | 991 | |
Chris Lattner | f0eb568 | 2008-12-15 21:08:54 +0000 | [diff] [blame] | 992 | if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) { |
| 993 | continue; // Fine, ignore. |
| 994 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 995 | |
Gabor Greif | a21bc0f | 2010-04-06 18:58:22 +0000 | [diff] [blame] | 996 | if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) { |
Chris Lattner | c0677c0 | 2004-12-02 07:11:07 +0000 | [diff] [blame] | 997 | if (SI->getOperand(0) == V && SI->getOperand(1) != GV) |
| 998 | return false; // Storing the pointer itself... bad. |
Chris Lattner | f0eb568 | 2008-12-15 21:08:54 +0000 | [diff] [blame] | 999 | continue; // Otherwise, storing through it, or storing into GV... fine. |
| 1000 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1001 | |
Chris Lattner | b9801ff | 2010-04-10 18:19:22 +0000 | [diff] [blame] | 1002 | // Must index into the array and into the struct. |
| 1003 | if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) { |
Chris Lattner | f0eb568 | 2008-12-15 21:08:54 +0000 | [diff] [blame] | 1004 | if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs)) |
Chris Lattner | c0677c0 | 2004-12-02 07:11:07 +0000 | [diff] [blame] | 1005 | return false; |
Chris Lattner | f0eb568 | 2008-12-15 21:08:54 +0000 | [diff] [blame] | 1006 | continue; |
| 1007 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1008 | |
Gabor Greif | a21bc0f | 2010-04-06 18:58:22 +0000 | [diff] [blame] | 1009 | if (const PHINode *PN = dyn_cast<PHINode>(Inst)) { |
Chris Lattner | 6eed0e7 | 2007-09-13 16:37:20 +0000 | [diff] [blame] | 1010 | // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI |
| 1011 | // cycles. |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 1012 | if (PHIs.insert(PN).second) |
Chris Lattner | 5d13fb53 | 2007-09-14 03:41:21 +0000 | [diff] [blame] | 1013 | if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs)) |
| 1014 | return false; |
Chris Lattner | f0eb568 | 2008-12-15 21:08:54 +0000 | [diff] [blame] | 1015 | continue; |
Chris Lattner | c0677c0 | 2004-12-02 07:11:07 +0000 | [diff] [blame] | 1016 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1017 | |
Gabor Greif | a21bc0f | 2010-04-06 18:58:22 +0000 | [diff] [blame] | 1018 | if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) { |
Chris Lattner | f0eb568 | 2008-12-15 21:08:54 +0000 | [diff] [blame] | 1019 | if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs)) |
| 1020 | return false; |
| 1021 | continue; |
| 1022 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1023 | |
Chris Lattner | f0eb568 | 2008-12-15 21:08:54 +0000 | [diff] [blame] | 1024 | return false; |
| 1025 | } |
Chris Lattner | c0677c0 | 2004-12-02 07:11:07 +0000 | [diff] [blame] | 1026 | return true; |
Chris Lattner | c0677c0 | 2004-12-02 07:11:07 +0000 | [diff] [blame] | 1027 | } |
| 1028 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1029 | /// The Alloc pointer is stored into GV somewhere. Transform all uses of the |
| 1030 | /// allocation into loads from the global and uses of the resultant pointer. |
| 1031 | /// Further, delete the store into GV. This assumes that these value pass the |
Chris Lattner | 24d3d42 | 2006-09-30 23:32:09 +0000 | [diff] [blame] | 1032 | /// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate. |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1033 | static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc, |
Chris Lattner | 24d3d42 | 2006-09-30 23:32:09 +0000 | [diff] [blame] | 1034 | GlobalVariable *GV) { |
| 1035 | while (!Alloc->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1036 | Instruction *U = cast<Instruction>(*Alloc->user_begin()); |
Chris Lattner | ba98f89 | 2007-09-13 18:00:31 +0000 | [diff] [blame] | 1037 | Instruction *InsertPt = U; |
Chris Lattner | 24d3d42 | 2006-09-30 23:32:09 +0000 | [diff] [blame] | 1038 | if (StoreInst *SI = dyn_cast<StoreInst>(U)) { |
| 1039 | // If this is the store of the allocation into the global, remove it. |
| 1040 | if (SI->getOperand(1) == GV) { |
| 1041 | SI->eraseFromParent(); |
| 1042 | continue; |
| 1043 | } |
Chris Lattner | ba98f89 | 2007-09-13 18:00:31 +0000 | [diff] [blame] | 1044 | } else if (PHINode *PN = dyn_cast<PHINode>(U)) { |
| 1045 | // Insert the load in the corresponding predecessor, not right before the |
| 1046 | // PHI. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1047 | InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator(); |
Chris Lattner | 49e3bdc | 2008-12-15 21:44:34 +0000 | [diff] [blame] | 1048 | } else if (isa<BitCastInst>(U)) { |
| 1049 | // Must be bitcast between the malloc and store to initialize the global. |
| 1050 | ReplaceUsesOfMallocWithGlobal(U, GV); |
| 1051 | U->eraseFromParent(); |
| 1052 | continue; |
| 1053 | } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) { |
| 1054 | // If this is a "GEP bitcast" and the user is a store to the global, then |
| 1055 | // just process it as a bitcast. |
| 1056 | if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse()) |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1057 | if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back())) |
Chris Lattner | 49e3bdc | 2008-12-15 21:44:34 +0000 | [diff] [blame] | 1058 | if (SI->getOperand(1) == GV) { |
| 1059 | // Must be bitcast GEP between the malloc and store to initialize |
| 1060 | // the global. |
| 1061 | ReplaceUsesOfMallocWithGlobal(GEPI, GV); |
| 1062 | GEPI->eraseFromParent(); |
| 1063 | continue; |
| 1064 | } |
Chris Lattner | 24d3d42 | 2006-09-30 23:32:09 +0000 | [diff] [blame] | 1065 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1066 | |
Chris Lattner | 24d3d42 | 2006-09-30 23:32:09 +0000 | [diff] [blame] | 1067 | // Insert a load from the global, and use it instead of the malloc. |
Chris Lattner | ba98f89 | 2007-09-13 18:00:31 +0000 | [diff] [blame] | 1068 | Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt); |
Chris Lattner | 24d3d42 | 2006-09-30 23:32:09 +0000 | [diff] [blame] | 1069 | U->replaceUsesOfWith(Alloc, NL); |
| 1070 | } |
| 1071 | } |
| 1072 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1073 | /// Verify that all uses of V (a load, or a phi of a load) are simple enough to |
| 1074 | /// perform heap SRA on. This permits GEP's that index through the array and |
| 1075 | /// struct field, icmps of null, and PHIs. |
Gabor Greif | 5d5db53 | 2010-04-01 08:21:08 +0000 | [diff] [blame] | 1076 | static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 1077 | SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs, |
| 1078 | SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) { |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1079 | // We permit two users of the load: setcc comparing against the null |
| 1080 | // pointer, and a getelementptr of a specific form. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1081 | for (const User *U : V->users()) { |
| 1082 | const Instruction *UI = cast<Instruction>(U); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1083 | |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1084 | // Comparison against null is ok. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1085 | if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) { |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1086 | if (!isa<ConstantPointerNull>(ICI->getOperand(1))) |
| 1087 | return false; |
| 1088 | continue; |
| 1089 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1090 | |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1091 | // getelementptr is also ok, but only a simple form. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1092 | if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) { |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1093 | // Must index into the array and into the struct. |
| 1094 | if (GEPI->getNumOperands() < 3) |
| 1095 | return false; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1096 | |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1097 | // Otherwise the GEP is ok. |
| 1098 | continue; |
| 1099 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1100 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1101 | if (const PHINode *PN = dyn_cast<PHINode>(UI)) { |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 1102 | if (!LoadUsingPHIsPerLoad.insert(PN).second) |
Evan Cheng | 8368944 | 2009-06-02 00:56:07 +0000 | [diff] [blame] | 1103 | // This means some phi nodes are dependent on each other. |
| 1104 | // Avoid infinite looping! |
| 1105 | return false; |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 1106 | if (!LoadUsingPHIs.insert(PN).second) |
Evan Cheng | 8368944 | 2009-06-02 00:56:07 +0000 | [diff] [blame] | 1107 | // If we have already analyzed this PHI, then it is safe. |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1108 | continue; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1109 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1110 | // Make sure all uses of the PHI are simple enough to transform. |
Evan Cheng | 8368944 | 2009-06-02 00:56:07 +0000 | [diff] [blame] | 1111 | if (!LoadUsesSimpleEnoughForHeapSRA(PN, |
| 1112 | LoadUsingPHIs, LoadUsingPHIsPerLoad)) |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1113 | return false; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1114 | |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1115 | continue; |
Chris Lattner | 24d3d42 | 2006-09-30 23:32:09 +0000 | [diff] [blame] | 1116 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1117 | |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1118 | // Otherwise we don't know what this is, not ok. |
| 1119 | return false; |
| 1120 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1121 | |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1122 | return true; |
| 1123 | } |
| 1124 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1125 | /// If all users of values loaded from GV are simple enough to perform HeapSRA, |
| 1126 | /// return true. |
Gabor Greif | 5d5db53 | 2010-04-01 08:21:08 +0000 | [diff] [blame] | 1127 | static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV, |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1128 | Instruction *StoredVal) { |
Gabor Greif | 5d5db53 | 2010-04-01 08:21:08 +0000 | [diff] [blame] | 1129 | SmallPtrSet<const PHINode*, 32> LoadUsingPHIs; |
| 1130 | SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1131 | for (const User *U : GV->users()) |
| 1132 | if (const LoadInst *LI = dyn_cast<LoadInst>(U)) { |
Evan Cheng | 8368944 | 2009-06-02 00:56:07 +0000 | [diff] [blame] | 1133 | if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs, |
| 1134 | LoadUsingPHIsPerLoad)) |
Chris Lattner | 56b5538 | 2008-12-16 21:24:51 +0000 | [diff] [blame] | 1135 | return false; |
Evan Cheng | 8368944 | 2009-06-02 00:56:07 +0000 | [diff] [blame] | 1136 | LoadUsingPHIsPerLoad.clear(); |
| 1137 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1138 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1139 | // If we reach here, we know that all uses of the loads and transitive uses |
| 1140 | // (through PHI nodes) are simple enough to transform. However, we don't know |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1141 | // that all inputs the to the PHI nodes are in the same equivalence sets. |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1142 | // Check to verify that all operands of the PHIs are either PHIS that can be |
| 1143 | // transformed, loads from GV, or MI itself. |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 1144 | for (const PHINode *PN : LoadUsingPHIs) { |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1145 | for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) { |
| 1146 | Value *InVal = PN->getIncomingValue(op); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1147 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1148 | // PHI of the stored value itself is ok. |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1149 | if (InVal == StoredVal) continue; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1150 | |
Gabor Greif | 5d5db53 | 2010-04-01 08:21:08 +0000 | [diff] [blame] | 1151 | if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) { |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1152 | // One of the PHIs in our set is (optimistically) ok. |
| 1153 | if (LoadUsingPHIs.count(InPN)) |
| 1154 | continue; |
| 1155 | return false; |
| 1156 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1157 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1158 | // Load from GV is ok. |
Gabor Greif | 5d5db53 | 2010-04-01 08:21:08 +0000 | [diff] [blame] | 1159 | if (const LoadInst *LI = dyn_cast<LoadInst>(InVal)) |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1160 | if (LI->getOperand(0) == GV) |
| 1161 | continue; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1162 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1163 | // UNDEF? NULL? |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1164 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1165 | // Anything else is rejected. |
| 1166 | return false; |
| 1167 | } |
| 1168 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1169 | |
Chris Lattner | 24d3d42 | 2006-09-30 23:32:09 +0000 | [diff] [blame] | 1170 | return true; |
| 1171 | } |
| 1172 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1173 | static Value *GetHeapSROAValue(Value *V, unsigned FieldNo, |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1174 | DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues, |
| 1175 | std::vector<std::pair<PHINode *, unsigned>> &PHIsToRewrite) { |
| 1176 | std::vector<Value *> &FieldVals = InsertedScalarizedValues[V]; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1177 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1178 | if (FieldNo >= FieldVals.size()) |
| 1179 | FieldVals.resize(FieldNo+1); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1180 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1181 | // If we already have this value, just reuse the previously scalarized |
| 1182 | // version. |
| 1183 | if (Value *FieldVal = FieldVals[FieldNo]) |
| 1184 | return FieldVal; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1185 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1186 | // Depending on what instruction this is, we have several cases. |
| 1187 | Value *Result; |
| 1188 | if (LoadInst *LI = dyn_cast<LoadInst>(V)) { |
| 1189 | // This is a scalarized version of the load from the global. Just create |
| 1190 | // a new Load of the scalarized global. |
| 1191 | Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo, |
| 1192 | InsertedScalarizedValues, |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1193 | PHIsToRewrite), |
Daniel Dunbar | 132f783 | 2009-07-30 17:37:43 +0000 | [diff] [blame] | 1194 | LI->getName()+".f"+Twine(FieldNo), LI); |
David Blaikie | 741c8f8 | 2015-03-14 01:53:18 +0000 | [diff] [blame] | 1195 | } else { |
| 1196 | PHINode *PN = cast<PHINode>(V); |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1197 | // PN's type is pointer to struct. Make a new PHI of pointer to struct |
| 1198 | // field. |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1199 | |
Matt Arsenault | fcd7401 | 2014-04-23 20:36:10 +0000 | [diff] [blame] | 1200 | PointerType *PTy = cast<PointerType>(PN->getType()); |
| 1201 | StructType *ST = cast<StructType>(PTy->getElementType()); |
| 1202 | |
| 1203 | unsigned AS = PTy->getAddressSpace(); |
Jay Foad | e0938d8 | 2011-03-30 11:19:20 +0000 | [diff] [blame] | 1204 | PHINode *NewPN = |
Matt Arsenault | fcd7401 | 2014-04-23 20:36:10 +0000 | [diff] [blame] | 1205 | PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS), |
Jay Foad | 5213134 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 1206 | PN->getNumIncomingValues(), |
Daniel Dunbar | 132f783 | 2009-07-30 17:37:43 +0000 | [diff] [blame] | 1207 | PN->getName()+".f"+Twine(FieldNo), PN); |
Jay Foad | e0938d8 | 2011-03-30 11:19:20 +0000 | [diff] [blame] | 1208 | Result = NewPN; |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1209 | PHIsToRewrite.push_back(std::make_pair(PN, FieldNo)); |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1210 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1211 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1212 | return FieldVals[FieldNo] = Result; |
Chris Lattner | ba98f89 | 2007-09-13 18:00:31 +0000 | [diff] [blame] | 1213 | } |
| 1214 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1215 | /// Given a load instruction and a value derived from the load, rewrite the |
| 1216 | /// derived value to use the HeapSRoA'd load. |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1217 | static void RewriteHeapSROALoadUser(Instruction *LoadUser, |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1218 | DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues, |
| 1219 | std::vector<std::pair<PHINode *, unsigned>> &PHIsToRewrite) { |
Chris Lattner | f315d4f | 2007-09-13 17:29:05 +0000 | [diff] [blame] | 1220 | // If this is a comparison against null, handle it. |
| 1221 | if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) { |
| 1222 | assert(isa<ConstantPointerNull>(SCI->getOperand(1))); |
| 1223 | // If we have a setcc of the loaded pointer, we can use a setcc of any |
| 1224 | // field. |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1225 | Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0, |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1226 | InsertedScalarizedValues, PHIsToRewrite); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1227 | |
Owen Anderson | 1e5f00e | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 1228 | Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr, |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1229 | Constant::getNullValue(NPtr->getType()), |
Owen Anderson | 1e5f00e | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 1230 | SCI->getName()); |
Chris Lattner | f315d4f | 2007-09-13 17:29:05 +0000 | [diff] [blame] | 1231 | SCI->replaceAllUsesWith(New); |
| 1232 | SCI->eraseFromParent(); |
| 1233 | return; |
| 1234 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1235 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1236 | // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...' |
Chris Lattner | ba98f89 | 2007-09-13 18:00:31 +0000 | [diff] [blame] | 1237 | if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) { |
| 1238 | assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2)) |
| 1239 | && "Unexpected GEPI!"); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1240 | |
Chris Lattner | ba98f89 | 2007-09-13 18:00:31 +0000 | [diff] [blame] | 1241 | // Load the pointer for this field. |
| 1242 | unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue(); |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1243 | Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo, |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1244 | InsertedScalarizedValues, PHIsToRewrite); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1245 | |
Chris Lattner | ba98f89 | 2007-09-13 18:00:31 +0000 | [diff] [blame] | 1246 | // Create the new GEP idx vector. |
| 1247 | SmallVector<Value*, 8> GEPIdx; |
| 1248 | GEPIdx.push_back(GEPI->getOperand(1)); |
| 1249 | GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end()); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1250 | |
David Blaikie | 22319eb | 2015-03-14 19:24:04 +0000 | [diff] [blame] | 1251 | Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx, |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1252 | GEPI->getName(), GEPI); |
Chris Lattner | ba98f89 | 2007-09-13 18:00:31 +0000 | [diff] [blame] | 1253 | GEPI->replaceAllUsesWith(NGEPI); |
| 1254 | GEPI->eraseFromParent(); |
| 1255 | return; |
| 1256 | } |
Chris Lattner | 011f91b | 2007-09-13 21:31:36 +0000 | [diff] [blame] | 1257 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1258 | // Recursively transform the users of PHI nodes. This will lazily create the |
| 1259 | // PHIs that are needed for individual elements. Keep track of what PHIs we |
| 1260 | // see in InsertedScalarizedValues so that we don't get infinite loops (very |
| 1261 | // antisocial). If the PHI is already in InsertedScalarizedValues, it has |
| 1262 | // already been seen first by another load, so its uses have already been |
| 1263 | // processed. |
| 1264 | PHINode *PN = cast<PHINode>(LoadUser); |
Chris Lattner | 5cf753c | 2011-07-21 06:21:31 +0000 | [diff] [blame] | 1265 | if (!InsertedScalarizedValues.insert(std::make_pair(PN, |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1266 | std::vector<Value *>())).second) |
Chris Lattner | 5cf753c | 2011-07-21 06:21:31 +0000 | [diff] [blame] | 1267 | return; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1268 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1269 | // If this is the first time we've seen this PHI, recursively process all |
| 1270 | // users. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1271 | for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) { |
Chris Lattner | 0cdf523 | 2008-12-17 05:42:08 +0000 | [diff] [blame] | 1272 | Instruction *User = cast<Instruction>(*UI++); |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1273 | RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite); |
Chris Lattner | 0cdf523 | 2008-12-17 05:42:08 +0000 | [diff] [blame] | 1274 | } |
Chris Lattner | f315d4f | 2007-09-13 17:29:05 +0000 | [diff] [blame] | 1275 | } |
| 1276 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1277 | /// We are performing Heap SRoA on a global. Ptr is a value loaded from the |
| 1278 | /// global. Eliminate all uses of Ptr, making them use FieldGlobals instead. |
| 1279 | /// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA. |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1280 | static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load, |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1281 | DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues, |
| 1282 | std::vector<std::pair<PHINode *, unsigned> > &PHIsToRewrite) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1283 | for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) { |
Chris Lattner | 0cdf523 | 2008-12-17 05:42:08 +0000 | [diff] [blame] | 1284 | Instruction *User = cast<Instruction>(*UI++); |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1285 | RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite); |
Chris Lattner | 0cdf523 | 2008-12-17 05:42:08 +0000 | [diff] [blame] | 1286 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1287 | |
Chris Lattner | 222ef4c | 2008-12-17 05:28:49 +0000 | [diff] [blame] | 1288 | if (Load->use_empty()) { |
| 1289 | Load->eraseFromParent(); |
| 1290 | InsertedScalarizedValues.erase(Load); |
| 1291 | } |
Chris Lattner | 24d3d42 | 2006-09-30 23:32:09 +0000 | [diff] [blame] | 1292 | } |
| 1293 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1294 | /// CI is an allocation of an array of structures. Break it up into multiple |
| 1295 | /// allocations of arrays of the fields. |
Victor Hernandez | f3db915 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1296 | static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI, |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1297 | Value *NElems, const DataLayout &DL, |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 1298 | const TargetLibraryInfo *TLI) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1299 | LLVM_DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI |
| 1300 | << '\n'); |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 1301 | Type *MAT = getMallocAllocatedType(CI, TLI); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1302 | StructType *STy = cast<StructType>(MAT); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1303 | |
| 1304 | // There is guaranteed to be at least one use of the malloc (storing |
| 1305 | // it into GV). If there are other uses, change them to be uses of |
| 1306 | // the global to simplify later code. This also deletes the store |
| 1307 | // into GV. |
Victor Hernandez | f3db915 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1308 | ReplaceUsesOfMallocWithGlobal(CI, GV); |
| 1309 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1310 | // Okay, at this point, there are no users of the malloc. Insert N |
| 1311 | // new mallocs at the same place as CI, and N globals. |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1312 | std::vector<Value *> FieldGlobals; |
| 1313 | std::vector<Value *> FieldMallocs; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1314 | |
David Majnemer | fadc6db | 2016-04-29 08:07:22 +0000 | [diff] [blame] | 1315 | SmallVector<OperandBundleDef, 1> OpBundles; |
| 1316 | CI->getOperandBundlesAsDefs(OpBundles); |
| 1317 | |
Matt Arsenault | fcd7401 | 2014-04-23 20:36:10 +0000 | [diff] [blame] | 1318 | unsigned AS = GV->getType()->getPointerAddressSpace(); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1319 | for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){ |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1320 | Type *FieldTy = STy->getElementType(FieldNo); |
Matt Arsenault | fcd7401 | 2014-04-23 20:36:10 +0000 | [diff] [blame] | 1321 | PointerType *PFieldTy = PointerType::get(FieldTy, AS); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1322 | |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 1323 | GlobalVariable *NGV = new GlobalVariable( |
| 1324 | *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage, |
| 1325 | Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo), |
| 1326 | nullptr, GV->getThreadLocalMode()); |
Sergei Larin | 94be2de | 2016-01-22 21:18:20 +0000 | [diff] [blame] | 1327 | NGV->copyAttributesFrom(GV); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1328 | FieldGlobals.push_back(NGV); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1329 | |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1330 | unsigned TypeSize = DL.getTypeAllocSize(FieldTy); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1331 | if (StructType *ST = dyn_cast<StructType>(FieldTy)) |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1332 | TypeSize = DL.getStructLayout(ST)->getSizeInBytes(); |
| 1333 | Type *IntPtrTy = DL.getIntPtrType(CI->getType()); |
Victor Hernandez | f3db915 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1334 | Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy, |
| 1335 | ConstantInt::get(IntPtrTy, TypeSize), |
David Majnemer | fadc6db | 2016-04-29 08:07:22 +0000 | [diff] [blame] | 1336 | NElems, OpBundles, nullptr, |
Victor Hernandez | f3db915 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1337 | CI->getName() + ".f" + Twine(FieldNo)); |
Chris Lattner | 0521c09 | 2010-02-26 18:23:13 +0000 | [diff] [blame] | 1338 | FieldMallocs.push_back(NMI); |
Victor Hernandez | f3db915 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1339 | new StoreInst(NMI, NGV, CI); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1340 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1341 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1342 | // The tricky aspect of this transformation is handling the case when malloc |
| 1343 | // fails. In the original code, malloc failing would set the result pointer |
| 1344 | // of malloc to null. In this case, some mallocs could succeed and others |
| 1345 | // could fail. As such, we emit code that looks like this: |
| 1346 | // F0 = malloc(field0) |
| 1347 | // F1 = malloc(field1) |
| 1348 | // F2 = malloc(field2) |
| 1349 | // if (F0 == 0 || F1 == 0 || F2 == 0) { |
| 1350 | // if (F0) { free(F0); F0 = 0; } |
| 1351 | // if (F1) { free(F1); F1 = 0; } |
| 1352 | // if (F2) { free(F2); F2 = 0; } |
| 1353 | // } |
Victor Hernandez | fcc77b1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 1354 | // The malloc can also fail if its argument is too large. |
Gabor Greif | 218f554 | 2010-06-24 14:42:01 +0000 | [diff] [blame] | 1355 | Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0); |
| 1356 | Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0), |
Victor Hernandez | fcc77b1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 1357 | ConstantZero, "isneg"); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1358 | for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) { |
Victor Hernandez | f3db915 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1359 | Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i], |
| 1360 | Constant::getNullValue(FieldMallocs[i]->getType()), |
| 1361 | "isnull"); |
Victor Hernandez | fcc77b1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 1362 | RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1363 | } |
| 1364 | |
| 1365 | // Split the basic block at the old malloc. |
Victor Hernandez | f3db915 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1366 | BasicBlock *OrigBB = CI->getParent(); |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 1367 | BasicBlock *ContBB = |
| 1368 | OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont"); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1369 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1370 | // Create the block to check the first condition. Put all these blocks at the |
| 1371 | // end of the function as they are unlikely to be executed. |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1372 | BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(), |
| 1373 | "malloc_ret_null", |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1374 | OrigBB->getParent()); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1375 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1376 | // Remove the uncond branch from OrigBB to ContBB, turning it into a cond |
| 1377 | // branch on RunningOr. |
| 1378 | OrigBB->getTerminator()->eraseFromParent(); |
| 1379 | BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1380 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1381 | // Within the NullPtrBlock, we need to emit a comparison and branch for each |
| 1382 | // pointer, because some may be null while others are not. |
| 1383 | for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) { |
| 1384 | Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1385 | Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal, |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 1386 | Constant::getNullValue(GVVal->getType())); |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1387 | BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it", |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1388 | OrigBB->getParent()); |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1389 | BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next", |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1390 | OrigBB->getParent()); |
Victor Hernandez | e297149 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 1391 | Instruction *BI = BranchInst::Create(FreeBlock, NextBlock, |
| 1392 | Cmp, NullPtrBlock); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1393 | |
| 1394 | // Fill in FreeBlock. |
David Majnemer | fadc6db | 2016-04-29 08:07:22 +0000 | [diff] [blame] | 1395 | CallInst::CreateFree(GVVal, OpBundles, BI); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1396 | new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i], |
| 1397 | FreeBlock); |
| 1398 | BranchInst::Create(NextBlock, FreeBlock); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1399 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1400 | NullPtrBlock = NextBlock; |
| 1401 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1402 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1403 | BranchInst::Create(ContBB, NullPtrBlock); |
Victor Hernandez | f3db915 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1404 | |
| 1405 | // CI is no longer needed, remove it. |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1406 | CI->eraseFromParent(); |
| 1407 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1408 | /// As we process loads, if we can't immediately update all uses of the load, |
| 1409 | /// keep track of what scalarized loads are inserted for a given load. |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1410 | DenseMap<Value *, std::vector<Value *>> InsertedScalarizedValues; |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1411 | InsertedScalarizedValues[GV] = FieldGlobals; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1412 | |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1413 | std::vector<std::pair<PHINode *, unsigned>> PHIsToRewrite; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1414 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1415 | // Okay, the malloc site is completely handled. All of the uses of GV are now |
| 1416 | // loads, and all uses of those loads are simple. Rewrite them to use loads |
| 1417 | // of the per-field globals instead. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1418 | for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) { |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1419 | Instruction *User = cast<Instruction>(*UI++); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1420 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1421 | if (LoadInst *LI = dyn_cast<LoadInst>(User)) { |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1422 | RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1423 | continue; |
| 1424 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1425 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1426 | // Must be a store of null. |
| 1427 | StoreInst *SI = cast<StoreInst>(User); |
| 1428 | assert(isa<ConstantPointerNull>(SI->getOperand(0)) && |
| 1429 | "Unexpected heap-sra user!"); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1430 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1431 | // Insert a store of null into each global. |
| 1432 | for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) { |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1433 | Type *ValTy = cast<GlobalValue>(FieldGlobals[i])->getValueType(); |
| 1434 | Constant *Null = Constant::getNullValue(ValTy); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1435 | new StoreInst(Null, FieldGlobals[i], SI); |
| 1436 | } |
| 1437 | // Erase the original store. |
| 1438 | SI->eraseFromParent(); |
| 1439 | } |
| 1440 | |
| 1441 | // While we have PHIs that are interesting to rewrite, do it. |
| 1442 | while (!PHIsToRewrite.empty()) { |
| 1443 | PHINode *PN = PHIsToRewrite.back().first; |
| 1444 | unsigned FieldNo = PHIsToRewrite.back().second; |
| 1445 | PHIsToRewrite.pop_back(); |
| 1446 | PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]); |
| 1447 | assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi"); |
| 1448 | |
| 1449 | // Add all the incoming values. This can materialize more phis. |
| 1450 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { |
| 1451 | Value *InVal = PN->getIncomingValue(i); |
| 1452 | InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues, |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1453 | PHIsToRewrite); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1454 | FieldPN->addIncoming(InVal, PN->getIncomingBlock(i)); |
| 1455 | } |
| 1456 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1457 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1458 | // Drop all inter-phi links and any loads that made it this far. |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1459 | for (DenseMap<Value *, std::vector<Value *>>::iterator |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1460 | I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end(); |
| 1461 | I != E; ++I) { |
| 1462 | if (PHINode *PN = dyn_cast<PHINode>(I->first)) |
| 1463 | PN->dropAllReferences(); |
| 1464 | else if (LoadInst *LI = dyn_cast<LoadInst>(I->first)) |
| 1465 | LI->dropAllReferences(); |
| 1466 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1467 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1468 | // Delete all the phis and loads now that inter-references are dead. |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1469 | for (DenseMap<Value *, std::vector<Value *>>::iterator |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1470 | I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end(); |
| 1471 | I != E; ++I) { |
| 1472 | if (PHINode *PN = dyn_cast<PHINode>(I->first)) |
| 1473 | PN->eraseFromParent(); |
| 1474 | else if (LoadInst *LI = dyn_cast<LoadInst>(I->first)) |
| 1475 | LI->eraseFromParent(); |
| 1476 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1477 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1478 | // The old global is now dead, remove it. |
| 1479 | GV->eraseFromParent(); |
| 1480 | |
| 1481 | ++NumHeapSRA; |
| 1482 | return cast<GlobalVariable>(FieldGlobals[0]); |
| 1483 | } |
| 1484 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1485 | /// This function is called when we see a pointer global variable with a single |
| 1486 | /// value stored it that is a malloc or cast of malloc. |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 1487 | static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1488 | Type *AllocTy, |
Nick Lewycky | 52da72b | 2012-02-05 19:56:38 +0000 | [diff] [blame] | 1489 | AtomicOrdering Ordering, |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1490 | const DataLayout &DL, |
Nick Lewycky | cf6aae6 | 2012-02-12 01:13:18 +0000 | [diff] [blame] | 1491 | TargetLibraryInfo *TLI) { |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1492 | // If this is a malloc of an abstract type, don't touch it. |
| 1493 | if (!AllocTy->isSized()) |
| 1494 | return false; |
| 1495 | |
| 1496 | // We can't optimize this global unless all uses of it are *known* to be |
| 1497 | // of the malloc value, not of the null initializer value (consider a use |
| 1498 | // that compares the global's value against zero to see if the malloc has |
| 1499 | // been reached). To do this, we check to see if all uses of the global |
| 1500 | // would trap if the global were null: this proves that they must all |
| 1501 | // happen after the malloc. |
| 1502 | if (!AllUsesOfLoadedValueWillTrapIfNull(GV)) |
| 1503 | return false; |
| 1504 | |
| 1505 | // We can't optimize this if the malloc itself is used in a complex way, |
| 1506 | // for example, being stored into multiple globals. This allows the |
Nick Lewycky | bbd1156 | 2012-02-05 19:48:37 +0000 | [diff] [blame] | 1507 | // malloc to be stored into the specified global, loaded icmp'd, and |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1508 | // GEP'd. These are all things we could transform to using the global |
| 1509 | // for. |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1510 | SmallPtrSet<const PHINode*, 8> PHIs; |
| 1511 | if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs)) |
| 1512 | return false; |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1513 | |
| 1514 | // If we have a global that is only initialized with a fixed size malloc, |
| 1515 | // transform the program to use global memory instead of malloc'd memory. |
| 1516 | // This eliminates dynamic allocation, avoids an indirection accessing the |
| 1517 | // data, and exposes the resultant global to further GlobalOpt. |
Victor Hernandez | 264da32 | 2009-10-16 23:12:25 +0000 | [diff] [blame] | 1518 | // We cannot optimize the malloc if we cannot determine malloc array size. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1519 | Value *NElems = getMallocArraySize(CI, DL, TLI, true); |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1520 | if (!NElems) |
| 1521 | return false; |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1522 | |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1523 | if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems)) |
| 1524 | // Restrict this transformation to only working on small allocations |
| 1525 | // (2048 bytes currently), as we don't want to introduce a 16M global or |
| 1526 | // something. |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1527 | if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) { |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 1528 | OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI); |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1529 | return true; |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1530 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1531 | |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1532 | // If the allocation is an array of structures, consider transforming this |
| 1533 | // into multiple malloc'd arrays, one for each field. This is basically |
| 1534 | // SRoA for malloc'd memory. |
| 1535 | |
JF Bastien | 800f87a | 2016-04-06 21:19:33 +0000 | [diff] [blame] | 1536 | if (Ordering != AtomicOrdering::NotAtomic) |
Nick Lewycky | 52da72b | 2012-02-05 19:56:38 +0000 | [diff] [blame] | 1537 | return false; |
| 1538 | |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1539 | // If this is an allocation of a fixed size array of structs, analyze as a |
| 1540 | // variable size array. malloc [100 x struct],1 -> malloc struct, 100 |
Gabor Greif | 218f554 | 2010-06-24 14:42:01 +0000 | [diff] [blame] | 1541 | if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1)) |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1542 | if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy)) |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1543 | AllocTy = AT->getElementType(); |
Gabor Greif | 218f554 | 2010-06-24 14:42:01 +0000 | [diff] [blame] | 1544 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1545 | StructType *AllocSTy = dyn_cast<StructType>(AllocTy); |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1546 | if (!AllocSTy) |
| 1547 | return false; |
| 1548 | |
| 1549 | // This the structure has an unreasonable number of fields, leave it |
| 1550 | // alone. |
| 1551 | if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 && |
| 1552 | AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) { |
| 1553 | |
| 1554 | // If this is a fixed size array, transform the Malloc to be an alloc of |
| 1555 | // structs. malloc [100 x struct],1 -> malloc struct, 100 |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 1556 | if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) { |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1557 | Type *IntPtrTy = DL.getIntPtrType(CI->getType()); |
| 1558 | unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes(); |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1559 | Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize); |
| 1560 | Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements()); |
David Majnemer | fadc6db | 2016-04-29 08:07:22 +0000 | [diff] [blame] | 1561 | SmallVector<OperandBundleDef, 1> OpBundles; |
| 1562 | CI->getOperandBundlesAsDefs(OpBundles); |
| 1563 | Instruction *Malloc = |
| 1564 | CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, AllocSize, NumElements, |
| 1565 | OpBundles, nullptr, CI->getName()); |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1566 | Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI); |
| 1567 | CI->replaceAllUsesWith(Cast); |
| 1568 | CI->eraseFromParent(); |
Nuno Lopes | 9792d68 | 2012-06-22 00:25:01 +0000 | [diff] [blame] | 1569 | if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc)) |
| 1570 | CI = cast<CallInst>(BCI->getOperand(0)); |
| 1571 | else |
Nuno Lopes | 0b60ebb | 2012-06-22 00:29:58 +0000 | [diff] [blame] | 1572 | CI = cast<CallInst>(Malloc); |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1573 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1574 | |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 1575 | PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL, |
| 1576 | TLI); |
Evan Cheng | 21b588b | 2010-04-14 20:52:55 +0000 | [diff] [blame] | 1577 | return true; |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1578 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1579 | |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1580 | return false; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1581 | } |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 1582 | |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 1583 | // Try to optimize globals based on the knowledge that only one value (besides |
| 1584 | // its initializer) is ever stored to the global. |
| 1585 | static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal, |
Nick Lewycky | 52da72b | 2012-02-05 19:56:38 +0000 | [diff] [blame] | 1586 | AtomicOrdering Ordering, |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1587 | const DataLayout &DL, |
Rafael Espindola | aeff8a9 | 2014-02-24 23:12:18 +0000 | [diff] [blame] | 1588 | TargetLibraryInfo *TLI) { |
Chris Lattner | 1c731fa | 2008-12-15 21:20:32 +0000 | [diff] [blame] | 1589 | // Ignore no-op GEPs and bitcasts. |
| 1590 | StoredOnceVal = StoredOnceVal->stripPointerCasts(); |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 1591 | |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 1592 | // If we are dealing with a pointer global that is initialized to null and |
| 1593 | // only has one (non-null) value stored into it, then we can optimize any |
| 1594 | // users of the loaded value (often calls and loads) that would trap if the |
| 1595 | // value was null. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1596 | if (GV->getInitializer()->getType()->isPointerTy() && |
Manoj Gupta | 77eeac3 | 2018-07-09 22:27:23 +0000 | [diff] [blame^] | 1597 | GV->getInitializer()->isNullValue() && |
| 1598 | !NullPointerIsDefined( |
| 1599 | nullptr /* F */, |
| 1600 | GV->getInitializer()->getType()->getPointerAddressSpace())) { |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 1601 | if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) { |
| 1602 | if (GV->getInitializer()->getType() != SOVC->getType()) |
Chris Lattner | 1a1acc2 | 2011-05-22 07:15:13 +0000 | [diff] [blame] | 1603 | SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType()); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1604 | |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 1605 | // Optimize away any trapping uses of the loaded value. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1606 | if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI)) |
Chris Lattner | 604ed7a | 2004-10-10 17:07:12 +0000 | [diff] [blame] | 1607 | return true; |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 1608 | } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) { |
| 1609 | Type *MallocType = getMallocAllocatedType(CI, TLI); |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 1610 | if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType, |
| 1611 | Ordering, DL, TLI)) |
Victor Hernandez | f3db915 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 1612 | return true; |
Chris Lattner | e42eb31 | 2004-10-10 23:14:11 +0000 | [diff] [blame] | 1613 | } |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 1614 | } |
Chris Lattner | 004e250 | 2004-10-11 05:54:41 +0000 | [diff] [blame] | 1615 | |
Chris Lattner | 09a5272 | 2004-10-09 21:48:45 +0000 | [diff] [blame] | 1616 | return false; |
| 1617 | } |
Chris Lattner | 1c4bddc | 2004-10-08 20:59:28 +0000 | [diff] [blame] | 1618 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1619 | /// At this point, we have learned that the only two values ever stored into GV |
| 1620 | /// are its initializer and OtherVal. See if we can shrink the global into a |
| 1621 | /// boolean and select between the two values whenever it is used. This exposes |
| 1622 | /// the values to other scalar optimizations. |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1623 | static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) { |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1624 | Type *GVElType = GV->getValueType(); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 1625 | |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1626 | // If GVElType is already i1, it is already shrunk. If the type of the GV is |
| 1627 | // an FP value, pointer or vector, don't do this optimization because a select |
| 1628 | // between them is very expensive and unlikely to lead to later |
| 1629 | // simplification. In these cases, we typically end up with "cond ? v1 : v2" |
| 1630 | // where v1 and v2 both require constant pool loads, a big loss. |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1631 | if (GVElType == Type::getInt1Ty(GV->getContext()) || |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1632 | GVElType->isFloatingPointTy() || |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1633 | GVElType->isPointerTy() || GVElType->isVectorTy()) |
Chris Lattner | 20bbac3 | 2008-01-14 01:17:44 +0000 | [diff] [blame] | 1634 | return false; |
Gabor Greif | a75ed76 | 2010-07-12 14:13:15 +0000 | [diff] [blame] | 1635 | |
Chris Lattner | 20bbac3 | 2008-01-14 01:17:44 +0000 | [diff] [blame] | 1636 | // Walk the use list of the global seeing if all the uses are load or store. |
| 1637 | // If there is anything else, bail out. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1638 | for (User *U : GV->users()) |
Gabor Greif | a75ed76 | 2010-07-12 14:13:15 +0000 | [diff] [blame] | 1639 | if (!isa<LoadInst>(U) && !isa<StoreInst>(U)) |
Chris Lattner | 20bbac3 | 2008-01-14 01:17:44 +0000 | [diff] [blame] | 1640 | return false; |
Gabor Greif | a75ed76 | 2010-07-12 14:13:15 +0000 | [diff] [blame] | 1641 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1642 | LLVM_DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n"); |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1643 | |
| 1644 | // Create the new global, initializing it to false. |
| 1645 | GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()), |
| 1646 | false, |
| 1647 | GlobalValue::InternalLinkage, |
| 1648 | ConstantInt::getFalse(GV->getContext()), |
| 1649 | GV->getName()+".b", |
| 1650 | GV->getThreadLocalMode(), |
| 1651 | GV->getType()->getAddressSpace()); |
Sergei Larin | 94be2de | 2016-01-22 21:18:20 +0000 | [diff] [blame] | 1652 | NewGV->copyAttributesFrom(GV); |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 1653 | GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV); |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1654 | |
Chris Lattner | 40e4cec | 2004-12-12 05:53:50 +0000 | [diff] [blame] | 1655 | Constant *InitVal = GV->getInitializer(); |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 1656 | assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) && |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1657 | "No reason to shrink to bool!"); |
Chris Lattner | 40e4cec | 2004-12-12 05:53:50 +0000 | [diff] [blame] | 1658 | |
Strahinja Petrovic | 29202f6 | 2017-09-21 10:04:02 +0000 | [diff] [blame] | 1659 | SmallVector<DIGlobalVariableExpression *, 1> GVs; |
| 1660 | GV->getDebugInfo(GVs); |
| 1661 | |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1662 | // If initialized to zero and storing one into the global, we can use a cast |
| 1663 | // instead of a select to synthesize the desired value. |
| 1664 | bool IsOneZero = false; |
Strahinja Petrovic | 29202f6 | 2017-09-21 10:04:02 +0000 | [diff] [blame] | 1665 | bool EmitOneOrZero = true; |
| 1666 | if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)){ |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1667 | IsOneZero = InitVal->isNullValue() && CI->isOne(); |
Chris Lattner | 40e4cec | 2004-12-12 05:53:50 +0000 | [diff] [blame] | 1668 | |
Strahinja Petrovic | 29202f6 | 2017-09-21 10:04:02 +0000 | [diff] [blame] | 1669 | if (ConstantInt *CIInit = dyn_cast<ConstantInt>(GV->getInitializer())){ |
| 1670 | uint64_t ValInit = CIInit->getZExtValue(); |
| 1671 | uint64_t ValOther = CI->getZExtValue(); |
| 1672 | uint64_t ValMinus = ValOther - ValInit; |
| 1673 | |
| 1674 | for(auto *GVe : GVs){ |
| 1675 | DIGlobalVariable *DGV = GVe->getVariable(); |
| 1676 | DIExpression *E = GVe->getExpression(); |
| 1677 | |
| 1678 | // It is expected that the address of global optimized variable is on |
| 1679 | // top of the stack. After optimization, value of that variable will |
| 1680 | // be ether 0 for initial value or 1 for other value. The following |
| 1681 | // expression should return constant integer value depending on the |
| 1682 | // value at global object address: |
| 1683 | // val * (ValOther - ValInit) + ValInit: |
| 1684 | // DW_OP_deref DW_OP_constu <ValMinus> |
| 1685 | // DW_OP_mul DW_OP_constu <ValInit> DW_OP_plus DW_OP_stack_value |
Adrian Prantl | 210a29d | 2018-04-27 21:41:36 +0000 | [diff] [blame] | 1686 | SmallVector<uint64_t, 12> Ops = { |
| 1687 | dwarf::DW_OP_deref, dwarf::DW_OP_constu, ValMinus, |
| 1688 | dwarf::DW_OP_mul, dwarf::DW_OP_constu, ValInit, |
| 1689 | dwarf::DW_OP_plus}; |
| 1690 | E = DIExpression::prependOpcodes(E, Ops, DIExpression::WithStackValue); |
Strahinja Petrovic | 29202f6 | 2017-09-21 10:04:02 +0000 | [diff] [blame] | 1691 | DIGlobalVariableExpression *DGVE = |
| 1692 | DIGlobalVariableExpression::get(NewGV->getContext(), DGV, E); |
| 1693 | NewGV->addDebugInfo(DGVE); |
| 1694 | } |
| 1695 | EmitOneOrZero = false; |
| 1696 | } |
| 1697 | } |
| 1698 | |
| 1699 | if (EmitOneOrZero) { |
| 1700 | // FIXME: This will only emit address for debugger on which will |
| 1701 | // be written only 0 or 1. |
| 1702 | for(auto *GV : GVs) |
| 1703 | NewGV->addDebugInfo(GV); |
| 1704 | } |
| 1705 | |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1706 | while (!GV->use_empty()) { |
| 1707 | Instruction *UI = cast<Instruction>(GV->user_back()); |
| 1708 | if (StoreInst *SI = dyn_cast<StoreInst>(UI)) { |
| 1709 | // Change the store into a boolean store. |
| 1710 | bool StoringOther = SI->getOperand(0) == OtherVal; |
| 1711 | // Only do this if we weren't storing a loaded value. |
| 1712 | Value *StoreVal; |
| 1713 | if (StoringOther || SI->getOperand(0) == InitVal) { |
| 1714 | StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()), |
| 1715 | StoringOther); |
Bill Wendling | 7297b86 | 2013-02-13 23:00:51 +0000 | [diff] [blame] | 1716 | } else { |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1717 | // Otherwise, we are storing a previously loaded copy. To do this, |
| 1718 | // change the copy from copying the original value to just copying the |
| 1719 | // bool. |
| 1720 | Instruction *StoredVal = cast<Instruction>(SI->getOperand(0)); |
| 1721 | |
| 1722 | // If we've already replaced the input, StoredVal will be a cast or |
| 1723 | // select instruction. If not, it will be a load of the original |
| 1724 | // global. |
| 1725 | if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) { |
| 1726 | assert(LI->getOperand(0) == GV && "Not a copy!"); |
| 1727 | // Insert a new load, to preserve the saved value. |
| 1728 | StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0, |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 1729 | LI->getOrdering(), LI->getSyncScopeID(), LI); |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1730 | } else { |
| 1731 | assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) && |
| 1732 | "This is not a form that we understand!"); |
| 1733 | StoreVal = StoredVal->getOperand(0); |
| 1734 | assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!"); |
| 1735 | } |
Chris Lattner | 745196a | 2004-12-12 19:34:41 +0000 | [diff] [blame] | 1736 | } |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1737 | new StoreInst(StoreVal, NewGV, false, 0, |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 1738 | SI->getOrdering(), SI->getSyncScopeID(), SI); |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1739 | } else { |
| 1740 | // Change the load into a load of bool then a select. |
| 1741 | LoadInst *LI = cast<LoadInst>(UI); |
| 1742 | LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0, |
Konstantin Zhuravlyov | bb80d3e | 2017-07-11 22:23:00 +0000 | [diff] [blame] | 1743 | LI->getOrdering(), LI->getSyncScopeID(), LI); |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1744 | Value *NSI; |
| 1745 | if (IsOneZero) |
| 1746 | NSI = new ZExtInst(NLI, LI->getType(), "", LI); |
| 1747 | else |
| 1748 | NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI); |
| 1749 | NSI->takeName(LI); |
| 1750 | LI->replaceAllUsesWith(NSI); |
Devang Patel | fc507a1 | 2009-03-06 01:39:36 +0000 | [diff] [blame] | 1751 | } |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1752 | UI->eraseFromParent(); |
Chris Lattner | 40e4cec | 2004-12-12 05:53:50 +0000 | [diff] [blame] | 1753 | } |
| 1754 | |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 1755 | // Retain the name of the old global variable. People who are debugging their |
| 1756 | // programs may expect these variables to be named the same. |
| 1757 | NewGV->takeName(GV); |
| 1758 | GV->eraseFromParent(); |
Chris Lattner | 20bbac3 | 2008-01-14 01:17:44 +0000 | [diff] [blame] | 1759 | return true; |
Chris Lattner | 40e4cec | 2004-12-12 05:53:50 +0000 | [diff] [blame] | 1760 | } |
| 1761 | |
Florian Hahn | a1cc848 | 2018-06-12 11:16:56 +0000 | [diff] [blame] | 1762 | static bool deleteIfDead( |
| 1763 | GlobalValue &GV, SmallPtrSetImpl<const Comdat *> &NotDiscardableComdats) { |
Rafael Espindola | 2cc46b3 | 2015-12-22 19:38:07 +0000 | [diff] [blame] | 1764 | GV.removeDeadConstantUsers(); |
| 1765 | |
Mehdi Amini | d880309 | 2016-09-15 20:26:27 +0000 | [diff] [blame] | 1766 | if (!GV.isDiscardableIfUnused() && !GV.isDeclaration()) |
Rafael Espindola | 2cc46b3 | 2015-12-22 19:38:07 +0000 | [diff] [blame] | 1767 | return false; |
| 1768 | |
| 1769 | if (const Comdat *C = GV.getComdat()) |
| 1770 | if (!GV.hasLocalLinkage() && NotDiscardableComdats.count(C)) |
| 1771 | return false; |
| 1772 | |
| 1773 | bool Dead; |
| 1774 | if (auto *F = dyn_cast<Function>(&GV)) |
Mehdi Amini | d880309 | 2016-09-15 20:26:27 +0000 | [diff] [blame] | 1775 | Dead = (F->isDeclaration() && F->use_empty()) || F->isDefTriviallyDead(); |
Rafael Espindola | 2cc46b3 | 2015-12-22 19:38:07 +0000 | [diff] [blame] | 1776 | else |
| 1777 | Dead = GV.use_empty(); |
| 1778 | if (!Dead) |
| 1779 | return false; |
| 1780 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1781 | LLVM_DEBUG(dbgs() << "GLOBAL DEAD: " << GV << "\n"); |
Rafael Espindola | 2cc46b3 | 2015-12-22 19:38:07 +0000 | [diff] [blame] | 1782 | GV.eraseFromParent(); |
| 1783 | ++NumDeleted; |
| 1784 | return true; |
| 1785 | } |
Chris Lattner | 40e4cec | 2004-12-12 05:53:50 +0000 | [diff] [blame] | 1786 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 1787 | static bool isPointerValueDeadOnEntryToFunction( |
| 1788 | const Function *F, GlobalValue *GV, |
| 1789 | function_ref<DominatorTree &(Function &)> LookupDomTree) { |
James Molloy | 9c7d4d8 | 2015-11-15 14:21:37 +0000 | [diff] [blame] | 1790 | // Find all uses of GV. We expect them all to be in F, and if we can't |
| 1791 | // identify any of the uses we bail out. |
| 1792 | // |
| 1793 | // On each of these uses, identify if the memory that GV points to is |
| 1794 | // used/required/live at the start of the function. If it is not, for example |
| 1795 | // if the first thing the function does is store to the GV, the GV can |
| 1796 | // possibly be demoted. |
| 1797 | // |
| 1798 | // We don't do an exhaustive search for memory operations - simply look |
| 1799 | // through bitcasts as they're quite common and benign. |
| 1800 | const DataLayout &DL = GV->getParent()->getDataLayout(); |
| 1801 | SmallVector<LoadInst *, 4> Loads; |
| 1802 | SmallVector<StoreInst *, 4> Stores; |
| 1803 | for (auto *U : GV->users()) { |
| 1804 | if (Operator::getOpcode(U) == Instruction::BitCast) { |
| 1805 | for (auto *UU : U->users()) { |
| 1806 | if (auto *LI = dyn_cast<LoadInst>(UU)) |
| 1807 | Loads.push_back(LI); |
| 1808 | else if (auto *SI = dyn_cast<StoreInst>(UU)) |
| 1809 | Stores.push_back(SI); |
| 1810 | else |
| 1811 | return false; |
| 1812 | } |
| 1813 | continue; |
| 1814 | } |
| 1815 | |
| 1816 | Instruction *I = dyn_cast<Instruction>(U); |
| 1817 | if (!I) |
| 1818 | return false; |
| 1819 | assert(I->getParent()->getParent() == F); |
| 1820 | |
| 1821 | if (auto *LI = dyn_cast<LoadInst>(I)) |
| 1822 | Loads.push_back(LI); |
| 1823 | else if (auto *SI = dyn_cast<StoreInst>(I)) |
| 1824 | Stores.push_back(SI); |
| 1825 | else |
| 1826 | return false; |
| 1827 | } |
| 1828 | |
| 1829 | // We have identified all uses of GV into loads and stores. Now check if all |
| 1830 | // of them are known not to depend on the value of the global at the function |
| 1831 | // entry point. We do this by ensuring that every load is dominated by at |
| 1832 | // least one store. |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 1833 | auto &DT = LookupDomTree(*const_cast<Function *>(F)); |
James Molloy | 9c7d4d8 | 2015-11-15 14:21:37 +0000 | [diff] [blame] | 1834 | |
James Molloy | d4d2357 | 2015-11-16 10:16:22 +0000 | [diff] [blame] | 1835 | // The below check is quadratic. Check we're not going to do too many tests. |
| 1836 | // FIXME: Even though this will always have worst-case quadratic time, we |
| 1837 | // could put effort into minimizing the average time by putting stores that |
| 1838 | // have been shown to dominate at least one load at the beginning of the |
| 1839 | // Stores array, making subsequent dominance checks more likely to succeed |
| 1840 | // early. |
| 1841 | // |
| 1842 | // The threshold here is fairly large because global->local demotion is a |
| 1843 | // very powerful optimization should it fire. |
| 1844 | const unsigned Threshold = 100; |
| 1845 | if (Loads.size() * Stores.size() > Threshold) |
| 1846 | return false; |
| 1847 | |
James Molloy | 9c7d4d8 | 2015-11-15 14:21:37 +0000 | [diff] [blame] | 1848 | for (auto *L : Loads) { |
| 1849 | auto *LTy = L->getType(); |
David Majnemer | 0a16c22 | 2016-08-11 21:15:00 +0000 | [diff] [blame] | 1850 | if (none_of(Stores, [&](const StoreInst *S) { |
James Molloy | 9c7d4d8 | 2015-11-15 14:21:37 +0000 | [diff] [blame] | 1851 | auto *STy = S->getValueOperand()->getType(); |
| 1852 | // The load is only dominated by the store if DomTree says so |
| 1853 | // and the number of bits loaded in L is less than or equal to |
| 1854 | // the number of bits stored in S. |
| 1855 | return DT.dominates(S, L) && |
| 1856 | DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy); |
| 1857 | })) |
| 1858 | return false; |
| 1859 | } |
| 1860 | // All loads have known dependences inside F, so the global can be localized. |
| 1861 | return true; |
| 1862 | } |
| 1863 | |
James Molloy | 1d695a0 | 2015-11-19 18:04:33 +0000 | [diff] [blame] | 1864 | /// C may have non-instruction users. Can all of those users be turned into |
| 1865 | /// instructions? |
| 1866 | static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) { |
| 1867 | // We don't do this exhaustively. The most common pattern that we really need |
| 1868 | // to care about is a constant GEP or constant bitcast - so just looking |
| 1869 | // through one single ConstantExpr. |
| 1870 | // |
| 1871 | // The set of constants that this function returns true for must be able to be |
| 1872 | // handled by makeAllConstantUsesInstructions. |
| 1873 | for (auto *U : C->users()) { |
| 1874 | if (isa<Instruction>(U)) |
| 1875 | continue; |
| 1876 | if (!isa<ConstantExpr>(U)) |
| 1877 | // Non instruction, non-constantexpr user; cannot convert this. |
| 1878 | return false; |
| 1879 | for (auto *UU : U->users()) |
| 1880 | if (!isa<Instruction>(UU)) |
| 1881 | // A constantexpr used by another constant. We don't try and recurse any |
| 1882 | // further but just bail out at this point. |
| 1883 | return false; |
| 1884 | } |
| 1885 | |
| 1886 | return true; |
| 1887 | } |
| 1888 | |
| 1889 | /// C may have non-instruction users, and |
| 1890 | /// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the |
| 1891 | /// non-instruction users to instructions. |
| 1892 | static void makeAllConstantUsesInstructions(Constant *C) { |
| 1893 | SmallVector<ConstantExpr*,4> Users; |
| 1894 | for (auto *U : C->users()) { |
| 1895 | if (isa<ConstantExpr>(U)) |
| 1896 | Users.push_back(cast<ConstantExpr>(U)); |
| 1897 | else |
| 1898 | // We should never get here; allNonInstructionUsersCanBeMadeInstructions |
| 1899 | // should not have returned true for C. |
| 1900 | assert( |
| 1901 | isa<Instruction>(U) && |
| 1902 | "Can't transform non-constantexpr non-instruction to instruction!"); |
| 1903 | } |
| 1904 | |
| 1905 | SmallVector<Value*,4> UUsers; |
| 1906 | for (auto *U : Users) { |
| 1907 | UUsers.clear(); |
| 1908 | for (auto *UU : U->users()) |
| 1909 | UUsers.push_back(UU); |
| 1910 | for (auto *UU : UUsers) { |
| 1911 | Instruction *UI = cast<Instruction>(UU); |
| 1912 | Instruction *NewU = U->getAsInstruction(); |
| 1913 | NewU->insertBefore(UI); |
| 1914 | UI->replaceUsesOfWith(U, NewU); |
| 1915 | } |
Eli Friedman | 10ab923 | 2017-04-27 18:39:08 +0000 | [diff] [blame] | 1916 | // We've replaced all the uses, so destroy the constant. (destroyConstant |
| 1917 | // will update value handles and metadata.) |
| 1918 | U->destroyConstant(); |
James Molloy | 1d695a0 | 2015-11-19 18:04:33 +0000 | [diff] [blame] | 1919 | } |
| 1920 | } |
| 1921 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 1922 | /// Analyze the specified global variable and optimize |
Rafael Espindola | fc355bc | 2011-01-19 16:32:21 +0000 | [diff] [blame] | 1923 | /// it if possible. If we make a change, return true. |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 1924 | static bool processInternalGlobal( |
| 1925 | GlobalVariable *GV, const GlobalStatus &GS, TargetLibraryInfo *TLI, |
| 1926 | function_ref<DominatorTree &(Function &)> LookupDomTree) { |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1927 | auto &DL = GV->getParent()->getDataLayout(); |
James Molloy | 9c7d4d8 | 2015-11-15 14:21:37 +0000 | [diff] [blame] | 1928 | // If this is a first class global and has only one accessing function and |
| 1929 | // this function is non-recursive, we replace the global with a local alloca |
| 1930 | // in this function. |
Alexey Samsonov | a1944e6 | 2013-10-07 19:03:24 +0000 | [diff] [blame] | 1931 | // |
Alp Toker | f907b89 | 2013-12-05 05:44:44 +0000 | [diff] [blame] | 1932 | // NOTE: It doesn't make sense to promote non-single-value types since we |
Alexey Samsonov | a1944e6 | 2013-10-07 19:03:24 +0000 | [diff] [blame] | 1933 | // are just replacing static memory to stack memory. |
| 1934 | // |
| 1935 | // If the global is in different address space, don't bring it to stack. |
| 1936 | if (!GS.HasMultipleAccessingFunctions && |
James Molloy | 1d695a0 | 2015-11-19 18:04:33 +0000 | [diff] [blame] | 1937 | GS.AccessingFunction && |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1938 | GV->getValueType()->isSingleValueType() && |
James Molloy | 9c7d4d8 | 2015-11-15 14:21:37 +0000 | [diff] [blame] | 1939 | GV->getType()->getAddressSpace() == 0 && |
| 1940 | !GV->isExternallyInitialized() && |
James Molloy | 1d695a0 | 2015-11-19 18:04:33 +0000 | [diff] [blame] | 1941 | allNonInstructionUsersCanBeMadeInstructions(GV) && |
James Molloy | 9c7d4d8 | 2015-11-15 14:21:37 +0000 | [diff] [blame] | 1942 | GS.AccessingFunction->doesNotRecurse() && |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 1943 | isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV, |
| 1944 | LookupDomTree)) { |
Matt Arsenault | 3c1fc76 | 2017-04-10 22:27:50 +0000 | [diff] [blame] | 1945 | const DataLayout &DL = GV->getParent()->getDataLayout(); |
| 1946 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1947 | LLVM_DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n"); |
Alexey Samsonov | a1944e6 | 2013-10-07 19:03:24 +0000 | [diff] [blame] | 1948 | Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction |
| 1949 | ->getEntryBlock().begin()); |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1950 | Type *ElemTy = GV->getValueType(); |
Alexey Samsonov | a1944e6 | 2013-10-07 19:03:24 +0000 | [diff] [blame] | 1951 | // FIXME: Pass Global's alignment when globals have alignment |
Matt Arsenault | 3c1fc76 | 2017-04-10 22:27:50 +0000 | [diff] [blame] | 1952 | AllocaInst *Alloca = new AllocaInst(ElemTy, DL.getAllocaAddrSpace(), nullptr, |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1953 | GV->getName(), &FirstI); |
Alexey Samsonov | a1944e6 | 2013-10-07 19:03:24 +0000 | [diff] [blame] | 1954 | if (!isa<UndefValue>(GV->getInitializer())) |
| 1955 | new StoreInst(GV->getInitializer(), Alloca, &FirstI); |
| 1956 | |
James Molloy | 1d695a0 | 2015-11-19 18:04:33 +0000 | [diff] [blame] | 1957 | makeAllConstantUsesInstructions(GV); |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 1958 | |
Alexey Samsonov | a1944e6 | 2013-10-07 19:03:24 +0000 | [diff] [blame] | 1959 | GV->replaceAllUsesWith(Alloca); |
| 1960 | GV->eraseFromParent(); |
| 1961 | ++NumLocalized; |
| 1962 | return true; |
| 1963 | } |
| 1964 | |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 1965 | // If the global is never loaded (but may be stored to), it is dead. |
| 1966 | // Delete it now. |
Rafael Espindola | 045a78f | 2013-10-17 18:18:52 +0000 | [diff] [blame] | 1967 | if (!GS.IsLoaded) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1968 | LLVM_DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n"); |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 1969 | |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 1970 | bool Changed; |
| 1971 | if (isLeakCheckerRoot(GV)) { |
| 1972 | // Delete any constant stores to the global. |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 1973 | Changed = CleanupPointerRootUsers(GV, TLI); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 1974 | } else { |
| 1975 | // Delete any stores we can find to the global. We may not be able to |
| 1976 | // make it completely dead though. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1977 | Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI); |
Nick Lewycky | faa9c3b0 | 2012-07-24 07:21:08 +0000 | [diff] [blame] | 1978 | } |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 1979 | |
| 1980 | // If the global is dead now, delete it. |
| 1981 | if (GV->use_empty()) { |
| 1982 | GV->eraseFromParent(); |
| 1983 | ++NumDeleted; |
| 1984 | Changed = true; |
| 1985 | } |
| 1986 | return Changed; |
| 1987 | |
James Molloy | eb040cc | 2016-04-25 10:48:29 +0000 | [diff] [blame] | 1988 | } |
| 1989 | if (GS.StoredType <= GlobalStatus::InitializerStored) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1990 | LLVM_DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n"); |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 1991 | GV->setConstant(true); |
| 1992 | |
| 1993 | // Clean up any obviously simplifiable users now. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1994 | CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI); |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 1995 | |
| 1996 | // If the global is dead now, just nuke it. |
| 1997 | if (GV->use_empty()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1998 | LLVM_DEBUG(dbgs() << " *** Marking constant allowed us to simplify " |
| 1999 | << "all users and delete global!\n"); |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2000 | GV->eraseFromParent(); |
| 2001 | ++NumDeleted; |
James Molloy | eb040cc | 2016-04-25 10:48:29 +0000 | [diff] [blame] | 2002 | return true; |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2003 | } |
| 2004 | |
James Molloy | eb040cc | 2016-04-25 10:48:29 +0000 | [diff] [blame] | 2005 | // Fall through to the next check; see if we can optimize further. |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2006 | ++NumMarked; |
James Molloy | eb040cc | 2016-04-25 10:48:29 +0000 | [diff] [blame] | 2007 | } |
| 2008 | if (!GV->getInitializer()->getType()->isSingleValueType()) { |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 2009 | const DataLayout &DL = GV->getParent()->getDataLayout(); |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 2010 | if (SRAGlobal(GV, DL)) |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 2011 | return true; |
James Molloy | eb040cc | 2016-04-25 10:48:29 +0000 | [diff] [blame] | 2012 | } |
| 2013 | if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) { |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2014 | // If the initial value for the global was an undef value, and if only |
| 2015 | // one other value was stored into it, we can just change the |
| 2016 | // initializer to be the stored value, then delete all stores to the |
| 2017 | // global. This allows us to mark it constant. |
| 2018 | if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) |
| 2019 | if (isa<UndefValue>(GV->getInitializer())) { |
| 2020 | // Change the initial value here. |
| 2021 | GV->setInitializer(SOVConstant); |
| 2022 | |
| 2023 | // Clean up any obviously simplifiable users now. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 2024 | CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI); |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2025 | |
| 2026 | if (GV->use_empty()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2027 | LLVM_DEBUG(dbgs() << " *** Substituting initializer allowed us to " |
| 2028 | << "simplify all users and delete global!\n"); |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2029 | GV->eraseFromParent(); |
| 2030 | ++NumDeleted; |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2031 | } |
| 2032 | ++NumSubstitute; |
| 2033 | return true; |
| 2034 | } |
| 2035 | |
| 2036 | // Try to optimize globals based on the knowledge that only one value |
| 2037 | // (besides its initializer) is ever stored to the global. |
Rafael Espindola | e4ed0e5 | 2015-12-22 19:16:50 +0000 | [diff] [blame] | 2038 | if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI)) |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2039 | return true; |
| 2040 | |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 2041 | // Otherwise, if the global was not a boolean, we can shrink it to be a |
| 2042 | // boolean. |
Eli Friedman | 33d3700 | 2013-09-09 22:00:13 +0000 | [diff] [blame] | 2043 | if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) { |
JF Bastien | 800f87a | 2016-04-06 21:19:33 +0000 | [diff] [blame] | 2044 | if (GS.Ordering == AtomicOrdering::NotAtomic) { |
Lang Hames | 459b5dc | 2014-03-23 04:22:31 +0000 | [diff] [blame] | 2045 | if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) { |
Eli Friedman | 33d3700 | 2013-09-09 22:00:13 +0000 | [diff] [blame] | 2046 | ++NumShrunkToBool; |
| 2047 | return true; |
| 2048 | } |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2049 | } |
Eli Friedman | 33d3700 | 2013-09-09 22:00:13 +0000 | [diff] [blame] | 2050 | } |
Rafael Espindola | ecd5b9a | 2011-01-18 04:36:06 +0000 | [diff] [blame] | 2051 | } |
| 2052 | |
Chris Lattner | 1c4bddc | 2004-10-08 20:59:28 +0000 | [diff] [blame] | 2053 | return false; |
| 2054 | } |
| 2055 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2056 | /// Analyze the specified global variable and optimize it if possible. If we |
| 2057 | /// make a change, return true. |
| 2058 | static bool |
| 2059 | processGlobal(GlobalValue &GV, TargetLibraryInfo *TLI, |
| 2060 | function_ref<DominatorTree &(Function &)> LookupDomTree) { |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 2061 | if (GV.getName().startswith("llvm.")) |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2062 | return false; |
| 2063 | |
| 2064 | GlobalStatus GS; |
| 2065 | |
| 2066 | if (GlobalStatus::analyzeGlobal(&GV, GS)) |
| 2067 | return false; |
| 2068 | |
| 2069 | bool Changed = false; |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 2070 | if (!GS.IsCompared && !GV.hasGlobalUnnamedAddr()) { |
| 2071 | auto NewUnnamedAddr = GV.hasLocalLinkage() ? GlobalValue::UnnamedAddr::Global |
| 2072 | : GlobalValue::UnnamedAddr::Local; |
| 2073 | if (NewUnnamedAddr != GV.getUnnamedAddr()) { |
| 2074 | GV.setUnnamedAddr(NewUnnamedAddr); |
| 2075 | NumUnnamed++; |
| 2076 | Changed = true; |
| 2077 | } |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2078 | } |
| 2079 | |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 2080 | // Do more involved optimizations if the global is internal. |
| 2081 | if (!GV.hasLocalLinkage()) |
| 2082 | return Changed; |
| 2083 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2084 | auto *GVar = dyn_cast<GlobalVariable>(&GV); |
| 2085 | if (!GVar) |
| 2086 | return Changed; |
| 2087 | |
| 2088 | if (GVar->isConstant() || !GVar->hasInitializer()) |
| 2089 | return Changed; |
| 2090 | |
| 2091 | return processInternalGlobal(GVar, GS, TLI, LookupDomTree) || Changed; |
| 2092 | } |
| 2093 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 2094 | /// Walk all of the direct calls of the specified function, changing them to |
| 2095 | /// FastCC. |
Chris Lattner | a4c8022 | 2005-05-08 22:18:06 +0000 | [diff] [blame] | 2096 | static void ChangeCalleesToFastCall(Function *F) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 2097 | for (User *U : F->users()) { |
| 2098 | if (isa<BlockAddress>(U)) |
Jay Foad | ca0c499 | 2012-05-12 08:30:16 +0000 | [diff] [blame] | 2099 | continue; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 2100 | CallSite CS(cast<Instruction>(U)); |
| 2101 | CS.setCallingConv(CallingConv::Fast); |
Chris Lattner | a4c8022 | 2005-05-08 22:18:06 +0000 | [diff] [blame] | 2102 | } |
| 2103 | } |
Chris Lattner | 1c4bddc | 2004-10-08 20:59:28 +0000 | [diff] [blame] | 2104 | |
Reid Kleckner | 0a5ed3d | 2017-04-19 23:26:44 +0000 | [diff] [blame] | 2105 | static AttributeList StripNest(LLVMContext &C, AttributeList Attrs) { |
| 2106 | // There can be at most one attribute set with a nest attribute. |
| 2107 | unsigned NestIndex; |
| 2108 | if (Attrs.hasAttrSomewhere(Attribute::Nest, &NestIndex)) |
| 2109 | return Attrs.removeAttribute(C, NestIndex, Attribute::Nest); |
Duncan Sands | 573b3f8 | 2008-02-16 20:56:04 +0000 | [diff] [blame] | 2110 | return Attrs; |
| 2111 | } |
| 2112 | |
| 2113 | static void RemoveNestAttribute(Function *F) { |
Bill Wendling | 85a64c2 | 2012-10-14 06:39:53 +0000 | [diff] [blame] | 2114 | F->setAttributes(StripNest(F->getContext(), F->getAttributes())); |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 2115 | for (User *U : F->users()) { |
| 2116 | if (isa<BlockAddress>(U)) |
Jay Foad | ca0c499 | 2012-05-12 08:30:16 +0000 | [diff] [blame] | 2117 | continue; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 2118 | CallSite CS(cast<Instruction>(U)); |
| 2119 | CS.setAttributes(StripNest(F->getContext(), CS.getAttributes())); |
Duncan Sands | 573b3f8 | 2008-02-16 20:56:04 +0000 | [diff] [blame] | 2120 | } |
| 2121 | } |
| 2122 | |
Reid Kleckner | 2286937 | 2014-02-26 19:57:30 +0000 | [diff] [blame] | 2123 | /// Return true if this is a calling convention that we'd like to change. The |
| 2124 | /// idea here is that we don't want to mess with the convention if the user |
| 2125 | /// explicitly requested something with performance implications like coldcc, |
| 2126 | /// GHC, or anyregcc. |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2127 | static bool hasChangeableCC(Function *F) { |
Reid Kleckner | 2286937 | 2014-02-26 19:57:30 +0000 | [diff] [blame] | 2128 | CallingConv::ID CC = F->getCallingConv(); |
Jonas Devlieghere | 9ca0645 | 2018-02-28 22:28:44 +0000 | [diff] [blame] | 2129 | |
Reid Kleckner | 2286937 | 2014-02-26 19:57:30 +0000 | [diff] [blame] | 2130 | // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc? |
Jonas Devlieghere | 9ca0645 | 2018-02-28 22:28:44 +0000 | [diff] [blame] | 2131 | if (CC != CallingConv::C && CC != CallingConv::X86_ThisCall) |
| 2132 | return false; |
| 2133 | |
| 2134 | // FIXME: Change CC for the whole chain of musttail calls when possible. |
| 2135 | // |
| 2136 | // Can't change CC of the function that either has musttail calls, or is a |
| 2137 | // musttail callee itself |
| 2138 | for (User *U : F->users()) { |
| 2139 | if (isa<BlockAddress>(U)) |
| 2140 | continue; |
| 2141 | CallInst* CI = dyn_cast<CallInst>(U); |
| 2142 | if (!CI) |
| 2143 | continue; |
| 2144 | |
| 2145 | if (CI->isMustTailCall()) |
| 2146 | return false; |
| 2147 | } |
| 2148 | |
| 2149 | for (BasicBlock &BB : *F) |
| 2150 | if (BB.getTerminatingMustTailCall()) |
| 2151 | return false; |
| 2152 | |
| 2153 | return true; |
Reid Kleckner | 2286937 | 2014-02-26 19:57:30 +0000 | [diff] [blame] | 2154 | } |
| 2155 | |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2156 | /// Return true if the block containing the call site has a BlockFrequency of |
| 2157 | /// less than ColdCCRelFreq% of the entry block. |
| 2158 | static bool isColdCallSite(CallSite CS, BlockFrequencyInfo &CallerBFI) { |
| 2159 | const BranchProbability ColdProb(ColdCCRelFreq, 100); |
| 2160 | auto CallSiteBB = CS.getInstruction()->getParent(); |
| 2161 | auto CallSiteFreq = CallerBFI.getBlockFreq(CallSiteBB); |
| 2162 | auto CallerEntryFreq = |
| 2163 | CallerBFI.getBlockFreq(&(CS.getCaller()->getEntryBlock())); |
| 2164 | return CallSiteFreq < CallerEntryFreq * ColdProb; |
| 2165 | } |
| 2166 | |
| 2167 | // This function checks if the input function F is cold at all call sites. It |
| 2168 | // also looks each call site's containing function, returning false if the |
| 2169 | // caller function contains other non cold calls. The input vector AllCallsCold |
| 2170 | // contains a list of functions that only have call sites in cold blocks. |
| 2171 | static bool |
| 2172 | isValidCandidateForColdCC(Function &F, |
| 2173 | function_ref<BlockFrequencyInfo &(Function &)> GetBFI, |
| 2174 | const std::vector<Function *> &AllCallsCold) { |
| 2175 | |
| 2176 | if (F.user_empty()) |
| 2177 | return false; |
| 2178 | |
| 2179 | for (User *U : F.users()) { |
| 2180 | if (isa<BlockAddress>(U)) |
| 2181 | continue; |
| 2182 | |
| 2183 | CallSite CS(cast<Instruction>(U)); |
| 2184 | Function *CallerFunc = CS.getInstruction()->getParent()->getParent(); |
| 2185 | BlockFrequencyInfo &CallerBFI = GetBFI(*CallerFunc); |
| 2186 | if (!isColdCallSite(CS, CallerBFI)) |
| 2187 | return false; |
| 2188 | auto It = std::find(AllCallsCold.begin(), AllCallsCold.end(), CallerFunc); |
| 2189 | if (It == AllCallsCold.end()) |
| 2190 | return false; |
| 2191 | } |
| 2192 | return true; |
| 2193 | } |
| 2194 | |
| 2195 | static void changeCallSitesToColdCC(Function *F) { |
| 2196 | for (User *U : F->users()) { |
| 2197 | if (isa<BlockAddress>(U)) |
| 2198 | continue; |
| 2199 | CallSite CS(cast<Instruction>(U)); |
| 2200 | CS.setCallingConv(CallingConv::Cold); |
| 2201 | } |
| 2202 | } |
| 2203 | |
| 2204 | // This function iterates over all the call instructions in the input Function |
| 2205 | // and checks that all call sites are in cold blocks and are allowed to use the |
| 2206 | // coldcc calling convention. |
| 2207 | static bool |
| 2208 | hasOnlyColdCalls(Function &F, |
| 2209 | function_ref<BlockFrequencyInfo &(Function &)> GetBFI) { |
| 2210 | for (BasicBlock &BB : F) { |
| 2211 | for (Instruction &I : BB) { |
| 2212 | if (CallInst *CI = dyn_cast<CallInst>(&I)) { |
| 2213 | CallSite CS(cast<Instruction>(CI)); |
| 2214 | // Skip over isline asm instructions since they aren't function calls. |
| 2215 | if (CI->isInlineAsm()) |
| 2216 | continue; |
| 2217 | Function *CalledFn = CI->getCalledFunction(); |
| 2218 | if (!CalledFn) |
| 2219 | return false; |
| 2220 | if (!CalledFn->hasLocalLinkage()) |
| 2221 | return false; |
| 2222 | // Skip over instrinsics since they won't remain as function calls. |
| 2223 | if (CalledFn->getIntrinsicID() != Intrinsic::not_intrinsic) |
| 2224 | continue; |
| 2225 | // Check if it's valid to use coldcc calling convention. |
| 2226 | if (!hasChangeableCC(CalledFn) || CalledFn->isVarArg() || |
| 2227 | CalledFn->hasAddressTaken()) |
| 2228 | return false; |
| 2229 | BlockFrequencyInfo &CallerBFI = GetBFI(F); |
| 2230 | if (!isColdCallSite(CS, CallerBFI)) |
| 2231 | return false; |
| 2232 | } |
| 2233 | } |
| 2234 | } |
| 2235 | return true; |
| 2236 | } |
| 2237 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2238 | static bool |
| 2239 | OptimizeFunctions(Module &M, TargetLibraryInfo *TLI, |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2240 | function_ref<TargetTransformInfo &(Function &)> GetTTI, |
| 2241 | function_ref<BlockFrequencyInfo &(Function &)> GetBFI, |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2242 | function_ref<DominatorTree &(Function &)> LookupDomTree, |
Florian Hahn | a1cc848 | 2018-06-12 11:16:56 +0000 | [diff] [blame] | 2243 | SmallPtrSetImpl<const Comdat *> &NotDiscardableComdats) { |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2244 | |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2245 | bool Changed = false; |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2246 | |
| 2247 | std::vector<Function *> AllCallsCold; |
| 2248 | for (Module::iterator FI = M.begin(), E = M.end(); FI != E;) { |
| 2249 | Function *F = &*FI++; |
| 2250 | if (hasOnlyColdCalls(*F, GetBFI)) |
| 2251 | AllCallsCold.push_back(F); |
| 2252 | } |
| 2253 | |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2254 | // Optimize functions. |
| 2255 | for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) { |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 2256 | Function *F = &*FI++; |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2257 | |
Luke Cheeseman | 6c1e6bb | 2018-02-22 14:42:08 +0000 | [diff] [blame] | 2258 | // Don't perform global opt pass on naked functions; we don't want fast |
| 2259 | // calling conventions for naked functions. |
| 2260 | if (F->hasFnAttribute(Attribute::Naked)) |
| 2261 | continue; |
| 2262 | |
Duncan Sands | ed72283 | 2009-03-06 10:21:56 +0000 | [diff] [blame] | 2263 | // Functions without names cannot be referenced outside this module. |
David Majnemer | 5c92115 | 2014-07-01 15:26:50 +0000 | [diff] [blame] | 2264 | if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage()) |
Duncan Sands | ed72283 | 2009-03-06 10:21:56 +0000 | [diff] [blame] | 2265 | F->setLinkage(GlobalValue::InternalLinkage); |
David Majnemer | 1b3b70e | 2014-10-08 07:23:31 +0000 | [diff] [blame] | 2266 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2267 | if (deleteIfDead(*F, NotDiscardableComdats)) { |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2268 | Changed = true; |
Rafael Espindola | 9f0bebc | 2015-12-22 19:26:18 +0000 | [diff] [blame] | 2269 | continue; |
| 2270 | } |
Rafael Espindola | 10d9a03 | 2015-12-22 20:43:30 +0000 | [diff] [blame] | 2271 | |
Davide Italiano | c3dc05578 | 2017-07-13 15:40:59 +0000 | [diff] [blame] | 2272 | // LLVM's definition of dominance allows instructions that are cyclic |
| 2273 | // in unreachable blocks, e.g.: |
| 2274 | // %pat = select i1 %condition, @global, i16* %pat |
| 2275 | // because any instruction dominates an instruction in a block that's |
| 2276 | // not reachable from entry. |
| 2277 | // So, remove unreachable blocks from the function, because a) there's |
| 2278 | // no point in analyzing them and b) GlobalOpt should otherwise grow |
| 2279 | // some more complicated logic to break these cycles. |
| 2280 | // Removing unreachable blocks might invalidate the dominator so we |
| 2281 | // recalculate it. |
| 2282 | if (!F->isDeclaration()) { |
| 2283 | if (removeUnreachableBlocks(*F)) { |
| 2284 | auto &DT = LookupDomTree(*F); |
| 2285 | DT.recalculate(*F); |
| 2286 | Changed = true; |
| 2287 | } |
| 2288 | } |
| 2289 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2290 | Changed |= processGlobal(*F, TLI, LookupDomTree); |
Rafael Espindola | 10d9a03 | 2015-12-22 20:43:30 +0000 | [diff] [blame] | 2291 | |
Rafael Espindola | 9f0bebc | 2015-12-22 19:26:18 +0000 | [diff] [blame] | 2292 | if (!F->hasLocalLinkage()) |
| 2293 | continue; |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2294 | |
| 2295 | if (hasChangeableCC(F) && !F->isVarArg() && !F->hasAddressTaken()) { |
| 2296 | NumInternalFunc++; |
| 2297 | TargetTransformInfo &TTI = GetTTI(*F); |
| 2298 | // Change the calling convention to coldcc if either stress testing is |
| 2299 | // enabled or the target would like to use coldcc on functions which are |
| 2300 | // cold at all call sites and the callers contain no other non coldcc |
| 2301 | // calls. |
| 2302 | if (EnableColdCCStressTest || |
| 2303 | (isValidCandidateForColdCC(*F, GetBFI, AllCallsCold) && |
| 2304 | TTI.useColdCCForColdCall(*F))) { |
| 2305 | F->setCallingConv(CallingConv::Cold); |
| 2306 | changeCallSitesToColdCC(F); |
| 2307 | Changed = true; |
| 2308 | NumColdCC++; |
| 2309 | } |
| 2310 | } |
| 2311 | |
| 2312 | if (hasChangeableCC(F) && !F->isVarArg() && |
Rafael Espindola | 9f0bebc | 2015-12-22 19:26:18 +0000 | [diff] [blame] | 2313 | !F->hasAddressTaken()) { |
| 2314 | // If this function has a calling convention worth changing, is not a |
| 2315 | // varargs function, and is only called directly, promote it to use the |
| 2316 | // Fast calling convention. |
| 2317 | F->setCallingConv(CallingConv::Fast); |
| 2318 | ChangeCalleesToFastCall(F); |
| 2319 | ++NumFastCallFns; |
| 2320 | Changed = true; |
| 2321 | } |
Duncan Sands | 573b3f8 | 2008-02-16 20:56:04 +0000 | [diff] [blame] | 2322 | |
Rafael Espindola | 9f0bebc | 2015-12-22 19:26:18 +0000 | [diff] [blame] | 2323 | if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) && |
| 2324 | !F->hasAddressTaken()) { |
| 2325 | // The function is not used by a trampoline intrinsic, so it is safe |
| 2326 | // to remove the 'nest' attribute. |
| 2327 | RemoveNestAttribute(F); |
| 2328 | ++NumNestRemoved; |
| 2329 | Changed = true; |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2330 | } |
| 2331 | } |
| 2332 | return Changed; |
| 2333 | } |
| 2334 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2335 | static bool |
| 2336 | OptimizeGlobalVars(Module &M, TargetLibraryInfo *TLI, |
| 2337 | function_ref<DominatorTree &(Function &)> LookupDomTree, |
Florian Hahn | a1cc848 | 2018-06-12 11:16:56 +0000 | [diff] [blame] | 2338 | SmallPtrSetImpl<const Comdat *> &NotDiscardableComdats) { |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2339 | bool Changed = false; |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 2340 | |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2341 | for (Module::global_iterator GVI = M.global_begin(), E = M.global_end(); |
| 2342 | GVI != E; ) { |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 2343 | GlobalVariable *GV = &*GVI++; |
Duncan Sands | ed72283 | 2009-03-06 10:21:56 +0000 | [diff] [blame] | 2344 | // Global variables without names cannot be referenced outside this module. |
David Majnemer | 5c92115 | 2014-07-01 15:26:50 +0000 | [diff] [blame] | 2345 | if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage()) |
Duncan Sands | ed72283 | 2009-03-06 10:21:56 +0000 | [diff] [blame] | 2346 | GV->setLinkage(GlobalValue::InternalLinkage); |
Dan Gohman | 580b80d | 2009-11-23 16:22:21 +0000 | [diff] [blame] | 2347 | // Simplify the initializer. |
| 2348 | if (GV->hasInitializer()) |
David Majnemer | d536f23 | 2016-07-29 03:27:26 +0000 | [diff] [blame] | 2349 | if (auto *C = dyn_cast<Constant>(GV->getInitializer())) { |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 2350 | auto &DL = M.getDataLayout(); |
David Majnemer | d536f23 | 2016-07-29 03:27:26 +0000 | [diff] [blame] | 2351 | Constant *New = ConstantFoldConstant(C, DL, TLI); |
| 2352 | if (New && New != C) |
Dan Gohman | 580b80d | 2009-11-23 16:22:21 +0000 | [diff] [blame] | 2353 | GV->setInitializer(New); |
| 2354 | } |
Rafael Espindola | fc355bc | 2011-01-19 16:32:21 +0000 | [diff] [blame] | 2355 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2356 | if (deleteIfDead(*GV, NotDiscardableComdats)) { |
Rafael Espindola | 10d9a03 | 2015-12-22 20:43:30 +0000 | [diff] [blame] | 2357 | Changed = true; |
| 2358 | continue; |
| 2359 | } |
| 2360 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2361 | Changed |= processGlobal(*GV, TLI, LookupDomTree); |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2362 | } |
| 2363 | return Changed; |
| 2364 | } |
| 2365 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 2366 | /// Evaluate a piece of a constantexpr store into a global initializer. This |
| 2367 | /// returns 'Init' modified to reflect 'Val' stored into it. At this point, the |
| 2368 | /// GEP operands of Addr [0, OpNo) have been stepped into. |
Anthony Pesch | e92ae2d | 2015-07-22 22:26:54 +0000 | [diff] [blame] | 2369 | static Constant *EvaluateStoreInto(Constant *Init, Constant *Val, |
| 2370 | ConstantExpr *Addr, unsigned OpNo) { |
| 2371 | // Base case of the recursion. |
| 2372 | if (OpNo == Addr->getNumOperands()) { |
| 2373 | assert(Val->getType() == Init->getType() && "Type mismatch!"); |
| 2374 | return Val; |
| 2375 | } |
| 2376 | |
| 2377 | SmallVector<Constant*, 32> Elts; |
| 2378 | if (StructType *STy = dyn_cast<StructType>(Init->getType())) { |
| 2379 | // Break up the constant into its elements. |
| 2380 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) |
| 2381 | Elts.push_back(Init->getAggregateElement(i)); |
| 2382 | |
| 2383 | // Replace the element that we are supposed to. |
| 2384 | ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo)); |
| 2385 | unsigned Idx = CU->getZExtValue(); |
| 2386 | assert(Idx < STy->getNumElements() && "Struct index out of range!"); |
| 2387 | Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1); |
| 2388 | |
| 2389 | // Return the modified struct. |
| 2390 | return ConstantStruct::get(STy, Elts); |
| 2391 | } |
| 2392 | |
| 2393 | ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo)); |
| 2394 | SequentialType *InitTy = cast<SequentialType>(Init->getType()); |
Peter Collingbourne | bc07052 | 2016-12-02 03:20:58 +0000 | [diff] [blame] | 2395 | uint64_t NumElts = InitTy->getNumElements(); |
Anthony Pesch | e92ae2d | 2015-07-22 22:26:54 +0000 | [diff] [blame] | 2396 | |
| 2397 | // Break up the array into elements. |
| 2398 | for (uint64_t i = 0, e = NumElts; i != e; ++i) |
| 2399 | Elts.push_back(Init->getAggregateElement(i)); |
| 2400 | |
| 2401 | assert(CI->getZExtValue() < NumElts); |
| 2402 | Elts[CI->getZExtValue()] = |
| 2403 | EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1); |
| 2404 | |
| 2405 | if (Init->getType()->isArrayTy()) |
| 2406 | return ConstantArray::get(cast<ArrayType>(InitTy), Elts); |
| 2407 | return ConstantVector::get(Elts); |
| 2408 | } |
| 2409 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 2410 | /// We have decided that Addr (which satisfies the predicate |
Anthony Pesch | e92ae2d | 2015-07-22 22:26:54 +0000 | [diff] [blame] | 2411 | /// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen. |
| 2412 | static void CommitValueTo(Constant *Val, Constant *Addr) { |
| 2413 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) { |
| 2414 | assert(GV->hasInitializer()); |
| 2415 | GV->setInitializer(Val); |
| 2416 | return; |
| 2417 | } |
| 2418 | |
| 2419 | ConstantExpr *CE = cast<ConstantExpr>(Addr); |
| 2420 | GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0)); |
| 2421 | GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2)); |
| 2422 | } |
| 2423 | |
Amara Emerson | 93b0ff2 | 2018-01-31 23:56:07 +0000 | [diff] [blame] | 2424 | /// Given a map of address -> value, where addresses are expected to be some form |
| 2425 | /// of either a global or a constant GEP, set the initializer for the address to |
| 2426 | /// be the value. This performs mostly the same function as CommitValueTo() |
| 2427 | /// and EvaluateStoreInto() but is optimized to be more efficient for the common |
| 2428 | /// case where the set of addresses are GEPs sharing the same underlying global, |
| 2429 | /// processing the GEPs in batches rather than individually. |
| 2430 | /// |
| 2431 | /// To give an example, consider the following C++ code adapted from the clang |
| 2432 | /// regression tests: |
| 2433 | /// struct S { |
| 2434 | /// int n = 10; |
| 2435 | /// int m = 2 * n; |
| 2436 | /// S(int a) : n(a) {} |
| 2437 | /// }; |
| 2438 | /// |
| 2439 | /// template<typename T> |
| 2440 | /// struct U { |
| 2441 | /// T *r = &q; |
| 2442 | /// T q = 42; |
| 2443 | /// U *p = this; |
| 2444 | /// }; |
| 2445 | /// |
| 2446 | /// U<S> e; |
| 2447 | /// |
| 2448 | /// The global static constructor for 'e' will need to initialize 'r' and 'p' of |
| 2449 | /// the outer struct, while also initializing the inner 'q' structs 'n' and 'm' |
| 2450 | /// members. This batch algorithm will simply use general CommitValueTo() method |
| 2451 | /// to handle the complex nested S struct initialization of 'q', before |
| 2452 | /// processing the outermost members in a single batch. Using CommitValueTo() to |
| 2453 | /// handle member in the outer struct is inefficient when the struct/array is |
| 2454 | /// very large as we end up creating and destroy constant arrays for each |
| 2455 | /// initialization. |
| 2456 | /// For the above case, we expect the following IR to be generated: |
| 2457 | /// |
| 2458 | /// %struct.U = type { %struct.S*, %struct.S, %struct.U* } |
| 2459 | /// %struct.S = type { i32, i32 } |
| 2460 | /// @e = global %struct.U { %struct.S* gep inbounds (%struct.U, %struct.U* @e, |
| 2461 | /// i64 0, i32 1), |
| 2462 | /// %struct.S { i32 42, i32 84 }, %struct.U* @e } |
| 2463 | /// The %struct.S { i32 42, i32 84 } inner initializer is treated as a complex |
| 2464 | /// constant expression, while the other two elements of @e are "simple". |
| 2465 | static void BatchCommitValueTo(const DenseMap<Constant*, Constant*> &Mem) { |
| 2466 | SmallVector<std::pair<GlobalVariable*, Constant*>, 32> GVs; |
| 2467 | SmallVector<std::pair<ConstantExpr*, Constant*>, 32> ComplexCEs; |
| 2468 | SmallVector<std::pair<ConstantExpr*, Constant*>, 32> SimpleCEs; |
| 2469 | SimpleCEs.reserve(Mem.size()); |
| 2470 | |
| 2471 | for (const auto &I : Mem) { |
| 2472 | if (auto *GV = dyn_cast<GlobalVariable>(I.first)) { |
| 2473 | GVs.push_back(std::make_pair(GV, I.second)); |
| 2474 | } else { |
| 2475 | ConstantExpr *GEP = cast<ConstantExpr>(I.first); |
| 2476 | // We don't handle the deeply recursive case using the batch method. |
| 2477 | if (GEP->getNumOperands() > 3) |
| 2478 | ComplexCEs.push_back(std::make_pair(GEP, I.second)); |
| 2479 | else |
| 2480 | SimpleCEs.push_back(std::make_pair(GEP, I.second)); |
| 2481 | } |
| 2482 | } |
| 2483 | |
| 2484 | // The algorithm below doesn't handle cases like nested structs, so use the |
| 2485 | // slower fully general method if we have to. |
| 2486 | for (auto ComplexCE : ComplexCEs) |
| 2487 | CommitValueTo(ComplexCE.second, ComplexCE.first); |
| 2488 | |
| 2489 | for (auto GVPair : GVs) { |
| 2490 | assert(GVPair.first->hasInitializer()); |
| 2491 | GVPair.first->setInitializer(GVPair.second); |
| 2492 | } |
| 2493 | |
| 2494 | if (SimpleCEs.empty()) |
| 2495 | return; |
| 2496 | |
| 2497 | // We cache a single global's initializer elements in the case where the |
| 2498 | // subsequent address/val pair uses the same one. This avoids throwing away and |
| 2499 | // rebuilding the constant struct/vector/array just because one element is |
| 2500 | // modified at a time. |
| 2501 | SmallVector<Constant *, 32> Elts; |
| 2502 | Elts.reserve(SimpleCEs.size()); |
| 2503 | GlobalVariable *CurrentGV = nullptr; |
| 2504 | |
| 2505 | auto commitAndSetupCache = [&](GlobalVariable *GV, bool Update) { |
| 2506 | Constant *Init = GV->getInitializer(); |
| 2507 | Type *Ty = Init->getType(); |
| 2508 | if (Update) { |
| 2509 | if (CurrentGV) { |
| 2510 | assert(CurrentGV && "Expected a GV to commit to!"); |
| 2511 | Type *CurrentInitTy = CurrentGV->getInitializer()->getType(); |
| 2512 | // We have a valid cache that needs to be committed. |
| 2513 | if (StructType *STy = dyn_cast<StructType>(CurrentInitTy)) |
| 2514 | CurrentGV->setInitializer(ConstantStruct::get(STy, Elts)); |
| 2515 | else if (ArrayType *ArrTy = dyn_cast<ArrayType>(CurrentInitTy)) |
| 2516 | CurrentGV->setInitializer(ConstantArray::get(ArrTy, Elts)); |
| 2517 | else |
| 2518 | CurrentGV->setInitializer(ConstantVector::get(Elts)); |
| 2519 | } |
| 2520 | if (CurrentGV == GV) |
| 2521 | return; |
| 2522 | // Need to clear and set up cache for new initializer. |
| 2523 | CurrentGV = GV; |
| 2524 | Elts.clear(); |
| 2525 | unsigned NumElts; |
| 2526 | if (auto *STy = dyn_cast<StructType>(Ty)) |
| 2527 | NumElts = STy->getNumElements(); |
| 2528 | else |
| 2529 | NumElts = cast<SequentialType>(Ty)->getNumElements(); |
| 2530 | for (unsigned i = 0, e = NumElts; i != e; ++i) |
| 2531 | Elts.push_back(Init->getAggregateElement(i)); |
| 2532 | } |
| 2533 | }; |
| 2534 | |
| 2535 | for (auto CEPair : SimpleCEs) { |
| 2536 | ConstantExpr *GEP = CEPair.first; |
| 2537 | Constant *Val = CEPair.second; |
| 2538 | |
| 2539 | GlobalVariable *GV = cast<GlobalVariable>(GEP->getOperand(0)); |
| 2540 | commitAndSetupCache(GV, GV != CurrentGV); |
| 2541 | ConstantInt *CI = cast<ConstantInt>(GEP->getOperand(2)); |
| 2542 | Elts[CI->getZExtValue()] = Val; |
| 2543 | } |
| 2544 | // The last initializer in the list needs to be committed, others |
| 2545 | // will be committed on a new initializer being processed. |
| 2546 | commitAndSetupCache(CurrentGV, true); |
| 2547 | } |
| 2548 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 2549 | /// Evaluate static constructors in the function, if we can. Return true if we |
| 2550 | /// can, false otherwise. |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 2551 | static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL, |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2552 | TargetLibraryInfo *TLI) { |
Chris Lattner | da1889b | 2005-09-27 04:27:01 +0000 | [diff] [blame] | 2553 | // Call the function. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 2554 | Evaluator Eval(DL, TLI); |
Chris Lattner | 65a3a09 | 2005-09-27 04:45:34 +0000 | [diff] [blame] | 2555 | Constant *RetValDummy; |
Nick Lewycky | 73be5e3 | 2012-02-19 23:26:27 +0000 | [diff] [blame] | 2556 | bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy, |
| 2557 | SmallVector<Constant*, 0>()); |
Jakub Staszak | 9525a77 | 2012-12-06 21:57:16 +0000 | [diff] [blame] | 2558 | |
Chris Lattner | da1889b | 2005-09-27 04:27:01 +0000 | [diff] [blame] | 2559 | if (EvalSuccess) { |
Nico Weber | 4b2acde | 2014-05-02 18:35:25 +0000 | [diff] [blame] | 2560 | ++NumCtorsEvaluated; |
| 2561 | |
Chris Lattner | 6bf2cd5 | 2005-09-26 17:07:09 +0000 | [diff] [blame] | 2562 | // We succeeded at evaluation: commit the result. |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2563 | LLVM_DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '" |
| 2564 | << F->getName() << "' to " |
| 2565 | << Eval.getMutatedMemory().size() << " stores.\n"); |
Amara Emerson | 93b0ff2 | 2018-01-31 23:56:07 +0000 | [diff] [blame] | 2566 | BatchCommitValueTo(Eval.getMutatedMemory()); |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2567 | for (GlobalVariable *GV : Eval.getInvariants()) |
| 2568 | GV->setConstant(true); |
Chris Lattner | 6bf2cd5 | 2005-09-26 17:07:09 +0000 | [diff] [blame] | 2569 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 2570 | |
Chris Lattner | da1889b | 2005-09-27 04:27:01 +0000 | [diff] [blame] | 2571 | return EvalSuccess; |
Chris Lattner | 99e23fa | 2005-09-26 04:44:35 +0000 | [diff] [blame] | 2572 | } |
| 2573 | |
Benjamin Kramer | adf1ea8 | 2014-03-07 21:52:38 +0000 | [diff] [blame] | 2574 | static int compareNames(Constant *const *A, Constant *const *B) { |
Benjamin Kramer | 96f4b12 | 2016-03-15 14:18:26 +0000 | [diff] [blame] | 2575 | Value *AStripped = (*A)->stripPointerCastsNoFollowAliases(); |
| 2576 | Value *BStripped = (*B)->stripPointerCastsNoFollowAliases(); |
| 2577 | return AStripped->getName().compare(BStripped->getName()); |
Benjamin Kramer | adf1ea8 | 2014-03-07 21:52:38 +0000 | [diff] [blame] | 2578 | } |
| 2579 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2580 | static void setUsedInitializer(GlobalVariable &V, |
Florian Hahn | a1cc848 | 2018-06-12 11:16:56 +0000 | [diff] [blame] | 2581 | const SmallPtrSetImpl<GlobalValue *> &Init) { |
Rafael Espindola | c2bb73f | 2013-07-20 23:33:15 +0000 | [diff] [blame] | 2582 | if (Init.empty()) { |
| 2583 | V.eraseFromParent(); |
| 2584 | return; |
| 2585 | } |
| 2586 | |
Matt Arsenault | da1deab | 2014-01-02 19:53:49 +0000 | [diff] [blame] | 2587 | // Type of pointer to the array of pointers. |
| 2588 | PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0); |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2589 | |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2590 | SmallVector<Constant *, 8> UsedArray; |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 2591 | for (GlobalValue *GV : Init) { |
Matt Arsenault | da1deab | 2014-01-02 19:53:49 +0000 | [diff] [blame] | 2592 | Constant *Cast |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 2593 | = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy); |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2594 | UsedArray.push_back(Cast); |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2595 | } |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2596 | // Sort to get deterministic order. |
Benjamin Kramer | adf1ea8 | 2014-03-07 21:52:38 +0000 | [diff] [blame] | 2597 | array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames); |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2598 | ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size()); |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2599 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2600 | Module *M = V.getParent(); |
| 2601 | V.removeFromParent(); |
| 2602 | GlobalVariable *NV = |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2603 | new GlobalVariable(*M, ATy, false, GlobalValue::AppendingLinkage, |
| 2604 | ConstantArray::get(ATy, UsedArray), ""); |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2605 | NV->takeName(&V); |
| 2606 | NV->setSection("llvm.metadata"); |
| 2607 | delete &V; |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2608 | } |
| 2609 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2610 | namespace { |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2611 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 2612 | /// An easy to access representation of llvm.used and llvm.compiler.used. |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2613 | class LLVMUsed { |
| 2614 | SmallPtrSet<GlobalValue *, 8> Used; |
| 2615 | SmallPtrSet<GlobalValue *, 8> CompilerUsed; |
| 2616 | GlobalVariable *UsedV; |
| 2617 | GlobalVariable *CompilerUsedV; |
| 2618 | |
| 2619 | public: |
Rafael Espindola | ec2375f | 2013-07-25 02:50:08 +0000 | [diff] [blame] | 2620 | LLVMUsed(Module &M) { |
Rafael Espindola | 17600e2 | 2013-07-25 03:23:25 +0000 | [diff] [blame] | 2621 | UsedV = collectUsedGlobalVariables(M, Used, false); |
| 2622 | CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true); |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2623 | } |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2624 | |
| 2625 | using iterator = SmallPtrSet<GlobalValue *, 8>::iterator; |
| 2626 | using used_iterator_range = iterator_range<iterator>; |
| 2627 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2628 | iterator usedBegin() { return Used.begin(); } |
| 2629 | iterator usedEnd() { return Used.end(); } |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2630 | |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2631 | used_iterator_range used() { |
| 2632 | return used_iterator_range(usedBegin(), usedEnd()); |
| 2633 | } |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2634 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2635 | iterator compilerUsedBegin() { return CompilerUsed.begin(); } |
| 2636 | iterator compilerUsedEnd() { return CompilerUsed.end(); } |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2637 | |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2638 | used_iterator_range compilerUsed() { |
| 2639 | return used_iterator_range(compilerUsedBegin(), compilerUsedEnd()); |
| 2640 | } |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2641 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2642 | bool usedCount(GlobalValue *GV) const { return Used.count(GV); } |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2643 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2644 | bool compilerUsedCount(GlobalValue *GV) const { |
| 2645 | return CompilerUsed.count(GV); |
| 2646 | } |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2647 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2648 | bool usedErase(GlobalValue *GV) { return Used.erase(GV); } |
| 2649 | bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); } |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 2650 | bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; } |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2651 | |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 2652 | bool compilerUsedInsert(GlobalValue *GV) { |
| 2653 | return CompilerUsed.insert(GV).second; |
| 2654 | } |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2655 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2656 | void syncVariablesAndSets() { |
| 2657 | if (UsedV) |
| 2658 | setUsedInitializer(*UsedV, Used); |
| 2659 | if (CompilerUsedV) |
| 2660 | setUsedInitializer(*CompilerUsedV, CompilerUsed); |
| 2661 | } |
| 2662 | }; |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2663 | |
| 2664 | } // end anonymous namespace |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2665 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2666 | static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) { |
| 2667 | if (GA.use_empty()) // No use at all. |
| 2668 | return false; |
| 2669 | |
| 2670 | assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) && |
| 2671 | "We should have removed the duplicated " |
Rafael Espindola | 9aadcc4 | 2013-07-19 18:44:51 +0000 | [diff] [blame] | 2672 | "element from llvm.compiler.used"); |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2673 | if (!GA.hasOneUse()) |
| 2674 | // Strictly more than one use. So at least one is not in llvm.used and |
Rafael Espindola | 9aadcc4 | 2013-07-19 18:44:51 +0000 | [diff] [blame] | 2675 | // llvm.compiler.used. |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2676 | return true; |
| 2677 | |
Rafael Espindola | 9aadcc4 | 2013-07-19 18:44:51 +0000 | [diff] [blame] | 2678 | // Exactly one use. Check if it is in llvm.used or llvm.compiler.used. |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2679 | return !U.usedCount(&GA) && !U.compilerUsedCount(&GA); |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2680 | } |
| 2681 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2682 | static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V, |
| 2683 | const LLVMUsed &U) { |
| 2684 | unsigned N = 2; |
| 2685 | assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) && |
| 2686 | "We should have removed the duplicated " |
Rafael Espindola | 9aadcc4 | 2013-07-19 18:44:51 +0000 | [diff] [blame] | 2687 | "element from llvm.compiler.used"); |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2688 | if (U.usedCount(&V) || U.compilerUsedCount(&V)) |
| 2689 | ++N; |
| 2690 | return V.hasNUsesOrMore(N); |
| 2691 | } |
| 2692 | |
| 2693 | static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) { |
| 2694 | if (!GA.hasLocalLinkage()) |
| 2695 | return true; |
| 2696 | |
| 2697 | return U.usedCount(&GA) || U.compilerUsedCount(&GA); |
| 2698 | } |
| 2699 | |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 2700 | static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U, |
| 2701 | bool &RenameTarget) { |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2702 | RenameTarget = false; |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2703 | bool Ret = false; |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2704 | if (hasUseOtherThanLLVMUsed(GA, U)) |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2705 | Ret = true; |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2706 | |
| 2707 | // If the alias is externally visible, we may still be able to simplify it. |
| 2708 | if (!mayHaveOtherReferences(GA, U)) |
| 2709 | return Ret; |
| 2710 | |
| 2711 | // If the aliasee has internal linkage, give it the name and linkage |
| 2712 | // of the alias, and delete the alias. This turns: |
| 2713 | // define internal ... @f(...) |
| 2714 | // @a = alias ... @f |
| 2715 | // into: |
| 2716 | // define ... @a(...) |
| 2717 | Constant *Aliasee = GA.getAliasee(); |
| 2718 | GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts()); |
| 2719 | if (!Target->hasLocalLinkage()) |
| 2720 | return Ret; |
| 2721 | |
| 2722 | // Do not perform the transform if multiple aliases potentially target the |
| 2723 | // aliasee. This check also ensures that it is safe to replace the section |
| 2724 | // and other attributes of the aliasee with those of the alias. |
| 2725 | if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U)) |
| 2726 | return Ret; |
| 2727 | |
| 2728 | RenameTarget = true; |
| 2729 | return true; |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2730 | } |
| 2731 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2732 | static bool |
| 2733 | OptimizeGlobalAliases(Module &M, |
Florian Hahn | a1cc848 | 2018-06-12 11:16:56 +0000 | [diff] [blame] | 2734 | SmallPtrSetImpl<const Comdat *> &NotDiscardableComdats) { |
Anton Korobeynikov | a9b60ee | 2008-09-09 19:04:59 +0000 | [diff] [blame] | 2735 | bool Changed = false; |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2736 | LLVMUsed Used(M); |
| 2737 | |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2738 | for (GlobalValue *GV : Used.used()) |
| 2739 | Used.compilerUsedErase(GV); |
Anton Korobeynikov | a9b60ee | 2008-09-09 19:04:59 +0000 | [diff] [blame] | 2740 | |
Duncan Sands | 0bcf085 | 2009-01-07 20:01:06 +0000 | [diff] [blame] | 2741 | for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); |
Duncan Sands | b3f2788 | 2009-02-15 09:56:08 +0000 | [diff] [blame] | 2742 | I != E;) { |
Rafael Espindola | 5349d87 | 2015-12-22 19:50:22 +0000 | [diff] [blame] | 2743 | GlobalAlias *J = &*I++; |
| 2744 | |
Duncan Sands | ed72283 | 2009-03-06 10:21:56 +0000 | [diff] [blame] | 2745 | // Aliases without names cannot be referenced outside this module. |
David Majnemer | 5c92115 | 2014-07-01 15:26:50 +0000 | [diff] [blame] | 2746 | if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage()) |
Duncan Sands | ed72283 | 2009-03-06 10:21:56 +0000 | [diff] [blame] | 2747 | J->setLinkage(GlobalValue::InternalLinkage); |
Rafael Espindola | 5349d87 | 2015-12-22 19:50:22 +0000 | [diff] [blame] | 2748 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2749 | if (deleteIfDead(*J, NotDiscardableComdats)) { |
Rafael Espindola | 5349d87 | 2015-12-22 19:50:22 +0000 | [diff] [blame] | 2750 | Changed = true; |
| 2751 | continue; |
| 2752 | } |
| 2753 | |
Eric Christopher | 675dcf0 | 2018-02-22 23:12:11 +0000 | [diff] [blame] | 2754 | // If the alias can change at link time, nothing can be done - bail out. |
Sanjoy Das | 5ce3272 | 2016-04-08 00:48:30 +0000 | [diff] [blame] | 2755 | if (J->isInterposable()) |
Anton Korobeynikov | a9b60ee | 2008-09-09 19:04:59 +0000 | [diff] [blame] | 2756 | continue; |
| 2757 | |
Duncan Sands | b3f2788 | 2009-02-15 09:56:08 +0000 | [diff] [blame] | 2758 | Constant *Aliasee = J->getAliasee(); |
David Majnemer | 0e2cc2a | 2014-07-01 00:30:56 +0000 | [diff] [blame] | 2759 | GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts()); |
| 2760 | // We can't trivially replace the alias with the aliasee if the aliasee is |
| 2761 | // non-trivial in some way. |
| 2762 | // TODO: Try to handle non-zero GEPs of local aliasees. |
| 2763 | if (!Target) |
| 2764 | continue; |
Duncan Sands | 7a1db33 | 2009-02-18 17:55:38 +0000 | [diff] [blame] | 2765 | Target->removeDeadConstantUsers(); |
Duncan Sands | b3f2788 | 2009-02-15 09:56:08 +0000 | [diff] [blame] | 2766 | |
| 2767 | // Make all users of the alias use the aliasee instead. |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2768 | bool RenameTarget; |
| 2769 | if (!hasUsesToReplace(*J, Used, RenameTarget)) |
Rafael Espindola | 0075216 | 2013-05-09 17:22:59 +0000 | [diff] [blame] | 2770 | continue; |
Duncan Sands | b3f2788 | 2009-02-15 09:56:08 +0000 | [diff] [blame] | 2771 | |
Rafael Espindola | 6b23863 | 2014-05-16 19:35:39 +0000 | [diff] [blame] | 2772 | J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType())); |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2773 | ++NumAliasesResolved; |
| 2774 | Changed = true; |
Duncan Sands | b3f2788 | 2009-02-15 09:56:08 +0000 | [diff] [blame] | 2775 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2776 | if (RenameTarget) { |
Duncan Sands | 6a3df7b | 2009-12-08 10:10:20 +0000 | [diff] [blame] | 2777 | // Give the aliasee the name, linkage and other attributes of the alias. |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 2778 | Target->takeName(&*J); |
Duncan Sands | 6a3df7b | 2009-12-08 10:10:20 +0000 | [diff] [blame] | 2779 | Target->setLinkage(J->getLinkage()); |
Rafael Espindola | e4b0231 | 2018-01-11 22:15:05 +0000 | [diff] [blame] | 2780 | Target->setDSOLocal(J->isDSOLocal()); |
Reid Kleckner | 22b19da | 2014-02-13 02:18:36 +0000 | [diff] [blame] | 2781 | Target->setVisibility(J->getVisibility()); |
| 2782 | Target->setDLLStorageClass(J->getDLLStorageClass()); |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2783 | |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 2784 | if (Used.usedErase(&*J)) |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2785 | Used.usedInsert(Target); |
| 2786 | |
Duncan P. N. Exon Smith | 1732340 | 2015-10-13 17:51:03 +0000 | [diff] [blame] | 2787 | if (Used.compilerUsedErase(&*J)) |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2788 | Used.compilerUsedInsert(Target); |
Rafael Espindola | 8d30480 | 2013-06-12 16:45:47 +0000 | [diff] [blame] | 2789 | } else if (mayHaveOtherReferences(*J, Used)) |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2790 | continue; |
| 2791 | |
Duncan Sands | b3f2788 | 2009-02-15 09:56:08 +0000 | [diff] [blame] | 2792 | // Delete the alias. |
| 2793 | M.getAliasList().erase(J); |
| 2794 | ++NumAliasesRemoved; |
| 2795 | Changed = true; |
Anton Korobeynikov | a9b60ee | 2008-09-09 19:04:59 +0000 | [diff] [blame] | 2796 | } |
| 2797 | |
Rafael Espindola | a82555c | 2013-06-11 17:48:06 +0000 | [diff] [blame] | 2798 | Used.syncVariablesAndSets(); |
| 2799 | |
Anton Korobeynikov | a9b60ee | 2008-09-09 19:04:59 +0000 | [diff] [blame] | 2800 | return Changed; |
| 2801 | } |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2802 | |
Nick Lewycky | 4b273cb | 2012-02-12 02:15:20 +0000 | [diff] [blame] | 2803 | static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) { |
David L. Jones | d21529f | 2017-01-23 23:16:46 +0000 | [diff] [blame] | 2804 | LibFunc F = LibFunc_cxa_atexit; |
Ahmed Bougacha | d765a82 | 2016-04-27 19:04:35 +0000 | [diff] [blame] | 2805 | if (!TLI->has(F)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2806 | return nullptr; |
Nick Lewycky | 4b273cb | 2012-02-12 02:15:20 +0000 | [diff] [blame] | 2807 | |
Ahmed Bougacha | d765a82 | 2016-04-27 19:04:35 +0000 | [diff] [blame] | 2808 | Function *Fn = M.getFunction(TLI->getName(F)); |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2809 | if (!Fn) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2810 | return nullptr; |
Nick Lewycky | 4b273cb | 2012-02-12 02:15:20 +0000 | [diff] [blame] | 2811 | |
Ahmed Bougacha | d765a82 | 2016-04-27 19:04:35 +0000 | [diff] [blame] | 2812 | // Make sure that the function has the correct prototype. |
David L. Jones | d21529f | 2017-01-23 23:16:46 +0000 | [diff] [blame] | 2813 | if (!TLI->getLibFunc(*Fn, F) || F != LibFunc_cxa_atexit) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2814 | return nullptr; |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2815 | |
| 2816 | return Fn; |
| 2817 | } |
| 2818 | |
James Molloy | ea31ad3 | 2015-11-13 11:05:07 +0000 | [diff] [blame] | 2819 | /// Returns whether the given function is an empty C++ destructor and can |
| 2820 | /// therefore be eliminated. |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2821 | /// Note that we assume that other optimization passes have already simplified |
| 2822 | /// the code so we only look for a function with a single basic block, where |
Benjamin Kramer | 1a4695a | 2012-02-09 16:28:15 +0000 | [diff] [blame] | 2823 | /// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and |
| 2824 | /// other side-effect free instructions. |
Anders Carlsson | fcec2f5 | 2011-03-20 20:16:43 +0000 | [diff] [blame] | 2825 | static bool cxxDtorIsEmpty(const Function &Fn, |
| 2826 | SmallPtrSet<const Function *, 8> &CalledFunctions) { |
Anders Carlsson | 48a4491 | 2011-03-20 19:51:13 +0000 | [diff] [blame] | 2827 | // FIXME: We could eliminate C++ destructors if they're readonly/readnone and |
Nick Lewycky | d078183 | 2011-03-21 02:26:01 +0000 | [diff] [blame] | 2828 | // nounwind, but that doesn't seem worth doing. |
Anders Carlsson | 48a4491 | 2011-03-20 19:51:13 +0000 | [diff] [blame] | 2829 | if (Fn.isDeclaration()) |
| 2830 | return false; |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2831 | |
| 2832 | if (++Fn.begin() != Fn.end()) |
| 2833 | return false; |
| 2834 | |
| 2835 | const BasicBlock &EntryBlock = Fn.getEntryBlock(); |
| 2836 | for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end(); |
| 2837 | I != E; ++I) { |
| 2838 | if (const CallInst *CI = dyn_cast<CallInst>(I)) { |
Anders Carlsson | 4dd420f | 2011-03-21 14:54:40 +0000 | [diff] [blame] | 2839 | // Ignore debug intrinsics. |
| 2840 | if (isa<DbgInfoIntrinsic>(CI)) |
| 2841 | continue; |
| 2842 | |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2843 | const Function *CalledFn = CI->getCalledFunction(); |
| 2844 | |
| 2845 | if (!CalledFn) |
| 2846 | return false; |
| 2847 | |
Anders Carlsson | 1cc8073 | 2011-03-22 03:21:01 +0000 | [diff] [blame] | 2848 | SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions); |
| 2849 | |
Anders Carlsson | 48a4491 | 2011-03-20 19:51:13 +0000 | [diff] [blame] | 2850 | // Don't treat recursive functions as empty. |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 2851 | if (!NewCalledFunctions.insert(CalledFn).second) |
Anders Carlsson | 48a4491 | 2011-03-20 19:51:13 +0000 | [diff] [blame] | 2852 | return false; |
| 2853 | |
Anders Carlsson | 1cc8073 | 2011-03-22 03:21:01 +0000 | [diff] [blame] | 2854 | if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions)) |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2855 | return false; |
| 2856 | } else if (isa<ReturnInst>(*I)) |
Benjamin Kramer | 487a396 | 2012-02-09 14:26:06 +0000 | [diff] [blame] | 2857 | return true; // We're done. |
| 2858 | else if (I->mayHaveSideEffects()) |
| 2859 | return false; // Destructor with side effects, bail. |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2860 | } |
| 2861 | |
| 2862 | return false; |
| 2863 | } |
| 2864 | |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2865 | static bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) { |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2866 | /// Itanium C++ ABI p3.3.5: |
| 2867 | /// |
| 2868 | /// After constructing a global (or local static) object, that will require |
| 2869 | /// destruction on exit, a termination function is registered as follows: |
| 2870 | /// |
| 2871 | /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d ); |
| 2872 | /// |
| 2873 | /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the |
| 2874 | /// call f(p) when DSO d is unloaded, before all such termination calls |
| 2875 | /// registered before this one. It returns zero if registration is |
Nick Lewycky | d078183 | 2011-03-21 02:26:01 +0000 | [diff] [blame] | 2876 | /// successful, nonzero on failure. |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2877 | |
| 2878 | // This pass will look for calls to __cxa_atexit where the function is trivial |
| 2879 | // and remove them. |
| 2880 | bool Changed = false; |
| 2881 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 2882 | for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end(); |
| 2883 | I != E;) { |
Anders Carlsson | 336fd90 | 2011-03-20 20:21:33 +0000 | [diff] [blame] | 2884 | // We're only interested in calls. Theoretically, we could handle invoke |
| 2885 | // instructions as well, but neither llvm-gcc nor clang generate invokes |
| 2886 | // to __cxa_atexit. |
Anders Carlsson | 4dd420f | 2011-03-21 14:54:40 +0000 | [diff] [blame] | 2887 | CallInst *CI = dyn_cast<CallInst>(*I++); |
| 2888 | if (!CI) |
Anders Carlsson | 336fd90 | 2011-03-20 20:21:33 +0000 | [diff] [blame] | 2889 | continue; |
| 2890 | |
Jakub Staszak | 9525a77 | 2012-12-06 21:57:16 +0000 | [diff] [blame] | 2891 | Function *DtorFn = |
Anders Carlsson | 4dd420f | 2011-03-21 14:54:40 +0000 | [diff] [blame] | 2892 | dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts()); |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2893 | if (!DtorFn) |
| 2894 | continue; |
| 2895 | |
Anders Carlsson | fcec2f5 | 2011-03-20 20:16:43 +0000 | [diff] [blame] | 2896 | SmallPtrSet<const Function *, 8> CalledFunctions; |
| 2897 | if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions)) |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2898 | continue; |
| 2899 | |
| 2900 | // Just remove the call. |
Anders Carlsson | 4dd420f | 2011-03-21 14:54:40 +0000 | [diff] [blame] | 2901 | CI->replaceAllUsesWith(Constant::getNullValue(CI->getType())); |
| 2902 | CI->eraseFromParent(); |
Anders Carlsson | 48a4491 | 2011-03-20 19:51:13 +0000 | [diff] [blame] | 2903 | |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2904 | ++NumCXXDtorsRemoved; |
| 2905 | |
| 2906 | Changed |= true; |
| 2907 | } |
| 2908 | |
| 2909 | return Changed; |
| 2910 | } |
| 2911 | |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 2912 | static bool optimizeGlobalsInModule( |
| 2913 | Module &M, const DataLayout &DL, TargetLibraryInfo *TLI, |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2914 | function_ref<TargetTransformInfo &(Function &)> GetTTI, |
| 2915 | function_ref<BlockFrequencyInfo &(Function &)> GetBFI, |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 2916 | function_ref<DominatorTree &(Function &)> LookupDomTree) { |
Florian Hahn | a1cc848 | 2018-06-12 11:16:56 +0000 | [diff] [blame] | 2917 | SmallPtrSet<const Comdat *, 8> NotDiscardableComdats; |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 2918 | bool Changed = false; |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 2919 | bool LocalChange = true; |
| 2920 | while (LocalChange) { |
| 2921 | LocalChange = false; |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 2922 | |
David Majnemer | 1b3b70e | 2014-10-08 07:23:31 +0000 | [diff] [blame] | 2923 | NotDiscardableComdats.clear(); |
| 2924 | for (const GlobalVariable &GV : M.globals()) |
| 2925 | if (const Comdat *C = GV.getComdat()) |
| 2926 | if (!GV.isDiscardableIfUnused() || !GV.use_empty()) |
| 2927 | NotDiscardableComdats.insert(C); |
| 2928 | for (Function &F : M) |
| 2929 | if (const Comdat *C = F.getComdat()) |
| 2930 | if (!F.isDefTriviallyDead()) |
| 2931 | NotDiscardableComdats.insert(C); |
| 2932 | for (GlobalAlias &GA : M.aliases()) |
| 2933 | if (const Comdat *C = GA.getComdat()) |
| 2934 | if (!GA.isDiscardableIfUnused() || !GA.use_empty()) |
| 2935 | NotDiscardableComdats.insert(C); |
| 2936 | |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2937 | // Delete functions that are trivially dead, ccc -> fastcc |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2938 | LocalChange |= OptimizeFunctions(M, TLI, GetTTI, GetBFI, LookupDomTree, |
| 2939 | NotDiscardableComdats); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 2940 | |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2941 | // Optimize global_ctors list. |
Richard Smith | c167d65 | 2014-05-06 01:44:26 +0000 | [diff] [blame] | 2942 | LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) { |
| 2943 | return EvaluateStaticConstructor(F, DL, TLI); |
| 2944 | }); |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 2945 | |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2946 | // Optimize non-address-taken globals. |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2947 | LocalChange |= OptimizeGlobalVars(M, TLI, LookupDomTree, |
| 2948 | NotDiscardableComdats); |
Anton Korobeynikov | a9b60ee | 2008-09-09 19:04:59 +0000 | [diff] [blame] | 2949 | |
| 2950 | // Resolve aliases, when possible. |
Justin Bogner | d2f3d0a | 2016-04-26 00:27:56 +0000 | [diff] [blame] | 2951 | LocalChange |= OptimizeGlobalAliases(M, NotDiscardableComdats); |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2952 | |
Manman Ren | b3c52fb | 2013-05-14 21:52:44 +0000 | [diff] [blame] | 2953 | // Try to remove trivial global destructors if they are not removed |
| 2954 | // already. |
| 2955 | Function *CXAAtExitFn = FindCXAAtExit(M, TLI); |
Anders Carlsson | ee6bc70 | 2011-03-20 17:59:11 +0000 | [diff] [blame] | 2956 | if (CXAAtExitFn) |
| 2957 | LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn); |
| 2958 | |
Anton Korobeynikov | a9b60ee | 2008-09-09 19:04:59 +0000 | [diff] [blame] | 2959 | Changed |= LocalChange; |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 2960 | } |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 2961 | |
Chris Lattner | 41b6a5a | 2005-09-26 01:43:45 +0000 | [diff] [blame] | 2962 | // TODO: Move all global ctors functions to the end of the module for code |
| 2963 | // layout. |
Mikhail Glushenkov | cf2afe0 | 2010-10-18 21:16:00 +0000 | [diff] [blame] | 2964 | |
Chris Lattner | 25db580 | 2004-10-07 04:16:33 +0000 | [diff] [blame] | 2965 | return Changed; |
| 2966 | } |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 2967 | |
Sean Silva | fd03ac6 | 2016-08-09 00:28:38 +0000 | [diff] [blame] | 2968 | PreservedAnalyses GlobalOptPass::run(Module &M, ModuleAnalysisManager &AM) { |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 2969 | auto &DL = M.getDataLayout(); |
| 2970 | auto &TLI = AM.getResult<TargetLibraryAnalysis>(M); |
| 2971 | auto &FAM = |
| 2972 | AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager(); |
| 2973 | auto LookupDomTree = [&FAM](Function &F) -> DominatorTree &{ |
| 2974 | return FAM.getResult<DominatorTreeAnalysis>(F); |
| 2975 | }; |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 2976 | auto GetTTI = [&FAM](Function &F) -> TargetTransformInfo & { |
| 2977 | return FAM.getResult<TargetIRAnalysis>(F); |
| 2978 | }; |
| 2979 | |
| 2980 | auto GetBFI = [&FAM](Function &F) -> BlockFrequencyInfo & { |
| 2981 | return FAM.getResult<BlockFrequencyAnalysis>(F); |
| 2982 | }; |
| 2983 | |
| 2984 | if (!optimizeGlobalsInModule(M, DL, &TLI, GetTTI, GetBFI, LookupDomTree)) |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 2985 | return PreservedAnalyses::all(); |
| 2986 | return PreservedAnalyses::none(); |
| 2987 | } |
| 2988 | |
| 2989 | namespace { |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2990 | |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 2991 | struct GlobalOptLegacyPass : public ModulePass { |
| 2992 | static char ID; // Pass identification, replacement for typeid |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 2993 | |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 2994 | GlobalOptLegacyPass() : ModulePass(ID) { |
| 2995 | initializeGlobalOptLegacyPassPass(*PassRegistry::getPassRegistry()); |
| 2996 | } |
| 2997 | |
| 2998 | bool runOnModule(Module &M) override { |
| 2999 | if (skipModule(M)) |
| 3000 | return false; |
| 3001 | |
| 3002 | auto &DL = M.getDataLayout(); |
| 3003 | auto *TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
| 3004 | auto LookupDomTree = [this](Function &F) -> DominatorTree & { |
| 3005 | return this->getAnalysis<DominatorTreeWrapperPass>(F).getDomTree(); |
| 3006 | }; |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 3007 | auto GetTTI = [this](Function &F) -> TargetTransformInfo & { |
| 3008 | return this->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F); |
| 3009 | }; |
| 3010 | |
| 3011 | auto GetBFI = [this](Function &F) -> BlockFrequencyInfo & { |
| 3012 | return this->getAnalysis<BlockFrequencyInfoWrapperPass>(F).getBFI(); |
| 3013 | }; |
| 3014 | |
| 3015 | return optimizeGlobalsInModule(M, DL, TLI, GetTTI, GetBFI, LookupDomTree); |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 3016 | } |
| 3017 | |
| 3018 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 3019 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 3020 | AU.addRequired<TargetTransformInfoWrapperPass>(); |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 3021 | AU.addRequired<DominatorTreeWrapperPass>(); |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 3022 | AU.addRequired<BlockFrequencyInfoWrapperPass>(); |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 3023 | } |
| 3024 | }; |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 3025 | |
| 3026 | } // end anonymous namespace |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 3027 | |
| 3028 | char GlobalOptLegacyPass::ID = 0; |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 3029 | |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 3030 | INITIALIZE_PASS_BEGIN(GlobalOptLegacyPass, "globalopt", |
| 3031 | "Global Variable Optimizer", false, false) |
| 3032 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
Zaara Syeda | 1f59ae3 | 2018-01-30 16:17:22 +0000 | [diff] [blame] | 3033 | INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) |
| 3034 | INITIALIZE_PASS_DEPENDENCY(BlockFrequencyInfoWrapperPass) |
Justin Bogner | 1a07501 | 2016-04-26 00:28:01 +0000 | [diff] [blame] | 3035 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
| 3036 | INITIALIZE_PASS_END(GlobalOptLegacyPass, "globalopt", |
| 3037 | "Global Variable Optimizer", false, false) |
| 3038 | |
| 3039 | ModulePass *llvm::createGlobalOptimizerPass() { |
| 3040 | return new GlobalOptLegacyPass(); |
| 3041 | } |