blob: ade4f21ceb5240171c1b22cec766bfce5f73b34c [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
Justin Bogner1a075012016-04-26 00:28:01 +000016#include "llvm/Transforms/IPO/GlobalOpt.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"
Justin Bogner1a075012016-04-26 00:28:01 +000043#include "llvm/Transforms/IPO.h"
Nico Weber4b2acde2014-05-02 18:35:25 +000044#include "llvm/Transforms/Utils/CtorUtils.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000045#include "llvm/Transforms/Utils/Evaluator.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000046#include "llvm/Transforms/Utils/GlobalStatus.h"
David Majnemer522a9112016-07-22 04:54:44 +000047#include "llvm/Transforms/Utils/Local.h"
Chris Lattner25db5802004-10-07 04:16:33 +000048#include <algorithm>
49using 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
James Molloyea31ad32015-11-13 11:05:07 +000069/// Is this global variable possibly used by a leak checker as a root? If so,
70/// we might not really want to eliminate the stores to it.
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +000071static bool isLeakCheckerRoot(GlobalVariable *GV) {
72 // A global variable is a root if it is a pointer, or could plausibly contain
73 // a pointer. There are two challenges; one is that we could have a struct
74 // the has an inner member which is a pointer. We recurse through the type to
75 // detect these (up to a point). The other is that we may actually be a union
76 // of a pointer and another type, and so our LLVM type is an integer which
77 // gets converted into a pointer, or our type is an [i8 x #] with a pointer
78 // potentially contained here.
79
80 if (GV->hasPrivateLinkage())
81 return false;
82
83 SmallVector<Type *, 4> Types;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +000084 Types.push_back(GV->getValueType());
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +000085
86 unsigned Limit = 20;
87 do {
88 Type *Ty = Types.pop_back_val();
89 switch (Ty->getTypeID()) {
90 default: break;
91 case Type::PointerTyID: return true;
92 case Type::ArrayTyID:
93 case Type::VectorTyID: {
94 SequentialType *STy = cast<SequentialType>(Ty);
95 Types.push_back(STy->getElementType());
96 break;
97 }
98 case Type::StructTyID: {
99 StructType *STy = cast<StructType>(Ty);
100 if (STy->isOpaque()) return true;
101 for (StructType::element_iterator I = STy->element_begin(),
102 E = STy->element_end(); I != E; ++I) {
103 Type *InnerTy = *I;
104 if (isa<PointerType>(InnerTy)) return true;
105 if (isa<CompositeType>(InnerTy))
106 Types.push_back(InnerTy);
107 }
108 break;
109 }
110 }
111 if (--Limit == 0) return true;
112 } while (!Types.empty());
113 return false;
114}
115
116/// Given a value that is stored to a global but never read, determine whether
117/// it's safe to remove the store and the chain of computation that feeds the
118/// store.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000119static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000120 do {
121 if (isa<Constant>(V))
122 return true;
123 if (!V->hasOneUse())
124 return false;
Nick Lewycky7d0f1102012-07-25 21:19:40 +0000125 if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
126 isa<GlobalValue>(V))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000127 return false;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000128 if (isAllocationFn(V, TLI))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000129 return true;
130
131 Instruction *I = cast<Instruction>(V);
132 if (I->mayHaveSideEffects())
133 return false;
134 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
135 if (!GEP->hasAllConstantIndices())
136 return false;
137 } else if (I->getNumOperands() != 1) {
138 return false;
139 }
140
141 V = I->getOperand(0);
142 } while (1);
143}
144
James Molloyea31ad32015-11-13 11:05:07 +0000145/// This GV is a pointer root. Loop over all users of the global and clean up
146/// any that obviously don't assign the global a value that isn't dynamically
147/// allocated.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000148static bool CleanupPointerRootUsers(GlobalVariable *GV,
149 const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000150 // A brief explanation of leak checkers. The goal is to find bugs where
151 // pointers are forgotten, causing an accumulating growth in memory
152 // usage over time. The common strategy for leak checkers is to whitelist the
153 // memory pointed to by globals at exit. This is popular because it also
154 // solves another problem where the main thread of a C++ program may shut down
155 // before other threads that are still expecting to use those globals. To
156 // handle that case, we expect the program may create a singleton and never
157 // destroy it.
158
159 bool Changed = false;
160
161 // If Dead[n].first is the only use of a malloc result, we can delete its
162 // chain of computation and the store to the global in Dead[n].second.
163 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
164
165 // Constants can't be pointers to dynamically allocated memory.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000166 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end();
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000167 UI != E;) {
168 User *U = *UI++;
169 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
170 Value *V = SI->getValueOperand();
171 if (isa<Constant>(V)) {
172 Changed = true;
173 SI->eraseFromParent();
174 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
175 if (I->hasOneUse())
176 Dead.push_back(std::make_pair(I, SI));
177 }
178 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
179 if (isa<Constant>(MSI->getValue())) {
180 Changed = true;
181 MSI->eraseFromParent();
182 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
183 if (I->hasOneUse())
184 Dead.push_back(std::make_pair(I, MSI));
185 }
186 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
187 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
188 if (MemSrc && MemSrc->isConstant()) {
189 Changed = true;
190 MTI->eraseFromParent();
191 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
192 if (I->hasOneUse())
193 Dead.push_back(std::make_pair(I, MTI));
194 }
195 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
196 if (CE->use_empty()) {
197 CE->destroyConstant();
198 Changed = true;
199 }
200 } else if (Constant *C = dyn_cast<Constant>(U)) {
Rafael Espindola27797ba2013-10-17 18:06:32 +0000201 if (isSafeToDestroyConstant(C)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000202 C->destroyConstant();
203 // This could have invalidated UI, start over from scratch.
204 Dead.clear();
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000205 CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000206 return true;
207 }
208 }
209 }
210
211 for (int i = 0, e = Dead.size(); i != e; ++i) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000212 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000213 Dead[i].second->eraseFromParent();
214 Instruction *I = Dead[i].first;
215 do {
Michael Gottesman2a654272013-01-11 23:08:52 +0000216 if (isAllocationFn(I, TLI))
217 break;
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000218 Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
219 if (!J)
220 break;
221 I->eraseFromParent();
222 I = J;
Nick Lewycky38be9312012-07-24 21:33:00 +0000223 } while (1);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000224 I->eraseFromParent();
225 }
226 }
227
228 return Changed;
229}
230
James Molloyea31ad32015-11-13 11:05:07 +0000231/// We just marked GV constant. Loop over all users of the global, cleaning up
232/// the obvious ones. This is largely just a quick scan over the use list to
233/// clean up the easy and obvious cruft. This returns true if it made a change.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000234static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
Mehdi Amini46a43552015-03-04 18:43:29 +0000235 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000236 TargetLibraryInfo *TLI) {
Chris Lattnercb9f1522004-10-10 16:43:46 +0000237 bool Changed = false;
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000238 // Note that we need to use a weak value handle for the worklist items. When
239 // we delete a constant array, we may also be holding pointer to one of its
240 // elements (or an element of one of its elements if we're dealing with an
241 // array of arrays) in the worklist.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000242 SmallVector<WeakVH, 8> WorkList(V->user_begin(), V->user_end());
Bill Wendling88d06c32013-04-02 08:16:45 +0000243 while (!WorkList.empty()) {
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000244 Value *UV = WorkList.pop_back_val();
245 if (!UV)
246 continue;
247
248 User *U = cast<User>(UV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000249
Chris Lattner25db5802004-10-07 04:16:33 +0000250 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000251 if (Init) {
252 // Replace the load with the initializer.
253 LI->replaceAllUsesWith(Init);
254 LI->eraseFromParent();
255 Changed = true;
256 }
Chris Lattner25db5802004-10-07 04:16:33 +0000257 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
258 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000259 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000260 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000261 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
262 if (CE->getOpcode() == Instruction::GetElementPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000263 Constant *SubInit = nullptr;
Chris Lattner46d9ff082005-09-26 07:34:35 +0000264 if (Init)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000265 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000266 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI);
Matt Arsenault461c8e02014-01-02 20:01:43 +0000267 } else if ((CE->getOpcode() == Instruction::BitCast &&
268 CE->getType()->isPointerTy()) ||
269 CE->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000270 // Pointer cast, delete any stores and memsets to the global.
Craig Topperf40110f2014-04-25 05:29:35 +0000271 Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI);
Chris Lattner7561ca12005-02-27 18:58:52 +0000272 }
273
274 if (CE->use_empty()) {
275 CE->destroyConstant();
276 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000277 }
278 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000279 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
280 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
281 // and will invalidate our notion of what Init is.
Craig Topperf40110f2014-04-25 05:29:35 +0000282 Constant *SubInit = nullptr;
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000283 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
Mehdi Amini46a43552015-03-04 18:43:29 +0000284 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000285 ConstantFoldInstruction(GEP, DL, TLI));
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000286 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000287 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Benjamin Krameraa9e4a52012-03-28 14:50:09 +0000288
289 // If the initializer is an all-null value and we have an inbounds GEP,
290 // we already know what the result of any load from that GEP is.
291 // TODO: Handle splats.
292 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
Eduard Burtescu19eb0312016-01-19 17:28:00 +0000293 SubInit = Constant::getNullValue(GEP->getResultElementType());
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000294 }
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000295 Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000296
Chris Lattnercb9f1522004-10-10 16:43:46 +0000297 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000298 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000299 Changed = true;
300 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000301 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
302 if (MI->getRawDest() == V) {
303 MI->eraseFromParent();
304 Changed = true;
305 }
306
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000307 } else if (Constant *C = dyn_cast<Constant>(U)) {
308 // If we have a chain of dead constantexprs or other things dangling from
309 // us, and if they are all dead, nuke them without remorse.
Rafael Espindola27797ba2013-10-17 18:06:32 +0000310 if (isSafeToDestroyConstant(C)) {
Devang Pateld926aaa2009-03-06 01:37:41 +0000311 C->destroyConstant();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000312 CleanupConstantGlobalUsers(V, Init, DL, TLI);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000313 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000314 }
Chris Lattner25db5802004-10-07 04:16:33 +0000315 }
316 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000317 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000318}
319
James Molloyea31ad32015-11-13 11:05:07 +0000320/// Return true if the specified instruction is a safe user of a derived
321/// expression from a global that we want to SROA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000322static bool isSafeSROAElementUse(Value *V) {
323 // We might have a dead and dangling constant hanging off of here.
324 if (Constant *C = dyn_cast<Constant>(V))
Rafael Espindola27797ba2013-10-17 18:06:32 +0000325 return isSafeToDestroyConstant(C);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000326
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000327 Instruction *I = dyn_cast<Instruction>(V);
328 if (!I) return false;
329
330 // Loads are ok.
331 if (isa<LoadInst>(I)) return true;
332
333 // Stores *to* the pointer are ok.
334 if (StoreInst *SI = dyn_cast<StoreInst>(I))
335 return SI->getOperand(0) != V;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000336
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000337 // Otherwise, it must be a GEP.
338 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
Craig Topperf40110f2014-04-25 05:29:35 +0000339 if (!GEPI) return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000340
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000341 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
342 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
343 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000344
Chandler Carruthcdf47882014-03-09 03:16:01 +0000345 for (User *U : GEPI->users())
346 if (!isSafeSROAElementUse(U))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000347 return false;
Chris Lattnerab053722008-01-14 01:31:05 +0000348 return true;
349}
350
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000351
James Molloyea31ad32015-11-13 11:05:07 +0000352/// U is a direct user of the specified global value. Look at it and its uses
353/// and decide whether it is safe to SROA this global.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000354static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
355 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000356 if (!isa<GetElementPtrInst>(U) &&
357 (!isa<ConstantExpr>(U) ||
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000358 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
359 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000360
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000361 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
362 // don't like < 3 operand CE's, and we don't like non-constant integer
363 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
364 // value of C.
365 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
366 !cast<Constant>(U->getOperand(1))->isNullValue() ||
367 !isa<ConstantInt>(U->getOperand(2)))
368 return false;
369
370 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
371 ++GEPI; // Skip over the pointer index.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000372
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000373 // If this is a use of an array allocation, do a bit more checking for sanity.
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000374 if (GEPI.isSequential()) {
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000375 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000376
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000377 // Check to make sure that index falls within the array. If not,
378 // something funny is going on, so we won't do the optimization.
379 //
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000380 if (GEPI.isBoundedSequential() &&
381 Idx->getZExtValue() >= GEPI.getSequentialNumElements())
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000382 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000383
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000384 // We cannot scalar repl this level of the array unless any array
385 // sub-indices are in-range constants. In particular, consider:
386 // A[0][i]. We cannot know that the user isn't doing invalid things like
387 // allowing i to index an out-of-range subscript that accesses A[1].
388 //
389 // Scalar replacing *just* the outer index of the array is probably not
390 // going to be a win anyway, so just give up.
391 for (++GEPI; // Skip array index.
Dan Gohman82ac81b2009-08-18 14:58:19 +0000392 GEPI != E;
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000393 ++GEPI) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000394 if (GEPI.isStruct())
Dan Gohman82ac81b2009-08-18 14:58:19 +0000395 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000396
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000397 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000398 if (!IdxVal ||
399 (GEPI.isBoundedSequential() &&
400 IdxVal->getZExtValue() >= GEPI.getSequentialNumElements()))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000401 return false;
402 }
403 }
404
Chandler Carruthcdf47882014-03-09 03:16:01 +0000405 for (User *UU : U->users())
406 if (!isSafeSROAElementUse(UU))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000407 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000408
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000409 return true;
410}
411
James Molloyea31ad32015-11-13 11:05:07 +0000412/// Look at all uses of the global and decide whether it is safe for us to
413/// perform this transformation.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000414static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000415 for (User *U : GV->users())
416 if (!IsUserOfGlobalSafeForSRA(U, GV))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000417 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000418
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000419 return true;
420}
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000421
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000422
James Molloyea31ad32015-11-13 11:05:07 +0000423/// Perform scalar replacement of aggregates on the specified global variable.
424/// This opens the door for other optimizations by exposing the behavior of the
425/// program in a more fine-grained way. We have determined that this
426/// transformation is safe already. We return the first global variable we
Chris Lattnerabab0712004-10-08 17:32:09 +0000427/// insert so that the caller can reprocess it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000428static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
Chris Lattnerab053722008-01-14 01:31:05 +0000429 // Make sure this global only has simple uses that we can SRA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000430 if (!GlobalUsersSafeToSRA(GV))
Craig Topperf40110f2014-04-25 05:29:35 +0000431 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000432
James Molloyeb040cc2016-04-25 10:48:29 +0000433 assert(GV->hasLocalLinkage());
Chris Lattnerabab0712004-10-08 17:32:09 +0000434 Constant *Init = GV->getInitializer();
Chris Lattner229907c2011-07-18 04:54:35 +0000435 Type *Ty = Init->getType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000436
Chris Lattnerabab0712004-10-08 17:32:09 +0000437 std::vector<GlobalVariable*> NewGlobals;
438 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
439
Chris Lattner67ca6f632008-04-26 07:40:11 +0000440 // Get the alignment of the global, either explicit or target-specific.
441 unsigned StartAlignment = GV->getAlignment();
442 if (StartAlignment == 0)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000443 StartAlignment = DL.getABITypeAlignment(GV->getType());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000444
Chris Lattner229907c2011-07-18 04:54:35 +0000445 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Chris Lattnerabab0712004-10-08 17:32:09 +0000446 NewGlobals.reserve(STy->getNumElements());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000447 const StructLayout &Layout = *DL.getStructLayout(STy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000448 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000449 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000450 assert(In && "Couldn't get element of initializer?");
Chris Lattner46b5c642009-11-06 04:27:31 +0000451 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000452 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000453 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000454 GV->getThreadLocalMode(),
Owen Anderson5948fdf2009-07-08 01:26:06 +0000455 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000456 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000457 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000458 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000459 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000460
Chris Lattner67ca6f632008-04-26 07:40:11 +0000461 // Calculate the known alignment of the field. If the original aggregate
462 // had 256 byte alignment for example, something might depend on that:
463 // propagate info to each field.
464 uint64_t FieldOffset = Layout.getElementOffset(i);
465 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000466 if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i)))
Chris Lattner67ca6f632008-04-26 07:40:11 +0000467 NGV->setAlignment(NewAlign);
Chris Lattnerabab0712004-10-08 17:32:09 +0000468 }
Chris Lattner229907c2011-07-18 04:54:35 +0000469 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
Peter Collingbournebc070522016-12-02 03:20:58 +0000470 unsigned NumElements = STy->getNumElements();
Chris Lattner25169ca2005-02-23 16:53:04 +0000471 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Craig Topperf40110f2014-04-25 05:29:35 +0000472 return nullptr; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000473 NewGlobals.reserve(NumElements);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000474
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000475 uint64_t EltSize = DL.getTypeAllocSize(STy->getElementType());
476 unsigned EltAlign = DL.getABITypeAlignment(STy->getElementType());
Chris Lattnerabab0712004-10-08 17:32:09 +0000477 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000478 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000479 assert(In && "Couldn't get element of initializer?");
480
Chris Lattner46b5c642009-11-06 04:27:31 +0000481 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000482 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000483 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000484 GV->getThreadLocalMode(),
Owen Andersonb17f3292009-07-08 19:03:57 +0000485 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000486 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000487 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000488 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000489 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000490
Chris Lattner67ca6f632008-04-26 07:40:11 +0000491 // Calculate the known alignment of the field. If the original aggregate
492 // had 256 byte alignment for example, something might depend on that:
493 // propagate info to each field.
494 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
495 if (NewAlign > EltAlign)
496 NGV->setAlignment(NewAlign);
Chris Lattnerabab0712004-10-08 17:32:09 +0000497 }
498 }
499
500 if (NewGlobals.empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000501 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000502
James Molloyef607a22015-10-28 14:30:53 +0000503 DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n");
Chris Lattner004e2502004-10-11 05:54:41 +0000504
Chris Lattner46b5c642009-11-06 04:27:31 +0000505 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattnerabab0712004-10-08 17:32:09 +0000506
507 // Loop over all of the uses of the global, replacing the constantexpr geps,
508 // with smaller constantexpr geps or direct references.
509 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000510 User *GEP = GV->user_back();
Chris Lattner004e2502004-10-11 05:54:41 +0000511 assert(((isa<ConstantExpr>(GEP) &&
512 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
513 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000514
Chris Lattnerabab0712004-10-08 17:32:09 +0000515 // Ignore the 1th operand, which has to be zero or else the program is quite
516 // broken (undefined). Get the 2nd operand, which is the structure or array
517 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000518 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000519 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
520
Chris Lattner004e2502004-10-11 05:54:41 +0000521 Value *NewPtr = NewGlobals[Val];
David Blaikied9d900c2015-05-07 17:28:58 +0000522 Type *NewTy = NewGlobals[Val]->getValueType();
Chris Lattnerabab0712004-10-08 17:32:09 +0000523
524 // Form a shorter GEP if needed.
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000525 if (GEP->getNumOperands() > 3) {
Chris Lattner004e2502004-10-11 05:54:41 +0000526 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000527 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000528 Idxs.push_back(NullInt);
529 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
530 Idxs.push_back(CE->getOperand(i));
David Blaikie4a2e73b2015-04-02 18:55:32 +0000531 NewPtr =
532 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
Chris Lattner004e2502004-10-11 05:54:41 +0000533 } else {
534 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000535 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000536 Idxs.push_back(NullInt);
537 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
538 Idxs.push_back(GEPI->getOperand(i));
David Blaikie741c8f82015-03-14 01:53:18 +0000539 NewPtr = GetElementPtrInst::Create(
David Blaikied9d900c2015-05-07 17:28:58 +0000540 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
Chris Lattner004e2502004-10-11 05:54:41 +0000541 }
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000542 }
Chris Lattner004e2502004-10-11 05:54:41 +0000543 GEP->replaceAllUsesWith(NewPtr);
544
545 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000546 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000547 else
548 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000549 }
550
Chris Lattner73ad73e2004-10-08 20:25:55 +0000551 // Delete the old global, now that it is dead.
552 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000553 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000554
555 // Loop over the new globals array deleting any globals that are obviously
556 // dead. This can arise due to scalarization of a structure or an array that
557 // has elements that are dead.
558 unsigned FirstGlobal = 0;
559 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
560 if (NewGlobals[i]->use_empty()) {
561 Globals.erase(NewGlobals[i]);
562 if (FirstGlobal == i) ++FirstGlobal;
563 }
564
Craig Topperf40110f2014-04-25 05:29:35 +0000565 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
Chris Lattnerabab0712004-10-08 17:32:09 +0000566}
567
James Molloyea31ad32015-11-13 11:05:07 +0000568/// Return true if all users of the specified value will trap if the value is
569/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
570/// reprocessing them.
Gabor Greif67972872010-04-06 19:24:18 +0000571static bool AllUsesOfValueWillTrapIfNull(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +0000572 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000573 for (const User *U : V->users())
Gabor Greif08355d62010-04-06 19:14:05 +0000574 if (isa<LoadInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000575 // Will trap.
Gabor Greif67972872010-04-06 19:24:18 +0000576 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000577 if (SI->getOperand(0) == V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000578 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000579 return false; // Storing the value.
580 }
Gabor Greif67972872010-04-06 19:24:18 +0000581 } else if (const CallInst *CI = dyn_cast<CallInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000582 if (CI->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000583 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000584 return false; // Not calling the ptr
585 }
Gabor Greif67972872010-04-06 19:24:18 +0000586 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000587 if (II->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000588 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000589 return false; // Not calling the ptr
590 }
Gabor Greif67972872010-04-06 19:24:18 +0000591 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000592 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000593 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000594 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000595 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000596 // If we've already seen this phi node, ignore it, it has already been
597 // checked.
David Blaikie70573dc2014-11-19 07:49:26 +0000598 if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
Jakob Stoklund Olesene27dc722010-01-29 23:54:14 +0000599 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000600 } else if (isa<ICmpInst>(U) &&
Chandler Carruthcdf47882014-03-09 03:16:01 +0000601 isa<ConstantPointerNull>(U->getOperand(1))) {
Nick Lewycky614fb942010-02-25 06:39:10 +0000602 // Ignore icmp X, null
Chris Lattner09a52722004-10-09 21:48:45 +0000603 } else {
Gabor Greif08355d62010-04-06 19:14:05 +0000604 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000605 return false;
606 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000607
Chris Lattner09a52722004-10-09 21:48:45 +0000608 return true;
609}
610
James Molloyea31ad32015-11-13 11:05:07 +0000611/// Return true if all uses of any loads from GV will trap if the loaded value
612/// is null. Note that this also permits comparisons of the loaded value
613/// against null, as a special case.
Gabor Greif67972872010-04-06 19:24:18 +0000614static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000615 for (const User *U : GV->users())
Gabor Greif67972872010-04-06 19:24:18 +0000616 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
617 SmallPtrSet<const PHINode*, 8> PHIs;
Chris Lattner2d2892e2007-09-13 16:30:19 +0000618 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner09a52722004-10-09 21:48:45 +0000619 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000620 } else if (isa<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000621 // Ignore stores to the global.
622 } else {
623 // We don't know or understand this user, bail out.
Gabor Greif08355d62010-04-06 19:14:05 +0000624 //cerr << "UNKNOWN USER OF GLOBAL!: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000625 return false;
626 }
Chris Lattner09a52722004-10-09 21:48:45 +0000627 return true;
628}
629
Chris Lattner46b5c642009-11-06 04:27:31 +0000630static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000631 bool Changed = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000632 for (auto UI = V->user_begin(), E = V->user_end(); UI != E; ) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000633 Instruction *I = cast<Instruction>(*UI++);
634 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
635 LI->setOperand(0, NewV);
636 Changed = true;
637 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
638 if (SI->getOperand(1) == V) {
639 SI->setOperand(1, NewV);
640 Changed = true;
641 }
642 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
Gabor Greif04397892010-04-06 18:45:08 +0000643 CallSite CS(I);
644 if (CS.getCalledValue() == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000645 // Calling through the pointer! Turn into a direct call, but be careful
646 // that the pointer is not also being passed as an argument.
Gabor Greif04397892010-04-06 18:45:08 +0000647 CS.setCalledFunction(NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000648 Changed = true;
649 bool PassedAsArg = false;
Gabor Greif04397892010-04-06 18:45:08 +0000650 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
651 if (CS.getArgument(i) == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000652 PassedAsArg = true;
Gabor Greif04397892010-04-06 18:45:08 +0000653 CS.setArgument(i, NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000654 }
655
656 if (PassedAsArg) {
657 // Being passed as an argument also. Be careful to not invalidate UI!
Chandler Carruthcdf47882014-03-09 03:16:01 +0000658 UI = V->user_begin();
Chris Lattnere42eb312004-10-10 23:14:11 +0000659 }
660 }
661 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
662 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Anderson487375e2009-07-29 18:55:55 +0000663 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner46b5c642009-11-06 04:27:31 +0000664 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000665 if (CI->use_empty()) {
666 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000667 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000668 }
669 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
670 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000671 SmallVector<Constant*, 8> Idxs;
672 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif3a9fba52008-05-29 01:59:18 +0000673 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
674 i != e; ++i)
675 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000676 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000677 else
678 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000679 if (Idxs.size() == GEPI->getNumOperands()-1)
David Blaikie4a2e73b2015-04-02 18:55:32 +0000680 Changed |= OptimizeAwayTrappingUsesOfValue(
681 GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs));
Chris Lattnere42eb312004-10-10 23:14:11 +0000682 if (GEPI->use_empty()) {
683 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000684 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000685 }
686 }
687 }
688
689 return Changed;
690}
691
692
James Molloyea31ad32015-11-13 11:05:07 +0000693/// The specified global has only one non-null value stored into it. If there
694/// are uses of the loaded value that would trap if the loaded value is
695/// dynamically null, then we know that they cannot be reachable with a null
696/// optimize away the load.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000697static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
Mehdi Amini46a43552015-03-04 18:43:29 +0000698 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000699 TargetLibraryInfo *TLI) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000700 bool Changed = false;
701
Chris Lattner2538eb62009-01-14 00:12:58 +0000702 // Keep track of whether we are able to remove all the uses of the global
703 // other than the store that defines it.
704 bool AllNonStoreUsesGone = true;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000705
Chris Lattnere42eb312004-10-10 23:14:11 +0000706 // Replace all uses of loads with uses of uses of the stored value.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000707 for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){
Chris Lattner2538eb62009-01-14 00:12:58 +0000708 User *GlobalUser = *GUI++;
709 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner46b5c642009-11-06 04:27:31 +0000710 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner2538eb62009-01-14 00:12:58 +0000711 // If we were able to delete all uses of the loads
712 if (LI->use_empty()) {
713 LI->eraseFromParent();
714 Changed = true;
715 } else {
716 AllNonStoreUsesGone = false;
717 }
718 } else if (isa<StoreInst>(GlobalUser)) {
719 // Ignore the store that stores "LV" to the global.
720 assert(GlobalUser->getOperand(1) == GV &&
721 "Must be storing *to* the global");
Chris Lattnere42eb312004-10-10 23:14:11 +0000722 } else {
Chris Lattner2538eb62009-01-14 00:12:58 +0000723 AllNonStoreUsesGone = false;
724
725 // If we get here we could have other crazy uses that are transitively
726 // loaded.
727 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
Benjamin Kramered843602012-09-28 10:01:27 +0000728 isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
729 isa<BitCastInst>(GlobalUser) ||
730 isa<GetElementPtrInst>(GlobalUser)) &&
Chris Lattner1a1acc22011-05-22 07:15:13 +0000731 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000732 }
Chris Lattner2538eb62009-01-14 00:12:58 +0000733 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000734
735 if (Changed) {
James Molloyef607a22015-10-28 14:30:53 +0000736 DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV << "\n");
Chris Lattnere42eb312004-10-10 23:14:11 +0000737 ++NumGlobUses;
738 }
739
Chris Lattnere42eb312004-10-10 23:14:11 +0000740 // If we nuked all of the loads, then none of the stores are needed either,
741 // nor is the global.
Chris Lattner2538eb62009-01-14 00:12:58 +0000742 if (AllNonStoreUsesGone) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000743 if (isLeakCheckerRoot(GV)) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000744 Changed |= CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000745 } else {
746 Changed = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000747 CleanupConstantGlobalUsers(GV, nullptr, DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000748 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000749 if (GV->use_empty()) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000750 DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
751 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000752 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000753 ++NumDeleted;
754 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000755 }
756 return Changed;
757}
758
James Molloyea31ad32015-11-13 11:05:07 +0000759/// Walk the use list of V, constant folding all of the instructions that are
760/// foldable.
Mehdi Amini46a43552015-03-04 18:43:29 +0000761static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000762 TargetLibraryInfo *TLI) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000763 for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
Chris Lattner004e2502004-10-11 05:54:41 +0000764 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000765 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
Chris Lattner004e2502004-10-11 05:54:41 +0000766 I->replaceAllUsesWith(NewC);
767
Chris Lattnerd6a44922005-02-01 01:23:31 +0000768 // Advance UI to the next non-I use to avoid invalidating it!
769 // Instructions could multiply use V.
770 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000771 ++UI;
David Majnemer522a9112016-07-22 04:54:44 +0000772 if (isInstructionTriviallyDead(I, TLI))
773 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000774 }
775}
776
James Molloyea31ad32015-11-13 11:05:07 +0000777/// This function takes the specified global variable, and transforms the
778/// program as if it always contained the result of the specified malloc.
779/// Because it is always the result of the specified malloc, there is no reason
780/// to actually DO the malloc. Instead, turn the malloc into a global, and any
781/// loads of GV as uses of the new global.
Mehdi Amini46a43552015-03-04 18:43:29 +0000782static GlobalVariable *
783OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
784 ConstantInt *NElements, const DataLayout &DL,
785 TargetLibraryInfo *TLI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000786 DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI << '\n');
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000787
Chris Lattner229907c2011-07-18 04:54:35 +0000788 Type *GlobalType;
Chris Lattner7939f792010-02-25 22:33:52 +0000789 if (NElements->getZExtValue() == 1)
790 GlobalType = AllocTy;
791 else
792 // If we have an array allocation, the global variable is of an array.
793 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez5d034492009-09-18 22:35:49 +0000794
795 // Create the new global variable. The contents of the malloc'd memory is
796 // undefined, so initialize with an undef value.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000797 GlobalVariable *NewGV = new GlobalVariable(
798 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage,
799 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr,
800 GV->getThreadLocalMode());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000801
Chris Lattner7939f792010-02-25 22:33:52 +0000802 // If there are bitcast users of the malloc (which is typical, usually we have
803 // a malloc + bitcast) then replace them with uses of the new global. Update
804 // other users to use the global as well.
Craig Topperf40110f2014-04-25 05:29:35 +0000805 BitCastInst *TheBC = nullptr;
Chris Lattner7939f792010-02-25 22:33:52 +0000806 while (!CI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000807 Instruction *User = cast<Instruction>(CI->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000808 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
809 if (BCI->getType() == NewGV->getType()) {
810 BCI->replaceAllUsesWith(NewGV);
811 BCI->eraseFromParent();
812 } else {
813 BCI->setOperand(0, NewGV);
814 }
815 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000816 if (!TheBC)
Chris Lattner7939f792010-02-25 22:33:52 +0000817 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
818 User->replaceUsesOfWith(CI, TheBC);
819 }
820 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000821
Victor Hernandez5d034492009-09-18 22:35:49 +0000822 Constant *RepValue = NewGV;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000823 if (NewGV->getType() != GV->getValueType())
824 RepValue = ConstantExpr::getBitCast(RepValue, GV->getValueType());
Victor Hernandez5d034492009-09-18 22:35:49 +0000825
826 // If there is a comparison against null, we will insert a global bool to
827 // keep track of whether the global was initialized yet or not.
828 GlobalVariable *InitBool =
Chris Lattner46b5c642009-11-06 04:27:31 +0000829 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez5d034492009-09-18 22:35:49 +0000830 GlobalValue::InternalLinkage,
Chris Lattner46b5c642009-11-06 04:27:31 +0000831 ConstantInt::getFalse(GV->getContext()),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000832 GV->getName()+".init", GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +0000833 bool InitBoolUsed = false;
834
835 // Loop over all uses of GV, processing them in turn.
Chris Lattner7939f792010-02-25 22:33:52 +0000836 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000837 if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) {
Victor Hernandez5d034492009-09-18 22:35:49 +0000838 // The global is initialized when the store to it occurs.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000839 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
840 SI->getOrdering(), SI->getSynchScope(), SI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000841 SI->eraseFromParent();
Chris Lattner7939f792010-02-25 22:33:52 +0000842 continue;
Victor Hernandez5d034492009-09-18 22:35:49 +0000843 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000844
Chandler Carruthcdf47882014-03-09 03:16:01 +0000845 LoadInst *LI = cast<LoadInst>(GV->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000846 while (!LI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000847 Use &LoadUse = *LI->use_begin();
848 ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser());
849 if (!ICI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000850 LoadUse = RepValue;
851 continue;
852 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000853
Chris Lattner7939f792010-02-25 22:33:52 +0000854 // Replace the cmp X, 0 with a use of the bool value.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000855 // Sink the load to where the compare was, if atomic rules allow us to.
856 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0,
857 LI->getOrdering(), LI->getSynchScope(),
858 LI->isUnordered() ? (Instruction*)ICI : LI);
Chris Lattner7939f792010-02-25 22:33:52 +0000859 InitBoolUsed = true;
860 switch (ICI->getPredicate()) {
861 default: llvm_unreachable("Unknown ICmp Predicate!");
862 case ICmpInst::ICMP_ULT:
863 case ICmpInst::ICMP_SLT: // X < null -> always false
864 LV = ConstantInt::getFalse(GV->getContext());
865 break;
866 case ICmpInst::ICMP_ULE:
867 case ICmpInst::ICMP_SLE:
868 case ICmpInst::ICMP_EQ:
869 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
870 break;
871 case ICmpInst::ICMP_NE:
872 case ICmpInst::ICMP_UGE:
873 case ICmpInst::ICMP_SGE:
874 case ICmpInst::ICMP_UGT:
875 case ICmpInst::ICMP_SGT:
876 break; // no change.
877 }
878 ICI->replaceAllUsesWith(LV);
879 ICI->eraseFromParent();
880 }
881 LI->eraseFromParent();
882 }
Victor Hernandez5d034492009-09-18 22:35:49 +0000883
884 // If the initialization boolean was used, insert it, otherwise delete it.
885 if (!InitBoolUsed) {
886 while (!InitBool->use_empty()) // Delete initializations
Chandler Carruthcdf47882014-03-09 03:16:01 +0000887 cast<StoreInst>(InitBool->user_back())->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000888 delete InitBool;
889 } else
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000890 GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
Victor Hernandez5d034492009-09-18 22:35:49 +0000891
Chris Lattner7939f792010-02-25 22:33:52 +0000892 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez5d034492009-09-18 22:35:49 +0000893 GV->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000894 CI->eraseFromParent();
895
896 // To further other optimizations, loop over all users of NewGV and try to
897 // constant prop them. This will promote GEP instructions with constant
898 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000899 ConstantPropUsersOf(NewGV, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000900 if (RepValue != NewGV)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000901 ConstantPropUsersOf(RepValue, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000902
903 return NewGV;
904}
905
James Molloyea31ad32015-11-13 11:05:07 +0000906/// Scan the use-list of V checking to make sure that there are no complex uses
907/// of V. We permit simple things like dereferencing the pointer, but not
908/// storing through the address, unless it is to the specified global.
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000909static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
910 const GlobalVariable *GV,
Craig Topper71b7b682014-08-21 05:55:13 +0000911 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000912 for (const User *U : V->users()) {
913 const Instruction *Inst = cast<Instruction>(U);
Gabor Greif08355d62010-04-06 19:14:05 +0000914
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000915 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
916 continue; // Fine, ignore.
917 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000918
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000919 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000920 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
921 return false; // Storing the pointer itself... bad.
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000922 continue; // Otherwise, storing through it, or storing into GV... fine.
923 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000924
Chris Lattnerb9801ff2010-04-10 18:19:22 +0000925 // Must index into the array and into the struct.
926 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000927 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000928 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000929 continue;
930 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000931
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000932 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattner6eed0e72007-09-13 16:37:20 +0000933 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
934 // cycles.
David Blaikie70573dc2014-11-19 07:49:26 +0000935 if (PHIs.insert(PN).second)
Chris Lattner5d13fb532007-09-14 03:41:21 +0000936 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
937 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000938 continue;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000939 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000940
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000941 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000942 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
943 return false;
944 continue;
945 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000946
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000947 return false;
948 }
Chris Lattnerc0677c02004-12-02 07:11:07 +0000949 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000950}
951
James Molloyea31ad32015-11-13 11:05:07 +0000952/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
953/// allocation into loads from the global and uses of the resultant pointer.
954/// Further, delete the store into GV. This assumes that these value pass the
Chris Lattner24d3d422006-09-30 23:32:09 +0000955/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000956static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
Chris Lattner24d3d422006-09-30 23:32:09 +0000957 GlobalVariable *GV) {
958 while (!Alloc->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000959 Instruction *U = cast<Instruction>(*Alloc->user_begin());
Chris Lattnerba98f892007-09-13 18:00:31 +0000960 Instruction *InsertPt = U;
Chris Lattner24d3d422006-09-30 23:32:09 +0000961 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
962 // If this is the store of the allocation into the global, remove it.
963 if (SI->getOperand(1) == GV) {
964 SI->eraseFromParent();
965 continue;
966 }
Chris Lattnerba98f892007-09-13 18:00:31 +0000967 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
968 // Insert the load in the corresponding predecessor, not right before the
969 // PHI.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000970 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
Chris Lattner49e3bdc2008-12-15 21:44:34 +0000971 } else if (isa<BitCastInst>(U)) {
972 // Must be bitcast between the malloc and store to initialize the global.
973 ReplaceUsesOfMallocWithGlobal(U, GV);
974 U->eraseFromParent();
975 continue;
976 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
977 // If this is a "GEP bitcast" and the user is a store to the global, then
978 // just process it as a bitcast.
979 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +0000980 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back()))
Chris Lattner49e3bdc2008-12-15 21:44:34 +0000981 if (SI->getOperand(1) == GV) {
982 // Must be bitcast GEP between the malloc and store to initialize
983 // the global.
984 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
985 GEPI->eraseFromParent();
986 continue;
987 }
Chris Lattner24d3d422006-09-30 23:32:09 +0000988 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000989
Chris Lattner24d3d422006-09-30 23:32:09 +0000990 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnerba98f892007-09-13 18:00:31 +0000991 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner24d3d422006-09-30 23:32:09 +0000992 U->replaceUsesOfWith(Alloc, NL);
993 }
994}
995
James Molloyea31ad32015-11-13 11:05:07 +0000996/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
997/// perform heap SRA on. This permits GEP's that index through the array and
998/// struct field, icmps of null, and PHIs.
Gabor Greif5d5db532010-04-01 08:21:08 +0000999static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +00001000 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1001 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
Chris Lattner56b55382008-12-16 21:24:51 +00001002 // We permit two users of the load: setcc comparing against the null
1003 // pointer, and a getelementptr of a specific form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001004 for (const User *U : V->users()) {
1005 const Instruction *UI = cast<Instruction>(U);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001006
Chris Lattner56b55382008-12-16 21:24:51 +00001007 // Comparison against null is ok.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001008 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001009 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1010 return false;
1011 continue;
1012 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001013
Chris Lattner56b55382008-12-16 21:24:51 +00001014 // getelementptr is also ok, but only a simple form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001015 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001016 // Must index into the array and into the struct.
1017 if (GEPI->getNumOperands() < 3)
1018 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001019
Chris Lattner56b55382008-12-16 21:24:51 +00001020 // Otherwise the GEP is ok.
1021 continue;
1022 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001023
Chandler Carruthcdf47882014-03-09 03:16:01 +00001024 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001025 if (!LoadUsingPHIsPerLoad.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001026 // This means some phi nodes are dependent on each other.
1027 // Avoid infinite looping!
1028 return false;
David Blaikie70573dc2014-11-19 07:49:26 +00001029 if (!LoadUsingPHIs.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001030 // If we have already analyzed this PHI, then it is safe.
Chris Lattner56b55382008-12-16 21:24:51 +00001031 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001032
Chris Lattner222ef4c2008-12-17 05:28:49 +00001033 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng83689442009-06-02 00:56:07 +00001034 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1035 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001036 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001037
Chris Lattner56b55382008-12-16 21:24:51 +00001038 continue;
Chris Lattner24d3d422006-09-30 23:32:09 +00001039 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001040
Chris Lattner56b55382008-12-16 21:24:51 +00001041 // Otherwise we don't know what this is, not ok.
1042 return false;
1043 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001044
Chris Lattner56b55382008-12-16 21:24:51 +00001045 return true;
1046}
1047
1048
James Molloyea31ad32015-11-13 11:05:07 +00001049/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1050/// return true.
Gabor Greif5d5db532010-04-01 08:21:08 +00001051static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez5d034492009-09-18 22:35:49 +00001052 Instruction *StoredVal) {
Gabor Greif5d5db532010-04-01 08:21:08 +00001053 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1054 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001055 for (const User *U : GV->users())
1056 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
Evan Cheng83689442009-06-02 00:56:07 +00001057 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1058 LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001059 return false;
Evan Cheng83689442009-06-02 00:56:07 +00001060 LoadUsingPHIsPerLoad.clear();
1061 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001062
Chris Lattner222ef4c2008-12-17 05:28:49 +00001063 // If we reach here, we know that all uses of the loads and transitive uses
1064 // (through PHI nodes) are simple enough to transform. However, we don't know
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001065 // that all inputs the to the PHI nodes are in the same equivalence sets.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001066 // Check to verify that all operands of the PHIs are either PHIS that can be
1067 // transformed, loads from GV, or MI itself.
Craig Topper46276792014-08-24 23:23:06 +00001068 for (const PHINode *PN : LoadUsingPHIs) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001069 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1070 Value *InVal = PN->getIncomingValue(op);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001071
Chris Lattner222ef4c2008-12-17 05:28:49 +00001072 // PHI of the stored value itself is ok.
Victor Hernandez5d034492009-09-18 22:35:49 +00001073 if (InVal == StoredVal) continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001074
Gabor Greif5d5db532010-04-01 08:21:08 +00001075 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001076 // One of the PHIs in our set is (optimistically) ok.
1077 if (LoadUsingPHIs.count(InPN))
1078 continue;
1079 return false;
1080 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001081
Chris Lattner222ef4c2008-12-17 05:28:49 +00001082 // Load from GV is ok.
Gabor Greif5d5db532010-04-01 08:21:08 +00001083 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattner222ef4c2008-12-17 05:28:49 +00001084 if (LI->getOperand(0) == GV)
1085 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001086
Chris Lattner222ef4c2008-12-17 05:28:49 +00001087 // UNDEF? NULL?
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001088
Chris Lattner222ef4c2008-12-17 05:28:49 +00001089 // Anything else is rejected.
1090 return false;
1091 }
1092 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001093
Chris Lattner24d3d422006-09-30 23:32:09 +00001094 return true;
1095}
1096
Chris Lattner222ef4c2008-12-17 05:28:49 +00001097static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1098 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001099 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001100 std::vector<Value*> &FieldVals = InsertedScalarizedValues[V];
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001101
Chris Lattner222ef4c2008-12-17 05:28:49 +00001102 if (FieldNo >= FieldVals.size())
1103 FieldVals.resize(FieldNo+1);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001104
Chris Lattner222ef4c2008-12-17 05:28:49 +00001105 // If we already have this value, just reuse the previously scalarized
1106 // version.
1107 if (Value *FieldVal = FieldVals[FieldNo])
1108 return FieldVal;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001109
Chris Lattner222ef4c2008-12-17 05:28:49 +00001110 // Depending on what instruction this is, we have several cases.
1111 Value *Result;
1112 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1113 // This is a scalarized version of the load from the global. Just create
1114 // a new Load of the scalarized global.
1115 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1116 InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001117 PHIsToRewrite),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001118 LI->getName()+".f"+Twine(FieldNo), LI);
David Blaikie741c8f82015-03-14 01:53:18 +00001119 } else {
1120 PHINode *PN = cast<PHINode>(V);
Chris Lattner222ef4c2008-12-17 05:28:49 +00001121 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1122 // field.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001123
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001124 PointerType *PTy = cast<PointerType>(PN->getType());
1125 StructType *ST = cast<StructType>(PTy->getElementType());
1126
1127 unsigned AS = PTy->getAddressSpace();
Jay Foade0938d82011-03-30 11:19:20 +00001128 PHINode *NewPN =
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001129 PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS),
Jay Foad52131342011-03-30 11:28:46 +00001130 PN->getNumIncomingValues(),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001131 PN->getName()+".f"+Twine(FieldNo), PN);
Jay Foade0938d82011-03-30 11:19:20 +00001132 Result = NewPN;
Chris Lattner222ef4c2008-12-17 05:28:49 +00001133 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
Chris Lattner222ef4c2008-12-17 05:28:49 +00001134 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001135
Chris Lattner222ef4c2008-12-17 05:28:49 +00001136 return FieldVals[FieldNo] = Result;
Chris Lattnerba98f892007-09-13 18:00:31 +00001137}
1138
James Molloyea31ad32015-11-13 11:05:07 +00001139/// Given a load instruction and a value derived from the load, rewrite the
1140/// derived value to use the HeapSRoA'd load.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001141static void RewriteHeapSROALoadUser(Instruction *LoadUser,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001142 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001143 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001144 // If this is a comparison against null, handle it.
1145 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1146 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1147 // If we have a setcc of the loaded pointer, we can use a setcc of any
1148 // field.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001149 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner46b5c642009-11-06 04:27:31 +00001150 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001151
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001152 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001153 Constant::getNullValue(NPtr->getType()),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001154 SCI->getName());
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001155 SCI->replaceAllUsesWith(New);
1156 SCI->eraseFromParent();
1157 return;
1158 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001159
Chris Lattner222ef4c2008-12-17 05:28:49 +00001160 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnerba98f892007-09-13 18:00:31 +00001161 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1162 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1163 && "Unexpected GEPI!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001164
Chris Lattnerba98f892007-09-13 18:00:31 +00001165 // Load the pointer for this field.
1166 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner222ef4c2008-12-17 05:28:49 +00001167 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner46b5c642009-11-06 04:27:31 +00001168 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001169
Chris Lattnerba98f892007-09-13 18:00:31 +00001170 // Create the new GEP idx vector.
1171 SmallVector<Value*, 8> GEPIdx;
1172 GEPIdx.push_back(GEPI->getOperand(1));
1173 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001174
David Blaikie22319eb2015-03-14 19:24:04 +00001175 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx,
Gabor Greife9ecc682008-04-06 20:25:17 +00001176 GEPI->getName(), GEPI);
Chris Lattnerba98f892007-09-13 18:00:31 +00001177 GEPI->replaceAllUsesWith(NGEPI);
1178 GEPI->eraseFromParent();
1179 return;
1180 }
Chris Lattner011f91b2007-09-13 21:31:36 +00001181
Chris Lattner222ef4c2008-12-17 05:28:49 +00001182 // Recursively transform the users of PHI nodes. This will lazily create the
1183 // PHIs that are needed for individual elements. Keep track of what PHIs we
1184 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1185 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1186 // already been seen first by another load, so its uses have already been
1187 // processed.
1188 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner5cf753c2011-07-21 06:21:31 +00001189 if (!InsertedScalarizedValues.insert(std::make_pair(PN,
1190 std::vector<Value*>())).second)
1191 return;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001192
Chris Lattner222ef4c2008-12-17 05:28:49 +00001193 // If this is the first time we've seen this PHI, recursively process all
1194 // users.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001195 for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001196 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001197 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001198 }
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001199}
1200
James Molloyea31ad32015-11-13 11:05:07 +00001201/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1202/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1203/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001204static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001205 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001206 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001207 for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001208 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001209 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001210 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001211
Chris Lattner222ef4c2008-12-17 05:28:49 +00001212 if (Load->use_empty()) {
1213 Load->eraseFromParent();
1214 InsertedScalarizedValues.erase(Load);
1215 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001216}
1217
James Molloyea31ad32015-11-13 11:05:07 +00001218/// CI is an allocation of an array of structures. Break it up into multiple
1219/// allocations of arrays of the fields.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001220static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
Mehdi Amini46a43552015-03-04 18:43:29 +00001221 Value *NElems, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001222 const TargetLibraryInfo *TLI) {
David Greene44cb8ad2010-01-05 01:28:05 +00001223 DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI << '\n');
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001224 Type *MAT = getMallocAllocatedType(CI, TLI);
Chris Lattner229907c2011-07-18 04:54:35 +00001225 StructType *STy = cast<StructType>(MAT);
Victor Hernandez5d034492009-09-18 22:35:49 +00001226
1227 // There is guaranteed to be at least one use of the malloc (storing
1228 // it into GV). If there are other uses, change them to be uses of
1229 // the global to simplify later code. This also deletes the store
1230 // into GV.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001231 ReplaceUsesOfMallocWithGlobal(CI, GV);
1232
Victor Hernandez5d034492009-09-18 22:35:49 +00001233 // Okay, at this point, there are no users of the malloc. Insert N
1234 // new mallocs at the same place as CI, and N globals.
1235 std::vector<Value*> FieldGlobals;
1236 std::vector<Value*> FieldMallocs;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001237
David Majnemerfadc6db2016-04-29 08:07:22 +00001238 SmallVector<OperandBundleDef, 1> OpBundles;
1239 CI->getOperandBundlesAsDefs(OpBundles);
1240
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001241 unsigned AS = GV->getType()->getPointerAddressSpace();
Victor Hernandez5d034492009-09-18 22:35:49 +00001242 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
Chris Lattner229907c2011-07-18 04:54:35 +00001243 Type *FieldTy = STy->getElementType(FieldNo);
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001244 PointerType *PFieldTy = PointerType::get(FieldTy, AS);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001245
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001246 GlobalVariable *NGV = new GlobalVariable(
1247 *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage,
1248 Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo),
1249 nullptr, GV->getThreadLocalMode());
Sergei Larin94be2de2016-01-22 21:18:20 +00001250 NGV->copyAttributesFrom(GV);
Victor Hernandez5d034492009-09-18 22:35:49 +00001251 FieldGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001252
Mehdi Amini46a43552015-03-04 18:43:29 +00001253 unsigned TypeSize = DL.getTypeAllocSize(FieldTy);
Chris Lattner229907c2011-07-18 04:54:35 +00001254 if (StructType *ST = dyn_cast<StructType>(FieldTy))
Mehdi Amini46a43552015-03-04 18:43:29 +00001255 TypeSize = DL.getStructLayout(ST)->getSizeInBytes();
1256 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
Victor Hernandezf3db9152009-11-07 00:16:28 +00001257 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1258 ConstantInt::get(IntPtrTy, TypeSize),
David Majnemerfadc6db2016-04-29 08:07:22 +00001259 NElems, OpBundles, nullptr,
Victor Hernandezf3db9152009-11-07 00:16:28 +00001260 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner0521c092010-02-26 18:23:13 +00001261 FieldMallocs.push_back(NMI);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001262 new StoreInst(NMI, NGV, CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001263 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001264
Victor Hernandez5d034492009-09-18 22:35:49 +00001265 // The tricky aspect of this transformation is handling the case when malloc
1266 // fails. In the original code, malloc failing would set the result pointer
1267 // of malloc to null. In this case, some mallocs could succeed and others
1268 // could fail. As such, we emit code that looks like this:
1269 // F0 = malloc(field0)
1270 // F1 = malloc(field1)
1271 // F2 = malloc(field2)
1272 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1273 // if (F0) { free(F0); F0 = 0; }
1274 // if (F1) { free(F1); F1 = 0; }
1275 // if (F2) { free(F2); F2 = 0; }
1276 // }
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001277 // The malloc can also fail if its argument is too large.
Gabor Greif218f5542010-06-24 14:42:01 +00001278 Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1279 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001280 ConstantZero, "isneg");
Victor Hernandez5d034492009-09-18 22:35:49 +00001281 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandezf3db9152009-11-07 00:16:28 +00001282 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1283 Constant::getNullValue(FieldMallocs[i]->getType()),
1284 "isnull");
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001285 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001286 }
1287
1288 // Split the basic block at the old malloc.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001289 BasicBlock *OrigBB = CI->getParent();
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001290 BasicBlock *ContBB =
1291 OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001292
Victor Hernandez5d034492009-09-18 22:35:49 +00001293 // Create the block to check the first condition. Put all these blocks at the
1294 // end of the function as they are unlikely to be executed.
Chris Lattner46b5c642009-11-06 04:27:31 +00001295 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1296 "malloc_ret_null",
Victor Hernandez5d034492009-09-18 22:35:49 +00001297 OrigBB->getParent());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001298
Victor Hernandez5d034492009-09-18 22:35:49 +00001299 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1300 // branch on RunningOr.
1301 OrigBB->getTerminator()->eraseFromParent();
1302 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001303
Victor Hernandez5d034492009-09-18 22:35:49 +00001304 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1305 // pointer, because some may be null while others are not.
1306 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1307 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001308 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001309 Constant::getNullValue(GVVal->getType()));
Chris Lattner46b5c642009-11-06 04:27:31 +00001310 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez5d034492009-09-18 22:35:49 +00001311 OrigBB->getParent());
Chris Lattner46b5c642009-11-06 04:27:31 +00001312 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez5d034492009-09-18 22:35:49 +00001313 OrigBB->getParent());
Victor Hernandeze2971492009-10-24 04:23:03 +00001314 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1315 Cmp, NullPtrBlock);
Victor Hernandez5d034492009-09-18 22:35:49 +00001316
1317 // Fill in FreeBlock.
David Majnemerfadc6db2016-04-29 08:07:22 +00001318 CallInst::CreateFree(GVVal, OpBundles, BI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001319 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1320 FreeBlock);
1321 BranchInst::Create(NextBlock, FreeBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001322
Victor Hernandez5d034492009-09-18 22:35:49 +00001323 NullPtrBlock = NextBlock;
1324 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001325
Victor Hernandez5d034492009-09-18 22:35:49 +00001326 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001327
1328 // CI is no longer needed, remove it.
Victor Hernandez5d034492009-09-18 22:35:49 +00001329 CI->eraseFromParent();
1330
James Molloyea31ad32015-11-13 11:05:07 +00001331 /// As we process loads, if we can't immediately update all uses of the load,
1332 /// keep track of what scalarized loads are inserted for a given load.
Victor Hernandez5d034492009-09-18 22:35:49 +00001333 DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1334 InsertedScalarizedValues[GV] = FieldGlobals;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001335
Victor Hernandez5d034492009-09-18 22:35:49 +00001336 std::vector<std::pair<PHINode*, unsigned> > PHIsToRewrite;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001337
Victor Hernandez5d034492009-09-18 22:35:49 +00001338 // Okay, the malloc site is completely handled. All of the uses of GV are now
1339 // loads, and all uses of those loads are simple. Rewrite them to use loads
1340 // of the per-field globals instead.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001341 for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001342 Instruction *User = cast<Instruction>(*UI++);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001343
Victor Hernandez5d034492009-09-18 22:35:49 +00001344 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner46b5c642009-11-06 04:27:31 +00001345 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001346 continue;
1347 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001348
Victor Hernandez5d034492009-09-18 22:35:49 +00001349 // Must be a store of null.
1350 StoreInst *SI = cast<StoreInst>(User);
1351 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1352 "Unexpected heap-sra user!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001353
Victor Hernandez5d034492009-09-18 22:35:49 +00001354 // Insert a store of null into each global.
1355 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001356 Type *ValTy = cast<GlobalValue>(FieldGlobals[i])->getValueType();
1357 Constant *Null = Constant::getNullValue(ValTy);
Victor Hernandez5d034492009-09-18 22:35:49 +00001358 new StoreInst(Null, FieldGlobals[i], SI);
1359 }
1360 // Erase the original store.
1361 SI->eraseFromParent();
1362 }
1363
1364 // While we have PHIs that are interesting to rewrite, do it.
1365 while (!PHIsToRewrite.empty()) {
1366 PHINode *PN = PHIsToRewrite.back().first;
1367 unsigned FieldNo = PHIsToRewrite.back().second;
1368 PHIsToRewrite.pop_back();
1369 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1370 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1371
1372 // Add all the incoming values. This can materialize more phis.
1373 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1374 Value *InVal = PN->getIncomingValue(i);
1375 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001376 PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001377 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1378 }
1379 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001380
Victor Hernandez5d034492009-09-18 22:35:49 +00001381 // Drop all inter-phi links and any loads that made it this far.
1382 for (DenseMap<Value*, std::vector<Value*> >::iterator
1383 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1384 I != E; ++I) {
1385 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1386 PN->dropAllReferences();
1387 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1388 LI->dropAllReferences();
1389 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001390
Victor Hernandez5d034492009-09-18 22:35:49 +00001391 // Delete all the phis and loads now that inter-references are dead.
1392 for (DenseMap<Value*, std::vector<Value*> >::iterator
1393 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1394 I != E; ++I) {
1395 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1396 PN->eraseFromParent();
1397 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1398 LI->eraseFromParent();
1399 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001400
Victor Hernandez5d034492009-09-18 22:35:49 +00001401 // The old global is now dead, remove it.
1402 GV->eraseFromParent();
1403
1404 ++NumHeapSRA;
1405 return cast<GlobalVariable>(FieldGlobals[0]);
1406}
1407
James Molloyea31ad32015-11-13 11:05:07 +00001408/// This function is called when we see a pointer global variable with a single
1409/// value stored it that is a malloc or cast of malloc.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001410static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
Chris Lattner229907c2011-07-18 04:54:35 +00001411 Type *AllocTy,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001412 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001413 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +00001414 TargetLibraryInfo *TLI) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001415 // If this is a malloc of an abstract type, don't touch it.
1416 if (!AllocTy->isSized())
1417 return false;
1418
1419 // We can't optimize this global unless all uses of it are *known* to be
1420 // of the malloc value, not of the null initializer value (consider a use
1421 // that compares the global's value against zero to see if the malloc has
1422 // been reached). To do this, we check to see if all uses of the global
1423 // would trap if the global were null: this proves that they must all
1424 // happen after the malloc.
1425 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1426 return false;
1427
1428 // We can't optimize this if the malloc itself is used in a complex way,
1429 // for example, being stored into multiple globals. This allows the
Nick Lewyckybbd11562012-02-05 19:48:37 +00001430 // malloc to be stored into the specified global, loaded icmp'd, and
Victor Hernandez5d034492009-09-18 22:35:49 +00001431 // GEP'd. These are all things we could transform to using the global
1432 // for.
Evan Cheng21b588b2010-04-14 20:52:55 +00001433 SmallPtrSet<const PHINode*, 8> PHIs;
1434 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1435 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001436
1437 // If we have a global that is only initialized with a fixed size malloc,
1438 // transform the program to use global memory instead of malloc'd memory.
1439 // This eliminates dynamic allocation, avoids an indirection accessing the
1440 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez264da322009-10-16 23:12:25 +00001441 // We cannot optimize the malloc if we cannot determine malloc array size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001442 Value *NElems = getMallocArraySize(CI, DL, TLI, true);
Evan Cheng21b588b2010-04-14 20:52:55 +00001443 if (!NElems)
1444 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001445
Evan Cheng21b588b2010-04-14 20:52:55 +00001446 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1447 // Restrict this transformation to only working on small allocations
1448 // (2048 bytes currently), as we don't want to introduce a 16M global or
1449 // something.
Mehdi Amini46a43552015-03-04 18:43:29 +00001450 if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) {
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001451 OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001452 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001453 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001454
Evan Cheng21b588b2010-04-14 20:52:55 +00001455 // If the allocation is an array of structures, consider transforming this
1456 // into multiple malloc'd arrays, one for each field. This is basically
1457 // SRoA for malloc'd memory.
1458
JF Bastien800f87a2016-04-06 21:19:33 +00001459 if (Ordering != AtomicOrdering::NotAtomic)
Nick Lewycky52da72b2012-02-05 19:56:38 +00001460 return false;
1461
Evan Cheng21b588b2010-04-14 20:52:55 +00001462 // If this is an allocation of a fixed size array of structs, analyze as a
1463 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Gabor Greif218f5542010-06-24 14:42:01 +00001464 if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
Chris Lattner229907c2011-07-18 04:54:35 +00001465 if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
Evan Cheng21b588b2010-04-14 20:52:55 +00001466 AllocTy = AT->getElementType();
Gabor Greif218f5542010-06-24 14:42:01 +00001467
Chris Lattner229907c2011-07-18 04:54:35 +00001468 StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
Evan Cheng21b588b2010-04-14 20:52:55 +00001469 if (!AllocSTy)
1470 return false;
1471
1472 // This the structure has an unreasonable number of fields, leave it
1473 // alone.
1474 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1475 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1476
1477 // If this is a fixed size array, transform the Malloc to be an alloc of
1478 // structs. malloc [100 x struct],1 -> malloc struct, 100
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001479 if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001480 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
1481 unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes();
Evan Cheng21b588b2010-04-14 20:52:55 +00001482 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1483 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
David Majnemerfadc6db2016-04-29 08:07:22 +00001484 SmallVector<OperandBundleDef, 1> OpBundles;
1485 CI->getOperandBundlesAsDefs(OpBundles);
1486 Instruction *Malloc =
1487 CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, AllocSize, NumElements,
1488 OpBundles, nullptr, CI->getName());
Evan Cheng21b588b2010-04-14 20:52:55 +00001489 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1490 CI->replaceAllUsesWith(Cast);
1491 CI->eraseFromParent();
Nuno Lopes9792d682012-06-22 00:25:01 +00001492 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1493 CI = cast<CallInst>(BCI->getOperand(0));
1494 else
Nuno Lopes0b60ebb2012-06-22 00:29:58 +00001495 CI = cast<CallInst>(Malloc);
Evan Cheng21b588b2010-04-14 20:52:55 +00001496 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001497
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001498 PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL,
1499 TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001500 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001501 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001502
Victor Hernandez5d034492009-09-18 22:35:49 +00001503 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001504}
Victor Hernandez5d034492009-09-18 22:35:49 +00001505
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001506// Try to optimize globals based on the knowledge that only one value (besides
1507// its initializer) is ever stored to the global.
1508static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001509 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001510 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +00001511 TargetLibraryInfo *TLI) {
Chris Lattner1c731fa2008-12-15 21:20:32 +00001512 // Ignore no-op GEPs and bitcasts.
1513 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner09a52722004-10-09 21:48:45 +00001514
Chris Lattnere42eb312004-10-10 23:14:11 +00001515 // If we are dealing with a pointer global that is initialized to null and
1516 // only has one (non-null) value stored into it, then we can optimize any
1517 // users of the loaded value (often calls and loads) that would trap if the
1518 // value was null.
Duncan Sands19d0b472010-02-16 11:11:14 +00001519 if (GV->getInitializer()->getType()->isPointerTy() &&
Chris Lattner09a52722004-10-09 21:48:45 +00001520 GV->getInitializer()->isNullValue()) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001521 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1522 if (GV->getInitializer()->getType() != SOVC->getType())
Chris Lattner1a1acc22011-05-22 07:15:13 +00001523 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001524
Chris Lattnere42eb312004-10-10 23:14:11 +00001525 // Optimize away any trapping uses of the loaded value.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001526 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001527 return true;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001528 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1529 Type *MallocType = getMallocAllocatedType(CI, TLI);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001530 if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1531 Ordering, DL, TLI))
Victor Hernandezf3db9152009-11-07 00:16:28 +00001532 return true;
Chris Lattnere42eb312004-10-10 23:14:11 +00001533 }
Chris Lattner09a52722004-10-09 21:48:45 +00001534 }
Chris Lattner004e2502004-10-11 05:54:41 +00001535
Chris Lattner09a52722004-10-09 21:48:45 +00001536 return false;
1537}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001538
James Molloyea31ad32015-11-13 11:05:07 +00001539/// At this point, we have learned that the only two values ever stored into GV
1540/// are its initializer and OtherVal. See if we can shrink the global into a
1541/// boolean and select between the two values whenever it is used. This exposes
1542/// the values to other scalar optimizations.
Lang Hames459b5dc2014-03-23 04:22:31 +00001543static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001544 Type *GVElType = GV->getValueType();
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001545
Lang Hames459b5dc2014-03-23 04:22:31 +00001546 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1547 // an FP value, pointer or vector, don't do this optimization because a select
1548 // between them is very expensive and unlikely to lead to later
1549 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1550 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner46b5c642009-11-06 04:27:31 +00001551 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001552 GVElType->isFloatingPointTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001553 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner20bbac32008-01-14 01:17:44 +00001554 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001555
Chris Lattner20bbac32008-01-14 01:17:44 +00001556 // Walk the use list of the global seeing if all the uses are load or store.
1557 // If there is anything else, bail out.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001558 for (User *U : GV->users())
Gabor Greifa75ed762010-07-12 14:13:15 +00001559 if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
Chris Lattner20bbac32008-01-14 01:17:44 +00001560 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001561
James Molloyef607a22015-10-28 14:30:53 +00001562 DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n");
Lang Hames459b5dc2014-03-23 04:22:31 +00001563
1564 // Create the new global, initializing it to false.
1565 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1566 false,
1567 GlobalValue::InternalLinkage,
1568 ConstantInt::getFalse(GV->getContext()),
1569 GV->getName()+".b",
1570 GV->getThreadLocalMode(),
1571 GV->getType()->getAddressSpace());
Sergei Larin94be2de2016-01-22 21:18:20 +00001572 NewGV->copyAttributesFrom(GV);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001573 GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
Lang Hames459b5dc2014-03-23 04:22:31 +00001574
Chris Lattner40e4cec2004-12-12 05:53:50 +00001575 Constant *InitVal = GV->getInitializer();
Chris Lattner46b5c642009-11-06 04:27:31 +00001576 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Lang Hames459b5dc2014-03-23 04:22:31 +00001577 "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001578
Lang Hames459b5dc2014-03-23 04:22:31 +00001579 // If initialized to zero and storing one into the global, we can use a cast
1580 // instead of a select to synthesize the desired value.
1581 bool IsOneZero = false;
1582 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1583 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001584
Lang Hames459b5dc2014-03-23 04:22:31 +00001585 while (!GV->use_empty()) {
1586 Instruction *UI = cast<Instruction>(GV->user_back());
1587 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1588 // Change the store into a boolean store.
1589 bool StoringOther = SI->getOperand(0) == OtherVal;
1590 // Only do this if we weren't storing a loaded value.
1591 Value *StoreVal;
1592 if (StoringOther || SI->getOperand(0) == InitVal) {
1593 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1594 StoringOther);
Bill Wendling7297b862013-02-13 23:00:51 +00001595 } else {
Lang Hames459b5dc2014-03-23 04:22:31 +00001596 // Otherwise, we are storing a previously loaded copy. To do this,
1597 // change the copy from copying the original value to just copying the
1598 // bool.
1599 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1600
1601 // If we've already replaced the input, StoredVal will be a cast or
1602 // select instruction. If not, it will be a load of the original
1603 // global.
1604 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1605 assert(LI->getOperand(0) == GV && "Not a copy!");
1606 // Insert a new load, to preserve the saved value.
1607 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1608 LI->getOrdering(), LI->getSynchScope(), LI);
1609 } else {
1610 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1611 "This is not a form that we understand!");
1612 StoreVal = StoredVal->getOperand(0);
1613 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1614 }
Chris Lattner745196a2004-12-12 19:34:41 +00001615 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001616 new StoreInst(StoreVal, NewGV, false, 0,
1617 SI->getOrdering(), SI->getSynchScope(), SI);
1618 } else {
1619 // Change the load into a load of bool then a select.
1620 LoadInst *LI = cast<LoadInst>(UI);
1621 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1622 LI->getOrdering(), LI->getSynchScope(), LI);
1623 Value *NSI;
1624 if (IsOneZero)
1625 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1626 else
1627 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1628 NSI->takeName(LI);
1629 LI->replaceAllUsesWith(NSI);
Devang Patelfc507a12009-03-06 01:39:36 +00001630 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001631 UI->eraseFromParent();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001632 }
1633
Lang Hames459b5dc2014-03-23 04:22:31 +00001634 // Retain the name of the old global variable. People who are debugging their
1635 // programs may expect these variables to be named the same.
1636 NewGV->takeName(GV);
1637 GV->eraseFromParent();
Chris Lattner20bbac32008-01-14 01:17:44 +00001638 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001639}
1640
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001641static bool deleteIfDead(GlobalValue &GV,
1642 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001643 GV.removeDeadConstantUsers();
1644
Mehdi Aminid8803092016-09-15 20:26:27 +00001645 if (!GV.isDiscardableIfUnused() && !GV.isDeclaration())
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001646 return false;
1647
1648 if (const Comdat *C = GV.getComdat())
1649 if (!GV.hasLocalLinkage() && NotDiscardableComdats.count(C))
1650 return false;
1651
1652 bool Dead;
1653 if (auto *F = dyn_cast<Function>(&GV))
Mehdi Aminid8803092016-09-15 20:26:27 +00001654 Dead = (F->isDeclaration() && F->use_empty()) || F->isDefTriviallyDead();
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001655 else
1656 Dead = GV.use_empty();
1657 if (!Dead)
1658 return false;
1659
1660 DEBUG(dbgs() << "GLOBAL DEAD: " << GV << "\n");
1661 GV.eraseFromParent();
1662 ++NumDeleted;
1663 return true;
1664}
Chris Lattner40e4cec2004-12-12 05:53:50 +00001665
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001666static bool isPointerValueDeadOnEntryToFunction(
1667 const Function *F, GlobalValue *GV,
1668 function_ref<DominatorTree &(Function &)> LookupDomTree) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001669 // Find all uses of GV. We expect them all to be in F, and if we can't
1670 // identify any of the uses we bail out.
1671 //
1672 // On each of these uses, identify if the memory that GV points to is
1673 // used/required/live at the start of the function. If it is not, for example
1674 // if the first thing the function does is store to the GV, the GV can
1675 // possibly be demoted.
1676 //
1677 // We don't do an exhaustive search for memory operations - simply look
1678 // through bitcasts as they're quite common and benign.
1679 const DataLayout &DL = GV->getParent()->getDataLayout();
1680 SmallVector<LoadInst *, 4> Loads;
1681 SmallVector<StoreInst *, 4> Stores;
1682 for (auto *U : GV->users()) {
1683 if (Operator::getOpcode(U) == Instruction::BitCast) {
1684 for (auto *UU : U->users()) {
1685 if (auto *LI = dyn_cast<LoadInst>(UU))
1686 Loads.push_back(LI);
1687 else if (auto *SI = dyn_cast<StoreInst>(UU))
1688 Stores.push_back(SI);
1689 else
1690 return false;
1691 }
1692 continue;
1693 }
1694
1695 Instruction *I = dyn_cast<Instruction>(U);
1696 if (!I)
1697 return false;
1698 assert(I->getParent()->getParent() == F);
1699
1700 if (auto *LI = dyn_cast<LoadInst>(I))
1701 Loads.push_back(LI);
1702 else if (auto *SI = dyn_cast<StoreInst>(I))
1703 Stores.push_back(SI);
1704 else
1705 return false;
1706 }
1707
1708 // We have identified all uses of GV into loads and stores. Now check if all
1709 // of them are known not to depend on the value of the global at the function
1710 // entry point. We do this by ensuring that every load is dominated by at
1711 // least one store.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001712 auto &DT = LookupDomTree(*const_cast<Function *>(F));
James Molloy9c7d4d82015-11-15 14:21:37 +00001713
James Molloyd4d23572015-11-16 10:16:22 +00001714 // The below check is quadratic. Check we're not going to do too many tests.
1715 // FIXME: Even though this will always have worst-case quadratic time, we
1716 // could put effort into minimizing the average time by putting stores that
1717 // have been shown to dominate at least one load at the beginning of the
1718 // Stores array, making subsequent dominance checks more likely to succeed
1719 // early.
1720 //
1721 // The threshold here is fairly large because global->local demotion is a
1722 // very powerful optimization should it fire.
1723 const unsigned Threshold = 100;
1724 if (Loads.size() * Stores.size() > Threshold)
1725 return false;
1726
James Molloy9c7d4d82015-11-15 14:21:37 +00001727 for (auto *L : Loads) {
1728 auto *LTy = L->getType();
David Majnemer0a16c222016-08-11 21:15:00 +00001729 if (none_of(Stores, [&](const StoreInst *S) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001730 auto *STy = S->getValueOperand()->getType();
1731 // The load is only dominated by the store if DomTree says so
1732 // and the number of bits loaded in L is less than or equal to
1733 // the number of bits stored in S.
1734 return DT.dominates(S, L) &&
1735 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy);
1736 }))
1737 return false;
1738 }
1739 // All loads have known dependences inside F, so the global can be localized.
1740 return true;
1741}
1742
James Molloy1d695a02015-11-19 18:04:33 +00001743/// C may have non-instruction users. Can all of those users be turned into
1744/// instructions?
1745static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) {
1746 // We don't do this exhaustively. The most common pattern that we really need
1747 // to care about is a constant GEP or constant bitcast - so just looking
1748 // through one single ConstantExpr.
1749 //
1750 // The set of constants that this function returns true for must be able to be
1751 // handled by makeAllConstantUsesInstructions.
1752 for (auto *U : C->users()) {
1753 if (isa<Instruction>(U))
1754 continue;
1755 if (!isa<ConstantExpr>(U))
1756 // Non instruction, non-constantexpr user; cannot convert this.
1757 return false;
1758 for (auto *UU : U->users())
1759 if (!isa<Instruction>(UU))
1760 // A constantexpr used by another constant. We don't try and recurse any
1761 // further but just bail out at this point.
1762 return false;
1763 }
1764
1765 return true;
1766}
1767
1768/// C may have non-instruction users, and
1769/// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the
1770/// non-instruction users to instructions.
1771static void makeAllConstantUsesInstructions(Constant *C) {
1772 SmallVector<ConstantExpr*,4> Users;
1773 for (auto *U : C->users()) {
1774 if (isa<ConstantExpr>(U))
1775 Users.push_back(cast<ConstantExpr>(U));
1776 else
1777 // We should never get here; allNonInstructionUsersCanBeMadeInstructions
1778 // should not have returned true for C.
1779 assert(
1780 isa<Instruction>(U) &&
1781 "Can't transform non-constantexpr non-instruction to instruction!");
1782 }
1783
1784 SmallVector<Value*,4> UUsers;
1785 for (auto *U : Users) {
1786 UUsers.clear();
1787 for (auto *UU : U->users())
1788 UUsers.push_back(UU);
1789 for (auto *UU : UUsers) {
1790 Instruction *UI = cast<Instruction>(UU);
1791 Instruction *NewU = U->getAsInstruction();
1792 NewU->insertBefore(UI);
1793 UI->replaceUsesOfWith(U, NewU);
1794 }
1795 U->dropAllReferences();
1796 }
1797}
1798
James Molloyea31ad32015-11-13 11:05:07 +00001799/// Analyze the specified global variable and optimize
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001800/// it if possible. If we make a change, return true.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001801static bool processInternalGlobal(
1802 GlobalVariable *GV, const GlobalStatus &GS, TargetLibraryInfo *TLI,
1803 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001804 auto &DL = GV->getParent()->getDataLayout();
James Molloy9c7d4d82015-11-15 14:21:37 +00001805 // If this is a first class global and has only one accessing function and
1806 // this function is non-recursive, we replace the global with a local alloca
1807 // in this function.
Alexey Samsonova1944e62013-10-07 19:03:24 +00001808 //
Alp Tokerf907b892013-12-05 05:44:44 +00001809 // NOTE: It doesn't make sense to promote non-single-value types since we
Alexey Samsonova1944e62013-10-07 19:03:24 +00001810 // are just replacing static memory to stack memory.
1811 //
1812 // If the global is in different address space, don't bring it to stack.
1813 if (!GS.HasMultipleAccessingFunctions &&
James Molloy1d695a02015-11-19 18:04:33 +00001814 GS.AccessingFunction &&
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001815 GV->getValueType()->isSingleValueType() &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001816 GV->getType()->getAddressSpace() == 0 &&
1817 !GV->isExternallyInitialized() &&
James Molloy1d695a02015-11-19 18:04:33 +00001818 allNonInstructionUsersCanBeMadeInstructions(GV) &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001819 GS.AccessingFunction->doesNotRecurse() &&
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001820 isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV,
1821 LookupDomTree)) {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001822 const DataLayout &DL = GV->getParent()->getDataLayout();
1823
James Molloy33e73452015-11-13 11:05:13 +00001824 DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n");
Alexey Samsonova1944e62013-10-07 19:03:24 +00001825 Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1826 ->getEntryBlock().begin());
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001827 Type *ElemTy = GV->getValueType();
Alexey Samsonova1944e62013-10-07 19:03:24 +00001828 // FIXME: Pass Global's alignment when globals have alignment
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001829 AllocaInst *Alloca = new AllocaInst(ElemTy, DL.getAllocaAddrSpace(), nullptr,
Craig Topperf40110f2014-04-25 05:29:35 +00001830 GV->getName(), &FirstI);
Alexey Samsonova1944e62013-10-07 19:03:24 +00001831 if (!isa<UndefValue>(GV->getInitializer()))
1832 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1833
James Molloy1d695a02015-11-19 18:04:33 +00001834 makeAllConstantUsesInstructions(GV);
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001835
Alexey Samsonova1944e62013-10-07 19:03:24 +00001836 GV->replaceAllUsesWith(Alloca);
1837 GV->eraseFromParent();
1838 ++NumLocalized;
1839 return true;
1840 }
1841
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001842 // If the global is never loaded (but may be stored to), it is dead.
1843 // Delete it now.
Rafael Espindola045a78f2013-10-17 18:18:52 +00001844 if (!GS.IsLoaded) {
James Molloy33e73452015-11-13 11:05:13 +00001845 DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001846
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001847 bool Changed;
1848 if (isLeakCheckerRoot(GV)) {
1849 // Delete any constant stores to the global.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001850 Changed = CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001851 } else {
1852 // Delete any stores we can find to the global. We may not be able to
1853 // make it completely dead though.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001854 Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001855 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001856
1857 // If the global is dead now, delete it.
1858 if (GV->use_empty()) {
1859 GV->eraseFromParent();
1860 ++NumDeleted;
1861 Changed = true;
1862 }
1863 return Changed;
1864
James Molloyeb040cc2016-04-25 10:48:29 +00001865 }
1866 if (GS.StoredType <= GlobalStatus::InitializerStored) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00001867 DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001868 GV->setConstant(true);
1869
1870 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001871 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001872
1873 // If the global is dead now, just nuke it.
1874 if (GV->use_empty()) {
1875 DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
1876 << "all users and delete global!\n");
1877 GV->eraseFromParent();
1878 ++NumDeleted;
James Molloyeb040cc2016-04-25 10:48:29 +00001879 return true;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001880 }
1881
James Molloyeb040cc2016-04-25 10:48:29 +00001882 // Fall through to the next check; see if we can optimize further.
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001883 ++NumMarked;
James Molloyeb040cc2016-04-25 10:48:29 +00001884 }
1885 if (!GV->getInitializer()->getType()->isSingleValueType()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001886 const DataLayout &DL = GV->getParent()->getDataLayout();
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001887 if (SRAGlobal(GV, DL))
Mehdi Amini46a43552015-03-04 18:43:29 +00001888 return true;
James Molloyeb040cc2016-04-25 10:48:29 +00001889 }
1890 if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001891 // If the initial value for the global was an undef value, and if only
1892 // one other value was stored into it, we can just change the
1893 // initializer to be the stored value, then delete all stores to the
1894 // global. This allows us to mark it constant.
1895 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1896 if (isa<UndefValue>(GV->getInitializer())) {
1897 // Change the initial value here.
1898 GV->setInitializer(SOVConstant);
1899
1900 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001901 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001902
1903 if (GV->use_empty()) {
1904 DEBUG(dbgs() << " *** Substituting initializer allowed us to "
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001905 << "simplify all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001906 GV->eraseFromParent();
1907 ++NumDeleted;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001908 }
1909 ++NumSubstitute;
1910 return true;
1911 }
1912
1913 // Try to optimize globals based on the knowledge that only one value
1914 // (besides its initializer) is ever stored to the global.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001915 if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001916 return true;
1917
Lang Hames459b5dc2014-03-23 04:22:31 +00001918 // Otherwise, if the global was not a boolean, we can shrink it to be a
1919 // boolean.
Eli Friedman33d37002013-09-09 22:00:13 +00001920 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) {
JF Bastien800f87a2016-04-06 21:19:33 +00001921 if (GS.Ordering == AtomicOrdering::NotAtomic) {
Lang Hames459b5dc2014-03-23 04:22:31 +00001922 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Eli Friedman33d37002013-09-09 22:00:13 +00001923 ++NumShrunkToBool;
1924 return true;
1925 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001926 }
Eli Friedman33d37002013-09-09 22:00:13 +00001927 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001928 }
1929
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001930 return false;
1931}
1932
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001933/// Analyze the specified global variable and optimize it if possible. If we
1934/// make a change, return true.
1935static bool
1936processGlobal(GlobalValue &GV, TargetLibraryInfo *TLI,
1937 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001938 if (GV.getName().startswith("llvm."))
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001939 return false;
1940
1941 GlobalStatus GS;
1942
1943 if (GlobalStatus::analyzeGlobal(&GV, GS))
1944 return false;
1945
1946 bool Changed = false;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001947 if (!GS.IsCompared && !GV.hasGlobalUnnamedAddr()) {
1948 auto NewUnnamedAddr = GV.hasLocalLinkage() ? GlobalValue::UnnamedAddr::Global
1949 : GlobalValue::UnnamedAddr::Local;
1950 if (NewUnnamedAddr != GV.getUnnamedAddr()) {
1951 GV.setUnnamedAddr(NewUnnamedAddr);
1952 NumUnnamed++;
1953 Changed = true;
1954 }
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001955 }
1956
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001957 // Do more involved optimizations if the global is internal.
1958 if (!GV.hasLocalLinkage())
1959 return Changed;
1960
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001961 auto *GVar = dyn_cast<GlobalVariable>(&GV);
1962 if (!GVar)
1963 return Changed;
1964
1965 if (GVar->isConstant() || !GVar->hasInitializer())
1966 return Changed;
1967
1968 return processInternalGlobal(GVar, GS, TLI, LookupDomTree) || Changed;
1969}
1970
James Molloyea31ad32015-11-13 11:05:07 +00001971/// Walk all of the direct calls of the specified function, changing them to
1972/// FastCC.
Chris Lattnera4c80222005-05-08 22:18:06 +00001973static void ChangeCalleesToFastCall(Function *F) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001974 for (User *U : F->users()) {
1975 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00001976 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001977 CallSite CS(cast<Instruction>(U));
1978 CS.setCallingConv(CallingConv::Fast);
Chris Lattnera4c80222005-05-08 22:18:06 +00001979 }
1980}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001981
Reid Klecknerb5180542017-03-21 16:57:19 +00001982static AttributeList StripNest(LLVMContext &C, const AttributeList &Attrs) {
Chris Lattner8a923e72008-03-12 17:45:29 +00001983 for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
Bill Wendling57625a42013-01-25 23:09:36 +00001984 unsigned Index = Attrs.getSlotIndex(i);
1985 if (!Attrs.getSlotAttributes(i).hasAttribute(Index, Attribute::Nest))
Duncan Sands85fab3a2008-02-18 17:32:13 +00001986 continue;
1987
Duncan Sands85fab3a2008-02-18 17:32:13 +00001988 // There can be only one.
Bill Wendling57625a42013-01-25 23:09:36 +00001989 return Attrs.removeAttribute(C, Index, Attribute::Nest);
Duncan Sands573b3f82008-02-16 20:56:04 +00001990 }
1991
1992 return Attrs;
1993}
1994
1995static void RemoveNestAttribute(Function *F) {
Bill Wendling85a64c22012-10-14 06:39:53 +00001996 F->setAttributes(StripNest(F->getContext(), F->getAttributes()));
Chandler Carruthcdf47882014-03-09 03:16:01 +00001997 for (User *U : F->users()) {
1998 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00001999 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002000 CallSite CS(cast<Instruction>(U));
2001 CS.setAttributes(StripNest(F->getContext(), CS.getAttributes()));
Duncan Sands573b3f82008-02-16 20:56:04 +00002002 }
2003}
2004
Reid Kleckner22869372014-02-26 19:57:30 +00002005/// Return true if this is a calling convention that we'd like to change. The
2006/// idea here is that we don't want to mess with the convention if the user
2007/// explicitly requested something with performance implications like coldcc,
2008/// GHC, or anyregcc.
2009static bool isProfitableToMakeFastCC(Function *F) {
2010 CallingConv::ID CC = F->getCallingConv();
2011 // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc?
2012 return CC == CallingConv::C || CC == CallingConv::X86_ThisCall;
2013}
2014
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002015static bool
2016OptimizeFunctions(Module &M, TargetLibraryInfo *TLI,
2017 function_ref<DominatorTree &(Function &)> LookupDomTree,
2018 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002019 bool Changed = false;
2020 // Optimize functions.
2021 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002022 Function *F = &*FI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002023 // Functions without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002024 if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002025 F->setLinkage(GlobalValue::InternalLinkage);
David Majnemer1b3b70e2014-10-08 07:23:31 +00002026
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002027 if (deleteIfDead(*F, NotDiscardableComdats)) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002028 Changed = true;
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002029 continue;
2030 }
Rafael Espindola10d9a032015-12-22 20:43:30 +00002031
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002032 Changed |= processGlobal(*F, TLI, LookupDomTree);
Rafael Espindola10d9a032015-12-22 20:43:30 +00002033
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002034 if (!F->hasLocalLinkage())
2035 continue;
2036 if (isProfitableToMakeFastCC(F) && !F->isVarArg() &&
2037 !F->hasAddressTaken()) {
2038 // If this function has a calling convention worth changing, is not a
2039 // varargs function, and is only called directly, promote it to use the
2040 // Fast calling convention.
2041 F->setCallingConv(CallingConv::Fast);
2042 ChangeCalleesToFastCall(F);
2043 ++NumFastCallFns;
2044 Changed = true;
2045 }
Duncan Sands573b3f82008-02-16 20:56:04 +00002046
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002047 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2048 !F->hasAddressTaken()) {
2049 // The function is not used by a trampoline intrinsic, so it is safe
2050 // to remove the 'nest' attribute.
2051 RemoveNestAttribute(F);
2052 ++NumNestRemoved;
2053 Changed = true;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002054 }
2055 }
2056 return Changed;
2057}
2058
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002059static bool
2060OptimizeGlobalVars(Module &M, TargetLibraryInfo *TLI,
2061 function_ref<DominatorTree &(Function &)> LookupDomTree,
2062 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002063 bool Changed = false;
David Majnemerdad0a642014-06-27 18:19:56 +00002064
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002065 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2066 GVI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002067 GlobalVariable *GV = &*GVI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002068 // Global variables without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002069 if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002070 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman580b80d2009-11-23 16:22:21 +00002071 // Simplify the initializer.
2072 if (GV->hasInitializer())
David Majnemerd536f232016-07-29 03:27:26 +00002073 if (auto *C = dyn_cast<Constant>(GV->getInitializer())) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002074 auto &DL = M.getDataLayout();
David Majnemerd536f232016-07-29 03:27:26 +00002075 Constant *New = ConstantFoldConstant(C, DL, TLI);
2076 if (New && New != C)
Dan Gohman580b80d2009-11-23 16:22:21 +00002077 GV->setInitializer(New);
2078 }
Rafael Espindolafc355bc2011-01-19 16:32:21 +00002079
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002080 if (deleteIfDead(*GV, NotDiscardableComdats)) {
Rafael Espindola10d9a032015-12-22 20:43:30 +00002081 Changed = true;
2082 continue;
2083 }
2084
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002085 Changed |= processGlobal(*GV, TLI, LookupDomTree);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002086 }
2087 return Changed;
2088}
2089
James Molloyea31ad32015-11-13 11:05:07 +00002090/// Evaluate a piece of a constantexpr store into a global initializer. This
2091/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2092/// GEP operands of Addr [0, OpNo) have been stepped into.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002093static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2094 ConstantExpr *Addr, unsigned OpNo) {
2095 // Base case of the recursion.
2096 if (OpNo == Addr->getNumOperands()) {
2097 assert(Val->getType() == Init->getType() && "Type mismatch!");
2098 return Val;
2099 }
2100
2101 SmallVector<Constant*, 32> Elts;
2102 if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2103 // Break up the constant into its elements.
2104 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2105 Elts.push_back(Init->getAggregateElement(i));
2106
2107 // Replace the element that we are supposed to.
2108 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2109 unsigned Idx = CU->getZExtValue();
2110 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2111 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2112
2113 // Return the modified struct.
2114 return ConstantStruct::get(STy, Elts);
2115 }
2116
2117 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2118 SequentialType *InitTy = cast<SequentialType>(Init->getType());
Peter Collingbournebc070522016-12-02 03:20:58 +00002119 uint64_t NumElts = InitTy->getNumElements();
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002120
2121 // Break up the array into elements.
2122 for (uint64_t i = 0, e = NumElts; i != e; ++i)
2123 Elts.push_back(Init->getAggregateElement(i));
2124
2125 assert(CI->getZExtValue() < NumElts);
2126 Elts[CI->getZExtValue()] =
2127 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2128
2129 if (Init->getType()->isArrayTy())
2130 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2131 return ConstantVector::get(Elts);
2132}
2133
James Molloyea31ad32015-11-13 11:05:07 +00002134/// We have decided that Addr (which satisfies the predicate
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002135/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2136static void CommitValueTo(Constant *Val, Constant *Addr) {
2137 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2138 assert(GV->hasInitializer());
2139 GV->setInitializer(Val);
2140 return;
2141 }
2142
2143 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2144 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2145 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2146}
2147
James Molloyea31ad32015-11-13 11:05:07 +00002148/// Evaluate static constructors in the function, if we can. Return true if we
2149/// can, false otherwise.
Mehdi Amini46a43552015-03-04 18:43:29 +00002150static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002151 TargetLibraryInfo *TLI) {
Chris Lattnerda1889b2005-09-27 04:27:01 +00002152 // Call the function.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002153 Evaluator Eval(DL, TLI);
Chris Lattner65a3a092005-09-27 04:45:34 +00002154 Constant *RetValDummy;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002155 bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2156 SmallVector<Constant*, 0>());
Jakub Staszak9525a772012-12-06 21:57:16 +00002157
Chris Lattnerda1889b2005-09-27 04:27:01 +00002158 if (EvalSuccess) {
Nico Weber4b2acde2014-05-02 18:35:25 +00002159 ++NumCtorsEvaluated;
2160
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002161 // We succeeded at evaluation: commit the result.
David Greene44cb8ad2010-01-05 01:28:05 +00002162 DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002163 << F->getName() << "' to " << Eval.getMutatedMemory().size()
2164 << " stores.\n");
Benjamin Kramer135f7352016-06-26 12:28:59 +00002165 for (const auto &I : Eval.getMutatedMemory())
2166 CommitValueTo(I.second, I.first);
Craig Topper46276792014-08-24 23:23:06 +00002167 for (GlobalVariable *GV : Eval.getInvariants())
2168 GV->setConstant(true);
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002169 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002170
Chris Lattnerda1889b2005-09-27 04:27:01 +00002171 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002172}
2173
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002174static int compareNames(Constant *const *A, Constant *const *B) {
Benjamin Kramer96f4b122016-03-15 14:18:26 +00002175 Value *AStripped = (*A)->stripPointerCastsNoFollowAliases();
2176 Value *BStripped = (*B)->stripPointerCastsNoFollowAliases();
2177 return AStripped->getName().compare(BStripped->getName());
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002178}
2179
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002180static void setUsedInitializer(GlobalVariable &V,
Craig Topper97ebe532014-08-19 07:44:27 +00002181 const SmallPtrSet<GlobalValue *, 8> &Init) {
Rafael Espindolac2bb73f2013-07-20 23:33:15 +00002182 if (Init.empty()) {
2183 V.eraseFromParent();
2184 return;
2185 }
2186
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002187 // Type of pointer to the array of pointers.
2188 PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0);
Rafael Espindola00752162013-05-09 17:22:59 +00002189
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002190 SmallVector<llvm::Constant *, 8> UsedArray;
Craig Topper71b7b682014-08-21 05:55:13 +00002191 for (GlobalValue *GV : Init) {
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002192 Constant *Cast
Craig Topper71b7b682014-08-21 05:55:13 +00002193 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002194 UsedArray.push_back(Cast);
Rafael Espindola00752162013-05-09 17:22:59 +00002195 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002196 // Sort to get deterministic order.
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002197 array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002198 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
Rafael Espindola00752162013-05-09 17:22:59 +00002199
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002200 Module *M = V.getParent();
2201 V.removeFromParent();
2202 GlobalVariable *NV =
2203 new GlobalVariable(*M, ATy, false, llvm::GlobalValue::AppendingLinkage,
2204 llvm::ConstantArray::get(ATy, UsedArray), "");
2205 NV->takeName(&V);
2206 NV->setSection("llvm.metadata");
2207 delete &V;
Rafael Espindola00752162013-05-09 17:22:59 +00002208}
2209
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002210namespace {
James Molloyea31ad32015-11-13 11:05:07 +00002211/// An easy to access representation of llvm.used and llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002212class LLVMUsed {
2213 SmallPtrSet<GlobalValue *, 8> Used;
2214 SmallPtrSet<GlobalValue *, 8> CompilerUsed;
2215 GlobalVariable *UsedV;
2216 GlobalVariable *CompilerUsedV;
2217
2218public:
Rafael Espindolaec2375f2013-07-25 02:50:08 +00002219 LLVMUsed(Module &M) {
Rafael Espindola17600e22013-07-25 03:23:25 +00002220 UsedV = collectUsedGlobalVariables(M, Used, false);
2221 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
Rafael Espindola00752162013-05-09 17:22:59 +00002222 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002223 typedef SmallPtrSet<GlobalValue *, 8>::iterator iterator;
Craig Topper46276792014-08-24 23:23:06 +00002224 typedef iterator_range<iterator> used_iterator_range;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002225 iterator usedBegin() { return Used.begin(); }
2226 iterator usedEnd() { return Used.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002227 used_iterator_range used() {
2228 return used_iterator_range(usedBegin(), usedEnd());
2229 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002230 iterator compilerUsedBegin() { return CompilerUsed.begin(); }
2231 iterator compilerUsedEnd() { return CompilerUsed.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002232 used_iterator_range compilerUsed() {
2233 return used_iterator_range(compilerUsedBegin(), compilerUsedEnd());
2234 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002235 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
2236 bool compilerUsedCount(GlobalValue *GV) const {
2237 return CompilerUsed.count(GV);
2238 }
2239 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2240 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
David Blaikie70573dc2014-11-19 07:49:26 +00002241 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
2242 bool compilerUsedInsert(GlobalValue *GV) {
2243 return CompilerUsed.insert(GV).second;
2244 }
Rafael Espindola00752162013-05-09 17:22:59 +00002245
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002246 void syncVariablesAndSets() {
2247 if (UsedV)
2248 setUsedInitializer(*UsedV, Used);
2249 if (CompilerUsedV)
2250 setUsedInitializer(*CompilerUsedV, CompilerUsed);
2251 }
2252};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00002253}
Rafael Espindola00752162013-05-09 17:22:59 +00002254
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002255static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
2256 if (GA.use_empty()) // No use at all.
2257 return false;
2258
2259 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
2260 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002261 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002262 if (!GA.hasOneUse())
2263 // Strictly more than one use. So at least one is not in llvm.used and
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002264 // llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002265 return true;
2266
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002267 // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002268 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
Rafael Espindola00752162013-05-09 17:22:59 +00002269}
2270
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002271static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
2272 const LLVMUsed &U) {
2273 unsigned N = 2;
2274 assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
2275 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002276 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002277 if (U.usedCount(&V) || U.compilerUsedCount(&V))
2278 ++N;
2279 return V.hasNUsesOrMore(N);
2280}
2281
2282static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
2283 if (!GA.hasLocalLinkage())
2284 return true;
2285
2286 return U.usedCount(&GA) || U.compilerUsedCount(&GA);
2287}
2288
Craig Topper71b7b682014-08-21 05:55:13 +00002289static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U,
2290 bool &RenameTarget) {
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002291 RenameTarget = false;
Rafael Espindola00752162013-05-09 17:22:59 +00002292 bool Ret = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002293 if (hasUseOtherThanLLVMUsed(GA, U))
Rafael Espindola00752162013-05-09 17:22:59 +00002294 Ret = true;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002295
2296 // If the alias is externally visible, we may still be able to simplify it.
2297 if (!mayHaveOtherReferences(GA, U))
2298 return Ret;
2299
2300 // If the aliasee has internal linkage, give it the name and linkage
2301 // of the alias, and delete the alias. This turns:
2302 // define internal ... @f(...)
2303 // @a = alias ... @f
2304 // into:
2305 // define ... @a(...)
2306 Constant *Aliasee = GA.getAliasee();
2307 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2308 if (!Target->hasLocalLinkage())
2309 return Ret;
2310
2311 // Do not perform the transform if multiple aliases potentially target the
2312 // aliasee. This check also ensures that it is safe to replace the section
2313 // and other attributes of the aliasee with those of the alias.
2314 if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
2315 return Ret;
2316
2317 RenameTarget = true;
2318 return true;
Rafael Espindola00752162013-05-09 17:22:59 +00002319}
2320
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002321static bool
2322OptimizeGlobalAliases(Module &M,
2323 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002324 bool Changed = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002325 LLVMUsed Used(M);
2326
Craig Topper46276792014-08-24 23:23:06 +00002327 for (GlobalValue *GV : Used.used())
2328 Used.compilerUsedErase(GV);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002329
Duncan Sands0bcf0852009-01-07 20:01:06 +00002330 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002331 I != E;) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002332 GlobalAlias *J = &*I++;
2333
Duncan Sandsed722832009-03-06 10:21:56 +00002334 // Aliases without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002335 if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002336 J->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindola5349d872015-12-22 19:50:22 +00002337
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002338 if (deleteIfDead(*J, NotDiscardableComdats)) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002339 Changed = true;
2340 continue;
2341 }
2342
Duncan Sandsb3f27882009-02-15 09:56:08 +00002343 // If the aliasee may change at link time, nothing can be done - bail out.
Sanjoy Das5ce32722016-04-08 00:48:30 +00002344 if (J->isInterposable())
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002345 continue;
2346
Duncan Sandsb3f27882009-02-15 09:56:08 +00002347 Constant *Aliasee = J->getAliasee();
David Majnemer0e2cc2a2014-07-01 00:30:56 +00002348 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts());
2349 // We can't trivially replace the alias with the aliasee if the aliasee is
2350 // non-trivial in some way.
2351 // TODO: Try to handle non-zero GEPs of local aliasees.
2352 if (!Target)
2353 continue;
Duncan Sands7a1db332009-02-18 17:55:38 +00002354 Target->removeDeadConstantUsers();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002355
2356 // Make all users of the alias use the aliasee instead.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002357 bool RenameTarget;
2358 if (!hasUsesToReplace(*J, Used, RenameTarget))
Rafael Espindola00752162013-05-09 17:22:59 +00002359 continue;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002360
Rafael Espindola6b238632014-05-16 19:35:39 +00002361 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType()));
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002362 ++NumAliasesResolved;
2363 Changed = true;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002364
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002365 if (RenameTarget) {
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002366 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002367 Target->takeName(&*J);
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002368 Target->setLinkage(J->getLinkage());
Reid Kleckner22b19da2014-02-13 02:18:36 +00002369 Target->setVisibility(J->getVisibility());
2370 Target->setDLLStorageClass(J->getDLLStorageClass());
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002371
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002372 if (Used.usedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002373 Used.usedInsert(Target);
2374
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002375 if (Used.compilerUsedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002376 Used.compilerUsedInsert(Target);
Rafael Espindola8d304802013-06-12 16:45:47 +00002377 } else if (mayHaveOtherReferences(*J, Used))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002378 continue;
2379
Duncan Sandsb3f27882009-02-15 09:56:08 +00002380 // Delete the alias.
2381 M.getAliasList().erase(J);
2382 ++NumAliasesRemoved;
2383 Changed = true;
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002384 }
2385
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002386 Used.syncVariablesAndSets();
2387
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002388 return Changed;
2389}
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002390
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002391static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
David L. Jonesd21529f2017-01-23 23:16:46 +00002392 LibFunc F = LibFunc_cxa_atexit;
Ahmed Bougachad765a822016-04-27 19:04:35 +00002393 if (!TLI->has(F))
Craig Topperf40110f2014-04-25 05:29:35 +00002394 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002395
Ahmed Bougachad765a822016-04-27 19:04:35 +00002396 Function *Fn = M.getFunction(TLI->getName(F));
Anders Carlssonee6bc702011-03-20 17:59:11 +00002397 if (!Fn)
Craig Topperf40110f2014-04-25 05:29:35 +00002398 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002399
Ahmed Bougachad765a822016-04-27 19:04:35 +00002400 // Make sure that the function has the correct prototype.
David L. Jonesd21529f2017-01-23 23:16:46 +00002401 if (!TLI->getLibFunc(*Fn, F) || F != LibFunc_cxa_atexit)
Craig Topperf40110f2014-04-25 05:29:35 +00002402 return nullptr;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002403
2404 return Fn;
2405}
2406
James Molloyea31ad32015-11-13 11:05:07 +00002407/// Returns whether the given function is an empty C++ destructor and can
2408/// therefore be eliminated.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002409/// Note that we assume that other optimization passes have already simplified
2410/// the code so we only look for a function with a single basic block, where
Benjamin Kramer1a4695a2012-02-09 16:28:15 +00002411/// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
2412/// other side-effect free instructions.
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002413static bool cxxDtorIsEmpty(const Function &Fn,
2414 SmallPtrSet<const Function *, 8> &CalledFunctions) {
Anders Carlsson48a44912011-03-20 19:51:13 +00002415 // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
Nick Lewyckyd0781832011-03-21 02:26:01 +00002416 // nounwind, but that doesn't seem worth doing.
Anders Carlsson48a44912011-03-20 19:51:13 +00002417 if (Fn.isDeclaration())
2418 return false;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002419
2420 if (++Fn.begin() != Fn.end())
2421 return false;
2422
2423 const BasicBlock &EntryBlock = Fn.getEntryBlock();
2424 for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end();
2425 I != E; ++I) {
2426 if (const CallInst *CI = dyn_cast<CallInst>(I)) {
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002427 // Ignore debug intrinsics.
2428 if (isa<DbgInfoIntrinsic>(CI))
2429 continue;
2430
Anders Carlssonee6bc702011-03-20 17:59:11 +00002431 const Function *CalledFn = CI->getCalledFunction();
2432
2433 if (!CalledFn)
2434 return false;
2435
Anders Carlsson1cc80732011-03-22 03:21:01 +00002436 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
2437
Anders Carlsson48a44912011-03-20 19:51:13 +00002438 // Don't treat recursive functions as empty.
David Blaikie70573dc2014-11-19 07:49:26 +00002439 if (!NewCalledFunctions.insert(CalledFn).second)
Anders Carlsson48a44912011-03-20 19:51:13 +00002440 return false;
2441
Anders Carlsson1cc80732011-03-22 03:21:01 +00002442 if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002443 return false;
2444 } else if (isa<ReturnInst>(*I))
Benjamin Kramer487a3962012-02-09 14:26:06 +00002445 return true; // We're done.
2446 else if (I->mayHaveSideEffects())
2447 return false; // Destructor with side effects, bail.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002448 }
2449
2450 return false;
2451}
2452
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002453static bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
Anders Carlssonee6bc702011-03-20 17:59:11 +00002454 /// Itanium C++ ABI p3.3.5:
2455 ///
2456 /// After constructing a global (or local static) object, that will require
2457 /// destruction on exit, a termination function is registered as follows:
2458 ///
2459 /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
2460 ///
2461 /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
2462 /// call f(p) when DSO d is unloaded, before all such termination calls
2463 /// registered before this one. It returns zero if registration is
Nick Lewyckyd0781832011-03-21 02:26:01 +00002464 /// successful, nonzero on failure.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002465
2466 // This pass will look for calls to __cxa_atexit where the function is trivial
2467 // and remove them.
2468 bool Changed = false;
2469
Chandler Carruthcdf47882014-03-09 03:16:01 +00002470 for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end();
2471 I != E;) {
Anders Carlsson336fd902011-03-20 20:21:33 +00002472 // We're only interested in calls. Theoretically, we could handle invoke
2473 // instructions as well, but neither llvm-gcc nor clang generate invokes
2474 // to __cxa_atexit.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002475 CallInst *CI = dyn_cast<CallInst>(*I++);
2476 if (!CI)
Anders Carlsson336fd902011-03-20 20:21:33 +00002477 continue;
2478
Jakub Staszak9525a772012-12-06 21:57:16 +00002479 Function *DtorFn =
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002480 dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
Anders Carlssonee6bc702011-03-20 17:59:11 +00002481 if (!DtorFn)
2482 continue;
2483
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002484 SmallPtrSet<const Function *, 8> CalledFunctions;
2485 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002486 continue;
2487
2488 // Just remove the call.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002489 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
2490 CI->eraseFromParent();
Anders Carlsson48a44912011-03-20 19:51:13 +00002491
Anders Carlssonee6bc702011-03-20 17:59:11 +00002492 ++NumCXXDtorsRemoved;
2493
2494 Changed |= true;
2495 }
2496
2497 return Changed;
2498}
2499
Justin Bogner1a075012016-04-26 00:28:01 +00002500static bool optimizeGlobalsInModule(
2501 Module &M, const DataLayout &DL, TargetLibraryInfo *TLI,
2502 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002503 SmallSet<const Comdat *, 8> NotDiscardableComdats;
Justin Bogner1a075012016-04-26 00:28:01 +00002504 bool Changed = false;
Chris Lattner25db5802004-10-07 04:16:33 +00002505 bool LocalChange = true;
2506 while (LocalChange) {
2507 LocalChange = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002508
David Majnemer1b3b70e2014-10-08 07:23:31 +00002509 NotDiscardableComdats.clear();
2510 for (const GlobalVariable &GV : M.globals())
2511 if (const Comdat *C = GV.getComdat())
2512 if (!GV.isDiscardableIfUnused() || !GV.use_empty())
2513 NotDiscardableComdats.insert(C);
2514 for (Function &F : M)
2515 if (const Comdat *C = F.getComdat())
2516 if (!F.isDefTriviallyDead())
2517 NotDiscardableComdats.insert(C);
2518 for (GlobalAlias &GA : M.aliases())
2519 if (const Comdat *C = GA.getComdat())
2520 if (!GA.isDiscardableIfUnused() || !GA.use_empty())
2521 NotDiscardableComdats.insert(C);
2522
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002523 // Delete functions that are trivially dead, ccc -> fastcc
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002524 LocalChange |=
2525 OptimizeFunctions(M, TLI, LookupDomTree, NotDiscardableComdats);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002526
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002527 // Optimize global_ctors list.
Richard Smithc167d652014-05-06 01:44:26 +00002528 LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) {
2529 return EvaluateStaticConstructor(F, DL, TLI);
2530 });
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002531
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002532 // Optimize non-address-taken globals.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002533 LocalChange |= OptimizeGlobalVars(M, TLI, LookupDomTree,
2534 NotDiscardableComdats);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002535
2536 // Resolve aliases, when possible.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002537 LocalChange |= OptimizeGlobalAliases(M, NotDiscardableComdats);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002538
Manman Renb3c52fb2013-05-14 21:52:44 +00002539 // Try to remove trivial global destructors if they are not removed
2540 // already.
2541 Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002542 if (CXAAtExitFn)
2543 LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
2544
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002545 Changed |= LocalChange;
Chris Lattner25db5802004-10-07 04:16:33 +00002546 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002547
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002548 // TODO: Move all global ctors functions to the end of the module for code
2549 // layout.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002550
Chris Lattner25db5802004-10-07 04:16:33 +00002551 return Changed;
2552}
Justin Bogner1a075012016-04-26 00:28:01 +00002553
Sean Silvafd03ac62016-08-09 00:28:38 +00002554PreservedAnalyses GlobalOptPass::run(Module &M, ModuleAnalysisManager &AM) {
Justin Bogner1a075012016-04-26 00:28:01 +00002555 auto &DL = M.getDataLayout();
2556 auto &TLI = AM.getResult<TargetLibraryAnalysis>(M);
2557 auto &FAM =
2558 AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
2559 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree &{
2560 return FAM.getResult<DominatorTreeAnalysis>(F);
2561 };
2562 if (!optimizeGlobalsInModule(M, DL, &TLI, LookupDomTree))
2563 return PreservedAnalyses::all();
2564 return PreservedAnalyses::none();
2565}
2566
2567namespace {
2568struct GlobalOptLegacyPass : public ModulePass {
2569 static char ID; // Pass identification, replacement for typeid
2570 GlobalOptLegacyPass() : ModulePass(ID) {
2571 initializeGlobalOptLegacyPassPass(*PassRegistry::getPassRegistry());
2572 }
2573
2574 bool runOnModule(Module &M) override {
2575 if (skipModule(M))
2576 return false;
2577
2578 auto &DL = M.getDataLayout();
2579 auto *TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
2580 auto LookupDomTree = [this](Function &F) -> DominatorTree & {
2581 return this->getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
2582 };
2583 return optimizeGlobalsInModule(M, DL, TLI, LookupDomTree);
2584 }
2585
2586 void getAnalysisUsage(AnalysisUsage &AU) const override {
2587 AU.addRequired<TargetLibraryInfoWrapperPass>();
2588 AU.addRequired<DominatorTreeWrapperPass>();
2589 }
2590};
2591}
2592
2593char GlobalOptLegacyPass::ID = 0;
2594INITIALIZE_PASS_BEGIN(GlobalOptLegacyPass, "globalopt",
2595 "Global Variable Optimizer", false, false)
2596INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
2597INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
2598INITIALIZE_PASS_END(GlobalOptLegacyPass, "globalopt",
2599 "Global Variable Optimizer", false, false)
2600
2601ModulePass *llvm::createGlobalOptimizerPass() {
2602 return new GlobalOptLegacyPass();
2603}