blob: bdeda543e2b3d9f44fa50287341677ece9395915 [file] [log] [blame]
Chris Lattner25db5802004-10-07 04:16:33 +00001//===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chris Lattner25db5802004-10-07 04:16:33 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Chris Lattner25db5802004-10-07 04:16:33 +00008//===----------------------------------------------------------------------===//
9//
10// This pass transforms simple global variables that never have their address
11// taken. If obviously true, it marks read/write globals as constant, deletes
12// variables only stored to, etc.
13//
14//===----------------------------------------------------------------------===//
15
Justin Bogner1a075012016-04-26 00:28:01 +000016#include "llvm/Transforms/IPO/GlobalOpt.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/SmallPtrSet.h"
David Majnemerdad0a642014-06-27 18:19:56 +000020#include "llvm/ADT/SmallSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/SmallVector.h"
22#include "llvm/ADT/Statistic.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000023#include "llvm/ADT/Twine.h"
24#include "llvm/ADT/iterator_range.h"
Zaara Syeda1f59ae32018-01-30 16:17:22 +000025#include "llvm/Analysis/BlockFrequencyInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000026#include "llvm/Analysis/ConstantFolding.h"
27#include "llvm/Analysis/MemoryBuiltins.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000028#include "llvm/Analysis/TargetLibraryInfo.h"
Zaara Syeda1f59ae32018-01-30 16:17:22 +000029#include "llvm/Analysis/TargetTransformInfo.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000030#include "llvm/BinaryFormat/Dwarf.h"
31#include "llvm/IR/Attributes.h"
32#include "llvm/IR/BasicBlock.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000033#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000034#include "llvm/IR/CallingConv.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000035#include "llvm/IR/Constant.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000036#include "llvm/IR/Constants.h"
37#include "llvm/IR/DataLayout.h"
Victor Leschuk56b03d02017-08-04 04:51:15 +000038#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000039#include "llvm/IR/DerivedTypes.h"
James Molloy9c7d4d82015-11-15 14:21:37 +000040#include "llvm/IR/Dominators.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000041#include "llvm/IR/Function.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000042#include "llvm/IR/GetElementPtrTypeIterator.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000043#include "llvm/IR/GlobalAlias.h"
44#include "llvm/IR/GlobalValue.h"
45#include "llvm/IR/GlobalVariable.h"
46#include "llvm/IR/InstrTypes.h"
47#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000048#include "llvm/IR/Instructions.h"
49#include "llvm/IR/IntrinsicInst.h"
50#include "llvm/IR/Module.h"
51#include "llvm/IR/Operator.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000052#include "llvm/IR/Type.h"
53#include "llvm/IR/Use.h"
54#include "llvm/IR/User.h"
55#include "llvm/IR/Value.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000056#include "llvm/IR/ValueHandle.h"
Chris Lattner25db5802004-10-07 04:16:33 +000057#include "llvm/Pass.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000058#include "llvm/Support/AtomicOrdering.h"
59#include "llvm/Support/Casting.h"
Zaara Syeda1f59ae32018-01-30 16:17:22 +000060#include "llvm/Support/CommandLine.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000061#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000062#include "llvm/Support/ErrorHandling.h"
Chris Lattner67ca6f632008-04-26 07:40:11 +000063#include "llvm/Support/MathExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000064#include "llvm/Support/raw_ostream.h"
Justin Bogner1a075012016-04-26 00:28:01 +000065#include "llvm/Transforms/IPO.h"
Nico Weber4b2acde2014-05-02 18:35:25 +000066#include "llvm/Transforms/Utils/CtorUtils.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000067#include "llvm/Transforms/Utils/Evaluator.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000068#include "llvm/Transforms/Utils/GlobalStatus.h"
David Majnemer522a9112016-07-22 04:54:44 +000069#include "llvm/Transforms/Utils/Local.h"
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +000070#include <cassert>
71#include <cstdint>
72#include <utility>
73#include <vector>
74
Chris Lattner25db5802004-10-07 04:16:33 +000075using namespace llvm;
76
Chandler Carruth964daaa2014-04-22 02:55:47 +000077#define DEBUG_TYPE "globalopt"
78
Chris Lattner1631bcb2006-12-19 22:09:18 +000079STATISTIC(NumMarked , "Number of globals marked constant");
Rafael Espindolafc355bc2011-01-19 16:32:21 +000080STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
Chris Lattner1631bcb2006-12-19 22:09:18 +000081STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
82STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
83STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
84STATISTIC(NumDeleted , "Number of globals deleted");
Chris Lattner1631bcb2006-12-19 22:09:18 +000085STATISTIC(NumGlobUses , "Number of global uses devirtualized");
Alexey Samsonova1944e62013-10-07 19:03:24 +000086STATISTIC(NumLocalized , "Number of globals localized");
Chris Lattner1631bcb2006-12-19 22:09:18 +000087STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
88STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
89STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands573b3f82008-02-16 20:56:04 +000090STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sandsb3f27882009-02-15 09:56:08 +000091STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
92STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Anders Carlssonee6bc702011-03-20 17:59:11 +000093STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed");
Zaara Syeda1f59ae32018-01-30 16:17:22 +000094STATISTIC(NumInternalFunc, "Number of internal functions");
95STATISTIC(NumColdCC, "Number of functions marked coldcc");
96
97static cl::opt<bool>
98 EnableColdCCStressTest("enable-coldcc-stress-test",
99 cl::desc("Enable stress test of coldcc by adding "
100 "calling conv to all internal functions."),
101 cl::init(false), cl::Hidden);
102
103static cl::opt<int> ColdCCRelFreq(
104 "coldcc-rel-freq", cl::Hidden, cl::init(2), cl::ZeroOrMore,
105 cl::desc(
106 "Maximum block frequency, expressed as a percentage of caller's "
107 "entry frequency, for a call site to be considered cold for enabling"
108 "coldcc"));
Chris Lattner25db5802004-10-07 04:16:33 +0000109
James Molloyea31ad32015-11-13 11:05:07 +0000110/// Is this global variable possibly used by a leak checker as a root? If so,
111/// we might not really want to eliminate the stores to it.
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000112static bool isLeakCheckerRoot(GlobalVariable *GV) {
113 // A global variable is a root if it is a pointer, or could plausibly contain
114 // a pointer. There are two challenges; one is that we could have a struct
115 // the has an inner member which is a pointer. We recurse through the type to
116 // detect these (up to a point). The other is that we may actually be a union
117 // of a pointer and another type, and so our LLVM type is an integer which
118 // gets converted into a pointer, or our type is an [i8 x #] with a pointer
119 // potentially contained here.
120
121 if (GV->hasPrivateLinkage())
122 return false;
123
124 SmallVector<Type *, 4> Types;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000125 Types.push_back(GV->getValueType());
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000126
127 unsigned Limit = 20;
128 do {
129 Type *Ty = Types.pop_back_val();
130 switch (Ty->getTypeID()) {
131 default: break;
132 case Type::PointerTyID: return true;
133 case Type::ArrayTyID:
134 case Type::VectorTyID: {
135 SequentialType *STy = cast<SequentialType>(Ty);
136 Types.push_back(STy->getElementType());
137 break;
138 }
139 case Type::StructTyID: {
140 StructType *STy = cast<StructType>(Ty);
141 if (STy->isOpaque()) return true;
142 for (StructType::element_iterator I = STy->element_begin(),
143 E = STy->element_end(); I != E; ++I) {
144 Type *InnerTy = *I;
145 if (isa<PointerType>(InnerTy)) return true;
146 if (isa<CompositeType>(InnerTy))
147 Types.push_back(InnerTy);
148 }
149 break;
150 }
151 }
152 if (--Limit == 0) return true;
153 } while (!Types.empty());
154 return false;
155}
156
157/// Given a value that is stored to a global but never read, determine whether
158/// it's safe to remove the store and the chain of computation that feeds the
159/// store.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000160static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000161 do {
162 if (isa<Constant>(V))
163 return true;
164 if (!V->hasOneUse())
165 return false;
Nick Lewycky7d0f1102012-07-25 21:19:40 +0000166 if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
167 isa<GlobalValue>(V))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000168 return false;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000169 if (isAllocationFn(V, TLI))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000170 return true;
171
172 Instruction *I = cast<Instruction>(V);
173 if (I->mayHaveSideEffects())
174 return false;
175 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
176 if (!GEP->hasAllConstantIndices())
177 return false;
178 } else if (I->getNumOperands() != 1) {
179 return false;
180 }
181
182 V = I->getOperand(0);
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +0000183 } while (true);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000184}
185
James Molloyea31ad32015-11-13 11:05:07 +0000186/// This GV is a pointer root. Loop over all users of the global and clean up
187/// any that obviously don't assign the global a value that isn't dynamically
188/// allocated.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000189static bool CleanupPointerRootUsers(GlobalVariable *GV,
190 const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000191 // A brief explanation of leak checkers. The goal is to find bugs where
192 // pointers are forgotten, causing an accumulating growth in memory
193 // usage over time. The common strategy for leak checkers is to whitelist the
194 // memory pointed to by globals at exit. This is popular because it also
195 // solves another problem where the main thread of a C++ program may shut down
196 // before other threads that are still expecting to use those globals. To
197 // handle that case, we expect the program may create a singleton and never
198 // destroy it.
199
200 bool Changed = false;
201
202 // If Dead[n].first is the only use of a malloc result, we can delete its
203 // chain of computation and the store to the global in Dead[n].second.
204 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
205
206 // Constants can't be pointers to dynamically allocated memory.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000207 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end();
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000208 UI != E;) {
209 User *U = *UI++;
210 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
211 Value *V = SI->getValueOperand();
212 if (isa<Constant>(V)) {
213 Changed = true;
214 SI->eraseFromParent();
215 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
216 if (I->hasOneUse())
217 Dead.push_back(std::make_pair(I, SI));
218 }
219 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
220 if (isa<Constant>(MSI->getValue())) {
221 Changed = true;
222 MSI->eraseFromParent();
223 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
224 if (I->hasOneUse())
225 Dead.push_back(std::make_pair(I, MSI));
226 }
227 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
228 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
229 if (MemSrc && MemSrc->isConstant()) {
230 Changed = true;
231 MTI->eraseFromParent();
232 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
233 if (I->hasOneUse())
234 Dead.push_back(std::make_pair(I, MTI));
235 }
236 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
237 if (CE->use_empty()) {
238 CE->destroyConstant();
239 Changed = true;
240 }
241 } else if (Constant *C = dyn_cast<Constant>(U)) {
Rafael Espindola27797ba2013-10-17 18:06:32 +0000242 if (isSafeToDestroyConstant(C)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000243 C->destroyConstant();
244 // This could have invalidated UI, start over from scratch.
245 Dead.clear();
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000246 CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000247 return true;
248 }
249 }
250 }
251
252 for (int i = 0, e = Dead.size(); i != e; ++i) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000253 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000254 Dead[i].second->eraseFromParent();
255 Instruction *I = Dead[i].first;
256 do {
Michael Gottesman2a654272013-01-11 23:08:52 +0000257 if (isAllocationFn(I, TLI))
258 break;
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000259 Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
260 if (!J)
261 break;
262 I->eraseFromParent();
263 I = J;
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +0000264 } while (true);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000265 I->eraseFromParent();
266 }
267 }
268
269 return Changed;
270}
271
James Molloyea31ad32015-11-13 11:05:07 +0000272/// We just marked GV constant. Loop over all users of the global, cleaning up
273/// the obvious ones. This is largely just a quick scan over the use list to
274/// clean up the easy and obvious cruft. This returns true if it made a change.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000275static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
Mehdi Amini46a43552015-03-04 18:43:29 +0000276 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000277 TargetLibraryInfo *TLI) {
Chris Lattnercb9f1522004-10-10 16:43:46 +0000278 bool Changed = false;
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000279 // Note that we need to use a weak value handle for the worklist items. When
280 // we delete a constant array, we may also be holding pointer to one of its
281 // elements (or an element of one of its elements if we're dealing with an
282 // array of arrays) in the worklist.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +0000283 SmallVector<WeakTrackingVH, 8> WorkList(V->user_begin(), V->user_end());
Bill Wendling88d06c32013-04-02 08:16:45 +0000284 while (!WorkList.empty()) {
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000285 Value *UV = WorkList.pop_back_val();
286 if (!UV)
287 continue;
288
289 User *U = cast<User>(UV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000290
Chris Lattner25db5802004-10-07 04:16:33 +0000291 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000292 if (Init) {
293 // Replace the load with the initializer.
294 LI->replaceAllUsesWith(Init);
295 LI->eraseFromParent();
296 Changed = true;
297 }
Chris Lattner25db5802004-10-07 04:16:33 +0000298 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
299 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000300 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000301 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000302 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
303 if (CE->getOpcode() == Instruction::GetElementPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000304 Constant *SubInit = nullptr;
Chris Lattner46d9ff082005-09-26 07:34:35 +0000305 if (Init)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000306 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000307 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI);
Matt Arsenault461c8e02014-01-02 20:01:43 +0000308 } else if ((CE->getOpcode() == Instruction::BitCast &&
309 CE->getType()->isPointerTy()) ||
310 CE->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000311 // Pointer cast, delete any stores and memsets to the global.
Craig Topperf40110f2014-04-25 05:29:35 +0000312 Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI);
Chris Lattner7561ca12005-02-27 18:58:52 +0000313 }
314
315 if (CE->use_empty()) {
316 CE->destroyConstant();
317 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000318 }
319 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000320 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
321 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
322 // and will invalidate our notion of what Init is.
Craig Topperf40110f2014-04-25 05:29:35 +0000323 Constant *SubInit = nullptr;
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000324 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
Mehdi Amini46a43552015-03-04 18:43:29 +0000325 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000326 ConstantFoldInstruction(GEP, DL, TLI));
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000327 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000328 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Benjamin Krameraa9e4a52012-03-28 14:50:09 +0000329
330 // If the initializer is an all-null value and we have an inbounds GEP,
331 // we already know what the result of any load from that GEP is.
332 // TODO: Handle splats.
333 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
Eduard Burtescu19eb0312016-01-19 17:28:00 +0000334 SubInit = Constant::getNullValue(GEP->getResultElementType());
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000335 }
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000336 Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000337
Chris Lattnercb9f1522004-10-10 16:43:46 +0000338 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000339 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000340 Changed = true;
341 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000342 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
343 if (MI->getRawDest() == V) {
344 MI->eraseFromParent();
345 Changed = true;
346 }
347
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000348 } else if (Constant *C = dyn_cast<Constant>(U)) {
349 // If we have a chain of dead constantexprs or other things dangling from
350 // us, and if they are all dead, nuke them without remorse.
Rafael Espindola27797ba2013-10-17 18:06:32 +0000351 if (isSafeToDestroyConstant(C)) {
Devang Pateld926aaa2009-03-06 01:37:41 +0000352 C->destroyConstant();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000353 CleanupConstantGlobalUsers(V, Init, DL, TLI);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000354 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000355 }
Chris Lattner25db5802004-10-07 04:16:33 +0000356 }
357 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000358 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000359}
360
James Molloyea31ad32015-11-13 11:05:07 +0000361/// Return true if the specified instruction is a safe user of a derived
362/// expression from a global that we want to SROA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000363static bool isSafeSROAElementUse(Value *V) {
364 // We might have a dead and dangling constant hanging off of here.
365 if (Constant *C = dyn_cast<Constant>(V))
Rafael Espindola27797ba2013-10-17 18:06:32 +0000366 return isSafeToDestroyConstant(C);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000367
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000368 Instruction *I = dyn_cast<Instruction>(V);
369 if (!I) return false;
370
371 // Loads are ok.
372 if (isa<LoadInst>(I)) return true;
373
374 // Stores *to* the pointer are ok.
375 if (StoreInst *SI = dyn_cast<StoreInst>(I))
376 return SI->getOperand(0) != V;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000377
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000378 // Otherwise, it must be a GEP.
379 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
Craig Topperf40110f2014-04-25 05:29:35 +0000380 if (!GEPI) return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000381
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000382 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
383 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
384 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000385
Chandler Carruthcdf47882014-03-09 03:16:01 +0000386 for (User *U : GEPI->users())
387 if (!isSafeSROAElementUse(U))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000388 return false;
Chris Lattnerab053722008-01-14 01:31:05 +0000389 return true;
390}
391
James Molloyea31ad32015-11-13 11:05:07 +0000392/// U is a direct user of the specified global value. Look at it and its uses
393/// and decide whether it is safe to SROA this global.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000394static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
395 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000396 if (!isa<GetElementPtrInst>(U) &&
397 (!isa<ConstantExpr>(U) ||
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000398 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
399 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000400
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000401 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
402 // don't like < 3 operand CE's, and we don't like non-constant integer
403 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
404 // value of C.
405 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
406 !cast<Constant>(U->getOperand(1))->isNullValue() ||
407 !isa<ConstantInt>(U->getOperand(2)))
408 return false;
409
410 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
411 ++GEPI; // Skip over the pointer index.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000412
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000413 // If this is a use of an array allocation, do a bit more checking for sanity.
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000414 if (GEPI.isSequential()) {
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000415 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000416
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000417 // Check to make sure that index falls within the array. If not,
418 // something funny is going on, so we won't do the optimization.
419 //
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000420 if (GEPI.isBoundedSequential() &&
421 Idx->getZExtValue() >= GEPI.getSequentialNumElements())
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000422 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000423
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000424 // We cannot scalar repl this level of the array unless any array
425 // sub-indices are in-range constants. In particular, consider:
426 // A[0][i]. We cannot know that the user isn't doing invalid things like
427 // allowing i to index an out-of-range subscript that accesses A[1].
428 //
429 // Scalar replacing *just* the outer index of the array is probably not
430 // going to be a win anyway, so just give up.
431 for (++GEPI; // Skip array index.
Dan Gohman82ac81b2009-08-18 14:58:19 +0000432 GEPI != E;
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000433 ++GEPI) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000434 if (GEPI.isStruct())
Dan Gohman82ac81b2009-08-18 14:58:19 +0000435 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000436
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000437 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000438 if (!IdxVal ||
439 (GEPI.isBoundedSequential() &&
440 IdxVal->getZExtValue() >= GEPI.getSequentialNumElements()))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000441 return false;
442 }
443 }
444
Davide Italianoc163fac2017-08-09 09:23:29 +0000445 return llvm::all_of(U->users(),
446 [](User *UU) { return isSafeSROAElementUse(UU); });
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000447}
448
James Molloyea31ad32015-11-13 11:05:07 +0000449/// Look at all uses of the global and decide whether it is safe for us to
450/// perform this transformation.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000451static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000452 for (User *U : GV->users())
453 if (!IsUserOfGlobalSafeForSRA(U, GV))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000454 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000455
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000456 return true;
457}
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000458
Victor Leschuk56b03d02017-08-04 04:51:15 +0000459/// Copy over the debug info for a variable to its SRA replacements.
460static void transferSRADebugInfo(GlobalVariable *GV, GlobalVariable *NGV,
461 uint64_t FragmentOffsetInBits,
Adrian Prantl504b82d2017-08-31 00:06:18 +0000462 uint64_t FragmentSizeInBits,
463 unsigned NumElements) {
Victor Leschuk56b03d02017-08-04 04:51:15 +0000464 SmallVector<DIGlobalVariableExpression *, 1> GVs;
465 GV->getDebugInfo(GVs);
466 for (auto *GVE : GVs) {
467 DIVariable *Var = GVE->getVariable();
468 DIExpression *Expr = GVE->getExpression();
Adrian Prantl25a09dd2017-11-07 00:45:34 +0000469 if (NumElements > 1) {
470 if (auto E = DIExpression::createFragmentExpression(
471 Expr, FragmentOffsetInBits, FragmentSizeInBits))
472 Expr = *E;
473 else
474 return;
475 }
Adrian Prantl504b82d2017-08-31 00:06:18 +0000476 auto *NGVE = DIGlobalVariableExpression::get(GVE->getContext(), Var, Expr);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000477 NGV->addDebugInfo(NGVE);
478 }
479}
480
James Molloyea31ad32015-11-13 11:05:07 +0000481/// Perform scalar replacement of aggregates on the specified global variable.
482/// This opens the door for other optimizations by exposing the behavior of the
483/// program in a more fine-grained way. We have determined that this
484/// transformation is safe already. We return the first global variable we
Chris Lattnerabab0712004-10-08 17:32:09 +0000485/// insert so that the caller can reprocess it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000486static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
Chris Lattnerab053722008-01-14 01:31:05 +0000487 // Make sure this global only has simple uses that we can SRA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000488 if (!GlobalUsersSafeToSRA(GV))
Craig Topperf40110f2014-04-25 05:29:35 +0000489 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000490
James Molloyeb040cc2016-04-25 10:48:29 +0000491 assert(GV->hasLocalLinkage());
Chris Lattnerabab0712004-10-08 17:32:09 +0000492 Constant *Init = GV->getInitializer();
Chris Lattner229907c2011-07-18 04:54:35 +0000493 Type *Ty = Init->getType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000494
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +0000495 std::vector<GlobalVariable *> NewGlobals;
Chris Lattnerabab0712004-10-08 17:32:09 +0000496 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
497
Chris Lattner67ca6f632008-04-26 07:40:11 +0000498 // Get the alignment of the global, either explicit or target-specific.
499 unsigned StartAlignment = GV->getAlignment();
500 if (StartAlignment == 0)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000501 StartAlignment = DL.getABITypeAlignment(GV->getType());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000502
Chris Lattner229907c2011-07-18 04:54:35 +0000503 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Adrian Prantl504b82d2017-08-31 00:06:18 +0000504 unsigned NumElements = STy->getNumElements();
505 NewGlobals.reserve(NumElements);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000506 const StructLayout &Layout = *DL.getStructLayout(STy);
Adrian Prantl504b82d2017-08-31 00:06:18 +0000507 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000508 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000509 assert(In && "Couldn't get element of initializer?");
Chris Lattner46b5c642009-11-06 04:27:31 +0000510 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000511 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000512 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000513 GV->getThreadLocalMode(),
Owen Anderson5948fdf2009-07-08 01:26:06 +0000514 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000515 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000516 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000517 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000518 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000519
Chris Lattner67ca6f632008-04-26 07:40:11 +0000520 // Calculate the known alignment of the field. If the original aggregate
521 // had 256 byte alignment for example, something might depend on that:
522 // propagate info to each field.
523 uint64_t FieldOffset = Layout.getElementOffset(i);
524 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000525 if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i)))
Chris Lattner67ca6f632008-04-26 07:40:11 +0000526 NGV->setAlignment(NewAlign);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000527
528 // Copy over the debug info for the variable.
Mikael Holmenb69e5b72018-02-02 10:34:13 +0000529 uint64_t Size = DL.getTypeAllocSizeInBits(NGV->getValueType());
Mikael Holmen886edf82018-01-25 10:09:26 +0000530 uint64_t FragmentOffsetInBits = Layout.getElementOffsetInBits(i);
531 transferSRADebugInfo(GV, NGV, FragmentOffsetInBits, Size, NumElements);
Chris Lattnerabab0712004-10-08 17:32:09 +0000532 }
Chris Lattner229907c2011-07-18 04:54:35 +0000533 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
Peter Collingbournebc070522016-12-02 03:20:58 +0000534 unsigned NumElements = STy->getNumElements();
Chris Lattner25169ca2005-02-23 16:53:04 +0000535 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Craig Topperf40110f2014-04-25 05:29:35 +0000536 return nullptr; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000537 NewGlobals.reserve(NumElements);
Victor Leschuk56b03d02017-08-04 04:51:15 +0000538 auto ElTy = STy->getElementType();
539 uint64_t EltSize = DL.getTypeAllocSize(ElTy);
540 unsigned EltAlign = DL.getABITypeAlignment(ElTy);
Mikael Holmenb69e5b72018-02-02 10:34:13 +0000541 uint64_t FragmentSizeInBits = DL.getTypeAllocSizeInBits(ElTy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000542 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000543 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000544 assert(In && "Couldn't get element of initializer?");
545
Chris Lattner46b5c642009-11-06 04:27:31 +0000546 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000547 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000548 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000549 GV->getThreadLocalMode(),
Owen Andersonb17f3292009-07-08 19:03:57 +0000550 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000551 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Sergei Larin94be2de2016-01-22 21:18:20 +0000552 NGV->copyAttributesFrom(GV);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000553 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000554 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000555
Chris Lattner67ca6f632008-04-26 07:40:11 +0000556 // Calculate the known alignment of the field. If the original aggregate
557 // had 256 byte alignment for example, something might depend on that:
558 // propagate info to each field.
559 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
560 if (NewAlign > EltAlign)
561 NGV->setAlignment(NewAlign);
Adrian Prantl504b82d2017-08-31 00:06:18 +0000562 transferSRADebugInfo(GV, NGV, FragmentSizeInBits * i, FragmentSizeInBits,
563 NumElements);
Chris Lattnerabab0712004-10-08 17:32:09 +0000564 }
565 }
566
567 if (NewGlobals.empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000568 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000569
James Molloyef607a22015-10-28 14:30:53 +0000570 DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n");
Chris Lattner004e2502004-10-11 05:54:41 +0000571
Chris Lattner46b5c642009-11-06 04:27:31 +0000572 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattnerabab0712004-10-08 17:32:09 +0000573
574 // Loop over all of the uses of the global, replacing the constantexpr geps,
575 // with smaller constantexpr geps or direct references.
576 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000577 User *GEP = GV->user_back();
Chris Lattner004e2502004-10-11 05:54:41 +0000578 assert(((isa<ConstantExpr>(GEP) &&
579 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
580 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000581
Chris Lattnerabab0712004-10-08 17:32:09 +0000582 // Ignore the 1th operand, which has to be zero or else the program is quite
583 // broken (undefined). Get the 2nd operand, which is the structure or array
584 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000585 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000586 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
587
Chris Lattner004e2502004-10-11 05:54:41 +0000588 Value *NewPtr = NewGlobals[Val];
David Blaikied9d900c2015-05-07 17:28:58 +0000589 Type *NewTy = NewGlobals[Val]->getValueType();
Chris Lattnerabab0712004-10-08 17:32:09 +0000590
591 // Form a shorter GEP if needed.
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000592 if (GEP->getNumOperands() > 3) {
Chris Lattner004e2502004-10-11 05:54:41 +0000593 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000594 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000595 Idxs.push_back(NullInt);
596 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
597 Idxs.push_back(CE->getOperand(i));
David Blaikie4a2e73b2015-04-02 18:55:32 +0000598 NewPtr =
599 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
Chris Lattner004e2502004-10-11 05:54:41 +0000600 } else {
601 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000602 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000603 Idxs.push_back(NullInt);
604 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
605 Idxs.push_back(GEPI->getOperand(i));
David Blaikie741c8f82015-03-14 01:53:18 +0000606 NewPtr = GetElementPtrInst::Create(
David Blaikied9d900c2015-05-07 17:28:58 +0000607 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
Chris Lattner004e2502004-10-11 05:54:41 +0000608 }
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000609 }
Chris Lattner004e2502004-10-11 05:54:41 +0000610 GEP->replaceAllUsesWith(NewPtr);
611
612 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000613 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000614 else
615 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000616 }
617
Chris Lattner73ad73e2004-10-08 20:25:55 +0000618 // Delete the old global, now that it is dead.
619 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000620 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000621
622 // Loop over the new globals array deleting any globals that are obviously
623 // dead. This can arise due to scalarization of a structure or an array that
624 // has elements that are dead.
625 unsigned FirstGlobal = 0;
626 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
627 if (NewGlobals[i]->use_empty()) {
628 Globals.erase(NewGlobals[i]);
629 if (FirstGlobal == i) ++FirstGlobal;
630 }
631
Craig Topperf40110f2014-04-25 05:29:35 +0000632 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
Chris Lattnerabab0712004-10-08 17:32:09 +0000633}
634
James Molloyea31ad32015-11-13 11:05:07 +0000635/// Return true if all users of the specified value will trap if the value is
636/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
637/// reprocessing them.
Gabor Greif67972872010-04-06 19:24:18 +0000638static bool AllUsesOfValueWillTrapIfNull(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +0000639 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000640 for (const User *U : V->users())
Gabor Greif08355d62010-04-06 19:14:05 +0000641 if (isa<LoadInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000642 // Will trap.
Gabor Greif67972872010-04-06 19:24:18 +0000643 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000644 if (SI->getOperand(0) == V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000645 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000646 return false; // Storing the value.
647 }
Gabor Greif67972872010-04-06 19:24:18 +0000648 } else if (const CallInst *CI = dyn_cast<CallInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000649 if (CI->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000650 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000651 return false; // Not calling the ptr
652 }
Gabor Greif67972872010-04-06 19:24:18 +0000653 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000654 if (II->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000655 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000656 return false; // Not calling the ptr
657 }
Gabor Greif67972872010-04-06 19:24:18 +0000658 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000659 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000660 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000661 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000662 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000663 // If we've already seen this phi node, ignore it, it has already been
664 // checked.
David Blaikie70573dc2014-11-19 07:49:26 +0000665 if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
Jakob Stoklund Olesene27dc722010-01-29 23:54:14 +0000666 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000667 } else if (isa<ICmpInst>(U) &&
Chandler Carruthcdf47882014-03-09 03:16:01 +0000668 isa<ConstantPointerNull>(U->getOperand(1))) {
Nick Lewycky614fb942010-02-25 06:39:10 +0000669 // Ignore icmp X, null
Chris Lattner09a52722004-10-09 21:48:45 +0000670 } else {
Gabor Greif08355d62010-04-06 19:14:05 +0000671 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000672 return false;
673 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000674
Chris Lattner09a52722004-10-09 21:48:45 +0000675 return true;
676}
677
James Molloyea31ad32015-11-13 11:05:07 +0000678/// Return true if all uses of any loads from GV will trap if the loaded value
679/// is null. Note that this also permits comparisons of the loaded value
680/// against null, as a special case.
Gabor Greif67972872010-04-06 19:24:18 +0000681static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000682 for (const User *U : GV->users())
Gabor Greif67972872010-04-06 19:24:18 +0000683 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
684 SmallPtrSet<const PHINode*, 8> PHIs;
Chris Lattner2d2892e2007-09-13 16:30:19 +0000685 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner09a52722004-10-09 21:48:45 +0000686 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000687 } else if (isa<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000688 // Ignore stores to the global.
689 } else {
690 // We don't know or understand this user, bail out.
Gabor Greif08355d62010-04-06 19:14:05 +0000691 //cerr << "UNKNOWN USER OF GLOBAL!: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000692 return false;
693 }
Chris Lattner09a52722004-10-09 21:48:45 +0000694 return true;
695}
696
Chris Lattner46b5c642009-11-06 04:27:31 +0000697static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000698 bool Changed = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000699 for (auto UI = V->user_begin(), E = V->user_end(); UI != E; ) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000700 Instruction *I = cast<Instruction>(*UI++);
701 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
702 LI->setOperand(0, NewV);
703 Changed = true;
704 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
705 if (SI->getOperand(1) == V) {
706 SI->setOperand(1, NewV);
707 Changed = true;
708 }
709 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
Gabor Greif04397892010-04-06 18:45:08 +0000710 CallSite CS(I);
711 if (CS.getCalledValue() == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000712 // Calling through the pointer! Turn into a direct call, but be careful
713 // that the pointer is not also being passed as an argument.
Gabor Greif04397892010-04-06 18:45:08 +0000714 CS.setCalledFunction(NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000715 Changed = true;
716 bool PassedAsArg = false;
Gabor Greif04397892010-04-06 18:45:08 +0000717 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
718 if (CS.getArgument(i) == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000719 PassedAsArg = true;
Gabor Greif04397892010-04-06 18:45:08 +0000720 CS.setArgument(i, NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000721 }
722
723 if (PassedAsArg) {
724 // Being passed as an argument also. Be careful to not invalidate UI!
Chandler Carruthcdf47882014-03-09 03:16:01 +0000725 UI = V->user_begin();
Chris Lattnere42eb312004-10-10 23:14:11 +0000726 }
727 }
728 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
729 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Anderson487375e2009-07-29 18:55:55 +0000730 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner46b5c642009-11-06 04:27:31 +0000731 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000732 if (CI->use_empty()) {
733 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000734 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000735 }
736 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
737 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000738 SmallVector<Constant*, 8> Idxs;
739 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif3a9fba52008-05-29 01:59:18 +0000740 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
741 i != e; ++i)
742 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000743 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000744 else
745 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000746 if (Idxs.size() == GEPI->getNumOperands()-1)
David Blaikie4a2e73b2015-04-02 18:55:32 +0000747 Changed |= OptimizeAwayTrappingUsesOfValue(
748 GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs));
Chris Lattnere42eb312004-10-10 23:14:11 +0000749 if (GEPI->use_empty()) {
750 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000751 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000752 }
753 }
754 }
755
756 return Changed;
757}
758
James Molloyea31ad32015-11-13 11:05:07 +0000759/// The specified global has only one non-null value stored into it. If there
760/// are uses of the loaded value that would trap if the loaded value is
761/// dynamically null, then we know that they cannot be reachable with a null
762/// optimize away the load.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000763static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
Mehdi Amini46a43552015-03-04 18:43:29 +0000764 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000765 TargetLibraryInfo *TLI) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000766 bool Changed = false;
767
Chris Lattner2538eb62009-01-14 00:12:58 +0000768 // Keep track of whether we are able to remove all the uses of the global
769 // other than the store that defines it.
770 bool AllNonStoreUsesGone = true;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000771
Chris Lattnere42eb312004-10-10 23:14:11 +0000772 // Replace all uses of loads with uses of uses of the stored value.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000773 for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){
Chris Lattner2538eb62009-01-14 00:12:58 +0000774 User *GlobalUser = *GUI++;
775 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner46b5c642009-11-06 04:27:31 +0000776 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner2538eb62009-01-14 00:12:58 +0000777 // If we were able to delete all uses of the loads
778 if (LI->use_empty()) {
779 LI->eraseFromParent();
780 Changed = true;
781 } else {
782 AllNonStoreUsesGone = false;
783 }
784 } else if (isa<StoreInst>(GlobalUser)) {
785 // Ignore the store that stores "LV" to the global.
786 assert(GlobalUser->getOperand(1) == GV &&
787 "Must be storing *to* the global");
Chris Lattnere42eb312004-10-10 23:14:11 +0000788 } else {
Chris Lattner2538eb62009-01-14 00:12:58 +0000789 AllNonStoreUsesGone = false;
790
791 // If we get here we could have other crazy uses that are transitively
792 // loaded.
793 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
Benjamin Kramered843602012-09-28 10:01:27 +0000794 isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
795 isa<BitCastInst>(GlobalUser) ||
796 isa<GetElementPtrInst>(GlobalUser)) &&
Chris Lattner1a1acc22011-05-22 07:15:13 +0000797 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000798 }
Chris Lattner2538eb62009-01-14 00:12:58 +0000799 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000800
801 if (Changed) {
James Molloyef607a22015-10-28 14:30:53 +0000802 DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV << "\n");
Chris Lattnere42eb312004-10-10 23:14:11 +0000803 ++NumGlobUses;
804 }
805
Chris Lattnere42eb312004-10-10 23:14:11 +0000806 // If we nuked all of the loads, then none of the stores are needed either,
807 // nor is the global.
Chris Lattner2538eb62009-01-14 00:12:58 +0000808 if (AllNonStoreUsesGone) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000809 if (isLeakCheckerRoot(GV)) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000810 Changed |= CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000811 } else {
812 Changed = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000813 CleanupConstantGlobalUsers(GV, nullptr, DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000814 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000815 if (GV->use_empty()) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000816 DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
817 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000818 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000819 ++NumDeleted;
820 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000821 }
822 return Changed;
823}
824
James Molloyea31ad32015-11-13 11:05:07 +0000825/// Walk the use list of V, constant folding all of the instructions that are
826/// foldable.
Mehdi Amini46a43552015-03-04 18:43:29 +0000827static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000828 TargetLibraryInfo *TLI) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000829 for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
Chris Lattner004e2502004-10-11 05:54:41 +0000830 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000831 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
Chris Lattner004e2502004-10-11 05:54:41 +0000832 I->replaceAllUsesWith(NewC);
833
Chris Lattnerd6a44922005-02-01 01:23:31 +0000834 // Advance UI to the next non-I use to avoid invalidating it!
835 // Instructions could multiply use V.
836 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000837 ++UI;
David Majnemer522a9112016-07-22 04:54:44 +0000838 if (isInstructionTriviallyDead(I, TLI))
839 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000840 }
841}
842
James Molloyea31ad32015-11-13 11:05:07 +0000843/// This function takes the specified global variable, and transforms the
844/// program as if it always contained the result of the specified malloc.
845/// Because it is always the result of the specified malloc, there is no reason
846/// to actually DO the malloc. Instead, turn the malloc into a global, and any
847/// loads of GV as uses of the new global.
Mehdi Amini46a43552015-03-04 18:43:29 +0000848static GlobalVariable *
849OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
850 ConstantInt *NElements, const DataLayout &DL,
851 TargetLibraryInfo *TLI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000852 DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI << '\n');
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000853
Chris Lattner229907c2011-07-18 04:54:35 +0000854 Type *GlobalType;
Chris Lattner7939f792010-02-25 22:33:52 +0000855 if (NElements->getZExtValue() == 1)
856 GlobalType = AllocTy;
857 else
858 // If we have an array allocation, the global variable is of an array.
859 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez5d034492009-09-18 22:35:49 +0000860
861 // Create the new global variable. The contents of the malloc'd memory is
862 // undefined, so initialize with an undef value.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000863 GlobalVariable *NewGV = new GlobalVariable(
864 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage,
865 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr,
866 GV->getThreadLocalMode());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000867
Chris Lattner7939f792010-02-25 22:33:52 +0000868 // If there are bitcast users of the malloc (which is typical, usually we have
869 // a malloc + bitcast) then replace them with uses of the new global. Update
870 // other users to use the global as well.
Craig Topperf40110f2014-04-25 05:29:35 +0000871 BitCastInst *TheBC = nullptr;
Chris Lattner7939f792010-02-25 22:33:52 +0000872 while (!CI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000873 Instruction *User = cast<Instruction>(CI->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000874 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
875 if (BCI->getType() == NewGV->getType()) {
876 BCI->replaceAllUsesWith(NewGV);
877 BCI->eraseFromParent();
878 } else {
879 BCI->setOperand(0, NewGV);
880 }
881 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000882 if (!TheBC)
Chris Lattner7939f792010-02-25 22:33:52 +0000883 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
884 User->replaceUsesOfWith(CI, TheBC);
885 }
886 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000887
Victor Hernandez5d034492009-09-18 22:35:49 +0000888 Constant *RepValue = NewGV;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000889 if (NewGV->getType() != GV->getValueType())
890 RepValue = ConstantExpr::getBitCast(RepValue, GV->getValueType());
Victor Hernandez5d034492009-09-18 22:35:49 +0000891
892 // If there is a comparison against null, we will insert a global bool to
893 // keep track of whether the global was initialized yet or not.
894 GlobalVariable *InitBool =
Chris Lattner46b5c642009-11-06 04:27:31 +0000895 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez5d034492009-09-18 22:35:49 +0000896 GlobalValue::InternalLinkage,
Chris Lattner46b5c642009-11-06 04:27:31 +0000897 ConstantInt::getFalse(GV->getContext()),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000898 GV->getName()+".init", GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +0000899 bool InitBoolUsed = false;
900
901 // Loop over all uses of GV, processing them in turn.
Chris Lattner7939f792010-02-25 22:33:52 +0000902 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000903 if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) {
Victor Hernandez5d034492009-09-18 22:35:49 +0000904 // The global is initialized when the store to it occurs.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000905 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000906 SI->getOrdering(), SI->getSyncScopeID(), SI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000907 SI->eraseFromParent();
Chris Lattner7939f792010-02-25 22:33:52 +0000908 continue;
Victor Hernandez5d034492009-09-18 22:35:49 +0000909 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000910
Chandler Carruthcdf47882014-03-09 03:16:01 +0000911 LoadInst *LI = cast<LoadInst>(GV->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000912 while (!LI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000913 Use &LoadUse = *LI->use_begin();
914 ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser());
915 if (!ICI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000916 LoadUse = RepValue;
917 continue;
918 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000919
Chris Lattner7939f792010-02-25 22:33:52 +0000920 // Replace the cmp X, 0 with a use of the bool value.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000921 // Sink the load to where the compare was, if atomic rules allow us to.
922 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000923 LI->getOrdering(), LI->getSyncScopeID(),
Nick Lewycky52da72b2012-02-05 19:56:38 +0000924 LI->isUnordered() ? (Instruction*)ICI : LI);
Chris Lattner7939f792010-02-25 22:33:52 +0000925 InitBoolUsed = true;
926 switch (ICI->getPredicate()) {
927 default: llvm_unreachable("Unknown ICmp Predicate!");
928 case ICmpInst::ICMP_ULT:
929 case ICmpInst::ICMP_SLT: // X < null -> always false
930 LV = ConstantInt::getFalse(GV->getContext());
931 break;
932 case ICmpInst::ICMP_ULE:
933 case ICmpInst::ICMP_SLE:
934 case ICmpInst::ICMP_EQ:
935 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
936 break;
937 case ICmpInst::ICMP_NE:
938 case ICmpInst::ICMP_UGE:
939 case ICmpInst::ICMP_SGE:
940 case ICmpInst::ICMP_UGT:
941 case ICmpInst::ICMP_SGT:
942 break; // no change.
943 }
944 ICI->replaceAllUsesWith(LV);
945 ICI->eraseFromParent();
946 }
947 LI->eraseFromParent();
948 }
Victor Hernandez5d034492009-09-18 22:35:49 +0000949
950 // If the initialization boolean was used, insert it, otherwise delete it.
951 if (!InitBoolUsed) {
952 while (!InitBool->use_empty()) // Delete initializations
Chandler Carruthcdf47882014-03-09 03:16:01 +0000953 cast<StoreInst>(InitBool->user_back())->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000954 delete InitBool;
955 } else
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000956 GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
Victor Hernandez5d034492009-09-18 22:35:49 +0000957
Chris Lattner7939f792010-02-25 22:33:52 +0000958 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez5d034492009-09-18 22:35:49 +0000959 GV->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000960 CI->eraseFromParent();
961
962 // To further other optimizations, loop over all users of NewGV and try to
963 // constant prop them. This will promote GEP instructions with constant
964 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000965 ConstantPropUsersOf(NewGV, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000966 if (RepValue != NewGV)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000967 ConstantPropUsersOf(RepValue, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000968
969 return NewGV;
970}
971
James Molloyea31ad32015-11-13 11:05:07 +0000972/// Scan the use-list of V checking to make sure that there are no complex uses
973/// of V. We permit simple things like dereferencing the pointer, but not
974/// storing through the address, unless it is to the specified global.
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000975static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
976 const GlobalVariable *GV,
Craig Topper71b7b682014-08-21 05:55:13 +0000977 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000978 for (const User *U : V->users()) {
979 const Instruction *Inst = cast<Instruction>(U);
Gabor Greif08355d62010-04-06 19:14:05 +0000980
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000981 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
982 continue; // Fine, ignore.
983 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000984
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000985 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000986 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
987 return false; // Storing the pointer itself... bad.
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000988 continue; // Otherwise, storing through it, or storing into GV... fine.
989 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000990
Chris Lattnerb9801ff2010-04-10 18:19:22 +0000991 // Must index into the array and into the struct.
992 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000993 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000994 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000995 continue;
996 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000997
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000998 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattner6eed0e72007-09-13 16:37:20 +0000999 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
1000 // cycles.
David Blaikie70573dc2014-11-19 07:49:26 +00001001 if (PHIs.insert(PN).second)
Chris Lattner5d13fb532007-09-14 03:41:21 +00001002 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
1003 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +00001004 continue;
Chris Lattnerc0677c02004-12-02 07:11:07 +00001005 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001006
Gabor Greifa21bc0f2010-04-06 18:58:22 +00001007 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +00001008 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
1009 return false;
1010 continue;
1011 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001012
Chris Lattnerf0eb5682008-12-15 21:08:54 +00001013 return false;
1014 }
Chris Lattnerc0677c02004-12-02 07:11:07 +00001015 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +00001016}
1017
James Molloyea31ad32015-11-13 11:05:07 +00001018/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
1019/// allocation into loads from the global and uses of the resultant pointer.
1020/// Further, delete the store into GV. This assumes that these value pass the
Chris Lattner24d3d422006-09-30 23:32:09 +00001021/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001022static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
Chris Lattner24d3d422006-09-30 23:32:09 +00001023 GlobalVariable *GV) {
1024 while (!Alloc->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001025 Instruction *U = cast<Instruction>(*Alloc->user_begin());
Chris Lattnerba98f892007-09-13 18:00:31 +00001026 Instruction *InsertPt = U;
Chris Lattner24d3d422006-09-30 23:32:09 +00001027 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
1028 // If this is the store of the allocation into the global, remove it.
1029 if (SI->getOperand(1) == GV) {
1030 SI->eraseFromParent();
1031 continue;
1032 }
Chris Lattnerba98f892007-09-13 18:00:31 +00001033 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
1034 // Insert the load in the corresponding predecessor, not right before the
1035 // PHI.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001036 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001037 } else if (isa<BitCastInst>(U)) {
1038 // Must be bitcast between the malloc and store to initialize the global.
1039 ReplaceUsesOfMallocWithGlobal(U, GV);
1040 U->eraseFromParent();
1041 continue;
1042 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
1043 // If this is a "GEP bitcast" and the user is a store to the global, then
1044 // just process it as a bitcast.
1045 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +00001046 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back()))
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001047 if (SI->getOperand(1) == GV) {
1048 // Must be bitcast GEP between the malloc and store to initialize
1049 // the global.
1050 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1051 GEPI->eraseFromParent();
1052 continue;
1053 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001054 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001055
Chris Lattner24d3d422006-09-30 23:32:09 +00001056 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnerba98f892007-09-13 18:00:31 +00001057 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner24d3d422006-09-30 23:32:09 +00001058 U->replaceUsesOfWith(Alloc, NL);
1059 }
1060}
1061
James Molloyea31ad32015-11-13 11:05:07 +00001062/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
1063/// perform heap SRA on. This permits GEP's that index through the array and
1064/// struct field, icmps of null, and PHIs.
Gabor Greif5d5db532010-04-01 08:21:08 +00001065static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +00001066 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1067 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
Chris Lattner56b55382008-12-16 21:24:51 +00001068 // We permit two users of the load: setcc comparing against the null
1069 // pointer, and a getelementptr of a specific form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001070 for (const User *U : V->users()) {
1071 const Instruction *UI = cast<Instruction>(U);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001072
Chris Lattner56b55382008-12-16 21:24:51 +00001073 // Comparison against null is ok.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001074 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001075 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1076 return false;
1077 continue;
1078 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001079
Chris Lattner56b55382008-12-16 21:24:51 +00001080 // getelementptr is also ok, but only a simple form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001081 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001082 // Must index into the array and into the struct.
1083 if (GEPI->getNumOperands() < 3)
1084 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001085
Chris Lattner56b55382008-12-16 21:24:51 +00001086 // Otherwise the GEP is ok.
1087 continue;
1088 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001089
Chandler Carruthcdf47882014-03-09 03:16:01 +00001090 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001091 if (!LoadUsingPHIsPerLoad.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001092 // This means some phi nodes are dependent on each other.
1093 // Avoid infinite looping!
1094 return false;
David Blaikie70573dc2014-11-19 07:49:26 +00001095 if (!LoadUsingPHIs.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001096 // If we have already analyzed this PHI, then it is safe.
Chris Lattner56b55382008-12-16 21:24:51 +00001097 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001098
Chris Lattner222ef4c2008-12-17 05:28:49 +00001099 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng83689442009-06-02 00:56:07 +00001100 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1101 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001102 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001103
Chris Lattner56b55382008-12-16 21:24:51 +00001104 continue;
Chris Lattner24d3d422006-09-30 23:32:09 +00001105 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001106
Chris Lattner56b55382008-12-16 21:24:51 +00001107 // Otherwise we don't know what this is, not ok.
1108 return false;
1109 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001110
Chris Lattner56b55382008-12-16 21:24:51 +00001111 return true;
1112}
1113
James Molloyea31ad32015-11-13 11:05:07 +00001114/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1115/// return true.
Gabor Greif5d5db532010-04-01 08:21:08 +00001116static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez5d034492009-09-18 22:35:49 +00001117 Instruction *StoredVal) {
Gabor Greif5d5db532010-04-01 08:21:08 +00001118 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1119 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001120 for (const User *U : GV->users())
1121 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
Evan Cheng83689442009-06-02 00:56:07 +00001122 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1123 LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001124 return false;
Evan Cheng83689442009-06-02 00:56:07 +00001125 LoadUsingPHIsPerLoad.clear();
1126 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001127
Chris Lattner222ef4c2008-12-17 05:28:49 +00001128 // If we reach here, we know that all uses of the loads and transitive uses
1129 // (through PHI nodes) are simple enough to transform. However, we don't know
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001130 // that all inputs the to the PHI nodes are in the same equivalence sets.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001131 // Check to verify that all operands of the PHIs are either PHIS that can be
1132 // transformed, loads from GV, or MI itself.
Craig Topper46276792014-08-24 23:23:06 +00001133 for (const PHINode *PN : LoadUsingPHIs) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001134 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1135 Value *InVal = PN->getIncomingValue(op);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001136
Chris Lattner222ef4c2008-12-17 05:28:49 +00001137 // PHI of the stored value itself is ok.
Victor Hernandez5d034492009-09-18 22:35:49 +00001138 if (InVal == StoredVal) continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001139
Gabor Greif5d5db532010-04-01 08:21:08 +00001140 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001141 // One of the PHIs in our set is (optimistically) ok.
1142 if (LoadUsingPHIs.count(InPN))
1143 continue;
1144 return false;
1145 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001146
Chris Lattner222ef4c2008-12-17 05:28:49 +00001147 // Load from GV is ok.
Gabor Greif5d5db532010-04-01 08:21:08 +00001148 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattner222ef4c2008-12-17 05:28:49 +00001149 if (LI->getOperand(0) == GV)
1150 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001151
Chris Lattner222ef4c2008-12-17 05:28:49 +00001152 // UNDEF? NULL?
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001153
Chris Lattner222ef4c2008-12-17 05:28:49 +00001154 // Anything else is rejected.
1155 return false;
1156 }
1157 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001158
Chris Lattner24d3d422006-09-30 23:32:09 +00001159 return true;
1160}
1161
Chris Lattner222ef4c2008-12-17 05:28:49 +00001162static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001163 DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues,
1164 std::vector<std::pair<PHINode *, unsigned>> &PHIsToRewrite) {
1165 std::vector<Value *> &FieldVals = InsertedScalarizedValues[V];
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001166
Chris Lattner222ef4c2008-12-17 05:28:49 +00001167 if (FieldNo >= FieldVals.size())
1168 FieldVals.resize(FieldNo+1);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001169
Chris Lattner222ef4c2008-12-17 05:28:49 +00001170 // If we already have this value, just reuse the previously scalarized
1171 // version.
1172 if (Value *FieldVal = FieldVals[FieldNo])
1173 return FieldVal;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001174
Chris Lattner222ef4c2008-12-17 05:28:49 +00001175 // Depending on what instruction this is, we have several cases.
1176 Value *Result;
1177 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1178 // This is a scalarized version of the load from the global. Just create
1179 // a new Load of the scalarized global.
1180 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1181 InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001182 PHIsToRewrite),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001183 LI->getName()+".f"+Twine(FieldNo), LI);
David Blaikie741c8f82015-03-14 01:53:18 +00001184 } else {
1185 PHINode *PN = cast<PHINode>(V);
Chris Lattner222ef4c2008-12-17 05:28:49 +00001186 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1187 // field.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001188
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001189 PointerType *PTy = cast<PointerType>(PN->getType());
1190 StructType *ST = cast<StructType>(PTy->getElementType());
1191
1192 unsigned AS = PTy->getAddressSpace();
Jay Foade0938d82011-03-30 11:19:20 +00001193 PHINode *NewPN =
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001194 PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS),
Jay Foad52131342011-03-30 11:28:46 +00001195 PN->getNumIncomingValues(),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001196 PN->getName()+".f"+Twine(FieldNo), PN);
Jay Foade0938d82011-03-30 11:19:20 +00001197 Result = NewPN;
Chris Lattner222ef4c2008-12-17 05:28:49 +00001198 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
Chris Lattner222ef4c2008-12-17 05:28:49 +00001199 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001200
Chris Lattner222ef4c2008-12-17 05:28:49 +00001201 return FieldVals[FieldNo] = Result;
Chris Lattnerba98f892007-09-13 18:00:31 +00001202}
1203
James Molloyea31ad32015-11-13 11:05:07 +00001204/// Given a load instruction and a value derived from the load, rewrite the
1205/// derived value to use the HeapSRoA'd load.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001206static void RewriteHeapSROALoadUser(Instruction *LoadUser,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001207 DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues,
1208 std::vector<std::pair<PHINode *, unsigned>> &PHIsToRewrite) {
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001209 // If this is a comparison against null, handle it.
1210 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1211 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1212 // If we have a setcc of the loaded pointer, we can use a setcc of any
1213 // field.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001214 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner46b5c642009-11-06 04:27:31 +00001215 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001216
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001217 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001218 Constant::getNullValue(NPtr->getType()),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001219 SCI->getName());
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001220 SCI->replaceAllUsesWith(New);
1221 SCI->eraseFromParent();
1222 return;
1223 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001224
Chris Lattner222ef4c2008-12-17 05:28:49 +00001225 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnerba98f892007-09-13 18:00:31 +00001226 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1227 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1228 && "Unexpected GEPI!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001229
Chris Lattnerba98f892007-09-13 18:00:31 +00001230 // Load the pointer for this field.
1231 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner222ef4c2008-12-17 05:28:49 +00001232 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner46b5c642009-11-06 04:27:31 +00001233 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001234
Chris Lattnerba98f892007-09-13 18:00:31 +00001235 // Create the new GEP idx vector.
1236 SmallVector<Value*, 8> GEPIdx;
1237 GEPIdx.push_back(GEPI->getOperand(1));
1238 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001239
David Blaikie22319eb2015-03-14 19:24:04 +00001240 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx,
Gabor Greife9ecc682008-04-06 20:25:17 +00001241 GEPI->getName(), GEPI);
Chris Lattnerba98f892007-09-13 18:00:31 +00001242 GEPI->replaceAllUsesWith(NGEPI);
1243 GEPI->eraseFromParent();
1244 return;
1245 }
Chris Lattner011f91b2007-09-13 21:31:36 +00001246
Chris Lattner222ef4c2008-12-17 05:28:49 +00001247 // Recursively transform the users of PHI nodes. This will lazily create the
1248 // PHIs that are needed for individual elements. Keep track of what PHIs we
1249 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1250 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1251 // already been seen first by another load, so its uses have already been
1252 // processed.
1253 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner5cf753c2011-07-21 06:21:31 +00001254 if (!InsertedScalarizedValues.insert(std::make_pair(PN,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001255 std::vector<Value *>())).second)
Chris Lattner5cf753c2011-07-21 06:21:31 +00001256 return;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001257
Chris Lattner222ef4c2008-12-17 05:28:49 +00001258 // If this is the first time we've seen this PHI, recursively process all
1259 // users.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001260 for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001261 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001262 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001263 }
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001264}
1265
James Molloyea31ad32015-11-13 11:05:07 +00001266/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1267/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1268/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001269static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001270 DenseMap<Value *, std::vector<Value *>> &InsertedScalarizedValues,
1271 std::vector<std::pair<PHINode *, unsigned> > &PHIsToRewrite) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001272 for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001273 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001274 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001275 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001276
Chris Lattner222ef4c2008-12-17 05:28:49 +00001277 if (Load->use_empty()) {
1278 Load->eraseFromParent();
1279 InsertedScalarizedValues.erase(Load);
1280 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001281}
1282
James Molloyea31ad32015-11-13 11:05:07 +00001283/// CI is an allocation of an array of structures. Break it up into multiple
1284/// allocations of arrays of the fields.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001285static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
Mehdi Amini46a43552015-03-04 18:43:29 +00001286 Value *NElems, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001287 const TargetLibraryInfo *TLI) {
David Greene44cb8ad2010-01-05 01:28:05 +00001288 DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI << '\n');
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001289 Type *MAT = getMallocAllocatedType(CI, TLI);
Chris Lattner229907c2011-07-18 04:54:35 +00001290 StructType *STy = cast<StructType>(MAT);
Victor Hernandez5d034492009-09-18 22:35:49 +00001291
1292 // There is guaranteed to be at least one use of the malloc (storing
1293 // it into GV). If there are other uses, change them to be uses of
1294 // the global to simplify later code. This also deletes the store
1295 // into GV.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001296 ReplaceUsesOfMallocWithGlobal(CI, GV);
1297
Victor Hernandez5d034492009-09-18 22:35:49 +00001298 // Okay, at this point, there are no users of the malloc. Insert N
1299 // new mallocs at the same place as CI, and N globals.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001300 std::vector<Value *> FieldGlobals;
1301 std::vector<Value *> FieldMallocs;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001302
David Majnemerfadc6db2016-04-29 08:07:22 +00001303 SmallVector<OperandBundleDef, 1> OpBundles;
1304 CI->getOperandBundlesAsDefs(OpBundles);
1305
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001306 unsigned AS = GV->getType()->getPointerAddressSpace();
Victor Hernandez5d034492009-09-18 22:35:49 +00001307 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
Chris Lattner229907c2011-07-18 04:54:35 +00001308 Type *FieldTy = STy->getElementType(FieldNo);
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001309 PointerType *PFieldTy = PointerType::get(FieldTy, AS);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001310
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001311 GlobalVariable *NGV = new GlobalVariable(
1312 *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage,
1313 Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo),
1314 nullptr, GV->getThreadLocalMode());
Sergei Larin94be2de2016-01-22 21:18:20 +00001315 NGV->copyAttributesFrom(GV);
Victor Hernandez5d034492009-09-18 22:35:49 +00001316 FieldGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001317
Mehdi Amini46a43552015-03-04 18:43:29 +00001318 unsigned TypeSize = DL.getTypeAllocSize(FieldTy);
Chris Lattner229907c2011-07-18 04:54:35 +00001319 if (StructType *ST = dyn_cast<StructType>(FieldTy))
Mehdi Amini46a43552015-03-04 18:43:29 +00001320 TypeSize = DL.getStructLayout(ST)->getSizeInBytes();
1321 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
Victor Hernandezf3db9152009-11-07 00:16:28 +00001322 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1323 ConstantInt::get(IntPtrTy, TypeSize),
David Majnemerfadc6db2016-04-29 08:07:22 +00001324 NElems, OpBundles, nullptr,
Victor Hernandezf3db9152009-11-07 00:16:28 +00001325 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner0521c092010-02-26 18:23:13 +00001326 FieldMallocs.push_back(NMI);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001327 new StoreInst(NMI, NGV, CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001328 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001329
Victor Hernandez5d034492009-09-18 22:35:49 +00001330 // The tricky aspect of this transformation is handling the case when malloc
1331 // fails. In the original code, malloc failing would set the result pointer
1332 // of malloc to null. In this case, some mallocs could succeed and others
1333 // could fail. As such, we emit code that looks like this:
1334 // F0 = malloc(field0)
1335 // F1 = malloc(field1)
1336 // F2 = malloc(field2)
1337 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1338 // if (F0) { free(F0); F0 = 0; }
1339 // if (F1) { free(F1); F1 = 0; }
1340 // if (F2) { free(F2); F2 = 0; }
1341 // }
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001342 // The malloc can also fail if its argument is too large.
Gabor Greif218f5542010-06-24 14:42:01 +00001343 Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1344 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001345 ConstantZero, "isneg");
Victor Hernandez5d034492009-09-18 22:35:49 +00001346 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandezf3db9152009-11-07 00:16:28 +00001347 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1348 Constant::getNullValue(FieldMallocs[i]->getType()),
1349 "isnull");
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001350 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001351 }
1352
1353 // Split the basic block at the old malloc.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001354 BasicBlock *OrigBB = CI->getParent();
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001355 BasicBlock *ContBB =
1356 OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001357
Victor Hernandez5d034492009-09-18 22:35:49 +00001358 // Create the block to check the first condition. Put all these blocks at the
1359 // end of the function as they are unlikely to be executed.
Chris Lattner46b5c642009-11-06 04:27:31 +00001360 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1361 "malloc_ret_null",
Victor Hernandez5d034492009-09-18 22:35:49 +00001362 OrigBB->getParent());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001363
Victor Hernandez5d034492009-09-18 22:35:49 +00001364 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1365 // branch on RunningOr.
1366 OrigBB->getTerminator()->eraseFromParent();
1367 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001368
Victor Hernandez5d034492009-09-18 22:35:49 +00001369 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1370 // pointer, because some may be null while others are not.
1371 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1372 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001373 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001374 Constant::getNullValue(GVVal->getType()));
Chris Lattner46b5c642009-11-06 04:27:31 +00001375 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez5d034492009-09-18 22:35:49 +00001376 OrigBB->getParent());
Chris Lattner46b5c642009-11-06 04:27:31 +00001377 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez5d034492009-09-18 22:35:49 +00001378 OrigBB->getParent());
Victor Hernandeze2971492009-10-24 04:23:03 +00001379 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1380 Cmp, NullPtrBlock);
Victor Hernandez5d034492009-09-18 22:35:49 +00001381
1382 // Fill in FreeBlock.
David Majnemerfadc6db2016-04-29 08:07:22 +00001383 CallInst::CreateFree(GVVal, OpBundles, BI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001384 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1385 FreeBlock);
1386 BranchInst::Create(NextBlock, FreeBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001387
Victor Hernandez5d034492009-09-18 22:35:49 +00001388 NullPtrBlock = NextBlock;
1389 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001390
Victor Hernandez5d034492009-09-18 22:35:49 +00001391 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001392
1393 // CI is no longer needed, remove it.
Victor Hernandez5d034492009-09-18 22:35:49 +00001394 CI->eraseFromParent();
1395
James Molloyea31ad32015-11-13 11:05:07 +00001396 /// As we process loads, if we can't immediately update all uses of the load,
1397 /// keep track of what scalarized loads are inserted for a given load.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001398 DenseMap<Value *, std::vector<Value *>> InsertedScalarizedValues;
Victor Hernandez5d034492009-09-18 22:35:49 +00001399 InsertedScalarizedValues[GV] = FieldGlobals;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001400
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001401 std::vector<std::pair<PHINode *, unsigned>> PHIsToRewrite;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001402
Victor Hernandez5d034492009-09-18 22:35:49 +00001403 // Okay, the malloc site is completely handled. All of the uses of GV are now
1404 // loads, and all uses of those loads are simple. Rewrite them to use loads
1405 // of the per-field globals instead.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001406 for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001407 Instruction *User = cast<Instruction>(*UI++);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001408
Victor Hernandez5d034492009-09-18 22:35:49 +00001409 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner46b5c642009-11-06 04:27:31 +00001410 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001411 continue;
1412 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001413
Victor Hernandez5d034492009-09-18 22:35:49 +00001414 // Must be a store of null.
1415 StoreInst *SI = cast<StoreInst>(User);
1416 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1417 "Unexpected heap-sra user!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001418
Victor Hernandez5d034492009-09-18 22:35:49 +00001419 // Insert a store of null into each global.
1420 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001421 Type *ValTy = cast<GlobalValue>(FieldGlobals[i])->getValueType();
1422 Constant *Null = Constant::getNullValue(ValTy);
Victor Hernandez5d034492009-09-18 22:35:49 +00001423 new StoreInst(Null, FieldGlobals[i], SI);
1424 }
1425 // Erase the original store.
1426 SI->eraseFromParent();
1427 }
1428
1429 // While we have PHIs that are interesting to rewrite, do it.
1430 while (!PHIsToRewrite.empty()) {
1431 PHINode *PN = PHIsToRewrite.back().first;
1432 unsigned FieldNo = PHIsToRewrite.back().second;
1433 PHIsToRewrite.pop_back();
1434 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1435 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1436
1437 // Add all the incoming values. This can materialize more phis.
1438 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1439 Value *InVal = PN->getIncomingValue(i);
1440 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001441 PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001442 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1443 }
1444 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001445
Victor Hernandez5d034492009-09-18 22:35:49 +00001446 // Drop all inter-phi links and any loads that made it this far.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001447 for (DenseMap<Value *, std::vector<Value *>>::iterator
Victor Hernandez5d034492009-09-18 22:35:49 +00001448 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1449 I != E; ++I) {
1450 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1451 PN->dropAllReferences();
1452 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1453 LI->dropAllReferences();
1454 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001455
Victor Hernandez5d034492009-09-18 22:35:49 +00001456 // Delete all the phis and loads now that inter-references are dead.
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00001457 for (DenseMap<Value *, std::vector<Value *>>::iterator
Victor Hernandez5d034492009-09-18 22:35:49 +00001458 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1459 I != E; ++I) {
1460 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1461 PN->eraseFromParent();
1462 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1463 LI->eraseFromParent();
1464 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001465
Victor Hernandez5d034492009-09-18 22:35:49 +00001466 // The old global is now dead, remove it.
1467 GV->eraseFromParent();
1468
1469 ++NumHeapSRA;
1470 return cast<GlobalVariable>(FieldGlobals[0]);
1471}
1472
James Molloyea31ad32015-11-13 11:05:07 +00001473/// This function is called when we see a pointer global variable with a single
1474/// value stored it that is a malloc or cast of malloc.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001475static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
Chris Lattner229907c2011-07-18 04:54:35 +00001476 Type *AllocTy,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001477 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001478 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +00001479 TargetLibraryInfo *TLI) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001480 // If this is a malloc of an abstract type, don't touch it.
1481 if (!AllocTy->isSized())
1482 return false;
1483
1484 // We can't optimize this global unless all uses of it are *known* to be
1485 // of the malloc value, not of the null initializer value (consider a use
1486 // that compares the global's value against zero to see if the malloc has
1487 // been reached). To do this, we check to see if all uses of the global
1488 // would trap if the global were null: this proves that they must all
1489 // happen after the malloc.
1490 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1491 return false;
1492
1493 // We can't optimize this if the malloc itself is used in a complex way,
1494 // for example, being stored into multiple globals. This allows the
Nick Lewyckybbd11562012-02-05 19:48:37 +00001495 // malloc to be stored into the specified global, loaded icmp'd, and
Victor Hernandez5d034492009-09-18 22:35:49 +00001496 // GEP'd. These are all things we could transform to using the global
1497 // for.
Evan Cheng21b588b2010-04-14 20:52:55 +00001498 SmallPtrSet<const PHINode*, 8> PHIs;
1499 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1500 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001501
1502 // If we have a global that is only initialized with a fixed size malloc,
1503 // transform the program to use global memory instead of malloc'd memory.
1504 // This eliminates dynamic allocation, avoids an indirection accessing the
1505 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez264da322009-10-16 23:12:25 +00001506 // We cannot optimize the malloc if we cannot determine malloc array size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001507 Value *NElems = getMallocArraySize(CI, DL, TLI, true);
Evan Cheng21b588b2010-04-14 20:52:55 +00001508 if (!NElems)
1509 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001510
Evan Cheng21b588b2010-04-14 20:52:55 +00001511 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1512 // Restrict this transformation to only working on small allocations
1513 // (2048 bytes currently), as we don't want to introduce a 16M global or
1514 // something.
Mehdi Amini46a43552015-03-04 18:43:29 +00001515 if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) {
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001516 OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001517 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001518 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001519
Evan Cheng21b588b2010-04-14 20:52:55 +00001520 // If the allocation is an array of structures, consider transforming this
1521 // into multiple malloc'd arrays, one for each field. This is basically
1522 // SRoA for malloc'd memory.
1523
JF Bastien800f87a2016-04-06 21:19:33 +00001524 if (Ordering != AtomicOrdering::NotAtomic)
Nick Lewycky52da72b2012-02-05 19:56:38 +00001525 return false;
1526
Evan Cheng21b588b2010-04-14 20:52:55 +00001527 // If this is an allocation of a fixed size array of structs, analyze as a
1528 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Gabor Greif218f5542010-06-24 14:42:01 +00001529 if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
Chris Lattner229907c2011-07-18 04:54:35 +00001530 if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
Evan Cheng21b588b2010-04-14 20:52:55 +00001531 AllocTy = AT->getElementType();
Gabor Greif218f5542010-06-24 14:42:01 +00001532
Chris Lattner229907c2011-07-18 04:54:35 +00001533 StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
Evan Cheng21b588b2010-04-14 20:52:55 +00001534 if (!AllocSTy)
1535 return false;
1536
1537 // This the structure has an unreasonable number of fields, leave it
1538 // alone.
1539 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1540 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1541
1542 // If this is a fixed size array, transform the Malloc to be an alloc of
1543 // structs. malloc [100 x struct],1 -> malloc struct, 100
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001544 if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001545 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
1546 unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes();
Evan Cheng21b588b2010-04-14 20:52:55 +00001547 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1548 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
David Majnemerfadc6db2016-04-29 08:07:22 +00001549 SmallVector<OperandBundleDef, 1> OpBundles;
1550 CI->getOperandBundlesAsDefs(OpBundles);
1551 Instruction *Malloc =
1552 CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, AllocSize, NumElements,
1553 OpBundles, nullptr, CI->getName());
Evan Cheng21b588b2010-04-14 20:52:55 +00001554 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1555 CI->replaceAllUsesWith(Cast);
1556 CI->eraseFromParent();
Nuno Lopes9792d682012-06-22 00:25:01 +00001557 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1558 CI = cast<CallInst>(BCI->getOperand(0));
1559 else
Nuno Lopes0b60ebb2012-06-22 00:29:58 +00001560 CI = cast<CallInst>(Malloc);
Evan Cheng21b588b2010-04-14 20:52:55 +00001561 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001562
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001563 PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL,
1564 TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001565 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001566 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001567
Victor Hernandez5d034492009-09-18 22:35:49 +00001568 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001569}
Victor Hernandez5d034492009-09-18 22:35:49 +00001570
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001571// Try to optimize globals based on the knowledge that only one value (besides
1572// its initializer) is ever stored to the global.
1573static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001574 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001575 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +00001576 TargetLibraryInfo *TLI) {
Chris Lattner1c731fa2008-12-15 21:20:32 +00001577 // Ignore no-op GEPs and bitcasts.
1578 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner09a52722004-10-09 21:48:45 +00001579
Chris Lattnere42eb312004-10-10 23:14:11 +00001580 // If we are dealing with a pointer global that is initialized to null and
1581 // only has one (non-null) value stored into it, then we can optimize any
1582 // users of the loaded value (often calls and loads) that would trap if the
1583 // value was null.
Duncan Sands19d0b472010-02-16 11:11:14 +00001584 if (GV->getInitializer()->getType()->isPointerTy() &&
Chris Lattner09a52722004-10-09 21:48:45 +00001585 GV->getInitializer()->isNullValue()) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001586 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1587 if (GV->getInitializer()->getType() != SOVC->getType())
Chris Lattner1a1acc22011-05-22 07:15:13 +00001588 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001589
Chris Lattnere42eb312004-10-10 23:14:11 +00001590 // Optimize away any trapping uses of the loaded value.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001591 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001592 return true;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001593 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1594 Type *MallocType = getMallocAllocatedType(CI, TLI);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001595 if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1596 Ordering, DL, TLI))
Victor Hernandezf3db9152009-11-07 00:16:28 +00001597 return true;
Chris Lattnere42eb312004-10-10 23:14:11 +00001598 }
Chris Lattner09a52722004-10-09 21:48:45 +00001599 }
Chris Lattner004e2502004-10-11 05:54:41 +00001600
Chris Lattner09a52722004-10-09 21:48:45 +00001601 return false;
1602}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001603
James Molloyea31ad32015-11-13 11:05:07 +00001604/// At this point, we have learned that the only two values ever stored into GV
1605/// are its initializer and OtherVal. See if we can shrink the global into a
1606/// boolean and select between the two values whenever it is used. This exposes
1607/// the values to other scalar optimizations.
Lang Hames459b5dc2014-03-23 04:22:31 +00001608static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001609 Type *GVElType = GV->getValueType();
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001610
Lang Hames459b5dc2014-03-23 04:22:31 +00001611 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1612 // an FP value, pointer or vector, don't do this optimization because a select
1613 // between them is very expensive and unlikely to lead to later
1614 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1615 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner46b5c642009-11-06 04:27:31 +00001616 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001617 GVElType->isFloatingPointTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001618 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner20bbac32008-01-14 01:17:44 +00001619 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001620
Chris Lattner20bbac32008-01-14 01:17:44 +00001621 // Walk the use list of the global seeing if all the uses are load or store.
1622 // If there is anything else, bail out.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001623 for (User *U : GV->users())
Gabor Greifa75ed762010-07-12 14:13:15 +00001624 if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
Chris Lattner20bbac32008-01-14 01:17:44 +00001625 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001626
James Molloyef607a22015-10-28 14:30:53 +00001627 DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n");
Lang Hames459b5dc2014-03-23 04:22:31 +00001628
1629 // Create the new global, initializing it to false.
1630 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1631 false,
1632 GlobalValue::InternalLinkage,
1633 ConstantInt::getFalse(GV->getContext()),
1634 GV->getName()+".b",
1635 GV->getThreadLocalMode(),
1636 GV->getType()->getAddressSpace());
Sergei Larin94be2de2016-01-22 21:18:20 +00001637 NewGV->copyAttributesFrom(GV);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001638 GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
Lang Hames459b5dc2014-03-23 04:22:31 +00001639
Chris Lattner40e4cec2004-12-12 05:53:50 +00001640 Constant *InitVal = GV->getInitializer();
Chris Lattner46b5c642009-11-06 04:27:31 +00001641 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Lang Hames459b5dc2014-03-23 04:22:31 +00001642 "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001643
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001644 SmallVector<DIGlobalVariableExpression *, 1> GVs;
1645 GV->getDebugInfo(GVs);
1646
Lang Hames459b5dc2014-03-23 04:22:31 +00001647 // If initialized to zero and storing one into the global, we can use a cast
1648 // instead of a select to synthesize the desired value.
1649 bool IsOneZero = false;
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001650 bool EmitOneOrZero = true;
1651 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)){
Lang Hames459b5dc2014-03-23 04:22:31 +00001652 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001653
Strahinja Petrovic29202f62017-09-21 10:04:02 +00001654 if (ConstantInt *CIInit = dyn_cast<ConstantInt>(GV->getInitializer())){
1655 uint64_t ValInit = CIInit->getZExtValue();
1656 uint64_t ValOther = CI->getZExtValue();
1657 uint64_t ValMinus = ValOther - ValInit;
1658
1659 for(auto *GVe : GVs){
1660 DIGlobalVariable *DGV = GVe->getVariable();
1661 DIExpression *E = GVe->getExpression();
1662
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
1671 E = DIExpression::get(NewGV->getContext(),
1672 {dwarf::DW_OP_deref,
1673 dwarf::DW_OP_constu,
1674 ValMinus,
1675 dwarf::DW_OP_mul,
1676 dwarf::DW_OP_constu,
1677 ValInit,
1678 dwarf::DW_OP_plus,
1679 dwarf::DW_OP_stack_value});
1680 DIGlobalVariableExpression *DGVE =
1681 DIGlobalVariableExpression::get(NewGV->getContext(), DGV, E);
1682 NewGV->addDebugInfo(DGVE);
1683 }
1684 EmitOneOrZero = false;
1685 }
1686 }
1687
1688 if (EmitOneOrZero) {
1689 // FIXME: This will only emit address for debugger on which will
1690 // be written only 0 or 1.
1691 for(auto *GV : GVs)
1692 NewGV->addDebugInfo(GV);
1693 }
1694
Lang Hames459b5dc2014-03-23 04:22:31 +00001695 while (!GV->use_empty()) {
1696 Instruction *UI = cast<Instruction>(GV->user_back());
1697 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1698 // Change the store into a boolean store.
1699 bool StoringOther = SI->getOperand(0) == OtherVal;
1700 // Only do this if we weren't storing a loaded value.
1701 Value *StoreVal;
1702 if (StoringOther || SI->getOperand(0) == InitVal) {
1703 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1704 StoringOther);
Bill Wendling7297b862013-02-13 23:00:51 +00001705 } else {
Lang Hames459b5dc2014-03-23 04:22:31 +00001706 // Otherwise, we are storing a previously loaded copy. To do this,
1707 // change the copy from copying the original value to just copying the
1708 // bool.
1709 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1710
1711 // If we've already replaced the input, StoredVal will be a cast or
1712 // select instruction. If not, it will be a load of the original
1713 // global.
1714 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1715 assert(LI->getOperand(0) == GV && "Not a copy!");
1716 // Insert a new load, to preserve the saved value.
1717 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001718 LI->getOrdering(), LI->getSyncScopeID(), LI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001719 } else {
1720 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1721 "This is not a form that we understand!");
1722 StoreVal = StoredVal->getOperand(0);
1723 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1724 }
Chris Lattner745196a2004-12-12 19:34:41 +00001725 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001726 new StoreInst(StoreVal, NewGV, false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001727 SI->getOrdering(), SI->getSyncScopeID(), SI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001728 } else {
1729 // Change the load into a load of bool then a select.
1730 LoadInst *LI = cast<LoadInst>(UI);
1731 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0,
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001732 LI->getOrdering(), LI->getSyncScopeID(), LI);
Lang Hames459b5dc2014-03-23 04:22:31 +00001733 Value *NSI;
1734 if (IsOneZero)
1735 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1736 else
1737 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1738 NSI->takeName(LI);
1739 LI->replaceAllUsesWith(NSI);
Devang Patelfc507a12009-03-06 01:39:36 +00001740 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001741 UI->eraseFromParent();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001742 }
1743
Lang Hames459b5dc2014-03-23 04:22:31 +00001744 // Retain the name of the old global variable. People who are debugging their
1745 // programs may expect these variables to be named the same.
1746 NewGV->takeName(GV);
1747 GV->eraseFromParent();
Chris Lattner20bbac32008-01-14 01:17:44 +00001748 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001749}
1750
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001751static bool deleteIfDead(GlobalValue &GV,
1752 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001753 GV.removeDeadConstantUsers();
1754
Mehdi Aminid8803092016-09-15 20:26:27 +00001755 if (!GV.isDiscardableIfUnused() && !GV.isDeclaration())
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001756 return false;
1757
1758 if (const Comdat *C = GV.getComdat())
1759 if (!GV.hasLocalLinkage() && NotDiscardableComdats.count(C))
1760 return false;
1761
1762 bool Dead;
1763 if (auto *F = dyn_cast<Function>(&GV))
Mehdi Aminid8803092016-09-15 20:26:27 +00001764 Dead = (F->isDeclaration() && F->use_empty()) || F->isDefTriviallyDead();
Rafael Espindola2cc46b32015-12-22 19:38:07 +00001765 else
1766 Dead = GV.use_empty();
1767 if (!Dead)
1768 return false;
1769
1770 DEBUG(dbgs() << "GLOBAL DEAD: " << GV << "\n");
1771 GV.eraseFromParent();
1772 ++NumDeleted;
1773 return true;
1774}
Chris Lattner40e4cec2004-12-12 05:53:50 +00001775
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001776static bool isPointerValueDeadOnEntryToFunction(
1777 const Function *F, GlobalValue *GV,
1778 function_ref<DominatorTree &(Function &)> LookupDomTree) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001779 // Find all uses of GV. We expect them all to be in F, and if we can't
1780 // identify any of the uses we bail out.
1781 //
1782 // On each of these uses, identify if the memory that GV points to is
1783 // used/required/live at the start of the function. If it is not, for example
1784 // if the first thing the function does is store to the GV, the GV can
1785 // possibly be demoted.
1786 //
1787 // We don't do an exhaustive search for memory operations - simply look
1788 // through bitcasts as they're quite common and benign.
1789 const DataLayout &DL = GV->getParent()->getDataLayout();
1790 SmallVector<LoadInst *, 4> Loads;
1791 SmallVector<StoreInst *, 4> Stores;
1792 for (auto *U : GV->users()) {
1793 if (Operator::getOpcode(U) == Instruction::BitCast) {
1794 for (auto *UU : U->users()) {
1795 if (auto *LI = dyn_cast<LoadInst>(UU))
1796 Loads.push_back(LI);
1797 else if (auto *SI = dyn_cast<StoreInst>(UU))
1798 Stores.push_back(SI);
1799 else
1800 return false;
1801 }
1802 continue;
1803 }
1804
1805 Instruction *I = dyn_cast<Instruction>(U);
1806 if (!I)
1807 return false;
1808 assert(I->getParent()->getParent() == F);
1809
1810 if (auto *LI = dyn_cast<LoadInst>(I))
1811 Loads.push_back(LI);
1812 else if (auto *SI = dyn_cast<StoreInst>(I))
1813 Stores.push_back(SI);
1814 else
1815 return false;
1816 }
1817
1818 // We have identified all uses of GV into loads and stores. Now check if all
1819 // of them are known not to depend on the value of the global at the function
1820 // entry point. We do this by ensuring that every load is dominated by at
1821 // least one store.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001822 auto &DT = LookupDomTree(*const_cast<Function *>(F));
James Molloy9c7d4d82015-11-15 14:21:37 +00001823
James Molloyd4d23572015-11-16 10:16:22 +00001824 // The below check is quadratic. Check we're not going to do too many tests.
1825 // FIXME: Even though this will always have worst-case quadratic time, we
1826 // could put effort into minimizing the average time by putting stores that
1827 // have been shown to dominate at least one load at the beginning of the
1828 // Stores array, making subsequent dominance checks more likely to succeed
1829 // early.
1830 //
1831 // The threshold here is fairly large because global->local demotion is a
1832 // very powerful optimization should it fire.
1833 const unsigned Threshold = 100;
1834 if (Loads.size() * Stores.size() > Threshold)
1835 return false;
1836
James Molloy9c7d4d82015-11-15 14:21:37 +00001837 for (auto *L : Loads) {
1838 auto *LTy = L->getType();
David Majnemer0a16c222016-08-11 21:15:00 +00001839 if (none_of(Stores, [&](const StoreInst *S) {
James Molloy9c7d4d82015-11-15 14:21:37 +00001840 auto *STy = S->getValueOperand()->getType();
1841 // The load is only dominated by the store if DomTree says so
1842 // and the number of bits loaded in L is less than or equal to
1843 // the number of bits stored in S.
1844 return DT.dominates(S, L) &&
1845 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy);
1846 }))
1847 return false;
1848 }
1849 // All loads have known dependences inside F, so the global can be localized.
1850 return true;
1851}
1852
James Molloy1d695a02015-11-19 18:04:33 +00001853/// C may have non-instruction users. Can all of those users be turned into
1854/// instructions?
1855static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) {
1856 // We don't do this exhaustively. The most common pattern that we really need
1857 // to care about is a constant GEP or constant bitcast - so just looking
1858 // through one single ConstantExpr.
1859 //
1860 // The set of constants that this function returns true for must be able to be
1861 // handled by makeAllConstantUsesInstructions.
1862 for (auto *U : C->users()) {
1863 if (isa<Instruction>(U))
1864 continue;
1865 if (!isa<ConstantExpr>(U))
1866 // Non instruction, non-constantexpr user; cannot convert this.
1867 return false;
1868 for (auto *UU : U->users())
1869 if (!isa<Instruction>(UU))
1870 // A constantexpr used by another constant. We don't try and recurse any
1871 // further but just bail out at this point.
1872 return false;
1873 }
1874
1875 return true;
1876}
1877
1878/// C may have non-instruction users, and
1879/// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the
1880/// non-instruction users to instructions.
1881static void makeAllConstantUsesInstructions(Constant *C) {
1882 SmallVector<ConstantExpr*,4> Users;
1883 for (auto *U : C->users()) {
1884 if (isa<ConstantExpr>(U))
1885 Users.push_back(cast<ConstantExpr>(U));
1886 else
1887 // We should never get here; allNonInstructionUsersCanBeMadeInstructions
1888 // should not have returned true for C.
1889 assert(
1890 isa<Instruction>(U) &&
1891 "Can't transform non-constantexpr non-instruction to instruction!");
1892 }
1893
1894 SmallVector<Value*,4> UUsers;
1895 for (auto *U : Users) {
1896 UUsers.clear();
1897 for (auto *UU : U->users())
1898 UUsers.push_back(UU);
1899 for (auto *UU : UUsers) {
1900 Instruction *UI = cast<Instruction>(UU);
1901 Instruction *NewU = U->getAsInstruction();
1902 NewU->insertBefore(UI);
1903 UI->replaceUsesOfWith(U, NewU);
1904 }
Eli Friedman10ab9232017-04-27 18:39:08 +00001905 // We've replaced all the uses, so destroy the constant. (destroyConstant
1906 // will update value handles and metadata.)
1907 U->destroyConstant();
James Molloy1d695a02015-11-19 18:04:33 +00001908 }
1909}
1910
James Molloyea31ad32015-11-13 11:05:07 +00001911/// Analyze the specified global variable and optimize
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001912/// it if possible. If we make a change, return true.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001913static bool processInternalGlobal(
1914 GlobalVariable *GV, const GlobalStatus &GS, TargetLibraryInfo *TLI,
1915 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001916 auto &DL = GV->getParent()->getDataLayout();
James Molloy9c7d4d82015-11-15 14:21:37 +00001917 // If this is a first class global and has only one accessing function and
1918 // this function is non-recursive, we replace the global with a local alloca
1919 // in this function.
Alexey Samsonova1944e62013-10-07 19:03:24 +00001920 //
Alp Tokerf907b892013-12-05 05:44:44 +00001921 // NOTE: It doesn't make sense to promote non-single-value types since we
Alexey Samsonova1944e62013-10-07 19:03:24 +00001922 // are just replacing static memory to stack memory.
1923 //
1924 // If the global is in different address space, don't bring it to stack.
1925 if (!GS.HasMultipleAccessingFunctions &&
James Molloy1d695a02015-11-19 18:04:33 +00001926 GS.AccessingFunction &&
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001927 GV->getValueType()->isSingleValueType() &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001928 GV->getType()->getAddressSpace() == 0 &&
1929 !GV->isExternallyInitialized() &&
James Molloy1d695a02015-11-19 18:04:33 +00001930 allNonInstructionUsersCanBeMadeInstructions(GV) &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001931 GS.AccessingFunction->doesNotRecurse() &&
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001932 isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV,
1933 LookupDomTree)) {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001934 const DataLayout &DL = GV->getParent()->getDataLayout();
1935
James Molloy33e73452015-11-13 11:05:13 +00001936 DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n");
Alexey Samsonova1944e62013-10-07 19:03:24 +00001937 Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1938 ->getEntryBlock().begin());
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001939 Type *ElemTy = GV->getValueType();
Alexey Samsonova1944e62013-10-07 19:03:24 +00001940 // FIXME: Pass Global's alignment when globals have alignment
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001941 AllocaInst *Alloca = new AllocaInst(ElemTy, DL.getAllocaAddrSpace(), nullptr,
Craig Topperf40110f2014-04-25 05:29:35 +00001942 GV->getName(), &FirstI);
Alexey Samsonova1944e62013-10-07 19:03:24 +00001943 if (!isa<UndefValue>(GV->getInitializer()))
1944 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1945
James Molloy1d695a02015-11-19 18:04:33 +00001946 makeAllConstantUsesInstructions(GV);
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00001947
Alexey Samsonova1944e62013-10-07 19:03:24 +00001948 GV->replaceAllUsesWith(Alloca);
1949 GV->eraseFromParent();
1950 ++NumLocalized;
1951 return true;
1952 }
1953
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001954 // If the global is never loaded (but may be stored to), it is dead.
1955 // Delete it now.
Rafael Espindola045a78f2013-10-17 18:18:52 +00001956 if (!GS.IsLoaded) {
James Molloy33e73452015-11-13 11:05:13 +00001957 DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001958
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001959 bool Changed;
1960 if (isLeakCheckerRoot(GV)) {
1961 // Delete any constant stores to the global.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001962 Changed = CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001963 } else {
1964 // Delete any stores we can find to the global. We may not be able to
1965 // make it completely dead though.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001966 Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001967 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001968
1969 // If the global is dead now, delete it.
1970 if (GV->use_empty()) {
1971 GV->eraseFromParent();
1972 ++NumDeleted;
1973 Changed = true;
1974 }
1975 return Changed;
1976
James Molloyeb040cc2016-04-25 10:48:29 +00001977 }
1978 if (GS.StoredType <= GlobalStatus::InitializerStored) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00001979 DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001980 GV->setConstant(true);
1981
1982 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001983 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001984
1985 // If the global is dead now, just nuke it.
1986 if (GV->use_empty()) {
1987 DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
1988 << "all users and delete global!\n");
1989 GV->eraseFromParent();
1990 ++NumDeleted;
James Molloyeb040cc2016-04-25 10:48:29 +00001991 return true;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001992 }
1993
James Molloyeb040cc2016-04-25 10:48:29 +00001994 // Fall through to the next check; see if we can optimize further.
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001995 ++NumMarked;
James Molloyeb040cc2016-04-25 10:48:29 +00001996 }
1997 if (!GV->getInitializer()->getType()->isSingleValueType()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001998 const DataLayout &DL = GV->getParent()->getDataLayout();
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001999 if (SRAGlobal(GV, DL))
Mehdi Amini46a43552015-03-04 18:43:29 +00002000 return true;
James Molloyeb040cc2016-04-25 10:48:29 +00002001 }
2002 if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002003 // If the initial value for the global was an undef value, and if only
2004 // one other value was stored into it, we can just change the
2005 // initializer to be the stored value, then delete all stores to the
2006 // global. This allows us to mark it constant.
2007 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
2008 if (isa<UndefValue>(GV->getInitializer())) {
2009 // Change the initial value here.
2010 GV->setInitializer(SOVConstant);
2011
2012 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002013 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002014
2015 if (GV->use_empty()) {
2016 DEBUG(dbgs() << " *** Substituting initializer allowed us to "
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00002017 << "simplify all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002018 GV->eraseFromParent();
2019 ++NumDeleted;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002020 }
2021 ++NumSubstitute;
2022 return true;
2023 }
2024
2025 // Try to optimize globals based on the knowledge that only one value
2026 // (besides its initializer) is ever stored to the global.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00002027 if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002028 return true;
2029
Lang Hames459b5dc2014-03-23 04:22:31 +00002030 // Otherwise, if the global was not a boolean, we can shrink it to be a
2031 // boolean.
Eli Friedman33d37002013-09-09 22:00:13 +00002032 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) {
JF Bastien800f87a2016-04-06 21:19:33 +00002033 if (GS.Ordering == AtomicOrdering::NotAtomic) {
Lang Hames459b5dc2014-03-23 04:22:31 +00002034 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Eli Friedman33d37002013-09-09 22:00:13 +00002035 ++NumShrunkToBool;
2036 return true;
2037 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002038 }
Eli Friedman33d37002013-09-09 22:00:13 +00002039 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00002040 }
2041
Chris Lattner1c4bddc2004-10-08 20:59:28 +00002042 return false;
2043}
2044
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002045/// Analyze the specified global variable and optimize it if possible. If we
2046/// make a change, return true.
2047static bool
2048processGlobal(GlobalValue &GV, TargetLibraryInfo *TLI,
2049 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002050 if (GV.getName().startswith("llvm."))
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002051 return false;
2052
2053 GlobalStatus GS;
2054
2055 if (GlobalStatus::analyzeGlobal(&GV, GS))
2056 return false;
2057
2058 bool Changed = false;
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002059 if (!GS.IsCompared && !GV.hasGlobalUnnamedAddr()) {
2060 auto NewUnnamedAddr = GV.hasLocalLinkage() ? GlobalValue::UnnamedAddr::Global
2061 : GlobalValue::UnnamedAddr::Local;
2062 if (NewUnnamedAddr != GV.getUnnamedAddr()) {
2063 GV.setUnnamedAddr(NewUnnamedAddr);
2064 NumUnnamed++;
2065 Changed = true;
2066 }
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002067 }
2068
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002069 // Do more involved optimizations if the global is internal.
2070 if (!GV.hasLocalLinkage())
2071 return Changed;
2072
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002073 auto *GVar = dyn_cast<GlobalVariable>(&GV);
2074 if (!GVar)
2075 return Changed;
2076
2077 if (GVar->isConstant() || !GVar->hasInitializer())
2078 return Changed;
2079
2080 return processInternalGlobal(GVar, GS, TLI, LookupDomTree) || Changed;
2081}
2082
James Molloyea31ad32015-11-13 11:05:07 +00002083/// Walk all of the direct calls of the specified function, changing them to
2084/// FastCC.
Chris Lattnera4c80222005-05-08 22:18:06 +00002085static void ChangeCalleesToFastCall(Function *F) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00002086 for (User *U : F->users()) {
2087 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002088 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002089 CallSite CS(cast<Instruction>(U));
2090 CS.setCallingConv(CallingConv::Fast);
Chris Lattnera4c80222005-05-08 22:18:06 +00002091 }
2092}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00002093
Reid Kleckner0a5ed3d2017-04-19 23:26:44 +00002094static AttributeList StripNest(LLVMContext &C, AttributeList Attrs) {
2095 // There can be at most one attribute set with a nest attribute.
2096 unsigned NestIndex;
2097 if (Attrs.hasAttrSomewhere(Attribute::Nest, &NestIndex))
2098 return Attrs.removeAttribute(C, NestIndex, Attribute::Nest);
Duncan Sands573b3f82008-02-16 20:56:04 +00002099 return Attrs;
2100}
2101
2102static void RemoveNestAttribute(Function *F) {
Bill Wendling85a64c22012-10-14 06:39:53 +00002103 F->setAttributes(StripNest(F->getContext(), F->getAttributes()));
Chandler Carruthcdf47882014-03-09 03:16:01 +00002104 for (User *U : F->users()) {
2105 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002106 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002107 CallSite CS(cast<Instruction>(U));
2108 CS.setAttributes(StripNest(F->getContext(), CS.getAttributes()));
Duncan Sands573b3f82008-02-16 20:56:04 +00002109 }
2110}
2111
Reid Kleckner22869372014-02-26 19:57:30 +00002112/// Return true if this is a calling convention that we'd like to change. The
2113/// idea here is that we don't want to mess with the convention if the user
2114/// explicitly requested something with performance implications like coldcc,
2115/// GHC, or anyregcc.
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002116static bool hasChangeableCC(Function *F) {
Reid Kleckner22869372014-02-26 19:57:30 +00002117 CallingConv::ID CC = F->getCallingConv();
Jonas Devlieghere9ca06452018-02-28 22:28:44 +00002118
Reid Kleckner22869372014-02-26 19:57:30 +00002119 // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc?
Jonas Devlieghere9ca06452018-02-28 22:28:44 +00002120 if (CC != CallingConv::C && CC != CallingConv::X86_ThisCall)
2121 return false;
2122
2123 // FIXME: Change CC for the whole chain of musttail calls when possible.
2124 //
2125 // Can't change CC of the function that either has musttail calls, or is a
2126 // musttail callee itself
2127 for (User *U : F->users()) {
2128 if (isa<BlockAddress>(U))
2129 continue;
2130 CallInst* CI = dyn_cast<CallInst>(U);
2131 if (!CI)
2132 continue;
2133
2134 if (CI->isMustTailCall())
2135 return false;
2136 }
2137
2138 for (BasicBlock &BB : *F)
2139 if (BB.getTerminatingMustTailCall())
2140 return false;
2141
2142 return true;
Reid Kleckner22869372014-02-26 19:57:30 +00002143}
2144
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002145/// Return true if the block containing the call site has a BlockFrequency of
2146/// less than ColdCCRelFreq% of the entry block.
2147static bool isColdCallSite(CallSite CS, BlockFrequencyInfo &CallerBFI) {
2148 const BranchProbability ColdProb(ColdCCRelFreq, 100);
2149 auto CallSiteBB = CS.getInstruction()->getParent();
2150 auto CallSiteFreq = CallerBFI.getBlockFreq(CallSiteBB);
2151 auto CallerEntryFreq =
2152 CallerBFI.getBlockFreq(&(CS.getCaller()->getEntryBlock()));
2153 return CallSiteFreq < CallerEntryFreq * ColdProb;
2154}
2155
2156// This function checks if the input function F is cold at all call sites. It
2157// also looks each call site's containing function, returning false if the
2158// caller function contains other non cold calls. The input vector AllCallsCold
2159// contains a list of functions that only have call sites in cold blocks.
2160static bool
2161isValidCandidateForColdCC(Function &F,
2162 function_ref<BlockFrequencyInfo &(Function &)> GetBFI,
2163 const std::vector<Function *> &AllCallsCold) {
2164
2165 if (F.user_empty())
2166 return false;
2167
2168 for (User *U : F.users()) {
2169 if (isa<BlockAddress>(U))
2170 continue;
2171
2172 CallSite CS(cast<Instruction>(U));
2173 Function *CallerFunc = CS.getInstruction()->getParent()->getParent();
2174 BlockFrequencyInfo &CallerBFI = GetBFI(*CallerFunc);
2175 if (!isColdCallSite(CS, CallerBFI))
2176 return false;
2177 auto It = std::find(AllCallsCold.begin(), AllCallsCold.end(), CallerFunc);
2178 if (It == AllCallsCold.end())
2179 return false;
2180 }
2181 return true;
2182}
2183
2184static void changeCallSitesToColdCC(Function *F) {
2185 for (User *U : F->users()) {
2186 if (isa<BlockAddress>(U))
2187 continue;
2188 CallSite CS(cast<Instruction>(U));
2189 CS.setCallingConv(CallingConv::Cold);
2190 }
2191}
2192
2193// This function iterates over all the call instructions in the input Function
2194// and checks that all call sites are in cold blocks and are allowed to use the
2195// coldcc calling convention.
2196static bool
2197hasOnlyColdCalls(Function &F,
2198 function_ref<BlockFrequencyInfo &(Function &)> GetBFI) {
2199 for (BasicBlock &BB : F) {
2200 for (Instruction &I : BB) {
2201 if (CallInst *CI = dyn_cast<CallInst>(&I)) {
2202 CallSite CS(cast<Instruction>(CI));
2203 // Skip over isline asm instructions since they aren't function calls.
2204 if (CI->isInlineAsm())
2205 continue;
2206 Function *CalledFn = CI->getCalledFunction();
2207 if (!CalledFn)
2208 return false;
2209 if (!CalledFn->hasLocalLinkage())
2210 return false;
2211 // Skip over instrinsics since they won't remain as function calls.
2212 if (CalledFn->getIntrinsicID() != Intrinsic::not_intrinsic)
2213 continue;
2214 // Check if it's valid to use coldcc calling convention.
2215 if (!hasChangeableCC(CalledFn) || CalledFn->isVarArg() ||
2216 CalledFn->hasAddressTaken())
2217 return false;
2218 BlockFrequencyInfo &CallerBFI = GetBFI(F);
2219 if (!isColdCallSite(CS, CallerBFI))
2220 return false;
2221 }
2222 }
2223 }
2224 return true;
2225}
2226
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002227static bool
2228OptimizeFunctions(Module &M, TargetLibraryInfo *TLI,
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002229 function_ref<TargetTransformInfo &(Function &)> GetTTI,
2230 function_ref<BlockFrequencyInfo &(Function &)> GetBFI,
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002231 function_ref<DominatorTree &(Function &)> LookupDomTree,
2232 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002233
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002234 bool Changed = false;
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002235
2236 std::vector<Function *> AllCallsCold;
2237 for (Module::iterator FI = M.begin(), E = M.end(); FI != E;) {
2238 Function *F = &*FI++;
2239 if (hasOnlyColdCalls(*F, GetBFI))
2240 AllCallsCold.push_back(F);
2241 }
2242
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002243 // Optimize functions.
2244 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002245 Function *F = &*FI++;
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002246
Luke Cheeseman6c1e6bb2018-02-22 14:42:08 +00002247 // Don't perform global opt pass on naked functions; we don't want fast
2248 // calling conventions for naked functions.
2249 if (F->hasFnAttribute(Attribute::Naked))
2250 continue;
2251
Duncan Sandsed722832009-03-06 10:21:56 +00002252 // Functions without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002253 if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002254 F->setLinkage(GlobalValue::InternalLinkage);
David Majnemer1b3b70e2014-10-08 07:23:31 +00002255
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002256 if (deleteIfDead(*F, NotDiscardableComdats)) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002257 Changed = true;
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002258 continue;
2259 }
Rafael Espindola10d9a032015-12-22 20:43:30 +00002260
Davide Italianoc3dc055782017-07-13 15:40:59 +00002261 // LLVM's definition of dominance allows instructions that are cyclic
2262 // in unreachable blocks, e.g.:
2263 // %pat = select i1 %condition, @global, i16* %pat
2264 // because any instruction dominates an instruction in a block that's
2265 // not reachable from entry.
2266 // So, remove unreachable blocks from the function, because a) there's
2267 // no point in analyzing them and b) GlobalOpt should otherwise grow
2268 // some more complicated logic to break these cycles.
2269 // Removing unreachable blocks might invalidate the dominator so we
2270 // recalculate it.
2271 if (!F->isDeclaration()) {
2272 if (removeUnreachableBlocks(*F)) {
2273 auto &DT = LookupDomTree(*F);
2274 DT.recalculate(*F);
2275 Changed = true;
2276 }
2277 }
2278
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002279 Changed |= processGlobal(*F, TLI, LookupDomTree);
Rafael Espindola10d9a032015-12-22 20:43:30 +00002280
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002281 if (!F->hasLocalLinkage())
2282 continue;
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002283
2284 if (hasChangeableCC(F) && !F->isVarArg() && !F->hasAddressTaken()) {
2285 NumInternalFunc++;
2286 TargetTransformInfo &TTI = GetTTI(*F);
2287 // Change the calling convention to coldcc if either stress testing is
2288 // enabled or the target would like to use coldcc on functions which are
2289 // cold at all call sites and the callers contain no other non coldcc
2290 // calls.
2291 if (EnableColdCCStressTest ||
2292 (isValidCandidateForColdCC(*F, GetBFI, AllCallsCold) &&
2293 TTI.useColdCCForColdCall(*F))) {
2294 F->setCallingConv(CallingConv::Cold);
2295 changeCallSitesToColdCC(F);
2296 Changed = true;
2297 NumColdCC++;
2298 }
2299 }
2300
2301 if (hasChangeableCC(F) && !F->isVarArg() &&
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002302 !F->hasAddressTaken()) {
2303 // If this function has a calling convention worth changing, is not a
2304 // varargs function, and is only called directly, promote it to use the
2305 // Fast calling convention.
2306 F->setCallingConv(CallingConv::Fast);
2307 ChangeCalleesToFastCall(F);
2308 ++NumFastCallFns;
2309 Changed = true;
2310 }
Duncan Sands573b3f82008-02-16 20:56:04 +00002311
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002312 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2313 !F->hasAddressTaken()) {
2314 // The function is not used by a trampoline intrinsic, so it is safe
2315 // to remove the 'nest' attribute.
2316 RemoveNestAttribute(F);
2317 ++NumNestRemoved;
2318 Changed = true;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002319 }
2320 }
2321 return Changed;
2322}
2323
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002324static bool
2325OptimizeGlobalVars(Module &M, TargetLibraryInfo *TLI,
2326 function_ref<DominatorTree &(Function &)> LookupDomTree,
2327 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002328 bool Changed = false;
David Majnemerdad0a642014-06-27 18:19:56 +00002329
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002330 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2331 GVI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002332 GlobalVariable *GV = &*GVI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002333 // Global variables without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002334 if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002335 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman580b80d2009-11-23 16:22:21 +00002336 // Simplify the initializer.
2337 if (GV->hasInitializer())
David Majnemerd536f232016-07-29 03:27:26 +00002338 if (auto *C = dyn_cast<Constant>(GV->getInitializer())) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002339 auto &DL = M.getDataLayout();
David Majnemerd536f232016-07-29 03:27:26 +00002340 Constant *New = ConstantFoldConstant(C, DL, TLI);
2341 if (New && New != C)
Dan Gohman580b80d2009-11-23 16:22:21 +00002342 GV->setInitializer(New);
2343 }
Rafael Espindolafc355bc2011-01-19 16:32:21 +00002344
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002345 if (deleteIfDead(*GV, NotDiscardableComdats)) {
Rafael Espindola10d9a032015-12-22 20:43:30 +00002346 Changed = true;
2347 continue;
2348 }
2349
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002350 Changed |= processGlobal(*GV, TLI, LookupDomTree);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002351 }
2352 return Changed;
2353}
2354
James Molloyea31ad32015-11-13 11:05:07 +00002355/// Evaluate a piece of a constantexpr store into a global initializer. This
2356/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2357/// GEP operands of Addr [0, OpNo) have been stepped into.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002358static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2359 ConstantExpr *Addr, unsigned OpNo) {
2360 // Base case of the recursion.
2361 if (OpNo == Addr->getNumOperands()) {
2362 assert(Val->getType() == Init->getType() && "Type mismatch!");
2363 return Val;
2364 }
2365
2366 SmallVector<Constant*, 32> Elts;
2367 if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2368 // Break up the constant into its elements.
2369 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2370 Elts.push_back(Init->getAggregateElement(i));
2371
2372 // Replace the element that we are supposed to.
2373 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2374 unsigned Idx = CU->getZExtValue();
2375 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2376 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2377
2378 // Return the modified struct.
2379 return ConstantStruct::get(STy, Elts);
2380 }
2381
2382 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2383 SequentialType *InitTy = cast<SequentialType>(Init->getType());
Peter Collingbournebc070522016-12-02 03:20:58 +00002384 uint64_t NumElts = InitTy->getNumElements();
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002385
2386 // Break up the array into elements.
2387 for (uint64_t i = 0, e = NumElts; i != e; ++i)
2388 Elts.push_back(Init->getAggregateElement(i));
2389
2390 assert(CI->getZExtValue() < NumElts);
2391 Elts[CI->getZExtValue()] =
2392 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2393
2394 if (Init->getType()->isArrayTy())
2395 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2396 return ConstantVector::get(Elts);
2397}
2398
James Molloyea31ad32015-11-13 11:05:07 +00002399/// We have decided that Addr (which satisfies the predicate
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002400/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2401static void CommitValueTo(Constant *Val, Constant *Addr) {
2402 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2403 assert(GV->hasInitializer());
2404 GV->setInitializer(Val);
2405 return;
2406 }
2407
2408 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2409 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2410 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2411}
2412
Amara Emerson93b0ff22018-01-31 23:56:07 +00002413/// Given a map of address -> value, where addresses are expected to be some form
2414/// of either a global or a constant GEP, set the initializer for the address to
2415/// be the value. This performs mostly the same function as CommitValueTo()
2416/// and EvaluateStoreInto() but is optimized to be more efficient for the common
2417/// case where the set of addresses are GEPs sharing the same underlying global,
2418/// processing the GEPs in batches rather than individually.
2419///
2420/// To give an example, consider the following C++ code adapted from the clang
2421/// regression tests:
2422/// struct S {
2423/// int n = 10;
2424/// int m = 2 * n;
2425/// S(int a) : n(a) {}
2426/// };
2427///
2428/// template<typename T>
2429/// struct U {
2430/// T *r = &q;
2431/// T q = 42;
2432/// U *p = this;
2433/// };
2434///
2435/// U<S> e;
2436///
2437/// The global static constructor for 'e' will need to initialize 'r' and 'p' of
2438/// the outer struct, while also initializing the inner 'q' structs 'n' and 'm'
2439/// members. This batch algorithm will simply use general CommitValueTo() method
2440/// to handle the complex nested S struct initialization of 'q', before
2441/// processing the outermost members in a single batch. Using CommitValueTo() to
2442/// handle member in the outer struct is inefficient when the struct/array is
2443/// very large as we end up creating and destroy constant arrays for each
2444/// initialization.
2445/// For the above case, we expect the following IR to be generated:
2446///
2447/// %struct.U = type { %struct.S*, %struct.S, %struct.U* }
2448/// %struct.S = type { i32, i32 }
2449/// @e = global %struct.U { %struct.S* gep inbounds (%struct.U, %struct.U* @e,
2450/// i64 0, i32 1),
2451/// %struct.S { i32 42, i32 84 }, %struct.U* @e }
2452/// The %struct.S { i32 42, i32 84 } inner initializer is treated as a complex
2453/// constant expression, while the other two elements of @e are "simple".
2454static void BatchCommitValueTo(const DenseMap<Constant*, Constant*> &Mem) {
2455 SmallVector<std::pair<GlobalVariable*, Constant*>, 32> GVs;
2456 SmallVector<std::pair<ConstantExpr*, Constant*>, 32> ComplexCEs;
2457 SmallVector<std::pair<ConstantExpr*, Constant*>, 32> SimpleCEs;
2458 SimpleCEs.reserve(Mem.size());
2459
2460 for (const auto &I : Mem) {
2461 if (auto *GV = dyn_cast<GlobalVariable>(I.first)) {
2462 GVs.push_back(std::make_pair(GV, I.second));
2463 } else {
2464 ConstantExpr *GEP = cast<ConstantExpr>(I.first);
2465 // We don't handle the deeply recursive case using the batch method.
2466 if (GEP->getNumOperands() > 3)
2467 ComplexCEs.push_back(std::make_pair(GEP, I.second));
2468 else
2469 SimpleCEs.push_back(std::make_pair(GEP, I.second));
2470 }
2471 }
2472
2473 // The algorithm below doesn't handle cases like nested structs, so use the
2474 // slower fully general method if we have to.
2475 for (auto ComplexCE : ComplexCEs)
2476 CommitValueTo(ComplexCE.second, ComplexCE.first);
2477
2478 for (auto GVPair : GVs) {
2479 assert(GVPair.first->hasInitializer());
2480 GVPair.first->setInitializer(GVPair.second);
2481 }
2482
2483 if (SimpleCEs.empty())
2484 return;
2485
2486 // We cache a single global's initializer elements in the case where the
2487 // subsequent address/val pair uses the same one. This avoids throwing away and
2488 // rebuilding the constant struct/vector/array just because one element is
2489 // modified at a time.
2490 SmallVector<Constant *, 32> Elts;
2491 Elts.reserve(SimpleCEs.size());
2492 GlobalVariable *CurrentGV = nullptr;
2493
2494 auto commitAndSetupCache = [&](GlobalVariable *GV, bool Update) {
2495 Constant *Init = GV->getInitializer();
2496 Type *Ty = Init->getType();
2497 if (Update) {
2498 if (CurrentGV) {
2499 assert(CurrentGV && "Expected a GV to commit to!");
2500 Type *CurrentInitTy = CurrentGV->getInitializer()->getType();
2501 // We have a valid cache that needs to be committed.
2502 if (StructType *STy = dyn_cast<StructType>(CurrentInitTy))
2503 CurrentGV->setInitializer(ConstantStruct::get(STy, Elts));
2504 else if (ArrayType *ArrTy = dyn_cast<ArrayType>(CurrentInitTy))
2505 CurrentGV->setInitializer(ConstantArray::get(ArrTy, Elts));
2506 else
2507 CurrentGV->setInitializer(ConstantVector::get(Elts));
2508 }
2509 if (CurrentGV == GV)
2510 return;
2511 // Need to clear and set up cache for new initializer.
2512 CurrentGV = GV;
2513 Elts.clear();
2514 unsigned NumElts;
2515 if (auto *STy = dyn_cast<StructType>(Ty))
2516 NumElts = STy->getNumElements();
2517 else
2518 NumElts = cast<SequentialType>(Ty)->getNumElements();
2519 for (unsigned i = 0, e = NumElts; i != e; ++i)
2520 Elts.push_back(Init->getAggregateElement(i));
2521 }
2522 };
2523
2524 for (auto CEPair : SimpleCEs) {
2525 ConstantExpr *GEP = CEPair.first;
2526 Constant *Val = CEPair.second;
2527
2528 GlobalVariable *GV = cast<GlobalVariable>(GEP->getOperand(0));
2529 commitAndSetupCache(GV, GV != CurrentGV);
2530 ConstantInt *CI = cast<ConstantInt>(GEP->getOperand(2));
2531 Elts[CI->getZExtValue()] = Val;
2532 }
2533 // The last initializer in the list needs to be committed, others
2534 // will be committed on a new initializer being processed.
2535 commitAndSetupCache(CurrentGV, true);
2536}
2537
James Molloyea31ad32015-11-13 11:05:07 +00002538/// Evaluate static constructors in the function, if we can. Return true if we
2539/// can, false otherwise.
Mehdi Amini46a43552015-03-04 18:43:29 +00002540static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002541 TargetLibraryInfo *TLI) {
Chris Lattnerda1889b2005-09-27 04:27:01 +00002542 // Call the function.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002543 Evaluator Eval(DL, TLI);
Chris Lattner65a3a092005-09-27 04:45:34 +00002544 Constant *RetValDummy;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002545 bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2546 SmallVector<Constant*, 0>());
Jakub Staszak9525a772012-12-06 21:57:16 +00002547
Chris Lattnerda1889b2005-09-27 04:27:01 +00002548 if (EvalSuccess) {
Nico Weber4b2acde2014-05-02 18:35:25 +00002549 ++NumCtorsEvaluated;
2550
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002551 // We succeeded at evaluation: commit the result.
David Greene44cb8ad2010-01-05 01:28:05 +00002552 DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002553 << F->getName() << "' to " << Eval.getMutatedMemory().size()
2554 << " stores.\n");
Amara Emerson93b0ff22018-01-31 23:56:07 +00002555 BatchCommitValueTo(Eval.getMutatedMemory());
Craig Topper46276792014-08-24 23:23:06 +00002556 for (GlobalVariable *GV : Eval.getInvariants())
2557 GV->setConstant(true);
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002558 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002559
Chris Lattnerda1889b2005-09-27 04:27:01 +00002560 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002561}
2562
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002563static int compareNames(Constant *const *A, Constant *const *B) {
Benjamin Kramer96f4b122016-03-15 14:18:26 +00002564 Value *AStripped = (*A)->stripPointerCastsNoFollowAliases();
2565 Value *BStripped = (*B)->stripPointerCastsNoFollowAliases();
2566 return AStripped->getName().compare(BStripped->getName());
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002567}
2568
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002569static void setUsedInitializer(GlobalVariable &V,
Craig Topper97ebe532014-08-19 07:44:27 +00002570 const SmallPtrSet<GlobalValue *, 8> &Init) {
Rafael Espindolac2bb73f2013-07-20 23:33:15 +00002571 if (Init.empty()) {
2572 V.eraseFromParent();
2573 return;
2574 }
2575
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002576 // Type of pointer to the array of pointers.
2577 PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0);
Rafael Espindola00752162013-05-09 17:22:59 +00002578
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002579 SmallVector<Constant *, 8> UsedArray;
Craig Topper71b7b682014-08-21 05:55:13 +00002580 for (GlobalValue *GV : Init) {
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002581 Constant *Cast
Craig Topper71b7b682014-08-21 05:55:13 +00002582 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002583 UsedArray.push_back(Cast);
Rafael Espindola00752162013-05-09 17:22:59 +00002584 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002585 // Sort to get deterministic order.
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002586 array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002587 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
Rafael Espindola00752162013-05-09 17:22:59 +00002588
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002589 Module *M = V.getParent();
2590 V.removeFromParent();
2591 GlobalVariable *NV =
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002592 new GlobalVariable(*M, ATy, false, GlobalValue::AppendingLinkage,
2593 ConstantArray::get(ATy, UsedArray), "");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002594 NV->takeName(&V);
2595 NV->setSection("llvm.metadata");
2596 delete &V;
Rafael Espindola00752162013-05-09 17:22:59 +00002597}
2598
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002599namespace {
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002600
James Molloyea31ad32015-11-13 11:05:07 +00002601/// An easy to access representation of llvm.used and llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002602class LLVMUsed {
2603 SmallPtrSet<GlobalValue *, 8> Used;
2604 SmallPtrSet<GlobalValue *, 8> CompilerUsed;
2605 GlobalVariable *UsedV;
2606 GlobalVariable *CompilerUsedV;
2607
2608public:
Rafael Espindolaec2375f2013-07-25 02:50:08 +00002609 LLVMUsed(Module &M) {
Rafael Espindola17600e22013-07-25 03:23:25 +00002610 UsedV = collectUsedGlobalVariables(M, Used, false);
2611 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
Rafael Espindola00752162013-05-09 17:22:59 +00002612 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002613
2614 using iterator = SmallPtrSet<GlobalValue *, 8>::iterator;
2615 using used_iterator_range = iterator_range<iterator>;
2616
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002617 iterator usedBegin() { return Used.begin(); }
2618 iterator usedEnd() { return Used.end(); }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002619
Craig Topper46276792014-08-24 23:23:06 +00002620 used_iterator_range used() {
2621 return used_iterator_range(usedBegin(), usedEnd());
2622 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002623
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002624 iterator compilerUsedBegin() { return CompilerUsed.begin(); }
2625 iterator compilerUsedEnd() { return CompilerUsed.end(); }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002626
Craig Topper46276792014-08-24 23:23:06 +00002627 used_iterator_range compilerUsed() {
2628 return used_iterator_range(compilerUsedBegin(), compilerUsedEnd());
2629 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002630
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002631 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002632
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002633 bool compilerUsedCount(GlobalValue *GV) const {
2634 return CompilerUsed.count(GV);
2635 }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002636
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002637 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2638 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
David Blaikie70573dc2014-11-19 07:49:26 +00002639 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002640
David Blaikie70573dc2014-11-19 07:49:26 +00002641 bool compilerUsedInsert(GlobalValue *GV) {
2642 return CompilerUsed.insert(GV).second;
2643 }
Rafael Espindola00752162013-05-09 17:22:59 +00002644
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002645 void syncVariablesAndSets() {
2646 if (UsedV)
2647 setUsedInitializer(*UsedV, Used);
2648 if (CompilerUsedV)
2649 setUsedInitializer(*CompilerUsedV, CompilerUsed);
2650 }
2651};
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002652
2653} // end anonymous namespace
Rafael Espindola00752162013-05-09 17:22:59 +00002654
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002655static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
2656 if (GA.use_empty()) // No use at all.
2657 return false;
2658
2659 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
2660 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002661 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002662 if (!GA.hasOneUse())
2663 // Strictly more than one use. So at least one is not in llvm.used and
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002664 // llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002665 return true;
2666
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002667 // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002668 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
Rafael Espindola00752162013-05-09 17:22:59 +00002669}
2670
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002671static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
2672 const LLVMUsed &U) {
2673 unsigned N = 2;
2674 assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
2675 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002676 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002677 if (U.usedCount(&V) || U.compilerUsedCount(&V))
2678 ++N;
2679 return V.hasNUsesOrMore(N);
2680}
2681
2682static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
2683 if (!GA.hasLocalLinkage())
2684 return true;
2685
2686 return U.usedCount(&GA) || U.compilerUsedCount(&GA);
2687}
2688
Craig Topper71b7b682014-08-21 05:55:13 +00002689static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U,
2690 bool &RenameTarget) {
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002691 RenameTarget = false;
Rafael Espindola00752162013-05-09 17:22:59 +00002692 bool Ret = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002693 if (hasUseOtherThanLLVMUsed(GA, U))
Rafael Espindola00752162013-05-09 17:22:59 +00002694 Ret = true;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002695
2696 // If the alias is externally visible, we may still be able to simplify it.
2697 if (!mayHaveOtherReferences(GA, U))
2698 return Ret;
2699
2700 // If the aliasee has internal linkage, give it the name and linkage
2701 // of the alias, and delete the alias. This turns:
2702 // define internal ... @f(...)
2703 // @a = alias ... @f
2704 // into:
2705 // define ... @a(...)
2706 Constant *Aliasee = GA.getAliasee();
2707 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2708 if (!Target->hasLocalLinkage())
2709 return Ret;
2710
2711 // Do not perform the transform if multiple aliases potentially target the
2712 // aliasee. This check also ensures that it is safe to replace the section
2713 // and other attributes of the aliasee with those of the alias.
2714 if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
2715 return Ret;
2716
2717 RenameTarget = true;
2718 return true;
Rafael Espindola00752162013-05-09 17:22:59 +00002719}
2720
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002721static bool
2722OptimizeGlobalAliases(Module &M,
2723 SmallSet<const Comdat *, 8> &NotDiscardableComdats) {
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002724 bool Changed = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002725 LLVMUsed Used(M);
2726
Craig Topper46276792014-08-24 23:23:06 +00002727 for (GlobalValue *GV : Used.used())
2728 Used.compilerUsedErase(GV);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002729
Duncan Sands0bcf0852009-01-07 20:01:06 +00002730 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002731 I != E;) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002732 GlobalAlias *J = &*I++;
2733
Duncan Sandsed722832009-03-06 10:21:56 +00002734 // Aliases without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002735 if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002736 J->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindola5349d872015-12-22 19:50:22 +00002737
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002738 if (deleteIfDead(*J, NotDiscardableComdats)) {
Rafael Espindola5349d872015-12-22 19:50:22 +00002739 Changed = true;
2740 continue;
2741 }
2742
Eric Christopher675dcf02018-02-22 23:12:11 +00002743 // If the alias can change at link time, nothing can be done - bail out.
Sanjoy Das5ce32722016-04-08 00:48:30 +00002744 if (J->isInterposable())
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002745 continue;
2746
Duncan Sandsb3f27882009-02-15 09:56:08 +00002747 Constant *Aliasee = J->getAliasee();
David Majnemer0e2cc2a2014-07-01 00:30:56 +00002748 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts());
2749 // We can't trivially replace the alias with the aliasee if the aliasee is
2750 // non-trivial in some way.
2751 // TODO: Try to handle non-zero GEPs of local aliasees.
2752 if (!Target)
2753 continue;
Duncan Sands7a1db332009-02-18 17:55:38 +00002754 Target->removeDeadConstantUsers();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002755
2756 // Make all users of the alias use the aliasee instead.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002757 bool RenameTarget;
2758 if (!hasUsesToReplace(*J, Used, RenameTarget))
Rafael Espindola00752162013-05-09 17:22:59 +00002759 continue;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002760
Rafael Espindola6b238632014-05-16 19:35:39 +00002761 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType()));
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002762 ++NumAliasesResolved;
2763 Changed = true;
Duncan Sandsb3f27882009-02-15 09:56:08 +00002764
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002765 if (RenameTarget) {
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002766 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002767 Target->takeName(&*J);
Duncan Sands6a3df7b2009-12-08 10:10:20 +00002768 Target->setLinkage(J->getLinkage());
Rafael Espindolae4b02312018-01-11 22:15:05 +00002769 Target->setDSOLocal(J->isDSOLocal());
Reid Kleckner22b19da2014-02-13 02:18:36 +00002770 Target->setVisibility(J->getVisibility());
2771 Target->setDLLStorageClass(J->getDLLStorageClass());
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002772
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002773 if (Used.usedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002774 Used.usedInsert(Target);
2775
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002776 if (Used.compilerUsedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002777 Used.compilerUsedInsert(Target);
Rafael Espindola8d304802013-06-12 16:45:47 +00002778 } else if (mayHaveOtherReferences(*J, Used))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002779 continue;
2780
Duncan Sandsb3f27882009-02-15 09:56:08 +00002781 // Delete the alias.
2782 M.getAliasList().erase(J);
2783 ++NumAliasesRemoved;
2784 Changed = true;
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002785 }
2786
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002787 Used.syncVariablesAndSets();
2788
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002789 return Changed;
2790}
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002791
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002792static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
David L. Jonesd21529f2017-01-23 23:16:46 +00002793 LibFunc F = LibFunc_cxa_atexit;
Ahmed Bougachad765a822016-04-27 19:04:35 +00002794 if (!TLI->has(F))
Craig Topperf40110f2014-04-25 05:29:35 +00002795 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002796
Ahmed Bougachad765a822016-04-27 19:04:35 +00002797 Function *Fn = M.getFunction(TLI->getName(F));
Anders Carlssonee6bc702011-03-20 17:59:11 +00002798 if (!Fn)
Craig Topperf40110f2014-04-25 05:29:35 +00002799 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00002800
Ahmed Bougachad765a822016-04-27 19:04:35 +00002801 // Make sure that the function has the correct prototype.
David L. Jonesd21529f2017-01-23 23:16:46 +00002802 if (!TLI->getLibFunc(*Fn, F) || F != LibFunc_cxa_atexit)
Craig Topperf40110f2014-04-25 05:29:35 +00002803 return nullptr;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002804
2805 return Fn;
2806}
2807
James Molloyea31ad32015-11-13 11:05:07 +00002808/// Returns whether the given function is an empty C++ destructor and can
2809/// therefore be eliminated.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002810/// Note that we assume that other optimization passes have already simplified
2811/// the code so we only look for a function with a single basic block, where
Benjamin Kramer1a4695a2012-02-09 16:28:15 +00002812/// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
2813/// other side-effect free instructions.
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002814static bool cxxDtorIsEmpty(const Function &Fn,
2815 SmallPtrSet<const Function *, 8> &CalledFunctions) {
Anders Carlsson48a44912011-03-20 19:51:13 +00002816 // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
Nick Lewyckyd0781832011-03-21 02:26:01 +00002817 // nounwind, but that doesn't seem worth doing.
Anders Carlsson48a44912011-03-20 19:51:13 +00002818 if (Fn.isDeclaration())
2819 return false;
Anders Carlssonee6bc702011-03-20 17:59:11 +00002820
2821 if (++Fn.begin() != Fn.end())
2822 return false;
2823
2824 const BasicBlock &EntryBlock = Fn.getEntryBlock();
2825 for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end();
2826 I != E; ++I) {
2827 if (const CallInst *CI = dyn_cast<CallInst>(I)) {
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002828 // Ignore debug intrinsics.
2829 if (isa<DbgInfoIntrinsic>(CI))
2830 continue;
2831
Anders Carlssonee6bc702011-03-20 17:59:11 +00002832 const Function *CalledFn = CI->getCalledFunction();
2833
2834 if (!CalledFn)
2835 return false;
2836
Anders Carlsson1cc80732011-03-22 03:21:01 +00002837 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
2838
Anders Carlsson48a44912011-03-20 19:51:13 +00002839 // Don't treat recursive functions as empty.
David Blaikie70573dc2014-11-19 07:49:26 +00002840 if (!NewCalledFunctions.insert(CalledFn).second)
Anders Carlsson48a44912011-03-20 19:51:13 +00002841 return false;
2842
Anders Carlsson1cc80732011-03-22 03:21:01 +00002843 if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002844 return false;
2845 } else if (isa<ReturnInst>(*I))
Benjamin Kramer487a3962012-02-09 14:26:06 +00002846 return true; // We're done.
2847 else if (I->mayHaveSideEffects())
2848 return false; // Destructor with side effects, bail.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002849 }
2850
2851 return false;
2852}
2853
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002854static bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
Anders Carlssonee6bc702011-03-20 17:59:11 +00002855 /// Itanium C++ ABI p3.3.5:
2856 ///
2857 /// After constructing a global (or local static) object, that will require
2858 /// destruction on exit, a termination function is registered as follows:
2859 ///
2860 /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
2861 ///
2862 /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
2863 /// call f(p) when DSO d is unloaded, before all such termination calls
2864 /// registered before this one. It returns zero if registration is
Nick Lewyckyd0781832011-03-21 02:26:01 +00002865 /// successful, nonzero on failure.
Anders Carlssonee6bc702011-03-20 17:59:11 +00002866
2867 // This pass will look for calls to __cxa_atexit where the function is trivial
2868 // and remove them.
2869 bool Changed = false;
2870
Chandler Carruthcdf47882014-03-09 03:16:01 +00002871 for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end();
2872 I != E;) {
Anders Carlsson336fd902011-03-20 20:21:33 +00002873 // We're only interested in calls. Theoretically, we could handle invoke
2874 // instructions as well, but neither llvm-gcc nor clang generate invokes
2875 // to __cxa_atexit.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002876 CallInst *CI = dyn_cast<CallInst>(*I++);
2877 if (!CI)
Anders Carlsson336fd902011-03-20 20:21:33 +00002878 continue;
2879
Jakub Staszak9525a772012-12-06 21:57:16 +00002880 Function *DtorFn =
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002881 dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
Anders Carlssonee6bc702011-03-20 17:59:11 +00002882 if (!DtorFn)
2883 continue;
2884
Anders Carlssonfcec2f52011-03-20 20:16:43 +00002885 SmallPtrSet<const Function *, 8> CalledFunctions;
2886 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00002887 continue;
2888
2889 // Just remove the call.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00002890 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
2891 CI->eraseFromParent();
Anders Carlsson48a44912011-03-20 19:51:13 +00002892
Anders Carlssonee6bc702011-03-20 17:59:11 +00002893 ++NumCXXDtorsRemoved;
2894
2895 Changed |= true;
2896 }
2897
2898 return Changed;
2899}
2900
Justin Bogner1a075012016-04-26 00:28:01 +00002901static bool optimizeGlobalsInModule(
2902 Module &M, const DataLayout &DL, TargetLibraryInfo *TLI,
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002903 function_ref<TargetTransformInfo &(Function &)> GetTTI,
2904 function_ref<BlockFrequencyInfo &(Function &)> GetBFI,
Justin Bogner1a075012016-04-26 00:28:01 +00002905 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002906 SmallSet<const Comdat *, 8> NotDiscardableComdats;
Justin Bogner1a075012016-04-26 00:28:01 +00002907 bool Changed = false;
Chris Lattner25db5802004-10-07 04:16:33 +00002908 bool LocalChange = true;
2909 while (LocalChange) {
2910 LocalChange = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002911
David Majnemer1b3b70e2014-10-08 07:23:31 +00002912 NotDiscardableComdats.clear();
2913 for (const GlobalVariable &GV : M.globals())
2914 if (const Comdat *C = GV.getComdat())
2915 if (!GV.isDiscardableIfUnused() || !GV.use_empty())
2916 NotDiscardableComdats.insert(C);
2917 for (Function &F : M)
2918 if (const Comdat *C = F.getComdat())
2919 if (!F.isDefTriviallyDead())
2920 NotDiscardableComdats.insert(C);
2921 for (GlobalAlias &GA : M.aliases())
2922 if (const Comdat *C = GA.getComdat())
2923 if (!GA.isDiscardableIfUnused() || !GA.use_empty())
2924 NotDiscardableComdats.insert(C);
2925
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002926 // Delete functions that are trivially dead, ccc -> fastcc
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002927 LocalChange |= OptimizeFunctions(M, TLI, GetTTI, GetBFI, LookupDomTree,
2928 NotDiscardableComdats);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002929
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002930 // Optimize global_ctors list.
Richard Smithc167d652014-05-06 01:44:26 +00002931 LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) {
2932 return EvaluateStaticConstructor(F, DL, TLI);
2933 });
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002934
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002935 // Optimize non-address-taken globals.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002936 LocalChange |= OptimizeGlobalVars(M, TLI, LookupDomTree,
2937 NotDiscardableComdats);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002938
2939 // Resolve aliases, when possible.
Justin Bognerd2f3d0a2016-04-26 00:27:56 +00002940 LocalChange |= OptimizeGlobalAliases(M, NotDiscardableComdats);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002941
Manman Renb3c52fb2013-05-14 21:52:44 +00002942 // Try to remove trivial global destructors if they are not removed
2943 // already.
2944 Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
Anders Carlssonee6bc702011-03-20 17:59:11 +00002945 if (CXAAtExitFn)
2946 LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
2947
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002948 Changed |= LocalChange;
Chris Lattner25db5802004-10-07 04:16:33 +00002949 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002950
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002951 // TODO: Move all global ctors functions to the end of the module for code
2952 // layout.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002953
Chris Lattner25db5802004-10-07 04:16:33 +00002954 return Changed;
2955}
Justin Bogner1a075012016-04-26 00:28:01 +00002956
Sean Silvafd03ac62016-08-09 00:28:38 +00002957PreservedAnalyses GlobalOptPass::run(Module &M, ModuleAnalysisManager &AM) {
Justin Bogner1a075012016-04-26 00:28:01 +00002958 auto &DL = M.getDataLayout();
2959 auto &TLI = AM.getResult<TargetLibraryAnalysis>(M);
2960 auto &FAM =
2961 AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
2962 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree &{
2963 return FAM.getResult<DominatorTreeAnalysis>(F);
2964 };
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002965 auto GetTTI = [&FAM](Function &F) -> TargetTransformInfo & {
2966 return FAM.getResult<TargetIRAnalysis>(F);
2967 };
2968
2969 auto GetBFI = [&FAM](Function &F) -> BlockFrequencyInfo & {
2970 return FAM.getResult<BlockFrequencyAnalysis>(F);
2971 };
2972
2973 if (!optimizeGlobalsInModule(M, DL, &TLI, GetTTI, GetBFI, LookupDomTree))
Justin Bogner1a075012016-04-26 00:28:01 +00002974 return PreservedAnalyses::all();
2975 return PreservedAnalyses::none();
2976}
2977
2978namespace {
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002979
Justin Bogner1a075012016-04-26 00:28:01 +00002980struct GlobalOptLegacyPass : public ModulePass {
2981 static char ID; // Pass identification, replacement for typeid
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00002982
Justin Bogner1a075012016-04-26 00:28:01 +00002983 GlobalOptLegacyPass() : ModulePass(ID) {
2984 initializeGlobalOptLegacyPassPass(*PassRegistry::getPassRegistry());
2985 }
2986
2987 bool runOnModule(Module &M) override {
2988 if (skipModule(M))
2989 return false;
2990
2991 auto &DL = M.getDataLayout();
2992 auto *TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
2993 auto LookupDomTree = [this](Function &F) -> DominatorTree & {
2994 return this->getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
2995 };
Zaara Syeda1f59ae32018-01-30 16:17:22 +00002996 auto GetTTI = [this](Function &F) -> TargetTransformInfo & {
2997 return this->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
2998 };
2999
3000 auto GetBFI = [this](Function &F) -> BlockFrequencyInfo & {
3001 return this->getAnalysis<BlockFrequencyInfoWrapperPass>(F).getBFI();
3002 };
3003
3004 return optimizeGlobalsInModule(M, DL, TLI, GetTTI, GetBFI, LookupDomTree);
Justin Bogner1a075012016-04-26 00:28:01 +00003005 }
3006
3007 void getAnalysisUsage(AnalysisUsage &AU) const override {
3008 AU.addRequired<TargetLibraryInfoWrapperPass>();
Zaara Syeda1f59ae32018-01-30 16:17:22 +00003009 AU.addRequired<TargetTransformInfoWrapperPass>();
Justin Bogner1a075012016-04-26 00:28:01 +00003010 AU.addRequired<DominatorTreeWrapperPass>();
Zaara Syeda1f59ae32018-01-30 16:17:22 +00003011 AU.addRequired<BlockFrequencyInfoWrapperPass>();
Justin Bogner1a075012016-04-26 00:28:01 +00003012 }
3013};
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00003014
3015} // end anonymous namespace
Justin Bogner1a075012016-04-26 00:28:01 +00003016
3017char GlobalOptLegacyPass::ID = 0;
Eugene Zelenkoe9ea08a2017-10-10 22:49:55 +00003018
Justin Bogner1a075012016-04-26 00:28:01 +00003019INITIALIZE_PASS_BEGIN(GlobalOptLegacyPass, "globalopt",
3020 "Global Variable Optimizer", false, false)
3021INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Zaara Syeda1f59ae32018-01-30 16:17:22 +00003022INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
3023INITIALIZE_PASS_DEPENDENCY(BlockFrequencyInfoWrapperPass)
Justin Bogner1a075012016-04-26 00:28:01 +00003024INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
3025INITIALIZE_PASS_END(GlobalOptLegacyPass, "globalopt",
3026 "Global Variable Optimizer", false, false)
3027
3028ModulePass *llvm::createGlobalOptimizerPass() {
3029 return new GlobalOptLegacyPass();
3030}