blob: 12090bff381a8ba06e6256a542749d78b2124187 [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"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000023#include "llvm/ADT/Twine.h"
24#include "llvm/ADT/iterator_range.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/Analysis/ConstantFolding.h"
26#include "llvm/Analysis/MemoryBuiltins.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000027#include "llvm/Analysis/TargetLibraryInfo.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000028#include "llvm/BinaryFormat/Dwarf.h"
29#include "llvm/IR/Attributes.h"
30#include "llvm/IR/BasicBlock.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000031#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/CallingConv.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000033#include "llvm/IR/Constant.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000034#include "llvm/IR/Constants.h"
35#include "llvm/IR/DataLayout.h"
Victor Leschuk56b03d02017-08-04 04:51:15 +000036#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000037#include "llvm/IR/DerivedTypes.h"
James Molloy9c7d4d82015-11-15 14:21:37 +000038#include "llvm/IR/Dominators.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000039#include "llvm/IR/Function.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000040#include "llvm/IR/GetElementPtrTypeIterator.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000041#include "llvm/IR/GlobalAlias.h"
42#include "llvm/IR/GlobalValue.h"
43#include "llvm/IR/GlobalVariable.h"
44#include "llvm/IR/InstrTypes.h"
45#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000046#include "llvm/IR/Instructions.h"
47#include "llvm/IR/IntrinsicInst.h"
48#include "llvm/IR/Module.h"
49#include "llvm/IR/Operator.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000050#include "llvm/IR/Type.h"
51#include "llvm/IR/Use.h"
52#include "llvm/IR/User.h"
53#include "llvm/IR/Value.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000054#include "llvm/IR/ValueHandle.h"
Chris Lattner25db5802004-10-07 04:16:33 +000055#include "llvm/Pass.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000056#include "llvm/Support/AtomicOrdering.h"
57#include "llvm/Support/Casting.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000058#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000059#include "llvm/Support/ErrorHandling.h"
Chris Lattner67ca6f632008-04-26 07:40:11 +000060#include "llvm/Support/MathExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000061#include "llvm/Support/raw_ostream.h"
Justin Bogner1a075012016-04-26 00:28:01 +000062#include "llvm/Transforms/IPO.h"
Nico Weber4b2acde2014-05-02 18:35:25 +000063#include "llvm/Transforms/Utils/CtorUtils.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000064#include "llvm/Transforms/Utils/Evaluator.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000065#include "llvm/Transforms/Utils/GlobalStatus.h"
David Majnemer522a9112016-07-22 04:54:44 +000066#include "llvm/Transforms/Utils/Local.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000067#include <cassert>
68#include <cstdint>
69#include <utility>
70#include <vector>
71
Chris Lattner25db5802004-10-07 04:16:33 +000072using namespace llvm;
73
Chandler Carruth964daaa2014-04-22 02:55:47 +000074#define DEBUG_TYPE "globalopt"
75
Chris Lattner1631bcb2006-12-19 22:09:18 +000076STATISTIC(NumMarked , "Number of globals marked constant");
Rafael Espindolafc355bc2011-01-19 16:32:21 +000077STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
Chris Lattner1631bcb2006-12-19 22:09:18 +000078STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
79STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
80STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
81STATISTIC(NumDeleted , "Number of globals deleted");
Chris Lattner1631bcb2006-12-19 22:09:18 +000082STATISTIC(NumGlobUses , "Number of global uses devirtualized");
Alexey Samsonova1944e62013-10-07 19:03:24 +000083STATISTIC(NumLocalized , "Number of globals localized");
Chris Lattner1631bcb2006-12-19 22:09:18 +000084STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
85STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
86STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands573b3f82008-02-16 20:56:04 +000087STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sandsb3f27882009-02-15 09:56:08 +000088STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
89STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Anders Carlssonee6bc702011-03-20 17:59:11 +000090STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed");
Chris Lattner25db5802004-10-07 04:16:33 +000091
James Molloyea31ad32015-11-13 11:05:07 +000092/// Is this global variable possibly used by a leak checker as a root? If so,
93/// we might not really want to eliminate the stores to it.
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +000094static bool isLeakCheckerRoot(GlobalVariable *GV) {
95 // A global variable is a root if it is a pointer, or could plausibly contain
96 // a pointer. There are two challenges; one is that we could have a struct
97 // the has an inner member which is a pointer. We recurse through the type to
98 // detect these (up to a point). The other is that we may actually be a union
99 // of a pointer and another type, and so our LLVM type is an integer which
100 // gets converted into a pointer, or our type is an [i8 x #] with a pointer
101 // potentially contained here.
102
103 if (GV->hasPrivateLinkage())
104 return false;
105
106 SmallVector<Type *, 4> Types;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000107 Types.push_back(GV->getValueType());
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000108
109 unsigned Limit = 20;
110 do {
111 Type *Ty = Types.pop_back_val();
112 switch (Ty->getTypeID()) {
113 default: break;
114 case Type::PointerTyID: return true;
115 case Type::ArrayTyID:
116 case Type::VectorTyID: {
117 SequentialType *STy = cast<SequentialType>(Ty);
118 Types.push_back(STy->getElementType());
119 break;
120 }
121 case Type::StructTyID: {
122 StructType *STy = cast<StructType>(Ty);
123 if (STy->isOpaque()) return true;
124 for (StructType::element_iterator I = STy->element_begin(),
125 E = STy->element_end(); I != E; ++I) {
126 Type *InnerTy = *I;
127 if (isa<PointerType>(InnerTy)) return true;
128 if (isa<CompositeType>(InnerTy))
129 Types.push_back(InnerTy);
130 }
131 break;
132 }
133 }
134 if (--Limit == 0) return true;
135 } while (!Types.empty());
136 return false;
137}
138
139/// Given a value that is stored to a global but never read, determine whether
140/// it's safe to remove the store and the chain of computation that feeds the
141/// store.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000142static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000143 do {
144 if (isa<Constant>(V))
145 return true;
146 if (!V->hasOneUse())
147 return false;
Nick Lewycky7d0f1102012-07-25 21:19:40 +0000148 if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
149 isa<GlobalValue>(V))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000150 return false;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000151 if (isAllocationFn(V, TLI))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000152 return true;
153
154 Instruction *I = cast<Instruction>(V);
155 if (I->mayHaveSideEffects())
156 return false;
157 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
158 if (!GEP->hasAllConstantIndices())
159 return false;
160 } else if (I->getNumOperands() != 1) {
161 return false;
162 }
163
164 V = I->getOperand(0);
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +0000165 } while (true);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000166}
167
James Molloyea31ad32015-11-13 11:05:07 +0000168/// This GV is a pointer root. Loop over all users of the global and clean up
169/// any that obviously don't assign the global a value that isn't dynamically
170/// allocated.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000171static bool CleanupPointerRootUsers(GlobalVariable *GV,
172 const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000173 // A brief explanation of leak checkers. The goal is to find bugs where
174 // pointers are forgotten, causing an accumulating growth in memory
175 // usage over time. The common strategy for leak checkers is to whitelist the
176 // memory pointed to by globals at exit. This is popular because it also
177 // solves another problem where the main thread of a C++ program may shut down
178 // before other threads that are still expecting to use those globals. To
179 // handle that case, we expect the program may create a singleton and never
180 // destroy it.
181
182 bool Changed = false;
183
184 // If Dead[n].first is the only use of a malloc result, we can delete its
185 // chain of computation and the store to the global in Dead[n].second.
186 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
187
188 // Constants can't be pointers to dynamically allocated memory.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000189 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end();
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000190 UI != E;) {
191 User *U = *UI++;
192 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
193 Value *V = SI->getValueOperand();
194 if (isa<Constant>(V)) {
195 Changed = true;
196 SI->eraseFromParent();
197 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
198 if (I->hasOneUse())
199 Dead.push_back(std::make_pair(I, SI));
200 }
201 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
202 if (isa<Constant>(MSI->getValue())) {
203 Changed = true;
204 MSI->eraseFromParent();
205 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
206 if (I->hasOneUse())
207 Dead.push_back(std::make_pair(I, MSI));
208 }
209 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
210 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
211 if (MemSrc && MemSrc->isConstant()) {
212 Changed = true;
213 MTI->eraseFromParent();
214 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
215 if (I->hasOneUse())
216 Dead.push_back(std::make_pair(I, MTI));
217 }
218 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
219 if (CE->use_empty()) {
220 CE->destroyConstant();
221 Changed = true;
222 }
223 } else if (Constant *C = dyn_cast<Constant>(U)) {
Rafael Espindola27797ba2013-10-17 18:06:32 +0000224 if (isSafeToDestroyConstant(C)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000225 C->destroyConstant();
226 // This could have invalidated UI, start over from scratch.
227 Dead.clear();
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000228 CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000229 return true;
230 }
231 }
232 }
233
234 for (int i = 0, e = Dead.size(); i != e; ++i) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000235 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000236 Dead[i].second->eraseFromParent();
237 Instruction *I = Dead[i].first;
238 do {
Michael Gottesman2a654272013-01-11 23:08:52 +0000239 if (isAllocationFn(I, TLI))
240 break;
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000241 Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
242 if (!J)
243 break;
244 I->eraseFromParent();
245 I = J;
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +0000246 } while (true);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000247 I->eraseFromParent();
248 }
249 }
250
251 return Changed;
252}
253
James Molloyea31ad32015-11-13 11:05:07 +0000254/// We just marked GV constant. Loop over all users of the global, cleaning up
255/// the obvious ones. This is largely just a quick scan over the use list to
256/// clean up the easy and obvious cruft. This returns true if it made a change.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000257static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
Mehdi Amini46a43552015-03-04 18:43:29 +0000258 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000259 TargetLibraryInfo *TLI) {
Chris Lattnercb9f1522004-10-10 16:43:46 +0000260 bool Changed = false;
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000261 // Note that we need to use a weak value handle for the worklist items. When
262 // we delete a constant array, we may also be holding pointer to one of its
263 // elements (or an element of one of its elements if we're dealing with an
264 // array of arrays) in the worklist.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +0000265 SmallVector<WeakTrackingVH, 8> WorkList(V->user_begin(), V->user_end());
Bill Wendling88d06c32013-04-02 08:16:45 +0000266 while (!WorkList.empty()) {
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000267 Value *UV = WorkList.pop_back_val();
268 if (!UV)
269 continue;
270
271 User *U = cast<User>(UV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000272
Chris Lattner25db5802004-10-07 04:16:33 +0000273 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000274 if (Init) {
275 // Replace the load with the initializer.
276 LI->replaceAllUsesWith(Init);
277 LI->eraseFromParent();
278 Changed = true;
279 }
Chris Lattner25db5802004-10-07 04:16:33 +0000280 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
281 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000282 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000283 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000284 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
285 if (CE->getOpcode() == Instruction::GetElementPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000286 Constant *SubInit = nullptr;
Chris Lattner46d9ff082005-09-26 07:34:35 +0000287 if (Init)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000288 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000289 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI);
Matt Arsenault461c8e02014-01-02 20:01:43 +0000290 } else if ((CE->getOpcode() == Instruction::BitCast &&
291 CE->getType()->isPointerTy()) ||
292 CE->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000293 // Pointer cast, delete any stores and memsets to the global.
Craig Topperf40110f2014-04-25 05:29:35 +0000294 Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI);
Chris Lattner7561ca12005-02-27 18:58:52 +0000295 }
296
297 if (CE->use_empty()) {
298 CE->destroyConstant();
299 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000300 }
301 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000302 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
303 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
304 // and will invalidate our notion of what Init is.
Craig Topperf40110f2014-04-25 05:29:35 +0000305 Constant *SubInit = nullptr;
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000306 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
Mehdi Amini46a43552015-03-04 18:43:29 +0000307 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000308 ConstantFoldInstruction(GEP, DL, TLI));
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000309 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000310 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Benjamin Krameraa9e4a52012-03-28 14:50:09 +0000311
312 // If the initializer is an all-null value and we have an inbounds GEP,
313 // we already know what the result of any load from that GEP is.
314 // TODO: Handle splats.
315 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
Eduard Burtescu19eb0312016-01-19 17:28:00 +0000316 SubInit = Constant::getNullValue(GEP->getResultElementType());
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000317 }
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000318 Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000319
Chris Lattnercb9f1522004-10-10 16:43:46 +0000320 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000321 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000322 Changed = true;
323 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000324 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
325 if (MI->getRawDest() == V) {
326 MI->eraseFromParent();
327 Changed = true;
328 }
329
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000330 } else if (Constant *C = dyn_cast<Constant>(U)) {
331 // If we have a chain of dead constantexprs or other things dangling from
332 // us, and if they are all dead, nuke them without remorse.
Rafael Espindola27797ba2013-10-17 18:06:32 +0000333 if (isSafeToDestroyConstant(C)) {
Devang Pateld926aaa2009-03-06 01:37:41 +0000334 C->destroyConstant();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000335 CleanupConstantGlobalUsers(V, Init, DL, TLI);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000336 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000337 }
Chris Lattner25db5802004-10-07 04:16:33 +0000338 }
339 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000340 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000341}
342
James Molloyea31ad32015-11-13 11:05:07 +0000343/// Return true if the specified instruction is a safe user of a derived
344/// expression from a global that we want to SROA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000345static bool isSafeSROAElementUse(Value *V) {
346 // We might have a dead and dangling constant hanging off of here.
347 if (Constant *C = dyn_cast<Constant>(V))
Rafael Espindola27797ba2013-10-17 18:06:32 +0000348 return isSafeToDestroyConstant(C);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000349
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000350 Instruction *I = dyn_cast<Instruction>(V);
351 if (!I) return false;
352
353 // Loads are ok.
354 if (isa<LoadInst>(I)) return true;
355
356 // Stores *to* the pointer are ok.
357 if (StoreInst *SI = dyn_cast<StoreInst>(I))
358 return SI->getOperand(0) != V;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000359
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000360 // Otherwise, it must be a GEP.
361 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
Craig Topperf40110f2014-04-25 05:29:35 +0000362 if (!GEPI) return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000363
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000364 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
365 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
366 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000367
Chandler Carruthcdf47882014-03-09 03:16:01 +0000368 for (User *U : GEPI->users())
369 if (!isSafeSROAElementUse(U))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000370 return false;
Chris Lattnerab053722008-01-14 01:31:05 +0000371 return true;
372}
373
James Molloyea31ad32015-11-13 11:05:07 +0000374/// U is a direct user of the specified global value. Look at it and its uses
375/// and decide whether it is safe to SROA this global.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000376static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
377 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000378 if (!isa<GetElementPtrInst>(U) &&
379 (!isa<ConstantExpr>(U) ||
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000380 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
381 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000382
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000383 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
384 // don't like < 3 operand CE's, and we don't like non-constant integer
385 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
386 // value of C.
387 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
388 !cast<Constant>(U->getOperand(1))->isNullValue() ||
389 !isa<ConstantInt>(U->getOperand(2)))
390 return false;
391
392 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
393 ++GEPI; // Skip over the pointer index.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000394
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000395 // If this is a use of an array allocation, do a bit more checking for sanity.
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000396 if (GEPI.isSequential()) {
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000397 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000398
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000399 // Check to make sure that index falls within the array. If not,
400 // something funny is going on, so we won't do the optimization.
401 //
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000402 if (GEPI.isBoundedSequential() &&
403 Idx->getZExtValue() >= GEPI.getSequentialNumElements())
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000404 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000405
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000406 // We cannot scalar repl this level of the array unless any array
407 // sub-indices are in-range constants. In particular, consider:
408 // A[0][i]. We cannot know that the user isn't doing invalid things like
409 // allowing i to index an out-of-range subscript that accesses A[1].
410 //
411 // Scalar replacing *just* the outer index of the array is probably not
412 // going to be a win anyway, so just give up.
413 for (++GEPI; // Skip array index.
Dan Gohman82ac81b2009-08-18 14:58:19 +0000414 GEPI != E;
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000415 ++GEPI) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000416 if (GEPI.isStruct())
Dan Gohman82ac81b2009-08-18 14:58:19 +0000417 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000418
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000419 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000420 if (!IdxVal ||
421 (GEPI.isBoundedSequential() &&
422 IdxVal->getZExtValue() >= GEPI.getSequentialNumElements()))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000423 return false;
424 }
425 }
426
Davide Italianoc163fac2017-08-09 09:23:29 +0000427 return llvm::all_of(U->users(),
428 [](User *UU) { return isSafeSROAElementUse(UU); });
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000429}
430
James Molloyea31ad32015-11-13 11:05:07 +0000431/// Look at all uses of the global and decide whether it is safe for us to
432/// perform this transformation.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000433static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000434 for (User *U : GV->users())
435 if (!IsUserOfGlobalSafeForSRA(U, GV))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000436 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000437
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000438 return true;
439}
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000440
Victor Leschuk56b03d02017-08-04 04:51:15 +0000441/// Copy over the debug info for a variable to its SRA replacements.
442static void transferSRADebugInfo(GlobalVariable *GV, GlobalVariable *NGV,
443 uint64_t FragmentOffsetInBits,
Adrian Prantl504b82d2017-08-31 00:06:18 +0000444 uint64_t FragmentSizeInBits,
445 unsigned NumElements) {
Victor Leschuk56b03d02017-08-04 04:51:15 +0000446 SmallVector<DIGlobalVariableExpression *, 1> GVs;
447 GV->getDebugInfo(GVs);
448 for (auto *GVE : GVs) {
449 DIVariable *Var = GVE->getVariable();
450 DIExpression *Expr = GVE->getExpression();
Adrian Prantl504b82d2017-08-31 00:06:18 +0000451 if (NumElements > 1)
452 Expr = DIExpression::createFragmentExpression(Expr, FragmentOffsetInBits,
453 FragmentSizeInBits);
454 auto *NGVE = DIGlobalVariableExpression::get(GVE->getContext(), Var, Expr);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000455 NGV->addDebugInfo(NGVE);
456 }
457}
458
James Molloyea31ad32015-11-13 11:05:07 +0000459/// Perform scalar replacement of aggregates on the specified global variable.
460/// This opens the door for other optimizations by exposing the behavior of the
461/// program in a more fine-grained way. We have determined that this
462/// transformation is safe already. We return the first global variable we
Chris Lattnerabab0712004-10-08 17:32:09 +0000463/// insert so that the caller can reprocess it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000464static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
Chris Lattnerab053722008-01-14 01:31:05 +0000465 // Make sure this global only has simple uses that we can SRA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000466 if (!GlobalUsersSafeToSRA(GV))
Craig Topperf40110f2014-04-25 05:29:35 +0000467 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000468
James Molloyeb040cc2016-04-25 10:48:29 +0000469 assert(GV->hasLocalLinkage());
Chris Lattnerabab0712004-10-08 17:32:09 +0000470 Constant *Init = GV->getInitializer();
Chris Lattner229907c2011-07-18 04:54:35 +0000471 Type *Ty = Init->getType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000472
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +0000473 std::vector<GlobalVariable *> NewGlobals;
Chris Lattnerabab0712004-10-08 17:32:09 +0000474 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
475
Chris Lattner67ca6f632008-04-26 07:40:11 +0000476 // Get the alignment of the global, either explicit or target-specific.
477 unsigned StartAlignment = GV->getAlignment();
478 if (StartAlignment == 0)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000479 StartAlignment = DL.getABITypeAlignment(GV->getType());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000480
Chris Lattner229907c2011-07-18 04:54:35 +0000481 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Victor Leschuk56b03d02017-08-04 04:51:15 +0000482 uint64_t FragmentOffset = 0;
Adrian Prantl504b82d2017-08-31 00:06:18 +0000483 unsigned NumElements = STy->getNumElements();
484 NewGlobals.reserve(NumElements);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000485 const StructLayout &Layout = *DL.getStructLayout(STy);
Adrian Prantl504b82d2017-08-31 00:06:18 +0000486 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000487 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000488 assert(In && "Couldn't get element of initializer?");
Chris Lattner46b5c642009-11-06 04:27:31 +0000489 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000490 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000491 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000492 GV->getThreadLocalMode(),
Owen Anderson5948fdf2009-07-08 01:26:06 +0000493 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000494 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000495 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000496 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000497 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000498
Chris Lattner67ca6f632008-04-26 07:40:11 +0000499 // Calculate the known alignment of the field. If the original aggregate
500 // had 256 byte alignment for example, something might depend on that:
501 // propagate info to each field.
502 uint64_t FieldOffset = Layout.getElementOffset(i);
503 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000504 if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i)))
Chris Lattner67ca6f632008-04-26 07:40:11 +0000505 NGV->setAlignment(NewAlign);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000506
507 // Copy over the debug info for the variable.
508 FragmentOffset = alignTo(FragmentOffset, NewAlign);
509 uint64_t Size = DL.getTypeSizeInBits(NGV->getValueType());
Adrian Prantl504b82d2017-08-31 00:06:18 +0000510 transferSRADebugInfo(GV, NGV, FragmentOffset, Size, NumElements);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000511 FragmentOffset += Size;
Chris Lattnerabab0712004-10-08 17:32:09 +0000512 }
Chris Lattner229907c2011-07-18 04:54:35 +0000513 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
Peter Collingbournebc070522016-12-02 03:20:58 +0000514 unsigned NumElements = STy->getNumElements();
Chris Lattner25169ca2005-02-23 16:53:04 +0000515 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Craig Topperf40110f2014-04-25 05:29:35 +0000516 return nullptr; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000517 NewGlobals.reserve(NumElements);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000518 auto ElTy = STy->getElementType();
519 uint64_t EltSize = DL.getTypeAllocSize(ElTy);
520 unsigned EltAlign = DL.getABITypeAlignment(ElTy);
521 uint64_t FragmentSizeInBits = DL.getTypeSizeInBits(ElTy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000522 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000523 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000524 assert(In && "Couldn't get element of initializer?");
525
Chris Lattner46b5c642009-11-06 04:27:31 +0000526 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000527 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000528 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000529 GV->getThreadLocalMode(),
Owen Andersonb17f3292009-07-08 19:03:57 +0000530 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000531 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000532 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000533 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000534 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000535
Chris Lattner67ca6f632008-04-26 07:40:11 +0000536 // Calculate the known alignment of the field. If the original aggregate
537 // had 256 byte alignment for example, something might depend on that:
538 // propagate info to each field.
539 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
540 if (NewAlign > EltAlign)
541 NGV->setAlignment(NewAlign);
Adrian Prantl504b82d2017-08-31 00:06:18 +0000542 transferSRADebugInfo(GV, NGV, FragmentSizeInBits * i, FragmentSizeInBits,
543 NumElements);
Chris Lattnerabab0712004-10-08 17:32:09 +0000544 }
545 }
546
547 if (NewGlobals.empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000548 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000549
James Molloyef607a22015-10-28 14:30:53 +0000550 DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n");
Chris Lattner004e2502004-10-11 05:54:41 +0000551
Chris Lattner46b5c642009-11-06 04:27:31 +0000552 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattnerabab0712004-10-08 17:32:09 +0000553
554 // Loop over all of the uses of the global, replacing the constantexpr geps,
555 // with smaller constantexpr geps or direct references.
556 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000557 User *GEP = GV->user_back();
Chris Lattner004e2502004-10-11 05:54:41 +0000558 assert(((isa<ConstantExpr>(GEP) &&
559 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
560 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000561
Chris Lattnerabab0712004-10-08 17:32:09 +0000562 // Ignore the 1th operand, which has to be zero or else the program is quite
563 // broken (undefined). Get the 2nd operand, which is the structure or array
564 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000565 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000566 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
567
Chris Lattner004e2502004-10-11 05:54:41 +0000568 Value *NewPtr = NewGlobals[Val];
David Blaikied9d900c2015-05-07 17:28:58 +0000569 Type *NewTy = NewGlobals[Val]->getValueType();
Chris Lattnerabab0712004-10-08 17:32:09 +0000570
571 // Form a shorter GEP if needed.
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000572 if (GEP->getNumOperands() > 3) {
Chris Lattner004e2502004-10-11 05:54:41 +0000573 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000574 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000575 Idxs.push_back(NullInt);
576 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
577 Idxs.push_back(CE->getOperand(i));
David Blaikie4a2e73b2015-04-02 18:55:32 +0000578 NewPtr =
579 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
Chris Lattner004e2502004-10-11 05:54:41 +0000580 } else {
581 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000582 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000583 Idxs.push_back(NullInt);
584 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
585 Idxs.push_back(GEPI->getOperand(i));
David Blaikie741c8f82015-03-14 01:53:18 +0000586 NewPtr = GetElementPtrInst::Create(
David Blaikied9d900c2015-05-07 17:28:58 +0000587 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
Chris Lattner004e2502004-10-11 05:54:41 +0000588 }
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000589 }
Chris Lattner004e2502004-10-11 05:54:41 +0000590 GEP->replaceAllUsesWith(NewPtr);
591
592 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000593 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000594 else
595 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000596 }
597
Chris Lattner73ad73e2004-10-08 20:25:55 +0000598 // Delete the old global, now that it is dead.
599 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000600 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000601
602 // Loop over the new globals array deleting any globals that are obviously
603 // dead. This can arise due to scalarization of a structure or an array that
604 // has elements that are dead.
605 unsigned FirstGlobal = 0;
606 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
607 if (NewGlobals[i]->use_empty()) {
608 Globals.erase(NewGlobals[i]);
609 if (FirstGlobal == i) ++FirstGlobal;
610 }
611
Craig Topperf40110f2014-04-25 05:29:35 +0000612 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
Chris Lattnerabab0712004-10-08 17:32:09 +0000613}
614
James Molloyea31ad32015-11-13 11:05:07 +0000615/// Return true if all users of the specified value will trap if the value is
616/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
617/// reprocessing them.
Gabor Greif67972872010-04-06 19:24:18 +0000618static bool AllUsesOfValueWillTrapIfNull(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +0000619 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000620 for (const User *U : V->users())
Gabor Greif08355d62010-04-06 19:14:05 +0000621 if (isa<LoadInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000622 // Will trap.
Gabor Greif67972872010-04-06 19:24:18 +0000623 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000624 if (SI->getOperand(0) == V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000625 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000626 return false; // Storing the value.
627 }
Gabor Greif67972872010-04-06 19:24:18 +0000628 } else if (const CallInst *CI = dyn_cast<CallInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000629 if (CI->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000630 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000631 return false; // Not calling the ptr
632 }
Gabor Greif67972872010-04-06 19:24:18 +0000633 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000634 if (II->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000635 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000636 return false; // Not calling the ptr
637 }
Gabor Greif67972872010-04-06 19:24:18 +0000638 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000639 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000640 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000641 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000642 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000643 // If we've already seen this phi node, ignore it, it has already been
644 // checked.
David Blaikie70573dc2014-11-19 07:49:26 +0000645 if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
Jakob Stoklund Olesene27dc722010-01-29 23:54:14 +0000646 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000647 } else if (isa<ICmpInst>(U) &&
Chandler Carruthcdf47882014-03-09 03:16:01 +0000648 isa<ConstantPointerNull>(U->getOperand(1))) {
Nick Lewycky614fb942010-02-25 06:39:10 +0000649 // Ignore icmp X, null
Chris Lattner09a52722004-10-09 21:48:45 +0000650 } else {
Gabor Greif08355d62010-04-06 19:14:05 +0000651 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000652 return false;
653 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000654
Chris Lattner09a52722004-10-09 21:48:45 +0000655 return true;
656}
657
James Molloyea31ad32015-11-13 11:05:07 +0000658/// Return true if all uses of any loads from GV will trap if the loaded value
659/// is null. Note that this also permits comparisons of the loaded value
660/// against null, as a special case.
Gabor Greif67972872010-04-06 19:24:18 +0000661static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000662 for (const User *U : GV->users())
Gabor Greif67972872010-04-06 19:24:18 +0000663 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
664 SmallPtrSet<const PHINode*, 8> PHIs;
Chris Lattner2d2892e2007-09-13 16:30:19 +0000665 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner09a52722004-10-09 21:48:45 +0000666 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000667 } else if (isa<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000668 // Ignore stores to the global.
669 } else {
670 // We don't know or understand this user, bail out.
Gabor Greif08355d62010-04-06 19:14:05 +0000671 //cerr << "UNKNOWN USER OF GLOBAL!: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000672 return false;
673 }
Chris Lattner09a52722004-10-09 21:48:45 +0000674 return true;
675}
676
Chris Lattner46b5c642009-11-06 04:27:31 +0000677static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000678 bool Changed = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000679 for (auto UI = V->user_begin(), E = V->user_end(); UI != E; ) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000680 Instruction *I = cast<Instruction>(*UI++);
681 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
682 LI->setOperand(0, NewV);
683 Changed = true;
684 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
685 if (SI->getOperand(1) == V) {
686 SI->setOperand(1, NewV);
687 Changed = true;
688 }
689 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
Gabor Greif04397892010-04-06 18:45:08 +0000690 CallSite CS(I);
691 if (CS.getCalledValue() == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000692 // Calling through the pointer! Turn into a direct call, but be careful
693 // that the pointer is not also being passed as an argument.
Gabor Greif04397892010-04-06 18:45:08 +0000694 CS.setCalledFunction(NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000695 Changed = true;
696 bool PassedAsArg = false;
Gabor Greif04397892010-04-06 18:45:08 +0000697 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
698 if (CS.getArgument(i) == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000699 PassedAsArg = true;
Gabor Greif04397892010-04-06 18:45:08 +0000700 CS.setArgument(i, NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000701 }
702
703 if (PassedAsArg) {
704 // Being passed as an argument also. Be careful to not invalidate UI!
Chandler Carruthcdf47882014-03-09 03:16:01 +0000705 UI = V->user_begin();
Chris Lattnere42eb312004-10-10 23:14:11 +0000706 }
707 }
708 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
709 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Anderson487375e2009-07-29 18:55:55 +0000710 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner46b5c642009-11-06 04:27:31 +0000711 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000712 if (CI->use_empty()) {
713 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000714 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000715 }
716 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
717 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000718 SmallVector<Constant*, 8> Idxs;
719 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif3a9fba52008-05-29 01:59:18 +0000720 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
721 i != e; ++i)
722 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000723 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000724 else
725 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000726 if (Idxs.size() == GEPI->getNumOperands()-1)
David Blaikie4a2e73b2015-04-02 18:55:32 +0000727 Changed |= OptimizeAwayTrappingUsesOfValue(
728 GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs));
Chris Lattnere42eb312004-10-10 23:14:11 +0000729 if (GEPI->use_empty()) {
730 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000731 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000732 }
733 }
734 }
735
736 return Changed;
737}
738
James Molloyea31ad32015-11-13 11:05:07 +0000739/// The specified global has only one non-null value stored into it. If there
740/// are uses of the loaded value that would trap if the loaded value is
741/// dynamically null, then we know that they cannot be reachable with a null
742/// optimize away the load.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000743static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
Mehdi Amini46a43552015-03-04 18:43:29 +0000744 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000745 TargetLibraryInfo *TLI) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000746 bool Changed = false;
747
Chris Lattner2538eb62009-01-14 00:12:58 +0000748 // Keep track of whether we are able to remove all the uses of the global
749 // other than the store that defines it.
750 bool AllNonStoreUsesGone = true;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000751
Chris Lattnere42eb312004-10-10 23:14:11 +0000752 // Replace all uses of loads with uses of uses of the stored value.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000753 for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){
Chris Lattner2538eb62009-01-14 00:12:58 +0000754 User *GlobalUser = *GUI++;
755 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner46b5c642009-11-06 04:27:31 +0000756 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner2538eb62009-01-14 00:12:58 +0000757 // If we were able to delete all uses of the loads
758 if (LI->use_empty()) {
759 LI->eraseFromParent();
760 Changed = true;
761 } else {
762 AllNonStoreUsesGone = false;
763 }
764 } else if (isa<StoreInst>(GlobalUser)) {
765 // Ignore the store that stores "LV" to the global.
766 assert(GlobalUser->getOperand(1) == GV &&
767 "Must be storing *to* the global");
Chris Lattnere42eb312004-10-10 23:14:11 +0000768 } else {
Chris Lattner2538eb62009-01-14 00:12:58 +0000769 AllNonStoreUsesGone = false;
770
771 // If we get here we could have other crazy uses that are transitively
772 // loaded.
773 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
Benjamin Kramered843602012-09-28 10:01:27 +0000774 isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
775 isa<BitCastInst>(GlobalUser) ||
776 isa<GetElementPtrInst>(GlobalUser)) &&
Chris Lattner1a1acc22011-05-22 07:15:13 +0000777 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000778 }
Chris Lattner2538eb62009-01-14 00:12:58 +0000779 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000780
781 if (Changed) {
James Molloyef607a22015-10-28 14:30:53 +0000782 DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV << "\n");
Chris Lattnere42eb312004-10-10 23:14:11 +0000783 ++NumGlobUses;
784 }
785
Chris Lattnere42eb312004-10-10 23:14:11 +0000786 // If we nuked all of the loads, then none of the stores are needed either,
787 // nor is the global.
Chris Lattner2538eb62009-01-14 00:12:58 +0000788 if (AllNonStoreUsesGone) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000789 if (isLeakCheckerRoot(GV)) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000790 Changed |= CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000791 } else {
792 Changed = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000793 CleanupConstantGlobalUsers(GV, nullptr, DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000794 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000795 if (GV->use_empty()) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000796 DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
797 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000798 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000799 ++NumDeleted;
800 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000801 }
802 return Changed;
803}
804
James Molloyea31ad32015-11-13 11:05:07 +0000805/// Walk the use list of V, constant folding all of the instructions that are
806/// foldable.
Mehdi Amini46a43552015-03-04 18:43:29 +0000807static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000808 TargetLibraryInfo *TLI) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000809 for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
Chris Lattner004e2502004-10-11 05:54:41 +0000810 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000811 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
Chris Lattner004e2502004-10-11 05:54:41 +0000812 I->replaceAllUsesWith(NewC);
813
Chris Lattnerd6a44922005-02-01 01:23:31 +0000814 // Advance UI to the next non-I use to avoid invalidating it!
815 // Instructions could multiply use V.
816 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000817 ++UI;
David Majnemer522a9112016-07-22 04:54:44 +0000818 if (isInstructionTriviallyDead(I, TLI))
819 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000820 }
821}
822
James Molloyea31ad32015-11-13 11:05:07 +0000823/// This function takes the specified global variable, and transforms the
824/// program as if it always contained the result of the specified malloc.
825/// Because it is always the result of the specified malloc, there is no reason
826/// to actually DO the malloc. Instead, turn the malloc into a global, and any
827/// loads of GV as uses of the new global.
Mehdi Amini46a43552015-03-04 18:43:29 +0000828static GlobalVariable *
829OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
830 ConstantInt *NElements, const DataLayout &DL,
831 TargetLibraryInfo *TLI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000832 DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI << '\n');
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000833
Chris Lattner229907c2011-07-18 04:54:35 +0000834 Type *GlobalType;
Chris Lattner7939f792010-02-25 22:33:52 +0000835 if (NElements->getZExtValue() == 1)
836 GlobalType = AllocTy;
837 else
838 // If we have an array allocation, the global variable is of an array.
839 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez5d034492009-09-18 22:35:49 +0000840
841 // Create the new global variable. The contents of the malloc'd memory is
842 // undefined, so initialize with an undef value.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000843 GlobalVariable *NewGV = new GlobalVariable(
844 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage,
845 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr,
846 GV->getThreadLocalMode());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000847
Chris Lattner7939f792010-02-25 22:33:52 +0000848 // If there are bitcast users of the malloc (which is typical, usually we have
849 // a malloc + bitcast) then replace them with uses of the new global. Update
850 // other users to use the global as well.
Craig Topperf40110f2014-04-25 05:29:35 +0000851 BitCastInst *TheBC = nullptr;
Chris Lattner7939f792010-02-25 22:33:52 +0000852 while (!CI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000853 Instruction *User = cast<Instruction>(CI->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000854 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
855 if (BCI->getType() == NewGV->getType()) {
856 BCI->replaceAllUsesWith(NewGV);
857 BCI->eraseFromParent();
858 } else {
859 BCI->setOperand(0, NewGV);
860 }
861 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000862 if (!TheBC)
Chris Lattner7939f792010-02-25 22:33:52 +0000863 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
864 User->replaceUsesOfWith(CI, TheBC);
865 }
866 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000867
Victor Hernandez5d034492009-09-18 22:35:49 +0000868 Constant *RepValue = NewGV;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000869 if (NewGV->getType() != GV->getValueType())
870 RepValue = ConstantExpr::getBitCast(RepValue, GV->getValueType());
Victor Hernandez5d034492009-09-18 22:35:49 +0000871
872 // If there is a comparison against null, we will insert a global bool to
873 // keep track of whether the global was initialized yet or not.
874 GlobalVariable *InitBool =
Chris Lattner46b5c642009-11-06 04:27:31 +0000875 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez5d034492009-09-18 22:35:49 +0000876 GlobalValue::InternalLinkage,
Chris Lattner46b5c642009-11-06 04:27:31 +0000877 ConstantInt::getFalse(GV->getContext()),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000878 GV->getName()+".init", GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +0000879 bool InitBoolUsed = false;
880
881 // Loop over all uses of GV, processing them in turn.
Chris Lattner7939f792010-02-25 22:33:52 +0000882 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000883 if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) {
Victor Hernandez5d034492009-09-18 22:35:49 +0000884 // The global is initialized when the store to it occurs.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000885 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000886 SI->getOrdering(), SI->getSyncScopeID(), SI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000887 SI->eraseFromParent();
Chris Lattner7939f792010-02-25 22:33:52 +0000888 continue;
Victor Hernandez5d034492009-09-18 22:35:49 +0000889 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000890
Chandler Carruthcdf47882014-03-09 03:16:01 +0000891 LoadInst *LI = cast<LoadInst>(GV->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000892 while (!LI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000893 Use &LoadUse = *LI->use_begin();
894 ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser());
895 if (!ICI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000896 LoadUse = RepValue;
897 continue;
898 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000899
Chris Lattner7939f792010-02-25 22:33:52 +0000900 // Replace the cmp X, 0 with a use of the bool value.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000901 // Sink the load to where the compare was, if atomic rules allow us to.
902 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000903 LI->getOrdering(), LI->getSyncScopeID(),
Nick Lewycky52da72b2012-02-05 19:56:38 +0000904 LI->isUnordered() ? (Instruction*)ICI : LI);
Chris Lattner7939f792010-02-25 22:33:52 +0000905 InitBoolUsed = true;
906 switch (ICI->getPredicate()) {
907 default: llvm_unreachable("Unknown ICmp Predicate!");
908 case ICmpInst::ICMP_ULT:
909 case ICmpInst::ICMP_SLT: // X < null -> always false
910 LV = ConstantInt::getFalse(GV->getContext());
911 break;
912 case ICmpInst::ICMP_ULE:
913 case ICmpInst::ICMP_SLE:
914 case ICmpInst::ICMP_EQ:
915 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
916 break;
917 case ICmpInst::ICMP_NE:
918 case ICmpInst::ICMP_UGE:
919 case ICmpInst::ICMP_SGE:
920 case ICmpInst::ICMP_UGT:
921 case ICmpInst::ICMP_SGT:
922 break; // no change.
923 }
924 ICI->replaceAllUsesWith(LV);
925 ICI->eraseFromParent();
926 }
927 LI->eraseFromParent();
928 }
Victor Hernandez5d034492009-09-18 22:35:49 +0000929
930 // If the initialization boolean was used, insert it, otherwise delete it.
931 if (!InitBoolUsed) {
932 while (!InitBool->use_empty()) // Delete initializations
Chandler Carruthcdf47882014-03-09 03:16:01 +0000933 cast<StoreInst>(InitBool->user_back())->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000934 delete InitBool;
935 } else
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000936 GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
Victor Hernandez5d034492009-09-18 22:35:49 +0000937
Chris Lattner7939f792010-02-25 22:33:52 +0000938 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez5d034492009-09-18 22:35:49 +0000939 GV->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000940 CI->eraseFromParent();
941
942 // To further other optimizations, loop over all users of NewGV and try to
943 // constant prop them. This will promote GEP instructions with constant
944 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000945 ConstantPropUsersOf(NewGV, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000946 if (RepValue != NewGV)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000947 ConstantPropUsersOf(RepValue, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000948
949 return NewGV;
950}
951
James Molloyea31ad32015-11-13 11:05:07 +0000952/// Scan the use-list of V checking to make sure that there are no complex uses
953/// of V. We permit simple things like dereferencing the pointer, but not
954/// storing through the address, unless it is to the specified global.
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000955static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
956 const GlobalVariable *GV,
Craig Topper71b7b682014-08-21 05:55:13 +0000957 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000958 for (const User *U : V->users()) {
959 const Instruction *Inst = cast<Instruction>(U);
Gabor Greif08355d62010-04-06 19:14:05 +0000960
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000961 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
962 continue; // Fine, ignore.
963 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000964
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000965 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000966 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
967 return false; // Storing the pointer itself... bad.
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000968 continue; // Otherwise, storing through it, or storing into GV... fine.
969 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000970
Chris Lattnerb9801ff2010-04-10 18:19:22 +0000971 // Must index into the array and into the struct.
972 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000973 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000974 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000975 continue;
976 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000977
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000978 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattner6eed0e72007-09-13 16:37:20 +0000979 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
980 // cycles.
David Blaikie70573dc2014-11-19 07:49:26 +0000981 if (PHIs.insert(PN).second)
Chris Lattner5d13fb532007-09-14 03:41:21 +0000982 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
983 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000984 continue;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000985 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000986
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000987 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000988 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
989 return false;
990 continue;
991 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000992
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000993 return false;
994 }
Chris Lattnerc0677c02004-12-02 07:11:07 +0000995 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000996}
997
James Molloyea31ad32015-11-13 11:05:07 +0000998/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
999/// allocation into loads from the global and uses of the resultant pointer.
1000/// Further, delete the store into GV. This assumes that these value pass the
Chris Lattner24d3d422006-09-30 23:32:09 +00001001/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001002static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
Chris Lattner24d3d422006-09-30 23:32:09 +00001003 GlobalVariable *GV) {
1004 while (!Alloc->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001005 Instruction *U = cast<Instruction>(*Alloc->user_begin());
Chris Lattnerba98f892007-09-13 18:00:31 +00001006 Instruction *InsertPt = U;
Chris Lattner24d3d422006-09-30 23:32:09 +00001007 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
1008 // If this is the store of the allocation into the global, remove it.
1009 if (SI->getOperand(1) == GV) {
1010 SI->eraseFromParent();
1011 continue;
1012 }
Chris Lattnerba98f892007-09-13 18:00:31 +00001013 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
1014 // Insert the load in the corresponding predecessor, not right before the
1015 // PHI.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001016 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001017 } else if (isa<BitCastInst>(U)) {
1018 // Must be bitcast between the malloc and store to initialize the global.
1019 ReplaceUsesOfMallocWithGlobal(U, GV);
1020 U->eraseFromParent();
1021 continue;
1022 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
1023 // If this is a "GEP bitcast" and the user is a store to the global, then
1024 // just process it as a bitcast.
1025 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +00001026 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back()))
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001027 if (SI->getOperand(1) == GV) {
1028 // Must be bitcast GEP between the malloc and store to initialize
1029 // the global.
1030 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1031 GEPI->eraseFromParent();
1032 continue;
1033 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001034 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001035
Chris Lattner24d3d422006-09-30 23:32:09 +00001036 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnerba98f892007-09-13 18:00:31 +00001037 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner24d3d422006-09-30 23:32:09 +00001038 U->replaceUsesOfWith(Alloc, NL);
1039 }
1040}
1041
James Molloyea31ad32015-11-13 11:05:07 +00001042/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
1043/// perform heap SRA on. This permits GEP's that index through the array and
1044/// struct field, icmps of null, and PHIs.
Gabor Greif5d5db532010-04-01 08:21:08 +00001045static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +00001046 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1047 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
Chris Lattner56b55382008-12-16 21:24:51 +00001048 // We permit two users of the load: setcc comparing against the null
1049 // pointer, and a getelementptr of a specific form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001050 for (const User *U : V->users()) {
1051 const Instruction *UI = cast<Instruction>(U);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001052
Chris Lattner56b55382008-12-16 21:24:51 +00001053 // Comparison against null is ok.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001054 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001055 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1056 return false;
1057 continue;
1058 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001059
Chris Lattner56b55382008-12-16 21:24:51 +00001060 // getelementptr is also ok, but only a simple form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001061 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001062 // Must index into the array and into the struct.
1063 if (GEPI->getNumOperands() < 3)
1064 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001065
Chris Lattner56b55382008-12-16 21:24:51 +00001066 // Otherwise the GEP is ok.
1067 continue;
1068 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001069
Chandler Carruthcdf47882014-03-09 03:16:01 +00001070 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001071 if (!LoadUsingPHIsPerLoad.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001072 // This means some phi nodes are dependent on each other.
1073 // Avoid infinite looping!
1074 return false;
David Blaikie70573dc2014-11-19 07:49:26 +00001075 if (!LoadUsingPHIs.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001076 // If we have already analyzed this PHI, then it is safe.
Chris Lattner56b55382008-12-16 21:24:51 +00001077 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001078
Chris Lattner222ef4c2008-12-17 05:28:49 +00001079 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng83689442009-06-02 00:56:07 +00001080 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1081 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001082 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001083
Chris Lattner56b55382008-12-16 21:24:51 +00001084 continue;
Chris Lattner24d3d422006-09-30 23:32:09 +00001085 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001086
Chris Lattner56b55382008-12-16 21:24:51 +00001087 // Otherwise we don't know what this is, not ok.
1088 return false;
1089 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001090
Chris Lattner56b55382008-12-16 21:24:51 +00001091 return true;
1092}
1093
James Molloyea31ad32015-11-13 11:05:07 +00001094/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1095/// return true.
Gabor Greif5d5db532010-04-01 08:21:08 +00001096static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez5d034492009-09-18 22:35:49 +00001097 Instruction *StoredVal) {
Gabor Greif5d5db532010-04-01 08:21:08 +00001098 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1099 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001100 for (const User *U : GV->users())
1101 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
Evan Cheng83689442009-06-02 00:56:07 +00001102 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1103 LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001104 return false;
Evan Cheng83689442009-06-02 00:56:07 +00001105 LoadUsingPHIsPerLoad.clear();
1106 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001107
Chris Lattner222ef4c2008-12-17 05:28:49 +00001108 // If we reach here, we know that all uses of the loads and transitive uses
1109 // (through PHI nodes) are simple enough to transform. However, we don't know
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001110 // that all inputs the to the PHI nodes are in the same equivalence sets.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001111 // Check to verify that all operands of the PHIs are either PHIS that can be
1112 // transformed, loads from GV, or MI itself.
Craig Topper46276792014-08-24 23:23:06 +00001113 for (const PHINode *PN : LoadUsingPHIs) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001114 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1115 Value *InVal = PN->getIncomingValue(op);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001116
Chris Lattner222ef4c2008-12-17 05:28:49 +00001117 // PHI of the stored value itself is ok.
Victor Hernandez5d034492009-09-18 22:35:49 +00001118 if (InVal == StoredVal) continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001119
Gabor Greif5d5db532010-04-01 08:21:08 +00001120 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001121 // One of the PHIs in our set is (optimistically) ok.
1122 if (LoadUsingPHIs.count(InPN))
1123 continue;
1124 return false;
1125 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001126
Chris Lattner222ef4c2008-12-17 05:28:49 +00001127 // Load from GV is ok.
Gabor Greif5d5db532010-04-01 08:21:08 +00001128 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattner222ef4c2008-12-17 05:28:49 +00001129 if (LI->getOperand(0) == GV)
1130 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001131
Chris Lattner222ef4c2008-12-17 05:28:49 +00001132 // UNDEF? NULL?
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001133
Chris Lattner222ef4c2008-12-17 05:28:49 +00001134 // Anything else is rejected.
1135 return false;
1136 }
1137 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001138
Chris Lattner24d3d422006-09-30 23:32:09 +00001139 return true;
1140}
1141
Chris Lattner222ef4c2008-12-17 05:28:49 +00001142static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001143 DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues,
1144 std::vector<std::pair<PHINode *, unsigned>> &PHIsToRewrite) {
1145 std::vector<Value *> &FieldVals = InsertedScalarizedValues[V];
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001146
Chris Lattner222ef4c2008-12-17 05:28:49 +00001147 if (FieldNo >= FieldVals.size())
1148 FieldVals.resize(FieldNo+1);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001149
Chris Lattner222ef4c2008-12-17 05:28:49 +00001150 // If we already have this value, just reuse the previously scalarized
1151 // version.
1152 if (Value *FieldVal = FieldVals[FieldNo])
1153 return FieldVal;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001154
Chris Lattner222ef4c2008-12-17 05:28:49 +00001155 // Depending on what instruction this is, we have several cases.
1156 Value *Result;
1157 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1158 // This is a scalarized version of the load from the global. Just create
1159 // a new Load of the scalarized global.
1160 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1161 InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001162 PHIsToRewrite),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001163 LI->getName()+".f"+Twine(FieldNo), LI);
David Blaikie741c8f82015-03-14 01:53:18 +00001164 } else {
1165 PHINode *PN = cast<PHINode>(V);
Chris Lattner222ef4c2008-12-17 05:28:49 +00001166 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1167 // field.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001168
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001169 PointerType *PTy = cast<PointerType>(PN->getType());
1170 StructType *ST = cast<StructType>(PTy->getElementType());
1171
1172 unsigned AS = PTy->getAddressSpace();
Jay Foade0938d82011-03-30 11:19:20 +00001173 PHINode *NewPN =
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001174 PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS),
Jay Foad52131342011-03-30 11:28:46 +00001175 PN->getNumIncomingValues(),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001176 PN->getName()+".f"+Twine(FieldNo), PN);
Jay Foade0938d82011-03-30 11:19:20 +00001177 Result = NewPN;
Chris Lattner222ef4c2008-12-17 05:28:49 +00001178 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
Chris Lattner222ef4c2008-12-17 05:28:49 +00001179 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001180
Chris Lattner222ef4c2008-12-17 05:28:49 +00001181 return FieldVals[FieldNo] = Result;
Chris Lattnerba98f892007-09-13 18:00:31 +00001182}
1183
James Molloyea31ad32015-11-13 11:05:07 +00001184/// Given a load instruction and a value derived from the load, rewrite the
1185/// derived value to use the HeapSRoA'd load.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001186static void RewriteHeapSROALoadUser(Instruction *LoadUser,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001187 DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues,
1188 std::vector<std::pair<PHINode *, unsigned>> &PHIsToRewrite) {
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001189 // If this is a comparison against null, handle it.
1190 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1191 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1192 // If we have a setcc of the loaded pointer, we can use a setcc of any
1193 // field.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001194 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner46b5c642009-11-06 04:27:31 +00001195 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001196
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001197 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001198 Constant::getNullValue(NPtr->getType()),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001199 SCI->getName());
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001200 SCI->replaceAllUsesWith(New);
1201 SCI->eraseFromParent();
1202 return;
1203 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001204
Chris Lattner222ef4c2008-12-17 05:28:49 +00001205 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnerba98f892007-09-13 18:00:31 +00001206 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1207 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1208 && "Unexpected GEPI!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001209
Chris Lattnerba98f892007-09-13 18:00:31 +00001210 // Load the pointer for this field.
1211 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner222ef4c2008-12-17 05:28:49 +00001212 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner46b5c642009-11-06 04:27:31 +00001213 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001214
Chris Lattnerba98f892007-09-13 18:00:31 +00001215 // Create the new GEP idx vector.
1216 SmallVector<Value*, 8> GEPIdx;
1217 GEPIdx.push_back(GEPI->getOperand(1));
1218 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001219
David Blaikie22319eb2015-03-14 19:24:04 +00001220 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx,
Gabor Greife9ecc682008-04-06 20:25:17 +00001221 GEPI->getName(), GEPI);
Chris Lattnerba98f892007-09-13 18:00:31 +00001222 GEPI->replaceAllUsesWith(NGEPI);
1223 GEPI->eraseFromParent();
1224 return;
1225 }
Chris Lattner011f91b2007-09-13 21:31:36 +00001226
Chris Lattner222ef4c2008-12-17 05:28:49 +00001227 // Recursively transform the users of PHI nodes. This will lazily create the
1228 // PHIs that are needed for individual elements. Keep track of what PHIs we
1229 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1230 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1231 // already been seen first by another load, so its uses have already been
1232 // processed.
1233 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner5cf753c2011-07-21 06:21:31 +00001234 if (!InsertedScalarizedValues.insert(std::make_pair(PN,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001235 std::vector<Value *>())).second)
Chris Lattner5cf753c2011-07-21 06:21:31 +00001236 return;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001237
Chris Lattner222ef4c2008-12-17 05:28:49 +00001238 // If this is the first time we've seen this PHI, recursively process all
1239 // users.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001240 for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001241 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001242 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001243 }
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001244}
1245
James Molloyea31ad32015-11-13 11:05:07 +00001246/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1247/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1248/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001249static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001250 DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues,
1251 std::vector<std::pair<PHINode *, unsigned> > &PHIsToRewrite) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001252 for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001253 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001254 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001255 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001256
Chris Lattner222ef4c2008-12-17 05:28:49 +00001257 if (Load->use_empty()) {
1258 Load->eraseFromParent();
1259 InsertedScalarizedValues.erase(Load);
1260 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001261}
1262
James Molloyea31ad32015-11-13 11:05:07 +00001263/// CI is an allocation of an array of structures. Break it up into multiple
1264/// allocations of arrays of the fields.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001265static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
Mehdi Amini46a43552015-03-04 18:43:29 +00001266 Value *NElems, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001267 const TargetLibraryInfo *TLI) {
David Greene44cb8ad2010-01-05 01:28:05 +00001268 DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI << '\n');
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001269 Type *MAT = getMallocAllocatedType(CI, TLI);
Chris Lattner229907c2011-07-18 04:54:35 +00001270 StructType *STy = cast<StructType>(MAT);
Victor Hernandez5d034492009-09-18 22:35:49 +00001271
1272 // There is guaranteed to be at least one use of the malloc (storing
1273 // it into GV). If there are other uses, change them to be uses of
1274 // the global to simplify later code. This also deletes the store
1275 // into GV.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001276 ReplaceUsesOfMallocWithGlobal(CI, GV);
1277
Victor Hernandez5d034492009-09-18 22:35:49 +00001278 // Okay, at this point, there are no users of the malloc. Insert N
1279 // new mallocs at the same place as CI, and N globals.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001280 std::vector<Value *> FieldGlobals;
1281 std::vector<Value *> FieldMallocs;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001282
David Majnemerfadc6db2016-04-29 08:07:22 +00001283 SmallVector<OperandBundleDef, 1> OpBundles;
1284 CI->getOperandBundlesAsDefs(OpBundles);
1285
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001286 unsigned AS = GV->getType()->getPointerAddressSpace();
Victor Hernandez5d034492009-09-18 22:35:49 +00001287 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
Chris Lattner229907c2011-07-18 04:54:35 +00001288 Type *FieldTy = STy->getElementType(FieldNo);
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001289 PointerType *PFieldTy = PointerType::get(FieldTy, AS);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001290
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001291 GlobalVariable *NGV = new GlobalVariable(
1292 *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage,
1293 Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo),
1294 nullptr, GV->getThreadLocalMode());
Sergei Larin94be2de2016-01-22 21:18:20 +00001295 NGV->copyAttributesFrom(GV);
Victor Hernandez5d034492009-09-18 22:35:49 +00001296 FieldGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001297
Mehdi Amini46a43552015-03-04 18:43:29 +00001298 unsigned TypeSize = DL.getTypeAllocSize(FieldTy);
Chris Lattner229907c2011-07-18 04:54:35 +00001299 if (StructType *ST = dyn_cast<StructType>(FieldTy))
Mehdi Amini46a43552015-03-04 18:43:29 +00001300 TypeSize = DL.getStructLayout(ST)->getSizeInBytes();
1301 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
Victor Hernandezf3db9152009-11-07 00:16:28 +00001302 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1303 ConstantInt::get(IntPtrTy, TypeSize),
David Majnemerfadc6db2016-04-29 08:07:22 +00001304 NElems, OpBundles, nullptr,
Victor Hernandezf3db9152009-11-07 00:16:28 +00001305 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner0521c092010-02-26 18:23:13 +00001306 FieldMallocs.push_back(NMI);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001307 new StoreInst(NMI, NGV, CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001308 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001309
Victor Hernandez5d034492009-09-18 22:35:49 +00001310 // The tricky aspect of this transformation is handling the case when malloc
1311 // fails. In the original code, malloc failing would set the result pointer
1312 // of malloc to null. In this case, some mallocs could succeed and others
1313 // could fail. As such, we emit code that looks like this:
1314 // F0 = malloc(field0)
1315 // F1 = malloc(field1)
1316 // F2 = malloc(field2)
1317 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1318 // if (F0) { free(F0); F0 = 0; }
1319 // if (F1) { free(F1); F1 = 0; }
1320 // if (F2) { free(F2); F2 = 0; }
1321 // }
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001322 // The malloc can also fail if its argument is too large.
Gabor Greif218f5542010-06-24 14:42:01 +00001323 Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1324 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001325 ConstantZero, "isneg");
Victor Hernandez5d034492009-09-18 22:35:49 +00001326 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandezf3db9152009-11-07 00:16:28 +00001327 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1328 Constant::getNullValue(FieldMallocs[i]->getType()),
1329 "isnull");
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001330 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001331 }
1332
1333 // Split the basic block at the old malloc.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001334 BasicBlock *OrigBB = CI->getParent();
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001335 BasicBlock *ContBB =
1336 OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001337
Victor Hernandez5d034492009-09-18 22:35:49 +00001338 // Create the block to check the first condition. Put all these blocks at the
1339 // end of the function as they are unlikely to be executed.
Chris Lattner46b5c642009-11-06 04:27:31 +00001340 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1341 "malloc_ret_null",
Victor Hernandez5d034492009-09-18 22:35:49 +00001342 OrigBB->getParent());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001343
Victor Hernandez5d034492009-09-18 22:35:49 +00001344 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1345 // branch on RunningOr.
1346 OrigBB->getTerminator()->eraseFromParent();
1347 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001348
Victor Hernandez5d034492009-09-18 22:35:49 +00001349 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1350 // pointer, because some may be null while others are not.
1351 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1352 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001353 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001354 Constant::getNullValue(GVVal->getType()));
Chris Lattner46b5c642009-11-06 04:27:31 +00001355 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez5d034492009-09-18 22:35:49 +00001356 OrigBB->getParent());
Chris Lattner46b5c642009-11-06 04:27:31 +00001357 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez5d034492009-09-18 22:35:49 +00001358 OrigBB->getParent());
Victor Hernandeze2971492009-10-24 04:23:03 +00001359 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1360 Cmp, NullPtrBlock);
Victor Hernandez5d034492009-09-18 22:35:49 +00001361
1362 // Fill in FreeBlock.
David Majnemerfadc6db2016-04-29 08:07:22 +00001363 CallInst::CreateFree(GVVal, OpBundles, BI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001364 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1365 FreeBlock);
1366 BranchInst::Create(NextBlock, FreeBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001367
Victor Hernandez5d034492009-09-18 22:35:49 +00001368 NullPtrBlock = NextBlock;
1369 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001370
Victor Hernandez5d034492009-09-18 22:35:49 +00001371 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001372
1373 // CI is no longer needed, remove it.
Victor Hernandez5d034492009-09-18 22:35:49 +00001374 CI->eraseFromParent();
1375
James Molloyea31ad32015-11-13 11:05:07 +00001376 /// As we process loads, if we can't immediately update all uses of the load,
1377 /// keep track of what scalarized loads are inserted for a given load.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001378 DenseMap<Value *, std::vector<Value *>> InsertedScalarizedValues;
Victor Hernandez5d034492009-09-18 22:35:49 +00001379 InsertedScalarizedValues[GV] = FieldGlobals;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001380
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001381 std::vector<std::pair<PHINode *, unsigned>> PHIsToRewrite;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001382
Victor Hernandez5d034492009-09-18 22:35:49 +00001383 // Okay, the malloc site is completely handled. All of the uses of GV are now
1384 // loads, and all uses of those loads are simple. Rewrite them to use loads
1385 // of the per-field globals instead.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001386 for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001387 Instruction *User = cast<Instruction>(*UI++);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001388
Victor Hernandez5d034492009-09-18 22:35:49 +00001389 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner46b5c642009-11-06 04:27:31 +00001390 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001391 continue;
1392 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001393
Victor Hernandez5d034492009-09-18 22:35:49 +00001394 // Must be a store of null.
1395 StoreInst *SI = cast<StoreInst>(User);
1396 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1397 "Unexpected heap-sra user!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001398
Victor Hernandez5d034492009-09-18 22:35:49 +00001399 // Insert a store of null into each global.
1400 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001401 Type *ValTy = cast<GlobalValue>(FieldGlobals[i])->getValueType();
1402 Constant *Null = Constant::getNullValue(ValTy);
Victor Hernandez5d034492009-09-18 22:35:49 +00001403 new StoreInst(Null, FieldGlobals[i], SI);
1404 }
1405 // Erase the original store.
1406 SI->eraseFromParent();
1407 }
1408
1409 // While we have PHIs that are interesting to rewrite, do it.
1410 while (!PHIsToRewrite.empty()) {
1411 PHINode *PN = PHIsToRewrite.back().first;
1412 unsigned FieldNo = PHIsToRewrite.back().second;
1413 PHIsToRewrite.pop_back();
1414 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1415 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1416
1417 // Add all the incoming values. This can materialize more phis.
1418 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1419 Value *InVal = PN->getIncomingValue(i);
1420 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001421 PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001422 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1423 }
1424 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001425
Victor Hernandez5d034492009-09-18 22:35:49 +00001426 // Drop all inter-phi links and any loads that made it this far.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001427 for (DenseMap<Value *, std::vector<Value *>>::iterator
Victor Hernandez5d034492009-09-18 22:35:49 +00001428 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1429 I != E; ++I) {
1430 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1431 PN->dropAllReferences();
1432 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1433 LI->dropAllReferences();
1434 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001435
Victor Hernandez5d034492009-09-18 22:35:49 +00001436 // Delete all the phis and loads now that inter-references are dead.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001437 for (DenseMap<Value *, std::vector<Value *>>::iterator
Victor Hernandez5d034492009-09-18 22:35:49 +00001438 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1439 I != E; ++I) {
1440 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1441 PN->eraseFromParent();
1442 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1443 LI->eraseFromParent();
1444 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001445
Victor Hernandez5d034492009-09-18 22:35:49 +00001446 // The old global is now dead, remove it.
1447 GV->eraseFromParent();
1448
1449 ++NumHeapSRA;
1450 return cast<GlobalVariable>(FieldGlobals[0]);
1451}
1452
James Molloyea31ad32015-11-13 11:05:07 +00001453/// This function is called when we see a pointer global variable with a single
1454/// value stored it that is a malloc or cast of malloc.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001455static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
Chris Lattner229907c2011-07-18 04:54:35 +00001456 Type *AllocTy,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001457 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001458 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +00001459 TargetLibraryInfo *TLI) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001460 // If this is a malloc of an abstract type, don't touch it.
1461 if (!AllocTy->isSized())
1462 return false;
1463
1464 // We can't optimize this global unless all uses of it are *known* to be
1465 // of the malloc value, not of the null initializer value (consider a use
1466 // that compares the global's value against zero to see if the malloc has
1467 // been reached). To do this, we check to see if all uses of the global
1468 // would trap if the global were null: this proves that they must all
1469 // happen after the malloc.
1470 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1471 return false;
1472
1473 // We can't optimize this if the malloc itself is used in a complex way,
1474 // for example, being stored into multiple globals. This allows the
Nick Lewyckybbd11562012-02-05 19:48:37 +00001475 // malloc to be stored into the specified global, loaded icmp'd, and
Victor Hernandez5d034492009-09-18 22:35:49 +00001476 // GEP'd. These are all things we could transform to using the global
1477 // for.
Evan Cheng21b588b2010-04-14 20:52:55 +00001478 SmallPtrSet<const PHINode*, 8> PHIs;
1479 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1480 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001481
1482 // If we have a global that is only initialized with a fixed size malloc,
1483 // transform the program to use global memory instead of malloc'd memory.
1484 // This eliminates dynamic allocation, avoids an indirection accessing the
1485 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez264da322009-10-16 23:12:25 +00001486 // We cannot optimize the malloc if we cannot determine malloc array size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001487 Value *NElems = getMallocArraySize(CI, DL, TLI, true);
Evan Cheng21b588b2010-04-14 20:52:55 +00001488 if (!NElems)
1489 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001490
Evan Cheng21b588b2010-04-14 20:52:55 +00001491 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1492 // Restrict this transformation to only working on small allocations
1493 // (2048 bytes currently), as we don't want to introduce a 16M global or
1494 // something.
Mehdi Amini46a43552015-03-04 18:43:29 +00001495 if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) {
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001496 OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001497 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001498 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001499
Evan Cheng21b588b2010-04-14 20:52:55 +00001500 // If the allocation is an array of structures, consider transforming this
1501 // into multiple malloc'd arrays, one for each field. This is basically
1502 // SRoA for malloc'd memory.
1503
JF Bastien800f87a2016-04-06 21:19:33 +00001504 if (Ordering != AtomicOrdering::NotAtomic)
Nick Lewycky52da72b2012-02-05 19:56:38 +00001505 return false;
1506
Evan Cheng21b588b2010-04-14 20:52:55 +00001507 // If this is an allocation of a fixed size array of structs, analyze as a
1508 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Gabor Greif218f5542010-06-24 14:42:01 +00001509 if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
Chris Lattner229907c2011-07-18 04:54:35 +00001510 if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
Evan Cheng21b588b2010-04-14 20:52:55 +00001511 AllocTy = AT->getElementType();
Gabor Greif218f5542010-06-24 14:42:01 +00001512
Chris Lattner229907c2011-07-18 04:54:35 +00001513 StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
Evan Cheng21b588b2010-04-14 20:52:55 +00001514 if (!AllocSTy)
1515 return false;
1516
1517 // This the structure has an unreasonable number of fields, leave it
1518 // alone.
1519 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1520 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1521
1522 // If this is a fixed size array, transform the Malloc to be an alloc of
1523 // structs. malloc [100 x struct],1 -> malloc struct, 100
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001524 if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001525 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
1526 unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes();
Evan Cheng21b588b2010-04-14 20:52:55 +00001527 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1528 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
David Majnemerfadc6db2016-04-29 08:07:22 +00001529 SmallVector<OperandBundleDef, 1> OpBundles;
1530 CI->getOperandBundlesAsDefs(OpBundles);
1531 Instruction *Malloc =
1532 CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, AllocSize, NumElements,
1533 OpBundles, nullptr, CI->getName());
Evan Cheng21b588b2010-04-14 20:52:55 +00001534 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1535 CI->replaceAllUsesWith(Cast);
1536 CI->eraseFromParent();
Nuno Lopes9792d682012-06-22 00:25:01 +00001537 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1538 CI = cast<CallInst>(BCI->getOperand(0));
1539 else
Nuno Lopes0b60ebb2012-06-22 00:29:58 +00001540 CI = cast<CallInst>(Malloc);
Evan Cheng21b588b2010-04-14 20:52:55 +00001541 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001542
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001543 PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL,
1544 TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001545 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001546 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001547
Victor Hernandez5d034492009-09-18 22:35:49 +00001548 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001549}
Victor Hernandez5d034492009-09-18 22:35:49 +00001550
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001551// Try to optimize globals based on the knowledge that only one value (besides
1552// its initializer) is ever stored to the global.
1553static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001554 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001555 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +00001556 TargetLibraryInfo *TLI) {
Chris Lattner1c731fa2008-12-15 21:20:32 +00001557 // Ignore no-op GEPs and bitcasts.
1558 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner09a52722004-10-09 21:48:45 +00001559
Chris Lattnere42eb312004-10-10 23:14:11 +00001560 // If we are dealing with a pointer global that is initialized to null and
1561 // only has one (non-null) value stored into it, then we can optimize any
1562 // users of the loaded value (often calls and loads) that would trap if the
1563 // value was null.
Duncan Sands19d0b472010-02-16 11:11:14 +00001564 if (GV->getInitializer()->getType()->isPointerTy() &&
Chris Lattner09a52722004-10-09 21:48:45 +00001565 GV->getInitializer()->isNullValue()) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001566 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1567 if (GV->getInitializer()->getType() != SOVC->getType())
Chris Lattner1a1acc22011-05-22 07:15:13 +00001568 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001569
Chris Lattnere42eb312004-10-10 23:14:11 +00001570 // Optimize away any trapping uses of the loaded value.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001571 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001572 return true;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001573 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1574 Type *MallocType = getMallocAllocatedType(CI, TLI);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001575 if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1576 Ordering, DL, TLI))
Victor Hernandezf3db9152009-11-07 00:16:28 +00001577 return true;
Chris Lattnere42eb312004-10-10 23:14:11 +00001578 }
Chris Lattner09a52722004-10-09 21:48:45 +00001579 }
Chris Lattner004e2502004-10-11 05:54:41 +00001580
Chris Lattner09a52722004-10-09 21:48:45 +00001581 return false;
1582}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001583
James Molloyea31ad32015-11-13 11:05:07 +00001584/// At this point, we have learned that the only two values ever stored into GV
1585/// are its initializer and OtherVal. See if we can shrink the global into a
1586/// boolean and select between the two values whenever it is used. This exposes
1587/// the values to other scalar optimizations.
Lang Hames459b5dc2014-03-23 04:22:31 +00001588static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001589 Type *GVElType = GV->getValueType();
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001590
Lang Hames459b5dc2014-03-23 04:22:31 +00001591 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1592 // an FP value, pointer or vector, don't do this optimization because a select
1593 // between them is very expensive and unlikely to lead to later
1594 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1595 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner46b5c642009-11-06 04:27:31 +00001596 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001597 GVElType->isFloatingPointTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001598 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner20bbac32008-01-14 01:17:44 +00001599 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001600
Chris Lattner20bbac32008-01-14 01:17:44 +00001601 // Walk the use list of the global seeing if all the uses are load or store.
1602 // If there is anything else, bail out.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001603 for (User *U : GV->users())
Gabor Greifa75ed762010-07-12 14:13:15 +00001604 if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
Chris Lattner20bbac32008-01-14 01:17:44 +00001605 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001606
James Molloyef607a22015-10-28 14:30:53 +00001607 DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n");
Lang Hames459b5dc2014-03-23 04:22:31 +00001608
1609 // Create the new global, initializing it to false.
1610 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1611 false,
1612 GlobalValue::InternalLinkage,
1613 ConstantInt::getFalse(GV->getContext()),
1614 GV->getName()+".b",
1615 GV->getThreadLocalMode(),
1616 GV->getType()->getAddressSpace());
Sergei Larin94be2de2016-01-22 21:18:20 +00001617 NewGV->copyAttributesFrom(GV);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001618 GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
Lang Hames459b5dc2014-03-23 04:22:31 +00001619
Chris Lattner40e4cec2004-12-12 05:53:50 +00001620 Constant *InitVal = GV->getInitializer();
Chris Lattner46b5c642009-11-06 04:27:31 +00001621 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Lang Hames459b5dc2014-03-23 04:22:31 +00001622 "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001623
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001624 SmallVector<DIGlobalVariableExpression *, 1> GVs;
1625 GV->getDebugInfo(GVs);
1626
Lang Hames459b5dc2014-03-23 04:22:31 +00001627 // If initialized to zero and storing one into the global, we can use a cast
1628 // instead of a select to synthesize the desired value.
1629 bool IsOneZero = false;
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001630 bool EmitOneOrZero = true;
1631 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)){
Lang Hames459b5dc2014-03-23 04:22:31 +00001632 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001633
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001634 if (ConstantInt *CIInit = dyn_cast<ConstantInt>(GV->getInitializer())){
1635 uint64_t ValInit = CIInit->getZExtValue();
1636 uint64_t ValOther = CI->getZExtValue();
1637 uint64_t ValMinus = ValOther - ValInit;
1638
1639 for(auto *GVe : GVs){
1640 DIGlobalVariable *DGV = GVe->getVariable();
1641 DIExpression *E = GVe->getExpression();
1642
1643 // It is expected that the address of global optimized variable is on
1644 // top of the stack. After optimization, value of that variable will
1645 // be ether 0 for initial value or 1 for other value. The following
1646 // expression should return constant integer value depending on the
1647 // value at global object address:
1648 // val * (ValOther - ValInit) + ValInit:
1649 // DW_OP_deref DW_OP_constu <ValMinus>
1650 // DW_OP_mul DW_OP_constu <ValInit> DW_OP_plus DW_OP_stack_value
1651 E = DIExpression::get(NewGV->getContext(),
1652 {dwarf::DW_OP_deref,
1653 dwarf::DW_OP_constu,
1654 ValMinus,
1655 dwarf::DW_OP_mul,
1656 dwarf::DW_OP_constu,
1657 ValInit,
1658 dwarf::DW_OP_plus,
1659 dwarf::DW_OP_stack_value});
1660 DIGlobalVariableExpression *DGVE =
1661 DIGlobalVariableExpression::get(NewGV->getContext(), DGV, E);
1662 NewGV->addDebugInfo(DGVE);
1663 }
1664 EmitOneOrZero = false;
1665 }
1666 }
1667
1668 if (EmitOneOrZero) {
1669 // FIXME: This will only emit address for debugger on which will
1670 // be written only 0 or 1.
1671 for(auto *GV : GVs)
1672 NewGV->addDebugInfo(GV);
1673 }
1674
Lang Hames459b5dc2014-03-23 04:22:31 +00001675 while (!GV->use_empty()) {
1676 Instruction *UI = cast<Instruction>(GV->user_back());
1677 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1678 // Change the store into a boolean store.
1679 bool StoringOther = SI->getOperand(0) == OtherVal;
1680 // Only do this if we weren't storing a loaded value.
1681 Value *StoreVal;
1682 if (StoringOther || SI->getOperand(0) == InitVal) {
1683 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1684 StoringOther);
Bill Wendling7297b862013-02-13 23:00:51 +00001685 } else {
Lang Hames459b5dc2014-03-23 04:22:31 +00001686 // Otherwise, we are storing a previously loaded copy. To do this,
1687 // change the copy from copying the original value to just copying the
1688 // bool.
1689 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1690
1691 // If we've already replaced the input, StoredVal will be a cast or
1692 // select instruction. If not, it will be a load of the original
1693 // global.
1694 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1695 assert(LI->getOperand(0) == GV && "Not a copy!");
1696 // Insert a new load, to preserve the saved value.
1697 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001698 LI->getOrdering(), LI->getSyncScopeID(), LI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001699 } else {
1700 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1701 "This is not a form that we understand!");
1702 StoreVal = StoredVal->getOperand(0);
1703 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1704 }
Chris Lattner745196a2004-12-12 19:34:41 +00001705 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001706 new StoreInst(StoreVal, NewGV, false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001707 SI->getOrdering(), SI->getSyncScopeID(), SI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001708 } else {
1709 // Change the load into a load of bool then a select.
1710 LoadInst *LI = cast<LoadInst>(UI);
1711 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001712 LI->getOrdering(), LI->getSyncScopeID(), LI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001713 Value *NSI;
1714 if (IsOneZero)
1715 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1716 else
1717 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1718 NSI->takeName(LI);
1719 LI->replaceAllUsesWith(NSI);
Devang Patelfc507a12009-03-06 01:39:36 +00001720 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001721 UI->eraseFromParent();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001722 }
1723
Lang Hames459b5dc2014-03-23 04:22:31 +00001724 // Retain the name of the old global variable. People who are debugging their
1725 // programs may expect these variables to be named the same.
1726 NewGV->takeName(GV);
1727 GV->eraseFromParent();
Chris Lattner20bbac32008-01-14 01:17:44 +00001728 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001729}
1730
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001731static bool deleteIfDead(GlobalValue &GV,
1732 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001733 GV.removeDeadConstantUsers();
1734
Mehdi Aminid8803092016-09-15 20:26:27 +00001735 if (!GV.isDiscardableIfUnused() && !GV.isDeclaration())
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001736 return false;
1737
1738 if (const Comdat *C = GV.getComdat())
1739 if (!GV.hasLocalLinkage() && NotDiscardableComdats.count(C))
1740 return false;
1741
1742 bool Dead;
1743 if (auto *F = dyn_cast<Function>(&GV))
Mehdi Aminid8803092016-09-15 20:26:27 +00001744 Dead = (F->isDeclaration() && F->use_empty()) || F->isDefTriviallyDead();
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001745 else
1746 Dead = GV.use_empty();
1747 if (!Dead)
1748 return false;
1749
1750 DEBUG(dbgs() << "GLOBAL DEAD: " << GV << "\n");
1751 GV.eraseFromParent();
1752 ++NumDeleted;
1753 return true;
1754}
Chris Lattner40e4cec2004-12-12 05:53:50 +00001755
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001756static bool isPointerValueDeadOnEntryToFunction(
1757 const Function *F, GlobalValue *GV,
1758 function_ref<DominatorTree &(Function &)> LookupDomTree) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001759 // Find all uses of GV. We expect them all to be in F, and if we can't
1760 // identify any of the uses we bail out.
1761 //
1762 // On each of these uses, identify if the memory that GV points to is
1763 // used/required/live at the start of the function. If it is not, for example
1764 // if the first thing the function does is store to the GV, the GV can
1765 // possibly be demoted.
1766 //
1767 // We don't do an exhaustive search for memory operations - simply look
1768 // through bitcasts as they're quite common and benign.
1769 const DataLayout &DL = GV->getParent()->getDataLayout();
1770 SmallVector<LoadInst *, 4> Loads;
1771 SmallVector<StoreInst *, 4> Stores;
1772 for (auto *U : GV->users()) {
1773 if (Operator::getOpcode(U) == Instruction::BitCast) {
1774 for (auto *UU : U->users()) {
1775 if (auto *LI = dyn_cast<LoadInst>(UU))
1776 Loads.push_back(LI);
1777 else if (auto *SI = dyn_cast<StoreInst>(UU))
1778 Stores.push_back(SI);
1779 else
1780 return false;
1781 }
1782 continue;
1783 }
1784
1785 Instruction *I = dyn_cast<Instruction>(U);
1786 if (!I)
1787 return false;
1788 assert(I->getParent()->getParent() == F);
1789
1790 if (auto *LI = dyn_cast<LoadInst>(I))
1791 Loads.push_back(LI);
1792 else if (auto *SI = dyn_cast<StoreInst>(I))
1793 Stores.push_back(SI);
1794 else
1795 return false;
1796 }
1797
1798 // We have identified all uses of GV into loads and stores. Now check if all
1799 // of them are known not to depend on the value of the global at the function
1800 // entry point. We do this by ensuring that every load is dominated by at
1801 // least one store.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001802 auto &DT = LookupDomTree(*const_cast<Function *>(F));
James Molloy9c7d4d82015-11-15 14:21:37 +00001803
James Molloyd4d23572015-11-16 10:16:22 +00001804 // The below check is quadratic. Check we're not going to do too many tests.
1805 // FIXME: Even though this will always have worst-case quadratic time, we
1806 // could put effort into minimizing the average time by putting stores that
1807 // have been shown to dominate at least one load at the beginning of the
1808 // Stores array, making subsequent dominance checks more likely to succeed
1809 // early.
1810 //
1811 // The threshold here is fairly large because global->local demotion is a
1812 // very powerful optimization should it fire.
1813 const unsigned Threshold = 100;
1814 if (Loads.size() * Stores.size() > Threshold)
1815 return false;
1816
James Molloy9c7d4d82015-11-15 14:21:37 +00001817 for (auto *L : Loads) {
1818 auto *LTy = L->getType();
David Majnemer0a16c222016-08-11 21:15:00 +00001819 if (none_of(Stores, [&](const StoreInst *S) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001820 auto *STy = S->getValueOperand()->getType();
1821 // The load is only dominated by the store if DomTree says so
1822 // and the number of bits loaded in L is less than or equal to
1823 // the number of bits stored in S.
1824 return DT.dominates(S, L) &&
1825 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy);
1826 }))
1827 return false;
1828 }
1829 // All loads have known dependences inside F, so the global can be localized.
1830 return true;
1831}
1832
James Molloy1d695a02015-11-19 18:04:33 +00001833/// C may have non-instruction users. Can all of those users be turned into
1834/// instructions?
1835static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) {
1836 // We don't do this exhaustively. The most common pattern that we really need
1837 // to care about is a constant GEP or constant bitcast - so just looking
1838 // through one single ConstantExpr.
1839 //
1840 // The set of constants that this function returns true for must be able to be
1841 // handled by makeAllConstantUsesInstructions.
1842 for (auto *U : C->users()) {
1843 if (isa<Instruction>(U))
1844 continue;
1845 if (!isa<ConstantExpr>(U))
1846 // Non instruction, non-constantexpr user; cannot convert this.
1847 return false;
1848 for (auto *UU : U->users())
1849 if (!isa<Instruction>(UU))
1850 // A constantexpr used by another constant. We don't try and recurse any
1851 // further but just bail out at this point.
1852 return false;
1853 }
1854
1855 return true;
1856}
1857
1858/// C may have non-instruction users, and
1859/// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the
1860/// non-instruction users to instructions.
1861static void makeAllConstantUsesInstructions(Constant *C) {
1862 SmallVector<ConstantExpr*,4> Users;
1863 for (auto *U : C->users()) {
1864 if (isa<ConstantExpr>(U))
1865 Users.push_back(cast<ConstantExpr>(U));
1866 else
1867 // We should never get here; allNonInstructionUsersCanBeMadeInstructions
1868 // should not have returned true for C.
1869 assert(
1870 isa<Instruction>(U) &&
1871 "Can't transform non-constantexpr non-instruction to instruction!");
1872 }
1873
1874 SmallVector<Value*,4> UUsers;
1875 for (auto *U : Users) {
1876 UUsers.clear();
1877 for (auto *UU : U->users())
1878 UUsers.push_back(UU);
1879 for (auto *UU : UUsers) {
1880 Instruction *UI = cast<Instruction>(UU);
1881 Instruction *NewU = U->getAsInstruction();
1882 NewU->insertBefore(UI);
1883 UI->replaceUsesOfWith(U, NewU);
1884 }
Eli Friedman10ab9232017-04-27 18:39:08 +00001885 // We've replaced all the uses, so destroy the constant. (destroyConstant
1886 // will update value handles and metadata.)
1887 U->destroyConstant();
James Molloy1d695a02015-11-19 18:04:33 +00001888 }
1889}
1890
James Molloyea31ad32015-11-13 11:05:07 +00001891/// Analyze the specified global variable and optimize
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001892/// it if possible. If we make a change, return true.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001893static bool processInternalGlobal(
1894 GlobalVariable *GV, const GlobalStatus &GS, TargetLibraryInfo *TLI,
1895 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001896 auto &DL = GV->getParent()->getDataLayout();
James Molloy9c7d4d82015-11-15 14:21:37 +00001897 // If this is a first class global and has only one accessing function and
1898 // this function is non-recursive, we replace the global with a local alloca
1899 // in this function.
Alexey Samsonova1944e62013-10-07 19:03:24 +00001900 //
Alp Tokerf907b892013-12-05 05:44:44 +00001901 // NOTE: It doesn't make sense to promote non-single-value types since we
Alexey Samsonova1944e62013-10-07 19:03:24 +00001902 // are just replacing static memory to stack memory.
1903 //
1904 // If the global is in different address space, don't bring it to stack.
1905 if (!GS.HasMultipleAccessingFunctions &&
James Molloy1d695a02015-11-19 18:04:33 +00001906 GS.AccessingFunction &&
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001907 GV->getValueType()->isSingleValueType() &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001908 GV->getType()->getAddressSpace() == 0 &&
1909 !GV->isExternallyInitialized() &&
James Molloy1d695a02015-11-19 18:04:33 +00001910 allNonInstructionUsersCanBeMadeInstructions(GV) &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001911 GS.AccessingFunction->doesNotRecurse() &&
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001912 isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV,
1913 LookupDomTree)) {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001914 const DataLayout &DL = GV->getParent()->getDataLayout();
1915
James Molloy33e73452015-11-13 11:05:13 +00001916 DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n");
Alexey Samsonova1944e62013-10-07 19:03:24 +00001917 Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1918 ->getEntryBlock().begin());
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001919 Type *ElemTy = GV->getValueType();
Alexey Samsonova1944e62013-10-07 19:03:24 +00001920 // FIXME: Pass Global's alignment when globals have alignment
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001921 AllocaInst *Alloca = new AllocaInst(ElemTy, DL.getAllocaAddrSpace(), nullptr,
Craig Topperf40110f2014-04-25 05:29:35 +00001922 GV->getName(), &FirstI);
Alexey Samsonova1944e62013-10-07 19:03:24 +00001923 if (!isa<UndefValue>(GV->getInitializer()))
1924 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1925
James Molloy1d695a02015-11-19 18:04:33 +00001926 makeAllConstantUsesInstructions(GV);
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001927
Alexey Samsonova1944e62013-10-07 19:03:24 +00001928 GV->replaceAllUsesWith(Alloca);
1929 GV->eraseFromParent();
1930 ++NumLocalized;
1931 return true;
1932 }
1933
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001934 // If the global is never loaded (but may be stored to), it is dead.
1935 // Delete it now.
Rafael Espindola045a78f2013-10-17 18:18:52 +00001936 if (!GS.IsLoaded) {
James Molloy33e73452015-11-13 11:05:13 +00001937 DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001938
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001939 bool Changed;
1940 if (isLeakCheckerRoot(GV)) {
1941 // Delete any constant stores to the global.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001942 Changed = CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001943 } else {
1944 // Delete any stores we can find to the global. We may not be able to
1945 // make it completely dead though.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001946 Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001947 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001948
1949 // If the global is dead now, delete it.
1950 if (GV->use_empty()) {
1951 GV->eraseFromParent();
1952 ++NumDeleted;
1953 Changed = true;
1954 }
1955 return Changed;
1956
James Molloyeb040cc2016-04-25 10:48:29 +00001957 }
1958 if (GS.StoredType <= GlobalStatus::InitializerStored) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00001959 DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001960 GV->setConstant(true);
1961
1962 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001963 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001964
1965 // If the global is dead now, just nuke it.
1966 if (GV->use_empty()) {
1967 DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
1968 << "all users and delete global!\n");
1969 GV->eraseFromParent();
1970 ++NumDeleted;
James Molloyeb040cc2016-04-25 10:48:29 +00001971 return true;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001972 }
1973
James Molloyeb040cc2016-04-25 10:48:29 +00001974 // Fall through to the next check; see if we can optimize further.
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001975 ++NumMarked;
James Molloyeb040cc2016-04-25 10:48:29 +00001976 }
1977 if (!GV->getInitializer()->getType()->isSingleValueType()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001978 const DataLayout &DL = GV->getParent()->getDataLayout();
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001979 if (SRAGlobal(GV, DL))
Mehdi Amini46a43552015-03-04 18:43:29 +00001980 return true;
James Molloyeb040cc2016-04-25 10:48:29 +00001981 }
1982 if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001983 // If the initial value for the global was an undef value, and if only
1984 // one other value was stored into it, we can just change the
1985 // initializer to be the stored value, then delete all stores to the
1986 // global. This allows us to mark it constant.
1987 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1988 if (isa<UndefValue>(GV->getInitializer())) {
1989 // Change the initial value here.
1990 GV->setInitializer(SOVConstant);
1991
1992 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001993 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001994
1995 if (GV->use_empty()) {
1996 DEBUG(dbgs() << " *** Substituting initializer allowed us to "
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001997 << "simplify all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001998 GV->eraseFromParent();
1999 ++NumDeleted;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002000 }
2001 ++NumSubstitute;
2002 return true;
2003 }
2004
2005 // Try to optimize globals based on the knowledge that only one value
2006 // (besides its initializer) is ever stored to the global.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00002007 if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002008 return true;
2009
Lang Hames459b5dc2014-03-23 04:22:31 +00002010 // Otherwise, if the global was not a boolean, we can shrink it to be a
2011 // boolean.
Eli Friedman33d37002013-09-09 22:00:13 +00002012 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) {
JF Bastien800f87a2016-04-06 21:19:33 +00002013 if (GS.Ordering == AtomicOrdering::NotAtomic) {
Lang Hames459b5dc2014-03-23 04:22:31 +00002014 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Eli Friedman33d37002013-09-09 22:00:13 +00002015 ++NumShrunkToBool;
2016 return true;
2017 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002018 }
Eli Friedman33d37002013-09-09 22:00:13 +00002019 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002020 }
2021
Chris Lattner1c4bddc2004-10-08 20:59:28 +00002022 return false;
2023}
2024
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002025/// Analyze the specified global variable and optimize it if possible. If we
2026/// make a change, return true.
2027static bool
2028processGlobal(GlobalValue &GV, TargetLibraryInfo *TLI,
2029 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002030 if (GV.getName().startswith("llvm."))
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002031 return false;
2032
2033 GlobalStatus GS;
2034
2035 if (GlobalStatus::analyzeGlobal(&GV, GS))
2036 return false;
2037
2038 bool Changed = false;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002039 if (!GS.IsCompared && !GV.hasGlobalUnnamedAddr()) {
2040 auto NewUnnamedAddr = GV.hasLocalLinkage() ? GlobalValue::UnnamedAddr::Global
2041 : GlobalValue::UnnamedAddr::Local;
2042 if (NewUnnamedAddr != GV.getUnnamedAddr()) {
2043 GV.setUnnamedAddr(NewUnnamedAddr);
2044 NumUnnamed++;
2045 Changed = true;
2046 }
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002047 }
2048
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002049 // Do more involved optimizations if the global is internal.
2050 if (!GV.hasLocalLinkage())
2051 return Changed;
2052
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002053 auto *GVar = dyn_cast<GlobalVariable>(&GV);
2054 if (!GVar)
2055 return Changed;
2056
2057 if (GVar->isConstant() || !GVar->hasInitializer())
2058 return Changed;
2059
2060 return processInternalGlobal(GVar, GS, TLI, LookupDomTree) || Changed;
2061}
2062
James Molloyea31ad32015-11-13 11:05:07 +00002063/// Walk all of the direct calls of the specified function, changing them to
2064/// FastCC.
Chris Lattnera4c80222005-05-08 22:18:06 +00002065static void ChangeCalleesToFastCall(Function *F) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00002066 for (User *U : F->users()) {
2067 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002068 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002069 CallSite CS(cast<Instruction>(U));
2070 CS.setCallingConv(CallingConv::Fast);
Chris Lattnera4c80222005-05-08 22:18:06 +00002071 }
2072}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00002073
Reid Kleckner0a5ed3d2017-04-19 23:26:44 +00002074static AttributeList StripNest(LLVMContext &C, AttributeList Attrs) {
2075 // There can be at most one attribute set with a nest attribute.
2076 unsigned NestIndex;
2077 if (Attrs.hasAttrSomewhere(Attribute::Nest, &NestIndex))
2078 return Attrs.removeAttribute(C, NestIndex, Attribute::Nest);
Duncan Sands573b3f82008-02-16 20:56:04 +00002079 return Attrs;
2080}
2081
2082static void RemoveNestAttribute(Function *F) {
Bill Wendling85a64c22012-10-14 06:39:53 +00002083 F->setAttributes(StripNest(F->getContext(), F->getAttributes()));
Chandler Carruthcdf47882014-03-09 03:16:01 +00002084 for (User *U : F->users()) {
2085 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002086 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002087 CallSite CS(cast<Instruction>(U));
2088 CS.setAttributes(StripNest(F->getContext(), CS.getAttributes()));
Duncan Sands573b3f82008-02-16 20:56:04 +00002089 }
2090}
2091
Reid Kleckner22869372014-02-26 19:57:30 +00002092/// Return true if this is a calling convention that we'd like to change. The
2093/// idea here is that we don't want to mess with the convention if the user
2094/// explicitly requested something with performance implications like coldcc,
2095/// GHC, or anyregcc.
2096static bool isProfitableToMakeFastCC(Function *F) {
2097 CallingConv::ID CC = F->getCallingConv();
2098 // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc?
2099 return CC == CallingConv::C || CC == CallingConv::X86_ThisCall;
2100}
2101
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002102static bool
2103OptimizeFunctions(Module &M, TargetLibraryInfo *TLI,
2104 function_ref<DominatorTree &(Function &)> LookupDomTree,
2105 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002106 bool Changed = false;
2107 // Optimize functions.
2108 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002109 Function *F = &*FI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002110 // Functions without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002111 if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002112 F->setLinkage(GlobalValue::InternalLinkage);
David Majnemer1b3b70e2014-10-08 07:23:31 +00002113
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002114 if (deleteIfDead(*F, NotDiscardableComdats)) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002115 Changed = true;
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002116 continue;
2117 }
Rafael Espindola10d9a032015-12-22 20:43:30 +00002118
Davide Italianoc3dc055782017-07-13 15:40:59 +00002119 // LLVM's definition of dominance allows instructions that are cyclic
2120 // in unreachable blocks, e.g.:
2121 // %pat = select i1 %condition, @global, i16* %pat
2122 // because any instruction dominates an instruction in a block that's
2123 // not reachable from entry.
2124 // So, remove unreachable blocks from the function, because a) there's
2125 // no point in analyzing them and b) GlobalOpt should otherwise grow
2126 // some more complicated logic to break these cycles.
2127 // Removing unreachable blocks might invalidate the dominator so we
2128 // recalculate it.
2129 if (!F->isDeclaration()) {
2130 if (removeUnreachableBlocks(*F)) {
2131 auto &DT = LookupDomTree(*F);
2132 DT.recalculate(*F);
2133 Changed = true;
2134 }
2135 }
2136
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002137 Changed |= processGlobal(*F, TLI, LookupDomTree);
Rafael Espindola10d9a032015-12-22 20:43:30 +00002138
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002139 if (!F->hasLocalLinkage())
2140 continue;
2141 if (isProfitableToMakeFastCC(F) && !F->isVarArg() &&
2142 !F->hasAddressTaken()) {
2143 // If this function has a calling convention worth changing, is not a
2144 // varargs function, and is only called directly, promote it to use the
2145 // Fast calling convention.
2146 F->setCallingConv(CallingConv::Fast);
2147 ChangeCalleesToFastCall(F);
2148 ++NumFastCallFns;
2149 Changed = true;
2150 }
Duncan Sands573b3f82008-02-16 20:56:04 +00002151
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002152 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2153 !F->hasAddressTaken()) {
2154 // The function is not used by a trampoline intrinsic, so it is safe
2155 // to remove the 'nest' attribute.
2156 RemoveNestAttribute(F);
2157 ++NumNestRemoved;
2158 Changed = true;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002159 }
2160 }
2161 return Changed;
2162}
2163
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002164static bool
2165OptimizeGlobalVars(Module &M, TargetLibraryInfo *TLI,
2166 function_ref<DominatorTree &(Function &)> LookupDomTree,
2167 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002168 bool Changed = false;
David Majnemerdad0a642014-06-27 18:19:56 +00002169
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002170 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2171 GVI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002172 GlobalVariable *GV = &*GVI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002173 // Global variables without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002174 if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002175 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman580b80d2009-11-23 16:22:21 +00002176 // Simplify the initializer.
2177 if (GV->hasInitializer())
David Majnemerd536f232016-07-29 03:27:26 +00002178 if (auto *C = dyn_cast<Constant>(GV->getInitializer())) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002179 auto &DL = M.getDataLayout();
David Majnemerd536f232016-07-29 03:27:26 +00002180 Constant *New = ConstantFoldConstant(C, DL, TLI);
2181 if (New && New != C)
Dan Gohman580b80d2009-11-23 16:22:21 +00002182 GV->setInitializer(New);
2183 }
Rafael Espindolafc355bc2011-01-19 16:32:21 +00002184
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002185 if (deleteIfDead(*GV, NotDiscardableComdats)) {
Rafael Espindola10d9a032015-12-22 20:43:30 +00002186 Changed = true;
2187 continue;
2188 }
2189
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002190 Changed |= processGlobal(*GV, TLI, LookupDomTree);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002191 }
2192 return Changed;
2193}
2194
James Molloyea31ad32015-11-13 11:05:07 +00002195/// Evaluate a piece of a constantexpr store into a global initializer. This
2196/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2197/// GEP operands of Addr [0, OpNo) have been stepped into.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002198static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2199 ConstantExpr *Addr, unsigned OpNo) {
2200 // Base case of the recursion.
2201 if (OpNo == Addr->getNumOperands()) {
2202 assert(Val->getType() == Init->getType() && "Type mismatch!");
2203 return Val;
2204 }
2205
2206 SmallVector<Constant*, 32> Elts;
2207 if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2208 // Break up the constant into its elements.
2209 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2210 Elts.push_back(Init->getAggregateElement(i));
2211
2212 // Replace the element that we are supposed to.
2213 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2214 unsigned Idx = CU->getZExtValue();
2215 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2216 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2217
2218 // Return the modified struct.
2219 return ConstantStruct::get(STy, Elts);
2220 }
2221
2222 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2223 SequentialType *InitTy = cast<SequentialType>(Init->getType());
Peter Collingbournebc070522016-12-02 03:20:58 +00002224 uint64_t NumElts = InitTy->getNumElements();
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002225
2226 // Break up the array into elements.
2227 for (uint64_t i = 0, e = NumElts; i != e; ++i)
2228 Elts.push_back(Init->getAggregateElement(i));
2229
2230 assert(CI->getZExtValue() < NumElts);
2231 Elts[CI->getZExtValue()] =
2232 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2233
2234 if (Init->getType()->isArrayTy())
2235 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2236 return ConstantVector::get(Elts);
2237}
2238
James Molloyea31ad32015-11-13 11:05:07 +00002239/// We have decided that Addr (which satisfies the predicate
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002240/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2241static void CommitValueTo(Constant *Val, Constant *Addr) {
2242 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2243 assert(GV->hasInitializer());
2244 GV->setInitializer(Val);
2245 return;
2246 }
2247
2248 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2249 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2250 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2251}
2252
James Molloyea31ad32015-11-13 11:05:07 +00002253/// Evaluate static constructors in the function, if we can. Return true if we
2254/// can, false otherwise.
Mehdi Amini46a43552015-03-04 18:43:29 +00002255static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002256 TargetLibraryInfo *TLI) {
Chris Lattnerda1889b2005-09-27 04:27:01 +00002257 // Call the function.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002258 Evaluator Eval(DL, TLI);
Chris Lattner65a3a092005-09-27 04:45:34 +00002259 Constant *RetValDummy;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002260 bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2261 SmallVector<Constant*, 0>());
Jakub Staszak9525a772012-12-06 21:57:16 +00002262
Chris Lattnerda1889b2005-09-27 04:27:01 +00002263 if (EvalSuccess) {
Nico Weber4b2acde2014-05-02 18:35:25 +00002264 ++NumCtorsEvaluated;
2265
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002266 // We succeeded at evaluation: commit the result.
David Greene44cb8ad2010-01-05 01:28:05 +00002267 DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002268 << F->getName() << "' to " << Eval.getMutatedMemory().size()
2269 << " stores.\n");
Benjamin Kramer135f7352016-06-26 12:28:59 +00002270 for (const auto &I : Eval.getMutatedMemory())
2271 CommitValueTo(I.second, I.first);
Craig Topper46276792014-08-24 23:23:06 +00002272 for (GlobalVariable *GV : Eval.getInvariants())
2273 GV->setConstant(true);
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002274 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002275
Chris Lattnerda1889b2005-09-27 04:27:01 +00002276 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002277}
2278
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002279static int compareNames(Constant *const *A, Constant *const *B) {
Benjamin Kramer96f4b122016-03-15 14:18:26 +00002280 Value *AStripped = (*A)->stripPointerCastsNoFollowAliases();
2281 Value *BStripped = (*B)->stripPointerCastsNoFollowAliases();
2282 return AStripped->getName().compare(BStripped->getName());
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002283}
2284
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002285static void setUsedInitializer(GlobalVariable &V,
Craig Topper97ebe532014-08-19 07:44:27 +00002286 const SmallPtrSet<GlobalValue *, 8> &Init) {
Rafael Espindolac2bb73f2013-07-20 23:33:15 +00002287 if (Init.empty()) {
2288 V.eraseFromParent();
2289 return;
2290 }
2291
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002292 // Type of pointer to the array of pointers.
2293 PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0);
Rafael Espindola00752162013-05-09 17:22:59 +00002294
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002295 SmallVector<Constant *, 8> UsedArray;
Craig Topper71b7b682014-08-21 05:55:13 +00002296 for (GlobalValue *GV : Init) {
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002297 Constant *Cast
Craig Topper71b7b682014-08-21 05:55:13 +00002298 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002299 UsedArray.push_back(Cast);
Rafael Espindola00752162013-05-09 17:22:59 +00002300 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002301 // Sort to get deterministic order.
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002302 array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002303 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
Rafael Espindola00752162013-05-09 17:22:59 +00002304
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002305 Module *M = V.getParent();
2306 V.removeFromParent();
2307 GlobalVariable *NV =
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002308 new GlobalVariable(*M, ATy, false, GlobalValue::AppendingLinkage,
2309 ConstantArray::get(ATy, UsedArray), "");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002310 NV->takeName(&V);
2311 NV->setSection("llvm.metadata");
2312 delete &V;
Rafael Espindola00752162013-05-09 17:22:59 +00002313}
2314
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002315namespace {
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002316
James Molloyea31ad32015-11-13 11:05:07 +00002317/// An easy to access representation of llvm.used and llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002318class LLVMUsed {
2319 SmallPtrSet<GlobalValue *, 8> Used;
2320 SmallPtrSet<GlobalValue *, 8> CompilerUsed;
2321 GlobalVariable *UsedV;
2322 GlobalVariable *CompilerUsedV;
2323
2324public:
Rafael Espindolaec2375f2013-07-25 02:50:08 +00002325 LLVMUsed(Module &M) {
Rafael Espindola17600e22013-07-25 03:23:25 +00002326 UsedV = collectUsedGlobalVariables(M, Used, false);
2327 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
Rafael Espindola00752162013-05-09 17:22:59 +00002328 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002329
2330 using iterator = SmallPtrSet<GlobalValue *, 8>::iterator;
2331 using used_iterator_range = iterator_range<iterator>;
2332
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002333 iterator usedBegin() { return Used.begin(); }
2334 iterator usedEnd() { return Used.end(); }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002335
Craig Topper46276792014-08-24 23:23:06 +00002336 used_iterator_range used() {
2337 return used_iterator_range(usedBegin(), usedEnd());
2338 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002339
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002340 iterator compilerUsedBegin() { return CompilerUsed.begin(); }
2341 iterator compilerUsedEnd() { return CompilerUsed.end(); }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002342
Craig Topper46276792014-08-24 23:23:06 +00002343 used_iterator_range compilerUsed() {
2344 return used_iterator_range(compilerUsedBegin(), compilerUsedEnd());
2345 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002346
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002347 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002348
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002349 bool compilerUsedCount(GlobalValue *GV) const {
2350 return CompilerUsed.count(GV);
2351 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002352
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002353 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2354 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
David Blaikie70573dc2014-11-19 07:49:26 +00002355 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002356
David Blaikie70573dc2014-11-19 07:49:26 +00002357 bool compilerUsedInsert(GlobalValue *GV) {
2358 return CompilerUsed.insert(GV).second;
2359 }
Rafael Espindola00752162013-05-09 17:22:59 +00002360
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002361 void syncVariablesAndSets() {
2362 if (UsedV)
2363 setUsedInitializer(*UsedV, Used);
2364 if (CompilerUsedV)
2365 setUsedInitializer(*CompilerUsedV, CompilerUsed);
2366 }
2367};
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002368
2369} // end anonymous namespace
Rafael Espindola00752162013-05-09 17:22:59 +00002370
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002371static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
2372 if (GA.use_empty()) // No use at all.
2373 return false;
2374
2375 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
2376 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002377 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002378 if (!GA.hasOneUse())
2379 // Strictly more than one use. So at least one is not in llvm.used and
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002380 // llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002381 return true;
2382
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002383 // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002384 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
Rafael Espindola00752162013-05-09 17:22:59 +00002385}
2386
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002387static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
2388 const LLVMUsed &U) {
2389 unsigned N = 2;
2390 assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
2391 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002392 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002393 if (U.usedCount(&V) || U.compilerUsedCount(&V))
2394 ++N;
2395 return V.hasNUsesOrMore(N);
2396}
2397
2398static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
2399 if (!GA.hasLocalLinkage())
2400 return true;
2401
2402 return U.usedCount(&GA) || U.compilerUsedCount(&GA);
2403}
2404
Craig Topper71b7b682014-08-21 05:55:13 +00002405static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U,
2406 bool &RenameTarget) {
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002407 RenameTarget = false;
Rafael Espindola00752162013-05-09 17:22:59 +00002408 bool Ret = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002409 if (hasUseOtherThanLLVMUsed(GA, U))
Rafael Espindola00752162013-05-09 17:22:59 +00002410 Ret = true;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002411
2412 // If the alias is externally visible, we may still be able to simplify it.
2413 if (!mayHaveOtherReferences(GA, U))
2414 return Ret;
2415
2416 // If the aliasee has internal linkage, give it the name and linkage
2417 // of the alias, and delete the alias. This turns:
2418 // define internal ... @f(...)
2419 // @a = alias ... @f
2420 // into:
2421 // define ... @a(...)
2422 Constant *Aliasee = GA.getAliasee();
2423 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2424 if (!Target->hasLocalLinkage())
2425 return Ret;
2426
2427 // Do not perform the transform if multiple aliases potentially target the
2428 // aliasee. This check also ensures that it is safe to replace the section
2429 // and other attributes of the aliasee with those of the alias.
2430 if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
2431 return Ret;
2432
2433 RenameTarget = true;
2434 return true;
Rafael Espindola00752162013-05-09 17:22:59 +00002435}
2436
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002437static bool
2438OptimizeGlobalAliases(Module &M,
2439 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002440 bool Changed = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002441 LLVMUsed Used(M);
2442
Craig Topper46276792014-08-24 23:23:06 +00002443 for (GlobalValue *GV : Used.used())
2444 Used.compilerUsedErase(GV);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002445
Duncan Sands0bcf0852009-01-07 20:01:06 +00002446 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002447 I != E;) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002448 GlobalAlias *J = &*I++;
2449
Duncan Sandsed722832009-03-06 10:21:56 +00002450 // Aliases without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002451 if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002452 J->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindola5349d872015-12-22 19:50:22 +00002453
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002454 if (deleteIfDead(*J, NotDiscardableComdats)) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002455 Changed = true;
2456 continue;
2457 }
2458
Duncan Sandsb3f27882009-02-15 09:56:08 +00002459 // If the aliasee may change at link time, nothing can be done - bail out.
Sanjoy Das5ce32722016-04-08 00:48:30 +00002460 if (J->isInterposable())
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002461 continue;
2462
Duncan Sandsb3f27882009-02-15 09:56:08 +00002463 Constant *Aliasee = J->getAliasee();
David Majnemer0e2cc2a2014-07-01 00:30:56 +00002464 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts());
2465 // We can't trivially replace the alias with the aliasee if the aliasee is
2466 // non-trivial in some way.
2467 // TODO: Try to handle non-zero GEPs of local aliasees.
2468 if (!Target)
2469 continue;
Duncan Sands7a1db332009-02-18 17:55:38 +00002470 Target->removeDeadConstantUsers();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002471
2472 // Make all users of the alias use the aliasee instead.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002473 bool RenameTarget;
2474 if (!hasUsesToReplace(*J, Used, RenameTarget))
Rafael Espindola00752162013-05-09 17:22:59 +00002475 continue;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002476
Rafael Espindola6b238632014-05-16 19:35:39 +00002477 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType()));
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002478 ++NumAliasesResolved;
2479 Changed = true;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002480
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002481 if (RenameTarget) {
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002482 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002483 Target->takeName(&*J);
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002484 Target->setLinkage(J->getLinkage());
Reid Kleckner22b19da2014-02-13 02:18:36 +00002485 Target->setVisibility(J->getVisibility());
2486 Target->setDLLStorageClass(J->getDLLStorageClass());
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002487
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002488 if (Used.usedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002489 Used.usedInsert(Target);
2490
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002491 if (Used.compilerUsedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002492 Used.compilerUsedInsert(Target);
Rafael Espindola8d304802013-06-12 16:45:47 +00002493 } else if (mayHaveOtherReferences(*J, Used))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002494 continue;
2495
Duncan Sandsb3f27882009-02-15 09:56:08 +00002496 // Delete the alias.
2497 M.getAliasList().erase(J);
2498 ++NumAliasesRemoved;
2499 Changed = true;
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002500 }
2501
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002502 Used.syncVariablesAndSets();
2503
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002504 return Changed;
2505}
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002506
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002507static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
David L. Jonesd21529f2017-01-23 23:16:46 +00002508 LibFunc F = LibFunc_cxa_atexit;
Ahmed Bougachad765a822016-04-27 19:04:35 +00002509 if (!TLI->has(F))
Craig Topperf40110f2014-04-25 05:29:35 +00002510 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002511
Ahmed Bougachad765a822016-04-27 19:04:35 +00002512 Function *Fn = M.getFunction(TLI->getName(F));
Anders Carlssonee6bc702011-03-20 17:59:11 +00002513 if (!Fn)
Craig Topperf40110f2014-04-25 05:29:35 +00002514 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002515
Ahmed Bougachad765a822016-04-27 19:04:35 +00002516 // Make sure that the function has the correct prototype.
David L. Jonesd21529f2017-01-23 23:16:46 +00002517 if (!TLI->getLibFunc(*Fn, F) || F != LibFunc_cxa_atexit)
Craig Topperf40110f2014-04-25 05:29:35 +00002518 return nullptr;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002519
2520 return Fn;
2521}
2522
James Molloyea31ad32015-11-13 11:05:07 +00002523/// Returns whether the given function is an empty C++ destructor and can
2524/// therefore be eliminated.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002525/// Note that we assume that other optimization passes have already simplified
2526/// the code so we only look for a function with a single basic block, where
Benjamin Kramer1a4695a2012-02-09 16:28:15 +00002527/// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
2528/// other side-effect free instructions.
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002529static bool cxxDtorIsEmpty(const Function &Fn,
2530 SmallPtrSet<const Function *, 8> &CalledFunctions) {
Anders Carlsson48a44912011-03-20 19:51:13 +00002531 // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
Nick Lewyckyd0781832011-03-21 02:26:01 +00002532 // nounwind, but that doesn't seem worth doing.
Anders Carlsson48a44912011-03-20 19:51:13 +00002533 if (Fn.isDeclaration())
2534 return false;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002535
2536 if (++Fn.begin() != Fn.end())
2537 return false;
2538
2539 const BasicBlock &EntryBlock = Fn.getEntryBlock();
2540 for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end();
2541 I != E; ++I) {
2542 if (const CallInst *CI = dyn_cast<CallInst>(I)) {
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002543 // Ignore debug intrinsics.
2544 if (isa<DbgInfoIntrinsic>(CI))
2545 continue;
2546
Anders Carlssonee6bc702011-03-20 17:59:11 +00002547 const Function *CalledFn = CI->getCalledFunction();
2548
2549 if (!CalledFn)
2550 return false;
2551
Anders Carlsson1cc80732011-03-22 03:21:01 +00002552 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
2553
Anders Carlsson48a44912011-03-20 19:51:13 +00002554 // Don't treat recursive functions as empty.
David Blaikie70573dc2014-11-19 07:49:26 +00002555 if (!NewCalledFunctions.insert(CalledFn).second)
Anders Carlsson48a44912011-03-20 19:51:13 +00002556 return false;
2557
Anders Carlsson1cc80732011-03-22 03:21:01 +00002558 if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002559 return false;
2560 } else if (isa<ReturnInst>(*I))
Benjamin Kramer487a3962012-02-09 14:26:06 +00002561 return true; // We're done.
2562 else if (I->mayHaveSideEffects())
2563 return false; // Destructor with side effects, bail.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002564 }
2565
2566 return false;
2567}
2568
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002569static bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
Anders Carlssonee6bc702011-03-20 17:59:11 +00002570 /// Itanium C++ ABI p3.3.5:
2571 ///
2572 /// After constructing a global (or local static) object, that will require
2573 /// destruction on exit, a termination function is registered as follows:
2574 ///
2575 /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
2576 ///
2577 /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
2578 /// call f(p) when DSO d is unloaded, before all such termination calls
2579 /// registered before this one. It returns zero if registration is
Nick Lewyckyd0781832011-03-21 02:26:01 +00002580 /// successful, nonzero on failure.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002581
2582 // This pass will look for calls to __cxa_atexit where the function is trivial
2583 // and remove them.
2584 bool Changed = false;
2585
Chandler Carruthcdf47882014-03-09 03:16:01 +00002586 for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end();
2587 I != E;) {
Anders Carlsson336fd902011-03-20 20:21:33 +00002588 // We're only interested in calls. Theoretically, we could handle invoke
2589 // instructions as well, but neither llvm-gcc nor clang generate invokes
2590 // to __cxa_atexit.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002591 CallInst *CI = dyn_cast<CallInst>(*I++);
2592 if (!CI)
Anders Carlsson336fd902011-03-20 20:21:33 +00002593 continue;
2594
Jakub Staszak9525a772012-12-06 21:57:16 +00002595 Function *DtorFn =
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002596 dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
Anders Carlssonee6bc702011-03-20 17:59:11 +00002597 if (!DtorFn)
2598 continue;
2599
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002600 SmallPtrSet<const Function *, 8> CalledFunctions;
2601 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002602 continue;
2603
2604 // Just remove the call.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002605 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
2606 CI->eraseFromParent();
Anders Carlsson48a44912011-03-20 19:51:13 +00002607
Anders Carlssonee6bc702011-03-20 17:59:11 +00002608 ++NumCXXDtorsRemoved;
2609
2610 Changed |= true;
2611 }
2612
2613 return Changed;
2614}
2615
Justin Bogner1a075012016-04-26 00:28:01 +00002616static bool optimizeGlobalsInModule(
2617 Module &M, const DataLayout &DL, TargetLibraryInfo *TLI,
2618 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002619 SmallSet<const Comdat *, 8> NotDiscardableComdats;
Justin Bogner1a075012016-04-26 00:28:01 +00002620 bool Changed = false;
Chris Lattner25db5802004-10-07 04:16:33 +00002621 bool LocalChange = true;
2622 while (LocalChange) {
2623 LocalChange = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002624
David Majnemer1b3b70e2014-10-08 07:23:31 +00002625 NotDiscardableComdats.clear();
2626 for (const GlobalVariable &GV : M.globals())
2627 if (const Comdat *C = GV.getComdat())
2628 if (!GV.isDiscardableIfUnused() || !GV.use_empty())
2629 NotDiscardableComdats.insert(C);
2630 for (Function &F : M)
2631 if (const Comdat *C = F.getComdat())
2632 if (!F.isDefTriviallyDead())
2633 NotDiscardableComdats.insert(C);
2634 for (GlobalAlias &GA : M.aliases())
2635 if (const Comdat *C = GA.getComdat())
2636 if (!GA.isDiscardableIfUnused() || !GA.use_empty())
2637 NotDiscardableComdats.insert(C);
2638
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002639 // Delete functions that are trivially dead, ccc -> fastcc
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002640 LocalChange |=
2641 OptimizeFunctions(M, TLI, LookupDomTree, NotDiscardableComdats);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002642
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002643 // Optimize global_ctors list.
Richard Smithc167d652014-05-06 01:44:26 +00002644 LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) {
2645 return EvaluateStaticConstructor(F, DL, TLI);
2646 });
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002647
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002648 // Optimize non-address-taken globals.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002649 LocalChange |= OptimizeGlobalVars(M, TLI, LookupDomTree,
2650 NotDiscardableComdats);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002651
2652 // Resolve aliases, when possible.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002653 LocalChange |= OptimizeGlobalAliases(M, NotDiscardableComdats);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002654
Manman Renb3c52fb2013-05-14 21:52:44 +00002655 // Try to remove trivial global destructors if they are not removed
2656 // already.
2657 Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002658 if (CXAAtExitFn)
2659 LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
2660
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002661 Changed |= LocalChange;
Chris Lattner25db5802004-10-07 04:16:33 +00002662 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002663
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002664 // TODO: Move all global ctors functions to the end of the module for code
2665 // layout.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002666
Chris Lattner25db5802004-10-07 04:16:33 +00002667 return Changed;
2668}
Justin Bogner1a075012016-04-26 00:28:01 +00002669
Sean Silvafd03ac62016-08-09 00:28:38 +00002670PreservedAnalyses GlobalOptPass::run(Module &M, ModuleAnalysisManager &AM) {
Justin Bogner1a075012016-04-26 00:28:01 +00002671 auto &DL = M.getDataLayout();
2672 auto &TLI = AM.getResult<TargetLibraryAnalysis>(M);
2673 auto &FAM =
2674 AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
2675 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree &{
2676 return FAM.getResult<DominatorTreeAnalysis>(F);
2677 };
2678 if (!optimizeGlobalsInModule(M, DL, &TLI, LookupDomTree))
2679 return PreservedAnalyses::all();
2680 return PreservedAnalyses::none();
2681}
2682
2683namespace {
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002684
Justin Bogner1a075012016-04-26 00:28:01 +00002685struct GlobalOptLegacyPass : public ModulePass {
2686 static char ID; // Pass identification, replacement for typeid
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002687
Justin Bogner1a075012016-04-26 00:28:01 +00002688 GlobalOptLegacyPass() : ModulePass(ID) {
2689 initializeGlobalOptLegacyPassPass(*PassRegistry::getPassRegistry());
2690 }
2691
2692 bool runOnModule(Module &M) override {
2693 if (skipModule(M))
2694 return false;
2695
2696 auto &DL = M.getDataLayout();
2697 auto *TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
2698 auto LookupDomTree = [this](Function &F) -> DominatorTree & {
2699 return this->getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
2700 };
2701 return optimizeGlobalsInModule(M, DL, TLI, LookupDomTree);
2702 }
2703
2704 void getAnalysisUsage(AnalysisUsage &AU) const override {
2705 AU.addRequired<TargetLibraryInfoWrapperPass>();
2706 AU.addRequired<DominatorTreeWrapperPass>();
2707 }
2708};
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002709
2710} // end anonymous namespace
Justin Bogner1a075012016-04-26 00:28:01 +00002711
2712char GlobalOptLegacyPass::ID = 0;
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002713
Justin Bogner1a075012016-04-26 00:28:01 +00002714INITIALIZE_PASS_BEGIN(GlobalOptLegacyPass, "globalopt",
2715 "Global Variable Optimizer", false, false)
2716INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
2717INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
2718INITIALIZE_PASS_END(GlobalOptLegacyPass, "globalopt",
2719 "Global Variable Optimizer", false, false)
2720
2721ModulePass *llvm::createGlobalOptimizerPass() {
2722 return new GlobalOptLegacyPass();
2723}