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