blob: 471cdb665701e70954a2814317311b0d9e32ebed [file] [log] [blame]
Chris Lattner25db5802004-10-07 04:16:33 +00001//===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Misha Brukmanb1c93172005-04-21 23:48:37 +00006//
Chris Lattner25db5802004-10-07 04:16:33 +00007//===----------------------------------------------------------------------===//
8//
9// This pass transforms simple global variables that never have their address
10// taken. If obviously true, it marks read/write globals as constant, deletes
11// variables only stored to, etc.
12//
13//===----------------------------------------------------------------------===//
14
Justin Bogner1a075012016-04-26 00:28:01 +000015#include "llvm/Transforms/IPO/GlobalOpt.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/STLExtras.h"
18#include "llvm/ADT/SmallPtrSet.h"
19#include "llvm/ADT/SmallVector.h"
20#include "llvm/ADT/Statistic.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000021#include "llvm/ADT/Twine.h"
22#include "llvm/ADT/iterator_range.h"
Zaara Syeda1f59ae32018-01-30 16:17:22 +000023#include "llvm/Analysis/BlockFrequencyInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/Analysis/ConstantFolding.h"
25#include "llvm/Analysis/MemoryBuiltins.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000026#include "llvm/Analysis/TargetLibraryInfo.h"
Zaara Syeda1f59ae32018-01-30 16:17:22 +000027#include "llvm/Analysis/TargetTransformInfo.h"
David Blaikie31b98d22018-06-04 21:23:21 +000028#include "llvm/Transforms/Utils/Local.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000029#include "llvm/BinaryFormat/Dwarf.h"
30#include "llvm/IR/Attributes.h"
31#include "llvm/IR/BasicBlock.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000032#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/CallingConv.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000034#include "llvm/IR/Constant.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/Constants.h"
36#include "llvm/IR/DataLayout.h"
Victor Leschuk56b03d02017-08-04 04:51:15 +000037#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/DerivedTypes.h"
James Molloy9c7d4d82015-11-15 14:21:37 +000039#include "llvm/IR/Dominators.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000040#include "llvm/IR/Function.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000041#include "llvm/IR/GetElementPtrTypeIterator.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000042#include "llvm/IR/GlobalAlias.h"
43#include "llvm/IR/GlobalValue.h"
44#include "llvm/IR/GlobalVariable.h"
45#include "llvm/IR/InstrTypes.h"
46#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000047#include "llvm/IR/Instructions.h"
48#include "llvm/IR/IntrinsicInst.h"
49#include "llvm/IR/Module.h"
50#include "llvm/IR/Operator.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000051#include "llvm/IR/Type.h"
52#include "llvm/IR/Use.h"
53#include "llvm/IR/User.h"
54#include "llvm/IR/Value.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000055#include "llvm/IR/ValueHandle.h"
Chris Lattner25db5802004-10-07 04:16:33 +000056#include "llvm/Pass.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000057#include "llvm/Support/AtomicOrdering.h"
58#include "llvm/Support/Casting.h"
Zaara Syeda1f59ae32018-01-30 16:17:22 +000059#include "llvm/Support/CommandLine.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000060#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000061#include "llvm/Support/ErrorHandling.h"
Chris Lattner67ca6f632008-04-26 07:40:11 +000062#include "llvm/Support/MathExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000063#include "llvm/Support/raw_ostream.h"
Justin Bogner1a075012016-04-26 00:28:01 +000064#include "llvm/Transforms/IPO.h"
Nico Weber4b2acde2014-05-02 18:35:25 +000065#include "llvm/Transforms/Utils/CtorUtils.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000066#include "llvm/Transforms/Utils/Evaluator.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000067#include "llvm/Transforms/Utils/GlobalStatus.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000068#include <cassert>
69#include <cstdint>
70#include <utility>
71#include <vector>
72
Chris Lattner25db5802004-10-07 04:16:33 +000073using namespace llvm;
74
Chandler Carruth964daaa2014-04-22 02:55:47 +000075#define DEBUG_TYPE "globalopt"
76
Chris Lattner1631bcb2006-12-19 22:09:18 +000077STATISTIC(NumMarked , "Number of globals marked constant");
Rafael Espindolafc355bc2011-01-19 16:32:21 +000078STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
Chris Lattner1631bcb2006-12-19 22:09:18 +000079STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
80STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
81STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
82STATISTIC(NumDeleted , "Number of globals deleted");
Chris Lattner1631bcb2006-12-19 22:09:18 +000083STATISTIC(NumGlobUses , "Number of global uses devirtualized");
Alexey Samsonova1944e62013-10-07 19:03:24 +000084STATISTIC(NumLocalized , "Number of globals localized");
Chris Lattner1631bcb2006-12-19 22:09:18 +000085STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
86STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
87STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands573b3f82008-02-16 20:56:04 +000088STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sandsb3f27882009-02-15 09:56:08 +000089STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
90STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Anders Carlssonee6bc702011-03-20 17:59:11 +000091STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed");
Zaara Syeda1f59ae32018-01-30 16:17:22 +000092STATISTIC(NumInternalFunc, "Number of internal functions");
93STATISTIC(NumColdCC, "Number of functions marked coldcc");
94
95static cl::opt<bool>
96 EnableColdCCStressTest("enable-coldcc-stress-test",
97 cl::desc("Enable stress test of coldcc by adding "
98 "calling conv to all internal functions."),
99 cl::init(false), cl::Hidden);
100
101static cl::opt<int> ColdCCRelFreq(
102 "coldcc-rel-freq", cl::Hidden, cl::init(2), cl::ZeroOrMore,
103 cl::desc(
104 "Maximum block frequency, expressed as a percentage of caller's "
105 "entry frequency, for a call site to be considered cold for enabling"
106 "coldcc"));
Chris Lattner25db5802004-10-07 04:16:33 +0000107
James Molloyea31ad32015-11-13 11:05:07 +0000108/// Is this global variable possibly used by a leak checker as a root? If so,
109/// we might not really want to eliminate the stores to it.
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000110static bool isLeakCheckerRoot(GlobalVariable *GV) {
111 // A global variable is a root if it is a pointer, or could plausibly contain
112 // a pointer. There are two challenges; one is that we could have a struct
113 // the has an inner member which is a pointer. We recurse through the type to
114 // detect these (up to a point). The other is that we may actually be a union
115 // of a pointer and another type, and so our LLVM type is an integer which
116 // gets converted into a pointer, or our type is an [i8 x #] with a pointer
117 // potentially contained here.
118
119 if (GV->hasPrivateLinkage())
120 return false;
121
122 SmallVector<Type *, 4> Types;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000123 Types.push_back(GV->getValueType());
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000124
125 unsigned Limit = 20;
126 do {
127 Type *Ty = Types.pop_back_val();
128 switch (Ty->getTypeID()) {
129 default: break;
130 case Type::PointerTyID: return true;
131 case Type::ArrayTyID:
132 case Type::VectorTyID: {
133 SequentialType *STy = cast<SequentialType>(Ty);
134 Types.push_back(STy->getElementType());
135 break;
136 }
137 case Type::StructTyID: {
138 StructType *STy = cast<StructType>(Ty);
139 if (STy->isOpaque()) return true;
140 for (StructType::element_iterator I = STy->element_begin(),
141 E = STy->element_end(); I != E; ++I) {
142 Type *InnerTy = *I;
143 if (isa<PointerType>(InnerTy)) return true;
144 if (isa<CompositeType>(InnerTy))
145 Types.push_back(InnerTy);
146 }
147 break;
148 }
149 }
150 if (--Limit == 0) return true;
151 } while (!Types.empty());
152 return false;
153}
154
155/// Given a value that is stored to a global but never read, determine whether
156/// it's safe to remove the store and the chain of computation that feeds the
157/// store.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000158static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000159 do {
160 if (isa<Constant>(V))
161 return true;
162 if (!V->hasOneUse())
163 return false;
Nick Lewycky7d0f1102012-07-25 21:19:40 +0000164 if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
165 isa<GlobalValue>(V))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000166 return false;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000167 if (isAllocationFn(V, TLI))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000168 return true;
169
170 Instruction *I = cast<Instruction>(V);
171 if (I->mayHaveSideEffects())
172 return false;
173 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
174 if (!GEP->hasAllConstantIndices())
175 return false;
176 } else if (I->getNumOperands() != 1) {
177 return false;
178 }
179
180 V = I->getOperand(0);
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +0000181 } while (true);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000182}
183
James Molloyea31ad32015-11-13 11:05:07 +0000184/// This GV is a pointer root. Loop over all users of the global and clean up
185/// any that obviously don't assign the global a value that isn't dynamically
186/// allocated.
Eli Friedman052f87a2019-05-24 01:03:51 +0000187static bool CleanupPointerRootUsers(GlobalVariable *GV,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000188 const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000189 // A brief explanation of leak checkers. The goal is to find bugs where
190 // pointers are forgotten, causing an accumulating growth in memory
191 // usage over time. The common strategy for leak checkers is to whitelist the
192 // memory pointed to by globals at exit. This is popular because it also
193 // solves another problem where the main thread of a C++ program may shut down
194 // before other threads that are still expecting to use those globals. To
195 // handle that case, we expect the program may create a singleton and never
196 // destroy it.
197
198 bool Changed = false;
199
200 // If Dead[n].first is the only use of a malloc result, we can delete its
201 // chain of computation and the store to the global in Dead[n].second.
202 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
203
204 // Constants can't be pointers to dynamically allocated memory.
Eli Friedman052f87a2019-05-24 01:03:51 +0000205 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end();
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000206 UI != E;) {
207 User *U = *UI++;
208 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
209 Value *V = SI->getValueOperand();
210 if (isa<Constant>(V)) {
211 Changed = true;
212 SI->eraseFromParent();
213 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
214 if (I->hasOneUse())
215 Dead.push_back(std::make_pair(I, SI));
216 }
217 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
218 if (isa<Constant>(MSI->getValue())) {
219 Changed = true;
220 MSI->eraseFromParent();
221 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
222 if (I->hasOneUse())
223 Dead.push_back(std::make_pair(I, MSI));
224 }
225 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
226 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
227 if (MemSrc && MemSrc->isConstant()) {
228 Changed = true;
229 MTI->eraseFromParent();
230 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
231 if (I->hasOneUse())
232 Dead.push_back(std::make_pair(I, MTI));
233 }
234 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
235 if (CE->use_empty()) {
236 CE->destroyConstant();
237 Changed = true;
238 }
239 } else if (Constant *C = dyn_cast<Constant>(U)) {
Rafael Espindola27797ba2013-10-17 18:06:32 +0000240 if (isSafeToDestroyConstant(C)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000241 C->destroyConstant();
242 // This could have invalidated UI, start over from scratch.
243 Dead.clear();
Eli Friedman052f87a2019-05-24 01:03:51 +0000244 CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000245 return true;
246 }
247 }
248 }
249
250 for (int i = 0, e = Dead.size(); i != e; ++i) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000251 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000252 Dead[i].second->eraseFromParent();
253 Instruction *I = Dead[i].first;
254 do {
Michael Gottesman2a654272013-01-11 23:08:52 +0000255 if (isAllocationFn(I, TLI))
256 break;
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000257 Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
258 if (!J)
259 break;
260 I->eraseFromParent();
261 I = J;
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +0000262 } while (true);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000263 I->eraseFromParent();
264 }
265 }
266
267 return Changed;
268}
269
James Molloyea31ad32015-11-13 11:05:07 +0000270/// We just marked GV constant. Loop over all users of the global, cleaning up
271/// the obvious ones. This is largely just a quick scan over the use list to
272/// clean up the easy and obvious cruft. This returns true if it made a change.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000273static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
Mehdi Amini46a43552015-03-04 18:43:29 +0000274 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000275 TargetLibraryInfo *TLI) {
Chris Lattnercb9f1522004-10-10 16:43:46 +0000276 bool Changed = false;
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000277 // Note that we need to use a weak value handle for the worklist items. When
278 // we delete a constant array, we may also be holding pointer to one of its
279 // elements (or an element of one of its elements if we're dealing with an
280 // array of arrays) in the worklist.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +0000281 SmallVector<WeakTrackingVH, 8> WorkList(V->user_begin(), V->user_end());
Bill Wendling88d06c32013-04-02 08:16:45 +0000282 while (!WorkList.empty()) {
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000283 Value *UV = WorkList.pop_back_val();
284 if (!UV)
285 continue;
286
287 User *U = cast<User>(UV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000288
Chris Lattner25db5802004-10-07 04:16:33 +0000289 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000290 if (Init) {
291 // Replace the load with the initializer.
292 LI->replaceAllUsesWith(Init);
293 LI->eraseFromParent();
294 Changed = true;
295 }
Chris Lattner25db5802004-10-07 04:16:33 +0000296 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
297 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000298 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000299 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000300 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
301 if (CE->getOpcode() == Instruction::GetElementPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000302 Constant *SubInit = nullptr;
Chris Lattner46d9ff082005-09-26 07:34:35 +0000303 if (Init)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000304 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000305 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI);
Matt Arsenault461c8e02014-01-02 20:01:43 +0000306 } else if ((CE->getOpcode() == Instruction::BitCast &&
307 CE->getType()->isPointerTy()) ||
308 CE->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000309 // Pointer cast, delete any stores and memsets to the global.
Craig Topperf40110f2014-04-25 05:29:35 +0000310 Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI);
Chris Lattner7561ca12005-02-27 18:58:52 +0000311 }
312
313 if (CE->use_empty()) {
314 CE->destroyConstant();
315 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000316 }
317 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000318 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
319 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
320 // and will invalidate our notion of what Init is.
Craig Topperf40110f2014-04-25 05:29:35 +0000321 Constant *SubInit = nullptr;
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000322 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
Mehdi Amini46a43552015-03-04 18:43:29 +0000323 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000324 ConstantFoldInstruction(GEP, DL, TLI));
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000325 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000326 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Benjamin Krameraa9e4a52012-03-28 14:50:09 +0000327
328 // If the initializer is an all-null value and we have an inbounds GEP,
329 // we already know what the result of any load from that GEP is.
330 // TODO: Handle splats.
331 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
Eduard Burtescu19eb0312016-01-19 17:28:00 +0000332 SubInit = Constant::getNullValue(GEP->getResultElementType());
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000333 }
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000334 Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000335
Chris Lattnercb9f1522004-10-10 16:43:46 +0000336 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000337 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000338 Changed = true;
339 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000340 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
341 if (MI->getRawDest() == V) {
342 MI->eraseFromParent();
343 Changed = true;
344 }
345
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000346 } else if (Constant *C = dyn_cast<Constant>(U)) {
347 // If we have a chain of dead constantexprs or other things dangling from
348 // us, and if they are all dead, nuke them without remorse.
Rafael Espindola27797ba2013-10-17 18:06:32 +0000349 if (isSafeToDestroyConstant(C)) {
Devang Pateld926aaa2009-03-06 01:37:41 +0000350 C->destroyConstant();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000351 CleanupConstantGlobalUsers(V, Init, DL, TLI);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000352 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000353 }
Chris Lattner25db5802004-10-07 04:16:33 +0000354 }
355 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000356 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000357}
358
David Greenfc4b0fe2018-07-28 08:20:10 +0000359static bool isSafeSROAElementUse(Value *V);
360
361/// Return true if the specified GEP is a safe user of a derived
362/// expression from a global that we want to SROA.
363static bool isSafeSROAGEP(User *U) {
364 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
365 // don't like < 3 operand CE's, and we don't like non-constant integer
366 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
367 // value of C.
368 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
369 !cast<Constant>(U->getOperand(1))->isNullValue())
370 return false;
371
372 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
373 ++GEPI; // Skip over the pointer index.
374
375 // For all other level we require that the indices are constant and inrange.
376 // In particular, consider: A[0][i]. We cannot know that the user isn't doing
377 // invalid things like allowing i to index an out-of-range subscript that
378 // accesses A[1]. This can also happen between different members of a struct
379 // in llvm IR.
380 for (; GEPI != E; ++GEPI) {
381 if (GEPI.isStruct())
382 continue;
383
384 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
385 if (!IdxVal || (GEPI.isBoundedSequential() &&
386 IdxVal->getZExtValue() >= GEPI.getSequentialNumElements()))
387 return false;
388 }
389
390 return llvm::all_of(U->users(),
391 [](User *UU) { return isSafeSROAElementUse(UU); });
392}
393
James Molloyea31ad32015-11-13 11:05:07 +0000394/// Return true if the specified instruction is a safe user of a derived
395/// expression from a global that we want to SROA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000396static bool isSafeSROAElementUse(Value *V) {
397 // We might have a dead and dangling constant hanging off of here.
398 if (Constant *C = dyn_cast<Constant>(V))
Rafael Espindola27797ba2013-10-17 18:06:32 +0000399 return isSafeToDestroyConstant(C);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000400
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000401 Instruction *I = dyn_cast<Instruction>(V);
402 if (!I) return false;
403
404 // Loads are ok.
405 if (isa<LoadInst>(I)) return true;
406
407 // Stores *to* the pointer are ok.
408 if (StoreInst *SI = dyn_cast<StoreInst>(I))
409 return SI->getOperand(0) != V;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000410
David Greenfc4b0fe2018-07-28 08:20:10 +0000411 // Otherwise, it must be a GEP. Check it and its users are safe to SRA.
Eli Friedman052f87a2019-05-24 01:03:51 +0000412 return isa<GetElementPtrInst>(I) && isSafeSROAGEP(I);
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000413}
414
James Molloyea31ad32015-11-13 11:05:07 +0000415/// Look at all uses of the global and decide whether it is safe for us to
416/// perform this transformation.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000417static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
David Greenfc4b0fe2018-07-28 08:20:10 +0000418 for (User *U : GV->users()) {
419 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
420 if (!isa<GetElementPtrInst>(U) &&
421 (!isa<ConstantExpr>(U) ||
422 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000423 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000424
David Greenfc4b0fe2018-07-28 08:20:10 +0000425 // Check the gep and it's users are safe to SRA
426 if (!isSafeSROAGEP(U))
427 return false;
428 }
429
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000430 return true;
431}
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000432
Victor Leschuk56b03d02017-08-04 04:51:15 +0000433/// Copy over the debug info for a variable to its SRA replacements.
434static void transferSRADebugInfo(GlobalVariable *GV, GlobalVariable *NGV,
435 uint64_t FragmentOffsetInBits,
Adrian Prantl504b82d2017-08-31 00:06:18 +0000436 uint64_t FragmentSizeInBits,
437 unsigned NumElements) {
Victor Leschuk56b03d02017-08-04 04:51:15 +0000438 SmallVector<DIGlobalVariableExpression *, 1> GVs;
439 GV->getDebugInfo(GVs);
440 for (auto *GVE : GVs) {
441 DIVariable *Var = GVE->getVariable();
442 DIExpression *Expr = GVE->getExpression();
Adrian Prantl25a09dd2017-11-07 00:45:34 +0000443 if (NumElements > 1) {
444 if (auto E = DIExpression::createFragmentExpression(
445 Expr, FragmentOffsetInBits, FragmentSizeInBits))
446 Expr = *E;
447 else
448 return;
449 }
Adrian Prantl504b82d2017-08-31 00:06:18 +0000450 auto *NGVE = DIGlobalVariableExpression::get(GVE->getContext(), Var, Expr);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000451 NGV->addDebugInfo(NGVE);
452 }
453}
454
James Molloyea31ad32015-11-13 11:05:07 +0000455/// Perform scalar replacement of aggregates on the specified global variable.
456/// This opens the door for other optimizations by exposing the behavior of the
457/// program in a more fine-grained way. We have determined that this
458/// transformation is safe already. We return the first global variable we
Chris Lattnerabab0712004-10-08 17:32:09 +0000459/// insert so that the caller can reprocess it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000460static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
Chris Lattnerab053722008-01-14 01:31:05 +0000461 // Make sure this global only has simple uses that we can SRA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000462 if (!GlobalUsersSafeToSRA(GV))
Craig Topperf40110f2014-04-25 05:29:35 +0000463 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000464
James Molloyeb040cc2016-04-25 10:48:29 +0000465 assert(GV->hasLocalLinkage());
Chris Lattnerabab0712004-10-08 17:32:09 +0000466 Constant *Init = GV->getInitializer();
Chris Lattner229907c2011-07-18 04:54:35 +0000467 Type *Ty = Init->getType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000468
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +0000469 std::vector<GlobalVariable *> NewGlobals;
Chris Lattnerabab0712004-10-08 17:32:09 +0000470 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
471
Chris Lattner67ca6f632008-04-26 07:40:11 +0000472 // Get the alignment of the global, either explicit or target-specific.
473 unsigned StartAlignment = GV->getAlignment();
474 if (StartAlignment == 0)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000475 StartAlignment = DL.getABITypeAlignment(GV->getType());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000476
Chris Lattner229907c2011-07-18 04:54:35 +0000477 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Adrian Prantl504b82d2017-08-31 00:06:18 +0000478 unsigned NumElements = STy->getNumElements();
479 NewGlobals.reserve(NumElements);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000480 const StructLayout &Layout = *DL.getStructLayout(STy);
Adrian Prantl504b82d2017-08-31 00:06:18 +0000481 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000482 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000483 assert(In && "Couldn't get element of initializer?");
Chris Lattner46b5c642009-11-06 04:27:31 +0000484 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000485 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000486 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000487 GV->getThreadLocalMode(),
Owen Anderson5948fdf2009-07-08 01:26:06 +0000488 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000489 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000490 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000491 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000492 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000493
Chris Lattner67ca6f632008-04-26 07:40:11 +0000494 // Calculate the known alignment of the field. If the original aggregate
495 // had 256 byte alignment for example, something might depend on that:
496 // propagate info to each field.
497 uint64_t FieldOffset = Layout.getElementOffset(i);
498 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000499 if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i)))
Chris Lattner67ca6f632008-04-26 07:40:11 +0000500 NGV->setAlignment(NewAlign);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000501
502 // Copy over the debug info for the variable.
Mikael Holmenb69e5b72018-02-02 10:34:13 +0000503 uint64_t Size = DL.getTypeAllocSizeInBits(NGV->getValueType());
Mikael Holmen886edf82018-01-25 10:09:26 +0000504 uint64_t FragmentOffsetInBits = Layout.getElementOffsetInBits(i);
505 transferSRADebugInfo(GV, NGV, FragmentOffsetInBits, Size, NumElements);
Chris Lattnerabab0712004-10-08 17:32:09 +0000506 }
Chris Lattner229907c2011-07-18 04:54:35 +0000507 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
Peter Collingbournebc070522016-12-02 03:20:58 +0000508 unsigned NumElements = STy->getNumElements();
Chris Lattner25169ca2005-02-23 16:53:04 +0000509 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Craig Topperf40110f2014-04-25 05:29:35 +0000510 return nullptr; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000511 NewGlobals.reserve(NumElements);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000512 auto ElTy = STy->getElementType();
513 uint64_t EltSize = DL.getTypeAllocSize(ElTy);
514 unsigned EltAlign = DL.getABITypeAlignment(ElTy);
Mikael Holmenb69e5b72018-02-02 10:34:13 +0000515 uint64_t FragmentSizeInBits = DL.getTypeAllocSizeInBits(ElTy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000516 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000517 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000518 assert(In && "Couldn't get element of initializer?");
519
Chris Lattner46b5c642009-11-06 04:27:31 +0000520 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000521 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000522 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000523 GV->getThreadLocalMode(),
Owen Andersonb17f3292009-07-08 19:03:57 +0000524 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000525 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000526 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000527 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000528 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000529
Chris Lattner67ca6f632008-04-26 07:40:11 +0000530 // Calculate the known alignment of the field. If the original aggregate
531 // had 256 byte alignment for example, something might depend on that:
532 // propagate info to each field.
533 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
534 if (NewAlign > EltAlign)
535 NGV->setAlignment(NewAlign);
Adrian Prantl504b82d2017-08-31 00:06:18 +0000536 transferSRADebugInfo(GV, NGV, FragmentSizeInBits * i, FragmentSizeInBits,
537 NumElements);
Chris Lattnerabab0712004-10-08 17:32:09 +0000538 }
539 }
540
541 if (NewGlobals.empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000542 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000543
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000544 LLVM_DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n");
Chris Lattner004e2502004-10-11 05:54:41 +0000545
Chris Lattner46b5c642009-11-06 04:27:31 +0000546 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattnerabab0712004-10-08 17:32:09 +0000547
548 // Loop over all of the uses of the global, replacing the constantexpr geps,
549 // with smaller constantexpr geps or direct references.
550 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000551 User *GEP = GV->user_back();
Chris Lattner004e2502004-10-11 05:54:41 +0000552 assert(((isa<ConstantExpr>(GEP) &&
553 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
554 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000555
Chris Lattnerabab0712004-10-08 17:32:09 +0000556 // Ignore the 1th operand, which has to be zero or else the program is quite
557 // broken (undefined). Get the 2nd operand, which is the structure or array
558 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000559 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000560 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
561
Chris Lattner004e2502004-10-11 05:54:41 +0000562 Value *NewPtr = NewGlobals[Val];
David Blaikied9d900c2015-05-07 17:28:58 +0000563 Type *NewTy = NewGlobals[Val]->getValueType();
Chris Lattnerabab0712004-10-08 17:32:09 +0000564
565 // Form a shorter GEP if needed.
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000566 if (GEP->getNumOperands() > 3) {
Chris Lattner004e2502004-10-11 05:54:41 +0000567 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000568 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000569 Idxs.push_back(NullInt);
570 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
571 Idxs.push_back(CE->getOperand(i));
David Blaikie4a2e73b2015-04-02 18:55:32 +0000572 NewPtr =
573 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
Chris Lattner004e2502004-10-11 05:54:41 +0000574 } else {
575 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000576 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000577 Idxs.push_back(NullInt);
578 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
579 Idxs.push_back(GEPI->getOperand(i));
David Blaikie741c8f82015-03-14 01:53:18 +0000580 NewPtr = GetElementPtrInst::Create(
David Blaikied9d900c2015-05-07 17:28:58 +0000581 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
Chris Lattner004e2502004-10-11 05:54:41 +0000582 }
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000583 }
Chris Lattner004e2502004-10-11 05:54:41 +0000584 GEP->replaceAllUsesWith(NewPtr);
585
586 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000587 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000588 else
589 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000590 }
591
Chris Lattner73ad73e2004-10-08 20:25:55 +0000592 // Delete the old global, now that it is dead.
593 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000594 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000595
596 // Loop over the new globals array deleting any globals that are obviously
597 // dead. This can arise due to scalarization of a structure or an array that
598 // has elements that are dead.
599 unsigned FirstGlobal = 0;
600 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
601 if (NewGlobals[i]->use_empty()) {
602 Globals.erase(NewGlobals[i]);
603 if (FirstGlobal == i) ++FirstGlobal;
604 }
605
Craig Topperf40110f2014-04-25 05:29:35 +0000606 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
Chris Lattnerabab0712004-10-08 17:32:09 +0000607}
608
James Molloyea31ad32015-11-13 11:05:07 +0000609/// Return true if all users of the specified value will trap if the value is
610/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
611/// reprocessing them.
Gabor Greif67972872010-04-06 19:24:18 +0000612static bool AllUsesOfValueWillTrapIfNull(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +0000613 SmallPtrSetImpl<const PHINode*> &PHIs) {
Manoj Gupta77eeac32018-07-09 22:27:23 +0000614 for (const User *U : V->users()) {
615 if (const Instruction *I = dyn_cast<Instruction>(U)) {
616 // If null pointer is considered valid, then all uses are non-trapping.
617 // Non address-space 0 globals have already been pruned by the caller.
618 if (NullPointerIsDefined(I->getFunction()))
619 return false;
620 }
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 }
Manoj Gupta77eeac32018-07-09 22:27:23 +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++);
Manoj Gupta77eeac32018-07-09 22:27:23 +0000681 // Uses are non-trapping if null pointer is considered valid.
682 // Non address-space 0 globals are already pruned by the caller.
683 if (NullPointerIsDefined(I->getFunction()))
684 return false;
Chris Lattnere42eb312004-10-10 23:14:11 +0000685 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
686 LI->setOperand(0, NewV);
687 Changed = true;
688 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
689 if (SI->getOperand(1) == V) {
690 SI->setOperand(1, NewV);
691 Changed = true;
692 }
693 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
Gabor Greif04397892010-04-06 18:45:08 +0000694 CallSite CS(I);
695 if (CS.getCalledValue() == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000696 // Calling through the pointer! Turn into a direct call, but be careful
697 // that the pointer is not also being passed as an argument.
Gabor Greif04397892010-04-06 18:45:08 +0000698 CS.setCalledFunction(NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000699 Changed = true;
700 bool PassedAsArg = false;
Gabor Greif04397892010-04-06 18:45:08 +0000701 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
702 if (CS.getArgument(i) == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000703 PassedAsArg = true;
Gabor Greif04397892010-04-06 18:45:08 +0000704 CS.setArgument(i, NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000705 }
706
707 if (PassedAsArg) {
708 // Being passed as an argument also. Be careful to not invalidate UI!
Chandler Carruthcdf47882014-03-09 03:16:01 +0000709 UI = V->user_begin();
Chris Lattnere42eb312004-10-10 23:14:11 +0000710 }
711 }
712 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
713 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Anderson487375e2009-07-29 18:55:55 +0000714 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner46b5c642009-11-06 04:27:31 +0000715 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000716 if (CI->use_empty()) {
717 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000718 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000719 }
720 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
721 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000722 SmallVector<Constant*, 8> Idxs;
723 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif3a9fba52008-05-29 01:59:18 +0000724 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
725 i != e; ++i)
726 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000727 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000728 else
729 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000730 if (Idxs.size() == GEPI->getNumOperands()-1)
David Blaikie4a2e73b2015-04-02 18:55:32 +0000731 Changed |= OptimizeAwayTrappingUsesOfValue(
James Y Knight77160752019-02-01 20:44:47 +0000732 GEPI, ConstantExpr::getGetElementPtr(GEPI->getSourceElementType(),
733 NewV, Idxs));
Chris Lattnere42eb312004-10-10 23:14:11 +0000734 if (GEPI->use_empty()) {
735 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000736 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000737 }
738 }
739 }
740
741 return Changed;
742}
743
James Molloyea31ad32015-11-13 11:05:07 +0000744/// The specified global has only one non-null value stored into it. If there
745/// are uses of the loaded value that would trap if the loaded value is
746/// dynamically null, then we know that they cannot be reachable with a null
747/// optimize away the load.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000748static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
Mehdi Amini46a43552015-03-04 18:43:29 +0000749 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000750 TargetLibraryInfo *TLI) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000751 bool Changed = false;
752
Chris Lattner2538eb62009-01-14 00:12:58 +0000753 // Keep track of whether we are able to remove all the uses of the global
754 // other than the store that defines it.
755 bool AllNonStoreUsesGone = true;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000756
Chris Lattnere42eb312004-10-10 23:14:11 +0000757 // Replace all uses of loads with uses of uses of the stored value.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000758 for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){
Chris Lattner2538eb62009-01-14 00:12:58 +0000759 User *GlobalUser = *GUI++;
760 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner46b5c642009-11-06 04:27:31 +0000761 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner2538eb62009-01-14 00:12:58 +0000762 // If we were able to delete all uses of the loads
763 if (LI->use_empty()) {
764 LI->eraseFromParent();
765 Changed = true;
766 } else {
767 AllNonStoreUsesGone = false;
768 }
769 } else if (isa<StoreInst>(GlobalUser)) {
770 // Ignore the store that stores "LV" to the global.
771 assert(GlobalUser->getOperand(1) == GV &&
772 "Must be storing *to* the global");
Chris Lattnere42eb312004-10-10 23:14:11 +0000773 } else {
Chris Lattner2538eb62009-01-14 00:12:58 +0000774 AllNonStoreUsesGone = false;
775
776 // If we get here we could have other crazy uses that are transitively
777 // loaded.
778 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
Benjamin Kramered843602012-09-28 10:01:27 +0000779 isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
780 isa<BitCastInst>(GlobalUser) ||
781 isa<GetElementPtrInst>(GlobalUser)) &&
Chris Lattner1a1acc22011-05-22 07:15:13 +0000782 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000783 }
Chris Lattner2538eb62009-01-14 00:12:58 +0000784 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000785
786 if (Changed) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000787 LLVM_DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV
788 << "\n");
Chris Lattnere42eb312004-10-10 23:14:11 +0000789 ++NumGlobUses;
790 }
791
Chris Lattnere42eb312004-10-10 23:14:11 +0000792 // If we nuked all of the loads, then none of the stores are needed either,
793 // nor is the global.
Chris Lattner2538eb62009-01-14 00:12:58 +0000794 if (AllNonStoreUsesGone) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000795 if (isLeakCheckerRoot(GV)) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000796 Changed |= CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000797 } else {
798 Changed = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000799 CleanupConstantGlobalUsers(GV, nullptr, DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000800 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000801 if (GV->use_empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000802 LLVM_DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000803 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000804 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000805 ++NumDeleted;
806 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000807 }
808 return Changed;
809}
810
James Molloyea31ad32015-11-13 11:05:07 +0000811/// Walk the use list of V, constant folding all of the instructions that are
812/// foldable.
Mehdi Amini46a43552015-03-04 18:43:29 +0000813static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000814 TargetLibraryInfo *TLI) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000815 for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
Chris Lattner004e2502004-10-11 05:54:41 +0000816 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000817 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
Chris Lattner004e2502004-10-11 05:54:41 +0000818 I->replaceAllUsesWith(NewC);
819
Chris Lattnerd6a44922005-02-01 01:23:31 +0000820 // Advance UI to the next non-I use to avoid invalidating it!
821 // Instructions could multiply use V.
822 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000823 ++UI;
David Majnemer522a9112016-07-22 04:54:44 +0000824 if (isInstructionTriviallyDead(I, TLI))
825 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000826 }
827}
828
James Molloyea31ad32015-11-13 11:05:07 +0000829/// This function takes the specified global variable, and transforms the
830/// program as if it always contained the result of the specified malloc.
831/// Because it is always the result of the specified malloc, there is no reason
832/// to actually DO the malloc. Instead, turn the malloc into a global, and any
833/// loads of GV as uses of the new global.
Mehdi Amini46a43552015-03-04 18:43:29 +0000834static GlobalVariable *
835OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
836 ConstantInt *NElements, const DataLayout &DL,
837 TargetLibraryInfo *TLI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000838 LLVM_DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI
839 << '\n');
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000840
Chris Lattner229907c2011-07-18 04:54:35 +0000841 Type *GlobalType;
Chris Lattner7939f792010-02-25 22:33:52 +0000842 if (NElements->getZExtValue() == 1)
843 GlobalType = AllocTy;
844 else
845 // If we have an array allocation, the global variable is of an array.
846 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez5d034492009-09-18 22:35:49 +0000847
848 // Create the new global variable. The contents of the malloc'd memory is
849 // undefined, so initialize with an undef value.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000850 GlobalVariable *NewGV = new GlobalVariable(
851 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage,
852 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr,
853 GV->getThreadLocalMode());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000854
Chris Lattner7939f792010-02-25 22:33:52 +0000855 // If there are bitcast users of the malloc (which is typical, usually we have
856 // a malloc + bitcast) then replace them with uses of the new global. Update
857 // other users to use the global as well.
Craig Topperf40110f2014-04-25 05:29:35 +0000858 BitCastInst *TheBC = nullptr;
Chris Lattner7939f792010-02-25 22:33:52 +0000859 while (!CI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000860 Instruction *User = cast<Instruction>(CI->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000861 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
862 if (BCI->getType() == NewGV->getType()) {
863 BCI->replaceAllUsesWith(NewGV);
864 BCI->eraseFromParent();
865 } else {
866 BCI->setOperand(0, NewGV);
867 }
868 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000869 if (!TheBC)
Chris Lattner7939f792010-02-25 22:33:52 +0000870 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
871 User->replaceUsesOfWith(CI, TheBC);
872 }
873 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000874
Victor Hernandez5d034492009-09-18 22:35:49 +0000875 Constant *RepValue = NewGV;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000876 if (NewGV->getType() != GV->getValueType())
877 RepValue = ConstantExpr::getBitCast(RepValue, GV->getValueType());
Victor Hernandez5d034492009-09-18 22:35:49 +0000878
879 // If there is a comparison against null, we will insert a global bool to
880 // keep track of whether the global was initialized yet or not.
881 GlobalVariable *InitBool =
Chris Lattner46b5c642009-11-06 04:27:31 +0000882 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez5d034492009-09-18 22:35:49 +0000883 GlobalValue::InternalLinkage,
Chris Lattner46b5c642009-11-06 04:27:31 +0000884 ConstantInt::getFalse(GV->getContext()),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000885 GV->getName()+".init", GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +0000886 bool InitBoolUsed = false;
887
888 // Loop over all uses of GV, processing them in turn.
Chris Lattner7939f792010-02-25 22:33:52 +0000889 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000890 if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) {
Victor Hernandez5d034492009-09-18 22:35:49 +0000891 // The global is initialized when the store to it occurs.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000892 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000893 SI->getOrdering(), SI->getSyncScopeID(), SI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000894 SI->eraseFromParent();
Chris Lattner7939f792010-02-25 22:33:52 +0000895 continue;
Victor Hernandez5d034492009-09-18 22:35:49 +0000896 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000897
Chandler Carruthcdf47882014-03-09 03:16:01 +0000898 LoadInst *LI = cast<LoadInst>(GV->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000899 while (!LI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000900 Use &LoadUse = *LI->use_begin();
901 ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser());
902 if (!ICI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000903 LoadUse = RepValue;
904 continue;
905 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000906
Chris Lattner7939f792010-02-25 22:33:52 +0000907 // Replace the cmp X, 0 with a use of the bool value.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000908 // Sink the load to where the compare was, if atomic rules allow us to.
James Y Knight14359ef2019-02-01 20:44:24 +0000909 Value *LV = new LoadInst(InitBool->getValueType(), InitBool,
910 InitBool->getName() + ".val", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000911 LI->getOrdering(), LI->getSyncScopeID(),
James Y Knight14359ef2019-02-01 20:44:24 +0000912 LI->isUnordered() ? (Instruction *)ICI : LI);
Chris Lattner7939f792010-02-25 22:33:52 +0000913 InitBoolUsed = true;
914 switch (ICI->getPredicate()) {
915 default: llvm_unreachable("Unknown ICmp Predicate!");
916 case ICmpInst::ICMP_ULT:
917 case ICmpInst::ICMP_SLT: // X < null -> always false
918 LV = ConstantInt::getFalse(GV->getContext());
919 break;
920 case ICmpInst::ICMP_ULE:
921 case ICmpInst::ICMP_SLE:
922 case ICmpInst::ICMP_EQ:
923 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
924 break;
925 case ICmpInst::ICMP_NE:
926 case ICmpInst::ICMP_UGE:
927 case ICmpInst::ICMP_SGE:
928 case ICmpInst::ICMP_UGT:
929 case ICmpInst::ICMP_SGT:
930 break; // no change.
931 }
932 ICI->replaceAllUsesWith(LV);
933 ICI->eraseFromParent();
934 }
935 LI->eraseFromParent();
936 }
Victor Hernandez5d034492009-09-18 22:35:49 +0000937
938 // If the initialization boolean was used, insert it, otherwise delete it.
939 if (!InitBoolUsed) {
940 while (!InitBool->use_empty()) // Delete initializations
Chandler Carruthcdf47882014-03-09 03:16:01 +0000941 cast<StoreInst>(InitBool->user_back())->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000942 delete InitBool;
943 } else
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000944 GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
Victor Hernandez5d034492009-09-18 22:35:49 +0000945
Chris Lattner7939f792010-02-25 22:33:52 +0000946 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez5d034492009-09-18 22:35:49 +0000947 GV->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000948 CI->eraseFromParent();
949
950 // To further other optimizations, loop over all users of NewGV and try to
951 // constant prop them. This will promote GEP instructions with constant
952 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000953 ConstantPropUsersOf(NewGV, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000954 if (RepValue != NewGV)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000955 ConstantPropUsersOf(RepValue, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000956
957 return NewGV;
958}
959
James Molloyea31ad32015-11-13 11:05:07 +0000960/// Scan the use-list of V checking to make sure that there are no complex uses
961/// of V. We permit simple things like dereferencing the pointer, but not
962/// storing through the address, unless it is to the specified global.
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000963static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
964 const GlobalVariable *GV,
Craig Topper71b7b682014-08-21 05:55:13 +0000965 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000966 for (const User *U : V->users()) {
967 const Instruction *Inst = cast<Instruction>(U);
Gabor Greif08355d62010-04-06 19:14:05 +0000968
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000969 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
970 continue; // Fine, ignore.
971 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000972
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000973 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000974 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
975 return false; // Storing the pointer itself... bad.
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000976 continue; // Otherwise, storing through it, or storing into GV... fine.
977 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000978
Chris Lattnerb9801ff2010-04-10 18:19:22 +0000979 // Must index into the array and into the struct.
980 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000981 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000982 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000983 continue;
984 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000985
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000986 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattner6eed0e72007-09-13 16:37:20 +0000987 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
988 // cycles.
David Blaikie70573dc2014-11-19 07:49:26 +0000989 if (PHIs.insert(PN).second)
Chris Lattner5d13fb532007-09-14 03:41:21 +0000990 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
991 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000992 continue;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000993 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000994
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000995 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000996 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
997 return false;
998 continue;
999 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001000
Chris Lattnerf0eb5682008-12-15 21:08:54 +00001001 return false;
1002 }
Chris Lattnerc0677c02004-12-02 07:11:07 +00001003 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +00001004}
1005
James Molloyea31ad32015-11-13 11:05:07 +00001006/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
1007/// allocation into loads from the global and uses of the resultant pointer.
1008/// Further, delete the store into GV. This assumes that these value pass the
Chris Lattner24d3d422006-09-30 23:32:09 +00001009/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001010static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
Chris Lattner24d3d422006-09-30 23:32:09 +00001011 GlobalVariable *GV) {
1012 while (!Alloc->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001013 Instruction *U = cast<Instruction>(*Alloc->user_begin());
Chris Lattnerba98f892007-09-13 18:00:31 +00001014 Instruction *InsertPt = U;
Chris Lattner24d3d422006-09-30 23:32:09 +00001015 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
1016 // If this is the store of the allocation into the global, remove it.
1017 if (SI->getOperand(1) == GV) {
1018 SI->eraseFromParent();
1019 continue;
1020 }
Chris Lattnerba98f892007-09-13 18:00:31 +00001021 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
1022 // Insert the load in the corresponding predecessor, not right before the
1023 // PHI.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001024 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001025 } else if (isa<BitCastInst>(U)) {
1026 // Must be bitcast between the malloc and store to initialize the global.
1027 ReplaceUsesOfMallocWithGlobal(U, GV);
1028 U->eraseFromParent();
1029 continue;
1030 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
1031 // If this is a "GEP bitcast" and the user is a store to the global, then
1032 // just process it as a bitcast.
1033 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +00001034 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back()))
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001035 if (SI->getOperand(1) == GV) {
1036 // Must be bitcast GEP between the malloc and store to initialize
1037 // the global.
1038 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1039 GEPI->eraseFromParent();
1040 continue;
1041 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001042 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001043
Chris Lattner24d3d422006-09-30 23:32:09 +00001044 // Insert a load from the global, and use it instead of the malloc.
James Y Knight14359ef2019-02-01 20:44:24 +00001045 Value *NL =
1046 new LoadInst(GV->getValueType(), GV, GV->getName() + ".val", InsertPt);
Chris Lattner24d3d422006-09-30 23:32:09 +00001047 U->replaceUsesOfWith(Alloc, NL);
1048 }
1049}
1050
James Molloyea31ad32015-11-13 11:05:07 +00001051/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
1052/// perform heap SRA on. This permits GEP's that index through the array and
1053/// struct field, icmps of null, and PHIs.
Gabor Greif5d5db532010-04-01 08:21:08 +00001054static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +00001055 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1056 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
Chris Lattner56b55382008-12-16 21:24:51 +00001057 // We permit two users of the load: setcc comparing against the null
1058 // pointer, and a getelementptr of a specific form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001059 for (const User *U : V->users()) {
1060 const Instruction *UI = cast<Instruction>(U);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001061
Chris Lattner56b55382008-12-16 21:24:51 +00001062 // Comparison against null is ok.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001063 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001064 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1065 return false;
1066 continue;
1067 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001068
Chris Lattner56b55382008-12-16 21:24:51 +00001069 // getelementptr is also ok, but only a simple form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001070 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001071 // Must index into the array and into the struct.
1072 if (GEPI->getNumOperands() < 3)
1073 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001074
Chris Lattner56b55382008-12-16 21:24:51 +00001075 // Otherwise the GEP is ok.
1076 continue;
1077 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001078
Chandler Carruthcdf47882014-03-09 03:16:01 +00001079 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001080 if (!LoadUsingPHIsPerLoad.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001081 // This means some phi nodes are dependent on each other.
1082 // Avoid infinite looping!
1083 return false;
David Blaikie70573dc2014-11-19 07:49:26 +00001084 if (!LoadUsingPHIs.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001085 // If we have already analyzed this PHI, then it is safe.
Chris Lattner56b55382008-12-16 21:24:51 +00001086 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001087
Chris Lattner222ef4c2008-12-17 05:28:49 +00001088 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng83689442009-06-02 00:56:07 +00001089 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1090 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001091 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001092
Chris Lattner56b55382008-12-16 21:24:51 +00001093 continue;
Chris Lattner24d3d422006-09-30 23:32:09 +00001094 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001095
Chris Lattner56b55382008-12-16 21:24:51 +00001096 // Otherwise we don't know what this is, not ok.
1097 return false;
1098 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001099
Chris Lattner56b55382008-12-16 21:24:51 +00001100 return true;
1101}
1102
James Molloyea31ad32015-11-13 11:05:07 +00001103/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1104/// return true.
Gabor Greif5d5db532010-04-01 08:21:08 +00001105static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez5d034492009-09-18 22:35:49 +00001106 Instruction *StoredVal) {
Gabor Greif5d5db532010-04-01 08:21:08 +00001107 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1108 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001109 for (const User *U : GV->users())
1110 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
Evan Cheng83689442009-06-02 00:56:07 +00001111 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1112 LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001113 return false;
Evan Cheng83689442009-06-02 00:56:07 +00001114 LoadUsingPHIsPerLoad.clear();
1115 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001116
Chris Lattner222ef4c2008-12-17 05:28:49 +00001117 // If we reach here, we know that all uses of the loads and transitive uses
1118 // (through PHI nodes) are simple enough to transform. However, we don't know
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001119 // that all inputs the to the PHI nodes are in the same equivalence sets.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001120 // Check to verify that all operands of the PHIs are either PHIS that can be
1121 // transformed, loads from GV, or MI itself.
Craig Topper46276792014-08-24 23:23:06 +00001122 for (const PHINode *PN : LoadUsingPHIs) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001123 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1124 Value *InVal = PN->getIncomingValue(op);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001125
Chris Lattner222ef4c2008-12-17 05:28:49 +00001126 // PHI of the stored value itself is ok.
Victor Hernandez5d034492009-09-18 22:35:49 +00001127 if (InVal == StoredVal) continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001128
Gabor Greif5d5db532010-04-01 08:21:08 +00001129 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001130 // One of the PHIs in our set is (optimistically) ok.
1131 if (LoadUsingPHIs.count(InPN))
1132 continue;
1133 return false;
1134 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001135
Chris Lattner222ef4c2008-12-17 05:28:49 +00001136 // Load from GV is ok.
Gabor Greif5d5db532010-04-01 08:21:08 +00001137 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattner222ef4c2008-12-17 05:28:49 +00001138 if (LI->getOperand(0) == GV)
1139 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001140
Chris Lattner222ef4c2008-12-17 05:28:49 +00001141 // UNDEF? NULL?
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001142
Chris Lattner222ef4c2008-12-17 05:28:49 +00001143 // Anything else is rejected.
1144 return false;
1145 }
1146 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001147
Chris Lattner24d3d422006-09-30 23:32:09 +00001148 return true;
1149}
1150
Chris Lattner222ef4c2008-12-17 05:28:49 +00001151static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001152 DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues,
1153 std::vector<std::pair<PHINode *, unsigned>> &PHIsToRewrite) {
1154 std::vector<Value *> &FieldVals = InsertedScalarizedValues[V];
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001155
Chris Lattner222ef4c2008-12-17 05:28:49 +00001156 if (FieldNo >= FieldVals.size())
1157 FieldVals.resize(FieldNo+1);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001158
Chris Lattner222ef4c2008-12-17 05:28:49 +00001159 // If we already have this value, just reuse the previously scalarized
1160 // version.
1161 if (Value *FieldVal = FieldVals[FieldNo])
1162 return FieldVal;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001163
Chris Lattner222ef4c2008-12-17 05:28:49 +00001164 // Depending on what instruction this is, we have several cases.
1165 Value *Result;
1166 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1167 // This is a scalarized version of the load from the global. Just create
1168 // a new Load of the scalarized global.
James Y Knight14359ef2019-02-01 20:44:24 +00001169 Value *V = GetHeapSROAValue(LI->getOperand(0), FieldNo,
1170 InsertedScalarizedValues, PHIsToRewrite);
1171 Result = new LoadInst(V->getType()->getPointerElementType(), V,
1172 LI->getName() + ".f" + Twine(FieldNo), LI);
David Blaikie741c8f82015-03-14 01:53:18 +00001173 } else {
1174 PHINode *PN = cast<PHINode>(V);
Chris Lattner222ef4c2008-12-17 05:28:49 +00001175 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1176 // field.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001177
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001178 PointerType *PTy = cast<PointerType>(PN->getType());
1179 StructType *ST = cast<StructType>(PTy->getElementType());
1180
1181 unsigned AS = PTy->getAddressSpace();
Jay Foade0938d82011-03-30 11:19:20 +00001182 PHINode *NewPN =
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001183 PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS),
Jay Foad52131342011-03-30 11:28:46 +00001184 PN->getNumIncomingValues(),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001185 PN->getName()+".f"+Twine(FieldNo), PN);
Jay Foade0938d82011-03-30 11:19:20 +00001186 Result = NewPN;
Chris Lattner222ef4c2008-12-17 05:28:49 +00001187 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
Chris Lattner222ef4c2008-12-17 05:28:49 +00001188 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001189
Chris Lattner222ef4c2008-12-17 05:28:49 +00001190 return FieldVals[FieldNo] = Result;
Chris Lattnerba98f892007-09-13 18:00:31 +00001191}
1192
James Molloyea31ad32015-11-13 11:05:07 +00001193/// Given a load instruction and a value derived from the load, rewrite the
1194/// derived value to use the HeapSRoA'd load.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001195static void RewriteHeapSROALoadUser(Instruction *LoadUser,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001196 DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues,
1197 std::vector<std::pair<PHINode *, unsigned>> &PHIsToRewrite) {
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001198 // If this is a comparison against null, handle it.
1199 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1200 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1201 // If we have a setcc of the loaded pointer, we can use a setcc of any
1202 // field.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001203 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner46b5c642009-11-06 04:27:31 +00001204 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001205
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001206 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001207 Constant::getNullValue(NPtr->getType()),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001208 SCI->getName());
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001209 SCI->replaceAllUsesWith(New);
1210 SCI->eraseFromParent();
1211 return;
1212 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001213
Chris Lattner222ef4c2008-12-17 05:28:49 +00001214 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnerba98f892007-09-13 18:00:31 +00001215 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1216 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1217 && "Unexpected GEPI!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001218
Chris Lattnerba98f892007-09-13 18:00:31 +00001219 // Load the pointer for this field.
1220 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner222ef4c2008-12-17 05:28:49 +00001221 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner46b5c642009-11-06 04:27:31 +00001222 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001223
Chris Lattnerba98f892007-09-13 18:00:31 +00001224 // Create the new GEP idx vector.
1225 SmallVector<Value*, 8> GEPIdx;
1226 GEPIdx.push_back(GEPI->getOperand(1));
1227 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001228
David Blaikie22319eb2015-03-14 19:24:04 +00001229 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx,
Gabor Greife9ecc682008-04-06 20:25:17 +00001230 GEPI->getName(), GEPI);
Chris Lattnerba98f892007-09-13 18:00:31 +00001231 GEPI->replaceAllUsesWith(NGEPI);
1232 GEPI->eraseFromParent();
1233 return;
1234 }
Chris Lattner011f91b2007-09-13 21:31:36 +00001235
Chris Lattner222ef4c2008-12-17 05:28:49 +00001236 // Recursively transform the users of PHI nodes. This will lazily create the
1237 // PHIs that are needed for individual elements. Keep track of what PHIs we
1238 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1239 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1240 // already been seen first by another load, so its uses have already been
1241 // processed.
1242 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner5cf753c2011-07-21 06:21:31 +00001243 if (!InsertedScalarizedValues.insert(std::make_pair(PN,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001244 std::vector<Value *>())).second)
Chris Lattner5cf753c2011-07-21 06:21:31 +00001245 return;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001246
Chris Lattner222ef4c2008-12-17 05:28:49 +00001247 // If this is the first time we've seen this PHI, recursively process all
1248 // users.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001249 for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001250 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001251 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001252 }
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001253}
1254
James Molloyea31ad32015-11-13 11:05:07 +00001255/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1256/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1257/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001258static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001259 DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues,
1260 std::vector<std::pair<PHINode *, unsigned> > &PHIsToRewrite) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001261 for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001262 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001263 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001264 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001265
Chris Lattner222ef4c2008-12-17 05:28:49 +00001266 if (Load->use_empty()) {
1267 Load->eraseFromParent();
1268 InsertedScalarizedValues.erase(Load);
1269 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001270}
1271
James Molloyea31ad32015-11-13 11:05:07 +00001272/// CI is an allocation of an array of structures. Break it up into multiple
1273/// allocations of arrays of the fields.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001274static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
Mehdi Amini46a43552015-03-04 18:43:29 +00001275 Value *NElems, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001276 const TargetLibraryInfo *TLI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001277 LLVM_DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI
1278 << '\n');
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001279 Type *MAT = getMallocAllocatedType(CI, TLI);
Chris Lattner229907c2011-07-18 04:54:35 +00001280 StructType *STy = cast<StructType>(MAT);
Victor Hernandez5d034492009-09-18 22:35:49 +00001281
1282 // There is guaranteed to be at least one use of the malloc (storing
1283 // it into GV). If there are other uses, change them to be uses of
1284 // the global to simplify later code. This also deletes the store
1285 // into GV.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001286 ReplaceUsesOfMallocWithGlobal(CI, GV);
1287
Victor Hernandez5d034492009-09-18 22:35:49 +00001288 // Okay, at this point, there are no users of the malloc. Insert N
1289 // new mallocs at the same place as CI, and N globals.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001290 std::vector<Value *> FieldGlobals;
1291 std::vector<Value *> FieldMallocs;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001292
David Majnemerfadc6db2016-04-29 08:07:22 +00001293 SmallVector<OperandBundleDef, 1> OpBundles;
1294 CI->getOperandBundlesAsDefs(OpBundles);
1295
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001296 unsigned AS = GV->getType()->getPointerAddressSpace();
Victor Hernandez5d034492009-09-18 22:35:49 +00001297 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
Chris Lattner229907c2011-07-18 04:54:35 +00001298 Type *FieldTy = STy->getElementType(FieldNo);
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001299 PointerType *PFieldTy = PointerType::get(FieldTy, AS);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001300
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001301 GlobalVariable *NGV = new GlobalVariable(
1302 *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage,
1303 Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo),
1304 nullptr, GV->getThreadLocalMode());
Sergei Larin94be2de2016-01-22 21:18:20 +00001305 NGV->copyAttributesFrom(GV);
Victor Hernandez5d034492009-09-18 22:35:49 +00001306 FieldGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001307
Mehdi Amini46a43552015-03-04 18:43:29 +00001308 unsigned TypeSize = DL.getTypeAllocSize(FieldTy);
Chris Lattner229907c2011-07-18 04:54:35 +00001309 if (StructType *ST = dyn_cast<StructType>(FieldTy))
Mehdi Amini46a43552015-03-04 18:43:29 +00001310 TypeSize = DL.getStructLayout(ST)->getSizeInBytes();
1311 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
Victor Hernandezf3db9152009-11-07 00:16:28 +00001312 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1313 ConstantInt::get(IntPtrTy, TypeSize),
David Majnemerfadc6db2016-04-29 08:07:22 +00001314 NElems, OpBundles, nullptr,
Victor Hernandezf3db9152009-11-07 00:16:28 +00001315 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner0521c092010-02-26 18:23:13 +00001316 FieldMallocs.push_back(NMI);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001317 new StoreInst(NMI, NGV, CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001318 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001319
Victor Hernandez5d034492009-09-18 22:35:49 +00001320 // The tricky aspect of this transformation is handling the case when malloc
1321 // fails. In the original code, malloc failing would set the result pointer
1322 // of malloc to null. In this case, some mallocs could succeed and others
1323 // could fail. As such, we emit code that looks like this:
1324 // F0 = malloc(field0)
1325 // F1 = malloc(field1)
1326 // F2 = malloc(field2)
1327 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1328 // if (F0) { free(F0); F0 = 0; }
1329 // if (F1) { free(F1); F1 = 0; }
1330 // if (F2) { free(F2); F2 = 0; }
1331 // }
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001332 // The malloc can also fail if its argument is too large.
Gabor Greif218f5542010-06-24 14:42:01 +00001333 Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1334 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001335 ConstantZero, "isneg");
Victor Hernandez5d034492009-09-18 22:35:49 +00001336 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandezf3db9152009-11-07 00:16:28 +00001337 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1338 Constant::getNullValue(FieldMallocs[i]->getType()),
1339 "isnull");
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001340 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001341 }
1342
1343 // Split the basic block at the old malloc.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001344 BasicBlock *OrigBB = CI->getParent();
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001345 BasicBlock *ContBB =
1346 OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001347
Victor Hernandez5d034492009-09-18 22:35:49 +00001348 // Create the block to check the first condition. Put all these blocks at the
1349 // end of the function as they are unlikely to be executed.
Chris Lattner46b5c642009-11-06 04:27:31 +00001350 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1351 "malloc_ret_null",
Victor Hernandez5d034492009-09-18 22:35:49 +00001352 OrigBB->getParent());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001353
Victor Hernandez5d034492009-09-18 22:35:49 +00001354 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1355 // branch on RunningOr.
1356 OrigBB->getTerminator()->eraseFromParent();
1357 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001358
Victor Hernandez5d034492009-09-18 22:35:49 +00001359 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1360 // pointer, because some may be null while others are not.
1361 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
James Y Knight14359ef2019-02-01 20:44:24 +00001362 Value *GVVal =
1363 new LoadInst(cast<GlobalVariable>(FieldGlobals[i])->getValueType(),
1364 FieldGlobals[i], "tmp", NullPtrBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001365 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001366 Constant::getNullValue(GVVal->getType()));
Chris Lattner46b5c642009-11-06 04:27:31 +00001367 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez5d034492009-09-18 22:35:49 +00001368 OrigBB->getParent());
Chris Lattner46b5c642009-11-06 04:27:31 +00001369 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez5d034492009-09-18 22:35:49 +00001370 OrigBB->getParent());
Victor Hernandeze2971492009-10-24 04:23:03 +00001371 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1372 Cmp, NullPtrBlock);
Victor Hernandez5d034492009-09-18 22:35:49 +00001373
1374 // Fill in FreeBlock.
David Majnemerfadc6db2016-04-29 08:07:22 +00001375 CallInst::CreateFree(GVVal, OpBundles, BI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001376 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1377 FreeBlock);
1378 BranchInst::Create(NextBlock, FreeBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001379
Victor Hernandez5d034492009-09-18 22:35:49 +00001380 NullPtrBlock = NextBlock;
1381 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001382
Victor Hernandez5d034492009-09-18 22:35:49 +00001383 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001384
1385 // CI is no longer needed, remove it.
Victor Hernandez5d034492009-09-18 22:35:49 +00001386 CI->eraseFromParent();
1387
James Molloyea31ad32015-11-13 11:05:07 +00001388 /// As we process loads, if we can't immediately update all uses of the load,
1389 /// keep track of what scalarized loads are inserted for a given load.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001390 DenseMap<Value *, std::vector<Value *>> InsertedScalarizedValues;
Victor Hernandez5d034492009-09-18 22:35:49 +00001391 InsertedScalarizedValues[GV] = FieldGlobals;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001392
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001393 std::vector<std::pair<PHINode *, unsigned>> PHIsToRewrite;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001394
Victor Hernandez5d034492009-09-18 22:35:49 +00001395 // Okay, the malloc site is completely handled. All of the uses of GV are now
1396 // loads, and all uses of those loads are simple. Rewrite them to use loads
1397 // of the per-field globals instead.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001398 for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001399 Instruction *User = cast<Instruction>(*UI++);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001400
Victor Hernandez5d034492009-09-18 22:35:49 +00001401 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner46b5c642009-11-06 04:27:31 +00001402 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001403 continue;
1404 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001405
Victor Hernandez5d034492009-09-18 22:35:49 +00001406 // Must be a store of null.
1407 StoreInst *SI = cast<StoreInst>(User);
1408 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1409 "Unexpected heap-sra user!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001410
Victor Hernandez5d034492009-09-18 22:35:49 +00001411 // Insert a store of null into each global.
1412 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001413 Type *ValTy = cast<GlobalValue>(FieldGlobals[i])->getValueType();
1414 Constant *Null = Constant::getNullValue(ValTy);
Victor Hernandez5d034492009-09-18 22:35:49 +00001415 new StoreInst(Null, FieldGlobals[i], SI);
1416 }
1417 // Erase the original store.
1418 SI->eraseFromParent();
1419 }
1420
1421 // While we have PHIs that are interesting to rewrite, do it.
1422 while (!PHIsToRewrite.empty()) {
1423 PHINode *PN = PHIsToRewrite.back().first;
1424 unsigned FieldNo = PHIsToRewrite.back().second;
1425 PHIsToRewrite.pop_back();
1426 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1427 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1428
1429 // Add all the incoming values. This can materialize more phis.
1430 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1431 Value *InVal = PN->getIncomingValue(i);
1432 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001433 PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001434 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1435 }
1436 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001437
Victor Hernandez5d034492009-09-18 22:35:49 +00001438 // Drop all inter-phi links and any loads that made it this far.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001439 for (DenseMap<Value *, std::vector<Value *>>::iterator
Victor Hernandez5d034492009-09-18 22:35:49 +00001440 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1441 I != E; ++I) {
1442 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1443 PN->dropAllReferences();
1444 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1445 LI->dropAllReferences();
1446 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001447
Victor Hernandez5d034492009-09-18 22:35:49 +00001448 // Delete all the phis and loads now that inter-references are dead.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001449 for (DenseMap<Value *, std::vector<Value *>>::iterator
Victor Hernandez5d034492009-09-18 22:35:49 +00001450 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1451 I != E; ++I) {
1452 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1453 PN->eraseFromParent();
1454 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1455 LI->eraseFromParent();
1456 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001457
Victor Hernandez5d034492009-09-18 22:35:49 +00001458 // The old global is now dead, remove it.
1459 GV->eraseFromParent();
1460
1461 ++NumHeapSRA;
1462 return cast<GlobalVariable>(FieldGlobals[0]);
1463}
1464
James Molloyea31ad32015-11-13 11:05:07 +00001465/// This function is called when we see a pointer global variable with a single
1466/// value stored it that is a malloc or cast of malloc.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001467static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
Chris Lattner229907c2011-07-18 04:54:35 +00001468 Type *AllocTy,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001469 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001470 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +00001471 TargetLibraryInfo *TLI) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001472 // If this is a malloc of an abstract type, don't touch it.
1473 if (!AllocTy->isSized())
1474 return false;
1475
1476 // We can't optimize this global unless all uses of it are *known* to be
1477 // of the malloc value, not of the null initializer value (consider a use
1478 // that compares the global's value against zero to see if the malloc has
1479 // been reached). To do this, we check to see if all uses of the global
1480 // would trap if the global were null: this proves that they must all
1481 // happen after the malloc.
1482 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1483 return false;
1484
1485 // We can't optimize this if the malloc itself is used in a complex way,
1486 // for example, being stored into multiple globals. This allows the
Nick Lewyckybbd11562012-02-05 19:48:37 +00001487 // malloc to be stored into the specified global, loaded icmp'd, and
Victor Hernandez5d034492009-09-18 22:35:49 +00001488 // GEP'd. These are all things we could transform to using the global
1489 // for.
Evan Cheng21b588b2010-04-14 20:52:55 +00001490 SmallPtrSet<const PHINode*, 8> PHIs;
1491 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1492 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001493
1494 // If we have a global that is only initialized with a fixed size malloc,
1495 // transform the program to use global memory instead of malloc'd memory.
1496 // This eliminates dynamic allocation, avoids an indirection accessing the
1497 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez264da322009-10-16 23:12:25 +00001498 // We cannot optimize the malloc if we cannot determine malloc array size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001499 Value *NElems = getMallocArraySize(CI, DL, TLI, true);
Evan Cheng21b588b2010-04-14 20:52:55 +00001500 if (!NElems)
1501 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001502
Evan Cheng21b588b2010-04-14 20:52:55 +00001503 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1504 // Restrict this transformation to only working on small allocations
1505 // (2048 bytes currently), as we don't want to introduce a 16M global or
1506 // something.
Mehdi Amini46a43552015-03-04 18:43:29 +00001507 if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) {
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001508 OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001509 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001510 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001511
Evan Cheng21b588b2010-04-14 20:52:55 +00001512 // If the allocation is an array of structures, consider transforming this
1513 // into multiple malloc'd arrays, one for each field. This is basically
1514 // SRoA for malloc'd memory.
1515
JF Bastien800f87a2016-04-06 21:19:33 +00001516 if (Ordering != AtomicOrdering::NotAtomic)
Nick Lewycky52da72b2012-02-05 19:56:38 +00001517 return false;
1518
Evan Cheng21b588b2010-04-14 20:52:55 +00001519 // If this is an allocation of a fixed size array of structs, analyze as a
1520 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Gabor Greif218f5542010-06-24 14:42:01 +00001521 if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
Chris Lattner229907c2011-07-18 04:54:35 +00001522 if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
Evan Cheng21b588b2010-04-14 20:52:55 +00001523 AllocTy = AT->getElementType();
Gabor Greif218f5542010-06-24 14:42:01 +00001524
Chris Lattner229907c2011-07-18 04:54:35 +00001525 StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
Evan Cheng21b588b2010-04-14 20:52:55 +00001526 if (!AllocSTy)
1527 return false;
1528
1529 // This the structure has an unreasonable number of fields, leave it
1530 // alone.
1531 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1532 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1533
1534 // If this is a fixed size array, transform the Malloc to be an alloc of
1535 // structs. malloc [100 x struct],1 -> malloc struct, 100
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001536 if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001537 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
1538 unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes();
Evan Cheng21b588b2010-04-14 20:52:55 +00001539 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1540 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
David Majnemerfadc6db2016-04-29 08:07:22 +00001541 SmallVector<OperandBundleDef, 1> OpBundles;
1542 CI->getOperandBundlesAsDefs(OpBundles);
1543 Instruction *Malloc =
1544 CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, AllocSize, NumElements,
1545 OpBundles, nullptr, CI->getName());
Evan Cheng21b588b2010-04-14 20:52:55 +00001546 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1547 CI->replaceAllUsesWith(Cast);
1548 CI->eraseFromParent();
Nuno Lopes9792d682012-06-22 00:25:01 +00001549 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1550 CI = cast<CallInst>(BCI->getOperand(0));
1551 else
Nuno Lopes0b60ebb2012-06-22 00:29:58 +00001552 CI = cast<CallInst>(Malloc);
Evan Cheng21b588b2010-04-14 20:52:55 +00001553 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001554
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001555 PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL,
1556 TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001557 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001558 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001559
Victor Hernandez5d034492009-09-18 22:35:49 +00001560 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001561}
Victor Hernandez5d034492009-09-18 22:35:49 +00001562
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001563// Try to optimize globals based on the knowledge that only one value (besides
1564// its initializer) is ever stored to the global.
1565static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001566 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001567 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +00001568 TargetLibraryInfo *TLI) {
Chris Lattner1c731fa2008-12-15 21:20:32 +00001569 // Ignore no-op GEPs and bitcasts.
1570 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner09a52722004-10-09 21:48:45 +00001571
Chris Lattnere42eb312004-10-10 23:14:11 +00001572 // If we are dealing with a pointer global that is initialized to null and
1573 // only has one (non-null) value stored into it, then we can optimize any
1574 // users of the loaded value (often calls and loads) that would trap if the
1575 // value was null.
Duncan Sands19d0b472010-02-16 11:11:14 +00001576 if (GV->getInitializer()->getType()->isPointerTy() &&
Manoj Gupta77eeac32018-07-09 22:27:23 +00001577 GV->getInitializer()->isNullValue() &&
1578 !NullPointerIsDefined(
1579 nullptr /* F */,
1580 GV->getInitializer()->getType()->getPointerAddressSpace())) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001581 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1582 if (GV->getInitializer()->getType() != SOVC->getType())
Chris Lattner1a1acc22011-05-22 07:15:13 +00001583 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001584
Chris Lattnere42eb312004-10-10 23:14:11 +00001585 // Optimize away any trapping uses of the loaded value.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001586 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001587 return true;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001588 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1589 Type *MallocType = getMallocAllocatedType(CI, TLI);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001590 if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1591 Ordering, DL, TLI))
Victor Hernandezf3db9152009-11-07 00:16:28 +00001592 return true;
Chris Lattnere42eb312004-10-10 23:14:11 +00001593 }
Chris Lattner09a52722004-10-09 21:48:45 +00001594 }
Chris Lattner004e2502004-10-11 05:54:41 +00001595
Chris Lattner09a52722004-10-09 21:48:45 +00001596 return false;
1597}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001598
James Molloyea31ad32015-11-13 11:05:07 +00001599/// At this point, we have learned that the only two values ever stored into GV
1600/// are its initializer and OtherVal. See if we can shrink the global into a
1601/// boolean and select between the two values whenever it is used. This exposes
1602/// the values to other scalar optimizations.
Lang Hames459b5dc2014-03-23 04:22:31 +00001603static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001604 Type *GVElType = GV->getValueType();
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001605
Lang Hames459b5dc2014-03-23 04:22:31 +00001606 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1607 // an FP value, pointer or vector, don't do this optimization because a select
1608 // between them is very expensive and unlikely to lead to later
1609 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1610 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner46b5c642009-11-06 04:27:31 +00001611 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001612 GVElType->isFloatingPointTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001613 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner20bbac32008-01-14 01:17:44 +00001614 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001615
Chris Lattner20bbac32008-01-14 01:17:44 +00001616 // Walk the use list of the global seeing if all the uses are load or store.
1617 // If there is anything else, bail out.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001618 for (User *U : GV->users())
Gabor Greifa75ed762010-07-12 14:13:15 +00001619 if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
Chris Lattner20bbac32008-01-14 01:17:44 +00001620 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001621
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001622 LLVM_DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n");
Lang Hames459b5dc2014-03-23 04:22:31 +00001623
1624 // Create the new global, initializing it to false.
1625 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1626 false,
1627 GlobalValue::InternalLinkage,
1628 ConstantInt::getFalse(GV->getContext()),
1629 GV->getName()+".b",
1630 GV->getThreadLocalMode(),
1631 GV->getType()->getAddressSpace());
Sergei Larin94be2de2016-01-22 21:18:20 +00001632 NewGV->copyAttributesFrom(GV);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001633 GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
Lang Hames459b5dc2014-03-23 04:22:31 +00001634
Chris Lattner40e4cec2004-12-12 05:53:50 +00001635 Constant *InitVal = GV->getInitializer();
Chris Lattner46b5c642009-11-06 04:27:31 +00001636 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Lang Hames459b5dc2014-03-23 04:22:31 +00001637 "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001638
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001639 SmallVector<DIGlobalVariableExpression *, 1> GVs;
1640 GV->getDebugInfo(GVs);
1641
Lang Hames459b5dc2014-03-23 04:22:31 +00001642 // If initialized to zero and storing one into the global, we can use a cast
1643 // instead of a select to synthesize the desired value.
1644 bool IsOneZero = false;
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001645 bool EmitOneOrZero = true;
Sanjay Patel991834a2019-08-09 12:43:25 +00001646 auto *CI = dyn_cast<ConstantInt>(OtherVal);
1647 if (CI && CI->getValue().getActiveBits() <= 64) {
Lang Hames459b5dc2014-03-23 04:22:31 +00001648 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001649
Sanjay Patel991834a2019-08-09 12:43:25 +00001650 auto *CIInit = dyn_cast<ConstantInt>(GV->getInitializer());
1651 if (CIInit && CIInit->getValue().getActiveBits() <= 64) {
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001652 uint64_t ValInit = CIInit->getZExtValue();
1653 uint64_t ValOther = CI->getZExtValue();
1654 uint64_t ValMinus = ValOther - ValInit;
1655
1656 for(auto *GVe : GVs){
1657 DIGlobalVariable *DGV = GVe->getVariable();
1658 DIExpression *E = GVe->getExpression();
Markus Lavina7780742019-05-06 07:20:56 +00001659 const DataLayout &DL = GV->getParent()->getDataLayout();
1660 unsigned SizeInOctets =
1661 DL.getTypeAllocSizeInBits(NewGV->getType()->getElementType()) / 8;
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001662
1663 // It is expected that the address of global optimized variable is on
1664 // top of the stack. After optimization, value of that variable will
1665 // be ether 0 for initial value or 1 for other value. The following
1666 // expression should return constant integer value depending on the
1667 // value at global object address:
1668 // val * (ValOther - ValInit) + ValInit:
1669 // DW_OP_deref DW_OP_constu <ValMinus>
1670 // DW_OP_mul DW_OP_constu <ValInit> DW_OP_plus DW_OP_stack_value
Adrian Prantl210a29d2018-04-27 21:41:36 +00001671 SmallVector<uint64_t, 12> Ops = {
Markus Lavina7780742019-05-06 07:20:56 +00001672 dwarf::DW_OP_deref_size, SizeInOctets,
1673 dwarf::DW_OP_constu, ValMinus,
1674 dwarf::DW_OP_mul, dwarf::DW_OP_constu, ValInit,
Adrian Prantl210a29d2018-04-27 21:41:36 +00001675 dwarf::DW_OP_plus};
Petar Jovanovice85bbf52019-05-20 10:35:57 +00001676 bool WithStackValue = true;
1677 E = DIExpression::prependOpcodes(E, Ops, WithStackValue);
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001678 DIGlobalVariableExpression *DGVE =
1679 DIGlobalVariableExpression::get(NewGV->getContext(), DGV, E);
1680 NewGV->addDebugInfo(DGVE);
1681 }
1682 EmitOneOrZero = false;
1683 }
1684 }
1685
1686 if (EmitOneOrZero) {
1687 // FIXME: This will only emit address for debugger on which will
1688 // be written only 0 or 1.
1689 for(auto *GV : GVs)
1690 NewGV->addDebugInfo(GV);
1691 }
1692
Lang Hames459b5dc2014-03-23 04:22:31 +00001693 while (!GV->use_empty()) {
1694 Instruction *UI = cast<Instruction>(GV->user_back());
1695 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1696 // Change the store into a boolean store.
1697 bool StoringOther = SI->getOperand(0) == OtherVal;
1698 // Only do this if we weren't storing a loaded value.
1699 Value *StoreVal;
1700 if (StoringOther || SI->getOperand(0) == InitVal) {
1701 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1702 StoringOther);
Bill Wendling7297b862013-02-13 23:00:51 +00001703 } else {
Lang Hames459b5dc2014-03-23 04:22:31 +00001704 // Otherwise, we are storing a previously loaded copy. To do this,
1705 // change the copy from copying the original value to just copying the
1706 // bool.
1707 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1708
1709 // If we've already replaced the input, StoredVal will be a cast or
1710 // select instruction. If not, it will be a load of the original
1711 // global.
1712 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1713 assert(LI->getOperand(0) == GV && "Not a copy!");
1714 // Insert a new load, to preserve the saved value.
James Y Knight14359ef2019-02-01 20:44:24 +00001715 StoreVal = new LoadInst(NewGV->getValueType(), NewGV,
1716 LI->getName() + ".b", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001717 LI->getOrdering(), LI->getSyncScopeID(), LI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001718 } else {
1719 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1720 "This is not a form that we understand!");
1721 StoreVal = StoredVal->getOperand(0);
1722 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1723 }
Chris Lattner745196a2004-12-12 19:34:41 +00001724 }
Jordan Rupprecht2fed6ac2018-10-23 16:35:51 +00001725 StoreInst *NSI =
1726 new StoreInst(StoreVal, NewGV, false, 0, SI->getOrdering(),
1727 SI->getSyncScopeID(), SI);
1728 NSI->setDebugLoc(SI->getDebugLoc());
Lang Hames459b5dc2014-03-23 04:22:31 +00001729 } else {
1730 // Change the load into a load of bool then a select.
1731 LoadInst *LI = cast<LoadInst>(UI);
James Y Knight14359ef2019-02-01 20:44:24 +00001732 LoadInst *NLI =
1733 new LoadInst(NewGV->getValueType(), NewGV, LI->getName() + ".b",
1734 false, 0, LI->getOrdering(), LI->getSyncScopeID(), LI);
Jordan Rupprecht2fed6ac2018-10-23 16:35:51 +00001735 Instruction *NSI;
Lang Hames459b5dc2014-03-23 04:22:31 +00001736 if (IsOneZero)
1737 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1738 else
1739 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1740 NSI->takeName(LI);
Jordan Rupprecht2fed6ac2018-10-23 16:35:51 +00001741 // Since LI is split into two instructions, NLI and NSI both inherit the
1742 // same DebugLoc
1743 NLI->setDebugLoc(LI->getDebugLoc());
1744 NSI->setDebugLoc(LI->getDebugLoc());
Lang Hames459b5dc2014-03-23 04:22:31 +00001745 LI->replaceAllUsesWith(NSI);
Devang Patelfc507a12009-03-06 01:39:36 +00001746 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001747 UI->eraseFromParent();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001748 }
1749
Lang Hames459b5dc2014-03-23 04:22:31 +00001750 // Retain the name of the old global variable. People who are debugging their
1751 // programs may expect these variables to be named the same.
1752 NewGV->takeName(GV);
1753 GV->eraseFromParent();
Chris Lattner20bbac32008-01-14 01:17:44 +00001754 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001755}
1756
Florian Hahna1cc8482018-06-12 11:16:56 +00001757static bool deleteIfDead(
1758 GlobalValue &GV, SmallPtrSetImpl<const Comdat *> &NotDiscardableComdats) {
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001759 GV.removeDeadConstantUsers();
1760
Mehdi Aminid8803092016-09-15 20:26:27 +00001761 if (!GV.isDiscardableIfUnused() && !GV.isDeclaration())
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001762 return false;
1763
1764 if (const Comdat *C = GV.getComdat())
1765 if (!GV.hasLocalLinkage() && NotDiscardableComdats.count(C))
1766 return false;
1767
1768 bool Dead;
1769 if (auto *F = dyn_cast<Function>(&GV))
Mehdi Aminid8803092016-09-15 20:26:27 +00001770 Dead = (F->isDeclaration() && F->use_empty()) || F->isDefTriviallyDead();
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001771 else
1772 Dead = GV.use_empty();
1773 if (!Dead)
1774 return false;
1775
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001776 LLVM_DEBUG(dbgs() << "GLOBAL DEAD: " << GV << "\n");
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001777 GV.eraseFromParent();
1778 ++NumDeleted;
1779 return true;
1780}
Chris Lattner40e4cec2004-12-12 05:53:50 +00001781
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001782static bool isPointerValueDeadOnEntryToFunction(
1783 const Function *F, GlobalValue *GV,
1784 function_ref<DominatorTree &(Function &)> LookupDomTree) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001785 // Find all uses of GV. We expect them all to be in F, and if we can't
1786 // identify any of the uses we bail out.
1787 //
1788 // On each of these uses, identify if the memory that GV points to is
1789 // used/required/live at the start of the function. If it is not, for example
1790 // if the first thing the function does is store to the GV, the GV can
1791 // possibly be demoted.
1792 //
1793 // We don't do an exhaustive search for memory operations - simply look
1794 // through bitcasts as they're quite common and benign.
1795 const DataLayout &DL = GV->getParent()->getDataLayout();
1796 SmallVector<LoadInst *, 4> Loads;
1797 SmallVector<StoreInst *, 4> Stores;
1798 for (auto *U : GV->users()) {
1799 if (Operator::getOpcode(U) == Instruction::BitCast) {
1800 for (auto *UU : U->users()) {
1801 if (auto *LI = dyn_cast<LoadInst>(UU))
1802 Loads.push_back(LI);
1803 else if (auto *SI = dyn_cast<StoreInst>(UU))
1804 Stores.push_back(SI);
1805 else
1806 return false;
1807 }
1808 continue;
1809 }
1810
1811 Instruction *I = dyn_cast<Instruction>(U);
1812 if (!I)
1813 return false;
1814 assert(I->getParent()->getParent() == F);
1815
1816 if (auto *LI = dyn_cast<LoadInst>(I))
1817 Loads.push_back(LI);
1818 else if (auto *SI = dyn_cast<StoreInst>(I))
1819 Stores.push_back(SI);
1820 else
1821 return false;
1822 }
1823
1824 // We have identified all uses of GV into loads and stores. Now check if all
1825 // of them are known not to depend on the value of the global at the function
1826 // entry point. We do this by ensuring that every load is dominated by at
1827 // least one store.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001828 auto &DT = LookupDomTree(*const_cast<Function *>(F));
James Molloy9c7d4d82015-11-15 14:21:37 +00001829
James Molloyd4d23572015-11-16 10:16:22 +00001830 // The below check is quadratic. Check we're not going to do too many tests.
1831 // FIXME: Even though this will always have worst-case quadratic time, we
1832 // could put effort into minimizing the average time by putting stores that
1833 // have been shown to dominate at least one load at the beginning of the
1834 // Stores array, making subsequent dominance checks more likely to succeed
1835 // early.
1836 //
1837 // The threshold here is fairly large because global->local demotion is a
1838 // very powerful optimization should it fire.
1839 const unsigned Threshold = 100;
1840 if (Loads.size() * Stores.size() > Threshold)
1841 return false;
1842
James Molloy9c7d4d82015-11-15 14:21:37 +00001843 for (auto *L : Loads) {
1844 auto *LTy = L->getType();
David Majnemer0a16c222016-08-11 21:15:00 +00001845 if (none_of(Stores, [&](const StoreInst *S) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001846 auto *STy = S->getValueOperand()->getType();
1847 // The load is only dominated by the store if DomTree says so
1848 // and the number of bits loaded in L is less than or equal to
1849 // the number of bits stored in S.
1850 return DT.dominates(S, L) &&
1851 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy);
1852 }))
1853 return false;
1854 }
1855 // All loads have known dependences inside F, so the global can be localized.
1856 return true;
1857}
1858
James Molloy1d695a02015-11-19 18:04:33 +00001859/// C may have non-instruction users. Can all of those users be turned into
1860/// instructions?
1861static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) {
1862 // We don't do this exhaustively. The most common pattern that we really need
1863 // to care about is a constant GEP or constant bitcast - so just looking
1864 // through one single ConstantExpr.
1865 //
1866 // The set of constants that this function returns true for must be able to be
1867 // handled by makeAllConstantUsesInstructions.
1868 for (auto *U : C->users()) {
1869 if (isa<Instruction>(U))
1870 continue;
1871 if (!isa<ConstantExpr>(U))
1872 // Non instruction, non-constantexpr user; cannot convert this.
1873 return false;
1874 for (auto *UU : U->users())
1875 if (!isa<Instruction>(UU))
1876 // A constantexpr used by another constant. We don't try and recurse any
1877 // further but just bail out at this point.
1878 return false;
1879 }
1880
1881 return true;
1882}
1883
1884/// C may have non-instruction users, and
1885/// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the
1886/// non-instruction users to instructions.
1887static void makeAllConstantUsesInstructions(Constant *C) {
1888 SmallVector<ConstantExpr*,4> Users;
1889 for (auto *U : C->users()) {
1890 if (isa<ConstantExpr>(U))
1891 Users.push_back(cast<ConstantExpr>(U));
1892 else
1893 // We should never get here; allNonInstructionUsersCanBeMadeInstructions
1894 // should not have returned true for C.
1895 assert(
1896 isa<Instruction>(U) &&
1897 "Can't transform non-constantexpr non-instruction to instruction!");
1898 }
1899
1900 SmallVector<Value*,4> UUsers;
1901 for (auto *U : Users) {
1902 UUsers.clear();
1903 for (auto *UU : U->users())
1904 UUsers.push_back(UU);
1905 for (auto *UU : UUsers) {
1906 Instruction *UI = cast<Instruction>(UU);
1907 Instruction *NewU = U->getAsInstruction();
1908 NewU->insertBefore(UI);
1909 UI->replaceUsesOfWith(U, NewU);
1910 }
Eli Friedman10ab9232017-04-27 18:39:08 +00001911 // We've replaced all the uses, so destroy the constant. (destroyConstant
1912 // will update value handles and metadata.)
1913 U->destroyConstant();
James Molloy1d695a02015-11-19 18:04:33 +00001914 }
1915}
1916
James Molloyea31ad32015-11-13 11:05:07 +00001917/// Analyze the specified global variable and optimize
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001918/// it if possible. If we make a change, return true.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001919static bool processInternalGlobal(
1920 GlobalVariable *GV, const GlobalStatus &GS, TargetLibraryInfo *TLI,
1921 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001922 auto &DL = GV->getParent()->getDataLayout();
James Molloy9c7d4d82015-11-15 14:21:37 +00001923 // If this is a first class global and has only one accessing function and
1924 // this function is non-recursive, we replace the global with a local alloca
1925 // in this function.
Alexey Samsonova1944e62013-10-07 19:03:24 +00001926 //
Alp Tokerf907b892013-12-05 05:44:44 +00001927 // NOTE: It doesn't make sense to promote non-single-value types since we
Alexey Samsonova1944e62013-10-07 19:03:24 +00001928 // are just replacing static memory to stack memory.
1929 //
1930 // If the global is in different address space, don't bring it to stack.
1931 if (!GS.HasMultipleAccessingFunctions &&
James Molloy1d695a02015-11-19 18:04:33 +00001932 GS.AccessingFunction &&
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001933 GV->getValueType()->isSingleValueType() &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001934 GV->getType()->getAddressSpace() == 0 &&
1935 !GV->isExternallyInitialized() &&
James Molloy1d695a02015-11-19 18:04:33 +00001936 allNonInstructionUsersCanBeMadeInstructions(GV) &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001937 GS.AccessingFunction->doesNotRecurse() &&
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001938 isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV,
1939 LookupDomTree)) {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001940 const DataLayout &DL = GV->getParent()->getDataLayout();
1941
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001942 LLVM_DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n");
Alexey Samsonova1944e62013-10-07 19:03:24 +00001943 Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1944 ->getEntryBlock().begin());
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001945 Type *ElemTy = GV->getValueType();
Alexey Samsonova1944e62013-10-07 19:03:24 +00001946 // FIXME: Pass Global's alignment when globals have alignment
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001947 AllocaInst *Alloca = new AllocaInst(ElemTy, DL.getAllocaAddrSpace(), nullptr,
Craig Topperf40110f2014-04-25 05:29:35 +00001948 GV->getName(), &FirstI);
Alexey Samsonova1944e62013-10-07 19:03:24 +00001949 if (!isa<UndefValue>(GV->getInitializer()))
1950 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1951
James Molloy1d695a02015-11-19 18:04:33 +00001952 makeAllConstantUsesInstructions(GV);
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001953
Alexey Samsonova1944e62013-10-07 19:03:24 +00001954 GV->replaceAllUsesWith(Alloca);
1955 GV->eraseFromParent();
1956 ++NumLocalized;
1957 return true;
1958 }
1959
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001960 // If the global is never loaded (but may be stored to), it is dead.
1961 // Delete it now.
Rafael Espindola045a78f2013-10-17 18:18:52 +00001962 if (!GS.IsLoaded) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001963 LLVM_DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001964
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001965 bool Changed;
1966 if (isLeakCheckerRoot(GV)) {
1967 // Delete any constant stores to the global.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001968 Changed = CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001969 } else {
1970 // Delete any stores we can find to the global. We may not be able to
1971 // make it completely dead though.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001972 Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001973 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001974
1975 // If the global is dead now, delete it.
1976 if (GV->use_empty()) {
1977 GV->eraseFromParent();
1978 ++NumDeleted;
1979 Changed = true;
1980 }
1981 return Changed;
1982
James Molloyeb040cc2016-04-25 10:48:29 +00001983 }
1984 if (GS.StoredType <= GlobalStatus::InitializerStored) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001985 LLVM_DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
Tim Northovered9117f2019-05-14 11:03:13 +00001986
1987 // Don't actually mark a global constant if it's atomic because atomic loads
1988 // are implemented by a trivial cmpxchg in some edge-cases and that usually
1989 // requires write access to the variable even if it's not actually changed.
1990 if (GS.Ordering == AtomicOrdering::NotAtomic)
1991 GV->setConstant(true);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001992
1993 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001994 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001995
1996 // If the global is dead now, just nuke it.
1997 if (GV->use_empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001998 LLVM_DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
1999 << "all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002000 GV->eraseFromParent();
2001 ++NumDeleted;
James Molloyeb040cc2016-04-25 10:48:29 +00002002 return true;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002003 }
2004
James Molloyeb040cc2016-04-25 10:48:29 +00002005 // Fall through to the next check; see if we can optimize further.
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002006 ++NumMarked;
James Molloyeb040cc2016-04-25 10:48:29 +00002007 }
2008 if (!GV->getInitializer()->getType()->isSingleValueType()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002009 const DataLayout &DL = GV->getParent()->getDataLayout();
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00002010 if (SRAGlobal(GV, DL))
Mehdi Amini46a43552015-03-04 18:43:29 +00002011 return true;
James Molloyeb040cc2016-04-25 10:48:29 +00002012 }
2013 if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002014 // If the initial value for the global was an undef value, and if only
2015 // one other value was stored into it, we can just change the
2016 // initializer to be the stored value, then delete all stores to the
2017 // global. This allows us to mark it constant.
2018 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
2019 if (isa<UndefValue>(GV->getInitializer())) {
2020 // Change the initial value here.
2021 GV->setInitializer(SOVConstant);
2022
2023 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002024 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002025
2026 if (GV->use_empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002027 LLVM_DEBUG(dbgs() << " *** Substituting initializer allowed us to "
2028 << "simplify all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002029 GV->eraseFromParent();
2030 ++NumDeleted;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002031 }
2032 ++NumSubstitute;
2033 return true;
2034 }
2035
2036 // Try to optimize globals based on the knowledge that only one value
2037 // (besides its initializer) is ever stored to the global.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00002038 if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002039 return true;
2040
Lang Hames459b5dc2014-03-23 04:22:31 +00002041 // Otherwise, if the global was not a boolean, we can shrink it to be a
2042 // boolean.
Eli Friedman33d37002013-09-09 22:00:13 +00002043 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) {
JF Bastien800f87a2016-04-06 21:19:33 +00002044 if (GS.Ordering == AtomicOrdering::NotAtomic) {
Lang Hames459b5dc2014-03-23 04:22:31 +00002045 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Eli Friedman33d37002013-09-09 22:00:13 +00002046 ++NumShrunkToBool;
2047 return true;
2048 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002049 }
Eli Friedman33d37002013-09-09 22:00:13 +00002050 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002051 }
2052
Chris Lattner1c4bddc2004-10-08 20:59:28 +00002053 return false;
2054}
2055
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002056/// Analyze the specified global variable and optimize it if possible. If we
2057/// make a change, return true.
2058static bool
2059processGlobal(GlobalValue &GV, TargetLibraryInfo *TLI,
2060 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002061 if (GV.getName().startswith("llvm."))
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002062 return false;
2063
2064 GlobalStatus GS;
2065
2066 if (GlobalStatus::analyzeGlobal(&GV, GS))
2067 return false;
2068
2069 bool Changed = false;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002070 if (!GS.IsCompared && !GV.hasGlobalUnnamedAddr()) {
2071 auto NewUnnamedAddr = GV.hasLocalLinkage() ? GlobalValue::UnnamedAddr::Global
2072 : GlobalValue::UnnamedAddr::Local;
2073 if (NewUnnamedAddr != GV.getUnnamedAddr()) {
2074 GV.setUnnamedAddr(NewUnnamedAddr);
2075 NumUnnamed++;
2076 Changed = true;
2077 }
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002078 }
2079
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002080 // Do more involved optimizations if the global is internal.
2081 if (!GV.hasLocalLinkage())
2082 return Changed;
2083
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002084 auto *GVar = dyn_cast<GlobalVariable>(&GV);
2085 if (!GVar)
2086 return Changed;
2087
2088 if (GVar->isConstant() || !GVar->hasInitializer())
2089 return Changed;
2090
2091 return processInternalGlobal(GVar, GS, TLI, LookupDomTree) || Changed;
2092}
2093
James Molloyea31ad32015-11-13 11:05:07 +00002094/// Walk all of the direct calls of the specified function, changing them to
2095/// FastCC.
Chris Lattnera4c80222005-05-08 22:18:06 +00002096static void ChangeCalleesToFastCall(Function *F) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00002097 for (User *U : F->users()) {
2098 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002099 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002100 CallSite CS(cast<Instruction>(U));
2101 CS.setCallingConv(CallingConv::Fast);
Chris Lattnera4c80222005-05-08 22:18:06 +00002102 }
2103}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00002104
Bob Haarmana78ab772019-05-02 00:37:36 +00002105static AttributeList StripAttr(LLVMContext &C, AttributeList Attrs,
2106 Attribute::AttrKind A) {
2107 unsigned AttrIndex;
2108 if (Attrs.hasAttrSomewhere(A, &AttrIndex))
2109 return Attrs.removeAttribute(C, AttrIndex, A);
Duncan Sands573b3f82008-02-16 20:56:04 +00002110 return Attrs;
2111}
2112
Bob Haarmana78ab772019-05-02 00:37:36 +00002113static void RemoveAttribute(Function *F, Attribute::AttrKind A) {
2114 F->setAttributes(StripAttr(F->getContext(), F->getAttributes(), A));
Chandler Carruthcdf47882014-03-09 03:16:01 +00002115 for (User *U : F->users()) {
2116 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002117 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002118 CallSite CS(cast<Instruction>(U));
Bob Haarmana78ab772019-05-02 00:37:36 +00002119 CS.setAttributes(StripAttr(F->getContext(), CS.getAttributes(), A));
Duncan Sands573b3f82008-02-16 20:56:04 +00002120 }
2121}
2122
Reid Kleckner22869372014-02-26 19:57:30 +00002123/// Return true if this is a calling convention that we'd like to change. The
2124/// idea here is that we don't want to mess with the convention if the user
2125/// explicitly requested something with performance implications like coldcc,
2126/// GHC, or anyregcc.
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002127static bool hasChangeableCC(Function *F) {
Reid Kleckner22869372014-02-26 19:57:30 +00002128 CallingConv::ID CC = F->getCallingConv();
Jonas Devlieghere9ca06452018-02-28 22:28:44 +00002129
Reid Kleckner22869372014-02-26 19:57:30 +00002130 // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc?
Jonas Devlieghere9ca06452018-02-28 22:28:44 +00002131 if (CC != CallingConv::C && CC != CallingConv::X86_ThisCall)
2132 return false;
2133
2134 // FIXME: Change CC for the whole chain of musttail calls when possible.
2135 //
2136 // Can't change CC of the function that either has musttail calls, or is a
2137 // musttail callee itself
2138 for (User *U : F->users()) {
2139 if (isa<BlockAddress>(U))
2140 continue;
2141 CallInst* CI = dyn_cast<CallInst>(U);
2142 if (!CI)
2143 continue;
2144
2145 if (CI->isMustTailCall())
2146 return false;
2147 }
2148
2149 for (BasicBlock &BB : *F)
2150 if (BB.getTerminatingMustTailCall())
2151 return false;
2152
2153 return true;
Reid Kleckner22869372014-02-26 19:57:30 +00002154}
2155
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002156/// Return true if the block containing the call site has a BlockFrequency of
2157/// less than ColdCCRelFreq% of the entry block.
2158static bool isColdCallSite(CallSite CS, BlockFrequencyInfo &CallerBFI) {
2159 const BranchProbability ColdProb(ColdCCRelFreq, 100);
2160 auto CallSiteBB = CS.getInstruction()->getParent();
2161 auto CallSiteFreq = CallerBFI.getBlockFreq(CallSiteBB);
2162 auto CallerEntryFreq =
2163 CallerBFI.getBlockFreq(&(CS.getCaller()->getEntryBlock()));
2164 return CallSiteFreq < CallerEntryFreq * ColdProb;
2165}
2166
2167// This function checks if the input function F is cold at all call sites. It
2168// also looks each call site's containing function, returning false if the
2169// caller function contains other non cold calls. The input vector AllCallsCold
2170// contains a list of functions that only have call sites in cold blocks.
2171static bool
2172isValidCandidateForColdCC(Function &F,
2173 function_ref<BlockFrequencyInfo &(Function &)> GetBFI,
2174 const std::vector<Function *> &AllCallsCold) {
2175
2176 if (F.user_empty())
2177 return false;
2178
2179 for (User *U : F.users()) {
2180 if (isa<BlockAddress>(U))
2181 continue;
2182
2183 CallSite CS(cast<Instruction>(U));
2184 Function *CallerFunc = CS.getInstruction()->getParent()->getParent();
2185 BlockFrequencyInfo &CallerBFI = GetBFI(*CallerFunc);
2186 if (!isColdCallSite(CS, CallerBFI))
2187 return false;
2188 auto It = std::find(AllCallsCold.begin(), AllCallsCold.end(), CallerFunc);
2189 if (It == AllCallsCold.end())
2190 return false;
2191 }
2192 return true;
2193}
2194
2195static void changeCallSitesToColdCC(Function *F) {
2196 for (User *U : F->users()) {
2197 if (isa<BlockAddress>(U))
2198 continue;
2199 CallSite CS(cast<Instruction>(U));
2200 CS.setCallingConv(CallingConv::Cold);
2201 }
2202}
2203
2204// This function iterates over all the call instructions in the input Function
2205// and checks that all call sites are in cold blocks and are allowed to use the
2206// coldcc calling convention.
2207static bool
2208hasOnlyColdCalls(Function &F,
2209 function_ref<BlockFrequencyInfo &(Function &)> GetBFI) {
2210 for (BasicBlock &BB : F) {
2211 for (Instruction &I : BB) {
2212 if (CallInst *CI = dyn_cast<CallInst>(&I)) {
2213 CallSite CS(cast<Instruction>(CI));
2214 // Skip over isline asm instructions since they aren't function calls.
2215 if (CI->isInlineAsm())
2216 continue;
2217 Function *CalledFn = CI->getCalledFunction();
2218 if (!CalledFn)
2219 return false;
2220 if (!CalledFn->hasLocalLinkage())
2221 return false;
2222 // Skip over instrinsics since they won't remain as function calls.
2223 if (CalledFn->getIntrinsicID() != Intrinsic::not_intrinsic)
2224 continue;
2225 // Check if it's valid to use coldcc calling convention.
2226 if (!hasChangeableCC(CalledFn) || CalledFn->isVarArg() ||
2227 CalledFn->hasAddressTaken())
2228 return false;
2229 BlockFrequencyInfo &CallerBFI = GetBFI(F);
2230 if (!isColdCallSite(CS, CallerBFI))
2231 return false;
2232 }
2233 }
2234 }
2235 return true;
2236}
2237
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002238static bool
2239OptimizeFunctions(Module &M, TargetLibraryInfo *TLI,
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002240 function_ref<TargetTransformInfo &(Function &)> GetTTI,
2241 function_ref<BlockFrequencyInfo &(Function &)> GetBFI,
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002242 function_ref<DominatorTree &(Function &)> LookupDomTree,
Florian Hahna1cc8482018-06-12 11:16:56 +00002243 SmallPtrSetImpl<const Comdat *> &NotDiscardableComdats) {
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002244
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002245 bool Changed = false;
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002246
2247 std::vector<Function *> AllCallsCold;
2248 for (Module::iterator FI = M.begin(), E = M.end(); FI != E;) {
2249 Function *F = &*FI++;
2250 if (hasOnlyColdCalls(*F, GetBFI))
2251 AllCallsCold.push_back(F);
2252 }
2253
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002254 // Optimize functions.
2255 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002256 Function *F = &*FI++;
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002257
Luke Cheeseman6c1e6bb2018-02-22 14:42:08 +00002258 // Don't perform global opt pass on naked functions; we don't want fast
2259 // calling conventions for naked functions.
2260 if (F->hasFnAttribute(Attribute::Naked))
2261 continue;
2262
Duncan Sandsed722832009-03-06 10:21:56 +00002263 // Functions without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002264 if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002265 F->setLinkage(GlobalValue::InternalLinkage);
David Majnemer1b3b70e2014-10-08 07:23:31 +00002266
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002267 if (deleteIfDead(*F, NotDiscardableComdats)) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002268 Changed = true;
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002269 continue;
2270 }
Rafael Espindola10d9a032015-12-22 20:43:30 +00002271
Davide Italianoc3dc055782017-07-13 15:40:59 +00002272 // LLVM's definition of dominance allows instructions that are cyclic
2273 // in unreachable blocks, e.g.:
2274 // %pat = select i1 %condition, @global, i16* %pat
2275 // because any instruction dominates an instruction in a block that's
2276 // not reachable from entry.
2277 // So, remove unreachable blocks from the function, because a) there's
2278 // no point in analyzing them and b) GlobalOpt should otherwise grow
2279 // some more complicated logic to break these cycles.
2280 // Removing unreachable blocks might invalidate the dominator so we
2281 // recalculate it.
2282 if (!F->isDeclaration()) {
2283 if (removeUnreachableBlocks(*F)) {
2284 auto &DT = LookupDomTree(*F);
2285 DT.recalculate(*F);
2286 Changed = true;
2287 }
2288 }
2289
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002290 Changed |= processGlobal(*F, TLI, LookupDomTree);
Rafael Espindola10d9a032015-12-22 20:43:30 +00002291
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002292 if (!F->hasLocalLinkage())
2293 continue;
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002294
Bob Haarmana78ab772019-05-02 00:37:36 +00002295 // If we have an inalloca parameter that we can safely remove the
2296 // inalloca attribute from, do so. This unlocks optimizations that
2297 // wouldn't be safe in the presence of inalloca.
2298 // FIXME: We should also hoist alloca affected by this to the entry
2299 // block if possible.
2300 if (F->getAttributes().hasAttrSomewhere(Attribute::InAlloca) &&
2301 !F->hasAddressTaken()) {
2302 RemoveAttribute(F, Attribute::InAlloca);
2303 Changed = true;
2304 }
2305
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002306 if (hasChangeableCC(F) && !F->isVarArg() && !F->hasAddressTaken()) {
2307 NumInternalFunc++;
2308 TargetTransformInfo &TTI = GetTTI(*F);
2309 // Change the calling convention to coldcc if either stress testing is
2310 // enabled or the target would like to use coldcc on functions which are
2311 // cold at all call sites and the callers contain no other non coldcc
2312 // calls.
2313 if (EnableColdCCStressTest ||
Justin Bognerdf5d2b32019-04-26 00:12:50 +00002314 (TTI.useColdCCForColdCall(*F) &&
2315 isValidCandidateForColdCC(*F, GetBFI, AllCallsCold))) {
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002316 F->setCallingConv(CallingConv::Cold);
2317 changeCallSitesToColdCC(F);
2318 Changed = true;
2319 NumColdCC++;
2320 }
2321 }
2322
2323 if (hasChangeableCC(F) && !F->isVarArg() &&
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002324 !F->hasAddressTaken()) {
2325 // If this function has a calling convention worth changing, is not a
2326 // varargs function, and is only called directly, promote it to use the
2327 // Fast calling convention.
2328 F->setCallingConv(CallingConv::Fast);
2329 ChangeCalleesToFastCall(F);
2330 ++NumFastCallFns;
2331 Changed = true;
2332 }
Duncan Sands573b3f82008-02-16 20:56:04 +00002333
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002334 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2335 !F->hasAddressTaken()) {
2336 // The function is not used by a trampoline intrinsic, so it is safe
2337 // to remove the 'nest' attribute.
Bob Haarmana78ab772019-05-02 00:37:36 +00002338 RemoveAttribute(F, Attribute::Nest);
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002339 ++NumNestRemoved;
2340 Changed = true;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002341 }
2342 }
2343 return Changed;
2344}
2345
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002346static bool
2347OptimizeGlobalVars(Module &M, TargetLibraryInfo *TLI,
2348 function_ref<DominatorTree &(Function &)> LookupDomTree,
Florian Hahna1cc8482018-06-12 11:16:56 +00002349 SmallPtrSetImpl<const Comdat *> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002350 bool Changed = false;
David Majnemerdad0a642014-06-27 18:19:56 +00002351
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002352 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2353 GVI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002354 GlobalVariable *GV = &*GVI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002355 // Global variables without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002356 if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002357 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman580b80d2009-11-23 16:22:21 +00002358 // Simplify the initializer.
2359 if (GV->hasInitializer())
David Majnemerd536f232016-07-29 03:27:26 +00002360 if (auto *C = dyn_cast<Constant>(GV->getInitializer())) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002361 auto &DL = M.getDataLayout();
David Majnemerd536f232016-07-29 03:27:26 +00002362 Constant *New = ConstantFoldConstant(C, DL, TLI);
2363 if (New && New != C)
Dan Gohman580b80d2009-11-23 16:22:21 +00002364 GV->setInitializer(New);
2365 }
Rafael Espindolafc355bc2011-01-19 16:32:21 +00002366
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002367 if (deleteIfDead(*GV, NotDiscardableComdats)) {
Rafael Espindola10d9a032015-12-22 20:43:30 +00002368 Changed = true;
2369 continue;
2370 }
2371
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002372 Changed |= processGlobal(*GV, TLI, LookupDomTree);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002373 }
2374 return Changed;
2375}
2376
James Molloyea31ad32015-11-13 11:05:07 +00002377/// Evaluate a piece of a constantexpr store into a global initializer. This
2378/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2379/// GEP operands of Addr [0, OpNo) have been stepped into.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002380static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2381 ConstantExpr *Addr, unsigned OpNo) {
2382 // Base case of the recursion.
2383 if (OpNo == Addr->getNumOperands()) {
2384 assert(Val->getType() == Init->getType() && "Type mismatch!");
2385 return Val;
2386 }
2387
2388 SmallVector<Constant*, 32> Elts;
2389 if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2390 // Break up the constant into its elements.
2391 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2392 Elts.push_back(Init->getAggregateElement(i));
2393
2394 // Replace the element that we are supposed to.
2395 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2396 unsigned Idx = CU->getZExtValue();
2397 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2398 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2399
2400 // Return the modified struct.
2401 return ConstantStruct::get(STy, Elts);
2402 }
2403
2404 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2405 SequentialType *InitTy = cast<SequentialType>(Init->getType());
Peter Collingbournebc070522016-12-02 03:20:58 +00002406 uint64_t NumElts = InitTy->getNumElements();
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002407
2408 // Break up the array into elements.
2409 for (uint64_t i = 0, e = NumElts; i != e; ++i)
2410 Elts.push_back(Init->getAggregateElement(i));
2411
2412 assert(CI->getZExtValue() < NumElts);
2413 Elts[CI->getZExtValue()] =
2414 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2415
2416 if (Init->getType()->isArrayTy())
2417 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2418 return ConstantVector::get(Elts);
2419}
2420
James Molloyea31ad32015-11-13 11:05:07 +00002421/// We have decided that Addr (which satisfies the predicate
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002422/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2423static void CommitValueTo(Constant *Val, Constant *Addr) {
2424 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2425 assert(GV->hasInitializer());
2426 GV->setInitializer(Val);
2427 return;
2428 }
2429
2430 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2431 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2432 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2433}
2434
Amara Emerson93b0ff22018-01-31 23:56:07 +00002435/// Given a map of address -> value, where addresses are expected to be some form
2436/// of either a global or a constant GEP, set the initializer for the address to
2437/// be the value. This performs mostly the same function as CommitValueTo()
2438/// and EvaluateStoreInto() but is optimized to be more efficient for the common
2439/// case where the set of addresses are GEPs sharing the same underlying global,
2440/// processing the GEPs in batches rather than individually.
2441///
2442/// To give an example, consider the following C++ code adapted from the clang
2443/// regression tests:
2444/// struct S {
2445/// int n = 10;
2446/// int m = 2 * n;
2447/// S(int a) : n(a) {}
2448/// };
2449///
2450/// template<typename T>
2451/// struct U {
2452/// T *r = &q;
2453/// T q = 42;
2454/// U *p = this;
2455/// };
2456///
2457/// U<S> e;
2458///
2459/// The global static constructor for 'e' will need to initialize 'r' and 'p' of
2460/// the outer struct, while also initializing the inner 'q' structs 'n' and 'm'
2461/// members. This batch algorithm will simply use general CommitValueTo() method
2462/// to handle the complex nested S struct initialization of 'q', before
2463/// processing the outermost members in a single batch. Using CommitValueTo() to
2464/// handle member in the outer struct is inefficient when the struct/array is
2465/// very large as we end up creating and destroy constant arrays for each
2466/// initialization.
2467/// For the above case, we expect the following IR to be generated:
2468///
2469/// %struct.U = type { %struct.S*, %struct.S, %struct.U* }
2470/// %struct.S = type { i32, i32 }
2471/// @e = global %struct.U { %struct.S* gep inbounds (%struct.U, %struct.U* @e,
2472/// i64 0, i32 1),
2473/// %struct.S { i32 42, i32 84 }, %struct.U* @e }
2474/// The %struct.S { i32 42, i32 84 } inner initializer is treated as a complex
2475/// constant expression, while the other two elements of @e are "simple".
2476static void BatchCommitValueTo(const DenseMap<Constant*, Constant*> &Mem) {
2477 SmallVector<std::pair<GlobalVariable*, Constant*>, 32> GVs;
2478 SmallVector<std::pair<ConstantExpr*, Constant*>, 32> ComplexCEs;
2479 SmallVector<std::pair<ConstantExpr*, Constant*>, 32> SimpleCEs;
2480 SimpleCEs.reserve(Mem.size());
2481
2482 for (const auto &I : Mem) {
2483 if (auto *GV = dyn_cast<GlobalVariable>(I.first)) {
2484 GVs.push_back(std::make_pair(GV, I.second));
2485 } else {
2486 ConstantExpr *GEP = cast<ConstantExpr>(I.first);
2487 // We don't handle the deeply recursive case using the batch method.
2488 if (GEP->getNumOperands() > 3)
2489 ComplexCEs.push_back(std::make_pair(GEP, I.second));
2490 else
2491 SimpleCEs.push_back(std::make_pair(GEP, I.second));
2492 }
2493 }
2494
2495 // The algorithm below doesn't handle cases like nested structs, so use the
2496 // slower fully general method if we have to.
2497 for (auto ComplexCE : ComplexCEs)
2498 CommitValueTo(ComplexCE.second, ComplexCE.first);
2499
2500 for (auto GVPair : GVs) {
2501 assert(GVPair.first->hasInitializer());
2502 GVPair.first->setInitializer(GVPair.second);
2503 }
2504
2505 if (SimpleCEs.empty())
2506 return;
2507
2508 // We cache a single global's initializer elements in the case where the
2509 // subsequent address/val pair uses the same one. This avoids throwing away and
2510 // rebuilding the constant struct/vector/array just because one element is
2511 // modified at a time.
2512 SmallVector<Constant *, 32> Elts;
2513 Elts.reserve(SimpleCEs.size());
2514 GlobalVariable *CurrentGV = nullptr;
2515
2516 auto commitAndSetupCache = [&](GlobalVariable *GV, bool Update) {
2517 Constant *Init = GV->getInitializer();
2518 Type *Ty = Init->getType();
2519 if (Update) {
2520 if (CurrentGV) {
2521 assert(CurrentGV && "Expected a GV to commit to!");
2522 Type *CurrentInitTy = CurrentGV->getInitializer()->getType();
2523 // We have a valid cache that needs to be committed.
2524 if (StructType *STy = dyn_cast<StructType>(CurrentInitTy))
2525 CurrentGV->setInitializer(ConstantStruct::get(STy, Elts));
2526 else if (ArrayType *ArrTy = dyn_cast<ArrayType>(CurrentInitTy))
2527 CurrentGV->setInitializer(ConstantArray::get(ArrTy, Elts));
2528 else
2529 CurrentGV->setInitializer(ConstantVector::get(Elts));
2530 }
2531 if (CurrentGV == GV)
2532 return;
2533 // Need to clear and set up cache for new initializer.
2534 CurrentGV = GV;
2535 Elts.clear();
2536 unsigned NumElts;
2537 if (auto *STy = dyn_cast<StructType>(Ty))
2538 NumElts = STy->getNumElements();
2539 else
2540 NumElts = cast<SequentialType>(Ty)->getNumElements();
2541 for (unsigned i = 0, e = NumElts; i != e; ++i)
2542 Elts.push_back(Init->getAggregateElement(i));
2543 }
2544 };
2545
2546 for (auto CEPair : SimpleCEs) {
2547 ConstantExpr *GEP = CEPair.first;
2548 Constant *Val = CEPair.second;
2549
2550 GlobalVariable *GV = cast<GlobalVariable>(GEP->getOperand(0));
2551 commitAndSetupCache(GV, GV != CurrentGV);
2552 ConstantInt *CI = cast<ConstantInt>(GEP->getOperand(2));
2553 Elts[CI->getZExtValue()] = Val;
2554 }
2555 // The last initializer in the list needs to be committed, others
2556 // will be committed on a new initializer being processed.
2557 commitAndSetupCache(CurrentGV, true);
2558}
2559
James Molloyea31ad32015-11-13 11:05:07 +00002560/// Evaluate static constructors in the function, if we can. Return true if we
2561/// can, false otherwise.
Mehdi Amini46a43552015-03-04 18:43:29 +00002562static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002563 TargetLibraryInfo *TLI) {
Chris Lattnerda1889b2005-09-27 04:27:01 +00002564 // Call the function.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002565 Evaluator Eval(DL, TLI);
Chris Lattner65a3a092005-09-27 04:45:34 +00002566 Constant *RetValDummy;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002567 bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2568 SmallVector<Constant*, 0>());
Jakub Staszak9525a772012-12-06 21:57:16 +00002569
Chris Lattnerda1889b2005-09-27 04:27:01 +00002570 if (EvalSuccess) {
Nico Weber4b2acde2014-05-02 18:35:25 +00002571 ++NumCtorsEvaluated;
2572
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002573 // We succeeded at evaluation: commit the result.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002574 LLVM_DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
2575 << F->getName() << "' to "
2576 << Eval.getMutatedMemory().size() << " stores.\n");
Amara Emerson93b0ff22018-01-31 23:56:07 +00002577 BatchCommitValueTo(Eval.getMutatedMemory());
Craig Topper46276792014-08-24 23:23:06 +00002578 for (GlobalVariable *GV : Eval.getInvariants())
2579 GV->setConstant(true);
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002580 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002581
Chris Lattnerda1889b2005-09-27 04:27:01 +00002582 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002583}
2584
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002585static int compareNames(Constant *const *A, Constant *const *B) {
Benjamin Kramer96f4b122016-03-15 14:18:26 +00002586 Value *AStripped = (*A)->stripPointerCastsNoFollowAliases();
2587 Value *BStripped = (*B)->stripPointerCastsNoFollowAliases();
2588 return AStripped->getName().compare(BStripped->getName());
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002589}
2590
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002591static void setUsedInitializer(GlobalVariable &V,
Florian Hahna1cc8482018-06-12 11:16:56 +00002592 const SmallPtrSetImpl<GlobalValue *> &Init) {
Rafael Espindolac2bb73f2013-07-20 23:33:15 +00002593 if (Init.empty()) {
2594 V.eraseFromParent();
2595 return;
2596 }
2597
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002598 // Type of pointer to the array of pointers.
2599 PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0);
Rafael Espindola00752162013-05-09 17:22:59 +00002600
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002601 SmallVector<Constant *, 8> UsedArray;
Craig Topper71b7b682014-08-21 05:55:13 +00002602 for (GlobalValue *GV : Init) {
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002603 Constant *Cast
Craig Topper71b7b682014-08-21 05:55:13 +00002604 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002605 UsedArray.push_back(Cast);
Rafael Espindola00752162013-05-09 17:22:59 +00002606 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002607 // Sort to get deterministic order.
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002608 array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002609 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
Rafael Espindola00752162013-05-09 17:22:59 +00002610
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002611 Module *M = V.getParent();
2612 V.removeFromParent();
2613 GlobalVariable *NV =
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002614 new GlobalVariable(*M, ATy, false, GlobalValue::AppendingLinkage,
2615 ConstantArray::get(ATy, UsedArray), "");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002616 NV->takeName(&V);
2617 NV->setSection("llvm.metadata");
2618 delete &V;
Rafael Espindola00752162013-05-09 17:22:59 +00002619}
2620
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002621namespace {
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002622
James Molloyea31ad32015-11-13 11:05:07 +00002623/// An easy to access representation of llvm.used and llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002624class LLVMUsed {
2625 SmallPtrSet<GlobalValue *, 8> Used;
2626 SmallPtrSet<GlobalValue *, 8> CompilerUsed;
2627 GlobalVariable *UsedV;
2628 GlobalVariable *CompilerUsedV;
2629
2630public:
Rafael Espindolaec2375f2013-07-25 02:50:08 +00002631 LLVMUsed(Module &M) {
Rafael Espindola17600e22013-07-25 03:23:25 +00002632 UsedV = collectUsedGlobalVariables(M, Used, false);
2633 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
Rafael Espindola00752162013-05-09 17:22:59 +00002634 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002635
2636 using iterator = SmallPtrSet<GlobalValue *, 8>::iterator;
2637 using used_iterator_range = iterator_range<iterator>;
2638
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002639 iterator usedBegin() { return Used.begin(); }
2640 iterator usedEnd() { return Used.end(); }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002641
Craig Topper46276792014-08-24 23:23:06 +00002642 used_iterator_range used() {
2643 return used_iterator_range(usedBegin(), usedEnd());
2644 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002645
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002646 iterator compilerUsedBegin() { return CompilerUsed.begin(); }
2647 iterator compilerUsedEnd() { return CompilerUsed.end(); }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002648
Craig Topper46276792014-08-24 23:23:06 +00002649 used_iterator_range compilerUsed() {
2650 return used_iterator_range(compilerUsedBegin(), compilerUsedEnd());
2651 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002652
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002653 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002654
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002655 bool compilerUsedCount(GlobalValue *GV) const {
2656 return CompilerUsed.count(GV);
2657 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002658
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002659 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2660 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
David Blaikie70573dc2014-11-19 07:49:26 +00002661 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002662
David Blaikie70573dc2014-11-19 07:49:26 +00002663 bool compilerUsedInsert(GlobalValue *GV) {
2664 return CompilerUsed.insert(GV).second;
2665 }
Rafael Espindola00752162013-05-09 17:22:59 +00002666
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002667 void syncVariablesAndSets() {
2668 if (UsedV)
2669 setUsedInitializer(*UsedV, Used);
2670 if (CompilerUsedV)
2671 setUsedInitializer(*CompilerUsedV, CompilerUsed);
2672 }
2673};
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002674
2675} // end anonymous namespace
Rafael Espindola00752162013-05-09 17:22:59 +00002676
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002677static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
2678 if (GA.use_empty()) // No use at all.
2679 return false;
2680
2681 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
2682 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002683 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002684 if (!GA.hasOneUse())
2685 // Strictly more than one use. So at least one is not in llvm.used and
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002686 // llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002687 return true;
2688
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002689 // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002690 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
Rafael Espindola00752162013-05-09 17:22:59 +00002691}
2692
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002693static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
2694 const LLVMUsed &U) {
2695 unsigned N = 2;
2696 assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
2697 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002698 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002699 if (U.usedCount(&V) || U.compilerUsedCount(&V))
2700 ++N;
2701 return V.hasNUsesOrMore(N);
2702}
2703
2704static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
2705 if (!GA.hasLocalLinkage())
2706 return true;
2707
2708 return U.usedCount(&GA) || U.compilerUsedCount(&GA);
2709}
2710
Craig Topper71b7b682014-08-21 05:55:13 +00002711static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U,
2712 bool &RenameTarget) {
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002713 RenameTarget = false;
Rafael Espindola00752162013-05-09 17:22:59 +00002714 bool Ret = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002715 if (hasUseOtherThanLLVMUsed(GA, U))
Rafael Espindola00752162013-05-09 17:22:59 +00002716 Ret = true;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002717
2718 // If the alias is externally visible, we may still be able to simplify it.
2719 if (!mayHaveOtherReferences(GA, U))
2720 return Ret;
2721
2722 // If the aliasee has internal linkage, give it the name and linkage
2723 // of the alias, and delete the alias. This turns:
2724 // define internal ... @f(...)
2725 // @a = alias ... @f
2726 // into:
2727 // define ... @a(...)
2728 Constant *Aliasee = GA.getAliasee();
2729 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2730 if (!Target->hasLocalLinkage())
2731 return Ret;
2732
2733 // Do not perform the transform if multiple aliases potentially target the
2734 // aliasee. This check also ensures that it is safe to replace the section
2735 // and other attributes of the aliasee with those of the alias.
2736 if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
2737 return Ret;
2738
2739 RenameTarget = true;
2740 return true;
Rafael Espindola00752162013-05-09 17:22:59 +00002741}
2742
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002743static bool
2744OptimizeGlobalAliases(Module &M,
Florian Hahna1cc8482018-06-12 11:16:56 +00002745 SmallPtrSetImpl<const Comdat *> &NotDiscardableComdats) {
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002746 bool Changed = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002747 LLVMUsed Used(M);
2748
Craig Topper46276792014-08-24 23:23:06 +00002749 for (GlobalValue *GV : Used.used())
2750 Used.compilerUsedErase(GV);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002751
Duncan Sands0bcf0852009-01-07 20:01:06 +00002752 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002753 I != E;) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002754 GlobalAlias *J = &*I++;
2755
Duncan Sandsed722832009-03-06 10:21:56 +00002756 // Aliases without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002757 if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002758 J->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindola5349d872015-12-22 19:50:22 +00002759
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002760 if (deleteIfDead(*J, NotDiscardableComdats)) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002761 Changed = true;
2762 continue;
2763 }
2764
Eric Christopher675dcf02018-02-22 23:12:11 +00002765 // If the alias can change at link time, nothing can be done - bail out.
Sanjoy Das5ce32722016-04-08 00:48:30 +00002766 if (J->isInterposable())
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002767 continue;
2768
Duncan Sandsb3f27882009-02-15 09:56:08 +00002769 Constant *Aliasee = J->getAliasee();
David Majnemer0e2cc2a2014-07-01 00:30:56 +00002770 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts());
2771 // We can't trivially replace the alias with the aliasee if the aliasee is
2772 // non-trivial in some way.
2773 // TODO: Try to handle non-zero GEPs of local aliasees.
2774 if (!Target)
2775 continue;
Duncan Sands7a1db332009-02-18 17:55:38 +00002776 Target->removeDeadConstantUsers();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002777
2778 // Make all users of the alias use the aliasee instead.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002779 bool RenameTarget;
2780 if (!hasUsesToReplace(*J, Used, RenameTarget))
Rafael Espindola00752162013-05-09 17:22:59 +00002781 continue;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002782
Rafael Espindola6b238632014-05-16 19:35:39 +00002783 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType()));
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002784 ++NumAliasesResolved;
2785 Changed = true;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002786
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002787 if (RenameTarget) {
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002788 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002789 Target->takeName(&*J);
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002790 Target->setLinkage(J->getLinkage());
Rafael Espindolae4b02312018-01-11 22:15:05 +00002791 Target->setDSOLocal(J->isDSOLocal());
Reid Kleckner22b19da2014-02-13 02:18:36 +00002792 Target->setVisibility(J->getVisibility());
2793 Target->setDLLStorageClass(J->getDLLStorageClass());
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002794
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002795 if (Used.usedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002796 Used.usedInsert(Target);
2797
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002798 if (Used.compilerUsedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002799 Used.compilerUsedInsert(Target);
Rafael Espindola8d304802013-06-12 16:45:47 +00002800 } else if (mayHaveOtherReferences(*J, Used))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002801 continue;
2802
Duncan Sandsb3f27882009-02-15 09:56:08 +00002803 // Delete the alias.
2804 M.getAliasList().erase(J);
2805 ++NumAliasesRemoved;
2806 Changed = true;
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002807 }
2808
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002809 Used.syncVariablesAndSets();
2810
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002811 return Changed;
2812}
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002813
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002814static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
David L. Jonesd21529f2017-01-23 23:16:46 +00002815 LibFunc F = LibFunc_cxa_atexit;
Ahmed Bougachad765a822016-04-27 19:04:35 +00002816 if (!TLI->has(F))
Craig Topperf40110f2014-04-25 05:29:35 +00002817 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002818
Ahmed Bougachad765a822016-04-27 19:04:35 +00002819 Function *Fn = M.getFunction(TLI->getName(F));
Anders Carlssonee6bc702011-03-20 17:59:11 +00002820 if (!Fn)
Craig Topperf40110f2014-04-25 05:29:35 +00002821 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002822
Ahmed Bougachad765a822016-04-27 19:04:35 +00002823 // Make sure that the function has the correct prototype.
David L. Jonesd21529f2017-01-23 23:16:46 +00002824 if (!TLI->getLibFunc(*Fn, F) || F != LibFunc_cxa_atexit)
Craig Topperf40110f2014-04-25 05:29:35 +00002825 return nullptr;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002826
2827 return Fn;
2828}
2829
James Molloyea31ad32015-11-13 11:05:07 +00002830/// Returns whether the given function is an empty C++ destructor and can
2831/// therefore be eliminated.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002832/// Note that we assume that other optimization passes have already simplified
Fangrui Song6e679f82019-02-09 09:18:37 +00002833/// the code so we simply check for 'ret'.
2834static bool cxxDtorIsEmpty(const Function &Fn) {
Anders Carlsson48a44912011-03-20 19:51:13 +00002835 // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
Nick Lewyckyd0781832011-03-21 02:26:01 +00002836 // nounwind, but that doesn't seem worth doing.
Anders Carlsson48a44912011-03-20 19:51:13 +00002837 if (Fn.isDeclaration())
2838 return false;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002839
Fangrui Song6e679f82019-02-09 09:18:37 +00002840 for (auto &I : Fn.getEntryBlock()) {
2841 if (isa<DbgInfoIntrinsic>(I))
2842 continue;
2843 if (isa<ReturnInst>(I))
2844 return true;
2845 break;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002846 }
Anders Carlssonee6bc702011-03-20 17:59:11 +00002847 return false;
2848}
2849
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002850static bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
Anders Carlssonee6bc702011-03-20 17:59:11 +00002851 /// Itanium C++ ABI p3.3.5:
2852 ///
2853 /// After constructing a global (or local static) object, that will require
2854 /// destruction on exit, a termination function is registered as follows:
2855 ///
2856 /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
2857 ///
2858 /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
2859 /// call f(p) when DSO d is unloaded, before all such termination calls
2860 /// registered before this one. It returns zero if registration is
Nick Lewyckyd0781832011-03-21 02:26:01 +00002861 /// successful, nonzero on failure.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002862
2863 // This pass will look for calls to __cxa_atexit where the function is trivial
2864 // and remove them.
2865 bool Changed = false;
2866
Chandler Carruthcdf47882014-03-09 03:16:01 +00002867 for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end();
2868 I != E;) {
Anders Carlsson336fd902011-03-20 20:21:33 +00002869 // We're only interested in calls. Theoretically, we could handle invoke
2870 // instructions as well, but neither llvm-gcc nor clang generate invokes
2871 // to __cxa_atexit.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002872 CallInst *CI = dyn_cast<CallInst>(*I++);
2873 if (!CI)
Anders Carlsson336fd902011-03-20 20:21:33 +00002874 continue;
2875
Jakub Staszak9525a772012-12-06 21:57:16 +00002876 Function *DtorFn =
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002877 dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
Fangrui Song6e679f82019-02-09 09:18:37 +00002878 if (!DtorFn || !cxxDtorIsEmpty(*DtorFn))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002879 continue;
2880
2881 // Just remove the call.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002882 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
2883 CI->eraseFromParent();
Anders Carlsson48a44912011-03-20 19:51:13 +00002884
Anders Carlssonee6bc702011-03-20 17:59:11 +00002885 ++NumCXXDtorsRemoved;
2886
2887 Changed |= true;
2888 }
2889
2890 return Changed;
2891}
2892
Justin Bogner1a075012016-04-26 00:28:01 +00002893static bool optimizeGlobalsInModule(
2894 Module &M, const DataLayout &DL, TargetLibraryInfo *TLI,
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002895 function_ref<TargetTransformInfo &(Function &)> GetTTI,
2896 function_ref<BlockFrequencyInfo &(Function &)> GetBFI,
Justin Bogner1a075012016-04-26 00:28:01 +00002897 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Florian Hahna1cc8482018-06-12 11:16:56 +00002898 SmallPtrSet<const Comdat *, 8> NotDiscardableComdats;
Justin Bogner1a075012016-04-26 00:28:01 +00002899 bool Changed = false;
Chris Lattner25db5802004-10-07 04:16:33 +00002900 bool LocalChange = true;
2901 while (LocalChange) {
2902 LocalChange = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002903
David Majnemer1b3b70e2014-10-08 07:23:31 +00002904 NotDiscardableComdats.clear();
2905 for (const GlobalVariable &GV : M.globals())
2906 if (const Comdat *C = GV.getComdat())
2907 if (!GV.isDiscardableIfUnused() || !GV.use_empty())
2908 NotDiscardableComdats.insert(C);
2909 for (Function &F : M)
2910 if (const Comdat *C = F.getComdat())
2911 if (!F.isDefTriviallyDead())
2912 NotDiscardableComdats.insert(C);
2913 for (GlobalAlias &GA : M.aliases())
2914 if (const Comdat *C = GA.getComdat())
2915 if (!GA.isDiscardableIfUnused() || !GA.use_empty())
2916 NotDiscardableComdats.insert(C);
2917
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002918 // Delete functions that are trivially dead, ccc -> fastcc
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002919 LocalChange |= OptimizeFunctions(M, TLI, GetTTI, GetBFI, LookupDomTree,
2920 NotDiscardableComdats);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002921
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002922 // Optimize global_ctors list.
Richard Smithc167d652014-05-06 01:44:26 +00002923 LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) {
2924 return EvaluateStaticConstructor(F, DL, TLI);
2925 });
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002926
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002927 // Optimize non-address-taken globals.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002928 LocalChange |= OptimizeGlobalVars(M, TLI, LookupDomTree,
2929 NotDiscardableComdats);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002930
2931 // Resolve aliases, when possible.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002932 LocalChange |= OptimizeGlobalAliases(M, NotDiscardableComdats);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002933
Manman Renb3c52fb2013-05-14 21:52:44 +00002934 // Try to remove trivial global destructors if they are not removed
2935 // already.
2936 Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002937 if (CXAAtExitFn)
2938 LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
2939
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002940 Changed |= LocalChange;
Chris Lattner25db5802004-10-07 04:16:33 +00002941 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002942
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002943 // TODO: Move all global ctors functions to the end of the module for code
2944 // layout.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002945
Chris Lattner25db5802004-10-07 04:16:33 +00002946 return Changed;
2947}
Justin Bogner1a075012016-04-26 00:28:01 +00002948
Sean Silvafd03ac62016-08-09 00:28:38 +00002949PreservedAnalyses GlobalOptPass::run(Module &M, ModuleAnalysisManager &AM) {
Justin Bogner1a075012016-04-26 00:28:01 +00002950 auto &DL = M.getDataLayout();
2951 auto &TLI = AM.getResult<TargetLibraryAnalysis>(M);
2952 auto &FAM =
2953 AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
2954 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree &{
2955 return FAM.getResult<DominatorTreeAnalysis>(F);
2956 };
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002957 auto GetTTI = [&FAM](Function &F) -> TargetTransformInfo & {
2958 return FAM.getResult<TargetIRAnalysis>(F);
2959 };
2960
2961 auto GetBFI = [&FAM](Function &F) -> BlockFrequencyInfo & {
2962 return FAM.getResult<BlockFrequencyAnalysis>(F);
2963 };
2964
2965 if (!optimizeGlobalsInModule(M, DL, &TLI, GetTTI, GetBFI, LookupDomTree))
Justin Bogner1a075012016-04-26 00:28:01 +00002966 return PreservedAnalyses::all();
2967 return PreservedAnalyses::none();
2968}
2969
2970namespace {
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002971
Justin Bogner1a075012016-04-26 00:28:01 +00002972struct GlobalOptLegacyPass : public ModulePass {
2973 static char ID; // Pass identification, replacement for typeid
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002974
Justin Bogner1a075012016-04-26 00:28:01 +00002975 GlobalOptLegacyPass() : ModulePass(ID) {
2976 initializeGlobalOptLegacyPassPass(*PassRegistry::getPassRegistry());
2977 }
2978
2979 bool runOnModule(Module &M) override {
2980 if (skipModule(M))
2981 return false;
2982
2983 auto &DL = M.getDataLayout();
2984 auto *TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
2985 auto LookupDomTree = [this](Function &F) -> DominatorTree & {
2986 return this->getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
2987 };
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002988 auto GetTTI = [this](Function &F) -> TargetTransformInfo & {
2989 return this->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
2990 };
2991
2992 auto GetBFI = [this](Function &F) -> BlockFrequencyInfo & {
2993 return this->getAnalysis<BlockFrequencyInfoWrapperPass>(F).getBFI();
2994 };
2995
2996 return optimizeGlobalsInModule(M, DL, TLI, GetTTI, GetBFI, LookupDomTree);
Justin Bogner1a075012016-04-26 00:28:01 +00002997 }
2998
2999 void getAnalysisUsage(AnalysisUsage &AU) const override {
3000 AU.addRequired<TargetLibraryInfoWrapperPass>();
Zaara Syeda1f59ae32018-01-30 16:17:22 +00003001 AU.addRequired<TargetTransformInfoWrapperPass>();
Justin Bogner1a075012016-04-26 00:28:01 +00003002 AU.addRequired<DominatorTreeWrapperPass>();
Zaara Syeda1f59ae32018-01-30 16:17:22 +00003003 AU.addRequired<BlockFrequencyInfoWrapperPass>();
Justin Bogner1a075012016-04-26 00:28:01 +00003004 }
3005};
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00003006
3007} // end anonymous namespace
Justin Bogner1a075012016-04-26 00:28:01 +00003008
3009char GlobalOptLegacyPass::ID = 0;
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00003010
Justin Bogner1a075012016-04-26 00:28:01 +00003011INITIALIZE_PASS_BEGIN(GlobalOptLegacyPass, "globalopt",
3012 "Global Variable Optimizer", false, false)
3013INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Zaara Syeda1f59ae32018-01-30 16:17:22 +00003014INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
3015INITIALIZE_PASS_DEPENDENCY(BlockFrequencyInfoWrapperPass)
Justin Bogner1a075012016-04-26 00:28:01 +00003016INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
3017INITIALIZE_PASS_END(GlobalOptLegacyPass, "globalopt",
3018 "Global Variable Optimizer", false, false)
3019
3020ModulePass *llvm::createGlobalOptimizerPass() {
3021 return new GlobalOptLegacyPass();
3022}