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