blob: 310c29275faf255114ba9a31d3423d5b34ed0f11 [file] [log] [blame]
Chris Lattner25db5802004-10-07 04:16:33 +00001//===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chris Lattner25db5802004-10-07 04:16:33 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Chris Lattner25db5802004-10-07 04:16:33 +00008//===----------------------------------------------------------------------===//
9//
10// This pass transforms simple global variables that never have their address
11// taken. If obviously true, it marks read/write globals as constant, deletes
12// variables only stored to, etc.
13//
14//===----------------------------------------------------------------------===//
15
Justin Bogner1a075012016-04-26 00:28:01 +000016#include "llvm/Transforms/IPO/GlobalOpt.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/SmallPtrSet.h"
David Majnemerdad0a642014-06-27 18:19:56 +000020#include "llvm/ADT/SmallSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/SmallVector.h"
22#include "llvm/ADT/Statistic.h"
23#include "llvm/Analysis/ConstantFolding.h"
24#include "llvm/Analysis/MemoryBuiltins.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000025#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000026#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/CallingConv.h"
28#include "llvm/IR/Constants.h"
29#include "llvm/IR/DataLayout.h"
30#include "llvm/IR/DerivedTypes.h"
James Molloy9c7d4d82015-11-15 14:21:37 +000031#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000032#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/Instructions.h"
34#include "llvm/IR/IntrinsicInst.h"
35#include "llvm/IR/Module.h"
36#include "llvm/IR/Operator.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000037#include "llvm/IR/ValueHandle.h"
Chris Lattner25db5802004-10-07 04:16:33 +000038#include "llvm/Pass.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000039#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000040#include "llvm/Support/ErrorHandling.h"
Chris Lattner67ca6f632008-04-26 07:40:11 +000041#include "llvm/Support/MathExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000042#include "llvm/Support/raw_ostream.h"
Justin Bogner1a075012016-04-26 00:28:01 +000043#include "llvm/Transforms/IPO.h"
Nico Weber4b2acde2014-05-02 18:35:25 +000044#include "llvm/Transforms/Utils/CtorUtils.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000045#include "llvm/Transforms/Utils/Evaluator.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000046#include "llvm/Transforms/Utils/GlobalStatus.h"
Chris Lattner25db5802004-10-07 04:16:33 +000047#include <algorithm>
48using namespace llvm;
49
Chandler Carruth964daaa2014-04-22 02:55:47 +000050#define DEBUG_TYPE "globalopt"
51
Chris Lattner1631bcb2006-12-19 22:09:18 +000052STATISTIC(NumMarked , "Number of globals marked constant");
Rafael Espindolafc355bc2011-01-19 16:32:21 +000053STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
Chris Lattner1631bcb2006-12-19 22:09:18 +000054STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
55STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
56STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
57STATISTIC(NumDeleted , "Number of globals deleted");
Chris Lattner1631bcb2006-12-19 22:09:18 +000058STATISTIC(NumGlobUses , "Number of global uses devirtualized");
Alexey Samsonova1944e62013-10-07 19:03:24 +000059STATISTIC(NumLocalized , "Number of globals localized");
Chris Lattner1631bcb2006-12-19 22:09:18 +000060STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
61STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
62STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands573b3f82008-02-16 20:56:04 +000063STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sandsb3f27882009-02-15 09:56:08 +000064STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
65STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Anders Carlssonee6bc702011-03-20 17:59:11 +000066STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed");
Chris Lattner25db5802004-10-07 04:16:33 +000067
James Molloyea31ad32015-11-13 11:05:07 +000068/// Is this global variable possibly used by a leak checker as a root? If so,
69/// we might not really want to eliminate the stores to it.
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +000070static bool isLeakCheckerRoot(GlobalVariable *GV) {
71 // A global variable is a root if it is a pointer, or could plausibly contain
72 // a pointer. There are two challenges; one is that we could have a struct
73 // the has an inner member which is a pointer. We recurse through the type to
74 // detect these (up to a point). The other is that we may actually be a union
75 // of a pointer and another type, and so our LLVM type is an integer which
76 // gets converted into a pointer, or our type is an [i8 x #] with a pointer
77 // potentially contained here.
78
79 if (GV->hasPrivateLinkage())
80 return false;
81
82 SmallVector<Type *, 4> Types;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +000083 Types.push_back(GV->getValueType());
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +000084
85 unsigned Limit = 20;
86 do {
87 Type *Ty = Types.pop_back_val();
88 switch (Ty->getTypeID()) {
89 default: break;
90 case Type::PointerTyID: return true;
91 case Type::ArrayTyID:
92 case Type::VectorTyID: {
93 SequentialType *STy = cast<SequentialType>(Ty);
94 Types.push_back(STy->getElementType());
95 break;
96 }
97 case Type::StructTyID: {
98 StructType *STy = cast<StructType>(Ty);
99 if (STy->isOpaque()) return true;
100 for (StructType::element_iterator I = STy->element_begin(),
101 E = STy->element_end(); I != E; ++I) {
102 Type *InnerTy = *I;
103 if (isa<PointerType>(InnerTy)) return true;
104 if (isa<CompositeType>(InnerTy))
105 Types.push_back(InnerTy);
106 }
107 break;
108 }
109 }
110 if (--Limit == 0) return true;
111 } while (!Types.empty());
112 return false;
113}
114
115/// Given a value that is stored to a global but never read, determine whether
116/// it's safe to remove the store and the chain of computation that feeds the
117/// store.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000118static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000119 do {
120 if (isa<Constant>(V))
121 return true;
122 if (!V->hasOneUse())
123 return false;
Nick Lewycky7d0f1102012-07-25 21:19:40 +0000124 if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
125 isa<GlobalValue>(V))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000126 return false;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000127 if (isAllocationFn(V, TLI))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000128 return true;
129
130 Instruction *I = cast<Instruction>(V);
131 if (I->mayHaveSideEffects())
132 return false;
133 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
134 if (!GEP->hasAllConstantIndices())
135 return false;
136 } else if (I->getNumOperands() != 1) {
137 return false;
138 }
139
140 V = I->getOperand(0);
141 } while (1);
142}
143
James Molloyea31ad32015-11-13 11:05:07 +0000144/// This GV is a pointer root. Loop over all users of the global and clean up
145/// any that obviously don't assign the global a value that isn't dynamically
146/// allocated.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000147static bool CleanupPointerRootUsers(GlobalVariable *GV,
148 const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000149 // A brief explanation of leak checkers. The goal is to find bugs where
150 // pointers are forgotten, causing an accumulating growth in memory
151 // usage over time. The common strategy for leak checkers is to whitelist the
152 // memory pointed to by globals at exit. This is popular because it also
153 // solves another problem where the main thread of a C++ program may shut down
154 // before other threads that are still expecting to use those globals. To
155 // handle that case, we expect the program may create a singleton and never
156 // destroy it.
157
158 bool Changed = false;
159
160 // If Dead[n].first is the only use of a malloc result, we can delete its
161 // chain of computation and the store to the global in Dead[n].second.
162 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
163
164 // Constants can't be pointers to dynamically allocated memory.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000165 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end();
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000166 UI != E;) {
167 User *U = *UI++;
168 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
169 Value *V = SI->getValueOperand();
170 if (isa<Constant>(V)) {
171 Changed = true;
172 SI->eraseFromParent();
173 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
174 if (I->hasOneUse())
175 Dead.push_back(std::make_pair(I, SI));
176 }
177 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
178 if (isa<Constant>(MSI->getValue())) {
179 Changed = true;
180 MSI->eraseFromParent();
181 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
182 if (I->hasOneUse())
183 Dead.push_back(std::make_pair(I, MSI));
184 }
185 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
186 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
187 if (MemSrc && MemSrc->isConstant()) {
188 Changed = true;
189 MTI->eraseFromParent();
190 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
191 if (I->hasOneUse())
192 Dead.push_back(std::make_pair(I, MTI));
193 }
194 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
195 if (CE->use_empty()) {
196 CE->destroyConstant();
197 Changed = true;
198 }
199 } else if (Constant *C = dyn_cast<Constant>(U)) {
Rafael Espindola27797ba2013-10-17 18:06:32 +0000200 if (isSafeToDestroyConstant(C)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000201 C->destroyConstant();
202 // This could have invalidated UI, start over from scratch.
203 Dead.clear();
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000204 CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000205 return true;
206 }
207 }
208 }
209
210 for (int i = 0, e = Dead.size(); i != e; ++i) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000211 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000212 Dead[i].second->eraseFromParent();
213 Instruction *I = Dead[i].first;
214 do {
Michael Gottesman2a654272013-01-11 23:08:52 +0000215 if (isAllocationFn(I, TLI))
216 break;
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000217 Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
218 if (!J)
219 break;
220 I->eraseFromParent();
221 I = J;
Nick Lewycky38be9312012-07-24 21:33:00 +0000222 } while (1);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000223 I->eraseFromParent();
224 }
225 }
226
227 return Changed;
228}
229
James Molloyea31ad32015-11-13 11:05:07 +0000230/// We just marked GV constant. Loop over all users of the global, cleaning up
231/// the obvious ones. This is largely just a quick scan over the use list to
232/// clean up the easy and obvious cruft. This returns true if it made a change.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000233static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
Mehdi Amini46a43552015-03-04 18:43:29 +0000234 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000235 TargetLibraryInfo *TLI) {
Chris Lattnercb9f1522004-10-10 16:43:46 +0000236 bool Changed = false;
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000237 // Note that we need to use a weak value handle for the worklist items. When
238 // we delete a constant array, we may also be holding pointer to one of its
239 // elements (or an element of one of its elements if we're dealing with an
240 // array of arrays) in the worklist.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000241 SmallVector<WeakVH, 8> WorkList(V->user_begin(), V->user_end());
Bill Wendling88d06c32013-04-02 08:16:45 +0000242 while (!WorkList.empty()) {
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000243 Value *UV = WorkList.pop_back_val();
244 if (!UV)
245 continue;
246
247 User *U = cast<User>(UV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000248
Chris Lattner25db5802004-10-07 04:16:33 +0000249 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000250 if (Init) {
251 // Replace the load with the initializer.
252 LI->replaceAllUsesWith(Init);
253 LI->eraseFromParent();
254 Changed = true;
255 }
Chris Lattner25db5802004-10-07 04:16:33 +0000256 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
257 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000258 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000259 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000260 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
261 if (CE->getOpcode() == Instruction::GetElementPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000262 Constant *SubInit = nullptr;
Chris Lattner46d9ff082005-09-26 07:34:35 +0000263 if (Init)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000264 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000265 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI);
Matt Arsenault461c8e02014-01-02 20:01:43 +0000266 } else if ((CE->getOpcode() == Instruction::BitCast &&
267 CE->getType()->isPointerTy()) ||
268 CE->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000269 // Pointer cast, delete any stores and memsets to the global.
Craig Topperf40110f2014-04-25 05:29:35 +0000270 Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI);
Chris Lattner7561ca12005-02-27 18:58:52 +0000271 }
272
273 if (CE->use_empty()) {
274 CE->destroyConstant();
275 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000276 }
277 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000278 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
279 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
280 // and will invalidate our notion of what Init is.
Craig Topperf40110f2014-04-25 05:29:35 +0000281 Constant *SubInit = nullptr;
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000282 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
Mehdi Amini46a43552015-03-04 18:43:29 +0000283 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000284 ConstantFoldInstruction(GEP, DL, TLI));
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000285 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000286 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Benjamin Krameraa9e4a52012-03-28 14:50:09 +0000287
288 // If the initializer is an all-null value and we have an inbounds GEP,
289 // we already know what the result of any load from that GEP is.
290 // TODO: Handle splats.
291 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
Eduard Burtescu19eb0312016-01-19 17:28:00 +0000292 SubInit = Constant::getNullValue(GEP->getResultElementType());
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000293 }
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000294 Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000295
Chris Lattnercb9f1522004-10-10 16:43:46 +0000296 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000297 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000298 Changed = true;
299 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000300 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
301 if (MI->getRawDest() == V) {
302 MI->eraseFromParent();
303 Changed = true;
304 }
305
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000306 } else if (Constant *C = dyn_cast<Constant>(U)) {
307 // If we have a chain of dead constantexprs or other things dangling from
308 // us, and if they are all dead, nuke them without remorse.
Rafael Espindola27797ba2013-10-17 18:06:32 +0000309 if (isSafeToDestroyConstant(C)) {
Devang Pateld926aaa2009-03-06 01:37:41 +0000310 C->destroyConstant();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000311 CleanupConstantGlobalUsers(V, Init, DL, TLI);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000312 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000313 }
Chris Lattner25db5802004-10-07 04:16:33 +0000314 }
315 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000316 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000317}
318
James Molloyea31ad32015-11-13 11:05:07 +0000319/// Return true if the specified instruction is a safe user of a derived
320/// expression from a global that we want to SROA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000321static bool isSafeSROAElementUse(Value *V) {
322 // We might have a dead and dangling constant hanging off of here.
323 if (Constant *C = dyn_cast<Constant>(V))
Rafael Espindola27797ba2013-10-17 18:06:32 +0000324 return isSafeToDestroyConstant(C);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000325
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000326 Instruction *I = dyn_cast<Instruction>(V);
327 if (!I) return false;
328
329 // Loads are ok.
330 if (isa<LoadInst>(I)) return true;
331
332 // Stores *to* the pointer are ok.
333 if (StoreInst *SI = dyn_cast<StoreInst>(I))
334 return SI->getOperand(0) != V;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000335
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000336 // Otherwise, it must be a GEP.
337 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
Craig Topperf40110f2014-04-25 05:29:35 +0000338 if (!GEPI) return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000339
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000340 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
341 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
342 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000343
Chandler Carruthcdf47882014-03-09 03:16:01 +0000344 for (User *U : GEPI->users())
345 if (!isSafeSROAElementUse(U))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000346 return false;
Chris Lattnerab053722008-01-14 01:31:05 +0000347 return true;
348}
349
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000350
James Molloyea31ad32015-11-13 11:05:07 +0000351/// U is a direct user of the specified global value. Look at it and its uses
352/// and decide whether it is safe to SROA this global.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000353static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
354 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000355 if (!isa<GetElementPtrInst>(U) &&
356 (!isa<ConstantExpr>(U) ||
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000357 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
358 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000359
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000360 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
361 // don't like < 3 operand CE's, and we don't like non-constant integer
362 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
363 // value of C.
364 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
365 !cast<Constant>(U->getOperand(1))->isNullValue() ||
366 !isa<ConstantInt>(U->getOperand(2)))
367 return false;
368
369 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
370 ++GEPI; // Skip over the pointer index.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000371
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000372 // If this is a use of an array allocation, do a bit more checking for sanity.
Chris Lattner229907c2011-07-18 04:54:35 +0000373 if (ArrayType *AT = dyn_cast<ArrayType>(*GEPI)) {
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000374 uint64_t NumElements = AT->getNumElements();
375 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000376
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000377 // Check to make sure that index falls within the array. If not,
378 // something funny is going on, so we won't do the optimization.
379 //
380 if (Idx->getZExtValue() >= NumElements)
381 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000382
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000383 // We cannot scalar repl this level of the array unless any array
384 // sub-indices are in-range constants. In particular, consider:
385 // A[0][i]. We cannot know that the user isn't doing invalid things like
386 // allowing i to index an out-of-range subscript that accesses A[1].
387 //
388 // Scalar replacing *just* the outer index of the array is probably not
389 // going to be a win anyway, so just give up.
390 for (++GEPI; // Skip array index.
Dan Gohman82ac81b2009-08-18 14:58:19 +0000391 GEPI != E;
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000392 ++GEPI) {
393 uint64_t NumElements;
Chris Lattner229907c2011-07-18 04:54:35 +0000394 if (ArrayType *SubArrayTy = dyn_cast<ArrayType>(*GEPI))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000395 NumElements = SubArrayTy->getNumElements();
Chris Lattner229907c2011-07-18 04:54:35 +0000396 else if (VectorType *SubVectorTy = dyn_cast<VectorType>(*GEPI))
Dan Gohman82ac81b2009-08-18 14:58:19 +0000397 NumElements = SubVectorTy->getNumElements();
398 else {
Duncan Sands19d0b472010-02-16 11:11:14 +0000399 assert((*GEPI)->isStructTy() &&
Dan Gohman82ac81b2009-08-18 14:58:19 +0000400 "Indexed GEP type is not array, vector, or struct!");
401 continue;
402 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000403
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000404 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
405 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
406 return false;
407 }
408 }
409
Chandler Carruthcdf47882014-03-09 03:16:01 +0000410 for (User *UU : U->users())
411 if (!isSafeSROAElementUse(UU))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000412 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000413
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000414 return true;
415}
416
James Molloyea31ad32015-11-13 11:05:07 +0000417/// Look at all uses of the global and decide whether it is safe for us to
418/// perform this transformation.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000419static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000420 for (User *U : GV->users())
421 if (!IsUserOfGlobalSafeForSRA(U, GV))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000422 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000423
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000424 return true;
425}
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000426
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000427
James Molloyea31ad32015-11-13 11:05:07 +0000428/// Perform scalar replacement of aggregates on the specified global variable.
429/// This opens the door for other optimizations by exposing the behavior of the
430/// program in a more fine-grained way. We have determined that this
431/// transformation is safe already. We return the first global variable we
Chris Lattnerabab0712004-10-08 17:32:09 +0000432/// insert so that the caller can reprocess it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000433static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
Chris Lattnerab053722008-01-14 01:31:05 +0000434 // Make sure this global only has simple uses that we can SRA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000435 if (!GlobalUsersSafeToSRA(GV))
Craig Topperf40110f2014-04-25 05:29:35 +0000436 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000437
James Molloyeb040cc2016-04-25 10:48:29 +0000438 assert(GV->hasLocalLinkage());
Chris Lattnerabab0712004-10-08 17:32:09 +0000439 Constant *Init = GV->getInitializer();
Chris Lattner229907c2011-07-18 04:54:35 +0000440 Type *Ty = Init->getType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000441
Chris Lattnerabab0712004-10-08 17:32:09 +0000442 std::vector<GlobalVariable*> NewGlobals;
443 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
444
Chris Lattner67ca6f632008-04-26 07:40:11 +0000445 // Get the alignment of the global, either explicit or target-specific.
446 unsigned StartAlignment = GV->getAlignment();
447 if (StartAlignment == 0)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000448 StartAlignment = DL.getABITypeAlignment(GV->getType());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000449
Chris Lattner229907c2011-07-18 04:54:35 +0000450 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Chris Lattnerabab0712004-10-08 17:32:09 +0000451 NewGlobals.reserve(STy->getNumElements());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000452 const StructLayout &Layout = *DL.getStructLayout(STy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000453 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000454 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000455 assert(In && "Couldn't get element of initializer?");
Chris Lattner46b5c642009-11-06 04:27:31 +0000456 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000457 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000458 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000459 GV->getThreadLocalMode(),
Owen Anderson5948fdf2009-07-08 01:26:06 +0000460 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000461 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000462 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000463 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000464 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000465
Chris Lattner67ca6f632008-04-26 07:40:11 +0000466 // Calculate the known alignment of the field. If the original aggregate
467 // had 256 byte alignment for example, something might depend on that:
468 // propagate info to each field.
469 uint64_t FieldOffset = Layout.getElementOffset(i);
470 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000471 if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i)))
Chris Lattner67ca6f632008-04-26 07:40:11 +0000472 NGV->setAlignment(NewAlign);
Chris Lattnerabab0712004-10-08 17:32:09 +0000473 }
Chris Lattner229907c2011-07-18 04:54:35 +0000474 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
Chris Lattnerabab0712004-10-08 17:32:09 +0000475 unsigned NumElements = 0;
Chris Lattner229907c2011-07-18 04:54:35 +0000476 if (ArrayType *ATy = dyn_cast<ArrayType>(STy))
Chris Lattnerabab0712004-10-08 17:32:09 +0000477 NumElements = ATy->getNumElements();
Chris Lattnerabab0712004-10-08 17:32:09 +0000478 else
Chris Lattner67ca6f632008-04-26 07:40:11 +0000479 NumElements = cast<VectorType>(STy)->getNumElements();
Chris Lattnerabab0712004-10-08 17:32:09 +0000480
Chris Lattner25169ca2005-02-23 16:53:04 +0000481 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Craig Topperf40110f2014-04-25 05:29:35 +0000482 return nullptr; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000483 NewGlobals.reserve(NumElements);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000484
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000485 uint64_t EltSize = DL.getTypeAllocSize(STy->getElementType());
486 unsigned EltAlign = DL.getABITypeAlignment(STy->getElementType());
Chris Lattnerabab0712004-10-08 17:32:09 +0000487 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000488 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000489 assert(In && "Couldn't get element of initializer?");
490
Chris Lattner46b5c642009-11-06 04:27:31 +0000491 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000492 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000493 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000494 GV->getThreadLocalMode(),
Owen Andersonb17f3292009-07-08 19:03:57 +0000495 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000496 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000497 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000498 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000499 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000500
Chris Lattner67ca6f632008-04-26 07:40:11 +0000501 // Calculate the known alignment of the field. If the original aggregate
502 // had 256 byte alignment for example, something might depend on that:
503 // propagate info to each field.
504 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
505 if (NewAlign > EltAlign)
506 NGV->setAlignment(NewAlign);
Chris Lattnerabab0712004-10-08 17:32:09 +0000507 }
508 }
509
510 if (NewGlobals.empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000511 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000512
James Molloyef607a22015-10-28 14:30:53 +0000513 DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n");
Chris Lattner004e2502004-10-11 05:54:41 +0000514
Chris Lattner46b5c642009-11-06 04:27:31 +0000515 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattnerabab0712004-10-08 17:32:09 +0000516
517 // Loop over all of the uses of the global, replacing the constantexpr geps,
518 // with smaller constantexpr geps or direct references.
519 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000520 User *GEP = GV->user_back();
Chris Lattner004e2502004-10-11 05:54:41 +0000521 assert(((isa<ConstantExpr>(GEP) &&
522 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
523 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000524
Chris Lattnerabab0712004-10-08 17:32:09 +0000525 // Ignore the 1th operand, which has to be zero or else the program is quite
526 // broken (undefined). Get the 2nd operand, which is the structure or array
527 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000528 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000529 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
530
Chris Lattner004e2502004-10-11 05:54:41 +0000531 Value *NewPtr = NewGlobals[Val];
David Blaikied9d900c2015-05-07 17:28:58 +0000532 Type *NewTy = NewGlobals[Val]->getValueType();
Chris Lattnerabab0712004-10-08 17:32:09 +0000533
534 // Form a shorter GEP if needed.
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000535 if (GEP->getNumOperands() > 3) {
Chris Lattner004e2502004-10-11 05:54:41 +0000536 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000537 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000538 Idxs.push_back(NullInt);
539 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
540 Idxs.push_back(CE->getOperand(i));
David Blaikie4a2e73b2015-04-02 18:55:32 +0000541 NewPtr =
542 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
Chris Lattner004e2502004-10-11 05:54:41 +0000543 } else {
544 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000545 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000546 Idxs.push_back(NullInt);
547 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
548 Idxs.push_back(GEPI->getOperand(i));
David Blaikie741c8f82015-03-14 01:53:18 +0000549 NewPtr = GetElementPtrInst::Create(
David Blaikied9d900c2015-05-07 17:28:58 +0000550 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
Chris Lattner004e2502004-10-11 05:54:41 +0000551 }
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000552 }
Chris Lattner004e2502004-10-11 05:54:41 +0000553 GEP->replaceAllUsesWith(NewPtr);
554
555 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000556 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000557 else
558 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000559 }
560
Chris Lattner73ad73e2004-10-08 20:25:55 +0000561 // Delete the old global, now that it is dead.
562 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000563 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000564
565 // Loop over the new globals array deleting any globals that are obviously
566 // dead. This can arise due to scalarization of a structure or an array that
567 // has elements that are dead.
568 unsigned FirstGlobal = 0;
569 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
570 if (NewGlobals[i]->use_empty()) {
571 Globals.erase(NewGlobals[i]);
572 if (FirstGlobal == i) ++FirstGlobal;
573 }
574
Craig Topperf40110f2014-04-25 05:29:35 +0000575 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
Chris Lattnerabab0712004-10-08 17:32:09 +0000576}
577
James Molloyea31ad32015-11-13 11:05:07 +0000578/// Return true if all users of the specified value will trap if the value is
579/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
580/// reprocessing them.
Gabor Greif67972872010-04-06 19:24:18 +0000581static bool AllUsesOfValueWillTrapIfNull(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +0000582 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000583 for (const User *U : V->users())
Gabor Greif08355d62010-04-06 19:14:05 +0000584 if (isa<LoadInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000585 // Will trap.
Gabor Greif67972872010-04-06 19:24:18 +0000586 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000587 if (SI->getOperand(0) == V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000588 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000589 return false; // Storing the value.
590 }
Gabor Greif67972872010-04-06 19:24:18 +0000591 } else if (const CallInst *CI = dyn_cast<CallInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000592 if (CI->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000593 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000594 return false; // Not calling the ptr
595 }
Gabor Greif67972872010-04-06 19:24:18 +0000596 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000597 if (II->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000598 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000599 return false; // Not calling the ptr
600 }
Gabor Greif67972872010-04-06 19:24:18 +0000601 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000602 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000603 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000604 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000605 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000606 // If we've already seen this phi node, ignore it, it has already been
607 // checked.
David Blaikie70573dc2014-11-19 07:49:26 +0000608 if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
Jakob Stoklund Olesene27dc722010-01-29 23:54:14 +0000609 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000610 } else if (isa<ICmpInst>(U) &&
Chandler Carruthcdf47882014-03-09 03:16:01 +0000611 isa<ConstantPointerNull>(U->getOperand(1))) {
Nick Lewycky614fb942010-02-25 06:39:10 +0000612 // Ignore icmp X, null
Chris Lattner09a52722004-10-09 21:48:45 +0000613 } else {
Gabor Greif08355d62010-04-06 19:14:05 +0000614 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000615 return false;
616 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000617
Chris Lattner09a52722004-10-09 21:48:45 +0000618 return true;
619}
620
James Molloyea31ad32015-11-13 11:05:07 +0000621/// Return true if all uses of any loads from GV will trap if the loaded value
622/// is null. Note that this also permits comparisons of the loaded value
623/// against null, as a special case.
Gabor Greif67972872010-04-06 19:24:18 +0000624static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000625 for (const User *U : GV->users())
Gabor Greif67972872010-04-06 19:24:18 +0000626 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
627 SmallPtrSet<const PHINode*, 8> PHIs;
Chris Lattner2d2892e2007-09-13 16:30:19 +0000628 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner09a52722004-10-09 21:48:45 +0000629 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000630 } else if (isa<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000631 // Ignore stores to the global.
632 } else {
633 // We don't know or understand this user, bail out.
Gabor Greif08355d62010-04-06 19:14:05 +0000634 //cerr << "UNKNOWN USER OF GLOBAL!: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000635 return false;
636 }
Chris Lattner09a52722004-10-09 21:48:45 +0000637 return true;
638}
639
Chris Lattner46b5c642009-11-06 04:27:31 +0000640static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000641 bool Changed = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000642 for (auto UI = V->user_begin(), E = V->user_end(); UI != E; ) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000643 Instruction *I = cast<Instruction>(*UI++);
644 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
645 LI->setOperand(0, NewV);
646 Changed = true;
647 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
648 if (SI->getOperand(1) == V) {
649 SI->setOperand(1, NewV);
650 Changed = true;
651 }
652 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
Gabor Greif04397892010-04-06 18:45:08 +0000653 CallSite CS(I);
654 if (CS.getCalledValue() == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000655 // Calling through the pointer! Turn into a direct call, but be careful
656 // that the pointer is not also being passed as an argument.
Gabor Greif04397892010-04-06 18:45:08 +0000657 CS.setCalledFunction(NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000658 Changed = true;
659 bool PassedAsArg = false;
Gabor Greif04397892010-04-06 18:45:08 +0000660 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
661 if (CS.getArgument(i) == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000662 PassedAsArg = true;
Gabor Greif04397892010-04-06 18:45:08 +0000663 CS.setArgument(i, NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000664 }
665
666 if (PassedAsArg) {
667 // Being passed as an argument also. Be careful to not invalidate UI!
Chandler Carruthcdf47882014-03-09 03:16:01 +0000668 UI = V->user_begin();
Chris Lattnere42eb312004-10-10 23:14:11 +0000669 }
670 }
671 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
672 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Anderson487375e2009-07-29 18:55:55 +0000673 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner46b5c642009-11-06 04:27:31 +0000674 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000675 if (CI->use_empty()) {
676 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000677 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000678 }
679 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
680 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000681 SmallVector<Constant*, 8> Idxs;
682 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif3a9fba52008-05-29 01:59:18 +0000683 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
684 i != e; ++i)
685 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000686 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000687 else
688 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000689 if (Idxs.size() == GEPI->getNumOperands()-1)
David Blaikie4a2e73b2015-04-02 18:55:32 +0000690 Changed |= OptimizeAwayTrappingUsesOfValue(
691 GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs));
Chris Lattnere42eb312004-10-10 23:14:11 +0000692 if (GEPI->use_empty()) {
693 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000694 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000695 }
696 }
697 }
698
699 return Changed;
700}
701
702
James Molloyea31ad32015-11-13 11:05:07 +0000703/// The specified global has only one non-null value stored into it. If there
704/// are uses of the loaded value that would trap if the loaded value is
705/// dynamically null, then we know that they cannot be reachable with a null
706/// optimize away the load.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000707static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
Mehdi Amini46a43552015-03-04 18:43:29 +0000708 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000709 TargetLibraryInfo *TLI) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000710 bool Changed = false;
711
Chris Lattner2538eb62009-01-14 00:12:58 +0000712 // Keep track of whether we are able to remove all the uses of the global
713 // other than the store that defines it.
714 bool AllNonStoreUsesGone = true;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000715
Chris Lattnere42eb312004-10-10 23:14:11 +0000716 // Replace all uses of loads with uses of uses of the stored value.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000717 for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){
Chris Lattner2538eb62009-01-14 00:12:58 +0000718 User *GlobalUser = *GUI++;
719 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner46b5c642009-11-06 04:27:31 +0000720 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner2538eb62009-01-14 00:12:58 +0000721 // If we were able to delete all uses of the loads
722 if (LI->use_empty()) {
723 LI->eraseFromParent();
724 Changed = true;
725 } else {
726 AllNonStoreUsesGone = false;
727 }
728 } else if (isa<StoreInst>(GlobalUser)) {
729 // Ignore the store that stores "LV" to the global.
730 assert(GlobalUser->getOperand(1) == GV &&
731 "Must be storing *to* the global");
Chris Lattnere42eb312004-10-10 23:14:11 +0000732 } else {
Chris Lattner2538eb62009-01-14 00:12:58 +0000733 AllNonStoreUsesGone = false;
734
735 // If we get here we could have other crazy uses that are transitively
736 // loaded.
737 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
Benjamin Kramered843602012-09-28 10:01:27 +0000738 isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
739 isa<BitCastInst>(GlobalUser) ||
740 isa<GetElementPtrInst>(GlobalUser)) &&
Chris Lattner1a1acc22011-05-22 07:15:13 +0000741 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000742 }
Chris Lattner2538eb62009-01-14 00:12:58 +0000743 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000744
745 if (Changed) {
James Molloyef607a22015-10-28 14:30:53 +0000746 DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV << "\n");
Chris Lattnere42eb312004-10-10 23:14:11 +0000747 ++NumGlobUses;
748 }
749
Chris Lattnere42eb312004-10-10 23:14:11 +0000750 // If we nuked all of the loads, then none of the stores are needed either,
751 // nor is the global.
Chris Lattner2538eb62009-01-14 00:12:58 +0000752 if (AllNonStoreUsesGone) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000753 if (isLeakCheckerRoot(GV)) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000754 Changed |= CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000755 } else {
756 Changed = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000757 CleanupConstantGlobalUsers(GV, nullptr, DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000758 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000759 if (GV->use_empty()) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000760 DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
761 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000762 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000763 ++NumDeleted;
764 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000765 }
766 return Changed;
767}
768
James Molloyea31ad32015-11-13 11:05:07 +0000769/// Walk the use list of V, constant folding all of the instructions that are
770/// foldable.
Mehdi Amini46a43552015-03-04 18:43:29 +0000771static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000772 TargetLibraryInfo *TLI) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000773 for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
Chris Lattner004e2502004-10-11 05:54:41 +0000774 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000775 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
Chris Lattner004e2502004-10-11 05:54:41 +0000776 I->replaceAllUsesWith(NewC);
777
Chris Lattnerd6a44922005-02-01 01:23:31 +0000778 // Advance UI to the next non-I use to avoid invalidating it!
779 // Instructions could multiply use V.
780 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000781 ++UI;
Chris Lattnerd6a44922005-02-01 01:23:31 +0000782 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000783 }
784}
785
James Molloyea31ad32015-11-13 11:05:07 +0000786/// This function takes the specified global variable, and transforms the
787/// program as if it always contained the result of the specified malloc.
788/// Because it is always the result of the specified malloc, there is no reason
789/// to actually DO the malloc. Instead, turn the malloc into a global, and any
790/// loads of GV as uses of the new global.
Mehdi Amini46a43552015-03-04 18:43:29 +0000791static GlobalVariable *
792OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
793 ConstantInt *NElements, const DataLayout &DL,
794 TargetLibraryInfo *TLI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000795 DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI << '\n');
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000796
Chris Lattner229907c2011-07-18 04:54:35 +0000797 Type *GlobalType;
Chris Lattner7939f792010-02-25 22:33:52 +0000798 if (NElements->getZExtValue() == 1)
799 GlobalType = AllocTy;
800 else
801 // If we have an array allocation, the global variable is of an array.
802 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez5d034492009-09-18 22:35:49 +0000803
804 // Create the new global variable. The contents of the malloc'd memory is
805 // undefined, so initialize with an undef value.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000806 GlobalVariable *NewGV = new GlobalVariable(
807 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage,
808 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr,
809 GV->getThreadLocalMode());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000810
Chris Lattner7939f792010-02-25 22:33:52 +0000811 // If there are bitcast users of the malloc (which is typical, usually we have
812 // a malloc + bitcast) then replace them with uses of the new global. Update
813 // other users to use the global as well.
Craig Topperf40110f2014-04-25 05:29:35 +0000814 BitCastInst *TheBC = nullptr;
Chris Lattner7939f792010-02-25 22:33:52 +0000815 while (!CI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000816 Instruction *User = cast<Instruction>(CI->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000817 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
818 if (BCI->getType() == NewGV->getType()) {
819 BCI->replaceAllUsesWith(NewGV);
820 BCI->eraseFromParent();
821 } else {
822 BCI->setOperand(0, NewGV);
823 }
824 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000825 if (!TheBC)
Chris Lattner7939f792010-02-25 22:33:52 +0000826 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
827 User->replaceUsesOfWith(CI, TheBC);
828 }
829 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000830
Victor Hernandez5d034492009-09-18 22:35:49 +0000831 Constant *RepValue = NewGV;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000832 if (NewGV->getType() != GV->getValueType())
833 RepValue = ConstantExpr::getBitCast(RepValue, GV->getValueType());
Victor Hernandez5d034492009-09-18 22:35:49 +0000834
835 // If there is a comparison against null, we will insert a global bool to
836 // keep track of whether the global was initialized yet or not.
837 GlobalVariable *InitBool =
Chris Lattner46b5c642009-11-06 04:27:31 +0000838 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez5d034492009-09-18 22:35:49 +0000839 GlobalValue::InternalLinkage,
Chris Lattner46b5c642009-11-06 04:27:31 +0000840 ConstantInt::getFalse(GV->getContext()),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000841 GV->getName()+".init", GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +0000842 bool InitBoolUsed = false;
843
844 // Loop over all uses of GV, processing them in turn.
Chris Lattner7939f792010-02-25 22:33:52 +0000845 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000846 if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) {
Victor Hernandez5d034492009-09-18 22:35:49 +0000847 // The global is initialized when the store to it occurs.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000848 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
849 SI->getOrdering(), SI->getSynchScope(), SI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000850 SI->eraseFromParent();
Chris Lattner7939f792010-02-25 22:33:52 +0000851 continue;
Victor Hernandez5d034492009-09-18 22:35:49 +0000852 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000853
Chandler Carruthcdf47882014-03-09 03:16:01 +0000854 LoadInst *LI = cast<LoadInst>(GV->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000855 while (!LI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000856 Use &LoadUse = *LI->use_begin();
857 ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser());
858 if (!ICI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000859 LoadUse = RepValue;
860 continue;
861 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000862
Chris Lattner7939f792010-02-25 22:33:52 +0000863 // Replace the cmp X, 0 with a use of the bool value.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000864 // Sink the load to where the compare was, if atomic rules allow us to.
865 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0,
866 LI->getOrdering(), LI->getSynchScope(),
867 LI->isUnordered() ? (Instruction*)ICI : LI);
Chris Lattner7939f792010-02-25 22:33:52 +0000868 InitBoolUsed = true;
869 switch (ICI->getPredicate()) {
870 default: llvm_unreachable("Unknown ICmp Predicate!");
871 case ICmpInst::ICMP_ULT:
872 case ICmpInst::ICMP_SLT: // X < null -> always false
873 LV = ConstantInt::getFalse(GV->getContext());
874 break;
875 case ICmpInst::ICMP_ULE:
876 case ICmpInst::ICMP_SLE:
877 case ICmpInst::ICMP_EQ:
878 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
879 break;
880 case ICmpInst::ICMP_NE:
881 case ICmpInst::ICMP_UGE:
882 case ICmpInst::ICMP_SGE:
883 case ICmpInst::ICMP_UGT:
884 case ICmpInst::ICMP_SGT:
885 break; // no change.
886 }
887 ICI->replaceAllUsesWith(LV);
888 ICI->eraseFromParent();
889 }
890 LI->eraseFromParent();
891 }
Victor Hernandez5d034492009-09-18 22:35:49 +0000892
893 // If the initialization boolean was used, insert it, otherwise delete it.
894 if (!InitBoolUsed) {
895 while (!InitBool->use_empty()) // Delete initializations
Chandler Carruthcdf47882014-03-09 03:16:01 +0000896 cast<StoreInst>(InitBool->user_back())->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000897 delete InitBool;
898 } else
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000899 GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
Victor Hernandez5d034492009-09-18 22:35:49 +0000900
Chris Lattner7939f792010-02-25 22:33:52 +0000901 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez5d034492009-09-18 22:35:49 +0000902 GV->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000903 CI->eraseFromParent();
904
905 // To further other optimizations, loop over all users of NewGV and try to
906 // constant prop them. This will promote GEP instructions with constant
907 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000908 ConstantPropUsersOf(NewGV, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000909 if (RepValue != NewGV)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000910 ConstantPropUsersOf(RepValue, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000911
912 return NewGV;
913}
914
James Molloyea31ad32015-11-13 11:05:07 +0000915/// Scan the use-list of V checking to make sure that there are no complex uses
916/// of V. We permit simple things like dereferencing the pointer, but not
917/// storing through the address, unless it is to the specified global.
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000918static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
919 const GlobalVariable *GV,
Craig Topper71b7b682014-08-21 05:55:13 +0000920 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000921 for (const User *U : V->users()) {
922 const Instruction *Inst = cast<Instruction>(U);
Gabor Greif08355d62010-04-06 19:14:05 +0000923
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000924 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
925 continue; // Fine, ignore.
926 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000927
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000928 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000929 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
930 return false; // Storing the pointer itself... bad.
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000931 continue; // Otherwise, storing through it, or storing into GV... fine.
932 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000933
Chris Lattnerb9801ff2010-04-10 18:19:22 +0000934 // Must index into the array and into the struct.
935 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000936 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000937 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000938 continue;
939 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000940
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000941 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattner6eed0e72007-09-13 16:37:20 +0000942 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
943 // cycles.
David Blaikie70573dc2014-11-19 07:49:26 +0000944 if (PHIs.insert(PN).second)
Chris Lattner5d13fb532007-09-14 03:41:21 +0000945 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
946 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000947 continue;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000948 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000949
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000950 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000951 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
952 return false;
953 continue;
954 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000955
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000956 return false;
957 }
Chris Lattnerc0677c02004-12-02 07:11:07 +0000958 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000959}
960
James Molloyea31ad32015-11-13 11:05:07 +0000961/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
962/// allocation into loads from the global and uses of the resultant pointer.
963/// Further, delete the store into GV. This assumes that these value pass the
Chris Lattner24d3d422006-09-30 23:32:09 +0000964/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000965static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
Chris Lattner24d3d422006-09-30 23:32:09 +0000966 GlobalVariable *GV) {
967 while (!Alloc->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000968 Instruction *U = cast<Instruction>(*Alloc->user_begin());
Chris Lattnerba98f892007-09-13 18:00:31 +0000969 Instruction *InsertPt = U;
Chris Lattner24d3d422006-09-30 23:32:09 +0000970 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
971 // If this is the store of the allocation into the global, remove it.
972 if (SI->getOperand(1) == GV) {
973 SI->eraseFromParent();
974 continue;
975 }
Chris Lattnerba98f892007-09-13 18:00:31 +0000976 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
977 // Insert the load in the corresponding predecessor, not right before the
978 // PHI.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000979 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
Chris Lattner49e3bdc2008-12-15 21:44:34 +0000980 } else if (isa<BitCastInst>(U)) {
981 // Must be bitcast between the malloc and store to initialize the global.
982 ReplaceUsesOfMallocWithGlobal(U, GV);
983 U->eraseFromParent();
984 continue;
985 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
986 // If this is a "GEP bitcast" and the user is a store to the global, then
987 // just process it as a bitcast.
988 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +0000989 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back()))
Chris Lattner49e3bdc2008-12-15 21:44:34 +0000990 if (SI->getOperand(1) == GV) {
991 // Must be bitcast GEP between the malloc and store to initialize
992 // the global.
993 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
994 GEPI->eraseFromParent();
995 continue;
996 }
Chris Lattner24d3d422006-09-30 23:32:09 +0000997 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000998
Chris Lattner24d3d422006-09-30 23:32:09 +0000999 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnerba98f892007-09-13 18:00:31 +00001000 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner24d3d422006-09-30 23:32:09 +00001001 U->replaceUsesOfWith(Alloc, NL);
1002 }
1003}
1004
James Molloyea31ad32015-11-13 11:05:07 +00001005/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
1006/// perform heap SRA on. This permits GEP's that index through the array and
1007/// struct field, icmps of null, and PHIs.
Gabor Greif5d5db532010-04-01 08:21:08 +00001008static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +00001009 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1010 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
Chris Lattner56b55382008-12-16 21:24:51 +00001011 // We permit two users of the load: setcc comparing against the null
1012 // pointer, and a getelementptr of a specific form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001013 for (const User *U : V->users()) {
1014 const Instruction *UI = cast<Instruction>(U);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001015
Chris Lattner56b55382008-12-16 21:24:51 +00001016 // Comparison against null is ok.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001017 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001018 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1019 return false;
1020 continue;
1021 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001022
Chris Lattner56b55382008-12-16 21:24:51 +00001023 // getelementptr is also ok, but only a simple form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001024 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001025 // Must index into the array and into the struct.
1026 if (GEPI->getNumOperands() < 3)
1027 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001028
Chris Lattner56b55382008-12-16 21:24:51 +00001029 // Otherwise the GEP is ok.
1030 continue;
1031 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001032
Chandler Carruthcdf47882014-03-09 03:16:01 +00001033 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001034 if (!LoadUsingPHIsPerLoad.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001035 // This means some phi nodes are dependent on each other.
1036 // Avoid infinite looping!
1037 return false;
David Blaikie70573dc2014-11-19 07:49:26 +00001038 if (!LoadUsingPHIs.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001039 // If we have already analyzed this PHI, then it is safe.
Chris Lattner56b55382008-12-16 21:24:51 +00001040 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001041
Chris Lattner222ef4c2008-12-17 05:28:49 +00001042 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng83689442009-06-02 00:56:07 +00001043 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1044 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001045 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001046
Chris Lattner56b55382008-12-16 21:24:51 +00001047 continue;
Chris Lattner24d3d422006-09-30 23:32:09 +00001048 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001049
Chris Lattner56b55382008-12-16 21:24:51 +00001050 // Otherwise we don't know what this is, not ok.
1051 return false;
1052 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001053
Chris Lattner56b55382008-12-16 21:24:51 +00001054 return true;
1055}
1056
1057
James Molloyea31ad32015-11-13 11:05:07 +00001058/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1059/// return true.
Gabor Greif5d5db532010-04-01 08:21:08 +00001060static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez5d034492009-09-18 22:35:49 +00001061 Instruction *StoredVal) {
Gabor Greif5d5db532010-04-01 08:21:08 +00001062 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1063 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001064 for (const User *U : GV->users())
1065 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
Evan Cheng83689442009-06-02 00:56:07 +00001066 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1067 LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001068 return false;
Evan Cheng83689442009-06-02 00:56:07 +00001069 LoadUsingPHIsPerLoad.clear();
1070 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001071
Chris Lattner222ef4c2008-12-17 05:28:49 +00001072 // If we reach here, we know that all uses of the loads and transitive uses
1073 // (through PHI nodes) are simple enough to transform. However, we don't know
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001074 // that all inputs the to the PHI nodes are in the same equivalence sets.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001075 // Check to verify that all operands of the PHIs are either PHIS that can be
1076 // transformed, loads from GV, or MI itself.
Craig Topper46276792014-08-24 23:23:06 +00001077 for (const PHINode *PN : LoadUsingPHIs) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001078 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1079 Value *InVal = PN->getIncomingValue(op);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001080
Chris Lattner222ef4c2008-12-17 05:28:49 +00001081 // PHI of the stored value itself is ok.
Victor Hernandez5d034492009-09-18 22:35:49 +00001082 if (InVal == StoredVal) continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001083
Gabor Greif5d5db532010-04-01 08:21:08 +00001084 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001085 // One of the PHIs in our set is (optimistically) ok.
1086 if (LoadUsingPHIs.count(InPN))
1087 continue;
1088 return false;
1089 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001090
Chris Lattner222ef4c2008-12-17 05:28:49 +00001091 // Load from GV is ok.
Gabor Greif5d5db532010-04-01 08:21:08 +00001092 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattner222ef4c2008-12-17 05:28:49 +00001093 if (LI->getOperand(0) == GV)
1094 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001095
Chris Lattner222ef4c2008-12-17 05:28:49 +00001096 // UNDEF? NULL?
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001097
Chris Lattner222ef4c2008-12-17 05:28:49 +00001098 // Anything else is rejected.
1099 return false;
1100 }
1101 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001102
Chris Lattner24d3d422006-09-30 23:32:09 +00001103 return true;
1104}
1105
Chris Lattner222ef4c2008-12-17 05:28:49 +00001106static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1107 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001108 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001109 std::vector<Value*> &FieldVals = InsertedScalarizedValues[V];
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001110
Chris Lattner222ef4c2008-12-17 05:28:49 +00001111 if (FieldNo >= FieldVals.size())
1112 FieldVals.resize(FieldNo+1);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001113
Chris Lattner222ef4c2008-12-17 05:28:49 +00001114 // If we already have this value, just reuse the previously scalarized
1115 // version.
1116 if (Value *FieldVal = FieldVals[FieldNo])
1117 return FieldVal;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001118
Chris Lattner222ef4c2008-12-17 05:28:49 +00001119 // Depending on what instruction this is, we have several cases.
1120 Value *Result;
1121 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1122 // This is a scalarized version of the load from the global. Just create
1123 // a new Load of the scalarized global.
1124 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1125 InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001126 PHIsToRewrite),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001127 LI->getName()+".f"+Twine(FieldNo), LI);
David Blaikie741c8f82015-03-14 01:53:18 +00001128 } else {
1129 PHINode *PN = cast<PHINode>(V);
Chris Lattner222ef4c2008-12-17 05:28:49 +00001130 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1131 // field.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001132
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001133 PointerType *PTy = cast<PointerType>(PN->getType());
1134 StructType *ST = cast<StructType>(PTy->getElementType());
1135
1136 unsigned AS = PTy->getAddressSpace();
Jay Foade0938d82011-03-30 11:19:20 +00001137 PHINode *NewPN =
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001138 PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS),
Jay Foad52131342011-03-30 11:28:46 +00001139 PN->getNumIncomingValues(),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001140 PN->getName()+".f"+Twine(FieldNo), PN);
Jay Foade0938d82011-03-30 11:19:20 +00001141 Result = NewPN;
Chris Lattner222ef4c2008-12-17 05:28:49 +00001142 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
Chris Lattner222ef4c2008-12-17 05:28:49 +00001143 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001144
Chris Lattner222ef4c2008-12-17 05:28:49 +00001145 return FieldVals[FieldNo] = Result;
Chris Lattnerba98f892007-09-13 18:00:31 +00001146}
1147
James Molloyea31ad32015-11-13 11:05:07 +00001148/// Given a load instruction and a value derived from the load, rewrite the
1149/// derived value to use the HeapSRoA'd load.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001150static void RewriteHeapSROALoadUser(Instruction *LoadUser,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001151 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001152 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001153 // If this is a comparison against null, handle it.
1154 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1155 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1156 // If we have a setcc of the loaded pointer, we can use a setcc of any
1157 // field.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001158 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner46b5c642009-11-06 04:27:31 +00001159 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001160
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001161 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001162 Constant::getNullValue(NPtr->getType()),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001163 SCI->getName());
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001164 SCI->replaceAllUsesWith(New);
1165 SCI->eraseFromParent();
1166 return;
1167 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001168
Chris Lattner222ef4c2008-12-17 05:28:49 +00001169 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnerba98f892007-09-13 18:00:31 +00001170 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1171 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1172 && "Unexpected GEPI!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001173
Chris Lattnerba98f892007-09-13 18:00:31 +00001174 // Load the pointer for this field.
1175 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner222ef4c2008-12-17 05:28:49 +00001176 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner46b5c642009-11-06 04:27:31 +00001177 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001178
Chris Lattnerba98f892007-09-13 18:00:31 +00001179 // Create the new GEP idx vector.
1180 SmallVector<Value*, 8> GEPIdx;
1181 GEPIdx.push_back(GEPI->getOperand(1));
1182 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001183
David Blaikie22319eb2015-03-14 19:24:04 +00001184 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx,
Gabor Greife9ecc682008-04-06 20:25:17 +00001185 GEPI->getName(), GEPI);
Chris Lattnerba98f892007-09-13 18:00:31 +00001186 GEPI->replaceAllUsesWith(NGEPI);
1187 GEPI->eraseFromParent();
1188 return;
1189 }
Chris Lattner011f91b2007-09-13 21:31:36 +00001190
Chris Lattner222ef4c2008-12-17 05:28:49 +00001191 // Recursively transform the users of PHI nodes. This will lazily create the
1192 // PHIs that are needed for individual elements. Keep track of what PHIs we
1193 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1194 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1195 // already been seen first by another load, so its uses have already been
1196 // processed.
1197 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner5cf753c2011-07-21 06:21:31 +00001198 if (!InsertedScalarizedValues.insert(std::make_pair(PN,
1199 std::vector<Value*>())).second)
1200 return;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001201
Chris Lattner222ef4c2008-12-17 05:28:49 +00001202 // If this is the first time we've seen this PHI, recursively process all
1203 // users.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001204 for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001205 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001206 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001207 }
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001208}
1209
James Molloyea31ad32015-11-13 11:05:07 +00001210/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1211/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1212/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001213static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001214 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001215 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001216 for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001217 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001218 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001219 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001220
Chris Lattner222ef4c2008-12-17 05:28:49 +00001221 if (Load->use_empty()) {
1222 Load->eraseFromParent();
1223 InsertedScalarizedValues.erase(Load);
1224 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001225}
1226
James Molloyea31ad32015-11-13 11:05:07 +00001227/// CI is an allocation of an array of structures. Break it up into multiple
1228/// allocations of arrays of the fields.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001229static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
Mehdi Amini46a43552015-03-04 18:43:29 +00001230 Value *NElems, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001231 const TargetLibraryInfo *TLI) {
David Greene44cb8ad2010-01-05 01:28:05 +00001232 DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI << '\n');
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001233 Type *MAT = getMallocAllocatedType(CI, TLI);
Chris Lattner229907c2011-07-18 04:54:35 +00001234 StructType *STy = cast<StructType>(MAT);
Victor Hernandez5d034492009-09-18 22:35:49 +00001235
1236 // There is guaranteed to be at least one use of the malloc (storing
1237 // it into GV). If there are other uses, change them to be uses of
1238 // the global to simplify later code. This also deletes the store
1239 // into GV.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001240 ReplaceUsesOfMallocWithGlobal(CI, GV);
1241
Victor Hernandez5d034492009-09-18 22:35:49 +00001242 // Okay, at this point, there are no users of the malloc. Insert N
1243 // new mallocs at the same place as CI, and N globals.
1244 std::vector<Value*> FieldGlobals;
1245 std::vector<Value*> FieldMallocs;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001246
David Majnemerfadc6db2016-04-29 08:07:22 +00001247 SmallVector<OperandBundleDef, 1> OpBundles;
1248 CI->getOperandBundlesAsDefs(OpBundles);
1249
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001250 unsigned AS = GV->getType()->getPointerAddressSpace();
Victor Hernandez5d034492009-09-18 22:35:49 +00001251 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
Chris Lattner229907c2011-07-18 04:54:35 +00001252 Type *FieldTy = STy->getElementType(FieldNo);
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001253 PointerType *PFieldTy = PointerType::get(FieldTy, AS);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001254
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001255 GlobalVariable *NGV = new GlobalVariable(
1256 *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage,
1257 Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo),
1258 nullptr, GV->getThreadLocalMode());
Sergei Larin94be2de2016-01-22 21:18:20 +00001259 NGV->copyAttributesFrom(GV);
Victor Hernandez5d034492009-09-18 22:35:49 +00001260 FieldGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001261
Mehdi Amini46a43552015-03-04 18:43:29 +00001262 unsigned TypeSize = DL.getTypeAllocSize(FieldTy);
Chris Lattner229907c2011-07-18 04:54:35 +00001263 if (StructType *ST = dyn_cast<StructType>(FieldTy))
Mehdi Amini46a43552015-03-04 18:43:29 +00001264 TypeSize = DL.getStructLayout(ST)->getSizeInBytes();
1265 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
Victor Hernandezf3db9152009-11-07 00:16:28 +00001266 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1267 ConstantInt::get(IntPtrTy, TypeSize),
David Majnemerfadc6db2016-04-29 08:07:22 +00001268 NElems, OpBundles, nullptr,
Victor Hernandezf3db9152009-11-07 00:16:28 +00001269 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner0521c092010-02-26 18:23:13 +00001270 FieldMallocs.push_back(NMI);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001271 new StoreInst(NMI, NGV, CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001272 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001273
Victor Hernandez5d034492009-09-18 22:35:49 +00001274 // The tricky aspect of this transformation is handling the case when malloc
1275 // fails. In the original code, malloc failing would set the result pointer
1276 // of malloc to null. In this case, some mallocs could succeed and others
1277 // could fail. As such, we emit code that looks like this:
1278 // F0 = malloc(field0)
1279 // F1 = malloc(field1)
1280 // F2 = malloc(field2)
1281 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1282 // if (F0) { free(F0); F0 = 0; }
1283 // if (F1) { free(F1); F1 = 0; }
1284 // if (F2) { free(F2); F2 = 0; }
1285 // }
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001286 // The malloc can also fail if its argument is too large.
Gabor Greif218f5542010-06-24 14:42:01 +00001287 Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1288 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001289 ConstantZero, "isneg");
Victor Hernandez5d034492009-09-18 22:35:49 +00001290 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandezf3db9152009-11-07 00:16:28 +00001291 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1292 Constant::getNullValue(FieldMallocs[i]->getType()),
1293 "isnull");
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001294 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001295 }
1296
1297 // Split the basic block at the old malloc.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001298 BasicBlock *OrigBB = CI->getParent();
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001299 BasicBlock *ContBB =
1300 OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001301
Victor Hernandez5d034492009-09-18 22:35:49 +00001302 // Create the block to check the first condition. Put all these blocks at the
1303 // end of the function as they are unlikely to be executed.
Chris Lattner46b5c642009-11-06 04:27:31 +00001304 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1305 "malloc_ret_null",
Victor Hernandez5d034492009-09-18 22:35:49 +00001306 OrigBB->getParent());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001307
Victor Hernandez5d034492009-09-18 22:35:49 +00001308 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1309 // branch on RunningOr.
1310 OrigBB->getTerminator()->eraseFromParent();
1311 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001312
Victor Hernandez5d034492009-09-18 22:35:49 +00001313 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1314 // pointer, because some may be null while others are not.
1315 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1316 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001317 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001318 Constant::getNullValue(GVVal->getType()));
Chris Lattner46b5c642009-11-06 04:27:31 +00001319 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez5d034492009-09-18 22:35:49 +00001320 OrigBB->getParent());
Chris Lattner46b5c642009-11-06 04:27:31 +00001321 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez5d034492009-09-18 22:35:49 +00001322 OrigBB->getParent());
Victor Hernandeze2971492009-10-24 04:23:03 +00001323 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1324 Cmp, NullPtrBlock);
Victor Hernandez5d034492009-09-18 22:35:49 +00001325
1326 // Fill in FreeBlock.
David Majnemerfadc6db2016-04-29 08:07:22 +00001327 CallInst::CreateFree(GVVal, OpBundles, BI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001328 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1329 FreeBlock);
1330 BranchInst::Create(NextBlock, FreeBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001331
Victor Hernandez5d034492009-09-18 22:35:49 +00001332 NullPtrBlock = NextBlock;
1333 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001334
Victor Hernandez5d034492009-09-18 22:35:49 +00001335 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001336
1337 // CI is no longer needed, remove it.
Victor Hernandez5d034492009-09-18 22:35:49 +00001338 CI->eraseFromParent();
1339
James Molloyea31ad32015-11-13 11:05:07 +00001340 /// As we process loads, if we can't immediately update all uses of the load,
1341 /// keep track of what scalarized loads are inserted for a given load.
Victor Hernandez5d034492009-09-18 22:35:49 +00001342 DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1343 InsertedScalarizedValues[GV] = FieldGlobals;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001344
Victor Hernandez5d034492009-09-18 22:35:49 +00001345 std::vector<std::pair<PHINode*, unsigned> > PHIsToRewrite;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001346
Victor Hernandez5d034492009-09-18 22:35:49 +00001347 // Okay, the malloc site is completely handled. All of the uses of GV are now
1348 // loads, and all uses of those loads are simple. Rewrite them to use loads
1349 // of the per-field globals instead.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001350 for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001351 Instruction *User = cast<Instruction>(*UI++);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001352
Victor Hernandez5d034492009-09-18 22:35:49 +00001353 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner46b5c642009-11-06 04:27:31 +00001354 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001355 continue;
1356 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001357
Victor Hernandez5d034492009-09-18 22:35:49 +00001358 // Must be a store of null.
1359 StoreInst *SI = cast<StoreInst>(User);
1360 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1361 "Unexpected heap-sra user!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001362
Victor Hernandez5d034492009-09-18 22:35:49 +00001363 // Insert a store of null into each global.
1364 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001365 Type *ValTy = cast<GlobalValue>(FieldGlobals[i])->getValueType();
1366 Constant *Null = Constant::getNullValue(ValTy);
Victor Hernandez5d034492009-09-18 22:35:49 +00001367 new StoreInst(Null, FieldGlobals[i], SI);
1368 }
1369 // Erase the original store.
1370 SI->eraseFromParent();
1371 }
1372
1373 // While we have PHIs that are interesting to rewrite, do it.
1374 while (!PHIsToRewrite.empty()) {
1375 PHINode *PN = PHIsToRewrite.back().first;
1376 unsigned FieldNo = PHIsToRewrite.back().second;
1377 PHIsToRewrite.pop_back();
1378 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1379 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1380
1381 // Add all the incoming values. This can materialize more phis.
1382 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1383 Value *InVal = PN->getIncomingValue(i);
1384 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001385 PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001386 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1387 }
1388 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001389
Victor Hernandez5d034492009-09-18 22:35:49 +00001390 // Drop all inter-phi links and any loads that made it this far.
1391 for (DenseMap<Value*, std::vector<Value*> >::iterator
1392 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1393 I != E; ++I) {
1394 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1395 PN->dropAllReferences();
1396 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1397 LI->dropAllReferences();
1398 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001399
Victor Hernandez5d034492009-09-18 22:35:49 +00001400 // Delete all the phis and loads now that inter-references are dead.
1401 for (DenseMap<Value*, std::vector<Value*> >::iterator
1402 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1403 I != E; ++I) {
1404 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1405 PN->eraseFromParent();
1406 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1407 LI->eraseFromParent();
1408 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001409
Victor Hernandez5d034492009-09-18 22:35:49 +00001410 // The old global is now dead, remove it.
1411 GV->eraseFromParent();
1412
1413 ++NumHeapSRA;
1414 return cast<GlobalVariable>(FieldGlobals[0]);
1415}
1416
James Molloyea31ad32015-11-13 11:05:07 +00001417/// This function is called when we see a pointer global variable with a single
1418/// value stored it that is a malloc or cast of malloc.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001419static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
Chris Lattner229907c2011-07-18 04:54:35 +00001420 Type *AllocTy,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001421 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001422 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +00001423 TargetLibraryInfo *TLI) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001424 // If this is a malloc of an abstract type, don't touch it.
1425 if (!AllocTy->isSized())
1426 return false;
1427
1428 // We can't optimize this global unless all uses of it are *known* to be
1429 // of the malloc value, not of the null initializer value (consider a use
1430 // that compares the global's value against zero to see if the malloc has
1431 // been reached). To do this, we check to see if all uses of the global
1432 // would trap if the global were null: this proves that they must all
1433 // happen after the malloc.
1434 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1435 return false;
1436
1437 // We can't optimize this if the malloc itself is used in a complex way,
1438 // for example, being stored into multiple globals. This allows the
Nick Lewyckybbd11562012-02-05 19:48:37 +00001439 // malloc to be stored into the specified global, loaded icmp'd, and
Victor Hernandez5d034492009-09-18 22:35:49 +00001440 // GEP'd. These are all things we could transform to using the global
1441 // for.
Evan Cheng21b588b2010-04-14 20:52:55 +00001442 SmallPtrSet<const PHINode*, 8> PHIs;
1443 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1444 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001445
1446 // If we have a global that is only initialized with a fixed size malloc,
1447 // transform the program to use global memory instead of malloc'd memory.
1448 // This eliminates dynamic allocation, avoids an indirection accessing the
1449 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez264da322009-10-16 23:12:25 +00001450 // We cannot optimize the malloc if we cannot determine malloc array size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001451 Value *NElems = getMallocArraySize(CI, DL, TLI, true);
Evan Cheng21b588b2010-04-14 20:52:55 +00001452 if (!NElems)
1453 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001454
Evan Cheng21b588b2010-04-14 20:52:55 +00001455 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1456 // Restrict this transformation to only working on small allocations
1457 // (2048 bytes currently), as we don't want to introduce a 16M global or
1458 // something.
Mehdi Amini46a43552015-03-04 18:43:29 +00001459 if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) {
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001460 OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001461 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001462 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001463
Evan Cheng21b588b2010-04-14 20:52:55 +00001464 // If the allocation is an array of structures, consider transforming this
1465 // into multiple malloc'd arrays, one for each field. This is basically
1466 // SRoA for malloc'd memory.
1467
JF Bastien800f87a2016-04-06 21:19:33 +00001468 if (Ordering != AtomicOrdering::NotAtomic)
Nick Lewycky52da72b2012-02-05 19:56:38 +00001469 return false;
1470
Evan Cheng21b588b2010-04-14 20:52:55 +00001471 // If this is an allocation of a fixed size array of structs, analyze as a
1472 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Gabor Greif218f5542010-06-24 14:42:01 +00001473 if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
Chris Lattner229907c2011-07-18 04:54:35 +00001474 if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
Evan Cheng21b588b2010-04-14 20:52:55 +00001475 AllocTy = AT->getElementType();
Gabor Greif218f5542010-06-24 14:42:01 +00001476
Chris Lattner229907c2011-07-18 04:54:35 +00001477 StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
Evan Cheng21b588b2010-04-14 20:52:55 +00001478 if (!AllocSTy)
1479 return false;
1480
1481 // This the structure has an unreasonable number of fields, leave it
1482 // alone.
1483 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1484 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1485
1486 // If this is a fixed size array, transform the Malloc to be an alloc of
1487 // structs. malloc [100 x struct],1 -> malloc struct, 100
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001488 if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001489 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
1490 unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes();
Evan Cheng21b588b2010-04-14 20:52:55 +00001491 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1492 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
David Majnemerfadc6db2016-04-29 08:07:22 +00001493 SmallVector<OperandBundleDef, 1> OpBundles;
1494 CI->getOperandBundlesAsDefs(OpBundles);
1495 Instruction *Malloc =
1496 CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, AllocSize, NumElements,
1497 OpBundles, nullptr, CI->getName());
Evan Cheng21b588b2010-04-14 20:52:55 +00001498 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1499 CI->replaceAllUsesWith(Cast);
1500 CI->eraseFromParent();
Nuno Lopes9792d682012-06-22 00:25:01 +00001501 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1502 CI = cast<CallInst>(BCI->getOperand(0));
1503 else
Nuno Lopes0b60ebb2012-06-22 00:29:58 +00001504 CI = cast<CallInst>(Malloc);
Evan Cheng21b588b2010-04-14 20:52:55 +00001505 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001506
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001507 PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL,
1508 TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001509 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001510 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001511
Victor Hernandez5d034492009-09-18 22:35:49 +00001512 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001513}
Victor Hernandez5d034492009-09-18 22:35:49 +00001514
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001515// Try to optimize globals based on the knowledge that only one value (besides
1516// its initializer) is ever stored to the global.
1517static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001518 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001519 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +00001520 TargetLibraryInfo *TLI) {
Chris Lattner1c731fa2008-12-15 21:20:32 +00001521 // Ignore no-op GEPs and bitcasts.
1522 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner09a52722004-10-09 21:48:45 +00001523
Chris Lattnere42eb312004-10-10 23:14:11 +00001524 // If we are dealing with a pointer global that is initialized to null and
1525 // only has one (non-null) value stored into it, then we can optimize any
1526 // users of the loaded value (often calls and loads) that would trap if the
1527 // value was null.
Duncan Sands19d0b472010-02-16 11:11:14 +00001528 if (GV->getInitializer()->getType()->isPointerTy() &&
Chris Lattner09a52722004-10-09 21:48:45 +00001529 GV->getInitializer()->isNullValue()) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001530 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1531 if (GV->getInitializer()->getType() != SOVC->getType())
Chris Lattner1a1acc22011-05-22 07:15:13 +00001532 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001533
Chris Lattnere42eb312004-10-10 23:14:11 +00001534 // Optimize away any trapping uses of the loaded value.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001535 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001536 return true;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001537 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1538 Type *MallocType = getMallocAllocatedType(CI, TLI);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001539 if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1540 Ordering, DL, TLI))
Victor Hernandezf3db9152009-11-07 00:16:28 +00001541 return true;
Chris Lattnere42eb312004-10-10 23:14:11 +00001542 }
Chris Lattner09a52722004-10-09 21:48:45 +00001543 }
Chris Lattner004e2502004-10-11 05:54:41 +00001544
Chris Lattner09a52722004-10-09 21:48:45 +00001545 return false;
1546}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001547
James Molloyea31ad32015-11-13 11:05:07 +00001548/// At this point, we have learned that the only two values ever stored into GV
1549/// are its initializer and OtherVal. See if we can shrink the global into a
1550/// boolean and select between the two values whenever it is used. This exposes
1551/// the values to other scalar optimizations.
Lang Hames459b5dc2014-03-23 04:22:31 +00001552static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001553 Type *GVElType = GV->getValueType();
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001554
Lang Hames459b5dc2014-03-23 04:22:31 +00001555 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1556 // an FP value, pointer or vector, don't do this optimization because a select
1557 // between them is very expensive and unlikely to lead to later
1558 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1559 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner46b5c642009-11-06 04:27:31 +00001560 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001561 GVElType->isFloatingPointTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001562 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner20bbac32008-01-14 01:17:44 +00001563 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001564
Chris Lattner20bbac32008-01-14 01:17:44 +00001565 // Walk the use list of the global seeing if all the uses are load or store.
1566 // If there is anything else, bail out.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001567 for (User *U : GV->users())
Gabor Greifa75ed762010-07-12 14:13:15 +00001568 if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
Chris Lattner20bbac32008-01-14 01:17:44 +00001569 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001570
James Molloyef607a22015-10-28 14:30:53 +00001571 DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n");
Lang Hames459b5dc2014-03-23 04:22:31 +00001572
1573 // Create the new global, initializing it to false.
1574 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1575 false,
1576 GlobalValue::InternalLinkage,
1577 ConstantInt::getFalse(GV->getContext()),
1578 GV->getName()+".b",
1579 GV->getThreadLocalMode(),
1580 GV->getType()->getAddressSpace());
Sergei Larin94be2de2016-01-22 21:18:20 +00001581 NewGV->copyAttributesFrom(GV);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001582 GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
Lang Hames459b5dc2014-03-23 04:22:31 +00001583
Chris Lattner40e4cec2004-12-12 05:53:50 +00001584 Constant *InitVal = GV->getInitializer();
Chris Lattner46b5c642009-11-06 04:27:31 +00001585 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Lang Hames459b5dc2014-03-23 04:22:31 +00001586 "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001587
Lang Hames459b5dc2014-03-23 04:22:31 +00001588 // If initialized to zero and storing one into the global, we can use a cast
1589 // instead of a select to synthesize the desired value.
1590 bool IsOneZero = false;
1591 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1592 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001593
Lang Hames459b5dc2014-03-23 04:22:31 +00001594 while (!GV->use_empty()) {
1595 Instruction *UI = cast<Instruction>(GV->user_back());
1596 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1597 // Change the store into a boolean store.
1598 bool StoringOther = SI->getOperand(0) == OtherVal;
1599 // Only do this if we weren't storing a loaded value.
1600 Value *StoreVal;
1601 if (StoringOther || SI->getOperand(0) == InitVal) {
1602 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1603 StoringOther);
Bill Wendling7297b862013-02-13 23:00:51 +00001604 } else {
Lang Hames459b5dc2014-03-23 04:22:31 +00001605 // Otherwise, we are storing a previously loaded copy. To do this,
1606 // change the copy from copying the original value to just copying the
1607 // bool.
1608 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1609
1610 // If we've already replaced the input, StoredVal will be a cast or
1611 // select instruction. If not, it will be a load of the original
1612 // global.
1613 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1614 assert(LI->getOperand(0) == GV && "Not a copy!");
1615 // Insert a new load, to preserve the saved value.
1616 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1617 LI->getOrdering(), LI->getSynchScope(), LI);
1618 } else {
1619 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1620 "This is not a form that we understand!");
1621 StoreVal = StoredVal->getOperand(0);
1622 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1623 }
Chris Lattner745196a2004-12-12 19:34:41 +00001624 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001625 new StoreInst(StoreVal, NewGV, false, 0,
1626 SI->getOrdering(), SI->getSynchScope(), SI);
1627 } else {
1628 // Change the load into a load of bool then a select.
1629 LoadInst *LI = cast<LoadInst>(UI);
1630 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1631 LI->getOrdering(), LI->getSynchScope(), LI);
1632 Value *NSI;
1633 if (IsOneZero)
1634 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1635 else
1636 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1637 NSI->takeName(LI);
1638 LI->replaceAllUsesWith(NSI);
Devang Patelfc507a12009-03-06 01:39:36 +00001639 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001640 UI->eraseFromParent();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001641 }
1642
Lang Hames459b5dc2014-03-23 04:22:31 +00001643 // Retain the name of the old global variable. People who are debugging their
1644 // programs may expect these variables to be named the same.
1645 NewGV->takeName(GV);
1646 GV->eraseFromParent();
Chris Lattner20bbac32008-01-14 01:17:44 +00001647 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001648}
1649
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001650static bool deleteIfDead(GlobalValue &GV,
1651 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001652 GV.removeDeadConstantUsers();
1653
1654 if (!GV.isDiscardableIfUnused())
1655 return false;
1656
1657 if (const Comdat *C = GV.getComdat())
1658 if (!GV.hasLocalLinkage() && NotDiscardableComdats.count(C))
1659 return false;
1660
1661 bool Dead;
1662 if (auto *F = dyn_cast<Function>(&GV))
1663 Dead = F->isDefTriviallyDead();
1664 else
1665 Dead = GV.use_empty();
1666 if (!Dead)
1667 return false;
1668
1669 DEBUG(dbgs() << "GLOBAL DEAD: " << GV << "\n");
1670 GV.eraseFromParent();
1671 ++NumDeleted;
1672 return true;
1673}
Chris Lattner40e4cec2004-12-12 05:53:50 +00001674
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001675static bool isPointerValueDeadOnEntryToFunction(
1676 const Function *F, GlobalValue *GV,
1677 function_ref<DominatorTree &(Function &)> LookupDomTree) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001678 // Find all uses of GV. We expect them all to be in F, and if we can't
1679 // identify any of the uses we bail out.
1680 //
1681 // On each of these uses, identify if the memory that GV points to is
1682 // used/required/live at the start of the function. If it is not, for example
1683 // if the first thing the function does is store to the GV, the GV can
1684 // possibly be demoted.
1685 //
1686 // We don't do an exhaustive search for memory operations - simply look
1687 // through bitcasts as they're quite common and benign.
1688 const DataLayout &DL = GV->getParent()->getDataLayout();
1689 SmallVector<LoadInst *, 4> Loads;
1690 SmallVector<StoreInst *, 4> Stores;
1691 for (auto *U : GV->users()) {
1692 if (Operator::getOpcode(U) == Instruction::BitCast) {
1693 for (auto *UU : U->users()) {
1694 if (auto *LI = dyn_cast<LoadInst>(UU))
1695 Loads.push_back(LI);
1696 else if (auto *SI = dyn_cast<StoreInst>(UU))
1697 Stores.push_back(SI);
1698 else
1699 return false;
1700 }
1701 continue;
1702 }
1703
1704 Instruction *I = dyn_cast<Instruction>(U);
1705 if (!I)
1706 return false;
1707 assert(I->getParent()->getParent() == F);
1708
1709 if (auto *LI = dyn_cast<LoadInst>(I))
1710 Loads.push_back(LI);
1711 else if (auto *SI = dyn_cast<StoreInst>(I))
1712 Stores.push_back(SI);
1713 else
1714 return false;
1715 }
1716
1717 // We have identified all uses of GV into loads and stores. Now check if all
1718 // of them are known not to depend on the value of the global at the function
1719 // entry point. We do this by ensuring that every load is dominated by at
1720 // least one store.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001721 auto &DT = LookupDomTree(*const_cast<Function *>(F));
James Molloy9c7d4d82015-11-15 14:21:37 +00001722
James Molloyd4d23572015-11-16 10:16:22 +00001723 // The below check is quadratic. Check we're not going to do too many tests.
1724 // FIXME: Even though this will always have worst-case quadratic time, we
1725 // could put effort into minimizing the average time by putting stores that
1726 // have been shown to dominate at least one load at the beginning of the
1727 // Stores array, making subsequent dominance checks more likely to succeed
1728 // early.
1729 //
1730 // The threshold here is fairly large because global->local demotion is a
1731 // very powerful optimization should it fire.
1732 const unsigned Threshold = 100;
1733 if (Loads.size() * Stores.size() > Threshold)
1734 return false;
1735
James Molloy9c7d4d82015-11-15 14:21:37 +00001736 for (auto *L : Loads) {
1737 auto *LTy = L->getType();
1738 if (!std::any_of(Stores.begin(), Stores.end(), [&](StoreInst *S) {
1739 auto *STy = S->getValueOperand()->getType();
1740 // The load is only dominated by the store if DomTree says so
1741 // and the number of bits loaded in L is less than or equal to
1742 // the number of bits stored in S.
1743 return DT.dominates(S, L) &&
1744 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy);
1745 }))
1746 return false;
1747 }
1748 // All loads have known dependences inside F, so the global can be localized.
1749 return true;
1750}
1751
James Molloy1d695a02015-11-19 18:04:33 +00001752/// C may have non-instruction users. Can all of those users be turned into
1753/// instructions?
1754static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) {
1755 // We don't do this exhaustively. The most common pattern that we really need
1756 // to care about is a constant GEP or constant bitcast - so just looking
1757 // through one single ConstantExpr.
1758 //
1759 // The set of constants that this function returns true for must be able to be
1760 // handled by makeAllConstantUsesInstructions.
1761 for (auto *U : C->users()) {
1762 if (isa<Instruction>(U))
1763 continue;
1764 if (!isa<ConstantExpr>(U))
1765 // Non instruction, non-constantexpr user; cannot convert this.
1766 return false;
1767 for (auto *UU : U->users())
1768 if (!isa<Instruction>(UU))
1769 // A constantexpr used by another constant. We don't try and recurse any
1770 // further but just bail out at this point.
1771 return false;
1772 }
1773
1774 return true;
1775}
1776
1777/// C may have non-instruction users, and
1778/// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the
1779/// non-instruction users to instructions.
1780static void makeAllConstantUsesInstructions(Constant *C) {
1781 SmallVector<ConstantExpr*,4> Users;
1782 for (auto *U : C->users()) {
1783 if (isa<ConstantExpr>(U))
1784 Users.push_back(cast<ConstantExpr>(U));
1785 else
1786 // We should never get here; allNonInstructionUsersCanBeMadeInstructions
1787 // should not have returned true for C.
1788 assert(
1789 isa<Instruction>(U) &&
1790 "Can't transform non-constantexpr non-instruction to instruction!");
1791 }
1792
1793 SmallVector<Value*,4> UUsers;
1794 for (auto *U : Users) {
1795 UUsers.clear();
1796 for (auto *UU : U->users())
1797 UUsers.push_back(UU);
1798 for (auto *UU : UUsers) {
1799 Instruction *UI = cast<Instruction>(UU);
1800 Instruction *NewU = U->getAsInstruction();
1801 NewU->insertBefore(UI);
1802 UI->replaceUsesOfWith(U, NewU);
1803 }
1804 U->dropAllReferences();
1805 }
1806}
1807
James Molloyea31ad32015-11-13 11:05:07 +00001808/// Analyze the specified global variable and optimize
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001809/// it if possible. If we make a change, return true.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001810static bool processInternalGlobal(
1811 GlobalVariable *GV, const GlobalStatus &GS, TargetLibraryInfo *TLI,
1812 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001813 auto &DL = GV->getParent()->getDataLayout();
James Molloy9c7d4d82015-11-15 14:21:37 +00001814 // If this is a first class global and has only one accessing function and
1815 // this function is non-recursive, we replace the global with a local alloca
1816 // in this function.
Alexey Samsonova1944e62013-10-07 19:03:24 +00001817 //
Alp Tokerf907b892013-12-05 05:44:44 +00001818 // NOTE: It doesn't make sense to promote non-single-value types since we
Alexey Samsonova1944e62013-10-07 19:03:24 +00001819 // are just replacing static memory to stack memory.
1820 //
1821 // If the global is in different address space, don't bring it to stack.
1822 if (!GS.HasMultipleAccessingFunctions &&
James Molloy1d695a02015-11-19 18:04:33 +00001823 GS.AccessingFunction &&
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001824 GV->getValueType()->isSingleValueType() &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001825 GV->getType()->getAddressSpace() == 0 &&
1826 !GV->isExternallyInitialized() &&
James Molloy1d695a02015-11-19 18:04:33 +00001827 allNonInstructionUsersCanBeMadeInstructions(GV) &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001828 GS.AccessingFunction->doesNotRecurse() &&
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001829 isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV,
1830 LookupDomTree)) {
James Molloy33e73452015-11-13 11:05:13 +00001831 DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n");
Alexey Samsonova1944e62013-10-07 19:03:24 +00001832 Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1833 ->getEntryBlock().begin());
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001834 Type *ElemTy = GV->getValueType();
Alexey Samsonova1944e62013-10-07 19:03:24 +00001835 // FIXME: Pass Global's alignment when globals have alignment
Craig Topperf40110f2014-04-25 05:29:35 +00001836 AllocaInst *Alloca = new AllocaInst(ElemTy, nullptr,
1837 GV->getName(), &FirstI);
Alexey Samsonova1944e62013-10-07 19:03:24 +00001838 if (!isa<UndefValue>(GV->getInitializer()))
1839 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1840
James Molloy1d695a02015-11-19 18:04:33 +00001841 makeAllConstantUsesInstructions(GV);
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001842
Alexey Samsonova1944e62013-10-07 19:03:24 +00001843 GV->replaceAllUsesWith(Alloca);
1844 GV->eraseFromParent();
1845 ++NumLocalized;
1846 return true;
1847 }
1848
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001849 // If the global is never loaded (but may be stored to), it is dead.
1850 // Delete it now.
Rafael Espindola045a78f2013-10-17 18:18:52 +00001851 if (!GS.IsLoaded) {
James Molloy33e73452015-11-13 11:05:13 +00001852 DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001853
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001854 bool Changed;
1855 if (isLeakCheckerRoot(GV)) {
1856 // Delete any constant stores to the global.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001857 Changed = CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001858 } else {
1859 // Delete any stores we can find to the global. We may not be able to
1860 // make it completely dead though.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001861 Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001862 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001863
1864 // If the global is dead now, delete it.
1865 if (GV->use_empty()) {
1866 GV->eraseFromParent();
1867 ++NumDeleted;
1868 Changed = true;
1869 }
1870 return Changed;
1871
James Molloyeb040cc2016-04-25 10:48:29 +00001872 }
1873 if (GS.StoredType <= GlobalStatus::InitializerStored) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00001874 DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001875 GV->setConstant(true);
1876
1877 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001878 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001879
1880 // If the global is dead now, just nuke it.
1881 if (GV->use_empty()) {
1882 DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
1883 << "all users and delete global!\n");
1884 GV->eraseFromParent();
1885 ++NumDeleted;
James Molloyeb040cc2016-04-25 10:48:29 +00001886 return true;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001887 }
1888
James Molloyeb040cc2016-04-25 10:48:29 +00001889 // Fall through to the next check; see if we can optimize further.
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001890 ++NumMarked;
James Molloyeb040cc2016-04-25 10:48:29 +00001891 }
1892 if (!GV->getInitializer()->getType()->isSingleValueType()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001893 const DataLayout &DL = GV->getParent()->getDataLayout();
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001894 if (SRAGlobal(GV, DL))
Mehdi Amini46a43552015-03-04 18:43:29 +00001895 return true;
James Molloyeb040cc2016-04-25 10:48:29 +00001896 }
1897 if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001898 // If the initial value for the global was an undef value, and if only
1899 // one other value was stored into it, we can just change the
1900 // initializer to be the stored value, then delete all stores to the
1901 // global. This allows us to mark it constant.
1902 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1903 if (isa<UndefValue>(GV->getInitializer())) {
1904 // Change the initial value here.
1905 GV->setInitializer(SOVConstant);
1906
1907 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001908 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001909
1910 if (GV->use_empty()) {
1911 DEBUG(dbgs() << " *** Substituting initializer allowed us to "
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001912 << "simplify all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001913 GV->eraseFromParent();
1914 ++NumDeleted;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001915 }
1916 ++NumSubstitute;
1917 return true;
1918 }
1919
1920 // Try to optimize globals based on the knowledge that only one value
1921 // (besides its initializer) is ever stored to the global.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001922 if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001923 return true;
1924
Lang Hames459b5dc2014-03-23 04:22:31 +00001925 // Otherwise, if the global was not a boolean, we can shrink it to be a
1926 // boolean.
Eli Friedman33d37002013-09-09 22:00:13 +00001927 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) {
JF Bastien800f87a2016-04-06 21:19:33 +00001928 if (GS.Ordering == AtomicOrdering::NotAtomic) {
Lang Hames459b5dc2014-03-23 04:22:31 +00001929 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Eli Friedman33d37002013-09-09 22:00:13 +00001930 ++NumShrunkToBool;
1931 return true;
1932 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001933 }
Eli Friedman33d37002013-09-09 22:00:13 +00001934 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001935 }
1936
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001937 return false;
1938}
1939
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001940/// Analyze the specified global variable and optimize it if possible. If we
1941/// make a change, return true.
1942static bool
1943processGlobal(GlobalValue &GV, TargetLibraryInfo *TLI,
1944 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001945 if (GV.getName().startswith("llvm."))
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001946 return false;
1947
1948 GlobalStatus GS;
1949
1950 if (GlobalStatus::analyzeGlobal(&GV, GS))
1951 return false;
1952
1953 bool Changed = false;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001954 if (!GS.IsCompared && !GV.hasGlobalUnnamedAddr()) {
1955 auto NewUnnamedAddr = GV.hasLocalLinkage() ? GlobalValue::UnnamedAddr::Global
1956 : GlobalValue::UnnamedAddr::Local;
1957 if (NewUnnamedAddr != GV.getUnnamedAddr()) {
1958 GV.setUnnamedAddr(NewUnnamedAddr);
1959 NumUnnamed++;
1960 Changed = true;
1961 }
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001962 }
1963
Peter Collingbourne96efdd62016-06-14 21:01:22 +00001964 // Do more involved optimizations if the global is internal.
1965 if (!GV.hasLocalLinkage())
1966 return Changed;
1967
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001968 auto *GVar = dyn_cast<GlobalVariable>(&GV);
1969 if (!GVar)
1970 return Changed;
1971
1972 if (GVar->isConstant() || !GVar->hasInitializer())
1973 return Changed;
1974
1975 return processInternalGlobal(GVar, GS, TLI, LookupDomTree) || Changed;
1976}
1977
James Molloyea31ad32015-11-13 11:05:07 +00001978/// Walk all of the direct calls of the specified function, changing them to
1979/// FastCC.
Chris Lattnera4c80222005-05-08 22:18:06 +00001980static void ChangeCalleesToFastCall(Function *F) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001981 for (User *U : F->users()) {
1982 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00001983 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001984 CallSite CS(cast<Instruction>(U));
1985 CS.setCallingConv(CallingConv::Fast);
Chris Lattnera4c80222005-05-08 22:18:06 +00001986 }
1987}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001988
Bill Wendlinge94d8432012-12-07 23:16:57 +00001989static AttributeSet StripNest(LLVMContext &C, const AttributeSet &Attrs) {
Chris Lattner8a923e72008-03-12 17:45:29 +00001990 for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
Bill Wendling57625a42013-01-25 23:09:36 +00001991 unsigned Index = Attrs.getSlotIndex(i);
1992 if (!Attrs.getSlotAttributes(i).hasAttribute(Index, Attribute::Nest))
Duncan Sands85fab3a2008-02-18 17:32:13 +00001993 continue;
1994
Duncan Sands85fab3a2008-02-18 17:32:13 +00001995 // There can be only one.
Bill Wendling57625a42013-01-25 23:09:36 +00001996 return Attrs.removeAttribute(C, Index, Attribute::Nest);
Duncan Sands573b3f82008-02-16 20:56:04 +00001997 }
1998
1999 return Attrs;
2000}
2001
2002static void RemoveNestAttribute(Function *F) {
Bill Wendling85a64c22012-10-14 06:39:53 +00002003 F->setAttributes(StripNest(F->getContext(), F->getAttributes()));
Chandler Carruthcdf47882014-03-09 03:16:01 +00002004 for (User *U : F->users()) {
2005 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002006 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002007 CallSite CS(cast<Instruction>(U));
2008 CS.setAttributes(StripNest(F->getContext(), CS.getAttributes()));
Duncan Sands573b3f82008-02-16 20:56:04 +00002009 }
2010}
2011
Reid Kleckner22869372014-02-26 19:57:30 +00002012/// Return true if this is a calling convention that we'd like to change. The
2013/// idea here is that we don't want to mess with the convention if the user
2014/// explicitly requested something with performance implications like coldcc,
2015/// GHC, or anyregcc.
2016static bool isProfitableToMakeFastCC(Function *F) {
2017 CallingConv::ID CC = F->getCallingConv();
2018 // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc?
2019 return CC == CallingConv::C || CC == CallingConv::X86_ThisCall;
2020}
2021
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002022static bool
2023OptimizeFunctions(Module &M, TargetLibraryInfo *TLI,
2024 function_ref<DominatorTree &(Function &)> LookupDomTree,
2025 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002026 bool Changed = false;
2027 // Optimize functions.
2028 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002029 Function *F = &*FI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002030 // Functions without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002031 if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002032 F->setLinkage(GlobalValue::InternalLinkage);
David Majnemer1b3b70e2014-10-08 07:23:31 +00002033
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002034 if (deleteIfDead(*F, NotDiscardableComdats)) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002035 Changed = true;
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002036 continue;
2037 }
Rafael Espindola10d9a032015-12-22 20:43:30 +00002038
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002039 Changed |= processGlobal(*F, TLI, LookupDomTree);
Rafael Espindola10d9a032015-12-22 20:43:30 +00002040
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002041 if (!F->hasLocalLinkage())
2042 continue;
2043 if (isProfitableToMakeFastCC(F) && !F->isVarArg() &&
2044 !F->hasAddressTaken()) {
2045 // If this function has a calling convention worth changing, is not a
2046 // varargs function, and is only called directly, promote it to use the
2047 // Fast calling convention.
2048 F->setCallingConv(CallingConv::Fast);
2049 ChangeCalleesToFastCall(F);
2050 ++NumFastCallFns;
2051 Changed = true;
2052 }
Duncan Sands573b3f82008-02-16 20:56:04 +00002053
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002054 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2055 !F->hasAddressTaken()) {
2056 // The function is not used by a trampoline intrinsic, so it is safe
2057 // to remove the 'nest' attribute.
2058 RemoveNestAttribute(F);
2059 ++NumNestRemoved;
2060 Changed = true;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002061 }
2062 }
2063 return Changed;
2064}
2065
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002066static bool
2067OptimizeGlobalVars(Module &M, TargetLibraryInfo *TLI,
2068 function_ref<DominatorTree &(Function &)> LookupDomTree,
2069 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002070 bool Changed = false;
David Majnemerdad0a642014-06-27 18:19:56 +00002071
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002072 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2073 GVI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002074 GlobalVariable *GV = &*GVI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002075 // Global variables without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002076 if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002077 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman580b80d2009-11-23 16:22:21 +00002078 // Simplify the initializer.
2079 if (GV->hasInitializer())
2080 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GV->getInitializer())) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002081 auto &DL = M.getDataLayout();
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002082 Constant *New = ConstantFoldConstantExpression(CE, DL, TLI);
Dan Gohman580b80d2009-11-23 16:22:21 +00002083 if (New && New != CE)
2084 GV->setInitializer(New);
2085 }
Rafael Espindolafc355bc2011-01-19 16:32:21 +00002086
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002087 if (deleteIfDead(*GV, NotDiscardableComdats)) {
Rafael Espindola10d9a032015-12-22 20:43:30 +00002088 Changed = true;
2089 continue;
2090 }
2091
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002092 Changed |= processGlobal(*GV, TLI, LookupDomTree);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002093 }
2094 return Changed;
2095}
2096
James Molloyea31ad32015-11-13 11:05:07 +00002097/// Evaluate a piece of a constantexpr store into a global initializer. This
2098/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2099/// GEP operands of Addr [0, OpNo) have been stepped into.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002100static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2101 ConstantExpr *Addr, unsigned OpNo) {
2102 // Base case of the recursion.
2103 if (OpNo == Addr->getNumOperands()) {
2104 assert(Val->getType() == Init->getType() && "Type mismatch!");
2105 return Val;
2106 }
2107
2108 SmallVector<Constant*, 32> Elts;
2109 if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2110 // Break up the constant into its elements.
2111 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2112 Elts.push_back(Init->getAggregateElement(i));
2113
2114 // Replace the element that we are supposed to.
2115 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2116 unsigned Idx = CU->getZExtValue();
2117 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2118 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2119
2120 // Return the modified struct.
2121 return ConstantStruct::get(STy, Elts);
2122 }
2123
2124 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2125 SequentialType *InitTy = cast<SequentialType>(Init->getType());
2126
2127 uint64_t NumElts;
2128 if (ArrayType *ATy = dyn_cast<ArrayType>(InitTy))
2129 NumElts = ATy->getNumElements();
2130 else
2131 NumElts = InitTy->getVectorNumElements();
2132
2133 // Break up the array into elements.
2134 for (uint64_t i = 0, e = NumElts; i != e; ++i)
2135 Elts.push_back(Init->getAggregateElement(i));
2136
2137 assert(CI->getZExtValue() < NumElts);
2138 Elts[CI->getZExtValue()] =
2139 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2140
2141 if (Init->getType()->isArrayTy())
2142 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2143 return ConstantVector::get(Elts);
2144}
2145
James Molloyea31ad32015-11-13 11:05:07 +00002146/// We have decided that Addr (which satisfies the predicate
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002147/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2148static void CommitValueTo(Constant *Val, Constant *Addr) {
2149 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2150 assert(GV->hasInitializer());
2151 GV->setInitializer(Val);
2152 return;
2153 }
2154
2155 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2156 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2157 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2158}
2159
James Molloyea31ad32015-11-13 11:05:07 +00002160/// Evaluate static constructors in the function, if we can. Return true if we
2161/// can, false otherwise.
Mehdi Amini46a43552015-03-04 18:43:29 +00002162static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002163 TargetLibraryInfo *TLI) {
Chris Lattnerda1889b2005-09-27 04:27:01 +00002164 // Call the function.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002165 Evaluator Eval(DL, TLI);
Chris Lattner65a3a092005-09-27 04:45:34 +00002166 Constant *RetValDummy;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002167 bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2168 SmallVector<Constant*, 0>());
Jakub Staszak9525a772012-12-06 21:57:16 +00002169
Chris Lattnerda1889b2005-09-27 04:27:01 +00002170 if (EvalSuccess) {
Nico Weber4b2acde2014-05-02 18:35:25 +00002171 ++NumCtorsEvaluated;
2172
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002173 // We succeeded at evaluation: commit the result.
David Greene44cb8ad2010-01-05 01:28:05 +00002174 DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002175 << F->getName() << "' to " << Eval.getMutatedMemory().size()
2176 << " stores.\n");
Benjamin Kramer135f7352016-06-26 12:28:59 +00002177 for (const auto &I : Eval.getMutatedMemory())
2178 CommitValueTo(I.second, I.first);
Craig Topper46276792014-08-24 23:23:06 +00002179 for (GlobalVariable *GV : Eval.getInvariants())
2180 GV->setConstant(true);
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002181 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002182
Chris Lattnerda1889b2005-09-27 04:27:01 +00002183 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002184}
2185
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002186static int compareNames(Constant *const *A, Constant *const *B) {
Benjamin Kramer96f4b122016-03-15 14:18:26 +00002187 Value *AStripped = (*A)->stripPointerCastsNoFollowAliases();
2188 Value *BStripped = (*B)->stripPointerCastsNoFollowAliases();
2189 return AStripped->getName().compare(BStripped->getName());
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002190}
2191
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002192static void setUsedInitializer(GlobalVariable &V,
Craig Topper97ebe532014-08-19 07:44:27 +00002193 const SmallPtrSet<GlobalValue *, 8> &Init) {
Rafael Espindolac2bb73f2013-07-20 23:33:15 +00002194 if (Init.empty()) {
2195 V.eraseFromParent();
2196 return;
2197 }
2198
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002199 // Type of pointer to the array of pointers.
2200 PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0);
Rafael Espindola00752162013-05-09 17:22:59 +00002201
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002202 SmallVector<llvm::Constant *, 8> UsedArray;
Craig Topper71b7b682014-08-21 05:55:13 +00002203 for (GlobalValue *GV : Init) {
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002204 Constant *Cast
Craig Topper71b7b682014-08-21 05:55:13 +00002205 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002206 UsedArray.push_back(Cast);
Rafael Espindola00752162013-05-09 17:22:59 +00002207 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002208 // Sort to get deterministic order.
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002209 array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002210 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
Rafael Espindola00752162013-05-09 17:22:59 +00002211
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002212 Module *M = V.getParent();
2213 V.removeFromParent();
2214 GlobalVariable *NV =
2215 new GlobalVariable(*M, ATy, false, llvm::GlobalValue::AppendingLinkage,
2216 llvm::ConstantArray::get(ATy, UsedArray), "");
2217 NV->takeName(&V);
2218 NV->setSection("llvm.metadata");
2219 delete &V;
Rafael Espindola00752162013-05-09 17:22:59 +00002220}
2221
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002222namespace {
James Molloyea31ad32015-11-13 11:05:07 +00002223/// An easy to access representation of llvm.used and llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002224class LLVMUsed {
2225 SmallPtrSet<GlobalValue *, 8> Used;
2226 SmallPtrSet<GlobalValue *, 8> CompilerUsed;
2227 GlobalVariable *UsedV;
2228 GlobalVariable *CompilerUsedV;
2229
2230public:
Rafael Espindolaec2375f2013-07-25 02:50:08 +00002231 LLVMUsed(Module &M) {
Rafael Espindola17600e22013-07-25 03:23:25 +00002232 UsedV = collectUsedGlobalVariables(M, Used, false);
2233 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
Rafael Espindola00752162013-05-09 17:22:59 +00002234 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002235 typedef SmallPtrSet<GlobalValue *, 8>::iterator iterator;
Craig Topper46276792014-08-24 23:23:06 +00002236 typedef iterator_range<iterator> used_iterator_range;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002237 iterator usedBegin() { return Used.begin(); }
2238 iterator usedEnd() { return Used.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002239 used_iterator_range used() {
2240 return used_iterator_range(usedBegin(), usedEnd());
2241 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002242 iterator compilerUsedBegin() { return CompilerUsed.begin(); }
2243 iterator compilerUsedEnd() { return CompilerUsed.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002244 used_iterator_range compilerUsed() {
2245 return used_iterator_range(compilerUsedBegin(), compilerUsedEnd());
2246 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002247 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
2248 bool compilerUsedCount(GlobalValue *GV) const {
2249 return CompilerUsed.count(GV);
2250 }
2251 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2252 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
David Blaikie70573dc2014-11-19 07:49:26 +00002253 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
2254 bool compilerUsedInsert(GlobalValue *GV) {
2255 return CompilerUsed.insert(GV).second;
2256 }
Rafael Espindola00752162013-05-09 17:22:59 +00002257
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002258 void syncVariablesAndSets() {
2259 if (UsedV)
2260 setUsedInitializer(*UsedV, Used);
2261 if (CompilerUsedV)
2262 setUsedInitializer(*CompilerUsedV, CompilerUsed);
2263 }
2264};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00002265}
Rafael Espindola00752162013-05-09 17:22:59 +00002266
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002267static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
2268 if (GA.use_empty()) // No use at all.
2269 return false;
2270
2271 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
2272 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002273 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002274 if (!GA.hasOneUse())
2275 // Strictly more than one use. So at least one is not in llvm.used and
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002276 // llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002277 return true;
2278
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002279 // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002280 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
Rafael Espindola00752162013-05-09 17:22:59 +00002281}
2282
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002283static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
2284 const LLVMUsed &U) {
2285 unsigned N = 2;
2286 assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
2287 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002288 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002289 if (U.usedCount(&V) || U.compilerUsedCount(&V))
2290 ++N;
2291 return V.hasNUsesOrMore(N);
2292}
2293
2294static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
2295 if (!GA.hasLocalLinkage())
2296 return true;
2297
2298 return U.usedCount(&GA) || U.compilerUsedCount(&GA);
2299}
2300
Craig Topper71b7b682014-08-21 05:55:13 +00002301static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U,
2302 bool &RenameTarget) {
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002303 RenameTarget = false;
Rafael Espindola00752162013-05-09 17:22:59 +00002304 bool Ret = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002305 if (hasUseOtherThanLLVMUsed(GA, U))
Rafael Espindola00752162013-05-09 17:22:59 +00002306 Ret = true;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002307
2308 // If the alias is externally visible, we may still be able to simplify it.
2309 if (!mayHaveOtherReferences(GA, U))
2310 return Ret;
2311
2312 // If the aliasee has internal linkage, give it the name and linkage
2313 // of the alias, and delete the alias. This turns:
2314 // define internal ... @f(...)
2315 // @a = alias ... @f
2316 // into:
2317 // define ... @a(...)
2318 Constant *Aliasee = GA.getAliasee();
2319 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2320 if (!Target->hasLocalLinkage())
2321 return Ret;
2322
2323 // Do not perform the transform if multiple aliases potentially target the
2324 // aliasee. This check also ensures that it is safe to replace the section
2325 // and other attributes of the aliasee with those of the alias.
2326 if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
2327 return Ret;
2328
2329 RenameTarget = true;
2330 return true;
Rafael Espindola00752162013-05-09 17:22:59 +00002331}
2332
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002333static bool
2334OptimizeGlobalAliases(Module &M,
2335 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002336 bool Changed = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002337 LLVMUsed Used(M);
2338
Craig Topper46276792014-08-24 23:23:06 +00002339 for (GlobalValue *GV : Used.used())
2340 Used.compilerUsedErase(GV);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002341
Duncan Sands0bcf0852009-01-07 20:01:06 +00002342 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002343 I != E;) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002344 GlobalAlias *J = &*I++;
2345
Duncan Sandsed722832009-03-06 10:21:56 +00002346 // Aliases without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002347 if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002348 J->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindola5349d872015-12-22 19:50:22 +00002349
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002350 if (deleteIfDead(*J, NotDiscardableComdats)) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002351 Changed = true;
2352 continue;
2353 }
2354
Duncan Sandsb3f27882009-02-15 09:56:08 +00002355 // If the aliasee may change at link time, nothing can be done - bail out.
Sanjoy Das5ce32722016-04-08 00:48:30 +00002356 if (J->isInterposable())
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002357 continue;
2358
Duncan Sandsb3f27882009-02-15 09:56:08 +00002359 Constant *Aliasee = J->getAliasee();
David Majnemer0e2cc2a2014-07-01 00:30:56 +00002360 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts());
2361 // We can't trivially replace the alias with the aliasee if the aliasee is
2362 // non-trivial in some way.
2363 // TODO: Try to handle non-zero GEPs of local aliasees.
2364 if (!Target)
2365 continue;
Duncan Sands7a1db332009-02-18 17:55:38 +00002366 Target->removeDeadConstantUsers();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002367
2368 // Make all users of the alias use the aliasee instead.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002369 bool RenameTarget;
2370 if (!hasUsesToReplace(*J, Used, RenameTarget))
Rafael Espindola00752162013-05-09 17:22:59 +00002371 continue;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002372
Rafael Espindola6b238632014-05-16 19:35:39 +00002373 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType()));
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002374 ++NumAliasesResolved;
2375 Changed = true;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002376
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002377 if (RenameTarget) {
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002378 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002379 Target->takeName(&*J);
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002380 Target->setLinkage(J->getLinkage());
Reid Kleckner22b19da2014-02-13 02:18:36 +00002381 Target->setVisibility(J->getVisibility());
2382 Target->setDLLStorageClass(J->getDLLStorageClass());
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002383
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002384 if (Used.usedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002385 Used.usedInsert(Target);
2386
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002387 if (Used.compilerUsedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002388 Used.compilerUsedInsert(Target);
Rafael Espindola8d304802013-06-12 16:45:47 +00002389 } else if (mayHaveOtherReferences(*J, Used))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002390 continue;
2391
Duncan Sandsb3f27882009-02-15 09:56:08 +00002392 // Delete the alias.
2393 M.getAliasList().erase(J);
2394 ++NumAliasesRemoved;
2395 Changed = true;
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002396 }
2397
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002398 Used.syncVariablesAndSets();
2399
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002400 return Changed;
2401}
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002402
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002403static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
Ahmed Bougachad765a822016-04-27 19:04:35 +00002404 LibFunc::Func F = LibFunc::cxa_atexit;
2405 if (!TLI->has(F))
Craig Topperf40110f2014-04-25 05:29:35 +00002406 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002407
Ahmed Bougachad765a822016-04-27 19:04:35 +00002408 Function *Fn = M.getFunction(TLI->getName(F));
Anders Carlssonee6bc702011-03-20 17:59:11 +00002409 if (!Fn)
Craig Topperf40110f2014-04-25 05:29:35 +00002410 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002411
Ahmed Bougachad765a822016-04-27 19:04:35 +00002412 // Make sure that the function has the correct prototype.
2413 if (!TLI->getLibFunc(*Fn, F) || F != LibFunc::cxa_atexit)
Craig Topperf40110f2014-04-25 05:29:35 +00002414 return nullptr;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002415
2416 return Fn;
2417}
2418
James Molloyea31ad32015-11-13 11:05:07 +00002419/// Returns whether the given function is an empty C++ destructor and can
2420/// therefore be eliminated.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002421/// Note that we assume that other optimization passes have already simplified
2422/// the code so we only look for a function with a single basic block, where
Benjamin Kramer1a4695a2012-02-09 16:28:15 +00002423/// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
2424/// other side-effect free instructions.
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002425static bool cxxDtorIsEmpty(const Function &Fn,
2426 SmallPtrSet<const Function *, 8> &CalledFunctions) {
Anders Carlsson48a44912011-03-20 19:51:13 +00002427 // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
Nick Lewyckyd0781832011-03-21 02:26:01 +00002428 // nounwind, but that doesn't seem worth doing.
Anders Carlsson48a44912011-03-20 19:51:13 +00002429 if (Fn.isDeclaration())
2430 return false;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002431
2432 if (++Fn.begin() != Fn.end())
2433 return false;
2434
2435 const BasicBlock &EntryBlock = Fn.getEntryBlock();
2436 for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end();
2437 I != E; ++I) {
2438 if (const CallInst *CI = dyn_cast<CallInst>(I)) {
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002439 // Ignore debug intrinsics.
2440 if (isa<DbgInfoIntrinsic>(CI))
2441 continue;
2442
Anders Carlssonee6bc702011-03-20 17:59:11 +00002443 const Function *CalledFn = CI->getCalledFunction();
2444
2445 if (!CalledFn)
2446 return false;
2447
Anders Carlsson1cc80732011-03-22 03:21:01 +00002448 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
2449
Anders Carlsson48a44912011-03-20 19:51:13 +00002450 // Don't treat recursive functions as empty.
David Blaikie70573dc2014-11-19 07:49:26 +00002451 if (!NewCalledFunctions.insert(CalledFn).second)
Anders Carlsson48a44912011-03-20 19:51:13 +00002452 return false;
2453
Anders Carlsson1cc80732011-03-22 03:21:01 +00002454 if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002455 return false;
2456 } else if (isa<ReturnInst>(*I))
Benjamin Kramer487a3962012-02-09 14:26:06 +00002457 return true; // We're done.
2458 else if (I->mayHaveSideEffects())
2459 return false; // Destructor with side effects, bail.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002460 }
2461
2462 return false;
2463}
2464
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002465static bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
Anders Carlssonee6bc702011-03-20 17:59:11 +00002466 /// Itanium C++ ABI p3.3.5:
2467 ///
2468 /// After constructing a global (or local static) object, that will require
2469 /// destruction on exit, a termination function is registered as follows:
2470 ///
2471 /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
2472 ///
2473 /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
2474 /// call f(p) when DSO d is unloaded, before all such termination calls
2475 /// registered before this one. It returns zero if registration is
Nick Lewyckyd0781832011-03-21 02:26:01 +00002476 /// successful, nonzero on failure.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002477
2478 // This pass will look for calls to __cxa_atexit where the function is trivial
2479 // and remove them.
2480 bool Changed = false;
2481
Chandler Carruthcdf47882014-03-09 03:16:01 +00002482 for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end();
2483 I != E;) {
Anders Carlsson336fd902011-03-20 20:21:33 +00002484 // We're only interested in calls. Theoretically, we could handle invoke
2485 // instructions as well, but neither llvm-gcc nor clang generate invokes
2486 // to __cxa_atexit.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002487 CallInst *CI = dyn_cast<CallInst>(*I++);
2488 if (!CI)
Anders Carlsson336fd902011-03-20 20:21:33 +00002489 continue;
2490
Jakub Staszak9525a772012-12-06 21:57:16 +00002491 Function *DtorFn =
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002492 dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
Anders Carlssonee6bc702011-03-20 17:59:11 +00002493 if (!DtorFn)
2494 continue;
2495
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002496 SmallPtrSet<const Function *, 8> CalledFunctions;
2497 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002498 continue;
2499
2500 // Just remove the call.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002501 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
2502 CI->eraseFromParent();
Anders Carlsson48a44912011-03-20 19:51:13 +00002503
Anders Carlssonee6bc702011-03-20 17:59:11 +00002504 ++NumCXXDtorsRemoved;
2505
2506 Changed |= true;
2507 }
2508
2509 return Changed;
2510}
2511
Justin Bogner1a075012016-04-26 00:28:01 +00002512static bool optimizeGlobalsInModule(
2513 Module &M, const DataLayout &DL, TargetLibraryInfo *TLI,
2514 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002515 SmallSet<const Comdat *, 8> NotDiscardableComdats;
Justin Bogner1a075012016-04-26 00:28:01 +00002516 bool Changed = false;
Chris Lattner25db5802004-10-07 04:16:33 +00002517 bool LocalChange = true;
2518 while (LocalChange) {
2519 LocalChange = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002520
David Majnemer1b3b70e2014-10-08 07:23:31 +00002521 NotDiscardableComdats.clear();
2522 for (const GlobalVariable &GV : M.globals())
2523 if (const Comdat *C = GV.getComdat())
2524 if (!GV.isDiscardableIfUnused() || !GV.use_empty())
2525 NotDiscardableComdats.insert(C);
2526 for (Function &F : M)
2527 if (const Comdat *C = F.getComdat())
2528 if (!F.isDefTriviallyDead())
2529 NotDiscardableComdats.insert(C);
2530 for (GlobalAlias &GA : M.aliases())
2531 if (const Comdat *C = GA.getComdat())
2532 if (!GA.isDiscardableIfUnused() || !GA.use_empty())
2533 NotDiscardableComdats.insert(C);
2534
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002535 // Delete functions that are trivially dead, ccc -> fastcc
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002536 LocalChange |=
2537 OptimizeFunctions(M, TLI, LookupDomTree, NotDiscardableComdats);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002538
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002539 // Optimize global_ctors list.
Richard Smithc167d652014-05-06 01:44:26 +00002540 LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) {
2541 return EvaluateStaticConstructor(F, DL, TLI);
2542 });
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002543
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002544 // Optimize non-address-taken globals.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002545 LocalChange |= OptimizeGlobalVars(M, TLI, LookupDomTree,
2546 NotDiscardableComdats);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002547
2548 // Resolve aliases, when possible.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002549 LocalChange |= OptimizeGlobalAliases(M, NotDiscardableComdats);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002550
Manman Renb3c52fb2013-05-14 21:52:44 +00002551 // Try to remove trivial global destructors if they are not removed
2552 // already.
2553 Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002554 if (CXAAtExitFn)
2555 LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
2556
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002557 Changed |= LocalChange;
Chris Lattner25db5802004-10-07 04:16:33 +00002558 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002559
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002560 // TODO: Move all global ctors functions to the end of the module for code
2561 // layout.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002562
Chris Lattner25db5802004-10-07 04:16:33 +00002563 return Changed;
2564}
Justin Bogner1a075012016-04-26 00:28:01 +00002565
2566PreservedAnalyses GlobalOptPass::run(Module &M, AnalysisManager<Module> &AM) {
2567 auto &DL = M.getDataLayout();
2568 auto &TLI = AM.getResult<TargetLibraryAnalysis>(M);
2569 auto &FAM =
2570 AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
2571 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree &{
2572 return FAM.getResult<DominatorTreeAnalysis>(F);
2573 };
2574 if (!optimizeGlobalsInModule(M, DL, &TLI, LookupDomTree))
2575 return PreservedAnalyses::all();
2576 return PreservedAnalyses::none();
2577}
2578
2579namespace {
2580struct GlobalOptLegacyPass : public ModulePass {
2581 static char ID; // Pass identification, replacement for typeid
2582 GlobalOptLegacyPass() : ModulePass(ID) {
2583 initializeGlobalOptLegacyPassPass(*PassRegistry::getPassRegistry());
2584 }
2585
2586 bool runOnModule(Module &M) override {
2587 if (skipModule(M))
2588 return false;
2589
2590 auto &DL = M.getDataLayout();
2591 auto *TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
2592 auto LookupDomTree = [this](Function &F) -> DominatorTree & {
2593 return this->getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
2594 };
2595 return optimizeGlobalsInModule(M, DL, TLI, LookupDomTree);
2596 }
2597
2598 void getAnalysisUsage(AnalysisUsage &AU) const override {
2599 AU.addRequired<TargetLibraryInfoWrapperPass>();
2600 AU.addRequired<DominatorTreeWrapperPass>();
2601 }
2602};
2603}
2604
2605char GlobalOptLegacyPass::ID = 0;
2606INITIALIZE_PASS_BEGIN(GlobalOptLegacyPass, "globalopt",
2607 "Global Variable Optimizer", false, false)
2608INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
2609INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
2610INITIALIZE_PASS_END(GlobalOptLegacyPass, "globalopt",
2611 "Global Variable Optimizer", false, false)
2612
2613ModulePass *llvm::createGlobalOptimizerPass() {
2614 return new GlobalOptLegacyPass();
2615}