blob: 2ccae5755975bac818f8cffe58eaffc7aecf5e08 [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"
Victor Leschuk56b03d02017-08-04 04:51:15 +000032#include "llvm/IR/DIBuilder.h"
James Molloy9c7d4d82015-11-15 14:21:37 +000033#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000034#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/Instructions.h"
36#include "llvm/IR/IntrinsicInst.h"
37#include "llvm/IR/Module.h"
38#include "llvm/IR/Operator.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000039#include "llvm/IR/ValueHandle.h"
Chris Lattner25db5802004-10-07 04:16:33 +000040#include "llvm/Pass.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000041#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000042#include "llvm/Support/ErrorHandling.h"
Chris Lattner67ca6f632008-04-26 07:40:11 +000043#include "llvm/Support/MathExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000044#include "llvm/Support/raw_ostream.h"
Justin Bogner1a075012016-04-26 00:28:01 +000045#include "llvm/Transforms/IPO.h"
Nico Weber4b2acde2014-05-02 18:35:25 +000046#include "llvm/Transforms/Utils/CtorUtils.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000047#include "llvm/Transforms/Utils/Evaluator.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000048#include "llvm/Transforms/Utils/GlobalStatus.h"
David Majnemer522a9112016-07-22 04:54:44 +000049#include "llvm/Transforms/Utils/Local.h"
Chris Lattner25db5802004-10-07 04:16:33 +000050#include <algorithm>
51using namespace llvm;
52
Chandler Carruth964daaa2014-04-22 02:55:47 +000053#define DEBUG_TYPE "globalopt"
54
Chris Lattner1631bcb2006-12-19 22:09:18 +000055STATISTIC(NumMarked , "Number of globals marked constant");
Rafael Espindolafc355bc2011-01-19 16:32:21 +000056STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
Chris Lattner1631bcb2006-12-19 22:09:18 +000057STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
58STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
59STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
60STATISTIC(NumDeleted , "Number of globals deleted");
Chris Lattner1631bcb2006-12-19 22:09:18 +000061STATISTIC(NumGlobUses , "Number of global uses devirtualized");
Alexey Samsonova1944e62013-10-07 19:03:24 +000062STATISTIC(NumLocalized , "Number of globals localized");
Chris Lattner1631bcb2006-12-19 22:09:18 +000063STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
64STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
65STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands573b3f82008-02-16 20:56:04 +000066STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sandsb3f27882009-02-15 09:56:08 +000067STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
68STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Anders Carlssonee6bc702011-03-20 17:59:11 +000069STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed");
Chris Lattner25db5802004-10-07 04:16:33 +000070
James Molloyea31ad32015-11-13 11:05:07 +000071/// Is this global variable possibly used by a leak checker as a root? If so,
72/// we might not really want to eliminate the stores to it.
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +000073static bool isLeakCheckerRoot(GlobalVariable *GV) {
74 // A global variable is a root if it is a pointer, or could plausibly contain
75 // a pointer. There are two challenges; one is that we could have a struct
76 // the has an inner member which is a pointer. We recurse through the type to
77 // detect these (up to a point). The other is that we may actually be a union
78 // of a pointer and another type, and so our LLVM type is an integer which
79 // gets converted into a pointer, or our type is an [i8 x #] with a pointer
80 // potentially contained here.
81
82 if (GV->hasPrivateLinkage())
83 return false;
84
85 SmallVector<Type *, 4> Types;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +000086 Types.push_back(GV->getValueType());
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +000087
88 unsigned Limit = 20;
89 do {
90 Type *Ty = Types.pop_back_val();
91 switch (Ty->getTypeID()) {
92 default: break;
93 case Type::PointerTyID: return true;
94 case Type::ArrayTyID:
95 case Type::VectorTyID: {
96 SequentialType *STy = cast<SequentialType>(Ty);
97 Types.push_back(STy->getElementType());
98 break;
99 }
100 case Type::StructTyID: {
101 StructType *STy = cast<StructType>(Ty);
102 if (STy->isOpaque()) return true;
103 for (StructType::element_iterator I = STy->element_begin(),
104 E = STy->element_end(); I != E; ++I) {
105 Type *InnerTy = *I;
106 if (isa<PointerType>(InnerTy)) return true;
107 if (isa<CompositeType>(InnerTy))
108 Types.push_back(InnerTy);
109 }
110 break;
111 }
112 }
113 if (--Limit == 0) return true;
114 } while (!Types.empty());
115 return false;
116}
117
118/// Given a value that is stored to a global but never read, determine whether
119/// it's safe to remove the store and the chain of computation that feeds the
120/// store.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000121static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000122 do {
123 if (isa<Constant>(V))
124 return true;
125 if (!V->hasOneUse())
126 return false;
Nick Lewycky7d0f1102012-07-25 21:19:40 +0000127 if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
128 isa<GlobalValue>(V))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000129 return false;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000130 if (isAllocationFn(V, TLI))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000131 return true;
132
133 Instruction *I = cast<Instruction>(V);
134 if (I->mayHaveSideEffects())
135 return false;
136 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
137 if (!GEP->hasAllConstantIndices())
138 return false;
139 } else if (I->getNumOperands() != 1) {
140 return false;
141 }
142
143 V = I->getOperand(0);
144 } while (1);
145}
146
James Molloyea31ad32015-11-13 11:05:07 +0000147/// This GV is a pointer root. Loop over all users of the global and clean up
148/// any that obviously don't assign the global a value that isn't dynamically
149/// allocated.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000150static bool CleanupPointerRootUsers(GlobalVariable *GV,
151 const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000152 // A brief explanation of leak checkers. The goal is to find bugs where
153 // pointers are forgotten, causing an accumulating growth in memory
154 // usage over time. The common strategy for leak checkers is to whitelist the
155 // memory pointed to by globals at exit. This is popular because it also
156 // solves another problem where the main thread of a C++ program may shut down
157 // before other threads that are still expecting to use those globals. To
158 // handle that case, we expect the program may create a singleton and never
159 // destroy it.
160
161 bool Changed = false;
162
163 // If Dead[n].first is the only use of a malloc result, we can delete its
164 // chain of computation and the store to the global in Dead[n].second.
165 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
166
167 // Constants can't be pointers to dynamically allocated memory.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000168 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end();
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000169 UI != E;) {
170 User *U = *UI++;
171 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
172 Value *V = SI->getValueOperand();
173 if (isa<Constant>(V)) {
174 Changed = true;
175 SI->eraseFromParent();
176 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
177 if (I->hasOneUse())
178 Dead.push_back(std::make_pair(I, SI));
179 }
180 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
181 if (isa<Constant>(MSI->getValue())) {
182 Changed = true;
183 MSI->eraseFromParent();
184 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
185 if (I->hasOneUse())
186 Dead.push_back(std::make_pair(I, MSI));
187 }
188 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
189 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
190 if (MemSrc && MemSrc->isConstant()) {
191 Changed = true;
192 MTI->eraseFromParent();
193 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
194 if (I->hasOneUse())
195 Dead.push_back(std::make_pair(I, MTI));
196 }
197 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
198 if (CE->use_empty()) {
199 CE->destroyConstant();
200 Changed = true;
201 }
202 } else if (Constant *C = dyn_cast<Constant>(U)) {
Rafael Espindola27797ba2013-10-17 18:06:32 +0000203 if (isSafeToDestroyConstant(C)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000204 C->destroyConstant();
205 // This could have invalidated UI, start over from scratch.
206 Dead.clear();
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000207 CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000208 return true;
209 }
210 }
211 }
212
213 for (int i = 0, e = Dead.size(); i != e; ++i) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000214 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000215 Dead[i].second->eraseFromParent();
216 Instruction *I = Dead[i].first;
217 do {
Michael Gottesman2a654272013-01-11 23:08:52 +0000218 if (isAllocationFn(I, TLI))
219 break;
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000220 Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
221 if (!J)
222 break;
223 I->eraseFromParent();
224 I = J;
Nick Lewycky38be9312012-07-24 21:33:00 +0000225 } while (1);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000226 I->eraseFromParent();
227 }
228 }
229
230 return Changed;
231}
232
James Molloyea31ad32015-11-13 11:05:07 +0000233/// We just marked GV constant. Loop over all users of the global, cleaning up
234/// the obvious ones. This is largely just a quick scan over the use list to
235/// clean up the easy and obvious cruft. This returns true if it made a change.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000236static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
Mehdi Amini46a43552015-03-04 18:43:29 +0000237 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000238 TargetLibraryInfo *TLI) {
Chris Lattnercb9f1522004-10-10 16:43:46 +0000239 bool Changed = false;
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000240 // Note that we need to use a weak value handle for the worklist items. When
241 // we delete a constant array, we may also be holding pointer to one of its
242 // elements (or an element of one of its elements if we're dealing with an
243 // array of arrays) in the worklist.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +0000244 SmallVector<WeakTrackingVH, 8> WorkList(V->user_begin(), V->user_end());
Bill Wendling88d06c32013-04-02 08:16:45 +0000245 while (!WorkList.empty()) {
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000246 Value *UV = WorkList.pop_back_val();
247 if (!UV)
248 continue;
249
250 User *U = cast<User>(UV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000251
Chris Lattner25db5802004-10-07 04:16:33 +0000252 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000253 if (Init) {
254 // Replace the load with the initializer.
255 LI->replaceAllUsesWith(Init);
256 LI->eraseFromParent();
257 Changed = true;
258 }
Chris Lattner25db5802004-10-07 04:16:33 +0000259 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
260 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000261 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000262 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000263 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
264 if (CE->getOpcode() == Instruction::GetElementPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000265 Constant *SubInit = nullptr;
Chris Lattner46d9ff082005-09-26 07:34:35 +0000266 if (Init)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000267 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000268 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI);
Matt Arsenault461c8e02014-01-02 20:01:43 +0000269 } else if ((CE->getOpcode() == Instruction::BitCast &&
270 CE->getType()->isPointerTy()) ||
271 CE->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000272 // Pointer cast, delete any stores and memsets to the global.
Craig Topperf40110f2014-04-25 05:29:35 +0000273 Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI);
Chris Lattner7561ca12005-02-27 18:58:52 +0000274 }
275
276 if (CE->use_empty()) {
277 CE->destroyConstant();
278 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000279 }
280 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000281 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
282 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
283 // and will invalidate our notion of what Init is.
Craig Topperf40110f2014-04-25 05:29:35 +0000284 Constant *SubInit = nullptr;
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000285 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
Mehdi Amini46a43552015-03-04 18:43:29 +0000286 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000287 ConstantFoldInstruction(GEP, DL, TLI));
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000288 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000289 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Benjamin Krameraa9e4a52012-03-28 14:50:09 +0000290
291 // If the initializer is an all-null value and we have an inbounds GEP,
292 // we already know what the result of any load from that GEP is.
293 // TODO: Handle splats.
294 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
Eduard Burtescu19eb0312016-01-19 17:28:00 +0000295 SubInit = Constant::getNullValue(GEP->getResultElementType());
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000296 }
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000297 Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000298
Chris Lattnercb9f1522004-10-10 16:43:46 +0000299 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000300 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000301 Changed = true;
302 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000303 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
304 if (MI->getRawDest() == V) {
305 MI->eraseFromParent();
306 Changed = true;
307 }
308
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000309 } else if (Constant *C = dyn_cast<Constant>(U)) {
310 // If we have a chain of dead constantexprs or other things dangling from
311 // us, and if they are all dead, nuke them without remorse.
Rafael Espindola27797ba2013-10-17 18:06:32 +0000312 if (isSafeToDestroyConstant(C)) {
Devang Pateld926aaa2009-03-06 01:37:41 +0000313 C->destroyConstant();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000314 CleanupConstantGlobalUsers(V, Init, DL, TLI);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000315 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000316 }
Chris Lattner25db5802004-10-07 04:16:33 +0000317 }
318 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000319 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000320}
321
James Molloyea31ad32015-11-13 11:05:07 +0000322/// Return true if the specified instruction is a safe user of a derived
323/// expression from a global that we want to SROA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000324static bool isSafeSROAElementUse(Value *V) {
325 // We might have a dead and dangling constant hanging off of here.
326 if (Constant *C = dyn_cast<Constant>(V))
Rafael Espindola27797ba2013-10-17 18:06:32 +0000327 return isSafeToDestroyConstant(C);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000328
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000329 Instruction *I = dyn_cast<Instruction>(V);
330 if (!I) return false;
331
332 // Loads are ok.
333 if (isa<LoadInst>(I)) return true;
334
335 // Stores *to* the pointer are ok.
336 if (StoreInst *SI = dyn_cast<StoreInst>(I))
337 return SI->getOperand(0) != V;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000338
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000339 // Otherwise, it must be a GEP.
340 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
Craig Topperf40110f2014-04-25 05:29:35 +0000341 if (!GEPI) return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000342
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000343 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
344 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
345 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000346
Chandler Carruthcdf47882014-03-09 03:16:01 +0000347 for (User *U : GEPI->users())
348 if (!isSafeSROAElementUse(U))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000349 return false;
Chris Lattnerab053722008-01-14 01:31:05 +0000350 return true;
351}
352
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000353
James Molloyea31ad32015-11-13 11:05:07 +0000354/// U is a direct user of the specified global value. Look at it and its uses
355/// and decide whether it is safe to SROA this global.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000356static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
357 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000358 if (!isa<GetElementPtrInst>(U) &&
359 (!isa<ConstantExpr>(U) ||
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000360 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
361 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000362
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000363 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
364 // don't like < 3 operand CE's, and we don't like non-constant integer
365 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
366 // value of C.
367 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
368 !cast<Constant>(U->getOperand(1))->isNullValue() ||
369 !isa<ConstantInt>(U->getOperand(2)))
370 return false;
371
372 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
373 ++GEPI; // Skip over the pointer index.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000374
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000375 // If this is a use of an array allocation, do a bit more checking for sanity.
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000376 if (GEPI.isSequential()) {
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000377 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000378
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000379 // Check to make sure that index falls within the array. If not,
380 // something funny is going on, so we won't do the optimization.
381 //
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000382 if (GEPI.isBoundedSequential() &&
383 Idx->getZExtValue() >= GEPI.getSequentialNumElements())
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000384 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000385
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000386 // We cannot scalar repl this level of the array unless any array
387 // sub-indices are in-range constants. In particular, consider:
388 // A[0][i]. We cannot know that the user isn't doing invalid things like
389 // allowing i to index an out-of-range subscript that accesses A[1].
390 //
391 // Scalar replacing *just* the outer index of the array is probably not
392 // going to be a win anyway, so just give up.
393 for (++GEPI; // Skip array index.
Dan Gohman82ac81b2009-08-18 14:58:19 +0000394 GEPI != E;
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000395 ++GEPI) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000396 if (GEPI.isStruct())
Dan Gohman82ac81b2009-08-18 14:58:19 +0000397 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000398
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000399 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000400 if (!IdxVal ||
401 (GEPI.isBoundedSequential() &&
402 IdxVal->getZExtValue() >= GEPI.getSequentialNumElements()))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000403 return false;
404 }
405 }
406
Davide Italianoc163fac2017-08-09 09:23:29 +0000407 return llvm::all_of(U->users(),
408 [](User *UU) { return isSafeSROAElementUse(UU); });
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000409}
410
James Molloyea31ad32015-11-13 11:05:07 +0000411/// Look at all uses of the global and decide whether it is safe for us to
412/// perform this transformation.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000413static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000414 for (User *U : GV->users())
415 if (!IsUserOfGlobalSafeForSRA(U, GV))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000416 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000417
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000418 return true;
419}
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000420
Victor Leschuk56b03d02017-08-04 04:51:15 +0000421/// Copy over the debug info for a variable to its SRA replacements.
422static void transferSRADebugInfo(GlobalVariable *GV, GlobalVariable *NGV,
423 uint64_t FragmentOffsetInBits,
424 uint64_t FragmentSizeInBits) {
425 DIBuilder DIB(*GV->getParent(), /*AllowUnresolved*/ false);
426 SmallVector<DIGlobalVariableExpression *, 1> GVs;
427 GV->getDebugInfo(GVs);
428 for (auto *GVE : GVs) {
429 DIVariable *Var = GVE->getVariable();
430 DIExpression *Expr = GVE->getExpression();
431 DIExpression *NExpr = DIB.createFragmentExpression(
432 FragmentOffsetInBits, FragmentSizeInBits, Expr);
433 auto *NGVE = DIGlobalVariableExpression::get(GVE->getContext(), Var, NExpr);
434 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;
Chris Lattnerabab0712004-10-08 17:32:09 +0000463 NewGlobals.reserve(STy->getNumElements());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000464 const StructLayout &Layout = *DL.getStructLayout(STy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000465 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000466 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000467 assert(In && "Couldn't get element of initializer?");
Chris Lattner46b5c642009-11-06 04:27:31 +0000468 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000469 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000470 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000471 GV->getThreadLocalMode(),
Owen Anderson5948fdf2009-07-08 01:26:06 +0000472 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000473 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000474 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000475 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000476 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000477
Chris Lattner67ca6f632008-04-26 07:40:11 +0000478 // Calculate the known alignment of the field. If the original aggregate
479 // had 256 byte alignment for example, something might depend on that:
480 // propagate info to each field.
481 uint64_t FieldOffset = Layout.getElementOffset(i);
482 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000483 if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i)))
Chris Lattner67ca6f632008-04-26 07:40:11 +0000484 NGV->setAlignment(NewAlign);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000485
486 // Copy over the debug info for the variable.
487 FragmentOffset = alignTo(FragmentOffset, NewAlign);
488 uint64_t Size = DL.getTypeSizeInBits(NGV->getValueType());
489 transferSRADebugInfo(GV, NGV, FragmentOffset, Size);
490 FragmentOffset += Size;
Chris Lattnerabab0712004-10-08 17:32:09 +0000491 }
Chris Lattner229907c2011-07-18 04:54:35 +0000492 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
Peter Collingbournebc070522016-12-02 03:20:58 +0000493 unsigned NumElements = STy->getNumElements();
Chris Lattner25169ca2005-02-23 16:53:04 +0000494 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Craig Topperf40110f2014-04-25 05:29:35 +0000495 return nullptr; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000496 NewGlobals.reserve(NumElements);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000497 auto ElTy = STy->getElementType();
498 uint64_t EltSize = DL.getTypeAllocSize(ElTy);
499 unsigned EltAlign = DL.getABITypeAlignment(ElTy);
500 uint64_t FragmentSizeInBits = DL.getTypeSizeInBits(ElTy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000501 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000502 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000503 assert(In && "Couldn't get element of initializer?");
504
Chris Lattner46b5c642009-11-06 04:27:31 +0000505 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000506 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000507 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000508 GV->getThreadLocalMode(),
Owen Andersonb17f3292009-07-08 19:03:57 +0000509 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000510 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000511 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000512 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000513 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000514
Chris Lattner67ca6f632008-04-26 07:40:11 +0000515 // Calculate the known alignment of the field. If the original aggregate
516 // had 256 byte alignment for example, something might depend on that:
517 // propagate info to each field.
518 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
519 if (NewAlign > EltAlign)
520 NGV->setAlignment(NewAlign);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000521
522 transferSRADebugInfo(GV, NGV, FragmentSizeInBits * i, FragmentSizeInBits);
Chris Lattnerabab0712004-10-08 17:32:09 +0000523 }
524 }
525
526 if (NewGlobals.empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000527 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000528
James Molloyef607a22015-10-28 14:30:53 +0000529 DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n");
Chris Lattner004e2502004-10-11 05:54:41 +0000530
Chris Lattner46b5c642009-11-06 04:27:31 +0000531 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattnerabab0712004-10-08 17:32:09 +0000532
533 // Loop over all of the uses of the global, replacing the constantexpr geps,
534 // with smaller constantexpr geps or direct references.
535 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000536 User *GEP = GV->user_back();
Chris Lattner004e2502004-10-11 05:54:41 +0000537 assert(((isa<ConstantExpr>(GEP) &&
538 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
539 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000540
Chris Lattnerabab0712004-10-08 17:32:09 +0000541 // Ignore the 1th operand, which has to be zero or else the program is quite
542 // broken (undefined). Get the 2nd operand, which is the structure or array
543 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000544 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000545 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
546
Chris Lattner004e2502004-10-11 05:54:41 +0000547 Value *NewPtr = NewGlobals[Val];
David Blaikied9d900c2015-05-07 17:28:58 +0000548 Type *NewTy = NewGlobals[Val]->getValueType();
Chris Lattnerabab0712004-10-08 17:32:09 +0000549
550 // Form a shorter GEP if needed.
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000551 if (GEP->getNumOperands() > 3) {
Chris Lattner004e2502004-10-11 05:54:41 +0000552 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000553 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000554 Idxs.push_back(NullInt);
555 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
556 Idxs.push_back(CE->getOperand(i));
David Blaikie4a2e73b2015-04-02 18:55:32 +0000557 NewPtr =
558 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
Chris Lattner004e2502004-10-11 05:54:41 +0000559 } else {
560 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000561 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000562 Idxs.push_back(NullInt);
563 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
564 Idxs.push_back(GEPI->getOperand(i));
David Blaikie741c8f82015-03-14 01:53:18 +0000565 NewPtr = GetElementPtrInst::Create(
David Blaikied9d900c2015-05-07 17:28:58 +0000566 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
Chris Lattner004e2502004-10-11 05:54:41 +0000567 }
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000568 }
Chris Lattner004e2502004-10-11 05:54:41 +0000569 GEP->replaceAllUsesWith(NewPtr);
570
571 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000572 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000573 else
574 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000575 }
576
Chris Lattner73ad73e2004-10-08 20:25:55 +0000577 // Delete the old global, now that it is dead.
578 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000579 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000580
581 // Loop over the new globals array deleting any globals that are obviously
582 // dead. This can arise due to scalarization of a structure or an array that
583 // has elements that are dead.
584 unsigned FirstGlobal = 0;
585 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
586 if (NewGlobals[i]->use_empty()) {
587 Globals.erase(NewGlobals[i]);
588 if (FirstGlobal == i) ++FirstGlobal;
589 }
590
Craig Topperf40110f2014-04-25 05:29:35 +0000591 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
Chris Lattnerabab0712004-10-08 17:32:09 +0000592}
593
James Molloyea31ad32015-11-13 11:05:07 +0000594/// Return true if all users of the specified value will trap if the value is
595/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
596/// reprocessing them.
Gabor Greif67972872010-04-06 19:24:18 +0000597static bool AllUsesOfValueWillTrapIfNull(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +0000598 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000599 for (const User *U : V->users())
Gabor Greif08355d62010-04-06 19:14:05 +0000600 if (isa<LoadInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000601 // Will trap.
Gabor Greif67972872010-04-06 19:24:18 +0000602 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000603 if (SI->getOperand(0) == V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000604 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000605 return false; // Storing the value.
606 }
Gabor Greif67972872010-04-06 19:24:18 +0000607 } else if (const CallInst *CI = dyn_cast<CallInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000608 if (CI->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000609 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000610 return false; // Not calling the ptr
611 }
Gabor Greif67972872010-04-06 19:24:18 +0000612 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000613 if (II->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000614 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000615 return false; // Not calling the ptr
616 }
Gabor Greif67972872010-04-06 19:24:18 +0000617 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000618 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000619 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000620 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000621 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000622 // If we've already seen this phi node, ignore it, it has already been
623 // checked.
David Blaikie70573dc2014-11-19 07:49:26 +0000624 if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
Jakob Stoklund Olesene27dc722010-01-29 23:54:14 +0000625 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000626 } else if (isa<ICmpInst>(U) &&
Chandler Carruthcdf47882014-03-09 03:16:01 +0000627 isa<ConstantPointerNull>(U->getOperand(1))) {
Nick Lewycky614fb942010-02-25 06:39:10 +0000628 // Ignore icmp X, null
Chris Lattner09a52722004-10-09 21:48:45 +0000629 } else {
Gabor Greif08355d62010-04-06 19:14:05 +0000630 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000631 return false;
632 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000633
Chris Lattner09a52722004-10-09 21:48:45 +0000634 return true;
635}
636
James Molloyea31ad32015-11-13 11:05:07 +0000637/// Return true if all uses of any loads from GV will trap if the loaded value
638/// is null. Note that this also permits comparisons of the loaded value
639/// against null, as a special case.
Gabor Greif67972872010-04-06 19:24:18 +0000640static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000641 for (const User *U : GV->users())
Gabor Greif67972872010-04-06 19:24:18 +0000642 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
643 SmallPtrSet<const PHINode*, 8> PHIs;
Chris Lattner2d2892e2007-09-13 16:30:19 +0000644 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner09a52722004-10-09 21:48:45 +0000645 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000646 } else if (isa<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000647 // Ignore stores to the global.
648 } else {
649 // We don't know or understand this user, bail out.
Gabor Greif08355d62010-04-06 19:14:05 +0000650 //cerr << "UNKNOWN USER OF GLOBAL!: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000651 return false;
652 }
Chris Lattner09a52722004-10-09 21:48:45 +0000653 return true;
654}
655
Chris Lattner46b5c642009-11-06 04:27:31 +0000656static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000657 bool Changed = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000658 for (auto UI = V->user_begin(), E = V->user_end(); UI != E; ) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000659 Instruction *I = cast<Instruction>(*UI++);
660 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
661 LI->setOperand(0, NewV);
662 Changed = true;
663 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
664 if (SI->getOperand(1) == V) {
665 SI->setOperand(1, NewV);
666 Changed = true;
667 }
668 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
Gabor Greif04397892010-04-06 18:45:08 +0000669 CallSite CS(I);
670 if (CS.getCalledValue() == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000671 // Calling through the pointer! Turn into a direct call, but be careful
672 // that the pointer is not also being passed as an argument.
Gabor Greif04397892010-04-06 18:45:08 +0000673 CS.setCalledFunction(NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000674 Changed = true;
675 bool PassedAsArg = false;
Gabor Greif04397892010-04-06 18:45:08 +0000676 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
677 if (CS.getArgument(i) == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000678 PassedAsArg = true;
Gabor Greif04397892010-04-06 18:45:08 +0000679 CS.setArgument(i, NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000680 }
681
682 if (PassedAsArg) {
683 // Being passed as an argument also. Be careful to not invalidate UI!
Chandler Carruthcdf47882014-03-09 03:16:01 +0000684 UI = V->user_begin();
Chris Lattnere42eb312004-10-10 23:14:11 +0000685 }
686 }
687 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
688 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Anderson487375e2009-07-29 18:55:55 +0000689 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner46b5c642009-11-06 04:27:31 +0000690 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000691 if (CI->use_empty()) {
692 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000693 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000694 }
695 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
696 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000697 SmallVector<Constant*, 8> Idxs;
698 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif3a9fba52008-05-29 01:59:18 +0000699 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
700 i != e; ++i)
701 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000702 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000703 else
704 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000705 if (Idxs.size() == GEPI->getNumOperands()-1)
David Blaikie4a2e73b2015-04-02 18:55:32 +0000706 Changed |= OptimizeAwayTrappingUsesOfValue(
707 GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs));
Chris Lattnere42eb312004-10-10 23:14:11 +0000708 if (GEPI->use_empty()) {
709 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000710 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000711 }
712 }
713 }
714
715 return Changed;
716}
717
718
James Molloyea31ad32015-11-13 11:05:07 +0000719/// The specified global has only one non-null value stored into it. If there
720/// are uses of the loaded value that would trap if the loaded value is
721/// dynamically null, then we know that they cannot be reachable with a null
722/// optimize away the load.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000723static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
Mehdi Amini46a43552015-03-04 18:43:29 +0000724 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000725 TargetLibraryInfo *TLI) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000726 bool Changed = false;
727
Chris Lattner2538eb62009-01-14 00:12:58 +0000728 // Keep track of whether we are able to remove all the uses of the global
729 // other than the store that defines it.
730 bool AllNonStoreUsesGone = true;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000731
Chris Lattnere42eb312004-10-10 23:14:11 +0000732 // Replace all uses of loads with uses of uses of the stored value.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000733 for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){
Chris Lattner2538eb62009-01-14 00:12:58 +0000734 User *GlobalUser = *GUI++;
735 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner46b5c642009-11-06 04:27:31 +0000736 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner2538eb62009-01-14 00:12:58 +0000737 // If we were able to delete all uses of the loads
738 if (LI->use_empty()) {
739 LI->eraseFromParent();
740 Changed = true;
741 } else {
742 AllNonStoreUsesGone = false;
743 }
744 } else if (isa<StoreInst>(GlobalUser)) {
745 // Ignore the store that stores "LV" to the global.
746 assert(GlobalUser->getOperand(1) == GV &&
747 "Must be storing *to* the global");
Chris Lattnere42eb312004-10-10 23:14:11 +0000748 } else {
Chris Lattner2538eb62009-01-14 00:12:58 +0000749 AllNonStoreUsesGone = false;
750
751 // If we get here we could have other crazy uses that are transitively
752 // loaded.
753 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
Benjamin Kramered843602012-09-28 10:01:27 +0000754 isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
755 isa<BitCastInst>(GlobalUser) ||
756 isa<GetElementPtrInst>(GlobalUser)) &&
Chris Lattner1a1acc22011-05-22 07:15:13 +0000757 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000758 }
Chris Lattner2538eb62009-01-14 00:12:58 +0000759 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000760
761 if (Changed) {
James Molloyef607a22015-10-28 14:30:53 +0000762 DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV << "\n");
Chris Lattnere42eb312004-10-10 23:14:11 +0000763 ++NumGlobUses;
764 }
765
Chris Lattnere42eb312004-10-10 23:14:11 +0000766 // If we nuked all of the loads, then none of the stores are needed either,
767 // nor is the global.
Chris Lattner2538eb62009-01-14 00:12:58 +0000768 if (AllNonStoreUsesGone) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000769 if (isLeakCheckerRoot(GV)) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000770 Changed |= CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000771 } else {
772 Changed = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000773 CleanupConstantGlobalUsers(GV, nullptr, DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000774 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000775 if (GV->use_empty()) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000776 DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
777 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000778 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000779 ++NumDeleted;
780 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000781 }
782 return Changed;
783}
784
James Molloyea31ad32015-11-13 11:05:07 +0000785/// Walk the use list of V, constant folding all of the instructions that are
786/// foldable.
Mehdi Amini46a43552015-03-04 18:43:29 +0000787static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000788 TargetLibraryInfo *TLI) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000789 for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
Chris Lattner004e2502004-10-11 05:54:41 +0000790 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000791 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
Chris Lattner004e2502004-10-11 05:54:41 +0000792 I->replaceAllUsesWith(NewC);
793
Chris Lattnerd6a44922005-02-01 01:23:31 +0000794 // Advance UI to the next non-I use to avoid invalidating it!
795 // Instructions could multiply use V.
796 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000797 ++UI;
David Majnemer522a9112016-07-22 04:54:44 +0000798 if (isInstructionTriviallyDead(I, TLI))
799 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000800 }
801}
802
James Molloyea31ad32015-11-13 11:05:07 +0000803/// This function takes the specified global variable, and transforms the
804/// program as if it always contained the result of the specified malloc.
805/// Because it is always the result of the specified malloc, there is no reason
806/// to actually DO the malloc. Instead, turn the malloc into a global, and any
807/// loads of GV as uses of the new global.
Mehdi Amini46a43552015-03-04 18:43:29 +0000808static GlobalVariable *
809OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
810 ConstantInt *NElements, const DataLayout &DL,
811 TargetLibraryInfo *TLI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000812 DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI << '\n');
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000813
Chris Lattner229907c2011-07-18 04:54:35 +0000814 Type *GlobalType;
Chris Lattner7939f792010-02-25 22:33:52 +0000815 if (NElements->getZExtValue() == 1)
816 GlobalType = AllocTy;
817 else
818 // If we have an array allocation, the global variable is of an array.
819 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez5d034492009-09-18 22:35:49 +0000820
821 // Create the new global variable. The contents of the malloc'd memory is
822 // undefined, so initialize with an undef value.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000823 GlobalVariable *NewGV = new GlobalVariable(
824 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage,
825 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr,
826 GV->getThreadLocalMode());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000827
Chris Lattner7939f792010-02-25 22:33:52 +0000828 // If there are bitcast users of the malloc (which is typical, usually we have
829 // a malloc + bitcast) then replace them with uses of the new global. Update
830 // other users to use the global as well.
Craig Topperf40110f2014-04-25 05:29:35 +0000831 BitCastInst *TheBC = nullptr;
Chris Lattner7939f792010-02-25 22:33:52 +0000832 while (!CI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000833 Instruction *User = cast<Instruction>(CI->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000834 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
835 if (BCI->getType() == NewGV->getType()) {
836 BCI->replaceAllUsesWith(NewGV);
837 BCI->eraseFromParent();
838 } else {
839 BCI->setOperand(0, NewGV);
840 }
841 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000842 if (!TheBC)
Chris Lattner7939f792010-02-25 22:33:52 +0000843 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
844 User->replaceUsesOfWith(CI, TheBC);
845 }
846 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000847
Victor Hernandez5d034492009-09-18 22:35:49 +0000848 Constant *RepValue = NewGV;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000849 if (NewGV->getType() != GV->getValueType())
850 RepValue = ConstantExpr::getBitCast(RepValue, GV->getValueType());
Victor Hernandez5d034492009-09-18 22:35:49 +0000851
852 // If there is a comparison against null, we will insert a global bool to
853 // keep track of whether the global was initialized yet or not.
854 GlobalVariable *InitBool =
Chris Lattner46b5c642009-11-06 04:27:31 +0000855 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez5d034492009-09-18 22:35:49 +0000856 GlobalValue::InternalLinkage,
Chris Lattner46b5c642009-11-06 04:27:31 +0000857 ConstantInt::getFalse(GV->getContext()),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000858 GV->getName()+".init", GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +0000859 bool InitBoolUsed = false;
860
861 // Loop over all uses of GV, processing them in turn.
Chris Lattner7939f792010-02-25 22:33:52 +0000862 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000863 if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) {
Victor Hernandez5d034492009-09-18 22:35:49 +0000864 // The global is initialized when the store to it occurs.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000865 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000866 SI->getOrdering(), SI->getSyncScopeID(), SI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000867 SI->eraseFromParent();
Chris Lattner7939f792010-02-25 22:33:52 +0000868 continue;
Victor Hernandez5d034492009-09-18 22:35:49 +0000869 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000870
Chandler Carruthcdf47882014-03-09 03:16:01 +0000871 LoadInst *LI = cast<LoadInst>(GV->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000872 while (!LI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000873 Use &LoadUse = *LI->use_begin();
874 ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser());
875 if (!ICI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000876 LoadUse = RepValue;
877 continue;
878 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000879
Chris Lattner7939f792010-02-25 22:33:52 +0000880 // Replace the cmp X, 0 with a use of the bool value.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000881 // Sink the load to where the compare was, if atomic rules allow us to.
882 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000883 LI->getOrdering(), LI->getSyncScopeID(),
Nick Lewycky52da72b2012-02-05 19:56:38 +0000884 LI->isUnordered() ? (Instruction*)ICI : LI);
Chris Lattner7939f792010-02-25 22:33:52 +0000885 InitBoolUsed = true;
886 switch (ICI->getPredicate()) {
887 default: llvm_unreachable("Unknown ICmp Predicate!");
888 case ICmpInst::ICMP_ULT:
889 case ICmpInst::ICMP_SLT: // X < null -> always false
890 LV = ConstantInt::getFalse(GV->getContext());
891 break;
892 case ICmpInst::ICMP_ULE:
893 case ICmpInst::ICMP_SLE:
894 case ICmpInst::ICMP_EQ:
895 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
896 break;
897 case ICmpInst::ICMP_NE:
898 case ICmpInst::ICMP_UGE:
899 case ICmpInst::ICMP_SGE:
900 case ICmpInst::ICMP_UGT:
901 case ICmpInst::ICMP_SGT:
902 break; // no change.
903 }
904 ICI->replaceAllUsesWith(LV);
905 ICI->eraseFromParent();
906 }
907 LI->eraseFromParent();
908 }
Victor Hernandez5d034492009-09-18 22:35:49 +0000909
910 // If the initialization boolean was used, insert it, otherwise delete it.
911 if (!InitBoolUsed) {
912 while (!InitBool->use_empty()) // Delete initializations
Chandler Carruthcdf47882014-03-09 03:16:01 +0000913 cast<StoreInst>(InitBool->user_back())->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000914 delete InitBool;
915 } else
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000916 GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
Victor Hernandez5d034492009-09-18 22:35:49 +0000917
Chris Lattner7939f792010-02-25 22:33:52 +0000918 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez5d034492009-09-18 22:35:49 +0000919 GV->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000920 CI->eraseFromParent();
921
922 // To further other optimizations, loop over all users of NewGV and try to
923 // constant prop them. This will promote GEP instructions with constant
924 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000925 ConstantPropUsersOf(NewGV, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000926 if (RepValue != NewGV)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000927 ConstantPropUsersOf(RepValue, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000928
929 return NewGV;
930}
931
James Molloyea31ad32015-11-13 11:05:07 +0000932/// Scan the use-list of V checking to make sure that there are no complex uses
933/// of V. We permit simple things like dereferencing the pointer, but not
934/// storing through the address, unless it is to the specified global.
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000935static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
936 const GlobalVariable *GV,
Craig Topper71b7b682014-08-21 05:55:13 +0000937 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000938 for (const User *U : V->users()) {
939 const Instruction *Inst = cast<Instruction>(U);
Gabor Greif08355d62010-04-06 19:14:05 +0000940
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000941 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
942 continue; // Fine, ignore.
943 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000944
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000945 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000946 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
947 return false; // Storing the pointer itself... bad.
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000948 continue; // Otherwise, storing through it, or storing into GV... fine.
949 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000950
Chris Lattnerb9801ff2010-04-10 18:19:22 +0000951 // Must index into the array and into the struct.
952 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000953 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000954 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000955 continue;
956 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000957
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000958 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattner6eed0e72007-09-13 16:37:20 +0000959 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
960 // cycles.
David Blaikie70573dc2014-11-19 07:49:26 +0000961 if (PHIs.insert(PN).second)
Chris Lattner5d13fb532007-09-14 03:41:21 +0000962 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
963 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000964 continue;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000965 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000966
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000967 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000968 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
969 return false;
970 continue;
971 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000972
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000973 return false;
974 }
Chris Lattnerc0677c02004-12-02 07:11:07 +0000975 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000976}
977
James Molloyea31ad32015-11-13 11:05:07 +0000978/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
979/// allocation into loads from the global and uses of the resultant pointer.
980/// Further, delete the store into GV. This assumes that these value pass the
Chris Lattner24d3d422006-09-30 23:32:09 +0000981/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000982static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
Chris Lattner24d3d422006-09-30 23:32:09 +0000983 GlobalVariable *GV) {
984 while (!Alloc->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000985 Instruction *U = cast<Instruction>(*Alloc->user_begin());
Chris Lattnerba98f892007-09-13 18:00:31 +0000986 Instruction *InsertPt = U;
Chris Lattner24d3d422006-09-30 23:32:09 +0000987 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
988 // If this is the store of the allocation into the global, remove it.
989 if (SI->getOperand(1) == GV) {
990 SI->eraseFromParent();
991 continue;
992 }
Chris Lattnerba98f892007-09-13 18:00:31 +0000993 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
994 // Insert the load in the corresponding predecessor, not right before the
995 // PHI.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000996 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
Chris Lattner49e3bdc2008-12-15 21:44:34 +0000997 } else if (isa<BitCastInst>(U)) {
998 // Must be bitcast between the malloc and store to initialize the global.
999 ReplaceUsesOfMallocWithGlobal(U, GV);
1000 U->eraseFromParent();
1001 continue;
1002 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
1003 // If this is a "GEP bitcast" and the user is a store to the global, then
1004 // just process it as a bitcast.
1005 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +00001006 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back()))
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001007 if (SI->getOperand(1) == GV) {
1008 // Must be bitcast GEP between the malloc and store to initialize
1009 // the global.
1010 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1011 GEPI->eraseFromParent();
1012 continue;
1013 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001014 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001015
Chris Lattner24d3d422006-09-30 23:32:09 +00001016 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnerba98f892007-09-13 18:00:31 +00001017 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner24d3d422006-09-30 23:32:09 +00001018 U->replaceUsesOfWith(Alloc, NL);
1019 }
1020}
1021
James Molloyea31ad32015-11-13 11:05:07 +00001022/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
1023/// perform heap SRA on. This permits GEP's that index through the array and
1024/// struct field, icmps of null, and PHIs.
Gabor Greif5d5db532010-04-01 08:21:08 +00001025static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +00001026 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1027 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
Chris Lattner56b55382008-12-16 21:24:51 +00001028 // We permit two users of the load: setcc comparing against the null
1029 // pointer, and a getelementptr of a specific form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001030 for (const User *U : V->users()) {
1031 const Instruction *UI = cast<Instruction>(U);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001032
Chris Lattner56b55382008-12-16 21:24:51 +00001033 // Comparison against null is ok.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001034 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001035 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1036 return false;
1037 continue;
1038 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001039
Chris Lattner56b55382008-12-16 21:24:51 +00001040 // getelementptr is also ok, but only a simple form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001041 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001042 // Must index into the array and into the struct.
1043 if (GEPI->getNumOperands() < 3)
1044 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001045
Chris Lattner56b55382008-12-16 21:24:51 +00001046 // Otherwise the GEP is ok.
1047 continue;
1048 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001049
Chandler Carruthcdf47882014-03-09 03:16:01 +00001050 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001051 if (!LoadUsingPHIsPerLoad.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001052 // This means some phi nodes are dependent on each other.
1053 // Avoid infinite looping!
1054 return false;
David Blaikie70573dc2014-11-19 07:49:26 +00001055 if (!LoadUsingPHIs.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001056 // If we have already analyzed this PHI, then it is safe.
Chris Lattner56b55382008-12-16 21:24:51 +00001057 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001058
Chris Lattner222ef4c2008-12-17 05:28:49 +00001059 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng83689442009-06-02 00:56:07 +00001060 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1061 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001062 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001063
Chris Lattner56b55382008-12-16 21:24:51 +00001064 continue;
Chris Lattner24d3d422006-09-30 23:32:09 +00001065 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001066
Chris Lattner56b55382008-12-16 21:24:51 +00001067 // Otherwise we don't know what this is, not ok.
1068 return false;
1069 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001070
Chris Lattner56b55382008-12-16 21:24:51 +00001071 return true;
1072}
1073
1074
James Molloyea31ad32015-11-13 11:05:07 +00001075/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1076/// return true.
Gabor Greif5d5db532010-04-01 08:21:08 +00001077static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez5d034492009-09-18 22:35:49 +00001078 Instruction *StoredVal) {
Gabor Greif5d5db532010-04-01 08:21:08 +00001079 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1080 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001081 for (const User *U : GV->users())
1082 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
Evan Cheng83689442009-06-02 00:56:07 +00001083 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1084 LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001085 return false;
Evan Cheng83689442009-06-02 00:56:07 +00001086 LoadUsingPHIsPerLoad.clear();
1087 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001088
Chris Lattner222ef4c2008-12-17 05:28:49 +00001089 // If we reach here, we know that all uses of the loads and transitive uses
1090 // (through PHI nodes) are simple enough to transform. However, we don't know
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001091 // that all inputs the to the PHI nodes are in the same equivalence sets.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001092 // Check to verify that all operands of the PHIs are either PHIS that can be
1093 // transformed, loads from GV, or MI itself.
Craig Topper46276792014-08-24 23:23:06 +00001094 for (const PHINode *PN : LoadUsingPHIs) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001095 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1096 Value *InVal = PN->getIncomingValue(op);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001097
Chris Lattner222ef4c2008-12-17 05:28:49 +00001098 // PHI of the stored value itself is ok.
Victor Hernandez5d034492009-09-18 22:35:49 +00001099 if (InVal == StoredVal) continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001100
Gabor Greif5d5db532010-04-01 08:21:08 +00001101 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001102 // One of the PHIs in our set is (optimistically) ok.
1103 if (LoadUsingPHIs.count(InPN))
1104 continue;
1105 return false;
1106 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001107
Chris Lattner222ef4c2008-12-17 05:28:49 +00001108 // Load from GV is ok.
Gabor Greif5d5db532010-04-01 08:21:08 +00001109 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattner222ef4c2008-12-17 05:28:49 +00001110 if (LI->getOperand(0) == GV)
1111 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001112
Chris Lattner222ef4c2008-12-17 05:28:49 +00001113 // UNDEF? NULL?
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001114
Chris Lattner222ef4c2008-12-17 05:28:49 +00001115 // Anything else is rejected.
1116 return false;
1117 }
1118 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001119
Chris Lattner24d3d422006-09-30 23:32:09 +00001120 return true;
1121}
1122
Chris Lattner222ef4c2008-12-17 05:28:49 +00001123static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1124 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001125 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001126 std::vector<Value*> &FieldVals = InsertedScalarizedValues[V];
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001127
Chris Lattner222ef4c2008-12-17 05:28:49 +00001128 if (FieldNo >= FieldVals.size())
1129 FieldVals.resize(FieldNo+1);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001130
Chris Lattner222ef4c2008-12-17 05:28:49 +00001131 // If we already have this value, just reuse the previously scalarized
1132 // version.
1133 if (Value *FieldVal = FieldVals[FieldNo])
1134 return FieldVal;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001135
Chris Lattner222ef4c2008-12-17 05:28:49 +00001136 // Depending on what instruction this is, we have several cases.
1137 Value *Result;
1138 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1139 // This is a scalarized version of the load from the global. Just create
1140 // a new Load of the scalarized global.
1141 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1142 InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001143 PHIsToRewrite),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001144 LI->getName()+".f"+Twine(FieldNo), LI);
David Blaikie741c8f82015-03-14 01:53:18 +00001145 } else {
1146 PHINode *PN = cast<PHINode>(V);
Chris Lattner222ef4c2008-12-17 05:28:49 +00001147 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1148 // field.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001149
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001150 PointerType *PTy = cast<PointerType>(PN->getType());
1151 StructType *ST = cast<StructType>(PTy->getElementType());
1152
1153 unsigned AS = PTy->getAddressSpace();
Jay Foade0938d82011-03-30 11:19:20 +00001154 PHINode *NewPN =
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001155 PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS),
Jay Foad52131342011-03-30 11:28:46 +00001156 PN->getNumIncomingValues(),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001157 PN->getName()+".f"+Twine(FieldNo), PN);
Jay Foade0938d82011-03-30 11:19:20 +00001158 Result = NewPN;
Chris Lattner222ef4c2008-12-17 05:28:49 +00001159 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
Chris Lattner222ef4c2008-12-17 05:28:49 +00001160 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001161
Chris Lattner222ef4c2008-12-17 05:28:49 +00001162 return FieldVals[FieldNo] = Result;
Chris Lattnerba98f892007-09-13 18:00:31 +00001163}
1164
James Molloyea31ad32015-11-13 11:05:07 +00001165/// Given a load instruction and a value derived from the load, rewrite the
1166/// derived value to use the HeapSRoA'd load.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001167static void RewriteHeapSROALoadUser(Instruction *LoadUser,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001168 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001169 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001170 // If this is a comparison against null, handle it.
1171 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1172 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1173 // If we have a setcc of the loaded pointer, we can use a setcc of any
1174 // field.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001175 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner46b5c642009-11-06 04:27:31 +00001176 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001177
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001178 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001179 Constant::getNullValue(NPtr->getType()),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001180 SCI->getName());
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001181 SCI->replaceAllUsesWith(New);
1182 SCI->eraseFromParent();
1183 return;
1184 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001185
Chris Lattner222ef4c2008-12-17 05:28:49 +00001186 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnerba98f892007-09-13 18:00:31 +00001187 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1188 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1189 && "Unexpected GEPI!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001190
Chris Lattnerba98f892007-09-13 18:00:31 +00001191 // Load the pointer for this field.
1192 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner222ef4c2008-12-17 05:28:49 +00001193 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner46b5c642009-11-06 04:27:31 +00001194 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001195
Chris Lattnerba98f892007-09-13 18:00:31 +00001196 // Create the new GEP idx vector.
1197 SmallVector<Value*, 8> GEPIdx;
1198 GEPIdx.push_back(GEPI->getOperand(1));
1199 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001200
David Blaikie22319eb2015-03-14 19:24:04 +00001201 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx,
Gabor Greife9ecc682008-04-06 20:25:17 +00001202 GEPI->getName(), GEPI);
Chris Lattnerba98f892007-09-13 18:00:31 +00001203 GEPI->replaceAllUsesWith(NGEPI);
1204 GEPI->eraseFromParent();
1205 return;
1206 }
Chris Lattner011f91b2007-09-13 21:31:36 +00001207
Chris Lattner222ef4c2008-12-17 05:28:49 +00001208 // Recursively transform the users of PHI nodes. This will lazily create the
1209 // PHIs that are needed for individual elements. Keep track of what PHIs we
1210 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1211 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1212 // already been seen first by another load, so its uses have already been
1213 // processed.
1214 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner5cf753c2011-07-21 06:21:31 +00001215 if (!InsertedScalarizedValues.insert(std::make_pair(PN,
1216 std::vector<Value*>())).second)
1217 return;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001218
Chris Lattner222ef4c2008-12-17 05:28:49 +00001219 // If this is the first time we've seen this PHI, recursively process all
1220 // users.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001221 for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001222 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001223 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001224 }
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001225}
1226
James Molloyea31ad32015-11-13 11:05:07 +00001227/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1228/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1229/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001230static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001231 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001232 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001233 for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001234 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001235 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001236 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001237
Chris Lattner222ef4c2008-12-17 05:28:49 +00001238 if (Load->use_empty()) {
1239 Load->eraseFromParent();
1240 InsertedScalarizedValues.erase(Load);
1241 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001242}
1243
James Molloyea31ad32015-11-13 11:05:07 +00001244/// CI is an allocation of an array of structures. Break it up into multiple
1245/// allocations of arrays of the fields.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001246static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
Mehdi Amini46a43552015-03-04 18:43:29 +00001247 Value *NElems, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001248 const TargetLibraryInfo *TLI) {
David Greene44cb8ad2010-01-05 01:28:05 +00001249 DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI << '\n');
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001250 Type *MAT = getMallocAllocatedType(CI, TLI);
Chris Lattner229907c2011-07-18 04:54:35 +00001251 StructType *STy = cast<StructType>(MAT);
Victor Hernandez5d034492009-09-18 22:35:49 +00001252
1253 // There is guaranteed to be at least one use of the malloc (storing
1254 // it into GV). If there are other uses, change them to be uses of
1255 // the global to simplify later code. This also deletes the store
1256 // into GV.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001257 ReplaceUsesOfMallocWithGlobal(CI, GV);
1258
Victor Hernandez5d034492009-09-18 22:35:49 +00001259 // Okay, at this point, there are no users of the malloc. Insert N
1260 // new mallocs at the same place as CI, and N globals.
1261 std::vector<Value*> FieldGlobals;
1262 std::vector<Value*> FieldMallocs;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001263
David Majnemerfadc6db2016-04-29 08:07:22 +00001264 SmallVector<OperandBundleDef, 1> OpBundles;
1265 CI->getOperandBundlesAsDefs(OpBundles);
1266
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001267 unsigned AS = GV->getType()->getPointerAddressSpace();
Victor Hernandez5d034492009-09-18 22:35:49 +00001268 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
Chris Lattner229907c2011-07-18 04:54:35 +00001269 Type *FieldTy = STy->getElementType(FieldNo);
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001270 PointerType *PFieldTy = PointerType::get(FieldTy, AS);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001271
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001272 GlobalVariable *NGV = new GlobalVariable(
1273 *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage,
1274 Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo),
1275 nullptr, GV->getThreadLocalMode());
Sergei Larin94be2de2016-01-22 21:18:20 +00001276 NGV->copyAttributesFrom(GV);
Victor Hernandez5d034492009-09-18 22:35:49 +00001277 FieldGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001278
Mehdi Amini46a43552015-03-04 18:43:29 +00001279 unsigned TypeSize = DL.getTypeAllocSize(FieldTy);
Chris Lattner229907c2011-07-18 04:54:35 +00001280 if (StructType *ST = dyn_cast<StructType>(FieldTy))
Mehdi Amini46a43552015-03-04 18:43:29 +00001281 TypeSize = DL.getStructLayout(ST)->getSizeInBytes();
1282 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
Victor Hernandezf3db9152009-11-07 00:16:28 +00001283 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1284 ConstantInt::get(IntPtrTy, TypeSize),
David Majnemerfadc6db2016-04-29 08:07:22 +00001285 NElems, OpBundles, nullptr,
Victor Hernandezf3db9152009-11-07 00:16:28 +00001286 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner0521c092010-02-26 18:23:13 +00001287 FieldMallocs.push_back(NMI);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001288 new StoreInst(NMI, NGV, CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001289 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001290
Victor Hernandez5d034492009-09-18 22:35:49 +00001291 // The tricky aspect of this transformation is handling the case when malloc
1292 // fails. In the original code, malloc failing would set the result pointer
1293 // of malloc to null. In this case, some mallocs could succeed and others
1294 // could fail. As such, we emit code that looks like this:
1295 // F0 = malloc(field0)
1296 // F1 = malloc(field1)
1297 // F2 = malloc(field2)
1298 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1299 // if (F0) { free(F0); F0 = 0; }
1300 // if (F1) { free(F1); F1 = 0; }
1301 // if (F2) { free(F2); F2 = 0; }
1302 // }
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001303 // The malloc can also fail if its argument is too large.
Gabor Greif218f5542010-06-24 14:42:01 +00001304 Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1305 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001306 ConstantZero, "isneg");
Victor Hernandez5d034492009-09-18 22:35:49 +00001307 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandezf3db9152009-11-07 00:16:28 +00001308 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1309 Constant::getNullValue(FieldMallocs[i]->getType()),
1310 "isnull");
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001311 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001312 }
1313
1314 // Split the basic block at the old malloc.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001315 BasicBlock *OrigBB = CI->getParent();
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001316 BasicBlock *ContBB =
1317 OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001318
Victor Hernandez5d034492009-09-18 22:35:49 +00001319 // Create the block to check the first condition. Put all these blocks at the
1320 // end of the function as they are unlikely to be executed.
Chris Lattner46b5c642009-11-06 04:27:31 +00001321 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1322 "malloc_ret_null",
Victor Hernandez5d034492009-09-18 22:35:49 +00001323 OrigBB->getParent());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001324
Victor Hernandez5d034492009-09-18 22:35:49 +00001325 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1326 // branch on RunningOr.
1327 OrigBB->getTerminator()->eraseFromParent();
1328 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001329
Victor Hernandez5d034492009-09-18 22:35:49 +00001330 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1331 // pointer, because some may be null while others are not.
1332 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1333 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001334 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001335 Constant::getNullValue(GVVal->getType()));
Chris Lattner46b5c642009-11-06 04:27:31 +00001336 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez5d034492009-09-18 22:35:49 +00001337 OrigBB->getParent());
Chris Lattner46b5c642009-11-06 04:27:31 +00001338 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez5d034492009-09-18 22:35:49 +00001339 OrigBB->getParent());
Victor Hernandeze2971492009-10-24 04:23:03 +00001340 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1341 Cmp, NullPtrBlock);
Victor Hernandez5d034492009-09-18 22:35:49 +00001342
1343 // Fill in FreeBlock.
David Majnemerfadc6db2016-04-29 08:07:22 +00001344 CallInst::CreateFree(GVVal, OpBundles, BI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001345 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1346 FreeBlock);
1347 BranchInst::Create(NextBlock, FreeBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001348
Victor Hernandez5d034492009-09-18 22:35:49 +00001349 NullPtrBlock = NextBlock;
1350 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001351
Victor Hernandez5d034492009-09-18 22:35:49 +00001352 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001353
1354 // CI is no longer needed, remove it.
Victor Hernandez5d034492009-09-18 22:35:49 +00001355 CI->eraseFromParent();
1356
James Molloyea31ad32015-11-13 11:05:07 +00001357 /// As we process loads, if we can't immediately update all uses of the load,
1358 /// keep track of what scalarized loads are inserted for a given load.
Victor Hernandez5d034492009-09-18 22:35:49 +00001359 DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1360 InsertedScalarizedValues[GV] = FieldGlobals;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001361
Victor Hernandez5d034492009-09-18 22:35:49 +00001362 std::vector<std::pair<PHINode*, unsigned> > PHIsToRewrite;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001363
Victor Hernandez5d034492009-09-18 22:35:49 +00001364 // Okay, the malloc site is completely handled. All of the uses of GV are now
1365 // loads, and all uses of those loads are simple. Rewrite them to use loads
1366 // of the per-field globals instead.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001367 for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001368 Instruction *User = cast<Instruction>(*UI++);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001369
Victor Hernandez5d034492009-09-18 22:35:49 +00001370 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner46b5c642009-11-06 04:27:31 +00001371 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001372 continue;
1373 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001374
Victor Hernandez5d034492009-09-18 22:35:49 +00001375 // Must be a store of null.
1376 StoreInst *SI = cast<StoreInst>(User);
1377 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1378 "Unexpected heap-sra user!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001379
Victor Hernandez5d034492009-09-18 22:35:49 +00001380 // Insert a store of null into each global.
1381 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001382 Type *ValTy = cast<GlobalValue>(FieldGlobals[i])->getValueType();
1383 Constant *Null = Constant::getNullValue(ValTy);
Victor Hernandez5d034492009-09-18 22:35:49 +00001384 new StoreInst(Null, FieldGlobals[i], SI);
1385 }
1386 // Erase the original store.
1387 SI->eraseFromParent();
1388 }
1389
1390 // While we have PHIs that are interesting to rewrite, do it.
1391 while (!PHIsToRewrite.empty()) {
1392 PHINode *PN = PHIsToRewrite.back().first;
1393 unsigned FieldNo = PHIsToRewrite.back().second;
1394 PHIsToRewrite.pop_back();
1395 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1396 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1397
1398 // Add all the incoming values. This can materialize more phis.
1399 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1400 Value *InVal = PN->getIncomingValue(i);
1401 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001402 PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001403 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1404 }
1405 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001406
Victor Hernandez5d034492009-09-18 22:35:49 +00001407 // Drop all inter-phi links and any loads that made it this far.
1408 for (DenseMap<Value*, std::vector<Value*> >::iterator
1409 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1410 I != E; ++I) {
1411 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1412 PN->dropAllReferences();
1413 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1414 LI->dropAllReferences();
1415 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001416
Victor Hernandez5d034492009-09-18 22:35:49 +00001417 // Delete all the phis and loads now that inter-references are dead.
1418 for (DenseMap<Value*, std::vector<Value*> >::iterator
1419 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1420 I != E; ++I) {
1421 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1422 PN->eraseFromParent();
1423 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1424 LI->eraseFromParent();
1425 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001426
Victor Hernandez5d034492009-09-18 22:35:49 +00001427 // The old global is now dead, remove it.
1428 GV->eraseFromParent();
1429
1430 ++NumHeapSRA;
1431 return cast<GlobalVariable>(FieldGlobals[0]);
1432}
1433
James Molloyea31ad32015-11-13 11:05:07 +00001434/// This function is called when we see a pointer global variable with a single
1435/// value stored it that is a malloc or cast of malloc.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001436static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
Chris Lattner229907c2011-07-18 04:54:35 +00001437 Type *AllocTy,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001438 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001439 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +00001440 TargetLibraryInfo *TLI) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001441 // If this is a malloc of an abstract type, don't touch it.
1442 if (!AllocTy->isSized())
1443 return false;
1444
1445 // We can't optimize this global unless all uses of it are *known* to be
1446 // of the malloc value, not of the null initializer value (consider a use
1447 // that compares the global's value against zero to see if the malloc has
1448 // been reached). To do this, we check to see if all uses of the global
1449 // would trap if the global were null: this proves that they must all
1450 // happen after the malloc.
1451 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1452 return false;
1453
1454 // We can't optimize this if the malloc itself is used in a complex way,
1455 // for example, being stored into multiple globals. This allows the
Nick Lewyckybbd11562012-02-05 19:48:37 +00001456 // malloc to be stored into the specified global, loaded icmp'd, and
Victor Hernandez5d034492009-09-18 22:35:49 +00001457 // GEP'd. These are all things we could transform to using the global
1458 // for.
Evan Cheng21b588b2010-04-14 20:52:55 +00001459 SmallPtrSet<const PHINode*, 8> PHIs;
1460 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1461 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001462
1463 // If we have a global that is only initialized with a fixed size malloc,
1464 // transform the program to use global memory instead of malloc'd memory.
1465 // This eliminates dynamic allocation, avoids an indirection accessing the
1466 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez264da322009-10-16 23:12:25 +00001467 // We cannot optimize the malloc if we cannot determine malloc array size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001468 Value *NElems = getMallocArraySize(CI, DL, TLI, true);
Evan Cheng21b588b2010-04-14 20:52:55 +00001469 if (!NElems)
1470 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001471
Evan Cheng21b588b2010-04-14 20:52:55 +00001472 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1473 // Restrict this transformation to only working on small allocations
1474 // (2048 bytes currently), as we don't want to introduce a 16M global or
1475 // something.
Mehdi Amini46a43552015-03-04 18:43:29 +00001476 if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) {
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001477 OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001478 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001479 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001480
Evan Cheng21b588b2010-04-14 20:52:55 +00001481 // If the allocation is an array of structures, consider transforming this
1482 // into multiple malloc'd arrays, one for each field. This is basically
1483 // SRoA for malloc'd memory.
1484
JF Bastien800f87a2016-04-06 21:19:33 +00001485 if (Ordering != AtomicOrdering::NotAtomic)
Nick Lewycky52da72b2012-02-05 19:56:38 +00001486 return false;
1487
Evan Cheng21b588b2010-04-14 20:52:55 +00001488 // If this is an allocation of a fixed size array of structs, analyze as a
1489 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Gabor Greif218f5542010-06-24 14:42:01 +00001490 if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
Chris Lattner229907c2011-07-18 04:54:35 +00001491 if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
Evan Cheng21b588b2010-04-14 20:52:55 +00001492 AllocTy = AT->getElementType();
Gabor Greif218f5542010-06-24 14:42:01 +00001493
Chris Lattner229907c2011-07-18 04:54:35 +00001494 StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
Evan Cheng21b588b2010-04-14 20:52:55 +00001495 if (!AllocSTy)
1496 return false;
1497
1498 // This the structure has an unreasonable number of fields, leave it
1499 // alone.
1500 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1501 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1502
1503 // If this is a fixed size array, transform the Malloc to be an alloc of
1504 // structs. malloc [100 x struct],1 -> malloc struct, 100
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001505 if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001506 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
1507 unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes();
Evan Cheng21b588b2010-04-14 20:52:55 +00001508 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1509 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
David Majnemerfadc6db2016-04-29 08:07:22 +00001510 SmallVector<OperandBundleDef, 1> OpBundles;
1511 CI->getOperandBundlesAsDefs(OpBundles);
1512 Instruction *Malloc =
1513 CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, AllocSize, NumElements,
1514 OpBundles, nullptr, CI->getName());
Evan Cheng21b588b2010-04-14 20:52:55 +00001515 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1516 CI->replaceAllUsesWith(Cast);
1517 CI->eraseFromParent();
Nuno Lopes9792d682012-06-22 00:25:01 +00001518 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1519 CI = cast<CallInst>(BCI->getOperand(0));
1520 else
Nuno Lopes0b60ebb2012-06-22 00:29:58 +00001521 CI = cast<CallInst>(Malloc);
Evan Cheng21b588b2010-04-14 20:52:55 +00001522 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001523
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001524 PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL,
1525 TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001526 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001527 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001528
Victor Hernandez5d034492009-09-18 22:35:49 +00001529 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001530}
Victor Hernandez5d034492009-09-18 22:35:49 +00001531
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001532// Try to optimize globals based on the knowledge that only one value (besides
1533// its initializer) is ever stored to the global.
1534static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001535 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001536 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +00001537 TargetLibraryInfo *TLI) {
Chris Lattner1c731fa2008-12-15 21:20:32 +00001538 // Ignore no-op GEPs and bitcasts.
1539 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner09a52722004-10-09 21:48:45 +00001540
Chris Lattnere42eb312004-10-10 23:14:11 +00001541 // If we are dealing with a pointer global that is initialized to null and
1542 // only has one (non-null) value stored into it, then we can optimize any
1543 // users of the loaded value (often calls and loads) that would trap if the
1544 // value was null.
Duncan Sands19d0b472010-02-16 11:11:14 +00001545 if (GV->getInitializer()->getType()->isPointerTy() &&
Chris Lattner09a52722004-10-09 21:48:45 +00001546 GV->getInitializer()->isNullValue()) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001547 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1548 if (GV->getInitializer()->getType() != SOVC->getType())
Chris Lattner1a1acc22011-05-22 07:15:13 +00001549 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001550
Chris Lattnere42eb312004-10-10 23:14:11 +00001551 // Optimize away any trapping uses of the loaded value.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001552 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001553 return true;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001554 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1555 Type *MallocType = getMallocAllocatedType(CI, TLI);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001556 if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1557 Ordering, DL, TLI))
Victor Hernandezf3db9152009-11-07 00:16:28 +00001558 return true;
Chris Lattnere42eb312004-10-10 23:14:11 +00001559 }
Chris Lattner09a52722004-10-09 21:48:45 +00001560 }
Chris Lattner004e2502004-10-11 05:54:41 +00001561
Chris Lattner09a52722004-10-09 21:48:45 +00001562 return false;
1563}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001564
James Molloyea31ad32015-11-13 11:05:07 +00001565/// At this point, we have learned that the only two values ever stored into GV
1566/// are its initializer and OtherVal. See if we can shrink the global into a
1567/// boolean and select between the two values whenever it is used. This exposes
1568/// the values to other scalar optimizations.
Lang Hames459b5dc2014-03-23 04:22:31 +00001569static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001570 Type *GVElType = GV->getValueType();
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001571
Lang Hames459b5dc2014-03-23 04:22:31 +00001572 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1573 // an FP value, pointer or vector, don't do this optimization because a select
1574 // between them is very expensive and unlikely to lead to later
1575 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1576 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner46b5c642009-11-06 04:27:31 +00001577 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001578 GVElType->isFloatingPointTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001579 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner20bbac32008-01-14 01:17:44 +00001580 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001581
Chris Lattner20bbac32008-01-14 01:17:44 +00001582 // Walk the use list of the global seeing if all the uses are load or store.
1583 // If there is anything else, bail out.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001584 for (User *U : GV->users())
Gabor Greifa75ed762010-07-12 14:13:15 +00001585 if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
Chris Lattner20bbac32008-01-14 01:17:44 +00001586 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001587
James Molloyef607a22015-10-28 14:30:53 +00001588 DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n");
Lang Hames459b5dc2014-03-23 04:22:31 +00001589
1590 // Create the new global, initializing it to false.
1591 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1592 false,
1593 GlobalValue::InternalLinkage,
1594 ConstantInt::getFalse(GV->getContext()),
1595 GV->getName()+".b",
1596 GV->getThreadLocalMode(),
1597 GV->getType()->getAddressSpace());
Sergei Larin94be2de2016-01-22 21:18:20 +00001598 NewGV->copyAttributesFrom(GV);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001599 GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
Lang Hames459b5dc2014-03-23 04:22:31 +00001600
Chris Lattner40e4cec2004-12-12 05:53:50 +00001601 Constant *InitVal = GV->getInitializer();
Chris Lattner46b5c642009-11-06 04:27:31 +00001602 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Lang Hames459b5dc2014-03-23 04:22:31 +00001603 "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001604
Lang Hames459b5dc2014-03-23 04:22:31 +00001605 // If initialized to zero and storing one into the global, we can use a cast
1606 // instead of a select to synthesize the desired value.
1607 bool IsOneZero = false;
1608 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1609 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001610
Lang Hames459b5dc2014-03-23 04:22:31 +00001611 while (!GV->use_empty()) {
1612 Instruction *UI = cast<Instruction>(GV->user_back());
1613 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1614 // Change the store into a boolean store.
1615 bool StoringOther = SI->getOperand(0) == OtherVal;
1616 // Only do this if we weren't storing a loaded value.
1617 Value *StoreVal;
1618 if (StoringOther || SI->getOperand(0) == InitVal) {
1619 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1620 StoringOther);
Bill Wendling7297b862013-02-13 23:00:51 +00001621 } else {
Lang Hames459b5dc2014-03-23 04:22:31 +00001622 // Otherwise, we are storing a previously loaded copy. To do this,
1623 // change the copy from copying the original value to just copying the
1624 // bool.
1625 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1626
1627 // If we've already replaced the input, StoredVal will be a cast or
1628 // select instruction. If not, it will be a load of the original
1629 // global.
1630 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1631 assert(LI->getOperand(0) == GV && "Not a copy!");
1632 // Insert a new load, to preserve the saved value.
1633 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001634 LI->getOrdering(), LI->getSyncScopeID(), LI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001635 } else {
1636 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1637 "This is not a form that we understand!");
1638 StoreVal = StoredVal->getOperand(0);
1639 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1640 }
Chris Lattner745196a2004-12-12 19:34:41 +00001641 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001642 new StoreInst(StoreVal, NewGV, false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001643 SI->getOrdering(), SI->getSyncScopeID(), SI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001644 } else {
1645 // Change the load into a load of bool then a select.
1646 LoadInst *LI = cast<LoadInst>(UI);
1647 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001648 LI->getOrdering(), LI->getSyncScopeID(), LI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001649 Value *NSI;
1650 if (IsOneZero)
1651 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1652 else
1653 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1654 NSI->takeName(LI);
1655 LI->replaceAllUsesWith(NSI);
Devang Patelfc507a12009-03-06 01:39:36 +00001656 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001657 UI->eraseFromParent();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001658 }
1659
Lang Hames459b5dc2014-03-23 04:22:31 +00001660 // Retain the name of the old global variable. People who are debugging their
1661 // programs may expect these variables to be named the same.
1662 NewGV->takeName(GV);
1663 GV->eraseFromParent();
Chris Lattner20bbac32008-01-14 01:17:44 +00001664 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001665}
1666
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001667static bool deleteIfDead(GlobalValue &GV,
1668 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001669 GV.removeDeadConstantUsers();
1670
Mehdi Aminid8803092016-09-15 20:26:27 +00001671 if (!GV.isDiscardableIfUnused() && !GV.isDeclaration())
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001672 return false;
1673
1674 if (const Comdat *C = GV.getComdat())
1675 if (!GV.hasLocalLinkage() && NotDiscardableComdats.count(C))
1676 return false;
1677
1678 bool Dead;
1679 if (auto *F = dyn_cast<Function>(&GV))
Mehdi Aminid8803092016-09-15 20:26:27 +00001680 Dead = (F->isDeclaration() && F->use_empty()) || F->isDefTriviallyDead();
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001681 else
1682 Dead = GV.use_empty();
1683 if (!Dead)
1684 return false;
1685
1686 DEBUG(dbgs() << "GLOBAL DEAD: " << GV << "\n");
1687 GV.eraseFromParent();
1688 ++NumDeleted;
1689 return true;
1690}
Chris Lattner40e4cec2004-12-12 05:53:50 +00001691
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001692static bool isPointerValueDeadOnEntryToFunction(
1693 const Function *F, GlobalValue *GV,
1694 function_ref<DominatorTree &(Function &)> LookupDomTree) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001695 // Find all uses of GV. We expect them all to be in F, and if we can't
1696 // identify any of the uses we bail out.
1697 //
1698 // On each of these uses, identify if the memory that GV points to is
1699 // used/required/live at the start of the function. If it is not, for example
1700 // if the first thing the function does is store to the GV, the GV can
1701 // possibly be demoted.
1702 //
1703 // We don't do an exhaustive search for memory operations - simply look
1704 // through bitcasts as they're quite common and benign.
1705 const DataLayout &DL = GV->getParent()->getDataLayout();
1706 SmallVector<LoadInst *, 4> Loads;
1707 SmallVector<StoreInst *, 4> Stores;
1708 for (auto *U : GV->users()) {
1709 if (Operator::getOpcode(U) == Instruction::BitCast) {
1710 for (auto *UU : U->users()) {
1711 if (auto *LI = dyn_cast<LoadInst>(UU))
1712 Loads.push_back(LI);
1713 else if (auto *SI = dyn_cast<StoreInst>(UU))
1714 Stores.push_back(SI);
1715 else
1716 return false;
1717 }
1718 continue;
1719 }
1720
1721 Instruction *I = dyn_cast<Instruction>(U);
1722 if (!I)
1723 return false;
1724 assert(I->getParent()->getParent() == F);
1725
1726 if (auto *LI = dyn_cast<LoadInst>(I))
1727 Loads.push_back(LI);
1728 else if (auto *SI = dyn_cast<StoreInst>(I))
1729 Stores.push_back(SI);
1730 else
1731 return false;
1732 }
1733
1734 // We have identified all uses of GV into loads and stores. Now check if all
1735 // of them are known not to depend on the value of the global at the function
1736 // entry point. We do this by ensuring that every load is dominated by at
1737 // least one store.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001738 auto &DT = LookupDomTree(*const_cast<Function *>(F));
James Molloy9c7d4d82015-11-15 14:21:37 +00001739
James Molloyd4d23572015-11-16 10:16:22 +00001740 // The below check is quadratic. Check we're not going to do too many tests.
1741 // FIXME: Even though this will always have worst-case quadratic time, we
1742 // could put effort into minimizing the average time by putting stores that
1743 // have been shown to dominate at least one load at the beginning of the
1744 // Stores array, making subsequent dominance checks more likely to succeed
1745 // early.
1746 //
1747 // The threshold here is fairly large because global->local demotion is a
1748 // very powerful optimization should it fire.
1749 const unsigned Threshold = 100;
1750 if (Loads.size() * Stores.size() > Threshold)
1751 return false;
1752
James Molloy9c7d4d82015-11-15 14:21:37 +00001753 for (auto *L : Loads) {
1754 auto *LTy = L->getType();
David Majnemer0a16c222016-08-11 21:15:00 +00001755 if (none_of(Stores, [&](const StoreInst *S) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001756 auto *STy = S->getValueOperand()->getType();
1757 // The load is only dominated by the store if DomTree says so
1758 // and the number of bits loaded in L is less than or equal to
1759 // the number of bits stored in S.
1760 return DT.dominates(S, L) &&
1761 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy);
1762 }))
1763 return false;
1764 }
1765 // All loads have known dependences inside F, so the global can be localized.
1766 return true;
1767}
1768
James Molloy1d695a02015-11-19 18:04:33 +00001769/// C may have non-instruction users. Can all of those users be turned into
1770/// instructions?
1771static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) {
1772 // We don't do this exhaustively. The most common pattern that we really need
1773 // to care about is a constant GEP or constant bitcast - so just looking
1774 // through one single ConstantExpr.
1775 //
1776 // The set of constants that this function returns true for must be able to be
1777 // handled by makeAllConstantUsesInstructions.
1778 for (auto *U : C->users()) {
1779 if (isa<Instruction>(U))
1780 continue;
1781 if (!isa<ConstantExpr>(U))
1782 // Non instruction, non-constantexpr user; cannot convert this.
1783 return false;
1784 for (auto *UU : U->users())
1785 if (!isa<Instruction>(UU))
1786 // A constantexpr used by another constant. We don't try and recurse any
1787 // further but just bail out at this point.
1788 return false;
1789 }
1790
1791 return true;
1792}
1793
1794/// C may have non-instruction users, and
1795/// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the
1796/// non-instruction users to instructions.
1797static void makeAllConstantUsesInstructions(Constant *C) {
1798 SmallVector<ConstantExpr*,4> Users;
1799 for (auto *U : C->users()) {
1800 if (isa<ConstantExpr>(U))
1801 Users.push_back(cast<ConstantExpr>(U));
1802 else
1803 // We should never get here; allNonInstructionUsersCanBeMadeInstructions
1804 // should not have returned true for C.
1805 assert(
1806 isa<Instruction>(U) &&
1807 "Can't transform non-constantexpr non-instruction to instruction!");
1808 }
1809
1810 SmallVector<Value*,4> UUsers;
1811 for (auto *U : Users) {
1812 UUsers.clear();
1813 for (auto *UU : U->users())
1814 UUsers.push_back(UU);
1815 for (auto *UU : UUsers) {
1816 Instruction *UI = cast<Instruction>(UU);
1817 Instruction *NewU = U->getAsInstruction();
1818 NewU->insertBefore(UI);
1819 UI->replaceUsesOfWith(U, NewU);
1820 }
Eli Friedman10ab9232017-04-27 18:39:08 +00001821 // We've replaced all the uses, so destroy the constant. (destroyConstant
1822 // will update value handles and metadata.)
1823 U->destroyConstant();
James Molloy1d695a02015-11-19 18:04:33 +00001824 }
1825}
1826
James Molloyea31ad32015-11-13 11:05:07 +00001827/// Analyze the specified global variable and optimize
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001828/// it if possible. If we make a change, return true.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001829static bool processInternalGlobal(
1830 GlobalVariable *GV, const GlobalStatus &GS, TargetLibraryInfo *TLI,
1831 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001832 auto &DL = GV->getParent()->getDataLayout();
James Molloy9c7d4d82015-11-15 14:21:37 +00001833 // If this is a first class global and has only one accessing function and
1834 // this function is non-recursive, we replace the global with a local alloca
1835 // in this function.
Alexey Samsonova1944e62013-10-07 19:03:24 +00001836 //
Alp Tokerf907b892013-12-05 05:44:44 +00001837 // NOTE: It doesn't make sense to promote non-single-value types since we
Alexey Samsonova1944e62013-10-07 19:03:24 +00001838 // are just replacing static memory to stack memory.
1839 //
1840 // If the global is in different address space, don't bring it to stack.
1841 if (!GS.HasMultipleAccessingFunctions &&
James Molloy1d695a02015-11-19 18:04:33 +00001842 GS.AccessingFunction &&
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001843 GV->getValueType()->isSingleValueType() &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001844 GV->getType()->getAddressSpace() == 0 &&
1845 !GV->isExternallyInitialized() &&
James Molloy1d695a02015-11-19 18:04:33 +00001846 allNonInstructionUsersCanBeMadeInstructions(GV) &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001847 GS.AccessingFunction->doesNotRecurse() &&
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001848 isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV,
1849 LookupDomTree)) {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001850 const DataLayout &DL = GV->getParent()->getDataLayout();
1851
James Molloy33e73452015-11-13 11:05:13 +00001852 DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n");
Alexey Samsonova1944e62013-10-07 19:03:24 +00001853 Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1854 ->getEntryBlock().begin());
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001855 Type *ElemTy = GV->getValueType();
Alexey Samsonova1944e62013-10-07 19:03:24 +00001856 // FIXME: Pass Global's alignment when globals have alignment
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001857 AllocaInst *Alloca = new AllocaInst(ElemTy, DL.getAllocaAddrSpace(), nullptr,
Craig Topperf40110f2014-04-25 05:29:35 +00001858 GV->getName(), &FirstI);
Alexey Samsonova1944e62013-10-07 19:03:24 +00001859 if (!isa<UndefValue>(GV->getInitializer()))
1860 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1861
James Molloy1d695a02015-11-19 18:04:33 +00001862 makeAllConstantUsesInstructions(GV);
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001863
Alexey Samsonova1944e62013-10-07 19:03:24 +00001864 GV->replaceAllUsesWith(Alloca);
1865 GV->eraseFromParent();
1866 ++NumLocalized;
1867 return true;
1868 }
1869
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001870 // If the global is never loaded (but may be stored to), it is dead.
1871 // Delete it now.
Rafael Espindola045a78f2013-10-17 18:18:52 +00001872 if (!GS.IsLoaded) {
James Molloy33e73452015-11-13 11:05:13 +00001873 DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001874
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001875 bool Changed;
1876 if (isLeakCheckerRoot(GV)) {
1877 // Delete any constant stores to the global.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001878 Changed = CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001879 } else {
1880 // Delete any stores we can find to the global. We may not be able to
1881 // make it completely dead though.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001882 Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001883 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001884
1885 // If the global is dead now, delete it.
1886 if (GV->use_empty()) {
1887 GV->eraseFromParent();
1888 ++NumDeleted;
1889 Changed = true;
1890 }
1891 return Changed;
1892
James Molloyeb040cc2016-04-25 10:48:29 +00001893 }
1894 if (GS.StoredType <= GlobalStatus::InitializerStored) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00001895 DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001896 GV->setConstant(true);
1897
1898 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001899 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001900
1901 // If the global is dead now, just nuke it.
1902 if (GV->use_empty()) {
1903 DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
1904 << "all users and delete global!\n");
1905 GV->eraseFromParent();
1906 ++NumDeleted;
James Molloyeb040cc2016-04-25 10:48:29 +00001907 return true;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001908 }
1909
James Molloyeb040cc2016-04-25 10:48:29 +00001910 // Fall through to the next check; see if we can optimize further.
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001911 ++NumMarked;
James Molloyeb040cc2016-04-25 10:48:29 +00001912 }
1913 if (!GV->getInitializer()->getType()->isSingleValueType()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001914 const DataLayout &DL = GV->getParent()->getDataLayout();
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001915 if (SRAGlobal(GV, DL))
Mehdi Amini46a43552015-03-04 18:43:29 +00001916 return true;
James Molloyeb040cc2016-04-25 10:48:29 +00001917 }
1918 if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001919 // If the initial value for the global was an undef value, and if only
1920 // one other value was stored into it, we can just change the
1921 // initializer to be the stored value, then delete all stores to the
1922 // global. This allows us to mark it constant.
1923 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1924 if (isa<UndefValue>(GV->getInitializer())) {
1925 // Change the initial value here.
1926 GV->setInitializer(SOVConstant);
1927
1928 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001929 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001930
1931 if (GV->use_empty()) {
1932 DEBUG(dbgs() << " *** Substituting initializer allowed us to "
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001933 << "simplify all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001934 GV->eraseFromParent();
1935 ++NumDeleted;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001936 }
1937 ++NumSubstitute;
1938 return true;
1939 }
1940
1941 // Try to optimize globals based on the knowledge that only one value
1942 // (besides its initializer) is ever stored to the global.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001943 if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001944 return true;
1945
Lang Hames459b5dc2014-03-23 04:22:31 +00001946 // Otherwise, if the global was not a boolean, we can shrink it to be a
1947 // boolean.
Eli Friedman33d37002013-09-09 22:00:13 +00001948 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) {
JF Bastien800f87a2016-04-06 21:19:33 +00001949 if (GS.Ordering == AtomicOrdering::NotAtomic) {
Lang Hames459b5dc2014-03-23 04:22:31 +00001950 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Eli Friedman33d37002013-09-09 22:00:13 +00001951 ++NumShrunkToBool;
1952 return true;
1953 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001954 }
Eli Friedman33d37002013-09-09 22:00:13 +00001955 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001956 }
1957
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001958 return false;
1959}
1960
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001961/// Analyze the specified global variable and optimize it if possible. If we
1962/// make a change, return true.
1963static bool
1964processGlobal(GlobalValue &GV, TargetLibraryInfo *TLI,
1965 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001966 if (GV.getName().startswith("llvm."))
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001967 return false;
1968
1969 GlobalStatus GS;
1970
1971 if (GlobalStatus::analyzeGlobal(&GV, GS))
1972 return false;
1973
1974 bool Changed = false;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001975 if (!GS.IsCompared && !GV.hasGlobalUnnamedAddr()) {
1976 auto NewUnnamedAddr = GV.hasLocalLinkage() ? GlobalValue::UnnamedAddr::Global
1977 : GlobalValue::UnnamedAddr::Local;
1978 if (NewUnnamedAddr != GV.getUnnamedAddr()) {
1979 GV.setUnnamedAddr(NewUnnamedAddr);
1980 NumUnnamed++;
1981 Changed = true;
1982 }
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001983 }
1984
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001985 // Do more involved optimizations if the global is internal.
1986 if (!GV.hasLocalLinkage())
1987 return Changed;
1988
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001989 auto *GVar = dyn_cast<GlobalVariable>(&GV);
1990 if (!GVar)
1991 return Changed;
1992
1993 if (GVar->isConstant() || !GVar->hasInitializer())
1994 return Changed;
1995
1996 return processInternalGlobal(GVar, GS, TLI, LookupDomTree) || Changed;
1997}
1998
James Molloyea31ad32015-11-13 11:05:07 +00001999/// Walk all of the direct calls of the specified function, changing them to
2000/// FastCC.
Chris Lattnera4c80222005-05-08 22:18:06 +00002001static void ChangeCalleesToFastCall(Function *F) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00002002 for (User *U : F->users()) {
2003 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002004 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002005 CallSite CS(cast<Instruction>(U));
2006 CS.setCallingConv(CallingConv::Fast);
Chris Lattnera4c80222005-05-08 22:18:06 +00002007 }
2008}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00002009
Reid Kleckner0a5ed3d2017-04-19 23:26:44 +00002010static AttributeList StripNest(LLVMContext &C, AttributeList Attrs) {
2011 // There can be at most one attribute set with a nest attribute.
2012 unsigned NestIndex;
2013 if (Attrs.hasAttrSomewhere(Attribute::Nest, &NestIndex))
2014 return Attrs.removeAttribute(C, NestIndex, Attribute::Nest);
Duncan Sands573b3f82008-02-16 20:56:04 +00002015 return Attrs;
2016}
2017
2018static void RemoveNestAttribute(Function *F) {
Bill Wendling85a64c22012-10-14 06:39:53 +00002019 F->setAttributes(StripNest(F->getContext(), F->getAttributes()));
Chandler Carruthcdf47882014-03-09 03:16:01 +00002020 for (User *U : F->users()) {
2021 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002022 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002023 CallSite CS(cast<Instruction>(U));
2024 CS.setAttributes(StripNest(F->getContext(), CS.getAttributes()));
Duncan Sands573b3f82008-02-16 20:56:04 +00002025 }
2026}
2027
Reid Kleckner22869372014-02-26 19:57:30 +00002028/// Return true if this is a calling convention that we'd like to change. The
2029/// idea here is that we don't want to mess with the convention if the user
2030/// explicitly requested something with performance implications like coldcc,
2031/// GHC, or anyregcc.
2032static bool isProfitableToMakeFastCC(Function *F) {
2033 CallingConv::ID CC = F->getCallingConv();
2034 // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc?
2035 return CC == CallingConv::C || CC == CallingConv::X86_ThisCall;
2036}
2037
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002038static bool
2039OptimizeFunctions(Module &M, TargetLibraryInfo *TLI,
2040 function_ref<DominatorTree &(Function &)> LookupDomTree,
2041 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002042 bool Changed = false;
2043 // Optimize functions.
2044 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002045 Function *F = &*FI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002046 // Functions without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002047 if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002048 F->setLinkage(GlobalValue::InternalLinkage);
David Majnemer1b3b70e2014-10-08 07:23:31 +00002049
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002050 if (deleteIfDead(*F, NotDiscardableComdats)) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002051 Changed = true;
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002052 continue;
2053 }
Rafael Espindola10d9a032015-12-22 20:43:30 +00002054
Davide Italianoc3dc055782017-07-13 15:40:59 +00002055 // LLVM's definition of dominance allows instructions that are cyclic
2056 // in unreachable blocks, e.g.:
2057 // %pat = select i1 %condition, @global, i16* %pat
2058 // because any instruction dominates an instruction in a block that's
2059 // not reachable from entry.
2060 // So, remove unreachable blocks from the function, because a) there's
2061 // no point in analyzing them and b) GlobalOpt should otherwise grow
2062 // some more complicated logic to break these cycles.
2063 // Removing unreachable blocks might invalidate the dominator so we
2064 // recalculate it.
2065 if (!F->isDeclaration()) {
2066 if (removeUnreachableBlocks(*F)) {
2067 auto &DT = LookupDomTree(*F);
2068 DT.recalculate(*F);
2069 Changed = true;
2070 }
2071 }
2072
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002073 Changed |= processGlobal(*F, TLI, LookupDomTree);
Rafael Espindola10d9a032015-12-22 20:43:30 +00002074
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002075 if (!F->hasLocalLinkage())
2076 continue;
2077 if (isProfitableToMakeFastCC(F) && !F->isVarArg() &&
2078 !F->hasAddressTaken()) {
2079 // If this function has a calling convention worth changing, is not a
2080 // varargs function, and is only called directly, promote it to use the
2081 // Fast calling convention.
2082 F->setCallingConv(CallingConv::Fast);
2083 ChangeCalleesToFastCall(F);
2084 ++NumFastCallFns;
2085 Changed = true;
2086 }
Duncan Sands573b3f82008-02-16 20:56:04 +00002087
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002088 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2089 !F->hasAddressTaken()) {
2090 // The function is not used by a trampoline intrinsic, so it is safe
2091 // to remove the 'nest' attribute.
2092 RemoveNestAttribute(F);
2093 ++NumNestRemoved;
2094 Changed = true;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002095 }
2096 }
2097 return Changed;
2098}
2099
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002100static bool
2101OptimizeGlobalVars(Module &M, TargetLibraryInfo *TLI,
2102 function_ref<DominatorTree &(Function &)> LookupDomTree,
2103 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002104 bool Changed = false;
David Majnemerdad0a642014-06-27 18:19:56 +00002105
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002106 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2107 GVI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002108 GlobalVariable *GV = &*GVI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002109 // Global variables without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002110 if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002111 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman580b80d2009-11-23 16:22:21 +00002112 // Simplify the initializer.
2113 if (GV->hasInitializer())
David Majnemerd536f232016-07-29 03:27:26 +00002114 if (auto *C = dyn_cast<Constant>(GV->getInitializer())) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002115 auto &DL = M.getDataLayout();
David Majnemerd536f232016-07-29 03:27:26 +00002116 Constant *New = ConstantFoldConstant(C, DL, TLI);
2117 if (New && New != C)
Dan Gohman580b80d2009-11-23 16:22:21 +00002118 GV->setInitializer(New);
2119 }
Rafael Espindolafc355bc2011-01-19 16:32:21 +00002120
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002121 if (deleteIfDead(*GV, NotDiscardableComdats)) {
Rafael Espindola10d9a032015-12-22 20:43:30 +00002122 Changed = true;
2123 continue;
2124 }
2125
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002126 Changed |= processGlobal(*GV, TLI, LookupDomTree);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002127 }
2128 return Changed;
2129}
2130
James Molloyea31ad32015-11-13 11:05:07 +00002131/// Evaluate a piece of a constantexpr store into a global initializer. This
2132/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2133/// GEP operands of Addr [0, OpNo) have been stepped into.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002134static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2135 ConstantExpr *Addr, unsigned OpNo) {
2136 // Base case of the recursion.
2137 if (OpNo == Addr->getNumOperands()) {
2138 assert(Val->getType() == Init->getType() && "Type mismatch!");
2139 return Val;
2140 }
2141
2142 SmallVector<Constant*, 32> Elts;
2143 if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2144 // Break up the constant into its elements.
2145 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2146 Elts.push_back(Init->getAggregateElement(i));
2147
2148 // Replace the element that we are supposed to.
2149 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2150 unsigned Idx = CU->getZExtValue();
2151 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2152 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2153
2154 // Return the modified struct.
2155 return ConstantStruct::get(STy, Elts);
2156 }
2157
2158 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2159 SequentialType *InitTy = cast<SequentialType>(Init->getType());
Peter Collingbournebc070522016-12-02 03:20:58 +00002160 uint64_t NumElts = InitTy->getNumElements();
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002161
2162 // Break up the array into elements.
2163 for (uint64_t i = 0, e = NumElts; i != e; ++i)
2164 Elts.push_back(Init->getAggregateElement(i));
2165
2166 assert(CI->getZExtValue() < NumElts);
2167 Elts[CI->getZExtValue()] =
2168 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2169
2170 if (Init->getType()->isArrayTy())
2171 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2172 return ConstantVector::get(Elts);
2173}
2174
James Molloyea31ad32015-11-13 11:05:07 +00002175/// We have decided that Addr (which satisfies the predicate
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002176/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2177static void CommitValueTo(Constant *Val, Constant *Addr) {
2178 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2179 assert(GV->hasInitializer());
2180 GV->setInitializer(Val);
2181 return;
2182 }
2183
2184 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2185 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2186 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2187}
2188
James Molloyea31ad32015-11-13 11:05:07 +00002189/// Evaluate static constructors in the function, if we can. Return true if we
2190/// can, false otherwise.
Mehdi Amini46a43552015-03-04 18:43:29 +00002191static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002192 TargetLibraryInfo *TLI) {
Chris Lattnerda1889b2005-09-27 04:27:01 +00002193 // Call the function.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002194 Evaluator Eval(DL, TLI);
Chris Lattner65a3a092005-09-27 04:45:34 +00002195 Constant *RetValDummy;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002196 bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2197 SmallVector<Constant*, 0>());
Jakub Staszak9525a772012-12-06 21:57:16 +00002198
Chris Lattnerda1889b2005-09-27 04:27:01 +00002199 if (EvalSuccess) {
Nico Weber4b2acde2014-05-02 18:35:25 +00002200 ++NumCtorsEvaluated;
2201
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002202 // We succeeded at evaluation: commit the result.
David Greene44cb8ad2010-01-05 01:28:05 +00002203 DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002204 << F->getName() << "' to " << Eval.getMutatedMemory().size()
2205 << " stores.\n");
Benjamin Kramer135f7352016-06-26 12:28:59 +00002206 for (const auto &I : Eval.getMutatedMemory())
2207 CommitValueTo(I.second, I.first);
Craig Topper46276792014-08-24 23:23:06 +00002208 for (GlobalVariable *GV : Eval.getInvariants())
2209 GV->setConstant(true);
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002210 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002211
Chris Lattnerda1889b2005-09-27 04:27:01 +00002212 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002213}
2214
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002215static int compareNames(Constant *const *A, Constant *const *B) {
Benjamin Kramer96f4b122016-03-15 14:18:26 +00002216 Value *AStripped = (*A)->stripPointerCastsNoFollowAliases();
2217 Value *BStripped = (*B)->stripPointerCastsNoFollowAliases();
2218 return AStripped->getName().compare(BStripped->getName());
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002219}
2220
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002221static void setUsedInitializer(GlobalVariable &V,
Craig Topper97ebe532014-08-19 07:44:27 +00002222 const SmallPtrSet<GlobalValue *, 8> &Init) {
Rafael Espindolac2bb73f2013-07-20 23:33:15 +00002223 if (Init.empty()) {
2224 V.eraseFromParent();
2225 return;
2226 }
2227
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002228 // Type of pointer to the array of pointers.
2229 PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0);
Rafael Espindola00752162013-05-09 17:22:59 +00002230
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002231 SmallVector<llvm::Constant *, 8> UsedArray;
Craig Topper71b7b682014-08-21 05:55:13 +00002232 for (GlobalValue *GV : Init) {
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002233 Constant *Cast
Craig Topper71b7b682014-08-21 05:55:13 +00002234 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002235 UsedArray.push_back(Cast);
Rafael Espindola00752162013-05-09 17:22:59 +00002236 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002237 // Sort to get deterministic order.
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002238 array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002239 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
Rafael Espindola00752162013-05-09 17:22:59 +00002240
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002241 Module *M = V.getParent();
2242 V.removeFromParent();
2243 GlobalVariable *NV =
2244 new GlobalVariable(*M, ATy, false, llvm::GlobalValue::AppendingLinkage,
2245 llvm::ConstantArray::get(ATy, UsedArray), "");
2246 NV->takeName(&V);
2247 NV->setSection("llvm.metadata");
2248 delete &V;
Rafael Espindola00752162013-05-09 17:22:59 +00002249}
2250
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002251namespace {
James Molloyea31ad32015-11-13 11:05:07 +00002252/// An easy to access representation of llvm.used and llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002253class LLVMUsed {
2254 SmallPtrSet<GlobalValue *, 8> Used;
2255 SmallPtrSet<GlobalValue *, 8> CompilerUsed;
2256 GlobalVariable *UsedV;
2257 GlobalVariable *CompilerUsedV;
2258
2259public:
Rafael Espindolaec2375f2013-07-25 02:50:08 +00002260 LLVMUsed(Module &M) {
Rafael Espindola17600e22013-07-25 03:23:25 +00002261 UsedV = collectUsedGlobalVariables(M, Used, false);
2262 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
Rafael Espindola00752162013-05-09 17:22:59 +00002263 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002264 typedef SmallPtrSet<GlobalValue *, 8>::iterator iterator;
Craig Topper46276792014-08-24 23:23:06 +00002265 typedef iterator_range<iterator> used_iterator_range;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002266 iterator usedBegin() { return Used.begin(); }
2267 iterator usedEnd() { return Used.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002268 used_iterator_range used() {
2269 return used_iterator_range(usedBegin(), usedEnd());
2270 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002271 iterator compilerUsedBegin() { return CompilerUsed.begin(); }
2272 iterator compilerUsedEnd() { return CompilerUsed.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002273 used_iterator_range compilerUsed() {
2274 return used_iterator_range(compilerUsedBegin(), compilerUsedEnd());
2275 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002276 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
2277 bool compilerUsedCount(GlobalValue *GV) const {
2278 return CompilerUsed.count(GV);
2279 }
2280 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2281 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
David Blaikie70573dc2014-11-19 07:49:26 +00002282 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
2283 bool compilerUsedInsert(GlobalValue *GV) {
2284 return CompilerUsed.insert(GV).second;
2285 }
Rafael Espindola00752162013-05-09 17:22:59 +00002286
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002287 void syncVariablesAndSets() {
2288 if (UsedV)
2289 setUsedInitializer(*UsedV, Used);
2290 if (CompilerUsedV)
2291 setUsedInitializer(*CompilerUsedV, CompilerUsed);
2292 }
2293};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00002294}
Rafael Espindola00752162013-05-09 17:22:59 +00002295
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002296static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
2297 if (GA.use_empty()) // No use at all.
2298 return false;
2299
2300 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
2301 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002302 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002303 if (!GA.hasOneUse())
2304 // Strictly more than one use. So at least one is not in llvm.used and
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002305 // llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002306 return true;
2307
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002308 // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002309 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
Rafael Espindola00752162013-05-09 17:22:59 +00002310}
2311
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002312static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
2313 const LLVMUsed &U) {
2314 unsigned N = 2;
2315 assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
2316 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002317 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002318 if (U.usedCount(&V) || U.compilerUsedCount(&V))
2319 ++N;
2320 return V.hasNUsesOrMore(N);
2321}
2322
2323static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
2324 if (!GA.hasLocalLinkage())
2325 return true;
2326
2327 return U.usedCount(&GA) || U.compilerUsedCount(&GA);
2328}
2329
Craig Topper71b7b682014-08-21 05:55:13 +00002330static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U,
2331 bool &RenameTarget) {
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002332 RenameTarget = false;
Rafael Espindola00752162013-05-09 17:22:59 +00002333 bool Ret = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002334 if (hasUseOtherThanLLVMUsed(GA, U))
Rafael Espindola00752162013-05-09 17:22:59 +00002335 Ret = true;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002336
2337 // If the alias is externally visible, we may still be able to simplify it.
2338 if (!mayHaveOtherReferences(GA, U))
2339 return Ret;
2340
2341 // If the aliasee has internal linkage, give it the name and linkage
2342 // of the alias, and delete the alias. This turns:
2343 // define internal ... @f(...)
2344 // @a = alias ... @f
2345 // into:
2346 // define ... @a(...)
2347 Constant *Aliasee = GA.getAliasee();
2348 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2349 if (!Target->hasLocalLinkage())
2350 return Ret;
2351
2352 // Do not perform the transform if multiple aliases potentially target the
2353 // aliasee. This check also ensures that it is safe to replace the section
2354 // and other attributes of the aliasee with those of the alias.
2355 if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
2356 return Ret;
2357
2358 RenameTarget = true;
2359 return true;
Rafael Espindola00752162013-05-09 17:22:59 +00002360}
2361
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002362static bool
2363OptimizeGlobalAliases(Module &M,
2364 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002365 bool Changed = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002366 LLVMUsed Used(M);
2367
Craig Topper46276792014-08-24 23:23:06 +00002368 for (GlobalValue *GV : Used.used())
2369 Used.compilerUsedErase(GV);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002370
Duncan Sands0bcf0852009-01-07 20:01:06 +00002371 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002372 I != E;) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002373 GlobalAlias *J = &*I++;
2374
Duncan Sandsed722832009-03-06 10:21:56 +00002375 // Aliases without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002376 if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002377 J->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindola5349d872015-12-22 19:50:22 +00002378
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002379 if (deleteIfDead(*J, NotDiscardableComdats)) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002380 Changed = true;
2381 continue;
2382 }
2383
Duncan Sandsb3f27882009-02-15 09:56:08 +00002384 // If the aliasee may change at link time, nothing can be done - bail out.
Sanjoy Das5ce32722016-04-08 00:48:30 +00002385 if (J->isInterposable())
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002386 continue;
2387
Duncan Sandsb3f27882009-02-15 09:56:08 +00002388 Constant *Aliasee = J->getAliasee();
David Majnemer0e2cc2a2014-07-01 00:30:56 +00002389 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts());
2390 // We can't trivially replace the alias with the aliasee if the aliasee is
2391 // non-trivial in some way.
2392 // TODO: Try to handle non-zero GEPs of local aliasees.
2393 if (!Target)
2394 continue;
Duncan Sands7a1db332009-02-18 17:55:38 +00002395 Target->removeDeadConstantUsers();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002396
2397 // Make all users of the alias use the aliasee instead.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002398 bool RenameTarget;
2399 if (!hasUsesToReplace(*J, Used, RenameTarget))
Rafael Espindola00752162013-05-09 17:22:59 +00002400 continue;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002401
Rafael Espindola6b238632014-05-16 19:35:39 +00002402 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType()));
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002403 ++NumAliasesResolved;
2404 Changed = true;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002405
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002406 if (RenameTarget) {
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002407 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002408 Target->takeName(&*J);
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002409 Target->setLinkage(J->getLinkage());
Reid Kleckner22b19da2014-02-13 02:18:36 +00002410 Target->setVisibility(J->getVisibility());
2411 Target->setDLLStorageClass(J->getDLLStorageClass());
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002412
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002413 if (Used.usedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002414 Used.usedInsert(Target);
2415
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002416 if (Used.compilerUsedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002417 Used.compilerUsedInsert(Target);
Rafael Espindola8d304802013-06-12 16:45:47 +00002418 } else if (mayHaveOtherReferences(*J, Used))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002419 continue;
2420
Duncan Sandsb3f27882009-02-15 09:56:08 +00002421 // Delete the alias.
2422 M.getAliasList().erase(J);
2423 ++NumAliasesRemoved;
2424 Changed = true;
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002425 }
2426
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002427 Used.syncVariablesAndSets();
2428
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002429 return Changed;
2430}
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002431
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002432static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
David L. Jonesd21529f2017-01-23 23:16:46 +00002433 LibFunc F = LibFunc_cxa_atexit;
Ahmed Bougachad765a822016-04-27 19:04:35 +00002434 if (!TLI->has(F))
Craig Topperf40110f2014-04-25 05:29:35 +00002435 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002436
Ahmed Bougachad765a822016-04-27 19:04:35 +00002437 Function *Fn = M.getFunction(TLI->getName(F));
Anders Carlssonee6bc702011-03-20 17:59:11 +00002438 if (!Fn)
Craig Topperf40110f2014-04-25 05:29:35 +00002439 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002440
Ahmed Bougachad765a822016-04-27 19:04:35 +00002441 // Make sure that the function has the correct prototype.
David L. Jonesd21529f2017-01-23 23:16:46 +00002442 if (!TLI->getLibFunc(*Fn, F) || F != LibFunc_cxa_atexit)
Craig Topperf40110f2014-04-25 05:29:35 +00002443 return nullptr;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002444
2445 return Fn;
2446}
2447
James Molloyea31ad32015-11-13 11:05:07 +00002448/// Returns whether the given function is an empty C++ destructor and can
2449/// therefore be eliminated.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002450/// Note that we assume that other optimization passes have already simplified
2451/// the code so we only look for a function with a single basic block, where
Benjamin Kramer1a4695a2012-02-09 16:28:15 +00002452/// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
2453/// other side-effect free instructions.
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002454static bool cxxDtorIsEmpty(const Function &Fn,
2455 SmallPtrSet<const Function *, 8> &CalledFunctions) {
Anders Carlsson48a44912011-03-20 19:51:13 +00002456 // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
Nick Lewyckyd0781832011-03-21 02:26:01 +00002457 // nounwind, but that doesn't seem worth doing.
Anders Carlsson48a44912011-03-20 19:51:13 +00002458 if (Fn.isDeclaration())
2459 return false;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002460
2461 if (++Fn.begin() != Fn.end())
2462 return false;
2463
2464 const BasicBlock &EntryBlock = Fn.getEntryBlock();
2465 for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end();
2466 I != E; ++I) {
2467 if (const CallInst *CI = dyn_cast<CallInst>(I)) {
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002468 // Ignore debug intrinsics.
2469 if (isa<DbgInfoIntrinsic>(CI))
2470 continue;
2471
Anders Carlssonee6bc702011-03-20 17:59:11 +00002472 const Function *CalledFn = CI->getCalledFunction();
2473
2474 if (!CalledFn)
2475 return false;
2476
Anders Carlsson1cc80732011-03-22 03:21:01 +00002477 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
2478
Anders Carlsson48a44912011-03-20 19:51:13 +00002479 // Don't treat recursive functions as empty.
David Blaikie70573dc2014-11-19 07:49:26 +00002480 if (!NewCalledFunctions.insert(CalledFn).second)
Anders Carlsson48a44912011-03-20 19:51:13 +00002481 return false;
2482
Anders Carlsson1cc80732011-03-22 03:21:01 +00002483 if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002484 return false;
2485 } else if (isa<ReturnInst>(*I))
Benjamin Kramer487a3962012-02-09 14:26:06 +00002486 return true; // We're done.
2487 else if (I->mayHaveSideEffects())
2488 return false; // Destructor with side effects, bail.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002489 }
2490
2491 return false;
2492}
2493
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002494static bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
Anders Carlssonee6bc702011-03-20 17:59:11 +00002495 /// Itanium C++ ABI p3.3.5:
2496 ///
2497 /// After constructing a global (or local static) object, that will require
2498 /// destruction on exit, a termination function is registered as follows:
2499 ///
2500 /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
2501 ///
2502 /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
2503 /// call f(p) when DSO d is unloaded, before all such termination calls
2504 /// registered before this one. It returns zero if registration is
Nick Lewyckyd0781832011-03-21 02:26:01 +00002505 /// successful, nonzero on failure.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002506
2507 // This pass will look for calls to __cxa_atexit where the function is trivial
2508 // and remove them.
2509 bool Changed = false;
2510
Chandler Carruthcdf47882014-03-09 03:16:01 +00002511 for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end();
2512 I != E;) {
Anders Carlsson336fd902011-03-20 20:21:33 +00002513 // We're only interested in calls. Theoretically, we could handle invoke
2514 // instructions as well, but neither llvm-gcc nor clang generate invokes
2515 // to __cxa_atexit.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002516 CallInst *CI = dyn_cast<CallInst>(*I++);
2517 if (!CI)
Anders Carlsson336fd902011-03-20 20:21:33 +00002518 continue;
2519
Jakub Staszak9525a772012-12-06 21:57:16 +00002520 Function *DtorFn =
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002521 dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
Anders Carlssonee6bc702011-03-20 17:59:11 +00002522 if (!DtorFn)
2523 continue;
2524
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002525 SmallPtrSet<const Function *, 8> CalledFunctions;
2526 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002527 continue;
2528
2529 // Just remove the call.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002530 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
2531 CI->eraseFromParent();
Anders Carlsson48a44912011-03-20 19:51:13 +00002532
Anders Carlssonee6bc702011-03-20 17:59:11 +00002533 ++NumCXXDtorsRemoved;
2534
2535 Changed |= true;
2536 }
2537
2538 return Changed;
2539}
2540
Justin Bogner1a075012016-04-26 00:28:01 +00002541static bool optimizeGlobalsInModule(
2542 Module &M, const DataLayout &DL, TargetLibraryInfo *TLI,
2543 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002544 SmallSet<const Comdat *, 8> NotDiscardableComdats;
Justin Bogner1a075012016-04-26 00:28:01 +00002545 bool Changed = false;
Chris Lattner25db5802004-10-07 04:16:33 +00002546 bool LocalChange = true;
2547 while (LocalChange) {
2548 LocalChange = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002549
David Majnemer1b3b70e2014-10-08 07:23:31 +00002550 NotDiscardableComdats.clear();
2551 for (const GlobalVariable &GV : M.globals())
2552 if (const Comdat *C = GV.getComdat())
2553 if (!GV.isDiscardableIfUnused() || !GV.use_empty())
2554 NotDiscardableComdats.insert(C);
2555 for (Function &F : M)
2556 if (const Comdat *C = F.getComdat())
2557 if (!F.isDefTriviallyDead())
2558 NotDiscardableComdats.insert(C);
2559 for (GlobalAlias &GA : M.aliases())
2560 if (const Comdat *C = GA.getComdat())
2561 if (!GA.isDiscardableIfUnused() || !GA.use_empty())
2562 NotDiscardableComdats.insert(C);
2563
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002564 // Delete functions that are trivially dead, ccc -> fastcc
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002565 LocalChange |=
2566 OptimizeFunctions(M, TLI, LookupDomTree, NotDiscardableComdats);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002567
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002568 // Optimize global_ctors list.
Richard Smithc167d652014-05-06 01:44:26 +00002569 LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) {
2570 return EvaluateStaticConstructor(F, DL, TLI);
2571 });
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002572
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002573 // Optimize non-address-taken globals.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002574 LocalChange |= OptimizeGlobalVars(M, TLI, LookupDomTree,
2575 NotDiscardableComdats);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002576
2577 // Resolve aliases, when possible.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002578 LocalChange |= OptimizeGlobalAliases(M, NotDiscardableComdats);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002579
Manman Renb3c52fb2013-05-14 21:52:44 +00002580 // Try to remove trivial global destructors if they are not removed
2581 // already.
2582 Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002583 if (CXAAtExitFn)
2584 LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
2585
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002586 Changed |= LocalChange;
Chris Lattner25db5802004-10-07 04:16:33 +00002587 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002588
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002589 // TODO: Move all global ctors functions to the end of the module for code
2590 // layout.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002591
Chris Lattner25db5802004-10-07 04:16:33 +00002592 return Changed;
2593}
Justin Bogner1a075012016-04-26 00:28:01 +00002594
Sean Silvafd03ac62016-08-09 00:28:38 +00002595PreservedAnalyses GlobalOptPass::run(Module &M, ModuleAnalysisManager &AM) {
Justin Bogner1a075012016-04-26 00:28:01 +00002596 auto &DL = M.getDataLayout();
2597 auto &TLI = AM.getResult<TargetLibraryAnalysis>(M);
2598 auto &FAM =
2599 AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
2600 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree &{
2601 return FAM.getResult<DominatorTreeAnalysis>(F);
2602 };
2603 if (!optimizeGlobalsInModule(M, DL, &TLI, LookupDomTree))
2604 return PreservedAnalyses::all();
2605 return PreservedAnalyses::none();
2606}
2607
2608namespace {
2609struct GlobalOptLegacyPass : public ModulePass {
2610 static char ID; // Pass identification, replacement for typeid
2611 GlobalOptLegacyPass() : ModulePass(ID) {
2612 initializeGlobalOptLegacyPassPass(*PassRegistry::getPassRegistry());
2613 }
2614
2615 bool runOnModule(Module &M) override {
2616 if (skipModule(M))
2617 return false;
2618
2619 auto &DL = M.getDataLayout();
2620 auto *TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
2621 auto LookupDomTree = [this](Function &F) -> DominatorTree & {
2622 return this->getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
2623 };
2624 return optimizeGlobalsInModule(M, DL, TLI, LookupDomTree);
2625 }
2626
2627 void getAnalysisUsage(AnalysisUsage &AU) const override {
2628 AU.addRequired<TargetLibraryInfoWrapperPass>();
2629 AU.addRequired<DominatorTreeWrapperPass>();
2630 }
2631};
2632}
2633
2634char GlobalOptLegacyPass::ID = 0;
2635INITIALIZE_PASS_BEGIN(GlobalOptLegacyPass, "globalopt",
2636 "Global Variable Optimizer", false, false)
2637INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
2638INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
2639INITIALIZE_PASS_END(GlobalOptLegacyPass, "globalopt",
2640 "Global Variable Optimizer", false, false)
2641
2642ModulePass *llvm::createGlobalOptimizerPass() {
2643 return new GlobalOptLegacyPass();
2644}