blob: ee8fdaebbdae8ac969bd1229dab7d93cd725db5a [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"
Victor Leschuk56b03d02017-08-04 04:51:15 +000030#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/DerivedTypes.h"
James Molloy9c7d4d82015-11-15 14:21:37 +000032#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000033#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000034#include "llvm/IR/Instructions.h"
35#include "llvm/IR/IntrinsicInst.h"
36#include "llvm/IR/Module.h"
37#include "llvm/IR/Operator.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000038#include "llvm/IR/ValueHandle.h"
Chris Lattner25db5802004-10-07 04:16:33 +000039#include "llvm/Pass.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000040#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000041#include "llvm/Support/ErrorHandling.h"
Chris Lattner67ca6f632008-04-26 07:40:11 +000042#include "llvm/Support/MathExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000043#include "llvm/Support/raw_ostream.h"
Justin Bogner1a075012016-04-26 00:28:01 +000044#include "llvm/Transforms/IPO.h"
Nico Weber4b2acde2014-05-02 18:35:25 +000045#include "llvm/Transforms/Utils/CtorUtils.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000046#include "llvm/Transforms/Utils/Evaluator.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000047#include "llvm/Transforms/Utils/GlobalStatus.h"
David Majnemer522a9112016-07-22 04:54:44 +000048#include "llvm/Transforms/Utils/Local.h"
Chris Lattner25db5802004-10-07 04:16:33 +000049#include <algorithm>
50using namespace llvm;
51
Chandler Carruth964daaa2014-04-22 02:55:47 +000052#define DEBUG_TYPE "globalopt"
53
Chris Lattner1631bcb2006-12-19 22:09:18 +000054STATISTIC(NumMarked , "Number of globals marked constant");
Rafael Espindolafc355bc2011-01-19 16:32:21 +000055STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
Chris Lattner1631bcb2006-12-19 22:09:18 +000056STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
57STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
58STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
59STATISTIC(NumDeleted , "Number of globals deleted");
Chris Lattner1631bcb2006-12-19 22:09:18 +000060STATISTIC(NumGlobUses , "Number of global uses devirtualized");
Alexey Samsonova1944e62013-10-07 19:03:24 +000061STATISTIC(NumLocalized , "Number of globals localized");
Chris Lattner1631bcb2006-12-19 22:09:18 +000062STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
63STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
64STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands573b3f82008-02-16 20:56:04 +000065STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sandsb3f27882009-02-15 09:56:08 +000066STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
67STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Anders Carlssonee6bc702011-03-20 17:59:11 +000068STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed");
Chris Lattner25db5802004-10-07 04:16:33 +000069
James Molloyea31ad32015-11-13 11:05:07 +000070/// Is this global variable possibly used by a leak checker as a root? If so,
71/// we might not really want to eliminate the stores to it.
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +000072static bool isLeakCheckerRoot(GlobalVariable *GV) {
73 // A global variable is a root if it is a pointer, or could plausibly contain
74 // a pointer. There are two challenges; one is that we could have a struct
75 // the has an inner member which is a pointer. We recurse through the type to
76 // detect these (up to a point). The other is that we may actually be a union
77 // of a pointer and another type, and so our LLVM type is an integer which
78 // gets converted into a pointer, or our type is an [i8 x #] with a pointer
79 // potentially contained here.
80
81 if (GV->hasPrivateLinkage())
82 return false;
83
84 SmallVector<Type *, 4> Types;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +000085 Types.push_back(GV->getValueType());
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +000086
87 unsigned Limit = 20;
88 do {
89 Type *Ty = Types.pop_back_val();
90 switch (Ty->getTypeID()) {
91 default: break;
92 case Type::PointerTyID: return true;
93 case Type::ArrayTyID:
94 case Type::VectorTyID: {
95 SequentialType *STy = cast<SequentialType>(Ty);
96 Types.push_back(STy->getElementType());
97 break;
98 }
99 case Type::StructTyID: {
100 StructType *STy = cast<StructType>(Ty);
101 if (STy->isOpaque()) return true;
102 for (StructType::element_iterator I = STy->element_begin(),
103 E = STy->element_end(); I != E; ++I) {
104 Type *InnerTy = *I;
105 if (isa<PointerType>(InnerTy)) return true;
106 if (isa<CompositeType>(InnerTy))
107 Types.push_back(InnerTy);
108 }
109 break;
110 }
111 }
112 if (--Limit == 0) return true;
113 } while (!Types.empty());
114 return false;
115}
116
117/// Given a value that is stored to a global but never read, determine whether
118/// it's safe to remove the store and the chain of computation that feeds the
119/// store.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000120static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000121 do {
122 if (isa<Constant>(V))
123 return true;
124 if (!V->hasOneUse())
125 return false;
Nick Lewycky7d0f1102012-07-25 21:19:40 +0000126 if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
127 isa<GlobalValue>(V))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000128 return false;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000129 if (isAllocationFn(V, TLI))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000130 return true;
131
132 Instruction *I = cast<Instruction>(V);
133 if (I->mayHaveSideEffects())
134 return false;
135 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
136 if (!GEP->hasAllConstantIndices())
137 return false;
138 } else if (I->getNumOperands() != 1) {
139 return false;
140 }
141
142 V = I->getOperand(0);
143 } while (1);
144}
145
James Molloyea31ad32015-11-13 11:05:07 +0000146/// This GV is a pointer root. Loop over all users of the global and clean up
147/// any that obviously don't assign the global a value that isn't dynamically
148/// allocated.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000149static bool CleanupPointerRootUsers(GlobalVariable *GV,
150 const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000151 // A brief explanation of leak checkers. The goal is to find bugs where
152 // pointers are forgotten, causing an accumulating growth in memory
153 // usage over time. The common strategy for leak checkers is to whitelist the
154 // memory pointed to by globals at exit. This is popular because it also
155 // solves another problem where the main thread of a C++ program may shut down
156 // before other threads that are still expecting to use those globals. To
157 // handle that case, we expect the program may create a singleton and never
158 // destroy it.
159
160 bool Changed = false;
161
162 // If Dead[n].first is the only use of a malloc result, we can delete its
163 // chain of computation and the store to the global in Dead[n].second.
164 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
165
166 // Constants can't be pointers to dynamically allocated memory.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000167 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end();
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000168 UI != E;) {
169 User *U = *UI++;
170 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
171 Value *V = SI->getValueOperand();
172 if (isa<Constant>(V)) {
173 Changed = true;
174 SI->eraseFromParent();
175 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
176 if (I->hasOneUse())
177 Dead.push_back(std::make_pair(I, SI));
178 }
179 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
180 if (isa<Constant>(MSI->getValue())) {
181 Changed = true;
182 MSI->eraseFromParent();
183 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
184 if (I->hasOneUse())
185 Dead.push_back(std::make_pair(I, MSI));
186 }
187 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
188 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
189 if (MemSrc && MemSrc->isConstant()) {
190 Changed = true;
191 MTI->eraseFromParent();
192 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
193 if (I->hasOneUse())
194 Dead.push_back(std::make_pair(I, MTI));
195 }
196 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
197 if (CE->use_empty()) {
198 CE->destroyConstant();
199 Changed = true;
200 }
201 } else if (Constant *C = dyn_cast<Constant>(U)) {
Rafael Espindola27797ba2013-10-17 18:06:32 +0000202 if (isSafeToDestroyConstant(C)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000203 C->destroyConstant();
204 // This could have invalidated UI, start over from scratch.
205 Dead.clear();
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000206 CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000207 return true;
208 }
209 }
210 }
211
212 for (int i = 0, e = Dead.size(); i != e; ++i) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000213 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000214 Dead[i].second->eraseFromParent();
215 Instruction *I = Dead[i].first;
216 do {
Michael Gottesman2a654272013-01-11 23:08:52 +0000217 if (isAllocationFn(I, TLI))
218 break;
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000219 Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
220 if (!J)
221 break;
222 I->eraseFromParent();
223 I = J;
Nick Lewycky38be9312012-07-24 21:33:00 +0000224 } while (1);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000225 I->eraseFromParent();
226 }
227 }
228
229 return Changed;
230}
231
James Molloyea31ad32015-11-13 11:05:07 +0000232/// We just marked GV constant. Loop over all users of the global, cleaning up
233/// the obvious ones. This is largely just a quick scan over the use list to
234/// clean up the easy and obvious cruft. This returns true if it made a change.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000235static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
Mehdi Amini46a43552015-03-04 18:43:29 +0000236 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000237 TargetLibraryInfo *TLI) {
Chris Lattnercb9f1522004-10-10 16:43:46 +0000238 bool Changed = false;
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000239 // Note that we need to use a weak value handle for the worklist items. When
240 // we delete a constant array, we may also be holding pointer to one of its
241 // elements (or an element of one of its elements if we're dealing with an
242 // array of arrays) in the worklist.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +0000243 SmallVector<WeakTrackingVH, 8> WorkList(V->user_begin(), V->user_end());
Bill Wendling88d06c32013-04-02 08:16:45 +0000244 while (!WorkList.empty()) {
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000245 Value *UV = WorkList.pop_back_val();
246 if (!UV)
247 continue;
248
249 User *U = cast<User>(UV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000250
Chris Lattner25db5802004-10-07 04:16:33 +0000251 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000252 if (Init) {
253 // Replace the load with the initializer.
254 LI->replaceAllUsesWith(Init);
255 LI->eraseFromParent();
256 Changed = true;
257 }
Chris Lattner25db5802004-10-07 04:16:33 +0000258 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
259 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000260 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000261 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000262 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
263 if (CE->getOpcode() == Instruction::GetElementPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000264 Constant *SubInit = nullptr;
Chris Lattner46d9ff082005-09-26 07:34:35 +0000265 if (Init)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000266 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000267 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI);
Matt Arsenault461c8e02014-01-02 20:01:43 +0000268 } else if ((CE->getOpcode() == Instruction::BitCast &&
269 CE->getType()->isPointerTy()) ||
270 CE->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000271 // Pointer cast, delete any stores and memsets to the global.
Craig Topperf40110f2014-04-25 05:29:35 +0000272 Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI);
Chris Lattner7561ca12005-02-27 18:58:52 +0000273 }
274
275 if (CE->use_empty()) {
276 CE->destroyConstant();
277 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000278 }
279 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000280 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
281 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
282 // and will invalidate our notion of what Init is.
Craig Topperf40110f2014-04-25 05:29:35 +0000283 Constant *SubInit = nullptr;
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000284 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
Mehdi Amini46a43552015-03-04 18:43:29 +0000285 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000286 ConstantFoldInstruction(GEP, DL, TLI));
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000287 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000288 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Benjamin Krameraa9e4a52012-03-28 14:50:09 +0000289
290 // If the initializer is an all-null value and we have an inbounds GEP,
291 // we already know what the result of any load from that GEP is.
292 // TODO: Handle splats.
293 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
Eduard Burtescu19eb0312016-01-19 17:28:00 +0000294 SubInit = Constant::getNullValue(GEP->getResultElementType());
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000295 }
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000296 Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000297
Chris Lattnercb9f1522004-10-10 16:43:46 +0000298 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000299 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000300 Changed = true;
301 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000302 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
303 if (MI->getRawDest() == V) {
304 MI->eraseFromParent();
305 Changed = true;
306 }
307
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000308 } else if (Constant *C = dyn_cast<Constant>(U)) {
309 // If we have a chain of dead constantexprs or other things dangling from
310 // us, and if they are all dead, nuke them without remorse.
Rafael Espindola27797ba2013-10-17 18:06:32 +0000311 if (isSafeToDestroyConstant(C)) {
Devang Pateld926aaa2009-03-06 01:37:41 +0000312 C->destroyConstant();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000313 CleanupConstantGlobalUsers(V, Init, DL, TLI);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000314 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000315 }
Chris Lattner25db5802004-10-07 04:16:33 +0000316 }
317 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000318 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000319}
320
James Molloyea31ad32015-11-13 11:05:07 +0000321/// Return true if the specified instruction is a safe user of a derived
322/// expression from a global that we want to SROA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000323static bool isSafeSROAElementUse(Value *V) {
324 // We might have a dead and dangling constant hanging off of here.
325 if (Constant *C = dyn_cast<Constant>(V))
Rafael Espindola27797ba2013-10-17 18:06:32 +0000326 return isSafeToDestroyConstant(C);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000327
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000328 Instruction *I = dyn_cast<Instruction>(V);
329 if (!I) return false;
330
331 // Loads are ok.
332 if (isa<LoadInst>(I)) return true;
333
334 // Stores *to* the pointer are ok.
335 if (StoreInst *SI = dyn_cast<StoreInst>(I))
336 return SI->getOperand(0) != V;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000337
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000338 // Otherwise, it must be a GEP.
339 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
Craig Topperf40110f2014-04-25 05:29:35 +0000340 if (!GEPI) return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000341
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000342 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
343 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
344 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000345
Chandler Carruthcdf47882014-03-09 03:16:01 +0000346 for (User *U : GEPI->users())
347 if (!isSafeSROAElementUse(U))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000348 return false;
Chris Lattnerab053722008-01-14 01:31:05 +0000349 return true;
350}
351
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000352
James Molloyea31ad32015-11-13 11:05:07 +0000353/// U is a direct user of the specified global value. Look at it and its uses
354/// and decide whether it is safe to SROA this global.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000355static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
356 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000357 if (!isa<GetElementPtrInst>(U) &&
358 (!isa<ConstantExpr>(U) ||
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000359 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
360 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000361
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000362 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
363 // don't like < 3 operand CE's, and we don't like non-constant integer
364 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
365 // value of C.
366 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
367 !cast<Constant>(U->getOperand(1))->isNullValue() ||
368 !isa<ConstantInt>(U->getOperand(2)))
369 return false;
370
371 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
372 ++GEPI; // Skip over the pointer index.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000373
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000374 // If this is a use of an array allocation, do a bit more checking for sanity.
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000375 if (GEPI.isSequential()) {
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000376 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000377
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000378 // Check to make sure that index falls within the array. If not,
379 // something funny is going on, so we won't do the optimization.
380 //
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000381 if (GEPI.isBoundedSequential() &&
382 Idx->getZExtValue() >= GEPI.getSequentialNumElements())
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000383 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000384
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000385 // We cannot scalar repl this level of the array unless any array
386 // sub-indices are in-range constants. In particular, consider:
387 // A[0][i]. We cannot know that the user isn't doing invalid things like
388 // allowing i to index an out-of-range subscript that accesses A[1].
389 //
390 // Scalar replacing *just* the outer index of the array is probably not
391 // going to be a win anyway, so just give up.
392 for (++GEPI; // Skip array index.
Dan Gohman82ac81b2009-08-18 14:58:19 +0000393 GEPI != E;
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000394 ++GEPI) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000395 if (GEPI.isStruct())
Dan Gohman82ac81b2009-08-18 14:58:19 +0000396 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000397
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000398 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000399 if (!IdxVal ||
400 (GEPI.isBoundedSequential() &&
401 IdxVal->getZExtValue() >= GEPI.getSequentialNumElements()))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000402 return false;
403 }
404 }
405
Davide Italianoc163fac2017-08-09 09:23:29 +0000406 return llvm::all_of(U->users(),
407 [](User *UU) { return isSafeSROAElementUse(UU); });
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000408}
409
James Molloyea31ad32015-11-13 11:05:07 +0000410/// Look at all uses of the global and decide whether it is safe for us to
411/// perform this transformation.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000412static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000413 for (User *U : GV->users())
414 if (!IsUserOfGlobalSafeForSRA(U, GV))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000415 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000416
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000417 return true;
418}
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000419
Victor Leschuk56b03d02017-08-04 04:51:15 +0000420/// Copy over the debug info for a variable to its SRA replacements.
421static void transferSRADebugInfo(GlobalVariable *GV, GlobalVariable *NGV,
422 uint64_t FragmentOffsetInBits,
Adrian Prantl504b82d2017-08-31 00:06:18 +0000423 uint64_t FragmentSizeInBits,
424 unsigned NumElements) {
Victor Leschuk56b03d02017-08-04 04:51:15 +0000425 SmallVector<DIGlobalVariableExpression *, 1> GVs;
426 GV->getDebugInfo(GVs);
427 for (auto *GVE : GVs) {
428 DIVariable *Var = GVE->getVariable();
429 DIExpression *Expr = GVE->getExpression();
Adrian Prantl504b82d2017-08-31 00:06:18 +0000430 if (NumElements > 1)
431 Expr = DIExpression::createFragmentExpression(Expr, FragmentOffsetInBits,
432 FragmentSizeInBits);
433 auto *NGVE = DIGlobalVariableExpression::get(GVE->getContext(), Var, Expr);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000434 NGV->addDebugInfo(NGVE);
435 }
436}
437
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000438
James Molloyea31ad32015-11-13 11:05:07 +0000439/// Perform scalar replacement of aggregates on the specified global variable.
440/// This opens the door for other optimizations by exposing the behavior of the
441/// program in a more fine-grained way. We have determined that this
442/// transformation is safe already. We return the first global variable we
Chris Lattnerabab0712004-10-08 17:32:09 +0000443/// insert so that the caller can reprocess it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000444static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
Chris Lattnerab053722008-01-14 01:31:05 +0000445 // Make sure this global only has simple uses that we can SRA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000446 if (!GlobalUsersSafeToSRA(GV))
Craig Topperf40110f2014-04-25 05:29:35 +0000447 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000448
James Molloyeb040cc2016-04-25 10:48:29 +0000449 assert(GV->hasLocalLinkage());
Chris Lattnerabab0712004-10-08 17:32:09 +0000450 Constant *Init = GV->getInitializer();
Chris Lattner229907c2011-07-18 04:54:35 +0000451 Type *Ty = Init->getType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000452
Chris Lattnerabab0712004-10-08 17:32:09 +0000453 std::vector<GlobalVariable*> NewGlobals;
454 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
455
Chris Lattner67ca6f632008-04-26 07:40:11 +0000456 // Get the alignment of the global, either explicit or target-specific.
457 unsigned StartAlignment = GV->getAlignment();
458 if (StartAlignment == 0)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000459 StartAlignment = DL.getABITypeAlignment(GV->getType());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000460
Chris Lattner229907c2011-07-18 04:54:35 +0000461 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Victor Leschuk56b03d02017-08-04 04:51:15 +0000462 uint64_t FragmentOffset = 0;
Adrian Prantl504b82d2017-08-31 00:06:18 +0000463 unsigned NumElements = STy->getNumElements();
464 NewGlobals.reserve(NumElements);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000465 const StructLayout &Layout = *DL.getStructLayout(STy);
Adrian Prantl504b82d2017-08-31 00:06:18 +0000466 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000467 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000468 assert(In && "Couldn't get element of initializer?");
Chris Lattner46b5c642009-11-06 04:27:31 +0000469 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000470 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000471 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000472 GV->getThreadLocalMode(),
Owen Anderson5948fdf2009-07-08 01:26:06 +0000473 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000474 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000475 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000476 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000477 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000478
Chris Lattner67ca6f632008-04-26 07:40:11 +0000479 // Calculate the known alignment of the field. If the original aggregate
480 // had 256 byte alignment for example, something might depend on that:
481 // propagate info to each field.
482 uint64_t FieldOffset = Layout.getElementOffset(i);
483 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000484 if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i)))
Chris Lattner67ca6f632008-04-26 07:40:11 +0000485 NGV->setAlignment(NewAlign);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000486
487 // Copy over the debug info for the variable.
488 FragmentOffset = alignTo(FragmentOffset, NewAlign);
489 uint64_t Size = DL.getTypeSizeInBits(NGV->getValueType());
Adrian Prantl504b82d2017-08-31 00:06:18 +0000490 transferSRADebugInfo(GV, NGV, FragmentOffset, Size, NumElements);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000491 FragmentOffset += Size;
Chris Lattnerabab0712004-10-08 17:32:09 +0000492 }
Chris Lattner229907c2011-07-18 04:54:35 +0000493 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
Peter Collingbournebc070522016-12-02 03:20:58 +0000494 unsigned NumElements = STy->getNumElements();
Chris Lattner25169ca2005-02-23 16:53:04 +0000495 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Craig Topperf40110f2014-04-25 05:29:35 +0000496 return nullptr; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000497 NewGlobals.reserve(NumElements);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000498 auto ElTy = STy->getElementType();
499 uint64_t EltSize = DL.getTypeAllocSize(ElTy);
500 unsigned EltAlign = DL.getABITypeAlignment(ElTy);
501 uint64_t FragmentSizeInBits = DL.getTypeSizeInBits(ElTy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000502 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000503 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000504 assert(In && "Couldn't get element of initializer?");
505
Chris Lattner46b5c642009-11-06 04:27:31 +0000506 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000507 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000508 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000509 GV->getThreadLocalMode(),
Owen Andersonb17f3292009-07-08 19:03:57 +0000510 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000511 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000512 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000513 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000514 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000515
Chris Lattner67ca6f632008-04-26 07:40:11 +0000516 // Calculate the known alignment of the field. If the original aggregate
517 // had 256 byte alignment for example, something might depend on that:
518 // propagate info to each field.
519 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
520 if (NewAlign > EltAlign)
521 NGV->setAlignment(NewAlign);
Adrian Prantl504b82d2017-08-31 00:06:18 +0000522 transferSRADebugInfo(GV, NGV, FragmentSizeInBits * i, FragmentSizeInBits,
523 NumElements);
Chris Lattnerabab0712004-10-08 17:32:09 +0000524 }
525 }
526
527 if (NewGlobals.empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000528 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000529
James Molloyef607a22015-10-28 14:30:53 +0000530 DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n");
Chris Lattner004e2502004-10-11 05:54:41 +0000531
Chris Lattner46b5c642009-11-06 04:27:31 +0000532 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattnerabab0712004-10-08 17:32:09 +0000533
534 // Loop over all of the uses of the global, replacing the constantexpr geps,
535 // with smaller constantexpr geps or direct references.
536 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000537 User *GEP = GV->user_back();
Chris Lattner004e2502004-10-11 05:54:41 +0000538 assert(((isa<ConstantExpr>(GEP) &&
539 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
540 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000541
Chris Lattnerabab0712004-10-08 17:32:09 +0000542 // Ignore the 1th operand, which has to be zero or else the program is quite
543 // broken (undefined). Get the 2nd operand, which is the structure or array
544 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000545 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000546 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
547
Chris Lattner004e2502004-10-11 05:54:41 +0000548 Value *NewPtr = NewGlobals[Val];
David Blaikied9d900c2015-05-07 17:28:58 +0000549 Type *NewTy = NewGlobals[Val]->getValueType();
Chris Lattnerabab0712004-10-08 17:32:09 +0000550
551 // Form a shorter GEP if needed.
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000552 if (GEP->getNumOperands() > 3) {
Chris Lattner004e2502004-10-11 05:54:41 +0000553 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000554 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000555 Idxs.push_back(NullInt);
556 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
557 Idxs.push_back(CE->getOperand(i));
David Blaikie4a2e73b2015-04-02 18:55:32 +0000558 NewPtr =
559 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
Chris Lattner004e2502004-10-11 05:54:41 +0000560 } else {
561 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000562 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000563 Idxs.push_back(NullInt);
564 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
565 Idxs.push_back(GEPI->getOperand(i));
David Blaikie741c8f82015-03-14 01:53:18 +0000566 NewPtr = GetElementPtrInst::Create(
David Blaikied9d900c2015-05-07 17:28:58 +0000567 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
Chris Lattner004e2502004-10-11 05:54:41 +0000568 }
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000569 }
Chris Lattner004e2502004-10-11 05:54:41 +0000570 GEP->replaceAllUsesWith(NewPtr);
571
572 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000573 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000574 else
575 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000576 }
577
Chris Lattner73ad73e2004-10-08 20:25:55 +0000578 // Delete the old global, now that it is dead.
579 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000580 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000581
582 // Loop over the new globals array deleting any globals that are obviously
583 // dead. This can arise due to scalarization of a structure or an array that
584 // has elements that are dead.
585 unsigned FirstGlobal = 0;
586 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
587 if (NewGlobals[i]->use_empty()) {
588 Globals.erase(NewGlobals[i]);
589 if (FirstGlobal == i) ++FirstGlobal;
590 }
591
Craig Topperf40110f2014-04-25 05:29:35 +0000592 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
Chris Lattnerabab0712004-10-08 17:32:09 +0000593}
594
James Molloyea31ad32015-11-13 11:05:07 +0000595/// Return true if all users of the specified value will trap if the value is
596/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
597/// reprocessing them.
Gabor Greif67972872010-04-06 19:24:18 +0000598static bool AllUsesOfValueWillTrapIfNull(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +0000599 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000600 for (const User *U : V->users())
Gabor Greif08355d62010-04-06 19:14:05 +0000601 if (isa<LoadInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000602 // Will trap.
Gabor Greif67972872010-04-06 19:24:18 +0000603 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000604 if (SI->getOperand(0) == V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000605 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000606 return false; // Storing the value.
607 }
Gabor Greif67972872010-04-06 19:24:18 +0000608 } else if (const CallInst *CI = dyn_cast<CallInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000609 if (CI->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000610 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000611 return false; // Not calling the ptr
612 }
Gabor Greif67972872010-04-06 19:24:18 +0000613 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000614 if (II->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000615 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000616 return false; // Not calling the ptr
617 }
Gabor Greif67972872010-04-06 19:24:18 +0000618 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000619 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000620 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000621 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000622 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000623 // If we've already seen this phi node, ignore it, it has already been
624 // checked.
David Blaikie70573dc2014-11-19 07:49:26 +0000625 if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
Jakob Stoklund Olesene27dc722010-01-29 23:54:14 +0000626 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000627 } else if (isa<ICmpInst>(U) &&
Chandler Carruthcdf47882014-03-09 03:16:01 +0000628 isa<ConstantPointerNull>(U->getOperand(1))) {
Nick Lewycky614fb942010-02-25 06:39:10 +0000629 // Ignore icmp X, null
Chris Lattner09a52722004-10-09 21:48:45 +0000630 } else {
Gabor Greif08355d62010-04-06 19:14:05 +0000631 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000632 return false;
633 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000634
Chris Lattner09a52722004-10-09 21:48:45 +0000635 return true;
636}
637
James Molloyea31ad32015-11-13 11:05:07 +0000638/// Return true if all uses of any loads from GV will trap if the loaded value
639/// is null. Note that this also permits comparisons of the loaded value
640/// against null, as a special case.
Gabor Greif67972872010-04-06 19:24:18 +0000641static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000642 for (const User *U : GV->users())
Gabor Greif67972872010-04-06 19:24:18 +0000643 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
644 SmallPtrSet<const PHINode*, 8> PHIs;
Chris Lattner2d2892e2007-09-13 16:30:19 +0000645 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner09a52722004-10-09 21:48:45 +0000646 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000647 } else if (isa<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000648 // Ignore stores to the global.
649 } else {
650 // We don't know or understand this user, bail out.
Gabor Greif08355d62010-04-06 19:14:05 +0000651 //cerr << "UNKNOWN USER OF GLOBAL!: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000652 return false;
653 }
Chris Lattner09a52722004-10-09 21:48:45 +0000654 return true;
655}
656
Chris Lattner46b5c642009-11-06 04:27:31 +0000657static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000658 bool Changed = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000659 for (auto UI = V->user_begin(), E = V->user_end(); UI != E; ) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000660 Instruction *I = cast<Instruction>(*UI++);
661 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
662 LI->setOperand(0, NewV);
663 Changed = true;
664 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
665 if (SI->getOperand(1) == V) {
666 SI->setOperand(1, NewV);
667 Changed = true;
668 }
669 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
Gabor Greif04397892010-04-06 18:45:08 +0000670 CallSite CS(I);
671 if (CS.getCalledValue() == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000672 // Calling through the pointer! Turn into a direct call, but be careful
673 // that the pointer is not also being passed as an argument.
Gabor Greif04397892010-04-06 18:45:08 +0000674 CS.setCalledFunction(NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000675 Changed = true;
676 bool PassedAsArg = false;
Gabor Greif04397892010-04-06 18:45:08 +0000677 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
678 if (CS.getArgument(i) == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000679 PassedAsArg = true;
Gabor Greif04397892010-04-06 18:45:08 +0000680 CS.setArgument(i, NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000681 }
682
683 if (PassedAsArg) {
684 // Being passed as an argument also. Be careful to not invalidate UI!
Chandler Carruthcdf47882014-03-09 03:16:01 +0000685 UI = V->user_begin();
Chris Lattnere42eb312004-10-10 23:14:11 +0000686 }
687 }
688 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
689 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Anderson487375e2009-07-29 18:55:55 +0000690 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner46b5c642009-11-06 04:27:31 +0000691 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000692 if (CI->use_empty()) {
693 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000694 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000695 }
696 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
697 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000698 SmallVector<Constant*, 8> Idxs;
699 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif3a9fba52008-05-29 01:59:18 +0000700 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
701 i != e; ++i)
702 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000703 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000704 else
705 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000706 if (Idxs.size() == GEPI->getNumOperands()-1)
David Blaikie4a2e73b2015-04-02 18:55:32 +0000707 Changed |= OptimizeAwayTrappingUsesOfValue(
708 GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs));
Chris Lattnere42eb312004-10-10 23:14:11 +0000709 if (GEPI->use_empty()) {
710 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000711 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000712 }
713 }
714 }
715
716 return Changed;
717}
718
719
James Molloyea31ad32015-11-13 11:05:07 +0000720/// The specified global has only one non-null value stored into it. If there
721/// are uses of the loaded value that would trap if the loaded value is
722/// dynamically null, then we know that they cannot be reachable with a null
723/// optimize away the load.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000724static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
Mehdi Amini46a43552015-03-04 18:43:29 +0000725 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000726 TargetLibraryInfo *TLI) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000727 bool Changed = false;
728
Chris Lattner2538eb62009-01-14 00:12:58 +0000729 // Keep track of whether we are able to remove all the uses of the global
730 // other than the store that defines it.
731 bool AllNonStoreUsesGone = true;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000732
Chris Lattnere42eb312004-10-10 23:14:11 +0000733 // Replace all uses of loads with uses of uses of the stored value.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000734 for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){
Chris Lattner2538eb62009-01-14 00:12:58 +0000735 User *GlobalUser = *GUI++;
736 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner46b5c642009-11-06 04:27:31 +0000737 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner2538eb62009-01-14 00:12:58 +0000738 // If we were able to delete all uses of the loads
739 if (LI->use_empty()) {
740 LI->eraseFromParent();
741 Changed = true;
742 } else {
743 AllNonStoreUsesGone = false;
744 }
745 } else if (isa<StoreInst>(GlobalUser)) {
746 // Ignore the store that stores "LV" to the global.
747 assert(GlobalUser->getOperand(1) == GV &&
748 "Must be storing *to* the global");
Chris Lattnere42eb312004-10-10 23:14:11 +0000749 } else {
Chris Lattner2538eb62009-01-14 00:12:58 +0000750 AllNonStoreUsesGone = false;
751
752 // If we get here we could have other crazy uses that are transitively
753 // loaded.
754 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
Benjamin Kramered843602012-09-28 10:01:27 +0000755 isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
756 isa<BitCastInst>(GlobalUser) ||
757 isa<GetElementPtrInst>(GlobalUser)) &&
Chris Lattner1a1acc22011-05-22 07:15:13 +0000758 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000759 }
Chris Lattner2538eb62009-01-14 00:12:58 +0000760 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000761
762 if (Changed) {
James Molloyef607a22015-10-28 14:30:53 +0000763 DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV << "\n");
Chris Lattnere42eb312004-10-10 23:14:11 +0000764 ++NumGlobUses;
765 }
766
Chris Lattnere42eb312004-10-10 23:14:11 +0000767 // If we nuked all of the loads, then none of the stores are needed either,
768 // nor is the global.
Chris Lattner2538eb62009-01-14 00:12:58 +0000769 if (AllNonStoreUsesGone) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000770 if (isLeakCheckerRoot(GV)) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000771 Changed |= CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000772 } else {
773 Changed = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000774 CleanupConstantGlobalUsers(GV, nullptr, DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000775 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000776 if (GV->use_empty()) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000777 DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
778 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000779 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000780 ++NumDeleted;
781 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000782 }
783 return Changed;
784}
785
James Molloyea31ad32015-11-13 11:05:07 +0000786/// Walk the use list of V, constant folding all of the instructions that are
787/// foldable.
Mehdi Amini46a43552015-03-04 18:43:29 +0000788static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000789 TargetLibraryInfo *TLI) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000790 for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
Chris Lattner004e2502004-10-11 05:54:41 +0000791 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000792 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
Chris Lattner004e2502004-10-11 05:54:41 +0000793 I->replaceAllUsesWith(NewC);
794
Chris Lattnerd6a44922005-02-01 01:23:31 +0000795 // Advance UI to the next non-I use to avoid invalidating it!
796 // Instructions could multiply use V.
797 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000798 ++UI;
David Majnemer522a9112016-07-22 04:54:44 +0000799 if (isInstructionTriviallyDead(I, TLI))
800 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000801 }
802}
803
James Molloyea31ad32015-11-13 11:05:07 +0000804/// This function takes the specified global variable, and transforms the
805/// program as if it always contained the result of the specified malloc.
806/// Because it is always the result of the specified malloc, there is no reason
807/// to actually DO the malloc. Instead, turn the malloc into a global, and any
808/// loads of GV as uses of the new global.
Mehdi Amini46a43552015-03-04 18:43:29 +0000809static GlobalVariable *
810OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
811 ConstantInt *NElements, const DataLayout &DL,
812 TargetLibraryInfo *TLI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000813 DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI << '\n');
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000814
Chris Lattner229907c2011-07-18 04:54:35 +0000815 Type *GlobalType;
Chris Lattner7939f792010-02-25 22:33:52 +0000816 if (NElements->getZExtValue() == 1)
817 GlobalType = AllocTy;
818 else
819 // If we have an array allocation, the global variable is of an array.
820 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez5d034492009-09-18 22:35:49 +0000821
822 // Create the new global variable. The contents of the malloc'd memory is
823 // undefined, so initialize with an undef value.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000824 GlobalVariable *NewGV = new GlobalVariable(
825 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage,
826 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr,
827 GV->getThreadLocalMode());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000828
Chris Lattner7939f792010-02-25 22:33:52 +0000829 // If there are bitcast users of the malloc (which is typical, usually we have
830 // a malloc + bitcast) then replace them with uses of the new global. Update
831 // other users to use the global as well.
Craig Topperf40110f2014-04-25 05:29:35 +0000832 BitCastInst *TheBC = nullptr;
Chris Lattner7939f792010-02-25 22:33:52 +0000833 while (!CI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000834 Instruction *User = cast<Instruction>(CI->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000835 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
836 if (BCI->getType() == NewGV->getType()) {
837 BCI->replaceAllUsesWith(NewGV);
838 BCI->eraseFromParent();
839 } else {
840 BCI->setOperand(0, NewGV);
841 }
842 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000843 if (!TheBC)
Chris Lattner7939f792010-02-25 22:33:52 +0000844 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
845 User->replaceUsesOfWith(CI, TheBC);
846 }
847 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000848
Victor Hernandez5d034492009-09-18 22:35:49 +0000849 Constant *RepValue = NewGV;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000850 if (NewGV->getType() != GV->getValueType())
851 RepValue = ConstantExpr::getBitCast(RepValue, GV->getValueType());
Victor Hernandez5d034492009-09-18 22:35:49 +0000852
853 // If there is a comparison against null, we will insert a global bool to
854 // keep track of whether the global was initialized yet or not.
855 GlobalVariable *InitBool =
Chris Lattner46b5c642009-11-06 04:27:31 +0000856 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez5d034492009-09-18 22:35:49 +0000857 GlobalValue::InternalLinkage,
Chris Lattner46b5c642009-11-06 04:27:31 +0000858 ConstantInt::getFalse(GV->getContext()),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000859 GV->getName()+".init", GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +0000860 bool InitBoolUsed = false;
861
862 // Loop over all uses of GV, processing them in turn.
Chris Lattner7939f792010-02-25 22:33:52 +0000863 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000864 if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) {
Victor Hernandez5d034492009-09-18 22:35:49 +0000865 // The global is initialized when the store to it occurs.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000866 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000867 SI->getOrdering(), SI->getSyncScopeID(), SI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000868 SI->eraseFromParent();
Chris Lattner7939f792010-02-25 22:33:52 +0000869 continue;
Victor Hernandez5d034492009-09-18 22:35:49 +0000870 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000871
Chandler Carruthcdf47882014-03-09 03:16:01 +0000872 LoadInst *LI = cast<LoadInst>(GV->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000873 while (!LI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000874 Use &LoadUse = *LI->use_begin();
875 ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser());
876 if (!ICI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000877 LoadUse = RepValue;
878 continue;
879 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000880
Chris Lattner7939f792010-02-25 22:33:52 +0000881 // Replace the cmp X, 0 with a use of the bool value.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000882 // Sink the load to where the compare was, if atomic rules allow us to.
883 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000884 LI->getOrdering(), LI->getSyncScopeID(),
Nick Lewycky52da72b2012-02-05 19:56:38 +0000885 LI->isUnordered() ? (Instruction*)ICI : LI);
Chris Lattner7939f792010-02-25 22:33:52 +0000886 InitBoolUsed = true;
887 switch (ICI->getPredicate()) {
888 default: llvm_unreachable("Unknown ICmp Predicate!");
889 case ICmpInst::ICMP_ULT:
890 case ICmpInst::ICMP_SLT: // X < null -> always false
891 LV = ConstantInt::getFalse(GV->getContext());
892 break;
893 case ICmpInst::ICMP_ULE:
894 case ICmpInst::ICMP_SLE:
895 case ICmpInst::ICMP_EQ:
896 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
897 break;
898 case ICmpInst::ICMP_NE:
899 case ICmpInst::ICMP_UGE:
900 case ICmpInst::ICMP_SGE:
901 case ICmpInst::ICMP_UGT:
902 case ICmpInst::ICMP_SGT:
903 break; // no change.
904 }
905 ICI->replaceAllUsesWith(LV);
906 ICI->eraseFromParent();
907 }
908 LI->eraseFromParent();
909 }
Victor Hernandez5d034492009-09-18 22:35:49 +0000910
911 // If the initialization boolean was used, insert it, otherwise delete it.
912 if (!InitBoolUsed) {
913 while (!InitBool->use_empty()) // Delete initializations
Chandler Carruthcdf47882014-03-09 03:16:01 +0000914 cast<StoreInst>(InitBool->user_back())->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000915 delete InitBool;
916 } else
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000917 GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
Victor Hernandez5d034492009-09-18 22:35:49 +0000918
Chris Lattner7939f792010-02-25 22:33:52 +0000919 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez5d034492009-09-18 22:35:49 +0000920 GV->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000921 CI->eraseFromParent();
922
923 // To further other optimizations, loop over all users of NewGV and try to
924 // constant prop them. This will promote GEP instructions with constant
925 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000926 ConstantPropUsersOf(NewGV, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000927 if (RepValue != NewGV)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000928 ConstantPropUsersOf(RepValue, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000929
930 return NewGV;
931}
932
James Molloyea31ad32015-11-13 11:05:07 +0000933/// Scan the use-list of V checking to make sure that there are no complex uses
934/// of V. We permit simple things like dereferencing the pointer, but not
935/// storing through the address, unless it is to the specified global.
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000936static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
937 const GlobalVariable *GV,
Craig Topper71b7b682014-08-21 05:55:13 +0000938 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000939 for (const User *U : V->users()) {
940 const Instruction *Inst = cast<Instruction>(U);
Gabor Greif08355d62010-04-06 19:14:05 +0000941
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000942 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
943 continue; // Fine, ignore.
944 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000945
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000946 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000947 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
948 return false; // Storing the pointer itself... bad.
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000949 continue; // Otherwise, storing through it, or storing into GV... fine.
950 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000951
Chris Lattnerb9801ff2010-04-10 18:19:22 +0000952 // Must index into the array and into the struct.
953 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000954 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000955 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000956 continue;
957 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000958
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000959 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattner6eed0e72007-09-13 16:37:20 +0000960 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
961 // cycles.
David Blaikie70573dc2014-11-19 07:49:26 +0000962 if (PHIs.insert(PN).second)
Chris Lattner5d13fb532007-09-14 03:41:21 +0000963 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
964 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000965 continue;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000966 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000967
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000968 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000969 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
970 return false;
971 continue;
972 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000973
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000974 return false;
975 }
Chris Lattnerc0677c02004-12-02 07:11:07 +0000976 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000977}
978
James Molloyea31ad32015-11-13 11:05:07 +0000979/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
980/// allocation into loads from the global and uses of the resultant pointer.
981/// Further, delete the store into GV. This assumes that these value pass the
Chris Lattner24d3d422006-09-30 23:32:09 +0000982/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000983static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
Chris Lattner24d3d422006-09-30 23:32:09 +0000984 GlobalVariable *GV) {
985 while (!Alloc->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000986 Instruction *U = cast<Instruction>(*Alloc->user_begin());
Chris Lattnerba98f892007-09-13 18:00:31 +0000987 Instruction *InsertPt = U;
Chris Lattner24d3d422006-09-30 23:32:09 +0000988 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
989 // If this is the store of the allocation into the global, remove it.
990 if (SI->getOperand(1) == GV) {
991 SI->eraseFromParent();
992 continue;
993 }
Chris Lattnerba98f892007-09-13 18:00:31 +0000994 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
995 // Insert the load in the corresponding predecessor, not right before the
996 // PHI.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000997 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
Chris Lattner49e3bdc2008-12-15 21:44:34 +0000998 } else if (isa<BitCastInst>(U)) {
999 // Must be bitcast between the malloc and store to initialize the global.
1000 ReplaceUsesOfMallocWithGlobal(U, GV);
1001 U->eraseFromParent();
1002 continue;
1003 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
1004 // If this is a "GEP bitcast" and the user is a store to the global, then
1005 // just process it as a bitcast.
1006 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +00001007 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back()))
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001008 if (SI->getOperand(1) == GV) {
1009 // Must be bitcast GEP between the malloc and store to initialize
1010 // the global.
1011 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1012 GEPI->eraseFromParent();
1013 continue;
1014 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001015 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001016
Chris Lattner24d3d422006-09-30 23:32:09 +00001017 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnerba98f892007-09-13 18:00:31 +00001018 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner24d3d422006-09-30 23:32:09 +00001019 U->replaceUsesOfWith(Alloc, NL);
1020 }
1021}
1022
James Molloyea31ad32015-11-13 11:05:07 +00001023/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
1024/// perform heap SRA on. This permits GEP's that index through the array and
1025/// struct field, icmps of null, and PHIs.
Gabor Greif5d5db532010-04-01 08:21:08 +00001026static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +00001027 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1028 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
Chris Lattner56b55382008-12-16 21:24:51 +00001029 // We permit two users of the load: setcc comparing against the null
1030 // pointer, and a getelementptr of a specific form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001031 for (const User *U : V->users()) {
1032 const Instruction *UI = cast<Instruction>(U);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001033
Chris Lattner56b55382008-12-16 21:24:51 +00001034 // Comparison against null is ok.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001035 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001036 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1037 return false;
1038 continue;
1039 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001040
Chris Lattner56b55382008-12-16 21:24:51 +00001041 // getelementptr is also ok, but only a simple form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001042 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001043 // Must index into the array and into the struct.
1044 if (GEPI->getNumOperands() < 3)
1045 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001046
Chris Lattner56b55382008-12-16 21:24:51 +00001047 // Otherwise the GEP is ok.
1048 continue;
1049 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001050
Chandler Carruthcdf47882014-03-09 03:16:01 +00001051 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001052 if (!LoadUsingPHIsPerLoad.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001053 // This means some phi nodes are dependent on each other.
1054 // Avoid infinite looping!
1055 return false;
David Blaikie70573dc2014-11-19 07:49:26 +00001056 if (!LoadUsingPHIs.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001057 // If we have already analyzed this PHI, then it is safe.
Chris Lattner56b55382008-12-16 21:24:51 +00001058 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001059
Chris Lattner222ef4c2008-12-17 05:28:49 +00001060 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng83689442009-06-02 00:56:07 +00001061 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1062 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001063 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001064
Chris Lattner56b55382008-12-16 21:24:51 +00001065 continue;
Chris Lattner24d3d422006-09-30 23:32:09 +00001066 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001067
Chris Lattner56b55382008-12-16 21:24:51 +00001068 // Otherwise we don't know what this is, not ok.
1069 return false;
1070 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001071
Chris Lattner56b55382008-12-16 21:24:51 +00001072 return true;
1073}
1074
1075
James Molloyea31ad32015-11-13 11:05:07 +00001076/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1077/// return true.
Gabor Greif5d5db532010-04-01 08:21:08 +00001078static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez5d034492009-09-18 22:35:49 +00001079 Instruction *StoredVal) {
Gabor Greif5d5db532010-04-01 08:21:08 +00001080 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1081 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001082 for (const User *U : GV->users())
1083 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
Evan Cheng83689442009-06-02 00:56:07 +00001084 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1085 LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001086 return false;
Evan Cheng83689442009-06-02 00:56:07 +00001087 LoadUsingPHIsPerLoad.clear();
1088 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001089
Chris Lattner222ef4c2008-12-17 05:28:49 +00001090 // If we reach here, we know that all uses of the loads and transitive uses
1091 // (through PHI nodes) are simple enough to transform. However, we don't know
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001092 // that all inputs the to the PHI nodes are in the same equivalence sets.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001093 // Check to verify that all operands of the PHIs are either PHIS that can be
1094 // transformed, loads from GV, or MI itself.
Craig Topper46276792014-08-24 23:23:06 +00001095 for (const PHINode *PN : LoadUsingPHIs) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001096 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1097 Value *InVal = PN->getIncomingValue(op);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001098
Chris Lattner222ef4c2008-12-17 05:28:49 +00001099 // PHI of the stored value itself is ok.
Victor Hernandez5d034492009-09-18 22:35:49 +00001100 if (InVal == StoredVal) continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001101
Gabor Greif5d5db532010-04-01 08:21:08 +00001102 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001103 // One of the PHIs in our set is (optimistically) ok.
1104 if (LoadUsingPHIs.count(InPN))
1105 continue;
1106 return false;
1107 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001108
Chris Lattner222ef4c2008-12-17 05:28:49 +00001109 // Load from GV is ok.
Gabor Greif5d5db532010-04-01 08:21:08 +00001110 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattner222ef4c2008-12-17 05:28:49 +00001111 if (LI->getOperand(0) == GV)
1112 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001113
Chris Lattner222ef4c2008-12-17 05:28:49 +00001114 // UNDEF? NULL?
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001115
Chris Lattner222ef4c2008-12-17 05:28:49 +00001116 // Anything else is rejected.
1117 return false;
1118 }
1119 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001120
Chris Lattner24d3d422006-09-30 23:32:09 +00001121 return true;
1122}
1123
Chris Lattner222ef4c2008-12-17 05:28:49 +00001124static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1125 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001126 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001127 std::vector<Value*> &FieldVals = InsertedScalarizedValues[V];
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001128
Chris Lattner222ef4c2008-12-17 05:28:49 +00001129 if (FieldNo >= FieldVals.size())
1130 FieldVals.resize(FieldNo+1);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001131
Chris Lattner222ef4c2008-12-17 05:28:49 +00001132 // If we already have this value, just reuse the previously scalarized
1133 // version.
1134 if (Value *FieldVal = FieldVals[FieldNo])
1135 return FieldVal;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001136
Chris Lattner222ef4c2008-12-17 05:28:49 +00001137 // Depending on what instruction this is, we have several cases.
1138 Value *Result;
1139 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1140 // This is a scalarized version of the load from the global. Just create
1141 // a new Load of the scalarized global.
1142 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1143 InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001144 PHIsToRewrite),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001145 LI->getName()+".f"+Twine(FieldNo), LI);
David Blaikie741c8f82015-03-14 01:53:18 +00001146 } else {
1147 PHINode *PN = cast<PHINode>(V);
Chris Lattner222ef4c2008-12-17 05:28:49 +00001148 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1149 // field.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001150
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001151 PointerType *PTy = cast<PointerType>(PN->getType());
1152 StructType *ST = cast<StructType>(PTy->getElementType());
1153
1154 unsigned AS = PTy->getAddressSpace();
Jay Foade0938d82011-03-30 11:19:20 +00001155 PHINode *NewPN =
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001156 PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS),
Jay Foad52131342011-03-30 11:28:46 +00001157 PN->getNumIncomingValues(),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001158 PN->getName()+".f"+Twine(FieldNo), PN);
Jay Foade0938d82011-03-30 11:19:20 +00001159 Result = NewPN;
Chris Lattner222ef4c2008-12-17 05:28:49 +00001160 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
Chris Lattner222ef4c2008-12-17 05:28:49 +00001161 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001162
Chris Lattner222ef4c2008-12-17 05:28:49 +00001163 return FieldVals[FieldNo] = Result;
Chris Lattnerba98f892007-09-13 18:00:31 +00001164}
1165
James Molloyea31ad32015-11-13 11:05:07 +00001166/// Given a load instruction and a value derived from the load, rewrite the
1167/// derived value to use the HeapSRoA'd load.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001168static void RewriteHeapSROALoadUser(Instruction *LoadUser,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001169 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001170 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001171 // If this is a comparison against null, handle it.
1172 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1173 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1174 // If we have a setcc of the loaded pointer, we can use a setcc of any
1175 // field.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001176 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner46b5c642009-11-06 04:27:31 +00001177 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001178
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001179 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001180 Constant::getNullValue(NPtr->getType()),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001181 SCI->getName());
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001182 SCI->replaceAllUsesWith(New);
1183 SCI->eraseFromParent();
1184 return;
1185 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001186
Chris Lattner222ef4c2008-12-17 05:28:49 +00001187 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnerba98f892007-09-13 18:00:31 +00001188 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1189 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1190 && "Unexpected GEPI!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001191
Chris Lattnerba98f892007-09-13 18:00:31 +00001192 // Load the pointer for this field.
1193 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner222ef4c2008-12-17 05:28:49 +00001194 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner46b5c642009-11-06 04:27:31 +00001195 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001196
Chris Lattnerba98f892007-09-13 18:00:31 +00001197 // Create the new GEP idx vector.
1198 SmallVector<Value*, 8> GEPIdx;
1199 GEPIdx.push_back(GEPI->getOperand(1));
1200 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001201
David Blaikie22319eb2015-03-14 19:24:04 +00001202 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx,
Gabor Greife9ecc682008-04-06 20:25:17 +00001203 GEPI->getName(), GEPI);
Chris Lattnerba98f892007-09-13 18:00:31 +00001204 GEPI->replaceAllUsesWith(NGEPI);
1205 GEPI->eraseFromParent();
1206 return;
1207 }
Chris Lattner011f91b2007-09-13 21:31:36 +00001208
Chris Lattner222ef4c2008-12-17 05:28:49 +00001209 // Recursively transform the users of PHI nodes. This will lazily create the
1210 // PHIs that are needed for individual elements. Keep track of what PHIs we
1211 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1212 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1213 // already been seen first by another load, so its uses have already been
1214 // processed.
1215 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner5cf753c2011-07-21 06:21:31 +00001216 if (!InsertedScalarizedValues.insert(std::make_pair(PN,
1217 std::vector<Value*>())).second)
1218 return;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001219
Chris Lattner222ef4c2008-12-17 05:28:49 +00001220 // If this is the first time we've seen this PHI, recursively process all
1221 // users.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001222 for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001223 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001224 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001225 }
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001226}
1227
James Molloyea31ad32015-11-13 11:05:07 +00001228/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1229/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1230/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001231static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001232 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001233 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001234 for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001235 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001236 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001237 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001238
Chris Lattner222ef4c2008-12-17 05:28:49 +00001239 if (Load->use_empty()) {
1240 Load->eraseFromParent();
1241 InsertedScalarizedValues.erase(Load);
1242 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001243}
1244
James Molloyea31ad32015-11-13 11:05:07 +00001245/// CI is an allocation of an array of structures. Break it up into multiple
1246/// allocations of arrays of the fields.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001247static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
Mehdi Amini46a43552015-03-04 18:43:29 +00001248 Value *NElems, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001249 const TargetLibraryInfo *TLI) {
David Greene44cb8ad2010-01-05 01:28:05 +00001250 DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI << '\n');
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001251 Type *MAT = getMallocAllocatedType(CI, TLI);
Chris Lattner229907c2011-07-18 04:54:35 +00001252 StructType *STy = cast<StructType>(MAT);
Victor Hernandez5d034492009-09-18 22:35:49 +00001253
1254 // There is guaranteed to be at least one use of the malloc (storing
1255 // it into GV). If there are other uses, change them to be uses of
1256 // the global to simplify later code. This also deletes the store
1257 // into GV.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001258 ReplaceUsesOfMallocWithGlobal(CI, GV);
1259
Victor Hernandez5d034492009-09-18 22:35:49 +00001260 // Okay, at this point, there are no users of the malloc. Insert N
1261 // new mallocs at the same place as CI, and N globals.
1262 std::vector<Value*> FieldGlobals;
1263 std::vector<Value*> FieldMallocs;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001264
David Majnemerfadc6db2016-04-29 08:07:22 +00001265 SmallVector<OperandBundleDef, 1> OpBundles;
1266 CI->getOperandBundlesAsDefs(OpBundles);
1267
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001268 unsigned AS = GV->getType()->getPointerAddressSpace();
Victor Hernandez5d034492009-09-18 22:35:49 +00001269 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
Chris Lattner229907c2011-07-18 04:54:35 +00001270 Type *FieldTy = STy->getElementType(FieldNo);
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001271 PointerType *PFieldTy = PointerType::get(FieldTy, AS);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001272
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001273 GlobalVariable *NGV = new GlobalVariable(
1274 *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage,
1275 Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo),
1276 nullptr, GV->getThreadLocalMode());
Sergei Larin94be2de2016-01-22 21:18:20 +00001277 NGV->copyAttributesFrom(GV);
Victor Hernandez5d034492009-09-18 22:35:49 +00001278 FieldGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001279
Mehdi Amini46a43552015-03-04 18:43:29 +00001280 unsigned TypeSize = DL.getTypeAllocSize(FieldTy);
Chris Lattner229907c2011-07-18 04:54:35 +00001281 if (StructType *ST = dyn_cast<StructType>(FieldTy))
Mehdi Amini46a43552015-03-04 18:43:29 +00001282 TypeSize = DL.getStructLayout(ST)->getSizeInBytes();
1283 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
Victor Hernandezf3db9152009-11-07 00:16:28 +00001284 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1285 ConstantInt::get(IntPtrTy, TypeSize),
David Majnemerfadc6db2016-04-29 08:07:22 +00001286 NElems, OpBundles, nullptr,
Victor Hernandezf3db9152009-11-07 00:16:28 +00001287 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner0521c092010-02-26 18:23:13 +00001288 FieldMallocs.push_back(NMI);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001289 new StoreInst(NMI, NGV, CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001290 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001291
Victor Hernandez5d034492009-09-18 22:35:49 +00001292 // The tricky aspect of this transformation is handling the case when malloc
1293 // fails. In the original code, malloc failing would set the result pointer
1294 // of malloc to null. In this case, some mallocs could succeed and others
1295 // could fail. As such, we emit code that looks like this:
1296 // F0 = malloc(field0)
1297 // F1 = malloc(field1)
1298 // F2 = malloc(field2)
1299 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1300 // if (F0) { free(F0); F0 = 0; }
1301 // if (F1) { free(F1); F1 = 0; }
1302 // if (F2) { free(F2); F2 = 0; }
1303 // }
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001304 // The malloc can also fail if its argument is too large.
Gabor Greif218f5542010-06-24 14:42:01 +00001305 Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1306 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001307 ConstantZero, "isneg");
Victor Hernandez5d034492009-09-18 22:35:49 +00001308 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandezf3db9152009-11-07 00:16:28 +00001309 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1310 Constant::getNullValue(FieldMallocs[i]->getType()),
1311 "isnull");
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001312 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001313 }
1314
1315 // Split the basic block at the old malloc.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001316 BasicBlock *OrigBB = CI->getParent();
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001317 BasicBlock *ContBB =
1318 OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001319
Victor Hernandez5d034492009-09-18 22:35:49 +00001320 // Create the block to check the first condition. Put all these blocks at the
1321 // end of the function as they are unlikely to be executed.
Chris Lattner46b5c642009-11-06 04:27:31 +00001322 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1323 "malloc_ret_null",
Victor Hernandez5d034492009-09-18 22:35:49 +00001324 OrigBB->getParent());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001325
Victor Hernandez5d034492009-09-18 22:35:49 +00001326 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1327 // branch on RunningOr.
1328 OrigBB->getTerminator()->eraseFromParent();
1329 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001330
Victor Hernandez5d034492009-09-18 22:35:49 +00001331 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1332 // pointer, because some may be null while others are not.
1333 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1334 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001335 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001336 Constant::getNullValue(GVVal->getType()));
Chris Lattner46b5c642009-11-06 04:27:31 +00001337 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez5d034492009-09-18 22:35:49 +00001338 OrigBB->getParent());
Chris Lattner46b5c642009-11-06 04:27:31 +00001339 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez5d034492009-09-18 22:35:49 +00001340 OrigBB->getParent());
Victor Hernandeze2971492009-10-24 04:23:03 +00001341 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1342 Cmp, NullPtrBlock);
Victor Hernandez5d034492009-09-18 22:35:49 +00001343
1344 // Fill in FreeBlock.
David Majnemerfadc6db2016-04-29 08:07:22 +00001345 CallInst::CreateFree(GVVal, OpBundles, BI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001346 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1347 FreeBlock);
1348 BranchInst::Create(NextBlock, FreeBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001349
Victor Hernandez5d034492009-09-18 22:35:49 +00001350 NullPtrBlock = NextBlock;
1351 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001352
Victor Hernandez5d034492009-09-18 22:35:49 +00001353 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001354
1355 // CI is no longer needed, remove it.
Victor Hernandez5d034492009-09-18 22:35:49 +00001356 CI->eraseFromParent();
1357
James Molloyea31ad32015-11-13 11:05:07 +00001358 /// As we process loads, if we can't immediately update all uses of the load,
1359 /// keep track of what scalarized loads are inserted for a given load.
Victor Hernandez5d034492009-09-18 22:35:49 +00001360 DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1361 InsertedScalarizedValues[GV] = FieldGlobals;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001362
Victor Hernandez5d034492009-09-18 22:35:49 +00001363 std::vector<std::pair<PHINode*, unsigned> > PHIsToRewrite;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001364
Victor Hernandez5d034492009-09-18 22:35:49 +00001365 // Okay, the malloc site is completely handled. All of the uses of GV are now
1366 // loads, and all uses of those loads are simple. Rewrite them to use loads
1367 // of the per-field globals instead.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001368 for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001369 Instruction *User = cast<Instruction>(*UI++);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001370
Victor Hernandez5d034492009-09-18 22:35:49 +00001371 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner46b5c642009-11-06 04:27:31 +00001372 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001373 continue;
1374 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001375
Victor Hernandez5d034492009-09-18 22:35:49 +00001376 // Must be a store of null.
1377 StoreInst *SI = cast<StoreInst>(User);
1378 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1379 "Unexpected heap-sra user!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001380
Victor Hernandez5d034492009-09-18 22:35:49 +00001381 // Insert a store of null into each global.
1382 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001383 Type *ValTy = cast<GlobalValue>(FieldGlobals[i])->getValueType();
1384 Constant *Null = Constant::getNullValue(ValTy);
Victor Hernandez5d034492009-09-18 22:35:49 +00001385 new StoreInst(Null, FieldGlobals[i], SI);
1386 }
1387 // Erase the original store.
1388 SI->eraseFromParent();
1389 }
1390
1391 // While we have PHIs that are interesting to rewrite, do it.
1392 while (!PHIsToRewrite.empty()) {
1393 PHINode *PN = PHIsToRewrite.back().first;
1394 unsigned FieldNo = PHIsToRewrite.back().second;
1395 PHIsToRewrite.pop_back();
1396 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1397 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1398
1399 // Add all the incoming values. This can materialize more phis.
1400 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1401 Value *InVal = PN->getIncomingValue(i);
1402 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001403 PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001404 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1405 }
1406 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001407
Victor Hernandez5d034492009-09-18 22:35:49 +00001408 // Drop all inter-phi links and any loads that made it this far.
1409 for (DenseMap<Value*, std::vector<Value*> >::iterator
1410 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1411 I != E; ++I) {
1412 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1413 PN->dropAllReferences();
1414 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1415 LI->dropAllReferences();
1416 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001417
Victor Hernandez5d034492009-09-18 22:35:49 +00001418 // Delete all the phis and loads now that inter-references are dead.
1419 for (DenseMap<Value*, std::vector<Value*> >::iterator
1420 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1421 I != E; ++I) {
1422 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1423 PN->eraseFromParent();
1424 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1425 LI->eraseFromParent();
1426 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001427
Victor Hernandez5d034492009-09-18 22:35:49 +00001428 // The old global is now dead, remove it.
1429 GV->eraseFromParent();
1430
1431 ++NumHeapSRA;
1432 return cast<GlobalVariable>(FieldGlobals[0]);
1433}
1434
James Molloyea31ad32015-11-13 11:05:07 +00001435/// This function is called when we see a pointer global variable with a single
1436/// value stored it that is a malloc or cast of malloc.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001437static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
Chris Lattner229907c2011-07-18 04:54:35 +00001438 Type *AllocTy,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001439 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001440 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +00001441 TargetLibraryInfo *TLI) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001442 // If this is a malloc of an abstract type, don't touch it.
1443 if (!AllocTy->isSized())
1444 return false;
1445
1446 // We can't optimize this global unless all uses of it are *known* to be
1447 // of the malloc value, not of the null initializer value (consider a use
1448 // that compares the global's value against zero to see if the malloc has
1449 // been reached). To do this, we check to see if all uses of the global
1450 // would trap if the global were null: this proves that they must all
1451 // happen after the malloc.
1452 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1453 return false;
1454
1455 // We can't optimize this if the malloc itself is used in a complex way,
1456 // for example, being stored into multiple globals. This allows the
Nick Lewyckybbd11562012-02-05 19:48:37 +00001457 // malloc to be stored into the specified global, loaded icmp'd, and
Victor Hernandez5d034492009-09-18 22:35:49 +00001458 // GEP'd. These are all things we could transform to using the global
1459 // for.
Evan Cheng21b588b2010-04-14 20:52:55 +00001460 SmallPtrSet<const PHINode*, 8> PHIs;
1461 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1462 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001463
1464 // If we have a global that is only initialized with a fixed size malloc,
1465 // transform the program to use global memory instead of malloc'd memory.
1466 // This eliminates dynamic allocation, avoids an indirection accessing the
1467 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez264da322009-10-16 23:12:25 +00001468 // We cannot optimize the malloc if we cannot determine malloc array size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001469 Value *NElems = getMallocArraySize(CI, DL, TLI, true);
Evan Cheng21b588b2010-04-14 20:52:55 +00001470 if (!NElems)
1471 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001472
Evan Cheng21b588b2010-04-14 20:52:55 +00001473 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1474 // Restrict this transformation to only working on small allocations
1475 // (2048 bytes currently), as we don't want to introduce a 16M global or
1476 // something.
Mehdi Amini46a43552015-03-04 18:43:29 +00001477 if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) {
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001478 OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001479 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001480 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001481
Evan Cheng21b588b2010-04-14 20:52:55 +00001482 // If the allocation is an array of structures, consider transforming this
1483 // into multiple malloc'd arrays, one for each field. This is basically
1484 // SRoA for malloc'd memory.
1485
JF Bastien800f87a2016-04-06 21:19:33 +00001486 if (Ordering != AtomicOrdering::NotAtomic)
Nick Lewycky52da72b2012-02-05 19:56:38 +00001487 return false;
1488
Evan Cheng21b588b2010-04-14 20:52:55 +00001489 // If this is an allocation of a fixed size array of structs, analyze as a
1490 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Gabor Greif218f5542010-06-24 14:42:01 +00001491 if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
Chris Lattner229907c2011-07-18 04:54:35 +00001492 if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
Evan Cheng21b588b2010-04-14 20:52:55 +00001493 AllocTy = AT->getElementType();
Gabor Greif218f5542010-06-24 14:42:01 +00001494
Chris Lattner229907c2011-07-18 04:54:35 +00001495 StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
Evan Cheng21b588b2010-04-14 20:52:55 +00001496 if (!AllocSTy)
1497 return false;
1498
1499 // This the structure has an unreasonable number of fields, leave it
1500 // alone.
1501 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1502 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1503
1504 // If this is a fixed size array, transform the Malloc to be an alloc of
1505 // structs. malloc [100 x struct],1 -> malloc struct, 100
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001506 if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001507 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
1508 unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes();
Evan Cheng21b588b2010-04-14 20:52:55 +00001509 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1510 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
David Majnemerfadc6db2016-04-29 08:07:22 +00001511 SmallVector<OperandBundleDef, 1> OpBundles;
1512 CI->getOperandBundlesAsDefs(OpBundles);
1513 Instruction *Malloc =
1514 CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, AllocSize, NumElements,
1515 OpBundles, nullptr, CI->getName());
Evan Cheng21b588b2010-04-14 20:52:55 +00001516 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1517 CI->replaceAllUsesWith(Cast);
1518 CI->eraseFromParent();
Nuno Lopes9792d682012-06-22 00:25:01 +00001519 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1520 CI = cast<CallInst>(BCI->getOperand(0));
1521 else
Nuno Lopes0b60ebb2012-06-22 00:29:58 +00001522 CI = cast<CallInst>(Malloc);
Evan Cheng21b588b2010-04-14 20:52:55 +00001523 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001524
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001525 PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL,
1526 TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001527 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001528 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001529
Victor Hernandez5d034492009-09-18 22:35:49 +00001530 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001531}
Victor Hernandez5d034492009-09-18 22:35:49 +00001532
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001533// Try to optimize globals based on the knowledge that only one value (besides
1534// its initializer) is ever stored to the global.
1535static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001536 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001537 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +00001538 TargetLibraryInfo *TLI) {
Chris Lattner1c731fa2008-12-15 21:20:32 +00001539 // Ignore no-op GEPs and bitcasts.
1540 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner09a52722004-10-09 21:48:45 +00001541
Chris Lattnere42eb312004-10-10 23:14:11 +00001542 // If we are dealing with a pointer global that is initialized to null and
1543 // only has one (non-null) value stored into it, then we can optimize any
1544 // users of the loaded value (often calls and loads) that would trap if the
1545 // value was null.
Duncan Sands19d0b472010-02-16 11:11:14 +00001546 if (GV->getInitializer()->getType()->isPointerTy() &&
Chris Lattner09a52722004-10-09 21:48:45 +00001547 GV->getInitializer()->isNullValue()) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001548 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1549 if (GV->getInitializer()->getType() != SOVC->getType())
Chris Lattner1a1acc22011-05-22 07:15:13 +00001550 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001551
Chris Lattnere42eb312004-10-10 23:14:11 +00001552 // Optimize away any trapping uses of the loaded value.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001553 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001554 return true;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001555 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1556 Type *MallocType = getMallocAllocatedType(CI, TLI);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001557 if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1558 Ordering, DL, TLI))
Victor Hernandezf3db9152009-11-07 00:16:28 +00001559 return true;
Chris Lattnere42eb312004-10-10 23:14:11 +00001560 }
Chris Lattner09a52722004-10-09 21:48:45 +00001561 }
Chris Lattner004e2502004-10-11 05:54:41 +00001562
Chris Lattner09a52722004-10-09 21:48:45 +00001563 return false;
1564}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001565
James Molloyea31ad32015-11-13 11:05:07 +00001566/// At this point, we have learned that the only two values ever stored into GV
1567/// are its initializer and OtherVal. See if we can shrink the global into a
1568/// boolean and select between the two values whenever it is used. This exposes
1569/// the values to other scalar optimizations.
Lang Hames459b5dc2014-03-23 04:22:31 +00001570static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001571 Type *GVElType = GV->getValueType();
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001572
Lang Hames459b5dc2014-03-23 04:22:31 +00001573 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1574 // an FP value, pointer or vector, don't do this optimization because a select
1575 // between them is very expensive and unlikely to lead to later
1576 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1577 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner46b5c642009-11-06 04:27:31 +00001578 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001579 GVElType->isFloatingPointTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001580 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner20bbac32008-01-14 01:17:44 +00001581 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001582
Chris Lattner20bbac32008-01-14 01:17:44 +00001583 // Walk the use list of the global seeing if all the uses are load or store.
1584 // If there is anything else, bail out.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001585 for (User *U : GV->users())
Gabor Greifa75ed762010-07-12 14:13:15 +00001586 if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
Chris Lattner20bbac32008-01-14 01:17:44 +00001587 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001588
James Molloyef607a22015-10-28 14:30:53 +00001589 DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n");
Lang Hames459b5dc2014-03-23 04:22:31 +00001590
1591 // Create the new global, initializing it to false.
1592 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1593 false,
1594 GlobalValue::InternalLinkage,
1595 ConstantInt::getFalse(GV->getContext()),
1596 GV->getName()+".b",
1597 GV->getThreadLocalMode(),
1598 GV->getType()->getAddressSpace());
Sergei Larin94be2de2016-01-22 21:18:20 +00001599 NewGV->copyAttributesFrom(GV);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001600 GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
Lang Hames459b5dc2014-03-23 04:22:31 +00001601
Chris Lattner40e4cec2004-12-12 05:53:50 +00001602 Constant *InitVal = GV->getInitializer();
Chris Lattner46b5c642009-11-06 04:27:31 +00001603 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Lang Hames459b5dc2014-03-23 04:22:31 +00001604 "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001605
Lang Hames459b5dc2014-03-23 04:22:31 +00001606 // If initialized to zero and storing one into the global, we can use a cast
1607 // instead of a select to synthesize the desired value.
1608 bool IsOneZero = false;
1609 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1610 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001611
Lang Hames459b5dc2014-03-23 04:22:31 +00001612 while (!GV->use_empty()) {
1613 Instruction *UI = cast<Instruction>(GV->user_back());
1614 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1615 // Change the store into a boolean store.
1616 bool StoringOther = SI->getOperand(0) == OtherVal;
1617 // Only do this if we weren't storing a loaded value.
1618 Value *StoreVal;
1619 if (StoringOther || SI->getOperand(0) == InitVal) {
1620 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1621 StoringOther);
Bill Wendling7297b862013-02-13 23:00:51 +00001622 } else {
Lang Hames459b5dc2014-03-23 04:22:31 +00001623 // Otherwise, we are storing a previously loaded copy. To do this,
1624 // change the copy from copying the original value to just copying the
1625 // bool.
1626 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1627
1628 // If we've already replaced the input, StoredVal will be a cast or
1629 // select instruction. If not, it will be a load of the original
1630 // global.
1631 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1632 assert(LI->getOperand(0) == GV && "Not a copy!");
1633 // Insert a new load, to preserve the saved value.
1634 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001635 LI->getOrdering(), LI->getSyncScopeID(), LI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001636 } else {
1637 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1638 "This is not a form that we understand!");
1639 StoreVal = StoredVal->getOperand(0);
1640 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1641 }
Chris Lattner745196a2004-12-12 19:34:41 +00001642 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001643 new StoreInst(StoreVal, NewGV, false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001644 SI->getOrdering(), SI->getSyncScopeID(), SI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001645 } else {
1646 // Change the load into a load of bool then a select.
1647 LoadInst *LI = cast<LoadInst>(UI);
1648 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001649 LI->getOrdering(), LI->getSyncScopeID(), LI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001650 Value *NSI;
1651 if (IsOneZero)
1652 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1653 else
1654 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1655 NSI->takeName(LI);
1656 LI->replaceAllUsesWith(NSI);
Devang Patelfc507a12009-03-06 01:39:36 +00001657 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001658 UI->eraseFromParent();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001659 }
1660
Lang Hames459b5dc2014-03-23 04:22:31 +00001661 // Retain the name of the old global variable. People who are debugging their
1662 // programs may expect these variables to be named the same.
1663 NewGV->takeName(GV);
1664 GV->eraseFromParent();
Chris Lattner20bbac32008-01-14 01:17:44 +00001665 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001666}
1667
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001668static bool deleteIfDead(GlobalValue &GV,
1669 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001670 GV.removeDeadConstantUsers();
1671
Mehdi Aminid8803092016-09-15 20:26:27 +00001672 if (!GV.isDiscardableIfUnused() && !GV.isDeclaration())
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001673 return false;
1674
1675 if (const Comdat *C = GV.getComdat())
1676 if (!GV.hasLocalLinkage() && NotDiscardableComdats.count(C))
1677 return false;
1678
1679 bool Dead;
1680 if (auto *F = dyn_cast<Function>(&GV))
Mehdi Aminid8803092016-09-15 20:26:27 +00001681 Dead = (F->isDeclaration() && F->use_empty()) || F->isDefTriviallyDead();
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001682 else
1683 Dead = GV.use_empty();
1684 if (!Dead)
1685 return false;
1686
1687 DEBUG(dbgs() << "GLOBAL DEAD: " << GV << "\n");
1688 GV.eraseFromParent();
1689 ++NumDeleted;
1690 return true;
1691}
Chris Lattner40e4cec2004-12-12 05:53:50 +00001692
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001693static bool isPointerValueDeadOnEntryToFunction(
1694 const Function *F, GlobalValue *GV,
1695 function_ref<DominatorTree &(Function &)> LookupDomTree) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001696 // Find all uses of GV. We expect them all to be in F, and if we can't
1697 // identify any of the uses we bail out.
1698 //
1699 // On each of these uses, identify if the memory that GV points to is
1700 // used/required/live at the start of the function. If it is not, for example
1701 // if the first thing the function does is store to the GV, the GV can
1702 // possibly be demoted.
1703 //
1704 // We don't do an exhaustive search for memory operations - simply look
1705 // through bitcasts as they're quite common and benign.
1706 const DataLayout &DL = GV->getParent()->getDataLayout();
1707 SmallVector<LoadInst *, 4> Loads;
1708 SmallVector<StoreInst *, 4> Stores;
1709 for (auto *U : GV->users()) {
1710 if (Operator::getOpcode(U) == Instruction::BitCast) {
1711 for (auto *UU : U->users()) {
1712 if (auto *LI = dyn_cast<LoadInst>(UU))
1713 Loads.push_back(LI);
1714 else if (auto *SI = dyn_cast<StoreInst>(UU))
1715 Stores.push_back(SI);
1716 else
1717 return false;
1718 }
1719 continue;
1720 }
1721
1722 Instruction *I = dyn_cast<Instruction>(U);
1723 if (!I)
1724 return false;
1725 assert(I->getParent()->getParent() == F);
1726
1727 if (auto *LI = dyn_cast<LoadInst>(I))
1728 Loads.push_back(LI);
1729 else if (auto *SI = dyn_cast<StoreInst>(I))
1730 Stores.push_back(SI);
1731 else
1732 return false;
1733 }
1734
1735 // We have identified all uses of GV into loads and stores. Now check if all
1736 // of them are known not to depend on the value of the global at the function
1737 // entry point. We do this by ensuring that every load is dominated by at
1738 // least one store.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001739 auto &DT = LookupDomTree(*const_cast<Function *>(F));
James Molloy9c7d4d82015-11-15 14:21:37 +00001740
James Molloyd4d23572015-11-16 10:16:22 +00001741 // The below check is quadratic. Check we're not going to do too many tests.
1742 // FIXME: Even though this will always have worst-case quadratic time, we
1743 // could put effort into minimizing the average time by putting stores that
1744 // have been shown to dominate at least one load at the beginning of the
1745 // Stores array, making subsequent dominance checks more likely to succeed
1746 // early.
1747 //
1748 // The threshold here is fairly large because global->local demotion is a
1749 // very powerful optimization should it fire.
1750 const unsigned Threshold = 100;
1751 if (Loads.size() * Stores.size() > Threshold)
1752 return false;
1753
James Molloy9c7d4d82015-11-15 14:21:37 +00001754 for (auto *L : Loads) {
1755 auto *LTy = L->getType();
David Majnemer0a16c222016-08-11 21:15:00 +00001756 if (none_of(Stores, [&](const StoreInst *S) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001757 auto *STy = S->getValueOperand()->getType();
1758 // The load is only dominated by the store if DomTree says so
1759 // and the number of bits loaded in L is less than or equal to
1760 // the number of bits stored in S.
1761 return DT.dominates(S, L) &&
1762 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy);
1763 }))
1764 return false;
1765 }
1766 // All loads have known dependences inside F, so the global can be localized.
1767 return true;
1768}
1769
James Molloy1d695a02015-11-19 18:04:33 +00001770/// C may have non-instruction users. Can all of those users be turned into
1771/// instructions?
1772static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) {
1773 // We don't do this exhaustively. The most common pattern that we really need
1774 // to care about is a constant GEP or constant bitcast - so just looking
1775 // through one single ConstantExpr.
1776 //
1777 // The set of constants that this function returns true for must be able to be
1778 // handled by makeAllConstantUsesInstructions.
1779 for (auto *U : C->users()) {
1780 if (isa<Instruction>(U))
1781 continue;
1782 if (!isa<ConstantExpr>(U))
1783 // Non instruction, non-constantexpr user; cannot convert this.
1784 return false;
1785 for (auto *UU : U->users())
1786 if (!isa<Instruction>(UU))
1787 // A constantexpr used by another constant. We don't try and recurse any
1788 // further but just bail out at this point.
1789 return false;
1790 }
1791
1792 return true;
1793}
1794
1795/// C may have non-instruction users, and
1796/// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the
1797/// non-instruction users to instructions.
1798static void makeAllConstantUsesInstructions(Constant *C) {
1799 SmallVector<ConstantExpr*,4> Users;
1800 for (auto *U : C->users()) {
1801 if (isa<ConstantExpr>(U))
1802 Users.push_back(cast<ConstantExpr>(U));
1803 else
1804 // We should never get here; allNonInstructionUsersCanBeMadeInstructions
1805 // should not have returned true for C.
1806 assert(
1807 isa<Instruction>(U) &&
1808 "Can't transform non-constantexpr non-instruction to instruction!");
1809 }
1810
1811 SmallVector<Value*,4> UUsers;
1812 for (auto *U : Users) {
1813 UUsers.clear();
1814 for (auto *UU : U->users())
1815 UUsers.push_back(UU);
1816 for (auto *UU : UUsers) {
1817 Instruction *UI = cast<Instruction>(UU);
1818 Instruction *NewU = U->getAsInstruction();
1819 NewU->insertBefore(UI);
1820 UI->replaceUsesOfWith(U, NewU);
1821 }
Eli Friedman10ab9232017-04-27 18:39:08 +00001822 // We've replaced all the uses, so destroy the constant. (destroyConstant
1823 // will update value handles and metadata.)
1824 U->destroyConstant();
James Molloy1d695a02015-11-19 18:04:33 +00001825 }
1826}
1827
James Molloyea31ad32015-11-13 11:05:07 +00001828/// Analyze the specified global variable and optimize
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001829/// it if possible. If we make a change, return true.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001830static bool processInternalGlobal(
1831 GlobalVariable *GV, const GlobalStatus &GS, TargetLibraryInfo *TLI,
1832 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001833 auto &DL = GV->getParent()->getDataLayout();
James Molloy9c7d4d82015-11-15 14:21:37 +00001834 // If this is a first class global and has only one accessing function and
1835 // this function is non-recursive, we replace the global with a local alloca
1836 // in this function.
Alexey Samsonova1944e62013-10-07 19:03:24 +00001837 //
Alp Tokerf907b892013-12-05 05:44:44 +00001838 // NOTE: It doesn't make sense to promote non-single-value types since we
Alexey Samsonova1944e62013-10-07 19:03:24 +00001839 // are just replacing static memory to stack memory.
1840 //
1841 // If the global is in different address space, don't bring it to stack.
1842 if (!GS.HasMultipleAccessingFunctions &&
James Molloy1d695a02015-11-19 18:04:33 +00001843 GS.AccessingFunction &&
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001844 GV->getValueType()->isSingleValueType() &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001845 GV->getType()->getAddressSpace() == 0 &&
1846 !GV->isExternallyInitialized() &&
James Molloy1d695a02015-11-19 18:04:33 +00001847 allNonInstructionUsersCanBeMadeInstructions(GV) &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001848 GS.AccessingFunction->doesNotRecurse() &&
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001849 isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV,
1850 LookupDomTree)) {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001851 const DataLayout &DL = GV->getParent()->getDataLayout();
1852
James Molloy33e73452015-11-13 11:05:13 +00001853 DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n");
Alexey Samsonova1944e62013-10-07 19:03:24 +00001854 Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1855 ->getEntryBlock().begin());
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001856 Type *ElemTy = GV->getValueType();
Alexey Samsonova1944e62013-10-07 19:03:24 +00001857 // FIXME: Pass Global's alignment when globals have alignment
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001858 AllocaInst *Alloca = new AllocaInst(ElemTy, DL.getAllocaAddrSpace(), nullptr,
Craig Topperf40110f2014-04-25 05:29:35 +00001859 GV->getName(), &FirstI);
Alexey Samsonova1944e62013-10-07 19:03:24 +00001860 if (!isa<UndefValue>(GV->getInitializer()))
1861 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1862
James Molloy1d695a02015-11-19 18:04:33 +00001863 makeAllConstantUsesInstructions(GV);
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001864
Alexey Samsonova1944e62013-10-07 19:03:24 +00001865 GV->replaceAllUsesWith(Alloca);
1866 GV->eraseFromParent();
1867 ++NumLocalized;
1868 return true;
1869 }
1870
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001871 // If the global is never loaded (but may be stored to), it is dead.
1872 // Delete it now.
Rafael Espindola045a78f2013-10-17 18:18:52 +00001873 if (!GS.IsLoaded) {
James Molloy33e73452015-11-13 11:05:13 +00001874 DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001875
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001876 bool Changed;
1877 if (isLeakCheckerRoot(GV)) {
1878 // Delete any constant stores to the global.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001879 Changed = CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001880 } else {
1881 // Delete any stores we can find to the global. We may not be able to
1882 // make it completely dead though.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001883 Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001884 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001885
1886 // If the global is dead now, delete it.
1887 if (GV->use_empty()) {
1888 GV->eraseFromParent();
1889 ++NumDeleted;
1890 Changed = true;
1891 }
1892 return Changed;
1893
James Molloyeb040cc2016-04-25 10:48:29 +00001894 }
1895 if (GS.StoredType <= GlobalStatus::InitializerStored) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00001896 DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001897 GV->setConstant(true);
1898
1899 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001900 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001901
1902 // If the global is dead now, just nuke it.
1903 if (GV->use_empty()) {
1904 DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
1905 << "all users and delete global!\n");
1906 GV->eraseFromParent();
1907 ++NumDeleted;
James Molloyeb040cc2016-04-25 10:48:29 +00001908 return true;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001909 }
1910
James Molloyeb040cc2016-04-25 10:48:29 +00001911 // Fall through to the next check; see if we can optimize further.
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001912 ++NumMarked;
James Molloyeb040cc2016-04-25 10:48:29 +00001913 }
1914 if (!GV->getInitializer()->getType()->isSingleValueType()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001915 const DataLayout &DL = GV->getParent()->getDataLayout();
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001916 if (SRAGlobal(GV, DL))
Mehdi Amini46a43552015-03-04 18:43:29 +00001917 return true;
James Molloyeb040cc2016-04-25 10:48:29 +00001918 }
1919 if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001920 // If the initial value for the global was an undef value, and if only
1921 // one other value was stored into it, we can just change the
1922 // initializer to be the stored value, then delete all stores to the
1923 // global. This allows us to mark it constant.
1924 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1925 if (isa<UndefValue>(GV->getInitializer())) {
1926 // Change the initial value here.
1927 GV->setInitializer(SOVConstant);
1928
1929 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001930 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001931
1932 if (GV->use_empty()) {
1933 DEBUG(dbgs() << " *** Substituting initializer allowed us to "
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001934 << "simplify all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001935 GV->eraseFromParent();
1936 ++NumDeleted;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001937 }
1938 ++NumSubstitute;
1939 return true;
1940 }
1941
1942 // Try to optimize globals based on the knowledge that only one value
1943 // (besides its initializer) is ever stored to the global.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001944 if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001945 return true;
1946
Lang Hames459b5dc2014-03-23 04:22:31 +00001947 // Otherwise, if the global was not a boolean, we can shrink it to be a
1948 // boolean.
Eli Friedman33d37002013-09-09 22:00:13 +00001949 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) {
JF Bastien800f87a2016-04-06 21:19:33 +00001950 if (GS.Ordering == AtomicOrdering::NotAtomic) {
Lang Hames459b5dc2014-03-23 04:22:31 +00001951 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Eli Friedman33d37002013-09-09 22:00:13 +00001952 ++NumShrunkToBool;
1953 return true;
1954 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001955 }
Eli Friedman33d37002013-09-09 22:00:13 +00001956 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001957 }
1958
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001959 return false;
1960}
1961
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001962/// Analyze the specified global variable and optimize it if possible. If we
1963/// make a change, return true.
1964static bool
1965processGlobal(GlobalValue &GV, TargetLibraryInfo *TLI,
1966 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001967 if (GV.getName().startswith("llvm."))
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001968 return false;
1969
1970 GlobalStatus GS;
1971
1972 if (GlobalStatus::analyzeGlobal(&GV, GS))
1973 return false;
1974
1975 bool Changed = false;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001976 if (!GS.IsCompared && !GV.hasGlobalUnnamedAddr()) {
1977 auto NewUnnamedAddr = GV.hasLocalLinkage() ? GlobalValue::UnnamedAddr::Global
1978 : GlobalValue::UnnamedAddr::Local;
1979 if (NewUnnamedAddr != GV.getUnnamedAddr()) {
1980 GV.setUnnamedAddr(NewUnnamedAddr);
1981 NumUnnamed++;
1982 Changed = true;
1983 }
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001984 }
1985
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001986 // Do more involved optimizations if the global is internal.
1987 if (!GV.hasLocalLinkage())
1988 return Changed;
1989
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001990 auto *GVar = dyn_cast<GlobalVariable>(&GV);
1991 if (!GVar)
1992 return Changed;
1993
1994 if (GVar->isConstant() || !GVar->hasInitializer())
1995 return Changed;
1996
1997 return processInternalGlobal(GVar, GS, TLI, LookupDomTree) || Changed;
1998}
1999
James Molloyea31ad32015-11-13 11:05:07 +00002000/// Walk all of the direct calls of the specified function, changing them to
2001/// FastCC.
Chris Lattnera4c80222005-05-08 22:18:06 +00002002static void ChangeCalleesToFastCall(Function *F) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00002003 for (User *U : F->users()) {
2004 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002005 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002006 CallSite CS(cast<Instruction>(U));
2007 CS.setCallingConv(CallingConv::Fast);
Chris Lattnera4c80222005-05-08 22:18:06 +00002008 }
2009}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00002010
Reid Kleckner0a5ed3d2017-04-19 23:26:44 +00002011static AttributeList StripNest(LLVMContext &C, AttributeList Attrs) {
2012 // There can be at most one attribute set with a nest attribute.
2013 unsigned NestIndex;
2014 if (Attrs.hasAttrSomewhere(Attribute::Nest, &NestIndex))
2015 return Attrs.removeAttribute(C, NestIndex, Attribute::Nest);
Duncan Sands573b3f82008-02-16 20:56:04 +00002016 return Attrs;
2017}
2018
2019static void RemoveNestAttribute(Function *F) {
Bill Wendling85a64c22012-10-14 06:39:53 +00002020 F->setAttributes(StripNest(F->getContext(), F->getAttributes()));
Chandler Carruthcdf47882014-03-09 03:16:01 +00002021 for (User *U : F->users()) {
2022 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002023 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002024 CallSite CS(cast<Instruction>(U));
2025 CS.setAttributes(StripNest(F->getContext(), CS.getAttributes()));
Duncan Sands573b3f82008-02-16 20:56:04 +00002026 }
2027}
2028
Reid Kleckner22869372014-02-26 19:57:30 +00002029/// Return true if this is a calling convention that we'd like to change. The
2030/// idea here is that we don't want to mess with the convention if the user
2031/// explicitly requested something with performance implications like coldcc,
2032/// GHC, or anyregcc.
2033static bool isProfitableToMakeFastCC(Function *F) {
2034 CallingConv::ID CC = F->getCallingConv();
2035 // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc?
2036 return CC == CallingConv::C || CC == CallingConv::X86_ThisCall;
2037}
2038
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002039static bool
2040OptimizeFunctions(Module &M, TargetLibraryInfo *TLI,
2041 function_ref<DominatorTree &(Function &)> LookupDomTree,
2042 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002043 bool Changed = false;
2044 // Optimize functions.
2045 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002046 Function *F = &*FI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002047 // Functions without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002048 if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002049 F->setLinkage(GlobalValue::InternalLinkage);
David Majnemer1b3b70e2014-10-08 07:23:31 +00002050
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002051 if (deleteIfDead(*F, NotDiscardableComdats)) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002052 Changed = true;
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002053 continue;
2054 }
Rafael Espindola10d9a032015-12-22 20:43:30 +00002055
Davide Italianoc3dc055782017-07-13 15:40:59 +00002056 // LLVM's definition of dominance allows instructions that are cyclic
2057 // in unreachable blocks, e.g.:
2058 // %pat = select i1 %condition, @global, i16* %pat
2059 // because any instruction dominates an instruction in a block that's
2060 // not reachable from entry.
2061 // So, remove unreachable blocks from the function, because a) there's
2062 // no point in analyzing them and b) GlobalOpt should otherwise grow
2063 // some more complicated logic to break these cycles.
2064 // Removing unreachable blocks might invalidate the dominator so we
2065 // recalculate it.
2066 if (!F->isDeclaration()) {
2067 if (removeUnreachableBlocks(*F)) {
2068 auto &DT = LookupDomTree(*F);
2069 DT.recalculate(*F);
2070 Changed = true;
2071 }
2072 }
2073
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002074 Changed |= processGlobal(*F, TLI, LookupDomTree);
Rafael Espindola10d9a032015-12-22 20:43:30 +00002075
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002076 if (!F->hasLocalLinkage())
2077 continue;
2078 if (isProfitableToMakeFastCC(F) && !F->isVarArg() &&
2079 !F->hasAddressTaken()) {
2080 // If this function has a calling convention worth changing, is not a
2081 // varargs function, and is only called directly, promote it to use the
2082 // Fast calling convention.
2083 F->setCallingConv(CallingConv::Fast);
2084 ChangeCalleesToFastCall(F);
2085 ++NumFastCallFns;
2086 Changed = true;
2087 }
Duncan Sands573b3f82008-02-16 20:56:04 +00002088
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002089 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2090 !F->hasAddressTaken()) {
2091 // The function is not used by a trampoline intrinsic, so it is safe
2092 // to remove the 'nest' attribute.
2093 RemoveNestAttribute(F);
2094 ++NumNestRemoved;
2095 Changed = true;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002096 }
2097 }
2098 return Changed;
2099}
2100
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002101static bool
2102OptimizeGlobalVars(Module &M, TargetLibraryInfo *TLI,
2103 function_ref<DominatorTree &(Function &)> LookupDomTree,
2104 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002105 bool Changed = false;
David Majnemerdad0a642014-06-27 18:19:56 +00002106
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002107 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2108 GVI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002109 GlobalVariable *GV = &*GVI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002110 // Global variables without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002111 if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002112 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman580b80d2009-11-23 16:22:21 +00002113 // Simplify the initializer.
2114 if (GV->hasInitializer())
David Majnemerd536f232016-07-29 03:27:26 +00002115 if (auto *C = dyn_cast<Constant>(GV->getInitializer())) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002116 auto &DL = M.getDataLayout();
David Majnemerd536f232016-07-29 03:27:26 +00002117 Constant *New = ConstantFoldConstant(C, DL, TLI);
2118 if (New && New != C)
Dan Gohman580b80d2009-11-23 16:22:21 +00002119 GV->setInitializer(New);
2120 }
Rafael Espindolafc355bc2011-01-19 16:32:21 +00002121
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002122 if (deleteIfDead(*GV, NotDiscardableComdats)) {
Rafael Espindola10d9a032015-12-22 20:43:30 +00002123 Changed = true;
2124 continue;
2125 }
2126
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002127 Changed |= processGlobal(*GV, TLI, LookupDomTree);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002128 }
2129 return Changed;
2130}
2131
James Molloyea31ad32015-11-13 11:05:07 +00002132/// Evaluate a piece of a constantexpr store into a global initializer. This
2133/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2134/// GEP operands of Addr [0, OpNo) have been stepped into.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002135static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2136 ConstantExpr *Addr, unsigned OpNo) {
2137 // Base case of the recursion.
2138 if (OpNo == Addr->getNumOperands()) {
2139 assert(Val->getType() == Init->getType() && "Type mismatch!");
2140 return Val;
2141 }
2142
2143 SmallVector<Constant*, 32> Elts;
2144 if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2145 // Break up the constant into its elements.
2146 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2147 Elts.push_back(Init->getAggregateElement(i));
2148
2149 // Replace the element that we are supposed to.
2150 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2151 unsigned Idx = CU->getZExtValue();
2152 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2153 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2154
2155 // Return the modified struct.
2156 return ConstantStruct::get(STy, Elts);
2157 }
2158
2159 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2160 SequentialType *InitTy = cast<SequentialType>(Init->getType());
Peter Collingbournebc070522016-12-02 03:20:58 +00002161 uint64_t NumElts = InitTy->getNumElements();
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002162
2163 // Break up the array into elements.
2164 for (uint64_t i = 0, e = NumElts; i != e; ++i)
2165 Elts.push_back(Init->getAggregateElement(i));
2166
2167 assert(CI->getZExtValue() < NumElts);
2168 Elts[CI->getZExtValue()] =
2169 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2170
2171 if (Init->getType()->isArrayTy())
2172 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2173 return ConstantVector::get(Elts);
2174}
2175
James Molloyea31ad32015-11-13 11:05:07 +00002176/// We have decided that Addr (which satisfies the predicate
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002177/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2178static void CommitValueTo(Constant *Val, Constant *Addr) {
2179 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2180 assert(GV->hasInitializer());
2181 GV->setInitializer(Val);
2182 return;
2183 }
2184
2185 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2186 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2187 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2188}
2189
James Molloyea31ad32015-11-13 11:05:07 +00002190/// Evaluate static constructors in the function, if we can. Return true if we
2191/// can, false otherwise.
Mehdi Amini46a43552015-03-04 18:43:29 +00002192static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002193 TargetLibraryInfo *TLI) {
Chris Lattnerda1889b2005-09-27 04:27:01 +00002194 // Call the function.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002195 Evaluator Eval(DL, TLI);
Chris Lattner65a3a092005-09-27 04:45:34 +00002196 Constant *RetValDummy;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002197 bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2198 SmallVector<Constant*, 0>());
Jakub Staszak9525a772012-12-06 21:57:16 +00002199
Chris Lattnerda1889b2005-09-27 04:27:01 +00002200 if (EvalSuccess) {
Nico Weber4b2acde2014-05-02 18:35:25 +00002201 ++NumCtorsEvaluated;
2202
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002203 // We succeeded at evaluation: commit the result.
David Greene44cb8ad2010-01-05 01:28:05 +00002204 DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002205 << F->getName() << "' to " << Eval.getMutatedMemory().size()
2206 << " stores.\n");
Benjamin Kramer135f7352016-06-26 12:28:59 +00002207 for (const auto &I : Eval.getMutatedMemory())
2208 CommitValueTo(I.second, I.first);
Craig Topper46276792014-08-24 23:23:06 +00002209 for (GlobalVariable *GV : Eval.getInvariants())
2210 GV->setConstant(true);
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002211 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002212
Chris Lattnerda1889b2005-09-27 04:27:01 +00002213 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002214}
2215
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002216static int compareNames(Constant *const *A, Constant *const *B) {
Benjamin Kramer96f4b122016-03-15 14:18:26 +00002217 Value *AStripped = (*A)->stripPointerCastsNoFollowAliases();
2218 Value *BStripped = (*B)->stripPointerCastsNoFollowAliases();
2219 return AStripped->getName().compare(BStripped->getName());
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002220}
2221
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002222static void setUsedInitializer(GlobalVariable &V,
Craig Topper97ebe532014-08-19 07:44:27 +00002223 const SmallPtrSet<GlobalValue *, 8> &Init) {
Rafael Espindolac2bb73f2013-07-20 23:33:15 +00002224 if (Init.empty()) {
2225 V.eraseFromParent();
2226 return;
2227 }
2228
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002229 // Type of pointer to the array of pointers.
2230 PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0);
Rafael Espindola00752162013-05-09 17:22:59 +00002231
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002232 SmallVector<llvm::Constant *, 8> UsedArray;
Craig Topper71b7b682014-08-21 05:55:13 +00002233 for (GlobalValue *GV : Init) {
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002234 Constant *Cast
Craig Topper71b7b682014-08-21 05:55:13 +00002235 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002236 UsedArray.push_back(Cast);
Rafael Espindola00752162013-05-09 17:22:59 +00002237 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002238 // Sort to get deterministic order.
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002239 array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002240 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
Rafael Espindola00752162013-05-09 17:22:59 +00002241
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002242 Module *M = V.getParent();
2243 V.removeFromParent();
2244 GlobalVariable *NV =
2245 new GlobalVariable(*M, ATy, false, llvm::GlobalValue::AppendingLinkage,
2246 llvm::ConstantArray::get(ATy, UsedArray), "");
2247 NV->takeName(&V);
2248 NV->setSection("llvm.metadata");
2249 delete &V;
Rafael Espindola00752162013-05-09 17:22:59 +00002250}
2251
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002252namespace {
James Molloyea31ad32015-11-13 11:05:07 +00002253/// An easy to access representation of llvm.used and llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002254class LLVMUsed {
2255 SmallPtrSet<GlobalValue *, 8> Used;
2256 SmallPtrSet<GlobalValue *, 8> CompilerUsed;
2257 GlobalVariable *UsedV;
2258 GlobalVariable *CompilerUsedV;
2259
2260public:
Rafael Espindolaec2375f2013-07-25 02:50:08 +00002261 LLVMUsed(Module &M) {
Rafael Espindola17600e22013-07-25 03:23:25 +00002262 UsedV = collectUsedGlobalVariables(M, Used, false);
2263 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
Rafael Espindola00752162013-05-09 17:22:59 +00002264 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002265 typedef SmallPtrSet<GlobalValue *, 8>::iterator iterator;
Craig Topper46276792014-08-24 23:23:06 +00002266 typedef iterator_range<iterator> used_iterator_range;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002267 iterator usedBegin() { return Used.begin(); }
2268 iterator usedEnd() { return Used.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002269 used_iterator_range used() {
2270 return used_iterator_range(usedBegin(), usedEnd());
2271 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002272 iterator compilerUsedBegin() { return CompilerUsed.begin(); }
2273 iterator compilerUsedEnd() { return CompilerUsed.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002274 used_iterator_range compilerUsed() {
2275 return used_iterator_range(compilerUsedBegin(), compilerUsedEnd());
2276 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002277 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
2278 bool compilerUsedCount(GlobalValue *GV) const {
2279 return CompilerUsed.count(GV);
2280 }
2281 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2282 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
David Blaikie70573dc2014-11-19 07:49:26 +00002283 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
2284 bool compilerUsedInsert(GlobalValue *GV) {
2285 return CompilerUsed.insert(GV).second;
2286 }
Rafael Espindola00752162013-05-09 17:22:59 +00002287
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002288 void syncVariablesAndSets() {
2289 if (UsedV)
2290 setUsedInitializer(*UsedV, Used);
2291 if (CompilerUsedV)
2292 setUsedInitializer(*CompilerUsedV, CompilerUsed);
2293 }
2294};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00002295}
Rafael Espindola00752162013-05-09 17:22:59 +00002296
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002297static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
2298 if (GA.use_empty()) // No use at all.
2299 return false;
2300
2301 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
2302 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002303 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002304 if (!GA.hasOneUse())
2305 // Strictly more than one use. So at least one is not in llvm.used and
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002306 // llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002307 return true;
2308
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002309 // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002310 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
Rafael Espindola00752162013-05-09 17:22:59 +00002311}
2312
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002313static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
2314 const LLVMUsed &U) {
2315 unsigned N = 2;
2316 assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
2317 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002318 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002319 if (U.usedCount(&V) || U.compilerUsedCount(&V))
2320 ++N;
2321 return V.hasNUsesOrMore(N);
2322}
2323
2324static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
2325 if (!GA.hasLocalLinkage())
2326 return true;
2327
2328 return U.usedCount(&GA) || U.compilerUsedCount(&GA);
2329}
2330
Craig Topper71b7b682014-08-21 05:55:13 +00002331static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U,
2332 bool &RenameTarget) {
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002333 RenameTarget = false;
Rafael Espindola00752162013-05-09 17:22:59 +00002334 bool Ret = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002335 if (hasUseOtherThanLLVMUsed(GA, U))
Rafael Espindola00752162013-05-09 17:22:59 +00002336 Ret = true;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002337
2338 // If the alias is externally visible, we may still be able to simplify it.
2339 if (!mayHaveOtherReferences(GA, U))
2340 return Ret;
2341
2342 // If the aliasee has internal linkage, give it the name and linkage
2343 // of the alias, and delete the alias. This turns:
2344 // define internal ... @f(...)
2345 // @a = alias ... @f
2346 // into:
2347 // define ... @a(...)
2348 Constant *Aliasee = GA.getAliasee();
2349 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2350 if (!Target->hasLocalLinkage())
2351 return Ret;
2352
2353 // Do not perform the transform if multiple aliases potentially target the
2354 // aliasee. This check also ensures that it is safe to replace the section
2355 // and other attributes of the aliasee with those of the alias.
2356 if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
2357 return Ret;
2358
2359 RenameTarget = true;
2360 return true;
Rafael Espindola00752162013-05-09 17:22:59 +00002361}
2362
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002363static bool
2364OptimizeGlobalAliases(Module &M,
2365 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002366 bool Changed = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002367 LLVMUsed Used(M);
2368
Craig Topper46276792014-08-24 23:23:06 +00002369 for (GlobalValue *GV : Used.used())
2370 Used.compilerUsedErase(GV);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002371
Duncan Sands0bcf0852009-01-07 20:01:06 +00002372 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002373 I != E;) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002374 GlobalAlias *J = &*I++;
2375
Duncan Sandsed722832009-03-06 10:21:56 +00002376 // Aliases without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002377 if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002378 J->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindola5349d872015-12-22 19:50:22 +00002379
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002380 if (deleteIfDead(*J, NotDiscardableComdats)) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002381 Changed = true;
2382 continue;
2383 }
2384
Duncan Sandsb3f27882009-02-15 09:56:08 +00002385 // If the aliasee may change at link time, nothing can be done - bail out.
Sanjoy Das5ce32722016-04-08 00:48:30 +00002386 if (J->isInterposable())
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002387 continue;
2388
Duncan Sandsb3f27882009-02-15 09:56:08 +00002389 Constant *Aliasee = J->getAliasee();
David Majnemer0e2cc2a2014-07-01 00:30:56 +00002390 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts());
2391 // We can't trivially replace the alias with the aliasee if the aliasee is
2392 // non-trivial in some way.
2393 // TODO: Try to handle non-zero GEPs of local aliasees.
2394 if (!Target)
2395 continue;
Duncan Sands7a1db332009-02-18 17:55:38 +00002396 Target->removeDeadConstantUsers();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002397
2398 // Make all users of the alias use the aliasee instead.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002399 bool RenameTarget;
2400 if (!hasUsesToReplace(*J, Used, RenameTarget))
Rafael Espindola00752162013-05-09 17:22:59 +00002401 continue;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002402
Rafael Espindola6b238632014-05-16 19:35:39 +00002403 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType()));
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002404 ++NumAliasesResolved;
2405 Changed = true;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002406
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002407 if (RenameTarget) {
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002408 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002409 Target->takeName(&*J);
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002410 Target->setLinkage(J->getLinkage());
Reid Kleckner22b19da2014-02-13 02:18:36 +00002411 Target->setVisibility(J->getVisibility());
2412 Target->setDLLStorageClass(J->getDLLStorageClass());
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002413
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002414 if (Used.usedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002415 Used.usedInsert(Target);
2416
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002417 if (Used.compilerUsedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002418 Used.compilerUsedInsert(Target);
Rafael Espindola8d304802013-06-12 16:45:47 +00002419 } else if (mayHaveOtherReferences(*J, Used))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002420 continue;
2421
Duncan Sandsb3f27882009-02-15 09:56:08 +00002422 // Delete the alias.
2423 M.getAliasList().erase(J);
2424 ++NumAliasesRemoved;
2425 Changed = true;
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002426 }
2427
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002428 Used.syncVariablesAndSets();
2429
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002430 return Changed;
2431}
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002432
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002433static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
David L. Jonesd21529f2017-01-23 23:16:46 +00002434 LibFunc F = LibFunc_cxa_atexit;
Ahmed Bougachad765a822016-04-27 19:04:35 +00002435 if (!TLI->has(F))
Craig Topperf40110f2014-04-25 05:29:35 +00002436 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002437
Ahmed Bougachad765a822016-04-27 19:04:35 +00002438 Function *Fn = M.getFunction(TLI->getName(F));
Anders Carlssonee6bc702011-03-20 17:59:11 +00002439 if (!Fn)
Craig Topperf40110f2014-04-25 05:29:35 +00002440 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002441
Ahmed Bougachad765a822016-04-27 19:04:35 +00002442 // Make sure that the function has the correct prototype.
David L. Jonesd21529f2017-01-23 23:16:46 +00002443 if (!TLI->getLibFunc(*Fn, F) || F != LibFunc_cxa_atexit)
Craig Topperf40110f2014-04-25 05:29:35 +00002444 return nullptr;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002445
2446 return Fn;
2447}
2448
James Molloyea31ad32015-11-13 11:05:07 +00002449/// Returns whether the given function is an empty C++ destructor and can
2450/// therefore be eliminated.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002451/// Note that we assume that other optimization passes have already simplified
2452/// the code so we only look for a function with a single basic block, where
Benjamin Kramer1a4695a2012-02-09 16:28:15 +00002453/// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
2454/// other side-effect free instructions.
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002455static bool cxxDtorIsEmpty(const Function &Fn,
2456 SmallPtrSet<const Function *, 8> &CalledFunctions) {
Anders Carlsson48a44912011-03-20 19:51:13 +00002457 // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
Nick Lewyckyd0781832011-03-21 02:26:01 +00002458 // nounwind, but that doesn't seem worth doing.
Anders Carlsson48a44912011-03-20 19:51:13 +00002459 if (Fn.isDeclaration())
2460 return false;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002461
2462 if (++Fn.begin() != Fn.end())
2463 return false;
2464
2465 const BasicBlock &EntryBlock = Fn.getEntryBlock();
2466 for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end();
2467 I != E; ++I) {
2468 if (const CallInst *CI = dyn_cast<CallInst>(I)) {
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002469 // Ignore debug intrinsics.
2470 if (isa<DbgInfoIntrinsic>(CI))
2471 continue;
2472
Anders Carlssonee6bc702011-03-20 17:59:11 +00002473 const Function *CalledFn = CI->getCalledFunction();
2474
2475 if (!CalledFn)
2476 return false;
2477
Anders Carlsson1cc80732011-03-22 03:21:01 +00002478 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
2479
Anders Carlsson48a44912011-03-20 19:51:13 +00002480 // Don't treat recursive functions as empty.
David Blaikie70573dc2014-11-19 07:49:26 +00002481 if (!NewCalledFunctions.insert(CalledFn).second)
Anders Carlsson48a44912011-03-20 19:51:13 +00002482 return false;
2483
Anders Carlsson1cc80732011-03-22 03:21:01 +00002484 if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002485 return false;
2486 } else if (isa<ReturnInst>(*I))
Benjamin Kramer487a3962012-02-09 14:26:06 +00002487 return true; // We're done.
2488 else if (I->mayHaveSideEffects())
2489 return false; // Destructor with side effects, bail.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002490 }
2491
2492 return false;
2493}
2494
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002495static bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
Anders Carlssonee6bc702011-03-20 17:59:11 +00002496 /// Itanium C++ ABI p3.3.5:
2497 ///
2498 /// After constructing a global (or local static) object, that will require
2499 /// destruction on exit, a termination function is registered as follows:
2500 ///
2501 /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
2502 ///
2503 /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
2504 /// call f(p) when DSO d is unloaded, before all such termination calls
2505 /// registered before this one. It returns zero if registration is
Nick Lewyckyd0781832011-03-21 02:26:01 +00002506 /// successful, nonzero on failure.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002507
2508 // This pass will look for calls to __cxa_atexit where the function is trivial
2509 // and remove them.
2510 bool Changed = false;
2511
Chandler Carruthcdf47882014-03-09 03:16:01 +00002512 for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end();
2513 I != E;) {
Anders Carlsson336fd902011-03-20 20:21:33 +00002514 // We're only interested in calls. Theoretically, we could handle invoke
2515 // instructions as well, but neither llvm-gcc nor clang generate invokes
2516 // to __cxa_atexit.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002517 CallInst *CI = dyn_cast<CallInst>(*I++);
2518 if (!CI)
Anders Carlsson336fd902011-03-20 20:21:33 +00002519 continue;
2520
Jakub Staszak9525a772012-12-06 21:57:16 +00002521 Function *DtorFn =
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002522 dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
Anders Carlssonee6bc702011-03-20 17:59:11 +00002523 if (!DtorFn)
2524 continue;
2525
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002526 SmallPtrSet<const Function *, 8> CalledFunctions;
2527 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002528 continue;
2529
2530 // Just remove the call.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002531 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
2532 CI->eraseFromParent();
Anders Carlsson48a44912011-03-20 19:51:13 +00002533
Anders Carlssonee6bc702011-03-20 17:59:11 +00002534 ++NumCXXDtorsRemoved;
2535
2536 Changed |= true;
2537 }
2538
2539 return Changed;
2540}
2541
Justin Bogner1a075012016-04-26 00:28:01 +00002542static bool optimizeGlobalsInModule(
2543 Module &M, const DataLayout &DL, TargetLibraryInfo *TLI,
2544 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002545 SmallSet<const Comdat *, 8> NotDiscardableComdats;
Justin Bogner1a075012016-04-26 00:28:01 +00002546 bool Changed = false;
Chris Lattner25db5802004-10-07 04:16:33 +00002547 bool LocalChange = true;
2548 while (LocalChange) {
2549 LocalChange = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002550
David Majnemer1b3b70e2014-10-08 07:23:31 +00002551 NotDiscardableComdats.clear();
2552 for (const GlobalVariable &GV : M.globals())
2553 if (const Comdat *C = GV.getComdat())
2554 if (!GV.isDiscardableIfUnused() || !GV.use_empty())
2555 NotDiscardableComdats.insert(C);
2556 for (Function &F : M)
2557 if (const Comdat *C = F.getComdat())
2558 if (!F.isDefTriviallyDead())
2559 NotDiscardableComdats.insert(C);
2560 for (GlobalAlias &GA : M.aliases())
2561 if (const Comdat *C = GA.getComdat())
2562 if (!GA.isDiscardableIfUnused() || !GA.use_empty())
2563 NotDiscardableComdats.insert(C);
2564
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002565 // Delete functions that are trivially dead, ccc -> fastcc
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002566 LocalChange |=
2567 OptimizeFunctions(M, TLI, LookupDomTree, NotDiscardableComdats);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002568
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002569 // Optimize global_ctors list.
Richard Smithc167d652014-05-06 01:44:26 +00002570 LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) {
2571 return EvaluateStaticConstructor(F, DL, TLI);
2572 });
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002573
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002574 // Optimize non-address-taken globals.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002575 LocalChange |= OptimizeGlobalVars(M, TLI, LookupDomTree,
2576 NotDiscardableComdats);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002577
2578 // Resolve aliases, when possible.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002579 LocalChange |= OptimizeGlobalAliases(M, NotDiscardableComdats);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002580
Manman Renb3c52fb2013-05-14 21:52:44 +00002581 // Try to remove trivial global destructors if they are not removed
2582 // already.
2583 Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002584 if (CXAAtExitFn)
2585 LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
2586
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002587 Changed |= LocalChange;
Chris Lattner25db5802004-10-07 04:16:33 +00002588 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002589
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002590 // TODO: Move all global ctors functions to the end of the module for code
2591 // layout.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002592
Chris Lattner25db5802004-10-07 04:16:33 +00002593 return Changed;
2594}
Justin Bogner1a075012016-04-26 00:28:01 +00002595
Sean Silvafd03ac62016-08-09 00:28:38 +00002596PreservedAnalyses GlobalOptPass::run(Module &M, ModuleAnalysisManager &AM) {
Justin Bogner1a075012016-04-26 00:28:01 +00002597 auto &DL = M.getDataLayout();
2598 auto &TLI = AM.getResult<TargetLibraryAnalysis>(M);
2599 auto &FAM =
2600 AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
2601 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree &{
2602 return FAM.getResult<DominatorTreeAnalysis>(F);
2603 };
2604 if (!optimizeGlobalsInModule(M, DL, &TLI, LookupDomTree))
2605 return PreservedAnalyses::all();
2606 return PreservedAnalyses::none();
2607}
2608
2609namespace {
2610struct GlobalOptLegacyPass : public ModulePass {
2611 static char ID; // Pass identification, replacement for typeid
2612 GlobalOptLegacyPass() : ModulePass(ID) {
2613 initializeGlobalOptLegacyPassPass(*PassRegistry::getPassRegistry());
2614 }
2615
2616 bool runOnModule(Module &M) override {
2617 if (skipModule(M))
2618 return false;
2619
2620 auto &DL = M.getDataLayout();
2621 auto *TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
2622 auto LookupDomTree = [this](Function &F) -> DominatorTree & {
2623 return this->getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
2624 };
2625 return optimizeGlobalsInModule(M, DL, TLI, LookupDomTree);
2626 }
2627
2628 void getAnalysisUsage(AnalysisUsage &AU) const override {
2629 AU.addRequired<TargetLibraryInfoWrapperPass>();
2630 AU.addRequired<DominatorTreeWrapperPass>();
2631 }
2632};
2633}
2634
2635char GlobalOptLegacyPass::ID = 0;
2636INITIALIZE_PASS_BEGIN(GlobalOptLegacyPass, "globalopt",
2637 "Global Variable Optimizer", false, false)
2638INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
2639INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
2640INITIALIZE_PASS_END(GlobalOptLegacyPass, "globalopt",
2641 "Global Variable Optimizer", false, false)
2642
2643ModulePass *llvm::createGlobalOptimizerPass() {
2644 return new GlobalOptLegacyPass();
2645}