blob: b9cef720a13dbd76a953ff24d81d8af6285476c6 [file] [log] [blame]
Chris Lattner25db5802004-10-07 04:16:33 +00001//===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chris Lattner25db5802004-10-07 04:16:33 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Chris Lattner25db5802004-10-07 04:16:33 +00008//===----------------------------------------------------------------------===//
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 Lattner25db5802004-10-07 04:16:33 +000016#include "llvm/Transforms/IPO.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/SmallPtrSet.h"
David Majnemerdad0a642014-06-27 18:19:56 +000020#include "llvm/ADT/SmallSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/SmallVector.h"
22#include "llvm/ADT/Statistic.h"
23#include "llvm/Analysis/ConstantFolding.h"
24#include "llvm/Analysis/MemoryBuiltins.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000025#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000026#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/CallingConv.h"
28#include "llvm/IR/Constants.h"
29#include "llvm/IR/DataLayout.h"
30#include "llvm/IR/DerivedTypes.h"
James Molloy9c7d4d82015-11-15 14:21:37 +000031#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000032#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/Instructions.h"
34#include "llvm/IR/IntrinsicInst.h"
35#include "llvm/IR/Module.h"
36#include "llvm/IR/Operator.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000037#include "llvm/IR/ValueHandle.h"
Chris Lattner25db5802004-10-07 04:16:33 +000038#include "llvm/Pass.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000039#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000040#include "llvm/Support/ErrorHandling.h"
Chris Lattner67ca6f632008-04-26 07:40:11 +000041#include "llvm/Support/MathExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000042#include "llvm/Support/raw_ostream.h"
Nico Weber4b2acde2014-05-02 18:35:25 +000043#include "llvm/Transforms/Utils/CtorUtils.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000044#include "llvm/Transforms/Utils/Evaluator.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000045#include "llvm/Transforms/Utils/GlobalStatus.h"
Rafael Espindola17600e22013-07-25 03:23:25 +000046#include "llvm/Transforms/Utils/ModuleUtils.h"
Chris Lattner25db5802004-10-07 04:16:33 +000047#include <algorithm>
Benjamin Kramer64425fe2014-05-03 15:50:37 +000048#include <deque>
Chris Lattner25db5802004-10-07 04:16:33 +000049using namespace llvm;
50
Chandler Carruth964daaa2014-04-22 02:55:47 +000051#define DEBUG_TYPE "globalopt"
52
Chris Lattner1631bcb2006-12-19 22:09:18 +000053STATISTIC(NumMarked , "Number of globals marked constant");
Rafael Espindolafc355bc2011-01-19 16:32:21 +000054STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
Chris Lattner1631bcb2006-12-19 22:09:18 +000055STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
56STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
57STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
58STATISTIC(NumDeleted , "Number of globals deleted");
Chris Lattner1631bcb2006-12-19 22:09:18 +000059STATISTIC(NumGlobUses , "Number of global uses devirtualized");
Alexey Samsonova1944e62013-10-07 19:03:24 +000060STATISTIC(NumLocalized , "Number of globals localized");
Chris Lattner1631bcb2006-12-19 22:09:18 +000061STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
62STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
63STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands573b3f82008-02-16 20:56:04 +000064STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sandsb3f27882009-02-15 09:56:08 +000065STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
66STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Anders Carlssonee6bc702011-03-20 17:59:11 +000067STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed");
Chris Lattner25db5802004-10-07 04:16:33 +000068
Chris Lattner1631bcb2006-12-19 22:09:18 +000069namespace {
Nick Lewycky02d5f772009-10-25 06:33:48 +000070 struct GlobalOpt : public ModulePass {
Craig Topper3e4c6972014-03-05 09:10:37 +000071 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruthb98f63d2015-01-15 10:41:28 +000072 AU.addRequired<TargetLibraryInfoWrapperPass>();
James Molloy9c7d4d82015-11-15 14:21:37 +000073 AU.addRequired<DominatorTreeWrapperPass>();
Chris Lattner004e2502004-10-11 05:54:41 +000074 }
Nick Lewyckye7da2d62007-05-06 13:37:16 +000075 static char ID; // Pass identification, replacement for typeid
Owen Anderson6c18d1a2010-10-19 17:21:58 +000076 GlobalOpt() : ModulePass(ID) {
77 initializeGlobalOptPass(*PassRegistry::getPassRegistry());
78 }
Misha Brukmanb1c93172005-04-21 23:48:37 +000079
Craig Topper3e4c6972014-03-05 09:10:37 +000080 bool runOnModule(Module &M) override;
Chris Lattner004e2502004-10-11 05:54:41 +000081
82 private:
Chris Lattner41b6a5a2005-09-26 01:43:45 +000083 bool OptimizeFunctions(Module &M);
84 bool OptimizeGlobalVars(Module &M);
Duncan Sandsed722832009-03-06 10:21:56 +000085 bool OptimizeGlobalAliases(Module &M);
Rafael Espindola2cc46b32015-12-22 19:38:07 +000086 bool deleteIfDead(GlobalValue &GV);
Rafael Espindola10d9a032015-12-22 20:43:30 +000087 bool processGlobal(GlobalValue &GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +000088 bool processInternalGlobal(GlobalVariable *GV, const GlobalStatus &GS);
Anders Carlssonee6bc702011-03-20 17:59:11 +000089 bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn);
James Molloyd4d23572015-11-16 10:16:22 +000090
91 bool isPointerValueDeadOnEntryToFunction(const Function *F,
92 GlobalValue *GV);
93
Nick Lewyckycf6aae62012-02-12 01:13:18 +000094 TargetLibraryInfo *TLI;
David Majnemer1b3b70e2014-10-08 07:23:31 +000095 SmallSet<const Comdat *, 8> NotDiscardableComdats;
Chris Lattner25db5802004-10-07 04:16:33 +000096 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +000097}
Chris Lattner25db5802004-10-07 04:16:33 +000098
Dan Gohmand78c4002008-05-13 00:00:25 +000099char GlobalOpt::ID = 0;
Chad Rosiere6de63d2011-12-01 21:29:16 +0000100INITIALIZE_PASS_BEGIN(GlobalOpt, "globalopt",
101 "Global Variable Optimizer", false, false)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000102INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
James Molloy9c7d4d82015-11-15 14:21:37 +0000103INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chad Rosiere6de63d2011-12-01 21:29:16 +0000104INITIALIZE_PASS_END(GlobalOpt, "globalopt",
Owen Andersondf7a4f22010-10-07 22:25:06 +0000105 "Global Variable Optimizer", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +0000106
Chris Lattner25db5802004-10-07 04:16:33 +0000107ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
108
James Molloyea31ad32015-11-13 11:05:07 +0000109/// Is this global variable possibly used by a leak checker as a root? If so,
110/// we might not really want to eliminate the stores to it.
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000111static bool isLeakCheckerRoot(GlobalVariable *GV) {
112 // A global variable is a root if it is a pointer, or could plausibly contain
113 // a pointer. There are two challenges; one is that we could have a struct
114 // the has an inner member which is a pointer. We recurse through the type to
115 // detect these (up to a point). The other is that we may actually be a union
116 // of a pointer and another type, and so our LLVM type is an integer which
117 // gets converted into a pointer, or our type is an [i8 x #] with a pointer
118 // potentially contained here.
119
120 if (GV->hasPrivateLinkage())
121 return false;
122
123 SmallVector<Type *, 4> Types;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000124 Types.push_back(GV->getValueType());
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000125
126 unsigned Limit = 20;
127 do {
128 Type *Ty = Types.pop_back_val();
129 switch (Ty->getTypeID()) {
130 default: break;
131 case Type::PointerTyID: return true;
132 case Type::ArrayTyID:
133 case Type::VectorTyID: {
134 SequentialType *STy = cast<SequentialType>(Ty);
135 Types.push_back(STy->getElementType());
136 break;
137 }
138 case Type::StructTyID: {
139 StructType *STy = cast<StructType>(Ty);
140 if (STy->isOpaque()) return true;
141 for (StructType::element_iterator I = STy->element_begin(),
142 E = STy->element_end(); I != E; ++I) {
143 Type *InnerTy = *I;
144 if (isa<PointerType>(InnerTy)) return true;
145 if (isa<CompositeType>(InnerTy))
146 Types.push_back(InnerTy);
147 }
148 break;
149 }
150 }
151 if (--Limit == 0) return true;
152 } while (!Types.empty());
153 return false;
154}
155
156/// Given a value that is stored to a global but never read, determine whether
157/// it's safe to remove the store and the chain of computation that feeds the
158/// store.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000159static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000160 do {
161 if (isa<Constant>(V))
162 return true;
163 if (!V->hasOneUse())
164 return false;
Nick Lewycky7d0f1102012-07-25 21:19:40 +0000165 if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
166 isa<GlobalValue>(V))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000167 return false;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000168 if (isAllocationFn(V, TLI))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000169 return true;
170
171 Instruction *I = cast<Instruction>(V);
172 if (I->mayHaveSideEffects())
173 return false;
174 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
175 if (!GEP->hasAllConstantIndices())
176 return false;
177 } else if (I->getNumOperands() != 1) {
178 return false;
179 }
180
181 V = I->getOperand(0);
182 } while (1);
183}
184
James Molloyea31ad32015-11-13 11:05:07 +0000185/// This GV is a pointer root. Loop over all users of the global and clean up
186/// any that obviously don't assign the global a value that isn't dynamically
187/// allocated.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000188static bool CleanupPointerRootUsers(GlobalVariable *GV,
189 const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000190 // A brief explanation of leak checkers. The goal is to find bugs where
191 // pointers are forgotten, causing an accumulating growth in memory
192 // usage over time. The common strategy for leak checkers is to whitelist the
193 // memory pointed to by globals at exit. This is popular because it also
194 // solves another problem where the main thread of a C++ program may shut down
195 // before other threads that are still expecting to use those globals. To
196 // handle that case, we expect the program may create a singleton and never
197 // destroy it.
198
199 bool Changed = false;
200
201 // If Dead[n].first is the only use of a malloc result, we can delete its
202 // chain of computation and the store to the global in Dead[n].second.
203 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
204
205 // Constants can't be pointers to dynamically allocated memory.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000206 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end();
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000207 UI != E;) {
208 User *U = *UI++;
209 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
210 Value *V = SI->getValueOperand();
211 if (isa<Constant>(V)) {
212 Changed = true;
213 SI->eraseFromParent();
214 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
215 if (I->hasOneUse())
216 Dead.push_back(std::make_pair(I, SI));
217 }
218 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
219 if (isa<Constant>(MSI->getValue())) {
220 Changed = true;
221 MSI->eraseFromParent();
222 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
223 if (I->hasOneUse())
224 Dead.push_back(std::make_pair(I, MSI));
225 }
226 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
227 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
228 if (MemSrc && MemSrc->isConstant()) {
229 Changed = true;
230 MTI->eraseFromParent();
231 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
232 if (I->hasOneUse())
233 Dead.push_back(std::make_pair(I, MTI));
234 }
235 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
236 if (CE->use_empty()) {
237 CE->destroyConstant();
238 Changed = true;
239 }
240 } else if (Constant *C = dyn_cast<Constant>(U)) {
Rafael Espindola27797ba2013-10-17 18:06:32 +0000241 if (isSafeToDestroyConstant(C)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000242 C->destroyConstant();
243 // This could have invalidated UI, start over from scratch.
244 Dead.clear();
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000245 CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000246 return true;
247 }
248 }
249 }
250
251 for (int i = 0, e = Dead.size(); i != e; ++i) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000252 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000253 Dead[i].second->eraseFromParent();
254 Instruction *I = Dead[i].first;
255 do {
Michael Gottesman2a654272013-01-11 23:08:52 +0000256 if (isAllocationFn(I, TLI))
257 break;
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000258 Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
259 if (!J)
260 break;
261 I->eraseFromParent();
262 I = J;
Nick Lewycky38be9312012-07-24 21:33:00 +0000263 } while (1);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000264 I->eraseFromParent();
265 }
266 }
267
268 return Changed;
269}
270
James Molloyea31ad32015-11-13 11:05:07 +0000271/// We just marked GV constant. Loop over all users of the global, cleaning up
272/// the obvious ones. This is largely just a quick scan over the use list to
273/// clean up the easy and obvious cruft. This returns true if it made a change.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000274static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
Mehdi Amini46a43552015-03-04 18:43:29 +0000275 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000276 TargetLibraryInfo *TLI) {
Chris Lattnercb9f1522004-10-10 16:43:46 +0000277 bool Changed = false;
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000278 // Note that we need to use a weak value handle for the worklist items. When
279 // we delete a constant array, we may also be holding pointer to one of its
280 // elements (or an element of one of its elements if we're dealing with an
281 // array of arrays) in the worklist.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000282 SmallVector<WeakVH, 8> WorkList(V->user_begin(), V->user_end());
Bill Wendling88d06c32013-04-02 08:16:45 +0000283 while (!WorkList.empty()) {
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000284 Value *UV = WorkList.pop_back_val();
285 if (!UV)
286 continue;
287
288 User *U = cast<User>(UV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000289
Chris Lattner25db5802004-10-07 04:16:33 +0000290 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000291 if (Init) {
292 // Replace the load with the initializer.
293 LI->replaceAllUsesWith(Init);
294 LI->eraseFromParent();
295 Changed = true;
296 }
Chris Lattner25db5802004-10-07 04:16:33 +0000297 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
298 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000299 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000300 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000301 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
302 if (CE->getOpcode() == Instruction::GetElementPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000303 Constant *SubInit = nullptr;
Chris Lattner46d9ff082005-09-26 07:34:35 +0000304 if (Init)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000305 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000306 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI);
Matt Arsenault461c8e02014-01-02 20:01:43 +0000307 } else if ((CE->getOpcode() == Instruction::BitCast &&
308 CE->getType()->isPointerTy()) ||
309 CE->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000310 // Pointer cast, delete any stores and memsets to the global.
Craig Topperf40110f2014-04-25 05:29:35 +0000311 Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI);
Chris Lattner7561ca12005-02-27 18:58:52 +0000312 }
313
314 if (CE->use_empty()) {
315 CE->destroyConstant();
316 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000317 }
318 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000319 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
320 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
321 // and will invalidate our notion of what Init is.
Craig Topperf40110f2014-04-25 05:29:35 +0000322 Constant *SubInit = nullptr;
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000323 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
Mehdi Amini46a43552015-03-04 18:43:29 +0000324 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000325 ConstantFoldInstruction(GEP, DL, TLI));
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000326 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000327 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Benjamin Krameraa9e4a52012-03-28 14:50:09 +0000328
329 // If the initializer is an all-null value and we have an inbounds GEP,
330 // we already know what the result of any load from that GEP is.
331 // TODO: Handle splats.
332 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
Eduard Burtescu19eb0312016-01-19 17:28:00 +0000333 SubInit = Constant::getNullValue(GEP->getResultElementType());
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000334 }
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000335 Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000336
Chris Lattnercb9f1522004-10-10 16:43:46 +0000337 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000338 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000339 Changed = true;
340 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000341 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
342 if (MI->getRawDest() == V) {
343 MI->eraseFromParent();
344 Changed = true;
345 }
346
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000347 } else if (Constant *C = dyn_cast<Constant>(U)) {
348 // If we have a chain of dead constantexprs or other things dangling from
349 // us, and if they are all dead, nuke them without remorse.
Rafael Espindola27797ba2013-10-17 18:06:32 +0000350 if (isSafeToDestroyConstant(C)) {
Devang Pateld926aaa2009-03-06 01:37:41 +0000351 C->destroyConstant();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000352 CleanupConstantGlobalUsers(V, Init, DL, TLI);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000353 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000354 }
Chris Lattner25db5802004-10-07 04:16:33 +0000355 }
356 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000357 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000358}
359
James Molloyea31ad32015-11-13 11:05:07 +0000360/// Return true if the specified instruction is a safe user of a derived
361/// expression from a global that we want to SROA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000362static bool isSafeSROAElementUse(Value *V) {
363 // We might have a dead and dangling constant hanging off of here.
364 if (Constant *C = dyn_cast<Constant>(V))
Rafael Espindola27797ba2013-10-17 18:06:32 +0000365 return isSafeToDestroyConstant(C);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000366
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000367 Instruction *I = dyn_cast<Instruction>(V);
368 if (!I) return false;
369
370 // Loads are ok.
371 if (isa<LoadInst>(I)) return true;
372
373 // Stores *to* the pointer are ok.
374 if (StoreInst *SI = dyn_cast<StoreInst>(I))
375 return SI->getOperand(0) != V;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000376
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000377 // Otherwise, it must be a GEP.
378 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
Craig Topperf40110f2014-04-25 05:29:35 +0000379 if (!GEPI) return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000380
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000381 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
382 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
383 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000384
Chandler Carruthcdf47882014-03-09 03:16:01 +0000385 for (User *U : GEPI->users())
386 if (!isSafeSROAElementUse(U))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000387 return false;
Chris Lattnerab053722008-01-14 01:31:05 +0000388 return true;
389}
390
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000391
James Molloyea31ad32015-11-13 11:05:07 +0000392/// U is a direct user of the specified global value. Look at it and its uses
393/// and decide whether it is safe to SROA this global.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000394static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
395 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000396 if (!isa<GetElementPtrInst>(U) &&
397 (!isa<ConstantExpr>(U) ||
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000398 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
399 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000400
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000401 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
402 // don't like < 3 operand CE's, and we don't like non-constant integer
403 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
404 // value of C.
405 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
406 !cast<Constant>(U->getOperand(1))->isNullValue() ||
407 !isa<ConstantInt>(U->getOperand(2)))
408 return false;
409
410 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
411 ++GEPI; // Skip over the pointer index.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000412
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000413 // If this is a use of an array allocation, do a bit more checking for sanity.
Chris Lattner229907c2011-07-18 04:54:35 +0000414 if (ArrayType *AT = dyn_cast<ArrayType>(*GEPI)) {
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000415 uint64_t NumElements = AT->getNumElements();
416 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000417
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000418 // Check to make sure that index falls within the array. If not,
419 // something funny is going on, so we won't do the optimization.
420 //
421 if (Idx->getZExtValue() >= NumElements)
422 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000423
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000424 // We cannot scalar repl this level of the array unless any array
425 // sub-indices are in-range constants. In particular, consider:
426 // A[0][i]. We cannot know that the user isn't doing invalid things like
427 // allowing i to index an out-of-range subscript that accesses A[1].
428 //
429 // Scalar replacing *just* the outer index of the array is probably not
430 // going to be a win anyway, so just give up.
431 for (++GEPI; // Skip array index.
Dan Gohman82ac81b2009-08-18 14:58:19 +0000432 GEPI != E;
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000433 ++GEPI) {
434 uint64_t NumElements;
Chris Lattner229907c2011-07-18 04:54:35 +0000435 if (ArrayType *SubArrayTy = dyn_cast<ArrayType>(*GEPI))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000436 NumElements = SubArrayTy->getNumElements();
Chris Lattner229907c2011-07-18 04:54:35 +0000437 else if (VectorType *SubVectorTy = dyn_cast<VectorType>(*GEPI))
Dan Gohman82ac81b2009-08-18 14:58:19 +0000438 NumElements = SubVectorTy->getNumElements();
439 else {
Duncan Sands19d0b472010-02-16 11:11:14 +0000440 assert((*GEPI)->isStructTy() &&
Dan Gohman82ac81b2009-08-18 14:58:19 +0000441 "Indexed GEP type is not array, vector, or struct!");
442 continue;
443 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000444
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000445 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
446 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
447 return false;
448 }
449 }
450
Chandler Carruthcdf47882014-03-09 03:16:01 +0000451 for (User *UU : U->users())
452 if (!isSafeSROAElementUse(UU))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000453 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000454
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000455 return true;
456}
457
James Molloyea31ad32015-11-13 11:05:07 +0000458/// Look at all uses of the global and decide whether it is safe for us to
459/// perform this transformation.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000460static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000461 for (User *U : GV->users())
462 if (!IsUserOfGlobalSafeForSRA(U, GV))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000463 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000464
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000465 return true;
466}
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000467
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000468
James Molloyea31ad32015-11-13 11:05:07 +0000469/// Perform scalar replacement of aggregates on the specified global variable.
470/// This opens the door for other optimizations by exposing the behavior of the
471/// program in a more fine-grained way. We have determined that this
472/// transformation is safe already. We return the first global variable we
Chris Lattnerabab0712004-10-08 17:32:09 +0000473/// insert so that the caller can reprocess it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000474static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
Chris Lattnerab053722008-01-14 01:31:05 +0000475 // Make sure this global only has simple uses that we can SRA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000476 if (!GlobalUsersSafeToSRA(GV))
Craig Topperf40110f2014-04-25 05:29:35 +0000477 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000478
Rafael Espindola6de96a12009-01-15 20:18:42 +0000479 assert(GV->hasLocalLinkage() && !GV->isConstant());
Chris Lattnerabab0712004-10-08 17:32:09 +0000480 Constant *Init = GV->getInitializer();
Chris Lattner229907c2011-07-18 04:54:35 +0000481 Type *Ty = Init->getType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000482
Chris Lattnerabab0712004-10-08 17:32:09 +0000483 std::vector<GlobalVariable*> NewGlobals;
484 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
485
Chris Lattner67ca6f632008-04-26 07:40:11 +0000486 // Get the alignment of the global, either explicit or target-specific.
487 unsigned StartAlignment = GV->getAlignment();
488 if (StartAlignment == 0)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000489 StartAlignment = DL.getABITypeAlignment(GV->getType());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000490
Chris Lattner229907c2011-07-18 04:54:35 +0000491 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Chris Lattnerabab0712004-10-08 17:32:09 +0000492 NewGlobals.reserve(STy->getNumElements());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000493 const StructLayout &Layout = *DL.getStructLayout(STy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000494 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000495 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000496 assert(In && "Couldn't get element of initializer?");
Chris Lattner46b5c642009-11-06 04:27:31 +0000497 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000498 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000499 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000500 GV->getThreadLocalMode(),
Owen Anderson5948fdf2009-07-08 01:26:06 +0000501 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000502 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000503 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000504 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000505 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000506
Chris Lattner67ca6f632008-04-26 07:40:11 +0000507 // Calculate the known alignment of the field. If the original aggregate
508 // had 256 byte alignment for example, something might depend on that:
509 // propagate info to each field.
510 uint64_t FieldOffset = Layout.getElementOffset(i);
511 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000512 if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i)))
Chris Lattner67ca6f632008-04-26 07:40:11 +0000513 NGV->setAlignment(NewAlign);
Chris Lattnerabab0712004-10-08 17:32:09 +0000514 }
Chris Lattner229907c2011-07-18 04:54:35 +0000515 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
Chris Lattnerabab0712004-10-08 17:32:09 +0000516 unsigned NumElements = 0;
Chris Lattner229907c2011-07-18 04:54:35 +0000517 if (ArrayType *ATy = dyn_cast<ArrayType>(STy))
Chris Lattnerabab0712004-10-08 17:32:09 +0000518 NumElements = ATy->getNumElements();
Chris Lattnerabab0712004-10-08 17:32:09 +0000519 else
Chris Lattner67ca6f632008-04-26 07:40:11 +0000520 NumElements = cast<VectorType>(STy)->getNumElements();
Chris Lattnerabab0712004-10-08 17:32:09 +0000521
Chris Lattner25169ca2005-02-23 16:53:04 +0000522 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Craig Topperf40110f2014-04-25 05:29:35 +0000523 return nullptr; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000524 NewGlobals.reserve(NumElements);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000525
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000526 uint64_t EltSize = DL.getTypeAllocSize(STy->getElementType());
527 unsigned EltAlign = DL.getABITypeAlignment(STy->getElementType());
Chris Lattnerabab0712004-10-08 17:32:09 +0000528 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000529 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000530 assert(In && "Couldn't get element of initializer?");
531
Chris Lattner46b5c642009-11-06 04:27:31 +0000532 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000533 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000534 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000535 GV->getThreadLocalMode(),
Owen Andersonb17f3292009-07-08 19:03:57 +0000536 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000537 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000538 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000539 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000540 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000541
Chris Lattner67ca6f632008-04-26 07:40:11 +0000542 // Calculate the known alignment of the field. If the original aggregate
543 // had 256 byte alignment for example, something might depend on that:
544 // propagate info to each field.
545 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
546 if (NewAlign > EltAlign)
547 NGV->setAlignment(NewAlign);
Chris Lattnerabab0712004-10-08 17:32:09 +0000548 }
549 }
550
551 if (NewGlobals.empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000552 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000553
James Molloyef607a22015-10-28 14:30:53 +0000554 DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n");
Chris Lattner004e2502004-10-11 05:54:41 +0000555
Chris Lattner46b5c642009-11-06 04:27:31 +0000556 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattnerabab0712004-10-08 17:32:09 +0000557
558 // Loop over all of the uses of the global, replacing the constantexpr geps,
559 // with smaller constantexpr geps or direct references.
560 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000561 User *GEP = GV->user_back();
Chris Lattner004e2502004-10-11 05:54:41 +0000562 assert(((isa<ConstantExpr>(GEP) &&
563 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
564 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000565
Chris Lattnerabab0712004-10-08 17:32:09 +0000566 // Ignore the 1th operand, which has to be zero or else the program is quite
567 // broken (undefined). Get the 2nd operand, which is the structure or array
568 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000569 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000570 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
571
Chris Lattner004e2502004-10-11 05:54:41 +0000572 Value *NewPtr = NewGlobals[Val];
David Blaikied9d900c2015-05-07 17:28:58 +0000573 Type *NewTy = NewGlobals[Val]->getValueType();
Chris Lattnerabab0712004-10-08 17:32:09 +0000574
575 // Form a shorter GEP if needed.
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000576 if (GEP->getNumOperands() > 3) {
Chris Lattner004e2502004-10-11 05:54:41 +0000577 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000578 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000579 Idxs.push_back(NullInt);
580 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
581 Idxs.push_back(CE->getOperand(i));
David Blaikie4a2e73b2015-04-02 18:55:32 +0000582 NewPtr =
583 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
Chris Lattner004e2502004-10-11 05:54:41 +0000584 } else {
585 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000586 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000587 Idxs.push_back(NullInt);
588 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
589 Idxs.push_back(GEPI->getOperand(i));
David Blaikie741c8f82015-03-14 01:53:18 +0000590 NewPtr = GetElementPtrInst::Create(
David Blaikied9d900c2015-05-07 17:28:58 +0000591 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
Chris Lattner004e2502004-10-11 05:54:41 +0000592 }
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000593 }
Chris Lattner004e2502004-10-11 05:54:41 +0000594 GEP->replaceAllUsesWith(NewPtr);
595
596 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000597 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000598 else
599 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000600 }
601
Chris Lattner73ad73e2004-10-08 20:25:55 +0000602 // Delete the old global, now that it is dead.
603 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000604 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000605
606 // Loop over the new globals array deleting any globals that are obviously
607 // dead. This can arise due to scalarization of a structure or an array that
608 // has elements that are dead.
609 unsigned FirstGlobal = 0;
610 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
611 if (NewGlobals[i]->use_empty()) {
612 Globals.erase(NewGlobals[i]);
613 if (FirstGlobal == i) ++FirstGlobal;
614 }
615
Craig Topperf40110f2014-04-25 05:29:35 +0000616 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
Chris Lattnerabab0712004-10-08 17:32:09 +0000617}
618
James Molloyea31ad32015-11-13 11:05:07 +0000619/// Return true if all users of the specified value will trap if the value is
620/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
621/// reprocessing them.
Gabor Greif67972872010-04-06 19:24:18 +0000622static bool AllUsesOfValueWillTrapIfNull(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +0000623 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000624 for (const User *U : V->users())
Gabor Greif08355d62010-04-06 19:14:05 +0000625 if (isa<LoadInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000626 // Will trap.
Gabor Greif67972872010-04-06 19:24:18 +0000627 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000628 if (SI->getOperand(0) == V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000629 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000630 return false; // Storing the value.
631 }
Gabor Greif67972872010-04-06 19:24:18 +0000632 } else if (const CallInst *CI = dyn_cast<CallInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000633 if (CI->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000634 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000635 return false; // Not calling the ptr
636 }
Gabor Greif67972872010-04-06 19:24:18 +0000637 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000638 if (II->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000639 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000640 return false; // Not calling the ptr
641 }
Gabor Greif67972872010-04-06 19:24:18 +0000642 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000643 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000644 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000645 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000646 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000647 // If we've already seen this phi node, ignore it, it has already been
648 // checked.
David Blaikie70573dc2014-11-19 07:49:26 +0000649 if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
Jakob Stoklund Olesene27dc722010-01-29 23:54:14 +0000650 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000651 } else if (isa<ICmpInst>(U) &&
Chandler Carruthcdf47882014-03-09 03:16:01 +0000652 isa<ConstantPointerNull>(U->getOperand(1))) {
Nick Lewycky614fb942010-02-25 06:39:10 +0000653 // Ignore icmp X, null
Chris Lattner09a52722004-10-09 21:48:45 +0000654 } else {
Gabor Greif08355d62010-04-06 19:14:05 +0000655 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000656 return false;
657 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000658
Chris Lattner09a52722004-10-09 21:48:45 +0000659 return true;
660}
661
James Molloyea31ad32015-11-13 11:05:07 +0000662/// Return true if all uses of any loads from GV will trap if the loaded value
663/// is null. Note that this also permits comparisons of the loaded value
664/// against null, as a special case.
Gabor Greif67972872010-04-06 19:24:18 +0000665static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000666 for (const User *U : GV->users())
Gabor Greif67972872010-04-06 19:24:18 +0000667 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
668 SmallPtrSet<const PHINode*, 8> PHIs;
Chris Lattner2d2892e2007-09-13 16:30:19 +0000669 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner09a52722004-10-09 21:48:45 +0000670 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000671 } else if (isa<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000672 // Ignore stores to the global.
673 } else {
674 // We don't know or understand this user, bail out.
Gabor Greif08355d62010-04-06 19:14:05 +0000675 //cerr << "UNKNOWN USER OF GLOBAL!: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000676 return false;
677 }
Chris Lattner09a52722004-10-09 21:48:45 +0000678 return true;
679}
680
Chris Lattner46b5c642009-11-06 04:27:31 +0000681static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000682 bool Changed = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000683 for (auto UI = V->user_begin(), E = V->user_end(); UI != E; ) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000684 Instruction *I = cast<Instruction>(*UI++);
685 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
686 LI->setOperand(0, NewV);
687 Changed = true;
688 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
689 if (SI->getOperand(1) == V) {
690 SI->setOperand(1, NewV);
691 Changed = true;
692 }
693 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
Gabor Greif04397892010-04-06 18:45:08 +0000694 CallSite CS(I);
695 if (CS.getCalledValue() == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000696 // Calling through the pointer! Turn into a direct call, but be careful
697 // that the pointer is not also being passed as an argument.
Gabor Greif04397892010-04-06 18:45:08 +0000698 CS.setCalledFunction(NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000699 Changed = true;
700 bool PassedAsArg = false;
Gabor Greif04397892010-04-06 18:45:08 +0000701 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
702 if (CS.getArgument(i) == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000703 PassedAsArg = true;
Gabor Greif04397892010-04-06 18:45:08 +0000704 CS.setArgument(i, NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000705 }
706
707 if (PassedAsArg) {
708 // Being passed as an argument also. Be careful to not invalidate UI!
Chandler Carruthcdf47882014-03-09 03:16:01 +0000709 UI = V->user_begin();
Chris Lattnere42eb312004-10-10 23:14:11 +0000710 }
711 }
712 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
713 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Anderson487375e2009-07-29 18:55:55 +0000714 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner46b5c642009-11-06 04:27:31 +0000715 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000716 if (CI->use_empty()) {
717 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000718 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000719 }
720 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
721 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000722 SmallVector<Constant*, 8> Idxs;
723 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif3a9fba52008-05-29 01:59:18 +0000724 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
725 i != e; ++i)
726 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000727 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000728 else
729 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000730 if (Idxs.size() == GEPI->getNumOperands()-1)
David Blaikie4a2e73b2015-04-02 18:55:32 +0000731 Changed |= OptimizeAwayTrappingUsesOfValue(
732 GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs));
Chris Lattnere42eb312004-10-10 23:14:11 +0000733 if (GEPI->use_empty()) {
734 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000735 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000736 }
737 }
738 }
739
740 return Changed;
741}
742
743
James Molloyea31ad32015-11-13 11:05:07 +0000744/// The specified global has only one non-null value stored into it. If there
745/// are uses of the loaded value that would trap if the loaded value is
746/// dynamically null, then we know that they cannot be reachable with a null
747/// optimize away the load.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000748static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
Mehdi Amini46a43552015-03-04 18:43:29 +0000749 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000750 TargetLibraryInfo *TLI) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000751 bool Changed = false;
752
Chris Lattner2538eb62009-01-14 00:12:58 +0000753 // Keep track of whether we are able to remove all the uses of the global
754 // other than the store that defines it.
755 bool AllNonStoreUsesGone = true;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000756
Chris Lattnere42eb312004-10-10 23:14:11 +0000757 // Replace all uses of loads with uses of uses of the stored value.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000758 for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){
Chris Lattner2538eb62009-01-14 00:12:58 +0000759 User *GlobalUser = *GUI++;
760 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner46b5c642009-11-06 04:27:31 +0000761 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner2538eb62009-01-14 00:12:58 +0000762 // If we were able to delete all uses of the loads
763 if (LI->use_empty()) {
764 LI->eraseFromParent();
765 Changed = true;
766 } else {
767 AllNonStoreUsesGone = false;
768 }
769 } else if (isa<StoreInst>(GlobalUser)) {
770 // Ignore the store that stores "LV" to the global.
771 assert(GlobalUser->getOperand(1) == GV &&
772 "Must be storing *to* the global");
Chris Lattnere42eb312004-10-10 23:14:11 +0000773 } else {
Chris Lattner2538eb62009-01-14 00:12:58 +0000774 AllNonStoreUsesGone = false;
775
776 // If we get here we could have other crazy uses that are transitively
777 // loaded.
778 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
Benjamin Kramered843602012-09-28 10:01:27 +0000779 isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
780 isa<BitCastInst>(GlobalUser) ||
781 isa<GetElementPtrInst>(GlobalUser)) &&
Chris Lattner1a1acc22011-05-22 07:15:13 +0000782 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000783 }
Chris Lattner2538eb62009-01-14 00:12:58 +0000784 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000785
786 if (Changed) {
James Molloyef607a22015-10-28 14:30:53 +0000787 DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV << "\n");
Chris Lattnere42eb312004-10-10 23:14:11 +0000788 ++NumGlobUses;
789 }
790
Chris Lattnere42eb312004-10-10 23:14:11 +0000791 // If we nuked all of the loads, then none of the stores are needed either,
792 // nor is the global.
Chris Lattner2538eb62009-01-14 00:12:58 +0000793 if (AllNonStoreUsesGone) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000794 if (isLeakCheckerRoot(GV)) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000795 Changed |= CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000796 } else {
797 Changed = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000798 CleanupConstantGlobalUsers(GV, nullptr, DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000799 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000800 if (GV->use_empty()) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000801 DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
802 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000803 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000804 ++NumDeleted;
805 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000806 }
807 return Changed;
808}
809
James Molloyea31ad32015-11-13 11:05:07 +0000810/// Walk the use list of V, constant folding all of the instructions that are
811/// foldable.
Mehdi Amini46a43552015-03-04 18:43:29 +0000812static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000813 TargetLibraryInfo *TLI) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000814 for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
Chris Lattner004e2502004-10-11 05:54:41 +0000815 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000816 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
Chris Lattner004e2502004-10-11 05:54:41 +0000817 I->replaceAllUsesWith(NewC);
818
Chris Lattnerd6a44922005-02-01 01:23:31 +0000819 // Advance UI to the next non-I use to avoid invalidating it!
820 // Instructions could multiply use V.
821 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000822 ++UI;
Chris Lattnerd6a44922005-02-01 01:23:31 +0000823 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000824 }
825}
826
James Molloyea31ad32015-11-13 11:05:07 +0000827/// This function takes the specified global variable, and transforms the
828/// program as if it always contained the result of the specified malloc.
829/// Because it is always the result of the specified malloc, there is no reason
830/// to actually DO the malloc. Instead, turn the malloc into a global, and any
831/// loads of GV as uses of the new global.
Mehdi Amini46a43552015-03-04 18:43:29 +0000832static GlobalVariable *
833OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
834 ConstantInt *NElements, const DataLayout &DL,
835 TargetLibraryInfo *TLI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000836 DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI << '\n');
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000837
Chris Lattner229907c2011-07-18 04:54:35 +0000838 Type *GlobalType;
Chris Lattner7939f792010-02-25 22:33:52 +0000839 if (NElements->getZExtValue() == 1)
840 GlobalType = AllocTy;
841 else
842 // If we have an array allocation, the global variable is of an array.
843 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez5d034492009-09-18 22:35:49 +0000844
845 // Create the new global variable. The contents of the malloc'd memory is
846 // undefined, so initialize with an undef value.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000847 GlobalVariable *NewGV = new GlobalVariable(
848 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage,
849 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr,
850 GV->getThreadLocalMode());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000851
Chris Lattner7939f792010-02-25 22:33:52 +0000852 // If there are bitcast users of the malloc (which is typical, usually we have
853 // a malloc + bitcast) then replace them with uses of the new global. Update
854 // other users to use the global as well.
Craig Topperf40110f2014-04-25 05:29:35 +0000855 BitCastInst *TheBC = nullptr;
Chris Lattner7939f792010-02-25 22:33:52 +0000856 while (!CI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000857 Instruction *User = cast<Instruction>(CI->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000858 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
859 if (BCI->getType() == NewGV->getType()) {
860 BCI->replaceAllUsesWith(NewGV);
861 BCI->eraseFromParent();
862 } else {
863 BCI->setOperand(0, NewGV);
864 }
865 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000866 if (!TheBC)
Chris Lattner7939f792010-02-25 22:33:52 +0000867 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
868 User->replaceUsesOfWith(CI, TheBC);
869 }
870 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000871
Victor Hernandez5d034492009-09-18 22:35:49 +0000872 Constant *RepValue = NewGV;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000873 if (NewGV->getType() != GV->getValueType())
874 RepValue = ConstantExpr::getBitCast(RepValue, GV->getValueType());
Victor Hernandez5d034492009-09-18 22:35:49 +0000875
876 // If there is a comparison against null, we will insert a global bool to
877 // keep track of whether the global was initialized yet or not.
878 GlobalVariable *InitBool =
Chris Lattner46b5c642009-11-06 04:27:31 +0000879 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez5d034492009-09-18 22:35:49 +0000880 GlobalValue::InternalLinkage,
Chris Lattner46b5c642009-11-06 04:27:31 +0000881 ConstantInt::getFalse(GV->getContext()),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000882 GV->getName()+".init", GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +0000883 bool InitBoolUsed = false;
884
885 // Loop over all uses of GV, processing them in turn.
Chris Lattner7939f792010-02-25 22:33:52 +0000886 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000887 if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) {
Victor Hernandez5d034492009-09-18 22:35:49 +0000888 // The global is initialized when the store to it occurs.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000889 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
890 SI->getOrdering(), SI->getSynchScope(), SI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000891 SI->eraseFromParent();
Chris Lattner7939f792010-02-25 22:33:52 +0000892 continue;
Victor Hernandez5d034492009-09-18 22:35:49 +0000893 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000894
Chandler Carruthcdf47882014-03-09 03:16:01 +0000895 LoadInst *LI = cast<LoadInst>(GV->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000896 while (!LI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000897 Use &LoadUse = *LI->use_begin();
898 ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser());
899 if (!ICI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000900 LoadUse = RepValue;
901 continue;
902 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000903
Chris Lattner7939f792010-02-25 22:33:52 +0000904 // Replace the cmp X, 0 with a use of the bool value.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000905 // Sink the load to where the compare was, if atomic rules allow us to.
906 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0,
907 LI->getOrdering(), LI->getSynchScope(),
908 LI->isUnordered() ? (Instruction*)ICI : LI);
Chris Lattner7939f792010-02-25 22:33:52 +0000909 InitBoolUsed = true;
910 switch (ICI->getPredicate()) {
911 default: llvm_unreachable("Unknown ICmp Predicate!");
912 case ICmpInst::ICMP_ULT:
913 case ICmpInst::ICMP_SLT: // X < null -> always false
914 LV = ConstantInt::getFalse(GV->getContext());
915 break;
916 case ICmpInst::ICMP_ULE:
917 case ICmpInst::ICMP_SLE:
918 case ICmpInst::ICMP_EQ:
919 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
920 break;
921 case ICmpInst::ICMP_NE:
922 case ICmpInst::ICMP_UGE:
923 case ICmpInst::ICMP_SGE:
924 case ICmpInst::ICMP_UGT:
925 case ICmpInst::ICMP_SGT:
926 break; // no change.
927 }
928 ICI->replaceAllUsesWith(LV);
929 ICI->eraseFromParent();
930 }
931 LI->eraseFromParent();
932 }
Victor Hernandez5d034492009-09-18 22:35:49 +0000933
934 // If the initialization boolean was used, insert it, otherwise delete it.
935 if (!InitBoolUsed) {
936 while (!InitBool->use_empty()) // Delete initializations
Chandler Carruthcdf47882014-03-09 03:16:01 +0000937 cast<StoreInst>(InitBool->user_back())->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000938 delete InitBool;
939 } else
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000940 GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
Victor Hernandez5d034492009-09-18 22:35:49 +0000941
Chris Lattner7939f792010-02-25 22:33:52 +0000942 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez5d034492009-09-18 22:35:49 +0000943 GV->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000944 CI->eraseFromParent();
945
946 // To further other optimizations, loop over all users of NewGV and try to
947 // constant prop them. This will promote GEP instructions with constant
948 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000949 ConstantPropUsersOf(NewGV, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000950 if (RepValue != NewGV)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000951 ConstantPropUsersOf(RepValue, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000952
953 return NewGV;
954}
955
James Molloyea31ad32015-11-13 11:05:07 +0000956/// Scan the use-list of V checking to make sure that there are no complex uses
957/// of V. We permit simple things like dereferencing the pointer, but not
958/// storing through the address, unless it is to the specified global.
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000959static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
960 const GlobalVariable *GV,
Craig Topper71b7b682014-08-21 05:55:13 +0000961 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000962 for (const User *U : V->users()) {
963 const Instruction *Inst = cast<Instruction>(U);
Gabor Greif08355d62010-04-06 19:14:05 +0000964
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000965 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
966 continue; // Fine, ignore.
967 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000968
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000969 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000970 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
971 return false; // Storing the pointer itself... bad.
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000972 continue; // Otherwise, storing through it, or storing into GV... fine.
973 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000974
Chris Lattnerb9801ff2010-04-10 18:19:22 +0000975 // Must index into the array and into the struct.
976 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000977 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000978 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000979 continue;
980 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000981
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000982 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattner6eed0e72007-09-13 16:37:20 +0000983 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
984 // cycles.
David Blaikie70573dc2014-11-19 07:49:26 +0000985 if (PHIs.insert(PN).second)
Chris Lattner5d13fb532007-09-14 03:41:21 +0000986 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
987 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000988 continue;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000989 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000990
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000991 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000992 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
993 return false;
994 continue;
995 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000996
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000997 return false;
998 }
Chris Lattnerc0677c02004-12-02 07:11:07 +0000999 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +00001000}
1001
James Molloyea31ad32015-11-13 11:05:07 +00001002/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
1003/// allocation into loads from the global and uses of the resultant pointer.
1004/// Further, delete the store into GV. This assumes that these value pass the
Chris Lattner24d3d422006-09-30 23:32:09 +00001005/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001006static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
Chris Lattner24d3d422006-09-30 23:32:09 +00001007 GlobalVariable *GV) {
1008 while (!Alloc->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001009 Instruction *U = cast<Instruction>(*Alloc->user_begin());
Chris Lattnerba98f892007-09-13 18:00:31 +00001010 Instruction *InsertPt = U;
Chris Lattner24d3d422006-09-30 23:32:09 +00001011 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
1012 // If this is the store of the allocation into the global, remove it.
1013 if (SI->getOperand(1) == GV) {
1014 SI->eraseFromParent();
1015 continue;
1016 }
Chris Lattnerba98f892007-09-13 18:00:31 +00001017 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
1018 // Insert the load in the corresponding predecessor, not right before the
1019 // PHI.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001020 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001021 } else if (isa<BitCastInst>(U)) {
1022 // Must be bitcast between the malloc and store to initialize the global.
1023 ReplaceUsesOfMallocWithGlobal(U, GV);
1024 U->eraseFromParent();
1025 continue;
1026 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
1027 // If this is a "GEP bitcast" and the user is a store to the global, then
1028 // just process it as a bitcast.
1029 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +00001030 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back()))
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001031 if (SI->getOperand(1) == GV) {
1032 // Must be bitcast GEP between the malloc and store to initialize
1033 // the global.
1034 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1035 GEPI->eraseFromParent();
1036 continue;
1037 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001038 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001039
Chris Lattner24d3d422006-09-30 23:32:09 +00001040 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnerba98f892007-09-13 18:00:31 +00001041 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner24d3d422006-09-30 23:32:09 +00001042 U->replaceUsesOfWith(Alloc, NL);
1043 }
1044}
1045
James Molloyea31ad32015-11-13 11:05:07 +00001046/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
1047/// perform heap SRA on. This permits GEP's that index through the array and
1048/// struct field, icmps of null, and PHIs.
Gabor Greif5d5db532010-04-01 08:21:08 +00001049static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +00001050 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1051 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
Chris Lattner56b55382008-12-16 21:24:51 +00001052 // We permit two users of the load: setcc comparing against the null
1053 // pointer, and a getelementptr of a specific form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001054 for (const User *U : V->users()) {
1055 const Instruction *UI = cast<Instruction>(U);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001056
Chris Lattner56b55382008-12-16 21:24:51 +00001057 // Comparison against null is ok.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001058 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001059 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1060 return false;
1061 continue;
1062 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001063
Chris Lattner56b55382008-12-16 21:24:51 +00001064 // getelementptr is also ok, but only a simple form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001065 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001066 // Must index into the array and into the struct.
1067 if (GEPI->getNumOperands() < 3)
1068 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001069
Chris Lattner56b55382008-12-16 21:24:51 +00001070 // Otherwise the GEP is ok.
1071 continue;
1072 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001073
Chandler Carruthcdf47882014-03-09 03:16:01 +00001074 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001075 if (!LoadUsingPHIsPerLoad.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001076 // This means some phi nodes are dependent on each other.
1077 // Avoid infinite looping!
1078 return false;
David Blaikie70573dc2014-11-19 07:49:26 +00001079 if (!LoadUsingPHIs.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001080 // If we have already analyzed this PHI, then it is safe.
Chris Lattner56b55382008-12-16 21:24:51 +00001081 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001082
Chris Lattner222ef4c2008-12-17 05:28:49 +00001083 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng83689442009-06-02 00:56:07 +00001084 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1085 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001086 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001087
Chris Lattner56b55382008-12-16 21:24:51 +00001088 continue;
Chris Lattner24d3d422006-09-30 23:32:09 +00001089 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001090
Chris Lattner56b55382008-12-16 21:24:51 +00001091 // Otherwise we don't know what this is, not ok.
1092 return false;
1093 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001094
Chris Lattner56b55382008-12-16 21:24:51 +00001095 return true;
1096}
1097
1098
James Molloyea31ad32015-11-13 11:05:07 +00001099/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1100/// return true.
Gabor Greif5d5db532010-04-01 08:21:08 +00001101static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez5d034492009-09-18 22:35:49 +00001102 Instruction *StoredVal) {
Gabor Greif5d5db532010-04-01 08:21:08 +00001103 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1104 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001105 for (const User *U : GV->users())
1106 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
Evan Cheng83689442009-06-02 00:56:07 +00001107 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1108 LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001109 return false;
Evan Cheng83689442009-06-02 00:56:07 +00001110 LoadUsingPHIsPerLoad.clear();
1111 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001112
Chris Lattner222ef4c2008-12-17 05:28:49 +00001113 // If we reach here, we know that all uses of the loads and transitive uses
1114 // (through PHI nodes) are simple enough to transform. However, we don't know
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001115 // that all inputs the to the PHI nodes are in the same equivalence sets.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001116 // Check to verify that all operands of the PHIs are either PHIS that can be
1117 // transformed, loads from GV, or MI itself.
Craig Topper46276792014-08-24 23:23:06 +00001118 for (const PHINode *PN : LoadUsingPHIs) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001119 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1120 Value *InVal = PN->getIncomingValue(op);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001121
Chris Lattner222ef4c2008-12-17 05:28:49 +00001122 // PHI of the stored value itself is ok.
Victor Hernandez5d034492009-09-18 22:35:49 +00001123 if (InVal == StoredVal) continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001124
Gabor Greif5d5db532010-04-01 08:21:08 +00001125 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001126 // One of the PHIs in our set is (optimistically) ok.
1127 if (LoadUsingPHIs.count(InPN))
1128 continue;
1129 return false;
1130 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001131
Chris Lattner222ef4c2008-12-17 05:28:49 +00001132 // Load from GV is ok.
Gabor Greif5d5db532010-04-01 08:21:08 +00001133 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattner222ef4c2008-12-17 05:28:49 +00001134 if (LI->getOperand(0) == GV)
1135 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001136
Chris Lattner222ef4c2008-12-17 05:28:49 +00001137 // UNDEF? NULL?
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001138
Chris Lattner222ef4c2008-12-17 05:28:49 +00001139 // Anything else is rejected.
1140 return false;
1141 }
1142 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001143
Chris Lattner24d3d422006-09-30 23:32:09 +00001144 return true;
1145}
1146
Chris Lattner222ef4c2008-12-17 05:28:49 +00001147static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1148 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001149 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001150 std::vector<Value*> &FieldVals = InsertedScalarizedValues[V];
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001151
Chris Lattner222ef4c2008-12-17 05:28:49 +00001152 if (FieldNo >= FieldVals.size())
1153 FieldVals.resize(FieldNo+1);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001154
Chris Lattner222ef4c2008-12-17 05:28:49 +00001155 // If we already have this value, just reuse the previously scalarized
1156 // version.
1157 if (Value *FieldVal = FieldVals[FieldNo])
1158 return FieldVal;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001159
Chris Lattner222ef4c2008-12-17 05:28:49 +00001160 // Depending on what instruction this is, we have several cases.
1161 Value *Result;
1162 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1163 // This is a scalarized version of the load from the global. Just create
1164 // a new Load of the scalarized global.
1165 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1166 InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001167 PHIsToRewrite),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001168 LI->getName()+".f"+Twine(FieldNo), LI);
David Blaikie741c8f82015-03-14 01:53:18 +00001169 } else {
1170 PHINode *PN = cast<PHINode>(V);
Chris Lattner222ef4c2008-12-17 05:28:49 +00001171 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1172 // field.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001173
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001174 PointerType *PTy = cast<PointerType>(PN->getType());
1175 StructType *ST = cast<StructType>(PTy->getElementType());
1176
1177 unsigned AS = PTy->getAddressSpace();
Jay Foade0938d82011-03-30 11:19:20 +00001178 PHINode *NewPN =
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001179 PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS),
Jay Foad52131342011-03-30 11:28:46 +00001180 PN->getNumIncomingValues(),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001181 PN->getName()+".f"+Twine(FieldNo), PN);
Jay Foade0938d82011-03-30 11:19:20 +00001182 Result = NewPN;
Chris Lattner222ef4c2008-12-17 05:28:49 +00001183 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
Chris Lattner222ef4c2008-12-17 05:28:49 +00001184 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001185
Chris Lattner222ef4c2008-12-17 05:28:49 +00001186 return FieldVals[FieldNo] = Result;
Chris Lattnerba98f892007-09-13 18:00:31 +00001187}
1188
James Molloyea31ad32015-11-13 11:05:07 +00001189/// Given a load instruction and a value derived from the load, rewrite the
1190/// derived value to use the HeapSRoA'd load.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001191static void RewriteHeapSROALoadUser(Instruction *LoadUser,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001192 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001193 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001194 // If this is a comparison against null, handle it.
1195 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1196 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1197 // If we have a setcc of the loaded pointer, we can use a setcc of any
1198 // field.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001199 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner46b5c642009-11-06 04:27:31 +00001200 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001201
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001202 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001203 Constant::getNullValue(NPtr->getType()),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001204 SCI->getName());
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001205 SCI->replaceAllUsesWith(New);
1206 SCI->eraseFromParent();
1207 return;
1208 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001209
Chris Lattner222ef4c2008-12-17 05:28:49 +00001210 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnerba98f892007-09-13 18:00:31 +00001211 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1212 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1213 && "Unexpected GEPI!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001214
Chris Lattnerba98f892007-09-13 18:00:31 +00001215 // Load the pointer for this field.
1216 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner222ef4c2008-12-17 05:28:49 +00001217 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner46b5c642009-11-06 04:27:31 +00001218 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001219
Chris Lattnerba98f892007-09-13 18:00:31 +00001220 // Create the new GEP idx vector.
1221 SmallVector<Value*, 8> GEPIdx;
1222 GEPIdx.push_back(GEPI->getOperand(1));
1223 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001224
David Blaikie22319eb2015-03-14 19:24:04 +00001225 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx,
Gabor Greife9ecc682008-04-06 20:25:17 +00001226 GEPI->getName(), GEPI);
Chris Lattnerba98f892007-09-13 18:00:31 +00001227 GEPI->replaceAllUsesWith(NGEPI);
1228 GEPI->eraseFromParent();
1229 return;
1230 }
Chris Lattner011f91b2007-09-13 21:31:36 +00001231
Chris Lattner222ef4c2008-12-17 05:28:49 +00001232 // Recursively transform the users of PHI nodes. This will lazily create the
1233 // PHIs that are needed for individual elements. Keep track of what PHIs we
1234 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1235 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1236 // already been seen first by another load, so its uses have already been
1237 // processed.
1238 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner5cf753c2011-07-21 06:21:31 +00001239 if (!InsertedScalarizedValues.insert(std::make_pair(PN,
1240 std::vector<Value*>())).second)
1241 return;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001242
Chris Lattner222ef4c2008-12-17 05:28:49 +00001243 // If this is the first time we've seen this PHI, recursively process all
1244 // users.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001245 for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001246 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001247 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001248 }
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001249}
1250
James Molloyea31ad32015-11-13 11:05:07 +00001251/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1252/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1253/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001254static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001255 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001256 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001257 for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001258 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001259 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001260 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001261
Chris Lattner222ef4c2008-12-17 05:28:49 +00001262 if (Load->use_empty()) {
1263 Load->eraseFromParent();
1264 InsertedScalarizedValues.erase(Load);
1265 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001266}
1267
James Molloyea31ad32015-11-13 11:05:07 +00001268/// CI is an allocation of an array of structures. Break it up into multiple
1269/// allocations of arrays of the fields.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001270static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
Mehdi Amini46a43552015-03-04 18:43:29 +00001271 Value *NElems, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001272 const TargetLibraryInfo *TLI) {
David Greene44cb8ad2010-01-05 01:28:05 +00001273 DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI << '\n');
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001274 Type *MAT = getMallocAllocatedType(CI, TLI);
Chris Lattner229907c2011-07-18 04:54:35 +00001275 StructType *STy = cast<StructType>(MAT);
Victor Hernandez5d034492009-09-18 22:35:49 +00001276
1277 // There is guaranteed to be at least one use of the malloc (storing
1278 // it into GV). If there are other uses, change them to be uses of
1279 // the global to simplify later code. This also deletes the store
1280 // into GV.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001281 ReplaceUsesOfMallocWithGlobal(CI, GV);
1282
Victor Hernandez5d034492009-09-18 22:35:49 +00001283 // Okay, at this point, there are no users of the malloc. Insert N
1284 // new mallocs at the same place as CI, and N globals.
1285 std::vector<Value*> FieldGlobals;
1286 std::vector<Value*> FieldMallocs;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001287
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001288 unsigned AS = GV->getType()->getPointerAddressSpace();
Victor Hernandez5d034492009-09-18 22:35:49 +00001289 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
Chris Lattner229907c2011-07-18 04:54:35 +00001290 Type *FieldTy = STy->getElementType(FieldNo);
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001291 PointerType *PFieldTy = PointerType::get(FieldTy, AS);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001292
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001293 GlobalVariable *NGV = new GlobalVariable(
1294 *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage,
1295 Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo),
1296 nullptr, GV->getThreadLocalMode());
Sergei Larin94be2de2016-01-22 21:18:20 +00001297 NGV->copyAttributesFrom(GV);
Victor Hernandez5d034492009-09-18 22:35:49 +00001298 FieldGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001299
Mehdi Amini46a43552015-03-04 18:43:29 +00001300 unsigned TypeSize = DL.getTypeAllocSize(FieldTy);
Chris Lattner229907c2011-07-18 04:54:35 +00001301 if (StructType *ST = dyn_cast<StructType>(FieldTy))
Mehdi Amini46a43552015-03-04 18:43:29 +00001302 TypeSize = DL.getStructLayout(ST)->getSizeInBytes();
1303 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
Victor Hernandezf3db9152009-11-07 00:16:28 +00001304 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1305 ConstantInt::get(IntPtrTy, TypeSize),
Craig Topperf40110f2014-04-25 05:29:35 +00001306 NElems, nullptr,
Victor Hernandezf3db9152009-11-07 00:16:28 +00001307 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner0521c092010-02-26 18:23:13 +00001308 FieldMallocs.push_back(NMI);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001309 new StoreInst(NMI, NGV, CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001310 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001311
Victor Hernandez5d034492009-09-18 22:35:49 +00001312 // The tricky aspect of this transformation is handling the case when malloc
1313 // fails. In the original code, malloc failing would set the result pointer
1314 // of malloc to null. In this case, some mallocs could succeed and others
1315 // could fail. As such, we emit code that looks like this:
1316 // F0 = malloc(field0)
1317 // F1 = malloc(field1)
1318 // F2 = malloc(field2)
1319 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1320 // if (F0) { free(F0); F0 = 0; }
1321 // if (F1) { free(F1); F1 = 0; }
1322 // if (F2) { free(F2); F2 = 0; }
1323 // }
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001324 // The malloc can also fail if its argument is too large.
Gabor Greif218f5542010-06-24 14:42:01 +00001325 Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1326 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001327 ConstantZero, "isneg");
Victor Hernandez5d034492009-09-18 22:35:49 +00001328 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandezf3db9152009-11-07 00:16:28 +00001329 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1330 Constant::getNullValue(FieldMallocs[i]->getType()),
1331 "isnull");
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001332 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001333 }
1334
1335 // Split the basic block at the old malloc.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001336 BasicBlock *OrigBB = CI->getParent();
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001337 BasicBlock *ContBB =
1338 OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001339
Victor Hernandez5d034492009-09-18 22:35:49 +00001340 // Create the block to check the first condition. Put all these blocks at the
1341 // end of the function as they are unlikely to be executed.
Chris Lattner46b5c642009-11-06 04:27:31 +00001342 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1343 "malloc_ret_null",
Victor Hernandez5d034492009-09-18 22:35:49 +00001344 OrigBB->getParent());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001345
Victor Hernandez5d034492009-09-18 22:35:49 +00001346 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1347 // branch on RunningOr.
1348 OrigBB->getTerminator()->eraseFromParent();
1349 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001350
Victor Hernandez5d034492009-09-18 22:35:49 +00001351 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1352 // pointer, because some may be null while others are not.
1353 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1354 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001355 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001356 Constant::getNullValue(GVVal->getType()));
Chris Lattner46b5c642009-11-06 04:27:31 +00001357 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez5d034492009-09-18 22:35:49 +00001358 OrigBB->getParent());
Chris Lattner46b5c642009-11-06 04:27:31 +00001359 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez5d034492009-09-18 22:35:49 +00001360 OrigBB->getParent());
Victor Hernandeze2971492009-10-24 04:23:03 +00001361 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1362 Cmp, NullPtrBlock);
Victor Hernandez5d034492009-09-18 22:35:49 +00001363
1364 // Fill in FreeBlock.
Victor Hernandeze2971492009-10-24 04:23:03 +00001365 CallInst::CreateFree(GVVal, BI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001366 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1367 FreeBlock);
1368 BranchInst::Create(NextBlock, FreeBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001369
Victor Hernandez5d034492009-09-18 22:35:49 +00001370 NullPtrBlock = NextBlock;
1371 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001372
Victor Hernandez5d034492009-09-18 22:35:49 +00001373 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001374
1375 // CI is no longer needed, remove it.
Victor Hernandez5d034492009-09-18 22:35:49 +00001376 CI->eraseFromParent();
1377
James Molloyea31ad32015-11-13 11:05:07 +00001378 /// As we process loads, if we can't immediately update all uses of the load,
1379 /// keep track of what scalarized loads are inserted for a given load.
Victor Hernandez5d034492009-09-18 22:35:49 +00001380 DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1381 InsertedScalarizedValues[GV] = FieldGlobals;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001382
Victor Hernandez5d034492009-09-18 22:35:49 +00001383 std::vector<std::pair<PHINode*, unsigned> > PHIsToRewrite;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001384
Victor Hernandez5d034492009-09-18 22:35:49 +00001385 // Okay, the malloc site is completely handled. All of the uses of GV are now
1386 // loads, and all uses of those loads are simple. Rewrite them to use loads
1387 // of the per-field globals instead.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001388 for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001389 Instruction *User = cast<Instruction>(*UI++);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001390
Victor Hernandez5d034492009-09-18 22:35:49 +00001391 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner46b5c642009-11-06 04:27:31 +00001392 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001393 continue;
1394 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001395
Victor Hernandez5d034492009-09-18 22:35:49 +00001396 // Must be a store of null.
1397 StoreInst *SI = cast<StoreInst>(User);
1398 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1399 "Unexpected heap-sra user!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001400
Victor Hernandez5d034492009-09-18 22:35:49 +00001401 // Insert a store of null into each global.
1402 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001403 Type *ValTy = cast<GlobalValue>(FieldGlobals[i])->getValueType();
1404 Constant *Null = Constant::getNullValue(ValTy);
Victor Hernandez5d034492009-09-18 22:35:49 +00001405 new StoreInst(Null, FieldGlobals[i], SI);
1406 }
1407 // Erase the original store.
1408 SI->eraseFromParent();
1409 }
1410
1411 // While we have PHIs that are interesting to rewrite, do it.
1412 while (!PHIsToRewrite.empty()) {
1413 PHINode *PN = PHIsToRewrite.back().first;
1414 unsigned FieldNo = PHIsToRewrite.back().second;
1415 PHIsToRewrite.pop_back();
1416 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1417 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1418
1419 // Add all the incoming values. This can materialize more phis.
1420 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1421 Value *InVal = PN->getIncomingValue(i);
1422 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001423 PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001424 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1425 }
1426 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001427
Victor Hernandez5d034492009-09-18 22:35:49 +00001428 // Drop all inter-phi links and any loads that made it this far.
1429 for (DenseMap<Value*, std::vector<Value*> >::iterator
1430 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1431 I != E; ++I) {
1432 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1433 PN->dropAllReferences();
1434 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1435 LI->dropAllReferences();
1436 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001437
Victor Hernandez5d034492009-09-18 22:35:49 +00001438 // Delete all the phis and loads now that inter-references are dead.
1439 for (DenseMap<Value*, std::vector<Value*> >::iterator
1440 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1441 I != E; ++I) {
1442 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1443 PN->eraseFromParent();
1444 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1445 LI->eraseFromParent();
1446 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001447
Victor Hernandez5d034492009-09-18 22:35:49 +00001448 // The old global is now dead, remove it.
1449 GV->eraseFromParent();
1450
1451 ++NumHeapSRA;
1452 return cast<GlobalVariable>(FieldGlobals[0]);
1453}
1454
James Molloyea31ad32015-11-13 11:05:07 +00001455/// This function is called when we see a pointer global variable with a single
1456/// value stored it that is a malloc or cast of malloc.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001457static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
Chris Lattner229907c2011-07-18 04:54:35 +00001458 Type *AllocTy,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001459 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001460 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +00001461 TargetLibraryInfo *TLI) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001462 // If this is a malloc of an abstract type, don't touch it.
1463 if (!AllocTy->isSized())
1464 return false;
1465
1466 // We can't optimize this global unless all uses of it are *known* to be
1467 // of the malloc value, not of the null initializer value (consider a use
1468 // that compares the global's value against zero to see if the malloc has
1469 // been reached). To do this, we check to see if all uses of the global
1470 // would trap if the global were null: this proves that they must all
1471 // happen after the malloc.
1472 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1473 return false;
1474
1475 // We can't optimize this if the malloc itself is used in a complex way,
1476 // for example, being stored into multiple globals. This allows the
Nick Lewyckybbd11562012-02-05 19:48:37 +00001477 // malloc to be stored into the specified global, loaded icmp'd, and
Victor Hernandez5d034492009-09-18 22:35:49 +00001478 // GEP'd. These are all things we could transform to using the global
1479 // for.
Evan Cheng21b588b2010-04-14 20:52:55 +00001480 SmallPtrSet<const PHINode*, 8> PHIs;
1481 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1482 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001483
1484 // If we have a global that is only initialized with a fixed size malloc,
1485 // transform the program to use global memory instead of malloc'd memory.
1486 // This eliminates dynamic allocation, avoids an indirection accessing the
1487 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez264da322009-10-16 23:12:25 +00001488 // We cannot optimize the malloc if we cannot determine malloc array size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001489 Value *NElems = getMallocArraySize(CI, DL, TLI, true);
Evan Cheng21b588b2010-04-14 20:52:55 +00001490 if (!NElems)
1491 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001492
Evan Cheng21b588b2010-04-14 20:52:55 +00001493 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1494 // Restrict this transformation to only working on small allocations
1495 // (2048 bytes currently), as we don't want to introduce a 16M global or
1496 // something.
Mehdi Amini46a43552015-03-04 18:43:29 +00001497 if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) {
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001498 OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001499 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001500 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001501
Evan Cheng21b588b2010-04-14 20:52:55 +00001502 // If the allocation is an array of structures, consider transforming this
1503 // into multiple malloc'd arrays, one for each field. This is basically
1504 // SRoA for malloc'd memory.
1505
Nick Lewycky52da72b2012-02-05 19:56:38 +00001506 if (Ordering != NotAtomic)
1507 return false;
1508
Evan Cheng21b588b2010-04-14 20:52:55 +00001509 // If this is an allocation of a fixed size array of structs, analyze as a
1510 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Gabor Greif218f5542010-06-24 14:42:01 +00001511 if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
Chris Lattner229907c2011-07-18 04:54:35 +00001512 if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
Evan Cheng21b588b2010-04-14 20:52:55 +00001513 AllocTy = AT->getElementType();
Gabor Greif218f5542010-06-24 14:42:01 +00001514
Chris Lattner229907c2011-07-18 04:54:35 +00001515 StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
Evan Cheng21b588b2010-04-14 20:52:55 +00001516 if (!AllocSTy)
1517 return false;
1518
1519 // This the structure has an unreasonable number of fields, leave it
1520 // alone.
1521 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1522 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1523
1524 // If this is a fixed size array, transform the Malloc to be an alloc of
1525 // structs. malloc [100 x struct],1 -> malloc struct, 100
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001526 if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001527 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
1528 unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes();
Evan Cheng21b588b2010-04-14 20:52:55 +00001529 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1530 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
1531 Instruction *Malloc = CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy,
1532 AllocSize, NumElements,
Craig Topperf40110f2014-04-25 05:29:35 +00001533 nullptr, CI->getName());
Evan Cheng21b588b2010-04-14 20:52:55 +00001534 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1535 CI->replaceAllUsesWith(Cast);
1536 CI->eraseFromParent();
Nuno Lopes9792d682012-06-22 00:25:01 +00001537 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1538 CI = cast<CallInst>(BCI->getOperand(0));
1539 else
Nuno Lopes0b60ebb2012-06-22 00:29:58 +00001540 CI = cast<CallInst>(Malloc);
Evan Cheng21b588b2010-04-14 20:52:55 +00001541 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001542
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001543 PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL,
1544 TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001545 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001546 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001547
Victor Hernandez5d034492009-09-18 22:35:49 +00001548 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001549}
Victor Hernandez5d034492009-09-18 22:35:49 +00001550
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001551// Try to optimize globals based on the knowledge that only one value (besides
1552// its initializer) is ever stored to the global.
1553static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001554 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001555 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +00001556 TargetLibraryInfo *TLI) {
Chris Lattner1c731fa2008-12-15 21:20:32 +00001557 // Ignore no-op GEPs and bitcasts.
1558 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner09a52722004-10-09 21:48:45 +00001559
Chris Lattnere42eb312004-10-10 23:14:11 +00001560 // If we are dealing with a pointer global that is initialized to null and
1561 // only has one (non-null) value stored into it, then we can optimize any
1562 // users of the loaded value (often calls and loads) that would trap if the
1563 // value was null.
Duncan Sands19d0b472010-02-16 11:11:14 +00001564 if (GV->getInitializer()->getType()->isPointerTy() &&
Chris Lattner09a52722004-10-09 21:48:45 +00001565 GV->getInitializer()->isNullValue()) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001566 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1567 if (GV->getInitializer()->getType() != SOVC->getType())
Chris Lattner1a1acc22011-05-22 07:15:13 +00001568 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001569
Chris Lattnere42eb312004-10-10 23:14:11 +00001570 // Optimize away any trapping uses of the loaded value.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001571 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001572 return true;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001573 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1574 Type *MallocType = getMallocAllocatedType(CI, TLI);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001575 if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1576 Ordering, DL, TLI))
Victor Hernandezf3db9152009-11-07 00:16:28 +00001577 return true;
Chris Lattnere42eb312004-10-10 23:14:11 +00001578 }
Chris Lattner09a52722004-10-09 21:48:45 +00001579 }
Chris Lattner004e2502004-10-11 05:54:41 +00001580
Chris Lattner09a52722004-10-09 21:48:45 +00001581 return false;
1582}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001583
James Molloyea31ad32015-11-13 11:05:07 +00001584/// At this point, we have learned that the only two values ever stored into GV
1585/// are its initializer and OtherVal. See if we can shrink the global into a
1586/// boolean and select between the two values whenever it is used. This exposes
1587/// the values to other scalar optimizations.
Lang Hames459b5dc2014-03-23 04:22:31 +00001588static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001589 Type *GVElType = GV->getValueType();
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001590
Lang Hames459b5dc2014-03-23 04:22:31 +00001591 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1592 // an FP value, pointer or vector, don't do this optimization because a select
1593 // between them is very expensive and unlikely to lead to later
1594 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1595 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner46b5c642009-11-06 04:27:31 +00001596 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001597 GVElType->isFloatingPointTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001598 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner20bbac32008-01-14 01:17:44 +00001599 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001600
Chris Lattner20bbac32008-01-14 01:17:44 +00001601 // Walk the use list of the global seeing if all the uses are load or store.
1602 // If there is anything else, bail out.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001603 for (User *U : GV->users())
Gabor Greifa75ed762010-07-12 14:13:15 +00001604 if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
Chris Lattner20bbac32008-01-14 01:17:44 +00001605 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001606
James Molloyef607a22015-10-28 14:30:53 +00001607 DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n");
Lang Hames459b5dc2014-03-23 04:22:31 +00001608
1609 // Create the new global, initializing it to false.
1610 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1611 false,
1612 GlobalValue::InternalLinkage,
1613 ConstantInt::getFalse(GV->getContext()),
1614 GV->getName()+".b",
1615 GV->getThreadLocalMode(),
1616 GV->getType()->getAddressSpace());
Sergei Larin94be2de2016-01-22 21:18:20 +00001617 NewGV->copyAttributesFrom(GV);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001618 GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
Lang Hames459b5dc2014-03-23 04:22:31 +00001619
Chris Lattner40e4cec2004-12-12 05:53:50 +00001620 Constant *InitVal = GV->getInitializer();
Chris Lattner46b5c642009-11-06 04:27:31 +00001621 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Lang Hames459b5dc2014-03-23 04:22:31 +00001622 "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001623
Lang Hames459b5dc2014-03-23 04:22:31 +00001624 // If initialized to zero and storing one into the global, we can use a cast
1625 // instead of a select to synthesize the desired value.
1626 bool IsOneZero = false;
1627 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1628 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001629
Lang Hames459b5dc2014-03-23 04:22:31 +00001630 while (!GV->use_empty()) {
1631 Instruction *UI = cast<Instruction>(GV->user_back());
1632 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1633 // Change the store into a boolean store.
1634 bool StoringOther = SI->getOperand(0) == OtherVal;
1635 // Only do this if we weren't storing a loaded value.
1636 Value *StoreVal;
1637 if (StoringOther || SI->getOperand(0) == InitVal) {
1638 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1639 StoringOther);
Bill Wendling7297b862013-02-13 23:00:51 +00001640 } else {
Lang Hames459b5dc2014-03-23 04:22:31 +00001641 // Otherwise, we are storing a previously loaded copy. To do this,
1642 // change the copy from copying the original value to just copying the
1643 // bool.
1644 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1645
1646 // If we've already replaced the input, StoredVal will be a cast or
1647 // select instruction. If not, it will be a load of the original
1648 // global.
1649 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1650 assert(LI->getOperand(0) == GV && "Not a copy!");
1651 // Insert a new load, to preserve the saved value.
1652 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1653 LI->getOrdering(), LI->getSynchScope(), LI);
1654 } else {
1655 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1656 "This is not a form that we understand!");
1657 StoreVal = StoredVal->getOperand(0);
1658 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1659 }
Chris Lattner745196a2004-12-12 19:34:41 +00001660 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001661 new StoreInst(StoreVal, NewGV, false, 0,
1662 SI->getOrdering(), SI->getSynchScope(), SI);
1663 } else {
1664 // Change the load into a load of bool then a select.
1665 LoadInst *LI = cast<LoadInst>(UI);
1666 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1667 LI->getOrdering(), LI->getSynchScope(), LI);
1668 Value *NSI;
1669 if (IsOneZero)
1670 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1671 else
1672 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1673 NSI->takeName(LI);
1674 LI->replaceAllUsesWith(NSI);
Devang Patelfc507a12009-03-06 01:39:36 +00001675 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001676 UI->eraseFromParent();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001677 }
1678
Lang Hames459b5dc2014-03-23 04:22:31 +00001679 // Retain the name of the old global variable. People who are debugging their
1680 // programs may expect these variables to be named the same.
1681 NewGV->takeName(GV);
1682 GV->eraseFromParent();
Chris Lattner20bbac32008-01-14 01:17:44 +00001683 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001684}
1685
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001686bool GlobalOpt::deleteIfDead(GlobalValue &GV) {
1687 GV.removeDeadConstantUsers();
1688
1689 if (!GV.isDiscardableIfUnused())
1690 return false;
1691
1692 if (const Comdat *C = GV.getComdat())
1693 if (!GV.hasLocalLinkage() && NotDiscardableComdats.count(C))
1694 return false;
1695
1696 bool Dead;
1697 if (auto *F = dyn_cast<Function>(&GV))
1698 Dead = F->isDefTriviallyDead();
1699 else
1700 Dead = GV.use_empty();
1701 if (!Dead)
1702 return false;
1703
1704 DEBUG(dbgs() << "GLOBAL DEAD: " << GV << "\n");
1705 GV.eraseFromParent();
1706 ++NumDeleted;
1707 return true;
1708}
Chris Lattner40e4cec2004-12-12 05:53:50 +00001709
James Molloyea31ad32015-11-13 11:05:07 +00001710/// Analyze the specified global variable and optimize it if possible. If we
1711/// make a change, return true.
Rafael Espindola10d9a032015-12-22 20:43:30 +00001712bool GlobalOpt::processGlobal(GlobalValue &GV) {
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001713 // Do more involved optimizations if the global is internal.
Rafael Espindola10d9a032015-12-22 20:43:30 +00001714 if (!GV.hasLocalLinkage())
Rafael Espindola1821c6c2012-06-15 18:00:24 +00001715 return false;
1716
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001717 GlobalStatus GS;
1718
Rafael Espindola10d9a032015-12-22 20:43:30 +00001719 if (GlobalStatus::analyzeGlobal(&GV, GS))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001720 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001721
Rafael Espindola10d9a032015-12-22 20:43:30 +00001722 bool Changed = false;
1723 if (!GS.IsCompared && !GV.hasUnnamedAddr()) {
1724 GV.setUnnamedAddr(true);
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001725 NumUnnamed++;
Rafael Espindola10d9a032015-12-22 20:43:30 +00001726 Changed = true;
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001727 }
1728
Rafael Espindola10d9a032015-12-22 20:43:30 +00001729 auto *GVar = dyn_cast<GlobalVariable>(&GV);
1730 if (!GVar)
1731 return Changed;
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001732
Rafael Espindola10d9a032015-12-22 20:43:30 +00001733 if (GVar->isConstant() || !GVar->hasInitializer())
1734 return Changed;
1735
1736 return processInternalGlobal(GVar, GS) || Changed;
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001737}
1738
James Molloy9c7d4d82015-11-15 14:21:37 +00001739bool GlobalOpt::isPointerValueDeadOnEntryToFunction(const Function *F, GlobalValue *GV) {
1740 // Find all uses of GV. We expect them all to be in F, and if we can't
1741 // identify any of the uses we bail out.
1742 //
1743 // On each of these uses, identify if the memory that GV points to is
1744 // used/required/live at the start of the function. If it is not, for example
1745 // if the first thing the function does is store to the GV, the GV can
1746 // possibly be demoted.
1747 //
1748 // We don't do an exhaustive search for memory operations - simply look
1749 // through bitcasts as they're quite common and benign.
1750 const DataLayout &DL = GV->getParent()->getDataLayout();
1751 SmallVector<LoadInst *, 4> Loads;
1752 SmallVector<StoreInst *, 4> Stores;
1753 for (auto *U : GV->users()) {
1754 if (Operator::getOpcode(U) == Instruction::BitCast) {
1755 for (auto *UU : U->users()) {
1756 if (auto *LI = dyn_cast<LoadInst>(UU))
1757 Loads.push_back(LI);
1758 else if (auto *SI = dyn_cast<StoreInst>(UU))
1759 Stores.push_back(SI);
1760 else
1761 return false;
1762 }
1763 continue;
1764 }
1765
1766 Instruction *I = dyn_cast<Instruction>(U);
1767 if (!I)
1768 return false;
1769 assert(I->getParent()->getParent() == F);
1770
1771 if (auto *LI = dyn_cast<LoadInst>(I))
1772 Loads.push_back(LI);
1773 else if (auto *SI = dyn_cast<StoreInst>(I))
1774 Stores.push_back(SI);
1775 else
1776 return false;
1777 }
1778
1779 // We have identified all uses of GV into loads and stores. Now check if all
1780 // of them are known not to depend on the value of the global at the function
1781 // entry point. We do this by ensuring that every load is dominated by at
1782 // least one store.
1783 auto &DT = getAnalysis<DominatorTreeWrapperPass>(*const_cast<Function *>(F))
1784 .getDomTree();
1785
James Molloyd4d23572015-11-16 10:16:22 +00001786 // The below check is quadratic. Check we're not going to do too many tests.
1787 // FIXME: Even though this will always have worst-case quadratic time, we
1788 // could put effort into minimizing the average time by putting stores that
1789 // have been shown to dominate at least one load at the beginning of the
1790 // Stores array, making subsequent dominance checks more likely to succeed
1791 // early.
1792 //
1793 // The threshold here is fairly large because global->local demotion is a
1794 // very powerful optimization should it fire.
1795 const unsigned Threshold = 100;
1796 if (Loads.size() * Stores.size() > Threshold)
1797 return false;
1798
James Molloy9c7d4d82015-11-15 14:21:37 +00001799 for (auto *L : Loads) {
1800 auto *LTy = L->getType();
1801 if (!std::any_of(Stores.begin(), Stores.end(), [&](StoreInst *S) {
1802 auto *STy = S->getValueOperand()->getType();
1803 // The load is only dominated by the store if DomTree says so
1804 // and the number of bits loaded in L is less than or equal to
1805 // the number of bits stored in S.
1806 return DT.dominates(S, L) &&
1807 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy);
1808 }))
1809 return false;
1810 }
1811 // All loads have known dependences inside F, so the global can be localized.
1812 return true;
1813}
1814
James Molloy1d695a02015-11-19 18:04:33 +00001815/// C may have non-instruction users. Can all of those users be turned into
1816/// instructions?
1817static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) {
1818 // We don't do this exhaustively. The most common pattern that we really need
1819 // to care about is a constant GEP or constant bitcast - so just looking
1820 // through one single ConstantExpr.
1821 //
1822 // The set of constants that this function returns true for must be able to be
1823 // handled by makeAllConstantUsesInstructions.
1824 for (auto *U : C->users()) {
1825 if (isa<Instruction>(U))
1826 continue;
1827 if (!isa<ConstantExpr>(U))
1828 // Non instruction, non-constantexpr user; cannot convert this.
1829 return false;
1830 for (auto *UU : U->users())
1831 if (!isa<Instruction>(UU))
1832 // A constantexpr used by another constant. We don't try and recurse any
1833 // further but just bail out at this point.
1834 return false;
1835 }
1836
1837 return true;
1838}
1839
1840/// C may have non-instruction users, and
1841/// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the
1842/// non-instruction users to instructions.
1843static void makeAllConstantUsesInstructions(Constant *C) {
1844 SmallVector<ConstantExpr*,4> Users;
1845 for (auto *U : C->users()) {
1846 if (isa<ConstantExpr>(U))
1847 Users.push_back(cast<ConstantExpr>(U));
1848 else
1849 // We should never get here; allNonInstructionUsersCanBeMadeInstructions
1850 // should not have returned true for C.
1851 assert(
1852 isa<Instruction>(U) &&
1853 "Can't transform non-constantexpr non-instruction to instruction!");
1854 }
1855
1856 SmallVector<Value*,4> UUsers;
1857 for (auto *U : Users) {
1858 UUsers.clear();
1859 for (auto *UU : U->users())
1860 UUsers.push_back(UU);
1861 for (auto *UU : UUsers) {
1862 Instruction *UI = cast<Instruction>(UU);
1863 Instruction *NewU = U->getAsInstruction();
1864 NewU->insertBefore(UI);
1865 UI->replaceUsesOfWith(U, NewU);
1866 }
1867 U->dropAllReferences();
1868 }
1869}
1870
James Molloyea31ad32015-11-13 11:05:07 +00001871/// Analyze the specified global variable and optimize
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001872/// it if possible. If we make a change, return true.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001873bool GlobalOpt::processInternalGlobal(GlobalVariable *GV,
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001874 const GlobalStatus &GS) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001875 auto &DL = GV->getParent()->getDataLayout();
James Molloy9c7d4d82015-11-15 14:21:37 +00001876 // If this is a first class global and has only one accessing function and
1877 // this function is non-recursive, we replace the global with a local alloca
1878 // in this function.
Alexey Samsonova1944e62013-10-07 19:03:24 +00001879 //
Alp Tokerf907b892013-12-05 05:44:44 +00001880 // NOTE: It doesn't make sense to promote non-single-value types since we
Alexey Samsonova1944e62013-10-07 19:03:24 +00001881 // are just replacing static memory to stack memory.
1882 //
1883 // If the global is in different address space, don't bring it to stack.
1884 if (!GS.HasMultipleAccessingFunctions &&
James Molloy1d695a02015-11-19 18:04:33 +00001885 GS.AccessingFunction &&
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001886 GV->getValueType()->isSingleValueType() &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001887 GV->getType()->getAddressSpace() == 0 &&
1888 !GV->isExternallyInitialized() &&
James Molloy1d695a02015-11-19 18:04:33 +00001889 allNonInstructionUsersCanBeMadeInstructions(GV) &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001890 GS.AccessingFunction->doesNotRecurse() &&
1891 isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV) ) {
James Molloy33e73452015-11-13 11:05:13 +00001892 DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n");
Alexey Samsonova1944e62013-10-07 19:03:24 +00001893 Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1894 ->getEntryBlock().begin());
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001895 Type *ElemTy = GV->getValueType();
Alexey Samsonova1944e62013-10-07 19:03:24 +00001896 // FIXME: Pass Global's alignment when globals have alignment
Craig Topperf40110f2014-04-25 05:29:35 +00001897 AllocaInst *Alloca = new AllocaInst(ElemTy, nullptr,
1898 GV->getName(), &FirstI);
Alexey Samsonova1944e62013-10-07 19:03:24 +00001899 if (!isa<UndefValue>(GV->getInitializer()))
1900 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1901
James Molloy1d695a02015-11-19 18:04:33 +00001902 makeAllConstantUsesInstructions(GV);
1903
Alexey Samsonova1944e62013-10-07 19:03:24 +00001904 GV->replaceAllUsesWith(Alloca);
1905 GV->eraseFromParent();
1906 ++NumLocalized;
1907 return true;
1908 }
1909
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001910 // If the global is never loaded (but may be stored to), it is dead.
1911 // Delete it now.
Rafael Espindola045a78f2013-10-17 18:18:52 +00001912 if (!GS.IsLoaded) {
James Molloy33e73452015-11-13 11:05:13 +00001913 DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001914
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001915 bool Changed;
1916 if (isLeakCheckerRoot(GV)) {
1917 // Delete any constant stores to the global.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001918 Changed = CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001919 } else {
1920 // Delete any stores we can find to the global. We may not be able to
1921 // make it completely dead though.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001922 Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001923 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001924
1925 // If the global is dead now, delete it.
1926 if (GV->use_empty()) {
1927 GV->eraseFromParent();
1928 ++NumDeleted;
1929 Changed = true;
1930 }
1931 return Changed;
1932
Rafael Espindola045a78f2013-10-17 18:18:52 +00001933 } else if (GS.StoredType <= GlobalStatus::InitializerStored) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00001934 DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001935 GV->setConstant(true);
1936
1937 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001938 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001939
1940 // If the global is dead now, just nuke it.
1941 if (GV->use_empty()) {
1942 DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
1943 << "all users and delete global!\n");
1944 GV->eraseFromParent();
1945 ++NumDeleted;
1946 }
1947
1948 ++NumMarked;
1949 return true;
1950 } else if (!GV->getInitializer()->getType()->isSingleValueType()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001951 const DataLayout &DL = GV->getParent()->getDataLayout();
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001952 if (SRAGlobal(GV, DL))
Mehdi Amini46a43552015-03-04 18:43:29 +00001953 return true;
Oliver Stannard939724c2015-10-12 13:20:52 +00001954 } else if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001955 // If the initial value for the global was an undef value, and if only
1956 // one other value was stored into it, we can just change the
1957 // initializer to be the stored value, then delete all stores to the
1958 // global. This allows us to mark it constant.
1959 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1960 if (isa<UndefValue>(GV->getInitializer())) {
1961 // Change the initial value here.
1962 GV->setInitializer(SOVConstant);
1963
1964 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001965 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001966
1967 if (GV->use_empty()) {
1968 DEBUG(dbgs() << " *** Substituting initializer allowed us to "
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001969 << "simplify all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001970 GV->eraseFromParent();
1971 ++NumDeleted;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001972 }
1973 ++NumSubstitute;
1974 return true;
1975 }
1976
1977 // Try to optimize globals based on the knowledge that only one value
1978 // (besides its initializer) is ever stored to the global.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001979 if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001980 return true;
1981
Lang Hames459b5dc2014-03-23 04:22:31 +00001982 // Otherwise, if the global was not a boolean, we can shrink it to be a
1983 // boolean.
Eli Friedman33d37002013-09-09 22:00:13 +00001984 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) {
1985 if (GS.Ordering == NotAtomic) {
Lang Hames459b5dc2014-03-23 04:22:31 +00001986 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Eli Friedman33d37002013-09-09 22:00:13 +00001987 ++NumShrunkToBool;
1988 return true;
1989 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001990 }
Eli Friedman33d37002013-09-09 22:00:13 +00001991 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001992 }
1993
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001994 return false;
1995}
1996
James Molloyea31ad32015-11-13 11:05:07 +00001997/// Walk all of the direct calls of the specified function, changing them to
1998/// FastCC.
Chris Lattnera4c80222005-05-08 22:18:06 +00001999static void ChangeCalleesToFastCall(Function *F) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00002000 for (User *U : F->users()) {
2001 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002002 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002003 CallSite CS(cast<Instruction>(U));
2004 CS.setCallingConv(CallingConv::Fast);
Chris Lattnera4c80222005-05-08 22:18:06 +00002005 }
2006}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00002007
Bill Wendlinge94d8432012-12-07 23:16:57 +00002008static AttributeSet StripNest(LLVMContext &C, const AttributeSet &Attrs) {
Chris Lattner8a923e72008-03-12 17:45:29 +00002009 for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
Bill Wendling57625a42013-01-25 23:09:36 +00002010 unsigned Index = Attrs.getSlotIndex(i);
2011 if (!Attrs.getSlotAttributes(i).hasAttribute(Index, Attribute::Nest))
Duncan Sands85fab3a2008-02-18 17:32:13 +00002012 continue;
2013
Duncan Sands85fab3a2008-02-18 17:32:13 +00002014 // There can be only one.
Bill Wendling57625a42013-01-25 23:09:36 +00002015 return Attrs.removeAttribute(C, Index, Attribute::Nest);
Duncan Sands573b3f82008-02-16 20:56:04 +00002016 }
2017
2018 return Attrs;
2019}
2020
2021static void RemoveNestAttribute(Function *F) {
Bill Wendling85a64c22012-10-14 06:39:53 +00002022 F->setAttributes(StripNest(F->getContext(), F->getAttributes()));
Chandler Carruthcdf47882014-03-09 03:16:01 +00002023 for (User *U : F->users()) {
2024 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002025 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002026 CallSite CS(cast<Instruction>(U));
2027 CS.setAttributes(StripNest(F->getContext(), CS.getAttributes()));
Duncan Sands573b3f82008-02-16 20:56:04 +00002028 }
2029}
2030
Reid Kleckner22869372014-02-26 19:57:30 +00002031/// Return true if this is a calling convention that we'd like to change. The
2032/// idea here is that we don't want to mess with the convention if the user
2033/// explicitly requested something with performance implications like coldcc,
2034/// GHC, or anyregcc.
2035static bool isProfitableToMakeFastCC(Function *F) {
2036 CallingConv::ID CC = F->getCallingConv();
2037 // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc?
2038 return CC == CallingConv::C || CC == CallingConv::X86_ThisCall;
2039}
2040
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002041bool GlobalOpt::OptimizeFunctions(Module &M) {
2042 bool Changed = false;
2043 // Optimize functions.
2044 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002045 Function *F = &*FI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002046 // Functions without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002047 if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002048 F->setLinkage(GlobalValue::InternalLinkage);
David Majnemer1b3b70e2014-10-08 07:23:31 +00002049
Rafael Espindola2cc46b32015-12-22 19:38:07 +00002050 if (deleteIfDead(*F)) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002051 Changed = true;
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002052 continue;
2053 }
Rafael Espindola10d9a032015-12-22 20:43:30 +00002054
2055 Changed |= processGlobal(*F);
2056
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002057 if (!F->hasLocalLinkage())
2058 continue;
2059 if (isProfitableToMakeFastCC(F) && !F->isVarArg() &&
2060 !F->hasAddressTaken()) {
2061 // If this function has a calling convention worth changing, is not a
2062 // varargs function, and is only called directly, promote it to use the
2063 // Fast calling convention.
2064 F->setCallingConv(CallingConv::Fast);
2065 ChangeCalleesToFastCall(F);
2066 ++NumFastCallFns;
2067 Changed = true;
2068 }
Duncan Sands573b3f82008-02-16 20:56:04 +00002069
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002070 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2071 !F->hasAddressTaken()) {
2072 // The function is not used by a trampoline intrinsic, so it is safe
2073 // to remove the 'nest' attribute.
2074 RemoveNestAttribute(F);
2075 ++NumNestRemoved;
2076 Changed = true;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002077 }
2078 }
2079 return Changed;
2080}
2081
2082bool GlobalOpt::OptimizeGlobalVars(Module &M) {
2083 bool Changed = false;
David Majnemerdad0a642014-06-27 18:19:56 +00002084
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002085 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2086 GVI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002087 GlobalVariable *GV = &*GVI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002088 // Global variables without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002089 if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002090 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman580b80d2009-11-23 16:22:21 +00002091 // Simplify the initializer.
2092 if (GV->hasInitializer())
2093 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GV->getInitializer())) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002094 auto &DL = M.getDataLayout();
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002095 Constant *New = ConstantFoldConstantExpression(CE, DL, TLI);
Dan Gohman580b80d2009-11-23 16:22:21 +00002096 if (New && New != CE)
2097 GV->setInitializer(New);
2098 }
Rafael Espindolafc355bc2011-01-19 16:32:21 +00002099
Rafael Espindola10d9a032015-12-22 20:43:30 +00002100 if (deleteIfDead(*GV)) {
2101 Changed = true;
2102 continue;
2103 }
2104
2105 Changed |= processGlobal(*GV);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002106 }
2107 return Changed;
2108}
2109
James Molloyea31ad32015-11-13 11:05:07 +00002110/// Evaluate a piece of a constantexpr store into a global initializer. This
2111/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2112/// GEP operands of Addr [0, OpNo) have been stepped into.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002113static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2114 ConstantExpr *Addr, unsigned OpNo) {
2115 // Base case of the recursion.
2116 if (OpNo == Addr->getNumOperands()) {
2117 assert(Val->getType() == Init->getType() && "Type mismatch!");
2118 return Val;
2119 }
2120
2121 SmallVector<Constant*, 32> Elts;
2122 if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2123 // Break up the constant into its elements.
2124 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2125 Elts.push_back(Init->getAggregateElement(i));
2126
2127 // Replace the element that we are supposed to.
2128 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2129 unsigned Idx = CU->getZExtValue();
2130 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2131 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2132
2133 // Return the modified struct.
2134 return ConstantStruct::get(STy, Elts);
2135 }
2136
2137 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2138 SequentialType *InitTy = cast<SequentialType>(Init->getType());
2139
2140 uint64_t NumElts;
2141 if (ArrayType *ATy = dyn_cast<ArrayType>(InitTy))
2142 NumElts = ATy->getNumElements();
2143 else
2144 NumElts = InitTy->getVectorNumElements();
2145
2146 // Break up the array into elements.
2147 for (uint64_t i = 0, e = NumElts; i != e; ++i)
2148 Elts.push_back(Init->getAggregateElement(i));
2149
2150 assert(CI->getZExtValue() < NumElts);
2151 Elts[CI->getZExtValue()] =
2152 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2153
2154 if (Init->getType()->isArrayTy())
2155 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2156 return ConstantVector::get(Elts);
2157}
2158
James Molloyea31ad32015-11-13 11:05:07 +00002159/// We have decided that Addr (which satisfies the predicate
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002160/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2161static void CommitValueTo(Constant *Val, Constant *Addr) {
2162 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2163 assert(GV->hasInitializer());
2164 GV->setInitializer(Val);
2165 return;
2166 }
2167
2168 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2169 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2170 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2171}
2172
James Molloyea31ad32015-11-13 11:05:07 +00002173/// Evaluate static constructors in the function, if we can. Return true if we
2174/// can, false otherwise.
Mehdi Amini46a43552015-03-04 18:43:29 +00002175static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
Chad Rosiere6de63d2011-12-01 21:29:16 +00002176 const TargetLibraryInfo *TLI) {
Chris Lattnerda1889b2005-09-27 04:27:01 +00002177 // Call the function.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002178 Evaluator Eval(DL, TLI);
Chris Lattner65a3a092005-09-27 04:45:34 +00002179 Constant *RetValDummy;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002180 bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2181 SmallVector<Constant*, 0>());
Jakub Staszak9525a772012-12-06 21:57:16 +00002182
Chris Lattnerda1889b2005-09-27 04:27:01 +00002183 if (EvalSuccess) {
Nico Weber4b2acde2014-05-02 18:35:25 +00002184 ++NumCtorsEvaluated;
2185
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002186 // We succeeded at evaluation: commit the result.
David Greene44cb8ad2010-01-05 01:28:05 +00002187 DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002188 << F->getName() << "' to " << Eval.getMutatedMemory().size()
2189 << " stores.\n");
2190 for (DenseMap<Constant*, Constant*>::const_iterator I =
2191 Eval.getMutatedMemory().begin(), E = Eval.getMutatedMemory().end();
2192 I != E; ++I)
2193 CommitValueTo(I->second, I->first);
Craig Topper46276792014-08-24 23:23:06 +00002194 for (GlobalVariable *GV : Eval.getInvariants())
2195 GV->setConstant(true);
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002196 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002197
Chris Lattnerda1889b2005-09-27 04:27:01 +00002198 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002199}
2200
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002201static int compareNames(Constant *const *A, Constant *const *B) {
Sean Silvaace78182015-09-28 19:02:11 +00002202 return (*A)->stripPointerCasts()->getName().compare(
2203 (*B)->stripPointerCasts()->getName());
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002204}
2205
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002206static void setUsedInitializer(GlobalVariable &V,
Craig Topper97ebe532014-08-19 07:44:27 +00002207 const SmallPtrSet<GlobalValue *, 8> &Init) {
Rafael Espindolac2bb73f2013-07-20 23:33:15 +00002208 if (Init.empty()) {
2209 V.eraseFromParent();
2210 return;
2211 }
2212
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002213 // Type of pointer to the array of pointers.
2214 PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0);
Rafael Espindola00752162013-05-09 17:22:59 +00002215
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002216 SmallVector<llvm::Constant *, 8> UsedArray;
Craig Topper71b7b682014-08-21 05:55:13 +00002217 for (GlobalValue *GV : Init) {
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002218 Constant *Cast
Craig Topper71b7b682014-08-21 05:55:13 +00002219 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002220 UsedArray.push_back(Cast);
Rafael Espindola00752162013-05-09 17:22:59 +00002221 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002222 // Sort to get deterministic order.
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002223 array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002224 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
Rafael Espindola00752162013-05-09 17:22:59 +00002225
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002226 Module *M = V.getParent();
2227 V.removeFromParent();
2228 GlobalVariable *NV =
2229 new GlobalVariable(*M, ATy, false, llvm::GlobalValue::AppendingLinkage,
2230 llvm::ConstantArray::get(ATy, UsedArray), "");
2231 NV->takeName(&V);
2232 NV->setSection("llvm.metadata");
2233 delete &V;
Rafael Espindola00752162013-05-09 17:22:59 +00002234}
2235
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002236namespace {
James Molloyea31ad32015-11-13 11:05:07 +00002237/// An easy to access representation of llvm.used and llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002238class LLVMUsed {
2239 SmallPtrSet<GlobalValue *, 8> Used;
2240 SmallPtrSet<GlobalValue *, 8> CompilerUsed;
2241 GlobalVariable *UsedV;
2242 GlobalVariable *CompilerUsedV;
2243
2244public:
Rafael Espindolaec2375f2013-07-25 02:50:08 +00002245 LLVMUsed(Module &M) {
Rafael Espindola17600e22013-07-25 03:23:25 +00002246 UsedV = collectUsedGlobalVariables(M, Used, false);
2247 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
Rafael Espindola00752162013-05-09 17:22:59 +00002248 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002249 typedef SmallPtrSet<GlobalValue *, 8>::iterator iterator;
Craig Topper46276792014-08-24 23:23:06 +00002250 typedef iterator_range<iterator> used_iterator_range;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002251 iterator usedBegin() { return Used.begin(); }
2252 iterator usedEnd() { return Used.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002253 used_iterator_range used() {
2254 return used_iterator_range(usedBegin(), usedEnd());
2255 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002256 iterator compilerUsedBegin() { return CompilerUsed.begin(); }
2257 iterator compilerUsedEnd() { return CompilerUsed.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002258 used_iterator_range compilerUsed() {
2259 return used_iterator_range(compilerUsedBegin(), compilerUsedEnd());
2260 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002261 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
2262 bool compilerUsedCount(GlobalValue *GV) const {
2263 return CompilerUsed.count(GV);
2264 }
2265 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2266 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
David Blaikie70573dc2014-11-19 07:49:26 +00002267 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
2268 bool compilerUsedInsert(GlobalValue *GV) {
2269 return CompilerUsed.insert(GV).second;
2270 }
Rafael Espindola00752162013-05-09 17:22:59 +00002271
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002272 void syncVariablesAndSets() {
2273 if (UsedV)
2274 setUsedInitializer(*UsedV, Used);
2275 if (CompilerUsedV)
2276 setUsedInitializer(*CompilerUsedV, CompilerUsed);
2277 }
2278};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00002279}
Rafael Espindola00752162013-05-09 17:22:59 +00002280
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002281static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
2282 if (GA.use_empty()) // No use at all.
2283 return false;
2284
2285 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
2286 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002287 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002288 if (!GA.hasOneUse())
2289 // Strictly more than one use. So at least one is not in llvm.used and
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002290 // llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002291 return true;
2292
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002293 // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002294 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
Rafael Espindola00752162013-05-09 17:22:59 +00002295}
2296
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002297static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
2298 const LLVMUsed &U) {
2299 unsigned N = 2;
2300 assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
2301 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002302 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002303 if (U.usedCount(&V) || U.compilerUsedCount(&V))
2304 ++N;
2305 return V.hasNUsesOrMore(N);
2306}
2307
2308static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
2309 if (!GA.hasLocalLinkage())
2310 return true;
2311
2312 return U.usedCount(&GA) || U.compilerUsedCount(&GA);
2313}
2314
Craig Topper71b7b682014-08-21 05:55:13 +00002315static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U,
2316 bool &RenameTarget) {
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002317 RenameTarget = false;
Rafael Espindola00752162013-05-09 17:22:59 +00002318 bool Ret = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002319 if (hasUseOtherThanLLVMUsed(GA, U))
Rafael Espindola00752162013-05-09 17:22:59 +00002320 Ret = true;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002321
2322 // If the alias is externally visible, we may still be able to simplify it.
2323 if (!mayHaveOtherReferences(GA, U))
2324 return Ret;
2325
2326 // If the aliasee has internal linkage, give it the name and linkage
2327 // of the alias, and delete the alias. This turns:
2328 // define internal ... @f(...)
2329 // @a = alias ... @f
2330 // into:
2331 // define ... @a(...)
2332 Constant *Aliasee = GA.getAliasee();
2333 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2334 if (!Target->hasLocalLinkage())
2335 return Ret;
2336
2337 // Do not perform the transform if multiple aliases potentially target the
2338 // aliasee. This check also ensures that it is safe to replace the section
2339 // and other attributes of the aliasee with those of the alias.
2340 if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
2341 return Ret;
2342
2343 RenameTarget = true;
2344 return true;
Rafael Espindola00752162013-05-09 17:22:59 +00002345}
2346
Duncan Sandsed722832009-03-06 10:21:56 +00002347bool GlobalOpt::OptimizeGlobalAliases(Module &M) {
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002348 bool Changed = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002349 LLVMUsed Used(M);
2350
Craig Topper46276792014-08-24 23:23:06 +00002351 for (GlobalValue *GV : Used.used())
2352 Used.compilerUsedErase(GV);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002353
Duncan Sands0bcf0852009-01-07 20:01:06 +00002354 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002355 I != E;) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002356 GlobalAlias *J = &*I++;
2357
Duncan Sandsed722832009-03-06 10:21:56 +00002358 // Aliases without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002359 if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002360 J->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindola5349d872015-12-22 19:50:22 +00002361
2362 if (deleteIfDead(*J)) {
2363 Changed = true;
2364 continue;
2365 }
2366
Duncan Sandsb3f27882009-02-15 09:56:08 +00002367 // If the aliasee may change at link time, nothing can be done - bail out.
2368 if (J->mayBeOverridden())
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002369 continue;
2370
Duncan Sandsb3f27882009-02-15 09:56:08 +00002371 Constant *Aliasee = J->getAliasee();
David Majnemer0e2cc2a2014-07-01 00:30:56 +00002372 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts());
2373 // We can't trivially replace the alias with the aliasee if the aliasee is
2374 // non-trivial in some way.
2375 // TODO: Try to handle non-zero GEPs of local aliasees.
2376 if (!Target)
2377 continue;
Duncan Sands7a1db332009-02-18 17:55:38 +00002378 Target->removeDeadConstantUsers();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002379
2380 // Make all users of the alias use the aliasee instead.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002381 bool RenameTarget;
2382 if (!hasUsesToReplace(*J, Used, RenameTarget))
Rafael Espindola00752162013-05-09 17:22:59 +00002383 continue;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002384
Rafael Espindola6b238632014-05-16 19:35:39 +00002385 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType()));
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002386 ++NumAliasesResolved;
2387 Changed = true;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002388
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002389 if (RenameTarget) {
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002390 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002391 Target->takeName(&*J);
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002392 Target->setLinkage(J->getLinkage());
Reid Kleckner22b19da2014-02-13 02:18:36 +00002393 Target->setVisibility(J->getVisibility());
2394 Target->setDLLStorageClass(J->getDLLStorageClass());
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002395
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002396 if (Used.usedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002397 Used.usedInsert(Target);
2398
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002399 if (Used.compilerUsedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002400 Used.compilerUsedInsert(Target);
Rafael Espindola8d304802013-06-12 16:45:47 +00002401 } else if (mayHaveOtherReferences(*J, Used))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002402 continue;
2403
Duncan Sandsb3f27882009-02-15 09:56:08 +00002404 // Delete the alias.
2405 M.getAliasList().erase(J);
2406 ++NumAliasesRemoved;
2407 Changed = true;
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002408 }
2409
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002410 Used.syncVariablesAndSets();
2411
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002412 return Changed;
2413}
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002414
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002415static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
2416 if (!TLI->has(LibFunc::cxa_atexit))
Craig Topperf40110f2014-04-25 05:29:35 +00002417 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002418
2419 Function *Fn = M.getFunction(TLI->getName(LibFunc::cxa_atexit));
Jakub Staszak9525a772012-12-06 21:57:16 +00002420
Anders Carlssonee6bc702011-03-20 17:59:11 +00002421 if (!Fn)
Craig Topperf40110f2014-04-25 05:29:35 +00002422 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002423
Chris Lattner229907c2011-07-18 04:54:35 +00002424 FunctionType *FTy = Fn->getFunctionType();
Jakub Staszak9525a772012-12-06 21:57:16 +00002425
2426 // Checking that the function has the right return type, the right number of
Anders Carlsson48a44912011-03-20 19:51:13 +00002427 // parameters and that they all have pointer types should be enough.
2428 if (!FTy->getReturnType()->isIntegerTy() ||
2429 FTy->getNumParams() != 3 ||
Anders Carlssonee6bc702011-03-20 17:59:11 +00002430 !FTy->getParamType(0)->isPointerTy() ||
2431 !FTy->getParamType(1)->isPointerTy() ||
2432 !FTy->getParamType(2)->isPointerTy())
Craig Topperf40110f2014-04-25 05:29:35 +00002433 return nullptr;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002434
2435 return Fn;
2436}
2437
James Molloyea31ad32015-11-13 11:05:07 +00002438/// Returns whether the given function is an empty C++ destructor and can
2439/// therefore be eliminated.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002440/// Note that we assume that other optimization passes have already simplified
2441/// the code so we only look for a function with a single basic block, where
Benjamin Kramer1a4695a2012-02-09 16:28:15 +00002442/// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
2443/// other side-effect free instructions.
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002444static bool cxxDtorIsEmpty(const Function &Fn,
2445 SmallPtrSet<const Function *, 8> &CalledFunctions) {
Anders Carlsson48a44912011-03-20 19:51:13 +00002446 // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
Nick Lewyckyd0781832011-03-21 02:26:01 +00002447 // nounwind, but that doesn't seem worth doing.
Anders Carlsson48a44912011-03-20 19:51:13 +00002448 if (Fn.isDeclaration())
2449 return false;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002450
2451 if (++Fn.begin() != Fn.end())
2452 return false;
2453
2454 const BasicBlock &EntryBlock = Fn.getEntryBlock();
2455 for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end();
2456 I != E; ++I) {
2457 if (const CallInst *CI = dyn_cast<CallInst>(I)) {
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002458 // Ignore debug intrinsics.
2459 if (isa<DbgInfoIntrinsic>(CI))
2460 continue;
2461
Anders Carlssonee6bc702011-03-20 17:59:11 +00002462 const Function *CalledFn = CI->getCalledFunction();
2463
2464 if (!CalledFn)
2465 return false;
2466
Anders Carlsson1cc80732011-03-22 03:21:01 +00002467 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
2468
Anders Carlsson48a44912011-03-20 19:51:13 +00002469 // Don't treat recursive functions as empty.
David Blaikie70573dc2014-11-19 07:49:26 +00002470 if (!NewCalledFunctions.insert(CalledFn).second)
Anders Carlsson48a44912011-03-20 19:51:13 +00002471 return false;
2472
Anders Carlsson1cc80732011-03-22 03:21:01 +00002473 if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002474 return false;
2475 } else if (isa<ReturnInst>(*I))
Benjamin Kramer487a3962012-02-09 14:26:06 +00002476 return true; // We're done.
2477 else if (I->mayHaveSideEffects())
2478 return false; // Destructor with side effects, bail.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002479 }
2480
2481 return false;
2482}
2483
2484bool GlobalOpt::OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
2485 /// Itanium C++ ABI p3.3.5:
2486 ///
2487 /// After constructing a global (or local static) object, that will require
2488 /// destruction on exit, a termination function is registered as follows:
2489 ///
2490 /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
2491 ///
2492 /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
2493 /// call f(p) when DSO d is unloaded, before all such termination calls
2494 /// registered before this one. It returns zero if registration is
Nick Lewyckyd0781832011-03-21 02:26:01 +00002495 /// successful, nonzero on failure.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002496
2497 // This pass will look for calls to __cxa_atexit where the function is trivial
2498 // and remove them.
2499 bool Changed = false;
2500
Chandler Carruthcdf47882014-03-09 03:16:01 +00002501 for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end();
2502 I != E;) {
Anders Carlsson336fd902011-03-20 20:21:33 +00002503 // We're only interested in calls. Theoretically, we could handle invoke
2504 // instructions as well, but neither llvm-gcc nor clang generate invokes
2505 // to __cxa_atexit.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002506 CallInst *CI = dyn_cast<CallInst>(*I++);
2507 if (!CI)
Anders Carlsson336fd902011-03-20 20:21:33 +00002508 continue;
2509
Jakub Staszak9525a772012-12-06 21:57:16 +00002510 Function *DtorFn =
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002511 dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
Anders Carlssonee6bc702011-03-20 17:59:11 +00002512 if (!DtorFn)
2513 continue;
2514
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002515 SmallPtrSet<const Function *, 8> CalledFunctions;
2516 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002517 continue;
2518
2519 // Just remove the call.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002520 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
2521 CI->eraseFromParent();
Anders Carlsson48a44912011-03-20 19:51:13 +00002522
Anders Carlssonee6bc702011-03-20 17:59:11 +00002523 ++NumCXXDtorsRemoved;
2524
2525 Changed |= true;
2526 }
2527
2528 return Changed;
2529}
2530
Chris Lattner25db5802004-10-07 04:16:33 +00002531bool GlobalOpt::runOnModule(Module &M) {
2532 bool Changed = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002533
Mehdi Amini46a43552015-03-04 18:43:29 +00002534 auto &DL = M.getDataLayout();
Chandler Carruthb98f63d2015-01-15 10:41:28 +00002535 TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Nick Lewyckycf6aae62012-02-12 01:13:18 +00002536
Chris Lattner25db5802004-10-07 04:16:33 +00002537 bool LocalChange = true;
2538 while (LocalChange) {
2539 LocalChange = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002540
David Majnemer1b3b70e2014-10-08 07:23:31 +00002541 NotDiscardableComdats.clear();
2542 for (const GlobalVariable &GV : M.globals())
2543 if (const Comdat *C = GV.getComdat())
2544 if (!GV.isDiscardableIfUnused() || !GV.use_empty())
2545 NotDiscardableComdats.insert(C);
2546 for (Function &F : M)
2547 if (const Comdat *C = F.getComdat())
2548 if (!F.isDefTriviallyDead())
2549 NotDiscardableComdats.insert(C);
2550 for (GlobalAlias &GA : M.aliases())
2551 if (const Comdat *C = GA.getComdat())
2552 if (!GA.isDiscardableIfUnused() || !GA.use_empty())
2553 NotDiscardableComdats.insert(C);
2554
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002555 // Delete functions that are trivially dead, ccc -> fastcc
2556 LocalChange |= OptimizeFunctions(M);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002557
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002558 // Optimize global_ctors list.
Richard Smithc167d652014-05-06 01:44:26 +00002559 LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) {
2560 return EvaluateStaticConstructor(F, DL, TLI);
2561 });
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002562
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002563 // Optimize non-address-taken globals.
2564 LocalChange |= OptimizeGlobalVars(M);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002565
2566 // Resolve aliases, when possible.
Duncan Sandsed722832009-03-06 10:21:56 +00002567 LocalChange |= OptimizeGlobalAliases(M);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002568
Manman Renb3c52fb2013-05-14 21:52:44 +00002569 // Try to remove trivial global destructors if they are not removed
2570 // already.
2571 Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002572 if (CXAAtExitFn)
2573 LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
2574
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002575 Changed |= LocalChange;
Chris Lattner25db5802004-10-07 04:16:33 +00002576 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002577
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002578 // TODO: Move all global ctors functions to the end of the module for code
2579 // layout.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002580
Chris Lattner25db5802004-10-07 04:16:33 +00002581 return Changed;
2582}
Anthony Pescha2d93692015-07-22 18:50:10 +00002583