blob: 668b7d819ef50b3e82e678750c792d478849febd [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
Chris Lattner25db5802004-10-07 04:16:33 +000016#include "llvm/Transforms/IPO.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/SmallPtrSet.h"
David Majnemerdad0a642014-06-27 18:19:56 +000020#include "llvm/ADT/SmallSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/SmallVector.h"
22#include "llvm/ADT/Statistic.h"
23#include "llvm/Analysis/ConstantFolding.h"
24#include "llvm/Analysis/MemoryBuiltins.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000025#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000026#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/CallingConv.h"
28#include "llvm/IR/Constants.h"
29#include "llvm/IR/DataLayout.h"
30#include "llvm/IR/DerivedTypes.h"
James Molloy9c7d4d82015-11-15 14:21:37 +000031#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000032#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/Instructions.h"
34#include "llvm/IR/IntrinsicInst.h"
35#include "llvm/IR/Module.h"
36#include "llvm/IR/Operator.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000037#include "llvm/IR/ValueHandle.h"
Chris Lattner25db5802004-10-07 04:16:33 +000038#include "llvm/Pass.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000039#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000040#include "llvm/Support/ErrorHandling.h"
Chris Lattner67ca6f632008-04-26 07:40:11 +000041#include "llvm/Support/MathExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000042#include "llvm/Support/raw_ostream.h"
Nico Weber4b2acde2014-05-02 18:35:25 +000043#include "llvm/Transforms/Utils/CtorUtils.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000044#include "llvm/Transforms/Utils/GlobalStatus.h"
Rafael Espindola17600e22013-07-25 03:23:25 +000045#include "llvm/Transforms/Utils/ModuleUtils.h"
Chris Lattner25db5802004-10-07 04:16:33 +000046#include <algorithm>
Benjamin Kramer64425fe2014-05-03 15:50:37 +000047#include <deque>
Chris Lattner25db5802004-10-07 04:16:33 +000048using namespace llvm;
49
Chandler Carruth964daaa2014-04-22 02:55:47 +000050#define DEBUG_TYPE "globalopt"
51
Chris Lattner1631bcb2006-12-19 22:09:18 +000052STATISTIC(NumMarked , "Number of globals marked constant");
Rafael Espindolafc355bc2011-01-19 16:32:21 +000053STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
Chris Lattner1631bcb2006-12-19 22:09:18 +000054STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
55STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
56STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
57STATISTIC(NumDeleted , "Number of globals deleted");
58STATISTIC(NumFnDeleted , "Number of functions deleted");
59STATISTIC(NumGlobUses , "Number of global uses devirtualized");
Alexey Samsonova1944e62013-10-07 19:03:24 +000060STATISTIC(NumLocalized , "Number of globals localized");
Chris Lattner1631bcb2006-12-19 22:09:18 +000061STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
62STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
63STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands573b3f82008-02-16 20:56:04 +000064STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sandsb3f27882009-02-15 09:56:08 +000065STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
66STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Anders Carlssonee6bc702011-03-20 17:59:11 +000067STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed");
Chris Lattner25db5802004-10-07 04:16:33 +000068
Chris Lattner1631bcb2006-12-19 22:09:18 +000069namespace {
Nick Lewycky02d5f772009-10-25 06:33:48 +000070 struct GlobalOpt : public ModulePass {
Craig Topper3e4c6972014-03-05 09:10:37 +000071 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruthb98f63d2015-01-15 10:41:28 +000072 AU.addRequired<TargetLibraryInfoWrapperPass>();
James Molloy9c7d4d82015-11-15 14:21:37 +000073 AU.addRequired<DominatorTreeWrapperPass>();
Chris Lattner004e2502004-10-11 05:54:41 +000074 }
Nick Lewyckye7da2d62007-05-06 13:37:16 +000075 static char ID; // Pass identification, replacement for typeid
Owen Anderson6c18d1a2010-10-19 17:21:58 +000076 GlobalOpt() : ModulePass(ID) {
77 initializeGlobalOptPass(*PassRegistry::getPassRegistry());
78 }
Misha Brukmanb1c93172005-04-21 23:48:37 +000079
Craig Topper3e4c6972014-03-05 09:10:37 +000080 bool runOnModule(Module &M) override;
Chris Lattner004e2502004-10-11 05:54:41 +000081
82 private:
Chris Lattner41b6a5a2005-09-26 01:43:45 +000083 bool OptimizeFunctions(Module &M);
84 bool OptimizeGlobalVars(Module &M);
Duncan Sandsed722832009-03-06 10:21:56 +000085 bool OptimizeGlobalAliases(Module &M);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +000086 bool processGlobal(GlobalVariable *GV);
87 bool processInternalGlobal(GlobalVariable *GV, const GlobalStatus &GS);
Anders Carlssonee6bc702011-03-20 17:59:11 +000088 bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn);
James Molloyd4d23572015-11-16 10:16:22 +000089
90 bool isPointerValueDeadOnEntryToFunction(const Function *F,
91 GlobalValue *GV);
92
Nick Lewyckycf6aae62012-02-12 01:13:18 +000093 TargetLibraryInfo *TLI;
David Majnemer1b3b70e2014-10-08 07:23:31 +000094 SmallSet<const Comdat *, 8> NotDiscardableComdats;
Chris Lattner25db5802004-10-07 04:16:33 +000095 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +000096}
Chris Lattner25db5802004-10-07 04:16:33 +000097
Dan Gohmand78c4002008-05-13 00:00:25 +000098char GlobalOpt::ID = 0;
Chad Rosiere6de63d2011-12-01 21:29:16 +000099INITIALIZE_PASS_BEGIN(GlobalOpt, "globalopt",
100 "Global Variable Optimizer", false, false)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000101INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
James Molloy9c7d4d82015-11-15 14:21:37 +0000102INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chad Rosiere6de63d2011-12-01 21:29:16 +0000103INITIALIZE_PASS_END(GlobalOpt, "globalopt",
Owen Andersondf7a4f22010-10-07 22:25:06 +0000104 "Global Variable Optimizer", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +0000105
Chris Lattner25db5802004-10-07 04:16:33 +0000106ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
107
James Molloyea31ad32015-11-13 11:05:07 +0000108/// Is this global variable possibly used by a leak checker as a root? If so,
109/// we might not really want to eliminate the stores to it.
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000110static bool isLeakCheckerRoot(GlobalVariable *GV) {
111 // A global variable is a root if it is a pointer, or could plausibly contain
112 // a pointer. There are two challenges; one is that we could have a struct
113 // the has an inner member which is a pointer. We recurse through the type to
114 // detect these (up to a point). The other is that we may actually be a union
115 // of a pointer and another type, and so our LLVM type is an integer which
116 // gets converted into a pointer, or our type is an [i8 x #] with a pointer
117 // potentially contained here.
118
119 if (GV->hasPrivateLinkage())
120 return false;
121
122 SmallVector<Type *, 4> Types;
123 Types.push_back(cast<PointerType>(GV->getType())->getElementType());
124
125 unsigned Limit = 20;
126 do {
127 Type *Ty = Types.pop_back_val();
128 switch (Ty->getTypeID()) {
129 default: break;
130 case Type::PointerTyID: return true;
131 case Type::ArrayTyID:
132 case Type::VectorTyID: {
133 SequentialType *STy = cast<SequentialType>(Ty);
134 Types.push_back(STy->getElementType());
135 break;
136 }
137 case Type::StructTyID: {
138 StructType *STy = cast<StructType>(Ty);
139 if (STy->isOpaque()) return true;
140 for (StructType::element_iterator I = STy->element_begin(),
141 E = STy->element_end(); I != E; ++I) {
142 Type *InnerTy = *I;
143 if (isa<PointerType>(InnerTy)) return true;
144 if (isa<CompositeType>(InnerTy))
145 Types.push_back(InnerTy);
146 }
147 break;
148 }
149 }
150 if (--Limit == 0) return true;
151 } while (!Types.empty());
152 return false;
153}
154
155/// Given a value that is stored to a global but never read, determine whether
156/// it's safe to remove the store and the chain of computation that feeds the
157/// store.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000158static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000159 do {
160 if (isa<Constant>(V))
161 return true;
162 if (!V->hasOneUse())
163 return false;
Nick Lewycky7d0f1102012-07-25 21:19:40 +0000164 if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
165 isa<GlobalValue>(V))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000166 return false;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000167 if (isAllocationFn(V, TLI))
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000168 return true;
169
170 Instruction *I = cast<Instruction>(V);
171 if (I->mayHaveSideEffects())
172 return false;
173 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
174 if (!GEP->hasAllConstantIndices())
175 return false;
176 } else if (I->getNumOperands() != 1) {
177 return false;
178 }
179
180 V = I->getOperand(0);
181 } while (1);
182}
183
James Molloyea31ad32015-11-13 11:05:07 +0000184/// This GV is a pointer root. Loop over all users of the global and clean up
185/// any that obviously don't assign the global a value that isn't dynamically
186/// allocated.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000187static bool CleanupPointerRootUsers(GlobalVariable *GV,
188 const TargetLibraryInfo *TLI) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000189 // A brief explanation of leak checkers. The goal is to find bugs where
190 // pointers are forgotten, causing an accumulating growth in memory
191 // usage over time. The common strategy for leak checkers is to whitelist the
192 // memory pointed to by globals at exit. This is popular because it also
193 // solves another problem where the main thread of a C++ program may shut down
194 // before other threads that are still expecting to use those globals. To
195 // handle that case, we expect the program may create a singleton and never
196 // destroy it.
197
198 bool Changed = false;
199
200 // If Dead[n].first is the only use of a malloc result, we can delete its
201 // chain of computation and the store to the global in Dead[n].second.
202 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
203
204 // Constants can't be pointers to dynamically allocated memory.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000205 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end();
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000206 UI != E;) {
207 User *U = *UI++;
208 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
209 Value *V = SI->getValueOperand();
210 if (isa<Constant>(V)) {
211 Changed = true;
212 SI->eraseFromParent();
213 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
214 if (I->hasOneUse())
215 Dead.push_back(std::make_pair(I, SI));
216 }
217 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
218 if (isa<Constant>(MSI->getValue())) {
219 Changed = true;
220 MSI->eraseFromParent();
221 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
222 if (I->hasOneUse())
223 Dead.push_back(std::make_pair(I, MSI));
224 }
225 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
226 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
227 if (MemSrc && MemSrc->isConstant()) {
228 Changed = true;
229 MTI->eraseFromParent();
230 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
231 if (I->hasOneUse())
232 Dead.push_back(std::make_pair(I, MTI));
233 }
234 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
235 if (CE->use_empty()) {
236 CE->destroyConstant();
237 Changed = true;
238 }
239 } else if (Constant *C = dyn_cast<Constant>(U)) {
Rafael Espindola27797ba2013-10-17 18:06:32 +0000240 if (isSafeToDestroyConstant(C)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000241 C->destroyConstant();
242 // This could have invalidated UI, start over from scratch.
243 Dead.clear();
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000244 CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000245 return true;
246 }
247 }
248 }
249
250 for (int i = 0, e = Dead.size(); i != e; ++i) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000251 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000252 Dead[i].second->eraseFromParent();
253 Instruction *I = Dead[i].first;
254 do {
Michael Gottesman2a654272013-01-11 23:08:52 +0000255 if (isAllocationFn(I, TLI))
256 break;
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000257 Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
258 if (!J)
259 break;
260 I->eraseFromParent();
261 I = J;
Nick Lewycky38be9312012-07-24 21:33:00 +0000262 } while (1);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000263 I->eraseFromParent();
264 }
265 }
266
267 return Changed;
268}
269
James Molloyea31ad32015-11-13 11:05:07 +0000270/// We just marked GV constant. Loop over all users of the global, cleaning up
271/// the obvious ones. This is largely just a quick scan over the use list to
272/// clean up the easy and obvious cruft. This returns true if it made a change.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000273static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
Mehdi Amini46a43552015-03-04 18:43:29 +0000274 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000275 TargetLibraryInfo *TLI) {
Chris Lattnercb9f1522004-10-10 16:43:46 +0000276 bool Changed = false;
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000277 // Note that we need to use a weak value handle for the worklist items. When
278 // we delete a constant array, we may also be holding pointer to one of its
279 // elements (or an element of one of its elements if we're dealing with an
280 // array of arrays) in the worklist.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000281 SmallVector<WeakVH, 8> WorkList(V->user_begin(), V->user_end());
Bill Wendling88d06c32013-04-02 08:16:45 +0000282 while (!WorkList.empty()) {
Hal Finkelf59fd7d2013-12-12 20:45:24 +0000283 Value *UV = WorkList.pop_back_val();
284 if (!UV)
285 continue;
286
287 User *U = cast<User>(UV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000288
Chris Lattner25db5802004-10-07 04:16:33 +0000289 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000290 if (Init) {
291 // Replace the load with the initializer.
292 LI->replaceAllUsesWith(Init);
293 LI->eraseFromParent();
294 Changed = true;
295 }
Chris Lattner25db5802004-10-07 04:16:33 +0000296 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
297 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000298 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000299 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000300 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
301 if (CE->getOpcode() == Instruction::GetElementPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000302 Constant *SubInit = nullptr;
Chris Lattner46d9ff082005-09-26 07:34:35 +0000303 if (Init)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000304 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000305 Changed |= CleanupConstantGlobalUsers(CE, SubInit, DL, TLI);
Matt Arsenault461c8e02014-01-02 20:01:43 +0000306 } else if ((CE->getOpcode() == Instruction::BitCast &&
307 CE->getType()->isPointerTy()) ||
308 CE->getOpcode() == Instruction::AddrSpaceCast) {
Chris Lattner7561ca12005-02-27 18:58:52 +0000309 // Pointer cast, delete any stores and memsets to the global.
Craig Topperf40110f2014-04-25 05:29:35 +0000310 Changed |= CleanupConstantGlobalUsers(CE, nullptr, DL, TLI);
Chris Lattner7561ca12005-02-27 18:58:52 +0000311 }
312
313 if (CE->use_empty()) {
314 CE->destroyConstant();
315 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000316 }
317 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000318 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
319 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
320 // and will invalidate our notion of what Init is.
Craig Topperf40110f2014-04-25 05:29:35 +0000321 Constant *SubInit = nullptr;
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000322 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
Mehdi Amini46a43552015-03-04 18:43:29 +0000323 ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000324 ConstantFoldInstruction(GEP, DL, TLI));
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000325 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmane525d9d2009-10-05 16:36:26 +0000326 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Benjamin Krameraa9e4a52012-03-28 14:50:09 +0000327
328 // If the initializer is an all-null value and we have an inbounds GEP,
329 // we already know what the result of any load from that GEP is.
330 // TODO: Handle splats.
331 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
332 SubInit = Constant::getNullValue(GEP->getType()->getElementType());
Chris Lattnerf9c0fd72007-11-09 17:33:02 +0000333 }
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000334 Changed |= CleanupConstantGlobalUsers(GEP, SubInit, DL, TLI);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000335
Chris Lattnercb9f1522004-10-10 16:43:46 +0000336 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000337 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000338 Changed = true;
339 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000340 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
341 if (MI->getRawDest() == V) {
342 MI->eraseFromParent();
343 Changed = true;
344 }
345
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000346 } else if (Constant *C = dyn_cast<Constant>(U)) {
347 // If we have a chain of dead constantexprs or other things dangling from
348 // us, and if they are all dead, nuke them without remorse.
Rafael Espindola27797ba2013-10-17 18:06:32 +0000349 if (isSafeToDestroyConstant(C)) {
Devang Pateld926aaa2009-03-06 01:37:41 +0000350 C->destroyConstant();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000351 CleanupConstantGlobalUsers(V, Init, DL, TLI);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000352 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000353 }
Chris Lattner25db5802004-10-07 04:16:33 +0000354 }
355 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000356 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000357}
358
James Molloyea31ad32015-11-13 11:05:07 +0000359/// Return true if the specified instruction is a safe user of a derived
360/// expression from a global that we want to SROA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000361static bool isSafeSROAElementUse(Value *V) {
362 // We might have a dead and dangling constant hanging off of here.
363 if (Constant *C = dyn_cast<Constant>(V))
Rafael Espindola27797ba2013-10-17 18:06:32 +0000364 return isSafeToDestroyConstant(C);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000365
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000366 Instruction *I = dyn_cast<Instruction>(V);
367 if (!I) return false;
368
369 // Loads are ok.
370 if (isa<LoadInst>(I)) return true;
371
372 // Stores *to* the pointer are ok.
373 if (StoreInst *SI = dyn_cast<StoreInst>(I))
374 return SI->getOperand(0) != V;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000375
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000376 // Otherwise, it must be a GEP.
377 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
Craig Topperf40110f2014-04-25 05:29:35 +0000378 if (!GEPI) return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000379
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000380 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
381 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
382 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000383
Chandler Carruthcdf47882014-03-09 03:16:01 +0000384 for (User *U : GEPI->users())
385 if (!isSafeSROAElementUse(U))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000386 return false;
Chris Lattnerab053722008-01-14 01:31:05 +0000387 return true;
388}
389
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000390
James Molloyea31ad32015-11-13 11:05:07 +0000391/// U is a direct user of the specified global value. Look at it and its uses
392/// and decide whether it is safe to SROA this global.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000393static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
394 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000395 if (!isa<GetElementPtrInst>(U) &&
396 (!isa<ConstantExpr>(U) ||
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000397 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
398 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000399
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000400 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
401 // don't like < 3 operand CE's, and we don't like non-constant integer
402 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
403 // value of C.
404 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
405 !cast<Constant>(U->getOperand(1))->isNullValue() ||
406 !isa<ConstantInt>(U->getOperand(2)))
407 return false;
408
409 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
410 ++GEPI; // Skip over the pointer index.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000411
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000412 // If this is a use of an array allocation, do a bit more checking for sanity.
Chris Lattner229907c2011-07-18 04:54:35 +0000413 if (ArrayType *AT = dyn_cast<ArrayType>(*GEPI)) {
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000414 uint64_t NumElements = AT->getNumElements();
415 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 //
420 if (Idx->getZExtValue() >= NumElements)
421 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000422
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000423 // We cannot scalar repl this level of the array unless any array
424 // sub-indices are in-range constants. In particular, consider:
425 // A[0][i]. We cannot know that the user isn't doing invalid things like
426 // allowing i to index an out-of-range subscript that accesses A[1].
427 //
428 // Scalar replacing *just* the outer index of the array is probably not
429 // going to be a win anyway, so just give up.
430 for (++GEPI; // Skip array index.
Dan Gohman82ac81b2009-08-18 14:58:19 +0000431 GEPI != E;
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000432 ++GEPI) {
433 uint64_t NumElements;
Chris Lattner229907c2011-07-18 04:54:35 +0000434 if (ArrayType *SubArrayTy = dyn_cast<ArrayType>(*GEPI))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000435 NumElements = SubArrayTy->getNumElements();
Chris Lattner229907c2011-07-18 04:54:35 +0000436 else if (VectorType *SubVectorTy = dyn_cast<VectorType>(*GEPI))
Dan Gohman82ac81b2009-08-18 14:58:19 +0000437 NumElements = SubVectorTy->getNumElements();
438 else {
Duncan Sands19d0b472010-02-16 11:11:14 +0000439 assert((*GEPI)->isStructTy() &&
Dan Gohman82ac81b2009-08-18 14:58:19 +0000440 "Indexed GEP type is not array, vector, or struct!");
441 continue;
442 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000443
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000444 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
445 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
446 return false;
447 }
448 }
449
Chandler Carruthcdf47882014-03-09 03:16:01 +0000450 for (User *UU : U->users())
451 if (!isSafeSROAElementUse(UU))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000452 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000453
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000454 return true;
455}
456
James Molloyea31ad32015-11-13 11:05:07 +0000457/// Look at all uses of the global and decide whether it is safe for us to
458/// perform this transformation.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000459static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000460 for (User *U : GV->users())
461 if (!IsUserOfGlobalSafeForSRA(U, GV))
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000462 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000463
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000464 return true;
465}
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000466
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000467
James Molloyea31ad32015-11-13 11:05:07 +0000468/// Perform scalar replacement of aggregates on the specified global variable.
469/// This opens the door for other optimizations by exposing the behavior of the
470/// program in a more fine-grained way. We have determined that this
471/// transformation is safe already. We return the first global variable we
Chris Lattnerabab0712004-10-08 17:32:09 +0000472/// insert so that the caller can reprocess it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000473static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &DL) {
Chris Lattnerab053722008-01-14 01:31:05 +0000474 // Make sure this global only has simple uses that we can SRA.
Chris Lattner26fe7eb2008-01-14 02:09:12 +0000475 if (!GlobalUsersSafeToSRA(GV))
Craig Topperf40110f2014-04-25 05:29:35 +0000476 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000477
Rafael Espindola6de96a12009-01-15 20:18:42 +0000478 assert(GV->hasLocalLinkage() && !GV->isConstant());
Chris Lattnerabab0712004-10-08 17:32:09 +0000479 Constant *Init = GV->getInitializer();
Chris Lattner229907c2011-07-18 04:54:35 +0000480 Type *Ty = Init->getType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000481
Chris Lattnerabab0712004-10-08 17:32:09 +0000482 std::vector<GlobalVariable*> NewGlobals;
483 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
484
Chris Lattner67ca6f632008-04-26 07:40:11 +0000485 // Get the alignment of the global, either explicit or target-specific.
486 unsigned StartAlignment = GV->getAlignment();
487 if (StartAlignment == 0)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000488 StartAlignment = DL.getABITypeAlignment(GV->getType());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000489
Chris Lattner229907c2011-07-18 04:54:35 +0000490 if (StructType *STy = dyn_cast<StructType>(Ty)) {
Chris Lattnerabab0712004-10-08 17:32:09 +0000491 NewGlobals.reserve(STy->getNumElements());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000492 const StructLayout &Layout = *DL.getStructLayout(STy);
Chris Lattnerabab0712004-10-08 17:32:09 +0000493 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000494 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000495 assert(In && "Couldn't get element of initializer?");
Chris Lattner46b5c642009-11-06 04:27:31 +0000496 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000497 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000498 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000499 GV->getThreadLocalMode(),
Owen Anderson5948fdf2009-07-08 01:26:06 +0000500 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000501 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000502 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000503 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000504
Chris Lattner67ca6f632008-04-26 07:40:11 +0000505 // Calculate the known alignment of the field. If the original aggregate
506 // had 256 byte alignment for example, something might depend on that:
507 // propagate info to each field.
508 uint64_t FieldOffset = Layout.getElementOffset(i);
509 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000510 if (NewAlign > DL.getABITypeAlignment(STy->getElementType(i)))
Chris Lattner67ca6f632008-04-26 07:40:11 +0000511 NGV->setAlignment(NewAlign);
Chris Lattnerabab0712004-10-08 17:32:09 +0000512 }
Chris Lattner229907c2011-07-18 04:54:35 +0000513 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
Chris Lattnerabab0712004-10-08 17:32:09 +0000514 unsigned NumElements = 0;
Chris Lattner229907c2011-07-18 04:54:35 +0000515 if (ArrayType *ATy = dyn_cast<ArrayType>(STy))
Chris Lattnerabab0712004-10-08 17:32:09 +0000516 NumElements = ATy->getNumElements();
Chris Lattnerabab0712004-10-08 17:32:09 +0000517 else
Chris Lattner67ca6f632008-04-26 07:40:11 +0000518 NumElements = cast<VectorType>(STy)->getNumElements();
Chris Lattnerabab0712004-10-08 17:32:09 +0000519
Chris Lattner25169ca2005-02-23 16:53:04 +0000520 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Craig Topperf40110f2014-04-25 05:29:35 +0000521 return nullptr; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000522 NewGlobals.reserve(NumElements);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000523
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000524 uint64_t EltSize = DL.getTypeAllocSize(STy->getElementType());
525 unsigned EltAlign = DL.getABITypeAlignment(STy->getElementType());
Chris Lattnerabab0712004-10-08 17:32:09 +0000526 for (unsigned i = 0, e = NumElements; i != e; ++i) {
Chris Lattner67058832012-01-25 06:48:06 +0000527 Constant *In = Init->getAggregateElement(i);
Chris Lattnerabab0712004-10-08 17:32:09 +0000528 assert(In && "Couldn't get element of initializer?");
529
Chris Lattner46b5c642009-11-06 04:27:31 +0000530 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattnerabab0712004-10-08 17:32:09 +0000531 GlobalVariable::InternalLinkage,
Daniel Dunbar132f7832009-07-30 17:37:43 +0000532 In, GV->getName()+"."+Twine(i),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000533 GV->getThreadLocalMode(),
Owen Andersonb17f3292009-07-08 19:03:57 +0000534 GV->getType()->getAddressSpace());
Oliver Stannardc1103392015-11-09 16:47:16 +0000535 NGV->setExternallyInitialized(GV->isExternallyInitialized());
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000536 Globals.push_back(NGV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000537 NewGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000538
Chris Lattner67ca6f632008-04-26 07:40:11 +0000539 // Calculate the known alignment of the field. If the original aggregate
540 // had 256 byte alignment for example, something might depend on that:
541 // propagate info to each field.
542 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
543 if (NewAlign > EltAlign)
544 NGV->setAlignment(NewAlign);
Chris Lattnerabab0712004-10-08 17:32:09 +0000545 }
546 }
547
548 if (NewGlobals.empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000549 return nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000550
James Molloyef607a22015-10-28 14:30:53 +0000551 DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV << "\n");
Chris Lattner004e2502004-10-11 05:54:41 +0000552
Chris Lattner46b5c642009-11-06 04:27:31 +0000553 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattnerabab0712004-10-08 17:32:09 +0000554
555 // Loop over all of the uses of the global, replacing the constantexpr geps,
556 // with smaller constantexpr geps or direct references.
557 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000558 User *GEP = GV->user_back();
Chris Lattner004e2502004-10-11 05:54:41 +0000559 assert(((isa<ConstantExpr>(GEP) &&
560 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
561 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000562
Chris Lattnerabab0712004-10-08 17:32:09 +0000563 // Ignore the 1th operand, which has to be zero or else the program is quite
564 // broken (undefined). Get the 2nd operand, which is the structure or array
565 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000566 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000567 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
568
Chris Lattner004e2502004-10-11 05:54:41 +0000569 Value *NewPtr = NewGlobals[Val];
David Blaikied9d900c2015-05-07 17:28:58 +0000570 Type *NewTy = NewGlobals[Val]->getValueType();
Chris Lattnerabab0712004-10-08 17:32:09 +0000571
572 // Form a shorter GEP if needed.
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000573 if (GEP->getNumOperands() > 3) {
Chris Lattner004e2502004-10-11 05:54:41 +0000574 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000575 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000576 Idxs.push_back(NullInt);
577 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
578 Idxs.push_back(CE->getOperand(i));
David Blaikie4a2e73b2015-04-02 18:55:32 +0000579 NewPtr =
580 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
Chris Lattner004e2502004-10-11 05:54:41 +0000581 } else {
582 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000583 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000584 Idxs.push_back(NullInt);
585 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
586 Idxs.push_back(GEPI->getOperand(i));
David Blaikie741c8f82015-03-14 01:53:18 +0000587 NewPtr = GetElementPtrInst::Create(
David Blaikied9d900c2015-05-07 17:28:58 +0000588 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
Chris Lattner004e2502004-10-11 05:54:41 +0000589 }
Anton Korobeynikov1bfd1212008-02-20 11:26:25 +0000590 }
Chris Lattner004e2502004-10-11 05:54:41 +0000591 GEP->replaceAllUsesWith(NewPtr);
592
593 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000594 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000595 else
596 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000597 }
598
Chris Lattner73ad73e2004-10-08 20:25:55 +0000599 // Delete the old global, now that it is dead.
600 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000601 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000602
603 // Loop over the new globals array deleting any globals that are obviously
604 // dead. This can arise due to scalarization of a structure or an array that
605 // has elements that are dead.
606 unsigned FirstGlobal = 0;
607 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
608 if (NewGlobals[i]->use_empty()) {
609 Globals.erase(NewGlobals[i]);
610 if (FirstGlobal == i) ++FirstGlobal;
611 }
612
Craig Topperf40110f2014-04-25 05:29:35 +0000613 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : nullptr;
Chris Lattnerabab0712004-10-08 17:32:09 +0000614}
615
James Molloyea31ad32015-11-13 11:05:07 +0000616/// Return true if all users of the specified value will trap if the value is
617/// dynamically null. PHIs keeps track of any phi nodes we've seen to avoid
618/// reprocessing them.
Gabor Greif67972872010-04-06 19:24:18 +0000619static bool AllUsesOfValueWillTrapIfNull(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +0000620 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000621 for (const User *U : V->users())
Gabor Greif08355d62010-04-06 19:14:05 +0000622 if (isa<LoadInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000623 // Will trap.
Gabor Greif67972872010-04-06 19:24:18 +0000624 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000625 if (SI->getOperand(0) == V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000626 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000627 return false; // Storing the value.
628 }
Gabor Greif67972872010-04-06 19:24:18 +0000629 } else if (const CallInst *CI = dyn_cast<CallInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000630 if (CI->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000631 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000632 return false; // Not calling the ptr
633 }
Gabor Greif67972872010-04-06 19:24:18 +0000634 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Gabor Greiffebf6ab2010-03-20 21:00:25 +0000635 if (II->getCalledValue() != V) {
Gabor Greif08355d62010-04-06 19:14:05 +0000636 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000637 return false; // Not calling the ptr
638 }
Gabor Greif67972872010-04-06 19:24:18 +0000639 } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000640 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000641 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000642 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
Gabor Greif67972872010-04-06 19:24:18 +0000643 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000644 // If we've already seen this phi node, ignore it, it has already been
645 // checked.
David Blaikie70573dc2014-11-19 07:49:26 +0000646 if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
Jakob Stoklund Olesene27dc722010-01-29 23:54:14 +0000647 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000648 } else if (isa<ICmpInst>(U) &&
Chandler Carruthcdf47882014-03-09 03:16:01 +0000649 isa<ConstantPointerNull>(U->getOperand(1))) {
Nick Lewycky614fb942010-02-25 06:39:10 +0000650 // Ignore icmp X, null
Chris Lattner09a52722004-10-09 21:48:45 +0000651 } else {
Gabor Greif08355d62010-04-06 19:14:05 +0000652 //cerr << "NONTRAPPING USE: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000653 return false;
654 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000655
Chris Lattner09a52722004-10-09 21:48:45 +0000656 return true;
657}
658
James Molloyea31ad32015-11-13 11:05:07 +0000659/// Return true if all uses of any loads from GV will trap if the loaded value
660/// is null. Note that this also permits comparisons of the loaded value
661/// against null, as a special case.
Gabor Greif67972872010-04-06 19:24:18 +0000662static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000663 for (const User *U : GV->users())
Gabor Greif67972872010-04-06 19:24:18 +0000664 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
665 SmallPtrSet<const PHINode*, 8> PHIs;
Chris Lattner2d2892e2007-09-13 16:30:19 +0000666 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner09a52722004-10-09 21:48:45 +0000667 return false;
Gabor Greif08355d62010-04-06 19:14:05 +0000668 } else if (isa<StoreInst>(U)) {
Chris Lattner09a52722004-10-09 21:48:45 +0000669 // Ignore stores to the global.
670 } else {
671 // We don't know or understand this user, bail out.
Gabor Greif08355d62010-04-06 19:14:05 +0000672 //cerr << "UNKNOWN USER OF GLOBAL!: " << *U;
Chris Lattner09a52722004-10-09 21:48:45 +0000673 return false;
674 }
Chris Lattner09a52722004-10-09 21:48:45 +0000675 return true;
676}
677
Chris Lattner46b5c642009-11-06 04:27:31 +0000678static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000679 bool Changed = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000680 for (auto UI = V->user_begin(), E = V->user_end(); UI != E; ) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000681 Instruction *I = cast<Instruction>(*UI++);
682 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
683 LI->setOperand(0, NewV);
684 Changed = true;
685 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
686 if (SI->getOperand(1) == V) {
687 SI->setOperand(1, NewV);
688 Changed = true;
689 }
690 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
Gabor Greif04397892010-04-06 18:45:08 +0000691 CallSite CS(I);
692 if (CS.getCalledValue() == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000693 // Calling through the pointer! Turn into a direct call, but be careful
694 // that the pointer is not also being passed as an argument.
Gabor Greif04397892010-04-06 18:45:08 +0000695 CS.setCalledFunction(NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000696 Changed = true;
697 bool PassedAsArg = false;
Gabor Greif04397892010-04-06 18:45:08 +0000698 for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
699 if (CS.getArgument(i) == V) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000700 PassedAsArg = true;
Gabor Greif04397892010-04-06 18:45:08 +0000701 CS.setArgument(i, NewV);
Chris Lattnere42eb312004-10-10 23:14:11 +0000702 }
703
704 if (PassedAsArg) {
705 // Being passed as an argument also. Be careful to not invalidate UI!
Chandler Carruthcdf47882014-03-09 03:16:01 +0000706 UI = V->user_begin();
Chris Lattnere42eb312004-10-10 23:14:11 +0000707 }
708 }
709 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
710 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Anderson487375e2009-07-29 18:55:55 +0000711 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner46b5c642009-11-06 04:27:31 +0000712 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000713 if (CI->use_empty()) {
714 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000715 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000716 }
717 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
718 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000719 SmallVector<Constant*, 8> Idxs;
720 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif3a9fba52008-05-29 01:59:18 +0000721 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
722 i != e; ++i)
723 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000724 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000725 else
726 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000727 if (Idxs.size() == GEPI->getNumOperands()-1)
David Blaikie4a2e73b2015-04-02 18:55:32 +0000728 Changed |= OptimizeAwayTrappingUsesOfValue(
729 GEPI, ConstantExpr::getGetElementPtr(nullptr, NewV, Idxs));
Chris Lattnere42eb312004-10-10 23:14:11 +0000730 if (GEPI->use_empty()) {
731 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000732 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000733 }
734 }
735 }
736
737 return Changed;
738}
739
740
James Molloyea31ad32015-11-13 11:05:07 +0000741/// The specified global has only one non-null value stored into it. If there
742/// are uses of the loaded value that would trap if the loaded value is
743/// dynamically null, then we know that they cannot be reachable with a null
744/// optimize away the load.
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000745static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
Mehdi Amini46a43552015-03-04 18:43:29 +0000746 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +0000747 TargetLibraryInfo *TLI) {
Chris Lattnere42eb312004-10-10 23:14:11 +0000748 bool Changed = false;
749
Chris Lattner2538eb62009-01-14 00:12:58 +0000750 // Keep track of whether we are able to remove all the uses of the global
751 // other than the store that defines it.
752 bool AllNonStoreUsesGone = true;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000753
Chris Lattnere42eb312004-10-10 23:14:11 +0000754 // Replace all uses of loads with uses of uses of the stored value.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000755 for (Value::user_iterator GUI = GV->user_begin(), E = GV->user_end(); GUI != E;){
Chris Lattner2538eb62009-01-14 00:12:58 +0000756 User *GlobalUser = *GUI++;
757 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner46b5c642009-11-06 04:27:31 +0000758 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner2538eb62009-01-14 00:12:58 +0000759 // If we were able to delete all uses of the loads
760 if (LI->use_empty()) {
761 LI->eraseFromParent();
762 Changed = true;
763 } else {
764 AllNonStoreUsesGone = false;
765 }
766 } else if (isa<StoreInst>(GlobalUser)) {
767 // Ignore the store that stores "LV" to the global.
768 assert(GlobalUser->getOperand(1) == GV &&
769 "Must be storing *to* the global");
Chris Lattnere42eb312004-10-10 23:14:11 +0000770 } else {
Chris Lattner2538eb62009-01-14 00:12:58 +0000771 AllNonStoreUsesGone = false;
772
773 // If we get here we could have other crazy uses that are transitively
774 // loaded.
775 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
Benjamin Kramered843602012-09-28 10:01:27 +0000776 isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
777 isa<BitCastInst>(GlobalUser) ||
778 isa<GetElementPtrInst>(GlobalUser)) &&
Chris Lattner1a1acc22011-05-22 07:15:13 +0000779 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000780 }
Chris Lattner2538eb62009-01-14 00:12:58 +0000781 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000782
783 if (Changed) {
James Molloyef607a22015-10-28 14:30:53 +0000784 DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV << "\n");
Chris Lattnere42eb312004-10-10 23:14:11 +0000785 ++NumGlobUses;
786 }
787
Chris Lattnere42eb312004-10-10 23:14:11 +0000788 // If we nuked all of the loads, then none of the stores are needed either,
789 // nor is the global.
Chris Lattner2538eb62009-01-14 00:12:58 +0000790 if (AllNonStoreUsesGone) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000791 if (isLeakCheckerRoot(GV)) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000792 Changed |= CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000793 } else {
794 Changed = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000795 CleanupConstantGlobalUsers(GV, nullptr, DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000796 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000797 if (GV->use_empty()) {
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +0000798 DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
799 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000800 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000801 ++NumDeleted;
802 }
Chris Lattnere42eb312004-10-10 23:14:11 +0000803 }
804 return Changed;
805}
806
James Molloyea31ad32015-11-13 11:05:07 +0000807/// Walk the use list of V, constant folding all of the instructions that are
808/// foldable.
Mehdi Amini46a43552015-03-04 18:43:29 +0000809static void ConstantPropUsersOf(Value *V, const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000810 TargetLibraryInfo *TLI) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000811 for (Value::user_iterator UI = V->user_begin(), E = V->user_end(); UI != E; )
Chris Lattner004e2502004-10-11 05:54:41 +0000812 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000813 if (Constant *NewC = ConstantFoldInstruction(I, DL, TLI)) {
Chris Lattner004e2502004-10-11 05:54:41 +0000814 I->replaceAllUsesWith(NewC);
815
Chris Lattnerd6a44922005-02-01 01:23:31 +0000816 // Advance UI to the next non-I use to avoid invalidating it!
817 // Instructions could multiply use V.
818 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000819 ++UI;
Chris Lattnerd6a44922005-02-01 01:23:31 +0000820 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000821 }
822}
823
James Molloyea31ad32015-11-13 11:05:07 +0000824/// This function takes the specified global variable, and transforms the
825/// program as if it always contained the result of the specified malloc.
826/// Because it is always the result of the specified malloc, there is no reason
827/// to actually DO the malloc. Instead, turn the malloc into a global, and any
828/// loads of GV as uses of the new global.
Mehdi Amini46a43552015-03-04 18:43:29 +0000829static GlobalVariable *
830OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
831 ConstantInt *NElements, const DataLayout &DL,
832 TargetLibraryInfo *TLI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000833 DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI << '\n');
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000834
Chris Lattner229907c2011-07-18 04:54:35 +0000835 Type *GlobalType;
Chris Lattner7939f792010-02-25 22:33:52 +0000836 if (NElements->getZExtValue() == 1)
837 GlobalType = AllocTy;
838 else
839 // If we have an array allocation, the global variable is of an array.
840 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez5d034492009-09-18 22:35:49 +0000841
842 // Create the new global variable. The contents of the malloc'd memory is
843 // undefined, so initialize with an undef value.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +0000844 GlobalVariable *NewGV = new GlobalVariable(
845 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage,
846 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr,
847 GV->getThreadLocalMode());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000848
Chris Lattner7939f792010-02-25 22:33:52 +0000849 // If there are bitcast users of the malloc (which is typical, usually we have
850 // a malloc + bitcast) then replace them with uses of the new global. Update
851 // other users to use the global as well.
Craig Topperf40110f2014-04-25 05:29:35 +0000852 BitCastInst *TheBC = nullptr;
Chris Lattner7939f792010-02-25 22:33:52 +0000853 while (!CI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000854 Instruction *User = cast<Instruction>(CI->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000855 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
856 if (BCI->getType() == NewGV->getType()) {
857 BCI->replaceAllUsesWith(NewGV);
858 BCI->eraseFromParent();
859 } else {
860 BCI->setOperand(0, NewGV);
861 }
862 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000863 if (!TheBC)
Chris Lattner7939f792010-02-25 22:33:52 +0000864 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
865 User->replaceUsesOfWith(CI, TheBC);
866 }
867 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000868
Victor Hernandez5d034492009-09-18 22:35:49 +0000869 Constant *RepValue = NewGV;
870 if (NewGV->getType() != GV->getType()->getElementType())
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000871 RepValue = ConstantExpr::getBitCast(RepValue,
Victor Hernandez5d034492009-09-18 22:35:49 +0000872 GV->getType()->getElementType());
873
874 // If there is a comparison against null, we will insert a global bool to
875 // keep track of whether the global was initialized yet or not.
876 GlobalVariable *InitBool =
Chris Lattner46b5c642009-11-06 04:27:31 +0000877 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez5d034492009-09-18 22:35:49 +0000878 GlobalValue::InternalLinkage,
Chris Lattner46b5c642009-11-06 04:27:31 +0000879 ConstantInt::getFalse(GV->getContext()),
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000880 GV->getName()+".init", GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +0000881 bool InitBoolUsed = false;
882
883 // Loop over all uses of GV, processing them in turn.
Chris Lattner7939f792010-02-25 22:33:52 +0000884 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000885 if (StoreInst *SI = dyn_cast<StoreInst>(GV->user_back())) {
Victor Hernandez5d034492009-09-18 22:35:49 +0000886 // The global is initialized when the store to it occurs.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000887 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
888 SI->getOrdering(), SI->getSynchScope(), SI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000889 SI->eraseFromParent();
Chris Lattner7939f792010-02-25 22:33:52 +0000890 continue;
Victor Hernandez5d034492009-09-18 22:35:49 +0000891 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000892
Chandler Carruthcdf47882014-03-09 03:16:01 +0000893 LoadInst *LI = cast<LoadInst>(GV->user_back());
Chris Lattner7939f792010-02-25 22:33:52 +0000894 while (!LI->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000895 Use &LoadUse = *LI->use_begin();
896 ICmpInst *ICI = dyn_cast<ICmpInst>(LoadUse.getUser());
897 if (!ICI) {
Chris Lattner7939f792010-02-25 22:33:52 +0000898 LoadUse = RepValue;
899 continue;
900 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000901
Chris Lattner7939f792010-02-25 22:33:52 +0000902 // Replace the cmp X, 0 with a use of the bool value.
Nick Lewycky52da72b2012-02-05 19:56:38 +0000903 // Sink the load to where the compare was, if atomic rules allow us to.
904 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0,
905 LI->getOrdering(), LI->getSynchScope(),
906 LI->isUnordered() ? (Instruction*)ICI : LI);
Chris Lattner7939f792010-02-25 22:33:52 +0000907 InitBoolUsed = true;
908 switch (ICI->getPredicate()) {
909 default: llvm_unreachable("Unknown ICmp Predicate!");
910 case ICmpInst::ICMP_ULT:
911 case ICmpInst::ICMP_SLT: // X < null -> always false
912 LV = ConstantInt::getFalse(GV->getContext());
913 break;
914 case ICmpInst::ICMP_ULE:
915 case ICmpInst::ICMP_SLE:
916 case ICmpInst::ICMP_EQ:
917 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
918 break;
919 case ICmpInst::ICMP_NE:
920 case ICmpInst::ICMP_UGE:
921 case ICmpInst::ICMP_SGE:
922 case ICmpInst::ICMP_UGT:
923 case ICmpInst::ICMP_SGT:
924 break; // no change.
925 }
926 ICI->replaceAllUsesWith(LV);
927 ICI->eraseFromParent();
928 }
929 LI->eraseFromParent();
930 }
Victor Hernandez5d034492009-09-18 22:35:49 +0000931
932 // If the initialization boolean was used, insert it, otherwise delete it.
933 if (!InitBoolUsed) {
934 while (!InitBool->use_empty()) // Delete initializations
Chandler Carruthcdf47882014-03-09 03:16:01 +0000935 cast<StoreInst>(InitBool->user_back())->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000936 delete InitBool;
937 } else
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000938 GV->getParent()->getGlobalList().insert(GV->getIterator(), InitBool);
Victor Hernandez5d034492009-09-18 22:35:49 +0000939
Chris Lattner7939f792010-02-25 22:33:52 +0000940 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez5d034492009-09-18 22:35:49 +0000941 GV->eraseFromParent();
Victor Hernandez5d034492009-09-18 22:35:49 +0000942 CI->eraseFromParent();
943
944 // To further other optimizations, loop over all users of NewGV and try to
945 // constant prop them. This will promote GEP instructions with constant
946 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000947 ConstantPropUsersOf(NewGV, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000948 if (RepValue != NewGV)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000949 ConstantPropUsersOf(RepValue, DL, TLI);
Victor Hernandez5d034492009-09-18 22:35:49 +0000950
951 return NewGV;
952}
953
James Molloyea31ad32015-11-13 11:05:07 +0000954/// Scan the use-list of V checking to make sure that there are no complex uses
955/// of V. We permit simple things like dereferencing the pointer, but not
956/// storing through the address, unless it is to the specified global.
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000957static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
958 const GlobalVariable *GV,
Craig Topper71b7b682014-08-21 05:55:13 +0000959 SmallPtrSetImpl<const PHINode*> &PHIs) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000960 for (const User *U : V->users()) {
961 const Instruction *Inst = cast<Instruction>(U);
Gabor Greif08355d62010-04-06 19:14:05 +0000962
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000963 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
964 continue; // Fine, ignore.
965 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000966
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000967 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000968 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
969 return false; // Storing the pointer itself... bad.
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000970 continue; // Otherwise, storing through it, or storing into GV... fine.
971 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000972
Chris Lattnerb9801ff2010-04-10 18:19:22 +0000973 // Must index into the array and into the struct.
974 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000975 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000976 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000977 continue;
978 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000979
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000980 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattner6eed0e72007-09-13 16:37:20 +0000981 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
982 // cycles.
David Blaikie70573dc2014-11-19 07:49:26 +0000983 if (PHIs.insert(PN).second)
Chris Lattner5d13fb532007-09-14 03:41:21 +0000984 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
985 return false;
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000986 continue;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000987 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000988
Gabor Greifa21bc0f2010-04-06 18:58:22 +0000989 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000990 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
991 return false;
992 continue;
993 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +0000994
Chris Lattnerf0eb5682008-12-15 21:08:54 +0000995 return false;
996 }
Chris Lattnerc0677c02004-12-02 07:11:07 +0000997 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000998}
999
James Molloyea31ad32015-11-13 11:05:07 +00001000/// The Alloc pointer is stored into GV somewhere. Transform all uses of the
1001/// allocation into loads from the global and uses of the resultant pointer.
1002/// Further, delete the store into GV. This assumes that these value pass the
Chris Lattner24d3d422006-09-30 23:32:09 +00001003/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001004static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
Chris Lattner24d3d422006-09-30 23:32:09 +00001005 GlobalVariable *GV) {
1006 while (!Alloc->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001007 Instruction *U = cast<Instruction>(*Alloc->user_begin());
Chris Lattnerba98f892007-09-13 18:00:31 +00001008 Instruction *InsertPt = U;
Chris Lattner24d3d422006-09-30 23:32:09 +00001009 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
1010 // If this is the store of the allocation into the global, remove it.
1011 if (SI->getOperand(1) == GV) {
1012 SI->eraseFromParent();
1013 continue;
1014 }
Chris Lattnerba98f892007-09-13 18:00:31 +00001015 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
1016 // Insert the load in the corresponding predecessor, not right before the
1017 // PHI.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001018 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001019 } else if (isa<BitCastInst>(U)) {
1020 // Must be bitcast between the malloc and store to initialize the global.
1021 ReplaceUsesOfMallocWithGlobal(U, GV);
1022 U->eraseFromParent();
1023 continue;
1024 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
1025 // If this is a "GEP bitcast" and the user is a store to the global, then
1026 // just process it as a bitcast.
1027 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +00001028 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->user_back()))
Chris Lattner49e3bdc2008-12-15 21:44:34 +00001029 if (SI->getOperand(1) == GV) {
1030 // Must be bitcast GEP between the malloc and store to initialize
1031 // the global.
1032 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1033 GEPI->eraseFromParent();
1034 continue;
1035 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001036 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001037
Chris Lattner24d3d422006-09-30 23:32:09 +00001038 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnerba98f892007-09-13 18:00:31 +00001039 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner24d3d422006-09-30 23:32:09 +00001040 U->replaceUsesOfWith(Alloc, NL);
1041 }
1042}
1043
James Molloyea31ad32015-11-13 11:05:07 +00001044/// Verify that all uses of V (a load, or a phi of a load) are simple enough to
1045/// perform heap SRA on. This permits GEP's that index through the array and
1046/// struct field, icmps of null, and PHIs.
Gabor Greif5d5db532010-04-01 08:21:08 +00001047static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
Craig Topper71b7b682014-08-21 05:55:13 +00001048 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIs,
1049 SmallPtrSetImpl<const PHINode*> &LoadUsingPHIsPerLoad) {
Chris Lattner56b55382008-12-16 21:24:51 +00001050 // We permit two users of the load: setcc comparing against the null
1051 // pointer, and a getelementptr of a specific form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001052 for (const User *U : V->users()) {
1053 const Instruction *UI = cast<Instruction>(U);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001054
Chris Lattner56b55382008-12-16 21:24:51 +00001055 // Comparison against null is ok.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001056 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001057 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1058 return false;
1059 continue;
1060 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001061
Chris Lattner56b55382008-12-16 21:24:51 +00001062 // getelementptr is also ok, but only a simple form.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001063 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(UI)) {
Chris Lattner56b55382008-12-16 21:24:51 +00001064 // Must index into the array and into the struct.
1065 if (GEPI->getNumOperands() < 3)
1066 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001067
Chris Lattner56b55382008-12-16 21:24:51 +00001068 // Otherwise the GEP is ok.
1069 continue;
1070 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001071
Chandler Carruthcdf47882014-03-09 03:16:01 +00001072 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Blaikie70573dc2014-11-19 07:49:26 +00001073 if (!LoadUsingPHIsPerLoad.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001074 // This means some phi nodes are dependent on each other.
1075 // Avoid infinite looping!
1076 return false;
David Blaikie70573dc2014-11-19 07:49:26 +00001077 if (!LoadUsingPHIs.insert(PN).second)
Evan Cheng83689442009-06-02 00:56:07 +00001078 // If we have already analyzed this PHI, then it is safe.
Chris Lattner56b55382008-12-16 21:24:51 +00001079 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001080
Chris Lattner222ef4c2008-12-17 05:28:49 +00001081 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng83689442009-06-02 00:56:07 +00001082 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1083 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001084 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001085
Chris Lattner56b55382008-12-16 21:24:51 +00001086 continue;
Chris Lattner24d3d422006-09-30 23:32:09 +00001087 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001088
Chris Lattner56b55382008-12-16 21:24:51 +00001089 // Otherwise we don't know what this is, not ok.
1090 return false;
1091 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001092
Chris Lattner56b55382008-12-16 21:24:51 +00001093 return true;
1094}
1095
1096
James Molloyea31ad32015-11-13 11:05:07 +00001097/// If all users of values loaded from GV are simple enough to perform HeapSRA,
1098/// return true.
Gabor Greif5d5db532010-04-01 08:21:08 +00001099static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez5d034492009-09-18 22:35:49 +00001100 Instruction *StoredVal) {
Gabor Greif5d5db532010-04-01 08:21:08 +00001101 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1102 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001103 for (const User *U : GV->users())
1104 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
Evan Cheng83689442009-06-02 00:56:07 +00001105 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1106 LoadUsingPHIsPerLoad))
Chris Lattner56b55382008-12-16 21:24:51 +00001107 return false;
Evan Cheng83689442009-06-02 00:56:07 +00001108 LoadUsingPHIsPerLoad.clear();
1109 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001110
Chris Lattner222ef4c2008-12-17 05:28:49 +00001111 // If we reach here, we know that all uses of the loads and transitive uses
1112 // (through PHI nodes) are simple enough to transform. However, we don't know
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001113 // that all inputs the to the PHI nodes are in the same equivalence sets.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001114 // Check to verify that all operands of the PHIs are either PHIS that can be
1115 // transformed, loads from GV, or MI itself.
Craig Topper46276792014-08-24 23:23:06 +00001116 for (const PHINode *PN : LoadUsingPHIs) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001117 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1118 Value *InVal = PN->getIncomingValue(op);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001119
Chris Lattner222ef4c2008-12-17 05:28:49 +00001120 // PHI of the stored value itself is ok.
Victor Hernandez5d034492009-09-18 22:35:49 +00001121 if (InVal == StoredVal) continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001122
Gabor Greif5d5db532010-04-01 08:21:08 +00001123 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001124 // One of the PHIs in our set is (optimistically) ok.
1125 if (LoadUsingPHIs.count(InPN))
1126 continue;
1127 return false;
1128 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001129
Chris Lattner222ef4c2008-12-17 05:28:49 +00001130 // Load from GV is ok.
Gabor Greif5d5db532010-04-01 08:21:08 +00001131 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattner222ef4c2008-12-17 05:28:49 +00001132 if (LI->getOperand(0) == GV)
1133 continue;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001134
Chris Lattner222ef4c2008-12-17 05:28:49 +00001135 // UNDEF? NULL?
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001136
Chris Lattner222ef4c2008-12-17 05:28:49 +00001137 // Anything else is rejected.
1138 return false;
1139 }
1140 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001141
Chris Lattner24d3d422006-09-30 23:32:09 +00001142 return true;
1143}
1144
Chris Lattner222ef4c2008-12-17 05:28:49 +00001145static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1146 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001147 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattner222ef4c2008-12-17 05:28:49 +00001148 std::vector<Value*> &FieldVals = InsertedScalarizedValues[V];
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001149
Chris Lattner222ef4c2008-12-17 05:28:49 +00001150 if (FieldNo >= FieldVals.size())
1151 FieldVals.resize(FieldNo+1);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001152
Chris Lattner222ef4c2008-12-17 05:28:49 +00001153 // If we already have this value, just reuse the previously scalarized
1154 // version.
1155 if (Value *FieldVal = FieldVals[FieldNo])
1156 return FieldVal;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001157
Chris Lattner222ef4c2008-12-17 05:28:49 +00001158 // Depending on what instruction this is, we have several cases.
1159 Value *Result;
1160 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1161 // This is a scalarized version of the load from the global. Just create
1162 // a new Load of the scalarized global.
1163 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1164 InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001165 PHIsToRewrite),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001166 LI->getName()+".f"+Twine(FieldNo), LI);
David Blaikie741c8f82015-03-14 01:53:18 +00001167 } else {
1168 PHINode *PN = cast<PHINode>(V);
Chris Lattner222ef4c2008-12-17 05:28:49 +00001169 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1170 // field.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001171
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001172 PointerType *PTy = cast<PointerType>(PN->getType());
1173 StructType *ST = cast<StructType>(PTy->getElementType());
1174
1175 unsigned AS = PTy->getAddressSpace();
Jay Foade0938d82011-03-30 11:19:20 +00001176 PHINode *NewPN =
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001177 PHINode::Create(PointerType::get(ST->getElementType(FieldNo), AS),
Jay Foad52131342011-03-30 11:28:46 +00001178 PN->getNumIncomingValues(),
Daniel Dunbar132f7832009-07-30 17:37:43 +00001179 PN->getName()+".f"+Twine(FieldNo), PN);
Jay Foade0938d82011-03-30 11:19:20 +00001180 Result = NewPN;
Chris Lattner222ef4c2008-12-17 05:28:49 +00001181 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
Chris Lattner222ef4c2008-12-17 05:28:49 +00001182 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001183
Chris Lattner222ef4c2008-12-17 05:28:49 +00001184 return FieldVals[FieldNo] = Result;
Chris Lattnerba98f892007-09-13 18:00:31 +00001185}
1186
James Molloyea31ad32015-11-13 11:05:07 +00001187/// Given a load instruction and a value derived from the load, rewrite the
1188/// derived value to use the HeapSRoA'd load.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001189static void RewriteHeapSROALoadUser(Instruction *LoadUser,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001190 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001191 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001192 // If this is a comparison against null, handle it.
1193 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1194 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1195 // If we have a setcc of the loaded pointer, we can use a setcc of any
1196 // field.
Chris Lattner222ef4c2008-12-17 05:28:49 +00001197 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner46b5c642009-11-06 04:27:31 +00001198 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001199
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001200 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001201 Constant::getNullValue(NPtr->getType()),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00001202 SCI->getName());
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001203 SCI->replaceAllUsesWith(New);
1204 SCI->eraseFromParent();
1205 return;
1206 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001207
Chris Lattner222ef4c2008-12-17 05:28:49 +00001208 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnerba98f892007-09-13 18:00:31 +00001209 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1210 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1211 && "Unexpected GEPI!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001212
Chris Lattnerba98f892007-09-13 18:00:31 +00001213 // Load the pointer for this field.
1214 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner222ef4c2008-12-17 05:28:49 +00001215 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner46b5c642009-11-06 04:27:31 +00001216 InsertedScalarizedValues, PHIsToRewrite);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001217
Chris Lattnerba98f892007-09-13 18:00:31 +00001218 // Create the new GEP idx vector.
1219 SmallVector<Value*, 8> GEPIdx;
1220 GEPIdx.push_back(GEPI->getOperand(1));
1221 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001222
David Blaikie22319eb2015-03-14 19:24:04 +00001223 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx,
Gabor Greife9ecc682008-04-06 20:25:17 +00001224 GEPI->getName(), GEPI);
Chris Lattnerba98f892007-09-13 18:00:31 +00001225 GEPI->replaceAllUsesWith(NGEPI);
1226 GEPI->eraseFromParent();
1227 return;
1228 }
Chris Lattner011f91b2007-09-13 21:31:36 +00001229
Chris Lattner222ef4c2008-12-17 05:28:49 +00001230 // Recursively transform the users of PHI nodes. This will lazily create the
1231 // PHIs that are needed for individual elements. Keep track of what PHIs we
1232 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1233 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1234 // already been seen first by another load, so its uses have already been
1235 // processed.
1236 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner5cf753c2011-07-21 06:21:31 +00001237 if (!InsertedScalarizedValues.insert(std::make_pair(PN,
1238 std::vector<Value*>())).second)
1239 return;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001240
Chris Lattner222ef4c2008-12-17 05:28:49 +00001241 // If this is the first time we've seen this PHI, recursively process all
1242 // users.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001243 for (auto UI = PN->user_begin(), E = PN->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001244 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001245 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001246 }
Chris Lattnerf315d4f2007-09-13 17:29:05 +00001247}
1248
James Molloyea31ad32015-11-13 11:05:07 +00001249/// We are performing Heap SRoA on a global. Ptr is a value loaded from the
1250/// global. Eliminate all uses of Ptr, making them use FieldGlobals instead.
1251/// All uses of loaded values satisfy AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001252static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner222ef4c2008-12-17 05:28:49 +00001253 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001254 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001255 for (auto UI = Load->user_begin(), E = Load->user_end(); UI != E;) {
Chris Lattner0cdf5232008-12-17 05:42:08 +00001256 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner46b5c642009-11-06 04:27:31 +00001257 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner0cdf5232008-12-17 05:42:08 +00001258 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001259
Chris Lattner222ef4c2008-12-17 05:28:49 +00001260 if (Load->use_empty()) {
1261 Load->eraseFromParent();
1262 InsertedScalarizedValues.erase(Load);
1263 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001264}
1265
James Molloyea31ad32015-11-13 11:05:07 +00001266/// CI is an allocation of an array of structures. Break it up into multiple
1267/// allocations of arrays of the fields.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001268static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
Mehdi Amini46a43552015-03-04 18:43:29 +00001269 Value *NElems, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001270 const TargetLibraryInfo *TLI) {
David Greene44cb8ad2010-01-05 01:28:05 +00001271 DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI << '\n');
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001272 Type *MAT = getMallocAllocatedType(CI, TLI);
Chris Lattner229907c2011-07-18 04:54:35 +00001273 StructType *STy = cast<StructType>(MAT);
Victor Hernandez5d034492009-09-18 22:35:49 +00001274
1275 // There is guaranteed to be at least one use of the malloc (storing
1276 // it into GV). If there are other uses, change them to be uses of
1277 // the global to simplify later code. This also deletes the store
1278 // into GV.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001279 ReplaceUsesOfMallocWithGlobal(CI, GV);
1280
Victor Hernandez5d034492009-09-18 22:35:49 +00001281 // Okay, at this point, there are no users of the malloc. Insert N
1282 // new mallocs at the same place as CI, and N globals.
1283 std::vector<Value*> FieldGlobals;
1284 std::vector<Value*> FieldMallocs;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001285
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001286 unsigned AS = GV->getType()->getPointerAddressSpace();
Victor Hernandez5d034492009-09-18 22:35:49 +00001287 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
Chris Lattner229907c2011-07-18 04:54:35 +00001288 Type *FieldTy = STy->getElementType(FieldNo);
Matt Arsenaultfcd74012014-04-23 20:36:10 +00001289 PointerType *PFieldTy = PointerType::get(FieldTy, AS);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001290
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001291 GlobalVariable *NGV = new GlobalVariable(
1292 *GV->getParent(), PFieldTy, false, GlobalValue::InternalLinkage,
1293 Constant::getNullValue(PFieldTy), GV->getName() + ".f" + Twine(FieldNo),
1294 nullptr, GV->getThreadLocalMode());
Victor Hernandez5d034492009-09-18 22:35:49 +00001295 FieldGlobals.push_back(NGV);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001296
Mehdi Amini46a43552015-03-04 18:43:29 +00001297 unsigned TypeSize = DL.getTypeAllocSize(FieldTy);
Chris Lattner229907c2011-07-18 04:54:35 +00001298 if (StructType *ST = dyn_cast<StructType>(FieldTy))
Mehdi Amini46a43552015-03-04 18:43:29 +00001299 TypeSize = DL.getStructLayout(ST)->getSizeInBytes();
1300 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
Victor Hernandezf3db9152009-11-07 00:16:28 +00001301 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1302 ConstantInt::get(IntPtrTy, TypeSize),
Craig Topperf40110f2014-04-25 05:29:35 +00001303 NElems, nullptr,
Victor Hernandezf3db9152009-11-07 00:16:28 +00001304 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner0521c092010-02-26 18:23:13 +00001305 FieldMallocs.push_back(NMI);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001306 new StoreInst(NMI, NGV, CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001307 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001308
Victor Hernandez5d034492009-09-18 22:35:49 +00001309 // The tricky aspect of this transformation is handling the case when malloc
1310 // fails. In the original code, malloc failing would set the result pointer
1311 // of malloc to null. In this case, some mallocs could succeed and others
1312 // could fail. As such, we emit code that looks like this:
1313 // F0 = malloc(field0)
1314 // F1 = malloc(field1)
1315 // F2 = malloc(field2)
1316 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1317 // if (F0) { free(F0); F0 = 0; }
1318 // if (F1) { free(F1); F1 = 0; }
1319 // if (F2) { free(F2); F2 = 0; }
1320 // }
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001321 // The malloc can also fail if its argument is too large.
Gabor Greif218f5542010-06-24 14:42:01 +00001322 Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1323 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001324 ConstantZero, "isneg");
Victor Hernandez5d034492009-09-18 22:35:49 +00001325 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandezf3db9152009-11-07 00:16:28 +00001326 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1327 Constant::getNullValue(FieldMallocs[i]->getType()),
1328 "isnull");
Victor Hernandezfcc77b12009-11-10 08:32:25 +00001329 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001330 }
1331
1332 // Split the basic block at the old malloc.
Victor Hernandezf3db9152009-11-07 00:16:28 +00001333 BasicBlock *OrigBB = CI->getParent();
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001334 BasicBlock *ContBB =
1335 OrigBB->splitBasicBlock(CI->getIterator(), "malloc_cont");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001336
Victor Hernandez5d034492009-09-18 22:35:49 +00001337 // Create the block to check the first condition. Put all these blocks at the
1338 // end of the function as they are unlikely to be executed.
Chris Lattner46b5c642009-11-06 04:27:31 +00001339 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1340 "malloc_ret_null",
Victor Hernandez5d034492009-09-18 22:35:49 +00001341 OrigBB->getParent());
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001342
Victor Hernandez5d034492009-09-18 22:35:49 +00001343 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1344 // branch on RunningOr.
1345 OrigBB->getTerminator()->eraseFromParent();
1346 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001347
Victor Hernandez5d034492009-09-18 22:35:49 +00001348 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1349 // pointer, because some may be null while others are not.
1350 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1351 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001352 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001353 Constant::getNullValue(GVVal->getType()));
Chris Lattner46b5c642009-11-06 04:27:31 +00001354 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez5d034492009-09-18 22:35:49 +00001355 OrigBB->getParent());
Chris Lattner46b5c642009-11-06 04:27:31 +00001356 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez5d034492009-09-18 22:35:49 +00001357 OrigBB->getParent());
Victor Hernandeze2971492009-10-24 04:23:03 +00001358 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1359 Cmp, NullPtrBlock);
Victor Hernandez5d034492009-09-18 22:35:49 +00001360
1361 // Fill in FreeBlock.
Victor Hernandeze2971492009-10-24 04:23:03 +00001362 CallInst::CreateFree(GVVal, BI);
Victor Hernandez5d034492009-09-18 22:35:49 +00001363 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1364 FreeBlock);
1365 BranchInst::Create(NextBlock, FreeBlock);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001366
Victor Hernandez5d034492009-09-18 22:35:49 +00001367 NullPtrBlock = NextBlock;
1368 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001369
Victor Hernandez5d034492009-09-18 22:35:49 +00001370 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandezf3db9152009-11-07 00:16:28 +00001371
1372 // CI is no longer needed, remove it.
Victor Hernandez5d034492009-09-18 22:35:49 +00001373 CI->eraseFromParent();
1374
James Molloyea31ad32015-11-13 11:05:07 +00001375 /// As we process loads, if we can't immediately update all uses of the load,
1376 /// keep track of what scalarized loads are inserted for a given load.
Victor Hernandez5d034492009-09-18 22:35:49 +00001377 DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1378 InsertedScalarizedValues[GV] = FieldGlobals;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001379
Victor Hernandez5d034492009-09-18 22:35:49 +00001380 std::vector<std::pair<PHINode*, unsigned> > PHIsToRewrite;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001381
Victor Hernandez5d034492009-09-18 22:35:49 +00001382 // Okay, the malloc site is completely handled. All of the uses of GV are now
1383 // loads, and all uses of those loads are simple. Rewrite them to use loads
1384 // of the per-field globals instead.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001385 for (auto UI = GV->user_begin(), E = GV->user_end(); UI != E;) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001386 Instruction *User = cast<Instruction>(*UI++);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001387
Victor Hernandez5d034492009-09-18 22:35:49 +00001388 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner46b5c642009-11-06 04:27:31 +00001389 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001390 continue;
1391 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001392
Victor Hernandez5d034492009-09-18 22:35:49 +00001393 // Must be a store of null.
1394 StoreInst *SI = cast<StoreInst>(User);
1395 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1396 "Unexpected heap-sra user!");
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001397
Victor Hernandez5d034492009-09-18 22:35:49 +00001398 // Insert a store of null into each global.
1399 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
Chris Lattner229907c2011-07-18 04:54:35 +00001400 PointerType *PT = cast<PointerType>(FieldGlobals[i]->getType());
Victor Hernandez5d034492009-09-18 22:35:49 +00001401 Constant *Null = Constant::getNullValue(PT->getElementType());
1402 new StoreInst(Null, FieldGlobals[i], SI);
1403 }
1404 // Erase the original store.
1405 SI->eraseFromParent();
1406 }
1407
1408 // While we have PHIs that are interesting to rewrite, do it.
1409 while (!PHIsToRewrite.empty()) {
1410 PHINode *PN = PHIsToRewrite.back().first;
1411 unsigned FieldNo = PHIsToRewrite.back().second;
1412 PHIsToRewrite.pop_back();
1413 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1414 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1415
1416 // Add all the incoming values. This can materialize more phis.
1417 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1418 Value *InVal = PN->getIncomingValue(i);
1419 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner46b5c642009-11-06 04:27:31 +00001420 PHIsToRewrite);
Victor Hernandez5d034492009-09-18 22:35:49 +00001421 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1422 }
1423 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001424
Victor Hernandez5d034492009-09-18 22:35:49 +00001425 // Drop all inter-phi links and any loads that made it this far.
1426 for (DenseMap<Value*, std::vector<Value*> >::iterator
1427 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1428 I != E; ++I) {
1429 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1430 PN->dropAllReferences();
1431 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1432 LI->dropAllReferences();
1433 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001434
Victor Hernandez5d034492009-09-18 22:35:49 +00001435 // Delete all the phis and loads now that inter-references are dead.
1436 for (DenseMap<Value*, std::vector<Value*> >::iterator
1437 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1438 I != E; ++I) {
1439 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1440 PN->eraseFromParent();
1441 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1442 LI->eraseFromParent();
1443 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001444
Victor Hernandez5d034492009-09-18 22:35:49 +00001445 // The old global is now dead, remove it.
1446 GV->eraseFromParent();
1447
1448 ++NumHeapSRA;
1449 return cast<GlobalVariable>(FieldGlobals[0]);
1450}
1451
James Molloyea31ad32015-11-13 11:05:07 +00001452/// This function is called when we see a pointer global variable with a single
1453/// value stored it that is a malloc or cast of malloc.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001454static bool tryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV, CallInst *CI,
Chris Lattner229907c2011-07-18 04:54:35 +00001455 Type *AllocTy,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001456 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001457 const DataLayout &DL,
Nick Lewyckycf6aae62012-02-12 01:13:18 +00001458 TargetLibraryInfo *TLI) {
Victor Hernandez5d034492009-09-18 22:35:49 +00001459 // If this is a malloc of an abstract type, don't touch it.
1460 if (!AllocTy->isSized())
1461 return false;
1462
1463 // We can't optimize this global unless all uses of it are *known* to be
1464 // of the malloc value, not of the null initializer value (consider a use
1465 // that compares the global's value against zero to see if the malloc has
1466 // been reached). To do this, we check to see if all uses of the global
1467 // would trap if the global were null: this proves that they must all
1468 // happen after the malloc.
1469 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1470 return false;
1471
1472 // We can't optimize this if the malloc itself is used in a complex way,
1473 // for example, being stored into multiple globals. This allows the
Nick Lewyckybbd11562012-02-05 19:48:37 +00001474 // malloc to be stored into the specified global, loaded icmp'd, and
Victor Hernandez5d034492009-09-18 22:35:49 +00001475 // GEP'd. These are all things we could transform to using the global
1476 // for.
Evan Cheng21b588b2010-04-14 20:52:55 +00001477 SmallPtrSet<const PHINode*, 8> PHIs;
1478 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1479 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001480
1481 // If we have a global that is only initialized with a fixed size malloc,
1482 // transform the program to use global memory instead of malloc'd memory.
1483 // This eliminates dynamic allocation, avoids an indirection accessing the
1484 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez264da322009-10-16 23:12:25 +00001485 // We cannot optimize the malloc if we cannot determine malloc array size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001486 Value *NElems = getMallocArraySize(CI, DL, TLI, true);
Evan Cheng21b588b2010-04-14 20:52:55 +00001487 if (!NElems)
1488 return false;
Victor Hernandez5d034492009-09-18 22:35:49 +00001489
Evan Cheng21b588b2010-04-14 20:52:55 +00001490 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1491 // Restrict this transformation to only working on small allocations
1492 // (2048 bytes currently), as we don't want to introduce a 16M global or
1493 // something.
Mehdi Amini46a43552015-03-04 18:43:29 +00001494 if (NElements->getZExtValue() * DL.getTypeAllocSize(AllocTy) < 2048) {
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001495 OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, DL, TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001496 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001497 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001498
Evan Cheng21b588b2010-04-14 20:52:55 +00001499 // If the allocation is an array of structures, consider transforming this
1500 // into multiple malloc'd arrays, one for each field. This is basically
1501 // SRoA for malloc'd memory.
1502
Nick Lewycky52da72b2012-02-05 19:56:38 +00001503 if (Ordering != NotAtomic)
1504 return false;
1505
Evan Cheng21b588b2010-04-14 20:52:55 +00001506 // If this is an allocation of a fixed size array of structs, analyze as a
1507 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Gabor Greif218f5542010-06-24 14:42:01 +00001508 if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
Chris Lattner229907c2011-07-18 04:54:35 +00001509 if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
Evan Cheng21b588b2010-04-14 20:52:55 +00001510 AllocTy = AT->getElementType();
Gabor Greif218f5542010-06-24 14:42:01 +00001511
Chris Lattner229907c2011-07-18 04:54:35 +00001512 StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
Evan Cheng21b588b2010-04-14 20:52:55 +00001513 if (!AllocSTy)
1514 return false;
1515
1516 // This the structure has an unreasonable number of fields, leave it
1517 // alone.
1518 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1519 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1520
1521 // If this is a fixed size array, transform the Malloc to be an alloc of
1522 // structs. malloc [100 x struct],1 -> malloc struct, 100
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001523 if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001524 Type *IntPtrTy = DL.getIntPtrType(CI->getType());
1525 unsigned TypeSize = DL.getStructLayout(AllocSTy)->getSizeInBytes();
Evan Cheng21b588b2010-04-14 20:52:55 +00001526 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1527 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
1528 Instruction *Malloc = CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy,
1529 AllocSize, NumElements,
Craig Topperf40110f2014-04-25 05:29:35 +00001530 nullptr, CI->getName());
Evan Cheng21b588b2010-04-14 20:52:55 +00001531 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1532 CI->replaceAllUsesWith(Cast);
1533 CI->eraseFromParent();
Nuno Lopes9792d682012-06-22 00:25:01 +00001534 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1535 CI = cast<CallInst>(BCI->getOperand(0));
1536 else
Nuno Lopes0b60ebb2012-06-22 00:29:58 +00001537 CI = cast<CallInst>(Malloc);
Evan Cheng21b588b2010-04-14 20:52:55 +00001538 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001539
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001540 PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, DL, TLI, true), DL,
1541 TLI);
Evan Cheng21b588b2010-04-14 20:52:55 +00001542 return true;
Victor Hernandez5d034492009-09-18 22:35:49 +00001543 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001544
Victor Hernandez5d034492009-09-18 22:35:49 +00001545 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001546}
Victor Hernandez5d034492009-09-18 22:35:49 +00001547
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001548// Try to optimize globals based on the knowledge that only one value (besides
1549// its initializer) is ever stored to the global.
1550static bool optimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Nick Lewycky52da72b2012-02-05 19:56:38 +00001551 AtomicOrdering Ordering,
Mehdi Amini46a43552015-03-04 18:43:29 +00001552 const DataLayout &DL,
Rafael Espindolaaeff8a92014-02-24 23:12:18 +00001553 TargetLibraryInfo *TLI) {
Chris Lattner1c731fa2008-12-15 21:20:32 +00001554 // Ignore no-op GEPs and bitcasts.
1555 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner09a52722004-10-09 21:48:45 +00001556
Chris Lattnere42eb312004-10-10 23:14:11 +00001557 // If we are dealing with a pointer global that is initialized to null and
1558 // only has one (non-null) value stored into it, then we can optimize any
1559 // users of the loaded value (often calls and loads) that would trap if the
1560 // value was null.
Duncan Sands19d0b472010-02-16 11:11:14 +00001561 if (GV->getInitializer()->getType()->isPointerTy() &&
Chris Lattner09a52722004-10-09 21:48:45 +00001562 GV->getInitializer()->isNullValue()) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001563 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1564 if (GV->getInitializer()->getType() != SOVC->getType())
Chris Lattner1a1acc22011-05-22 07:15:13 +00001565 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001566
Chris Lattnere42eb312004-10-10 23:14:11 +00001567 // Optimize away any trapping uses of the loaded value.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001568 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, DL, TLI))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001569 return true;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001570 } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1571 Type *MallocType = getMallocAllocatedType(CI, TLI);
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001572 if (MallocType && tryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1573 Ordering, DL, TLI))
Victor Hernandezf3db9152009-11-07 00:16:28 +00001574 return true;
Chris Lattnere42eb312004-10-10 23:14:11 +00001575 }
Chris Lattner09a52722004-10-09 21:48:45 +00001576 }
Chris Lattner004e2502004-10-11 05:54:41 +00001577
Chris Lattner09a52722004-10-09 21:48:45 +00001578 return false;
1579}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001580
James Molloyea31ad32015-11-13 11:05:07 +00001581/// At this point, we have learned that the only two values ever stored into GV
1582/// are its initializer and OtherVal. See if we can shrink the global into a
1583/// boolean and select between the two values whenever it is used. This exposes
1584/// the values to other scalar optimizations.
Lang Hames459b5dc2014-03-23 04:22:31 +00001585static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Chris Lattner229907c2011-07-18 04:54:35 +00001586 Type *GVElType = GV->getType()->getElementType();
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001587
Lang Hames459b5dc2014-03-23 04:22:31 +00001588 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1589 // an FP value, pointer or vector, don't do this optimization because a select
1590 // between them is very expensive and unlikely to lead to later
1591 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1592 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner46b5c642009-11-06 04:27:31 +00001593 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001594 GVElType->isFloatingPointTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001595 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner20bbac32008-01-14 01:17:44 +00001596 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001597
Chris Lattner20bbac32008-01-14 01:17:44 +00001598 // Walk the use list of the global seeing if all the uses are load or store.
1599 // If there is anything else, bail out.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001600 for (User *U : GV->users())
Gabor Greifa75ed762010-07-12 14:13:15 +00001601 if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
Chris Lattner20bbac32008-01-14 01:17:44 +00001602 return false;
Gabor Greifa75ed762010-07-12 14:13:15 +00001603
James Molloyef607a22015-10-28 14:30:53 +00001604 DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV << "\n");
Lang Hames459b5dc2014-03-23 04:22:31 +00001605
1606 // Create the new global, initializing it to false.
1607 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1608 false,
1609 GlobalValue::InternalLinkage,
1610 ConstantInt::getFalse(GV->getContext()),
1611 GV->getName()+".b",
1612 GV->getThreadLocalMode(),
1613 GV->getType()->getAddressSpace());
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00001614 GV->getParent()->getGlobalList().insert(GV->getIterator(), NewGV);
Lang Hames459b5dc2014-03-23 04:22:31 +00001615
Chris Lattner40e4cec2004-12-12 05:53:50 +00001616 Constant *InitVal = GV->getInitializer();
Chris Lattner46b5c642009-11-06 04:27:31 +00001617 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Lang Hames459b5dc2014-03-23 04:22:31 +00001618 "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001619
Lang Hames459b5dc2014-03-23 04:22:31 +00001620 // If initialized to zero and storing one into the global, we can use a cast
1621 // instead of a select to synthesize the desired value.
1622 bool IsOneZero = false;
1623 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1624 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001625
Lang Hames459b5dc2014-03-23 04:22:31 +00001626 while (!GV->use_empty()) {
1627 Instruction *UI = cast<Instruction>(GV->user_back());
1628 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1629 // Change the store into a boolean store.
1630 bool StoringOther = SI->getOperand(0) == OtherVal;
1631 // Only do this if we weren't storing a loaded value.
1632 Value *StoreVal;
1633 if (StoringOther || SI->getOperand(0) == InitVal) {
1634 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1635 StoringOther);
Bill Wendling7297b862013-02-13 23:00:51 +00001636 } else {
Lang Hames459b5dc2014-03-23 04:22:31 +00001637 // Otherwise, we are storing a previously loaded copy. To do this,
1638 // change the copy from copying the original value to just copying the
1639 // bool.
1640 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1641
1642 // If we've already replaced the input, StoredVal will be a cast or
1643 // select instruction. If not, it will be a load of the original
1644 // global.
1645 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1646 assert(LI->getOperand(0) == GV && "Not a copy!");
1647 // Insert a new load, to preserve the saved value.
1648 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1649 LI->getOrdering(), LI->getSynchScope(), LI);
1650 } else {
1651 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1652 "This is not a form that we understand!");
1653 StoreVal = StoredVal->getOperand(0);
1654 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1655 }
Chris Lattner745196a2004-12-12 19:34:41 +00001656 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001657 new StoreInst(StoreVal, NewGV, false, 0,
1658 SI->getOrdering(), SI->getSynchScope(), SI);
1659 } else {
1660 // Change the load into a load of bool then a select.
1661 LoadInst *LI = cast<LoadInst>(UI);
1662 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1663 LI->getOrdering(), LI->getSynchScope(), LI);
1664 Value *NSI;
1665 if (IsOneZero)
1666 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1667 else
1668 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1669 NSI->takeName(LI);
1670 LI->replaceAllUsesWith(NSI);
Devang Patelfc507a12009-03-06 01:39:36 +00001671 }
Lang Hames459b5dc2014-03-23 04:22:31 +00001672 UI->eraseFromParent();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001673 }
1674
Lang Hames459b5dc2014-03-23 04:22:31 +00001675 // Retain the name of the old global variable. People who are debugging their
1676 // programs may expect these variables to be named the same.
1677 NewGV->takeName(GV);
1678 GV->eraseFromParent();
Chris Lattner20bbac32008-01-14 01:17:44 +00001679 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001680}
1681
1682
James Molloyea31ad32015-11-13 11:05:07 +00001683/// Analyze the specified global variable and optimize it if possible. If we
1684/// make a change, return true.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001685bool GlobalOpt::processGlobal(GlobalVariable *GV) {
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001686 // Do more involved optimizations if the global is internal.
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001687 GV->removeDeadConstantUsers();
1688
1689 if (GV->use_empty()) {
James Molloyef607a22015-10-28 14:30:53 +00001690 DEBUG(dbgs() << "GLOBAL DEAD: " << *GV << "\n");
Chris Lattner8e71c6a2004-10-16 18:09:00 +00001691 GV->eraseFromParent();
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001692 ++NumDeleted;
1693 return true;
1694 }
1695
Rafael Espindola1821c6c2012-06-15 18:00:24 +00001696 if (!GV->hasLocalLinkage())
1697 return false;
1698
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001699 GlobalStatus GS;
1700
Rafael Espindola3d7fc252013-10-21 17:14:55 +00001701 if (GlobalStatus::analyzeGlobal(GV, GS))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001702 return false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00001703
Rafael Espindola045a78f2013-10-17 18:18:52 +00001704 if (!GS.IsCompared && !GV->hasUnnamedAddr()) {
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001705 GV->setUnnamedAddr(true);
1706 NumUnnamed++;
1707 }
1708
1709 if (GV->isConstant() || !GV->hasInitializer())
1710 return false;
1711
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001712 return processInternalGlobal(GV, GS);
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001713}
1714
James Molloy9c7d4d82015-11-15 14:21:37 +00001715bool GlobalOpt::isPointerValueDeadOnEntryToFunction(const Function *F, GlobalValue *GV) {
1716 // Find all uses of GV. We expect them all to be in F, and if we can't
1717 // identify any of the uses we bail out.
1718 //
1719 // On each of these uses, identify if the memory that GV points to is
1720 // used/required/live at the start of the function. If it is not, for example
1721 // if the first thing the function does is store to the GV, the GV can
1722 // possibly be demoted.
1723 //
1724 // We don't do an exhaustive search for memory operations - simply look
1725 // through bitcasts as they're quite common and benign.
1726 const DataLayout &DL = GV->getParent()->getDataLayout();
1727 SmallVector<LoadInst *, 4> Loads;
1728 SmallVector<StoreInst *, 4> Stores;
1729 for (auto *U : GV->users()) {
1730 if (Operator::getOpcode(U) == Instruction::BitCast) {
1731 for (auto *UU : U->users()) {
1732 if (auto *LI = dyn_cast<LoadInst>(UU))
1733 Loads.push_back(LI);
1734 else if (auto *SI = dyn_cast<StoreInst>(UU))
1735 Stores.push_back(SI);
1736 else
1737 return false;
1738 }
1739 continue;
1740 }
1741
1742 Instruction *I = dyn_cast<Instruction>(U);
1743 if (!I)
1744 return false;
1745 assert(I->getParent()->getParent() == F);
1746
1747 if (auto *LI = dyn_cast<LoadInst>(I))
1748 Loads.push_back(LI);
1749 else if (auto *SI = dyn_cast<StoreInst>(I))
1750 Stores.push_back(SI);
1751 else
1752 return false;
1753 }
1754
1755 // We have identified all uses of GV into loads and stores. Now check if all
1756 // of them are known not to depend on the value of the global at the function
1757 // entry point. We do this by ensuring that every load is dominated by at
1758 // least one store.
1759 auto &DT = getAnalysis<DominatorTreeWrapperPass>(*const_cast<Function *>(F))
1760 .getDomTree();
1761
James Molloyd4d23572015-11-16 10:16:22 +00001762 // The below check is quadratic. Check we're not going to do too many tests.
1763 // FIXME: Even though this will always have worst-case quadratic time, we
1764 // could put effort into minimizing the average time by putting stores that
1765 // have been shown to dominate at least one load at the beginning of the
1766 // Stores array, making subsequent dominance checks more likely to succeed
1767 // early.
1768 //
1769 // The threshold here is fairly large because global->local demotion is a
1770 // very powerful optimization should it fire.
1771 const unsigned Threshold = 100;
1772 if (Loads.size() * Stores.size() > Threshold)
1773 return false;
1774
James Molloy9c7d4d82015-11-15 14:21:37 +00001775 for (auto *L : Loads) {
1776 auto *LTy = L->getType();
1777 if (!std::any_of(Stores.begin(), Stores.end(), [&](StoreInst *S) {
1778 auto *STy = S->getValueOperand()->getType();
1779 // The load is only dominated by the store if DomTree says so
1780 // and the number of bits loaded in L is less than or equal to
1781 // the number of bits stored in S.
1782 return DT.dominates(S, L) &&
1783 DL.getTypeStoreSize(LTy) <= DL.getTypeStoreSize(STy);
1784 }))
1785 return false;
1786 }
1787 // All loads have known dependences inside F, so the global can be localized.
1788 return true;
1789}
1790
James Molloy1d695a02015-11-19 18:04:33 +00001791/// C may have non-instruction users. Can all of those users be turned into
1792/// instructions?
1793static bool allNonInstructionUsersCanBeMadeInstructions(Constant *C) {
1794 // We don't do this exhaustively. The most common pattern that we really need
1795 // to care about is a constant GEP or constant bitcast - so just looking
1796 // through one single ConstantExpr.
1797 //
1798 // The set of constants that this function returns true for must be able to be
1799 // handled by makeAllConstantUsesInstructions.
1800 for (auto *U : C->users()) {
1801 if (isa<Instruction>(U))
1802 continue;
1803 if (!isa<ConstantExpr>(U))
1804 // Non instruction, non-constantexpr user; cannot convert this.
1805 return false;
1806 for (auto *UU : U->users())
1807 if (!isa<Instruction>(UU))
1808 // A constantexpr used by another constant. We don't try and recurse any
1809 // further but just bail out at this point.
1810 return false;
1811 }
1812
1813 return true;
1814}
1815
1816/// C may have non-instruction users, and
1817/// allNonInstructionUsersCanBeMadeInstructions has returned true. Convert the
1818/// non-instruction users to instructions.
1819static void makeAllConstantUsesInstructions(Constant *C) {
1820 SmallVector<ConstantExpr*,4> Users;
1821 for (auto *U : C->users()) {
1822 if (isa<ConstantExpr>(U))
1823 Users.push_back(cast<ConstantExpr>(U));
1824 else
1825 // We should never get here; allNonInstructionUsersCanBeMadeInstructions
1826 // should not have returned true for C.
1827 assert(
1828 isa<Instruction>(U) &&
1829 "Can't transform non-constantexpr non-instruction to instruction!");
1830 }
1831
1832 SmallVector<Value*,4> UUsers;
1833 for (auto *U : Users) {
1834 UUsers.clear();
1835 for (auto *UU : U->users())
1836 UUsers.push_back(UU);
1837 for (auto *UU : UUsers) {
1838 Instruction *UI = cast<Instruction>(UU);
1839 Instruction *NewU = U->getAsInstruction();
1840 NewU->insertBefore(UI);
1841 UI->replaceUsesOfWith(U, NewU);
1842 }
1843 U->dropAllReferences();
1844 }
1845}
1846
James Molloyea31ad32015-11-13 11:05:07 +00001847/// Analyze the specified global variable and optimize
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001848/// it if possible. If we make a change, return true.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001849bool GlobalOpt::processInternalGlobal(GlobalVariable *GV,
Rafael Espindolafc355bc2011-01-19 16:32:21 +00001850 const GlobalStatus &GS) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001851 auto &DL = GV->getParent()->getDataLayout();
James Molloy9c7d4d82015-11-15 14:21:37 +00001852 // If this is a first class global and has only one accessing function and
1853 // this function is non-recursive, we replace the global with a local alloca
1854 // in this function.
Alexey Samsonova1944e62013-10-07 19:03:24 +00001855 //
Alp Tokerf907b892013-12-05 05:44:44 +00001856 // NOTE: It doesn't make sense to promote non-single-value types since we
Alexey Samsonova1944e62013-10-07 19:03:24 +00001857 // are just replacing static memory to stack memory.
1858 //
1859 // If the global is in different address space, don't bring it to stack.
1860 if (!GS.HasMultipleAccessingFunctions &&
James Molloy1d695a02015-11-19 18:04:33 +00001861 GS.AccessingFunction &&
Alexey Samsonova1944e62013-10-07 19:03:24 +00001862 GV->getType()->getElementType()->isSingleValueType() &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001863 GV->getType()->getAddressSpace() == 0 &&
1864 !GV->isExternallyInitialized() &&
James Molloy1d695a02015-11-19 18:04:33 +00001865 allNonInstructionUsersCanBeMadeInstructions(GV) &&
James Molloy9c7d4d82015-11-15 14:21:37 +00001866 GS.AccessingFunction->doesNotRecurse() &&
1867 isPointerValueDeadOnEntryToFunction(GS.AccessingFunction, GV) ) {
James Molloy33e73452015-11-13 11:05:13 +00001868 DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV << "\n");
Alexey Samsonova1944e62013-10-07 19:03:24 +00001869 Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1870 ->getEntryBlock().begin());
1871 Type *ElemTy = GV->getType()->getElementType();
1872 // FIXME: Pass Global's alignment when globals have alignment
Craig Topperf40110f2014-04-25 05:29:35 +00001873 AllocaInst *Alloca = new AllocaInst(ElemTy, nullptr,
1874 GV->getName(), &FirstI);
Alexey Samsonova1944e62013-10-07 19:03:24 +00001875 if (!isa<UndefValue>(GV->getInitializer()))
1876 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1877
James Molloy1d695a02015-11-19 18:04:33 +00001878 makeAllConstantUsesInstructions(GV);
1879
Alexey Samsonova1944e62013-10-07 19:03:24 +00001880 GV->replaceAllUsesWith(Alloca);
1881 GV->eraseFromParent();
1882 ++NumLocalized;
1883 return true;
1884 }
1885
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001886 // If the global is never loaded (but may be stored to), it is dead.
1887 // Delete it now.
Rafael Espindola045a78f2013-10-17 18:18:52 +00001888 if (!GS.IsLoaded) {
James Molloy33e73452015-11-13 11:05:13 +00001889 DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001890
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001891 bool Changed;
1892 if (isLeakCheckerRoot(GV)) {
1893 // Delete any constant stores to the global.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +00001894 Changed = CleanupPointerRootUsers(GV, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001895 } else {
1896 // Delete any stores we can find to the global. We may not be able to
1897 // make it completely dead though.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001898 Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001899 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001900
1901 // If the global is dead now, delete it.
1902 if (GV->use_empty()) {
1903 GV->eraseFromParent();
1904 ++NumDeleted;
1905 Changed = true;
1906 }
1907 return Changed;
1908
Rafael Espindola045a78f2013-10-17 18:18:52 +00001909 } else if (GS.StoredType <= GlobalStatus::InitializerStored) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00001910 DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001911 GV->setConstant(true);
1912
1913 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001914 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001915
1916 // If the global is dead now, just nuke it.
1917 if (GV->use_empty()) {
1918 DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
1919 << "all users and delete global!\n");
1920 GV->eraseFromParent();
1921 ++NumDeleted;
1922 }
1923
1924 ++NumMarked;
1925 return true;
1926 } else if (!GV->getInitializer()->getType()->isSingleValueType()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001927 const DataLayout &DL = GV->getParent()->getDataLayout();
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001928 if (SRAGlobal(GV, DL))
Mehdi Amini46a43552015-03-04 18:43:29 +00001929 return true;
Oliver Stannard939724c2015-10-12 13:20:52 +00001930 } else if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001931 // If the initial value for the global was an undef value, and if only
1932 // one other value was stored into it, we can just change the
1933 // initializer to be the stored value, then delete all stores to the
1934 // global. This allows us to mark it constant.
1935 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1936 if (isa<UndefValue>(GV->getInitializer())) {
1937 // Change the initial value here.
1938 GV->setInitializer(SOVConstant);
1939
1940 // Clean up any obviously simplifiable users now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001941 CleanupConstantGlobalUsers(GV, GV->getInitializer(), DL, TLI);
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001942
1943 if (GV->use_empty()) {
1944 DEBUG(dbgs() << " *** Substituting initializer allowed us to "
Nick Lewyckyfaa9c3b02012-07-24 07:21:08 +00001945 << "simplify all users and delete global!\n");
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001946 GV->eraseFromParent();
1947 ++NumDeleted;
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001948 }
1949 ++NumSubstitute;
1950 return true;
1951 }
1952
1953 // Try to optimize globals based on the knowledge that only one value
1954 // (besides its initializer) is ever stored to the global.
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00001955 if (optimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, DL, TLI))
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001956 return true;
1957
Lang Hames459b5dc2014-03-23 04:22:31 +00001958 // Otherwise, if the global was not a boolean, we can shrink it to be a
1959 // boolean.
Eli Friedman33d37002013-09-09 22:00:13 +00001960 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue)) {
1961 if (GS.Ordering == NotAtomic) {
Lang Hames459b5dc2014-03-23 04:22:31 +00001962 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Eli Friedman33d37002013-09-09 22:00:13 +00001963 ++NumShrunkToBool;
1964 return true;
1965 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001966 }
Eli Friedman33d37002013-09-09 22:00:13 +00001967 }
Rafael Espindolaecd5b9a2011-01-18 04:36:06 +00001968 }
1969
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001970 return false;
1971}
1972
James Molloyea31ad32015-11-13 11:05:07 +00001973/// Walk all of the direct calls of the specified function, changing them to
1974/// FastCC.
Chris Lattnera4c80222005-05-08 22:18:06 +00001975static void ChangeCalleesToFastCall(Function *F) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001976 for (User *U : F->users()) {
1977 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00001978 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001979 CallSite CS(cast<Instruction>(U));
1980 CS.setCallingConv(CallingConv::Fast);
Chris Lattnera4c80222005-05-08 22:18:06 +00001981 }
1982}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001983
Bill Wendlinge94d8432012-12-07 23:16:57 +00001984static AttributeSet StripNest(LLVMContext &C, const AttributeSet &Attrs) {
Chris Lattner8a923e72008-03-12 17:45:29 +00001985 for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
Bill Wendling57625a42013-01-25 23:09:36 +00001986 unsigned Index = Attrs.getSlotIndex(i);
1987 if (!Attrs.getSlotAttributes(i).hasAttribute(Index, Attribute::Nest))
Duncan Sands85fab3a2008-02-18 17:32:13 +00001988 continue;
1989
Duncan Sands85fab3a2008-02-18 17:32:13 +00001990 // There can be only one.
Bill Wendling57625a42013-01-25 23:09:36 +00001991 return Attrs.removeAttribute(C, Index, Attribute::Nest);
Duncan Sands573b3f82008-02-16 20:56:04 +00001992 }
1993
1994 return Attrs;
1995}
1996
1997static void RemoveNestAttribute(Function *F) {
Bill Wendling85a64c22012-10-14 06:39:53 +00001998 F->setAttributes(StripNest(F->getContext(), F->getAttributes()));
Chandler Carruthcdf47882014-03-09 03:16:01 +00001999 for (User *U : F->users()) {
2000 if (isa<BlockAddress>(U))
Jay Foadca0c4992012-05-12 08:30:16 +00002001 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002002 CallSite CS(cast<Instruction>(U));
2003 CS.setAttributes(StripNest(F->getContext(), CS.getAttributes()));
Duncan Sands573b3f82008-02-16 20:56:04 +00002004 }
2005}
2006
Reid Kleckner22869372014-02-26 19:57:30 +00002007/// Return true if this is a calling convention that we'd like to change. The
2008/// idea here is that we don't want to mess with the convention if the user
2009/// explicitly requested something with performance implications like coldcc,
2010/// GHC, or anyregcc.
2011static bool isProfitableToMakeFastCC(Function *F) {
2012 CallingConv::ID CC = F->getCallingConv();
2013 // FIXME: Is it worth transforming x86_stdcallcc and x86_fastcallcc?
2014 return CC == CallingConv::C || CC == CallingConv::X86_ThisCall;
2015}
2016
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002017bool GlobalOpt::OptimizeFunctions(Module &M) {
2018 bool Changed = false;
2019 // Optimize functions.
2020 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002021 Function *F = &*FI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002022 // Functions without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002023 if (!F->hasName() && !F->isDeclaration() && !F->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002024 F->setLinkage(GlobalValue::InternalLinkage);
David Majnemer1b3b70e2014-10-08 07:23:31 +00002025
2026 const Comdat *C = F->getComdat();
2027 bool inComdat = C && NotDiscardableComdats.count(C);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002028 F->removeDeadConstantUsers();
David Majnemer1b3b70e2014-10-08 07:23:31 +00002029 if ((!inComdat || F->hasLocalLinkage()) && F->isDefTriviallyDead()) {
Chris Lattnerb5d9c8c2009-11-01 19:03:42 +00002030 F->eraseFromParent();
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002031 Changed = true;
2032 ++NumFnDeleted;
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002033 continue;
2034 }
2035 if (!F->hasLocalLinkage())
2036 continue;
2037 if (isProfitableToMakeFastCC(F) && !F->isVarArg() &&
2038 !F->hasAddressTaken()) {
2039 // If this function has a calling convention worth changing, is not a
2040 // varargs function, and is only called directly, promote it to use the
2041 // Fast calling convention.
2042 F->setCallingConv(CallingConv::Fast);
2043 ChangeCalleesToFastCall(F);
2044 ++NumFastCallFns;
2045 Changed = true;
2046 }
Duncan Sands573b3f82008-02-16 20:56:04 +00002047
Rafael Espindola9f0bebc2015-12-22 19:26:18 +00002048 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2049 !F->hasAddressTaken()) {
2050 // The function is not used by a trampoline intrinsic, so it is safe
2051 // to remove the 'nest' attribute.
2052 RemoveNestAttribute(F);
2053 ++NumNestRemoved;
2054 Changed = true;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002055 }
2056 }
2057 return Changed;
2058}
2059
2060bool GlobalOpt::OptimizeGlobalVars(Module &M) {
2061 bool Changed = false;
David Majnemerdad0a642014-06-27 18:19:56 +00002062
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002063 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2064 GVI != E; ) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002065 GlobalVariable *GV = &*GVI++;
Duncan Sandsed722832009-03-06 10:21:56 +00002066 // Global variables without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002067 if (!GV->hasName() && !GV->isDeclaration() && !GV->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002068 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman580b80d2009-11-23 16:22:21 +00002069 // Simplify the initializer.
2070 if (GV->hasInitializer())
2071 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GV->getInitializer())) {
Mehdi Amini46a43552015-03-04 18:43:29 +00002072 auto &DL = M.getDataLayout();
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002073 Constant *New = ConstantFoldConstantExpression(CE, DL, TLI);
Dan Gohman580b80d2009-11-23 16:22:21 +00002074 if (New && New != CE)
2075 GV->setInitializer(New);
2076 }
Rafael Espindolafc355bc2011-01-19 16:32:21 +00002077
David Majnemerdad0a642014-06-27 18:19:56 +00002078 if (GV->isDiscardableIfUnused()) {
2079 if (const Comdat *C = GV->getComdat())
David Majnemer1b3b70e2014-10-08 07:23:31 +00002080 if (NotDiscardableComdats.count(C) && !GV->hasLocalLinkage())
David Majnemerdad0a642014-06-27 18:19:56 +00002081 continue;
Rafael Espindolae4ed0e52015-12-22 19:16:50 +00002082 Changed |= processGlobal(GV);
David Majnemerdad0a642014-06-27 18:19:56 +00002083 }
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002084 }
2085 return Changed;
2086}
2087
Jakub Staszak9525a772012-12-06 21:57:16 +00002088static inline bool
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002089isSimpleEnoughValueToCommit(Constant *C,
Mehdi Amini46a43552015-03-04 18:43:29 +00002090 SmallPtrSetImpl<Constant *> &SimpleConstants,
2091 const DataLayout &DL);
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002092
James Molloyea31ad32015-11-13 11:05:07 +00002093/// Return true if the specified constant can be handled by the code generator.
2094/// We don't want to generate something like:
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002095/// void *X = &X/42;
2096/// because the code generator doesn't have a relocation that can handle that.
2097///
2098/// This function should be called if C was not found (but just got inserted)
2099/// in SimpleConstants to avoid having to rescan the same constants all the
2100/// time.
Mehdi Amini46a43552015-03-04 18:43:29 +00002101static bool
2102isSimpleEnoughValueToCommitHelper(Constant *C,
2103 SmallPtrSetImpl<Constant *> &SimpleConstants,
2104 const DataLayout &DL) {
David Majnemer6098b2f2014-06-26 03:02:19 +00002105 // Simple global addresses are supported, do not allow dllimport or
2106 // thread-local globals.
David Majnemer23fc9af2014-06-24 06:53:45 +00002107 if (auto *GV = dyn_cast<GlobalValue>(C))
David Majnemer6098b2f2014-06-26 03:02:19 +00002108 return !GV->hasDLLImportStorageClass() && !GV->isThreadLocal();
David Majnemer23fc9af2014-06-24 06:53:45 +00002109
2110 // Simple integer, undef, constant aggregate zero, etc are all supported.
2111 if (C->getNumOperands() == 0 || isa<BlockAddress>(C))
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002112 return true;
Jakub Staszak9525a772012-12-06 21:57:16 +00002113
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002114 // Aggregate values are safe if all their elements are.
2115 if (isa<ConstantArray>(C) || isa<ConstantStruct>(C) ||
2116 isa<ConstantVector>(C)) {
Pete Cooper125ad172015-06-25 20:51:38 +00002117 for (Value *Op : C->operands())
2118 if (!isSimpleEnoughValueToCommit(cast<Constant>(Op), SimpleConstants, DL))
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002119 return false;
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002120 return true;
2121 }
Jakub Staszak9525a772012-12-06 21:57:16 +00002122
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002123 // We don't know exactly what relocations are allowed in constant expressions,
2124 // so we allow &global+constantoffset, which is safe and uniformly supported
2125 // across targets.
2126 ConstantExpr *CE = cast<ConstantExpr>(C);
2127 switch (CE->getOpcode()) {
2128 case Instruction::BitCast:
Eli Friedman55fa49f32012-01-05 23:03:32 +00002129 // Bitcast is fine if the casted value is fine.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002130 return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, DL);
Eli Friedman55fa49f32012-01-05 23:03:32 +00002131
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002132 case Instruction::IntToPtr:
2133 case Instruction::PtrToInt:
Eli Friedman55fa49f32012-01-05 23:03:32 +00002134 // int <=> ptr is fine if the int type is the same size as the
2135 // pointer type.
Mehdi Amini46a43552015-03-04 18:43:29 +00002136 if (DL.getTypeSizeInBits(CE->getType()) !=
2137 DL.getTypeSizeInBits(CE->getOperand(0)->getType()))
Eli Friedman55fa49f32012-01-05 23:03:32 +00002138 return false;
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002139 return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, DL);
Jakub Staszak9525a772012-12-06 21:57:16 +00002140
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002141 // GEP is fine if it is simple + constant offset.
2142 case Instruction::GetElementPtr:
2143 for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
2144 if (!isa<ConstantInt>(CE->getOperand(i)))
2145 return false;
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002146 return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, DL);
Jakub Staszak9525a772012-12-06 21:57:16 +00002147
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002148 case Instruction::Add:
2149 // We allow simple+cst.
2150 if (!isa<ConstantInt>(CE->getOperand(1)))
2151 return false;
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002152 return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, DL);
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002153 }
2154 return false;
2155}
2156
Jakub Staszak9525a772012-12-06 21:57:16 +00002157static inline bool
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002158isSimpleEnoughValueToCommit(Constant *C,
Mehdi Amini46a43552015-03-04 18:43:29 +00002159 SmallPtrSetImpl<Constant *> &SimpleConstants,
2160 const DataLayout &DL) {
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002161 // If we already checked this constant, we win.
David Blaikie70573dc2014-11-19 07:49:26 +00002162 if (!SimpleConstants.insert(C).second)
2163 return true;
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002164 // Check the constant.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002165 return isSimpleEnoughValueToCommitHelper(C, SimpleConstants, DL);
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002166}
2167
2168
James Molloyea31ad32015-11-13 11:05:07 +00002169/// Return true if this constant is simple enough for us to understand. In
2170/// particular, if it is a cast to anything other than from one pointer type to
2171/// another pointer type, we punt. We basically just support direct accesses to
2172/// globals and GEP's of globals. This should be kept up to date with
2173/// CommitValueTo.
Chris Lattner46b5c642009-11-06 04:27:31 +00002174static bool isSimpleEnoughPointerToCommit(Constant *C) {
Dan Gohman82e74752009-09-07 22:42:05 +00002175 // Conservatively, avoid aggregate types. This is because we don't
2176 // want to worry about them partially overlapping other stores.
2177 if (!cast<PointerType>(C->getType())->getElementType()->isSingleValueType())
2178 return false;
2179
Dan Gohmanf7f3fb12009-09-07 22:31:26 +00002180 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
David Majnemer23fc9af2014-06-24 06:53:45 +00002181 // Do not allow weak/*_odr/linkonce linkage or external globals.
Mikhail Glushenkov2072db22010-10-19 16:47:23 +00002182 return GV->hasUniqueInitializer();
Dan Gohmanf7f3fb12009-09-07 22:31:26 +00002183
Owen Anderson3e2f6cf2011-01-14 22:31:13 +00002184 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Chris Lattner46af55e2005-09-26 06:52:44 +00002185 // Handle a constantexpr gep.
2186 if (CE->getOpcode() == Instruction::GetElementPtr &&
Dan Gohmanbeee35a2009-09-07 22:40:13 +00002187 isa<GlobalVariable>(CE->getOperand(0)) &&
2188 cast<GEPOperator>(CE)->isInBounds()) {
Chris Lattner46af55e2005-09-26 06:52:44 +00002189 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Mikhail Glushenkov2072db22010-10-19 16:47:23 +00002190 // Do not allow weak/*_odr/linkonce/dllimport/dllexport linkage or
Dan Gohmanf7f3fb12009-09-07 22:31:26 +00002191 // external globals.
Mikhail Glushenkov2072db22010-10-19 16:47:23 +00002192 if (!GV->hasUniqueInitializer())
Dan Gohmanf7f3fb12009-09-07 22:31:26 +00002193 return false;
Dan Gohman161429f2009-09-07 22:44:55 +00002194
Dan Gohman161429f2009-09-07 22:44:55 +00002195 // The first index must be zero.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002196 ConstantInt *CI = dyn_cast<ConstantInt>(*std::next(CE->op_begin()));
Dan Gohman161429f2009-09-07 22:44:55 +00002197 if (!CI || !CI->isZero()) return false;
Dan Gohman161429f2009-09-07 22:44:55 +00002198
2199 // The remaining indices must be compile-time known integers within the
Dan Gohman7190d482009-09-10 23:37:55 +00002200 // notional bounds of the corresponding static array types.
2201 if (!CE->isGEPWithNoNotionalOverIndexing())
2202 return false;
Dan Gohman161429f2009-09-07 22:44:55 +00002203
Dan Gohmane525d9d2009-10-05 16:36:26 +00002204 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
Jakub Staszak9525a772012-12-06 21:57:16 +00002205
Owen Anderson9eb7cb482011-01-14 22:19:20 +00002206 // A constantexpr bitcast from a pointer to another pointer is a no-op,
2207 // and we know how to evaluate it by moving the bitcast from the pointer
2208 // operand to the value operand.
2209 } else if (CE->getOpcode() == Instruction::BitCast &&
Chris Lattner8b4952f2011-01-16 02:05:10 +00002210 isa<GlobalVariable>(CE->getOperand(0))) {
Owen Anderson9eb7cb482011-01-14 22:19:20 +00002211 // Do not allow weak/*_odr/linkonce/dllimport/dllexport linkage or
2212 // external globals.
Chris Lattner8b4952f2011-01-16 02:05:10 +00002213 return cast<GlobalVariable>(CE->getOperand(0))->hasUniqueInitializer();
Chris Lattner46af55e2005-09-26 06:52:44 +00002214 }
Owen Anderson3e2f6cf2011-01-14 22:31:13 +00002215 }
Jakub Staszak9525a772012-12-06 21:57:16 +00002216
Chris Lattner99e23fa2005-09-26 04:44:35 +00002217 return false;
2218}
2219
James Molloyea31ad32015-11-13 11:05:07 +00002220/// Evaluate a piece of a constantexpr store into a global initializer. This
2221/// returns 'Init' modified to reflect 'Val' stored into it. At this point, the
2222/// GEP operands of Addr [0, OpNo) have been stepped into.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002223static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2224 ConstantExpr *Addr, unsigned OpNo) {
2225 // Base case of the recursion.
2226 if (OpNo == Addr->getNumOperands()) {
2227 assert(Val->getType() == Init->getType() && "Type mismatch!");
2228 return Val;
2229 }
2230
2231 SmallVector<Constant*, 32> Elts;
2232 if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2233 // Break up the constant into its elements.
2234 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2235 Elts.push_back(Init->getAggregateElement(i));
2236
2237 // Replace the element that we are supposed to.
2238 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2239 unsigned Idx = CU->getZExtValue();
2240 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2241 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2242
2243 // Return the modified struct.
2244 return ConstantStruct::get(STy, Elts);
2245 }
2246
2247 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2248 SequentialType *InitTy = cast<SequentialType>(Init->getType());
2249
2250 uint64_t NumElts;
2251 if (ArrayType *ATy = dyn_cast<ArrayType>(InitTy))
2252 NumElts = ATy->getNumElements();
2253 else
2254 NumElts = InitTy->getVectorNumElements();
2255
2256 // Break up the array into elements.
2257 for (uint64_t i = 0, e = NumElts; i != e; ++i)
2258 Elts.push_back(Init->getAggregateElement(i));
2259
2260 assert(CI->getZExtValue() < NumElts);
2261 Elts[CI->getZExtValue()] =
2262 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2263
2264 if (Init->getType()->isArrayTy())
2265 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2266 return ConstantVector::get(Elts);
2267}
2268
James Molloyea31ad32015-11-13 11:05:07 +00002269/// We have decided that Addr (which satisfies the predicate
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002270/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2271static void CommitValueTo(Constant *Val, Constant *Addr) {
2272 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2273 assert(GV->hasInitializer());
2274 GV->setInitializer(Val);
2275 return;
2276 }
2277
2278 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2279 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2280 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2281}
2282
Nick Lewycky60829a582012-02-20 03:25:59 +00002283namespace {
2284
James Molloyea31ad32015-11-13 11:05:07 +00002285/// This class evaluates LLVM IR, producing the Constant representing each SSA
2286/// instruction. Changes to global variables are stored in a mapping that can
2287/// be iterated over after the evaluation is complete. Once an evaluation call
2288/// fails, the evaluation object should not be reused.
Nick Lewycky60829a582012-02-20 03:25:59 +00002289class Evaluator {
Nick Lewycky73be5e32012-02-19 23:26:27 +00002290public:
Mehdi Amini46a43552015-03-04 18:43:29 +00002291 Evaluator(const DataLayout &DL, const TargetLibraryInfo *TLI)
2292 : DL(DL), TLI(TLI) {
Benjamin Kramer64425fe2014-05-03 15:50:37 +00002293 ValueStack.emplace_back();
Nick Lewycky73be5e32012-02-19 23:26:27 +00002294 }
2295
Nick Lewycky60829a582012-02-20 03:25:59 +00002296 ~Evaluator() {
David Blaikiebc442202014-04-21 20:49:36 +00002297 for (auto &Tmp : AllocaTmps)
Nick Lewycky73be5e32012-02-19 23:26:27 +00002298 // If there are still users of the alloca, the program is doing something
2299 // silly, e.g. storing the address of the alloca somewhere and using it
2300 // later. Since this is undefined, we'll just make it be null.
2301 if (!Tmp->use_empty())
2302 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
Nick Lewycky73be5e32012-02-19 23:26:27 +00002303 }
2304
James Molloyea31ad32015-11-13 11:05:07 +00002305 /// Evaluate a call to function F, returning true if successful, false if we
2306 /// can't evaluate it. ActualArgs contains the formal arguments for the
2307 /// function.
Nick Lewycky73be5e32012-02-19 23:26:27 +00002308 bool EvaluateFunction(Function *F, Constant *&RetVal,
2309 const SmallVectorImpl<Constant*> &ActualArgs);
2310
James Molloyea31ad32015-11-13 11:05:07 +00002311 /// Evaluate all instructions in block BB, returning true if successful, false
2312 /// if we can't evaluate it. NewBB returns the next BB that control flows
2313 /// into, or null upon return.
Nick Lewycky73be5e32012-02-19 23:26:27 +00002314 bool EvaluateBlock(BasicBlock::iterator CurInst, BasicBlock *&NextBB);
2315
2316 Constant *getVal(Value *V) {
2317 if (Constant *CV = dyn_cast<Constant>(V)) return CV;
Benjamin Kramer64425fe2014-05-03 15:50:37 +00002318 Constant *R = ValueStack.back().lookup(V);
Nick Lewycky73be5e32012-02-19 23:26:27 +00002319 assert(R && "Reference to an uncomputed value!");
2320 return R;
2321 }
2322
2323 void setVal(Value *V, Constant *C) {
Benjamin Kramer64425fe2014-05-03 15:50:37 +00002324 ValueStack.back()[V] = C;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002325 }
2326
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002327 const DenseMap<Constant*, Constant*> &getMutatedMemory() const {
2328 return MutatedMemory;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002329 }
2330
Craig Topper71b7b682014-08-21 05:55:13 +00002331 const SmallPtrSetImpl<GlobalVariable*> &getInvariants() const {
Nick Lewycky73be5e32012-02-19 23:26:27 +00002332 return Invariants;
2333 }
2334
2335private:
2336 Constant *ComputeLoadResult(Constant *P);
2337
James Molloyea31ad32015-11-13 11:05:07 +00002338 /// As we compute SSA register values, we store their contents here. The back
2339 /// of the deque contains the current function and the stack contains the
2340 /// values in the calling frames.
Benjamin Kramer64425fe2014-05-03 15:50:37 +00002341 std::deque<DenseMap<Value*, Constant*>> ValueStack;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002342
James Molloyea31ad32015-11-13 11:05:07 +00002343 /// This is used to detect recursion. In pathological situations we could hit
2344 /// exponential behavior, but at least there is nothing unbounded.
Nick Lewycky73be5e32012-02-19 23:26:27 +00002345 SmallVector<Function*, 4> CallStack;
2346
James Molloyea31ad32015-11-13 11:05:07 +00002347 /// For each store we execute, we update this map. Loads check this to get
2348 /// the most up-to-date value. If evaluation is successful, this state is
2349 /// committed to the process.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002350 DenseMap<Constant*, Constant*> MutatedMemory;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002351
James Molloyea31ad32015-11-13 11:05:07 +00002352 /// To 'execute' an alloca, we create a temporary global variable to represent
2353 /// its body. This vector is needed so we can delete the temporary globals
2354 /// when we are done.
David Blaikiebc442202014-04-21 20:49:36 +00002355 SmallVector<std::unique_ptr<GlobalVariable>, 32> AllocaTmps;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002356
James Molloyea31ad32015-11-13 11:05:07 +00002357 /// These global variables have been marked invariant by the static
2358 /// constructor.
Nick Lewycky73be5e32012-02-19 23:26:27 +00002359 SmallPtrSet<GlobalVariable*, 8> Invariants;
2360
James Molloyea31ad32015-11-13 11:05:07 +00002361 /// These are constants we have checked and know to be simple enough to live
2362 /// in a static initializer of a global.
Nick Lewycky73be5e32012-02-19 23:26:27 +00002363 SmallPtrSet<Constant*, 8> SimpleConstants;
2364
Mehdi Amini46a43552015-03-04 18:43:29 +00002365 const DataLayout &DL;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002366 const TargetLibraryInfo *TLI;
2367};
2368
Nick Lewycky60829a582012-02-20 03:25:59 +00002369} // anonymous namespace
2370
James Molloyea31ad32015-11-13 11:05:07 +00002371/// Return the value that would be computed by a load from P after the stores
2372/// reflected by 'memory' have been performed. If we can't decide, return null.
Nick Lewycky60829a582012-02-20 03:25:59 +00002373Constant *Evaluator::ComputeLoadResult(Constant *P) {
Chris Lattner4b05c322005-09-26 05:15:37 +00002374 // If this memory location has been recently stored, use the stored value: it
2375 // is the most up-to-date.
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002376 DenseMap<Constant*, Constant*>::const_iterator I = MutatedMemory.find(P);
2377 if (I != MutatedMemory.end()) return I->second;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002378
Chris Lattner4b05c322005-09-26 05:15:37 +00002379 // Access it.
2380 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
Dan Gohman5d5bc6d2009-08-19 18:20:44 +00002381 if (GV->hasDefinitiveInitializer())
Chris Lattner4b05c322005-09-26 05:15:37 +00002382 return GV->getInitializer();
Craig Topperf40110f2014-04-25 05:29:35 +00002383 return nullptr;
Chris Lattner4b05c322005-09-26 05:15:37 +00002384 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002385
Chris Lattner46af55e2005-09-26 06:52:44 +00002386 // Handle a constantexpr getelementptr.
2387 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
2388 if (CE->getOpcode() == Instruction::GetElementPtr &&
2389 isa<GlobalVariable>(CE->getOperand(0))) {
2390 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Dan Gohman5d5bc6d2009-08-19 18:20:44 +00002391 if (GV->hasDefinitiveInitializer())
Dan Gohmane525d9d2009-10-05 16:36:26 +00002392 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
Chris Lattner46af55e2005-09-26 06:52:44 +00002393 }
2394
Craig Topperf40110f2014-04-25 05:29:35 +00002395 return nullptr; // don't know how to evaluate.
Chris Lattner4b05c322005-09-26 05:15:37 +00002396}
2397
James Molloyea31ad32015-11-13 11:05:07 +00002398/// Evaluate all instructions in block BB, returning true if successful, false
2399/// if we can't evaluate it. NewBB returns the next BB that control flows into,
2400/// or null upon return.
Nick Lewycky60829a582012-02-20 03:25:59 +00002401bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst,
2402 BasicBlock *&NextBB) {
Chris Lattner99e23fa2005-09-26 04:44:35 +00002403 // This is the main evaluation loop.
2404 while (1) {
Craig Topperf40110f2014-04-25 05:29:35 +00002405 Constant *InstResult = nullptr;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002406
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002407 DEBUG(dbgs() << "Evaluating Instruction: " << *CurInst << "\n");
2408
Chris Lattner99e23fa2005-09-26 04:44:35 +00002409 if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002410 if (!SI->isSimple()) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002411 DEBUG(dbgs() << "Store is not simple! Can not evaluate.\n");
2412 return false; // no volatile/atomic accesses.
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002413 }
Nick Lewycky73be5e32012-02-19 23:26:27 +00002414 Constant *Ptr = getVal(SI->getOperand(1));
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002415 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002416 DEBUG(dbgs() << "Folding constant ptr expression: " << *Ptr);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002417 Ptr = ConstantFoldConstantExpression(CE, DL, TLI);
Michael Gottesman2a654272013-01-11 23:08:52 +00002418 DEBUG(dbgs() << "; To: " << *Ptr << "\n");
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002419 }
2420 if (!isSimpleEnoughPointerToCommit(Ptr)) {
Chris Lattner99e23fa2005-09-26 04:44:35 +00002421 // If this is too complex for us to commit, reject it.
Michael Gottesman2a654272013-01-11 23:08:52 +00002422 DEBUG(dbgs() << "Pointer is too complex for us to evaluate store.");
Chris Lattner65a3a092005-09-27 04:45:34 +00002423 return false;
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002424 }
Jakub Staszak9525a772012-12-06 21:57:16 +00002425
Nick Lewycky73be5e32012-02-19 23:26:27 +00002426 Constant *Val = getVal(SI->getOperand(0));
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002427
2428 // If this might be too difficult for the backend to handle (e.g. the addr
2429 // of one global variable divided by another) then we can't commit it.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002430 if (!isSimpleEnoughValueToCommit(Val, SimpleConstants, DL)) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002431 DEBUG(dbgs() << "Store value is too complex to evaluate store. " << *Val
2432 << "\n");
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002433 return false;
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002434 }
Jakub Staszak9525a772012-12-06 21:57:16 +00002435
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002436 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
Owen Anderson9eb7cb482011-01-14 22:19:20 +00002437 if (CE->getOpcode() == Instruction::BitCast) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002438 DEBUG(dbgs() << "Attempting to resolve bitcast on constant ptr.\n");
Owen Anderson9eb7cb482011-01-14 22:19:20 +00002439 // If we're evaluating a store through a bitcast, then we need
2440 // to pull the bitcast off the pointer type and push it onto the
2441 // stored value.
Chris Lattner8b4952f2011-01-16 02:05:10 +00002442 Ptr = CE->getOperand(0);
Jakub Staszak9525a772012-12-06 21:57:16 +00002443
Nick Lewycky239fdf02012-02-06 08:24:44 +00002444 Type *NewTy = cast<PointerType>(Ptr->getType())->getElementType();
Jakub Staszak9525a772012-12-06 21:57:16 +00002445
Owen Anderson4e54efd2011-01-16 04:33:33 +00002446 // In order to push the bitcast onto the stored value, a bitcast
2447 // from NewTy to Val's type must be legal. If it's not, we can try
2448 // introspecting NewTy to find a legal conversion.
2449 while (!Val->getType()->canLosslesslyBitCastTo(NewTy)) {
2450 // If NewTy is a struct, we can convert the pointer to the struct
2451 // into a pointer to its first member.
2452 // FIXME: This could be extended to support arrays as well.
Chris Lattner229907c2011-07-18 04:54:35 +00002453 if (StructType *STy = dyn_cast<StructType>(NewTy)) {
Owen Anderson4e54efd2011-01-16 04:33:33 +00002454 NewTy = STy->getTypeAtIndex(0U);
2455
Nick Lewycky239fdf02012-02-06 08:24:44 +00002456 IntegerType *IdxTy = IntegerType::get(NewTy->getContext(), 32);
Owen Anderson4e54efd2011-01-16 04:33:33 +00002457 Constant *IdxZero = ConstantInt::get(IdxTy, 0, false);
2458 Constant * const IdxList[] = {IdxZero, IdxZero};
2459
David Blaikie4a2e73b2015-04-02 18:55:32 +00002460 Ptr = ConstantExpr::getGetElementPtr(nullptr, Ptr, IdxList);
Nick Lewycky9d0da182012-02-21 22:08:06 +00002461 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002462 Ptr = ConstantFoldConstantExpression(CE, DL, TLI);
Nick Lewycky9d0da182012-02-21 22:08:06 +00002463
Owen Anderson4e54efd2011-01-16 04:33:33 +00002464 // If we can't improve the situation by introspecting NewTy,
2465 // we have to give up.
2466 } else {
Michael Gottesman2a654272013-01-11 23:08:52 +00002467 DEBUG(dbgs() << "Failed to bitcast constant ptr, can not "
2468 "evaluate.\n");
Nick Lewycky239fdf02012-02-06 08:24:44 +00002469 return false;
Owen Anderson4e54efd2011-01-16 04:33:33 +00002470 }
Owen Anderson9eb7cb482011-01-14 22:19:20 +00002471 }
Jakub Staszak9525a772012-12-06 21:57:16 +00002472
Owen Anderson4e54efd2011-01-16 04:33:33 +00002473 // If we found compatible types, go ahead and push the bitcast
2474 // onto the stored value.
Owen Anderson9eb7cb482011-01-14 22:19:20 +00002475 Val = ConstantExpr::getBitCast(Val, NewTy);
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002476
Michael Gottesman2a654272013-01-11 23:08:52 +00002477 DEBUG(dbgs() << "Evaluated bitcast: " << *Val << "\n");
Owen Anderson9eb7cb482011-01-14 22:19:20 +00002478 }
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002479 }
Jakub Staszak9525a772012-12-06 21:57:16 +00002480
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002481 MutatedMemory[Ptr] = Val;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002482 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
Owen Anderson487375e2009-07-29 18:55:55 +00002483 InstResult = ConstantExpr::get(BO->getOpcode(),
Nick Lewycky73be5e32012-02-19 23:26:27 +00002484 getVal(BO->getOperand(0)),
2485 getVal(BO->getOperand(1)));
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002486 DEBUG(dbgs() << "Found a BinaryOperator! Simplifying: " << *InstResult
Michael Gottesman2a654272013-01-11 23:08:52 +00002487 << "\n");
Reid Spencer266e42b2006-12-23 06:05:41 +00002488 } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
Owen Anderson487375e2009-07-29 18:55:55 +00002489 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
Nick Lewycky73be5e32012-02-19 23:26:27 +00002490 getVal(CI->getOperand(0)),
2491 getVal(CI->getOperand(1)));
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002492 DEBUG(dbgs() << "Found a CmpInst! Simplifying: " << *InstResult
Michael Gottesman2a654272013-01-11 23:08:52 +00002493 << "\n");
Chris Lattner99e23fa2005-09-26 04:44:35 +00002494 } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
Owen Anderson487375e2009-07-29 18:55:55 +00002495 InstResult = ConstantExpr::getCast(CI->getOpcode(),
Nick Lewycky73be5e32012-02-19 23:26:27 +00002496 getVal(CI->getOperand(0)),
Chris Lattner99e23fa2005-09-26 04:44:35 +00002497 CI->getType());
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002498 DEBUG(dbgs() << "Found a Cast! Simplifying: " << *InstResult
Michael Gottesman2a654272013-01-11 23:08:52 +00002499 << "\n");
Chris Lattner99e23fa2005-09-26 04:44:35 +00002500 } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
Nick Lewycky73be5e32012-02-19 23:26:27 +00002501 InstResult = ConstantExpr::getSelect(getVal(SI->getOperand(0)),
2502 getVal(SI->getOperand(1)),
2503 getVal(SI->getOperand(2)));
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002504 DEBUG(dbgs() << "Found a Select! Simplifying: " << *InstResult
Michael Gottesman2a654272013-01-11 23:08:52 +00002505 << "\n");
David Majnemerfe8c7542014-08-08 05:50:43 +00002506 } else if (auto *EVI = dyn_cast<ExtractValueInst>(CurInst)) {
2507 InstResult = ConstantExpr::getExtractValue(
2508 getVal(EVI->getAggregateOperand()), EVI->getIndices());
2509 DEBUG(dbgs() << "Found an ExtractValueInst! Simplifying: " << *InstResult
2510 << "\n");
2511 } else if (auto *IVI = dyn_cast<InsertValueInst>(CurInst)) {
2512 InstResult = ConstantExpr::getInsertValue(
2513 getVal(IVI->getAggregateOperand()),
2514 getVal(IVI->getInsertedValueOperand()), IVI->getIndices());
2515 DEBUG(dbgs() << "Found an InsertValueInst! Simplifying: " << *InstResult
2516 << "\n");
Chris Lattner4b05c322005-09-26 05:15:37 +00002517 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
Nick Lewycky73be5e32012-02-19 23:26:27 +00002518 Constant *P = getVal(GEP->getOperand(0));
Chris Lattnerf96f4a82007-01-31 04:40:53 +00002519 SmallVector<Constant*, 8> GEPOps;
Gabor Greif3a9fba52008-05-29 01:59:18 +00002520 for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end();
2521 i != e; ++i)
Nick Lewycky73be5e32012-02-19 23:26:27 +00002522 GEPOps.push_back(getVal(*i));
Jay Foad2f5fc8c2011-07-21 15:15:37 +00002523 InstResult =
David Blaikie4a2e73b2015-04-02 18:55:32 +00002524 ConstantExpr::getGetElementPtr(GEP->getSourceElementType(), P, GEPOps,
2525 cast<GEPOperator>(GEP)->isInBounds());
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002526 DEBUG(dbgs() << "Found a GEP! Simplifying: " << *InstResult
Michael Gottesman2a654272013-01-11 23:08:52 +00002527 << "\n");
Chris Lattner4b05c322005-09-26 05:15:37 +00002528 } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002529
2530 if (!LI->isSimple()) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002531 DEBUG(dbgs() << "Found a Load! Not a simple load, can not evaluate.\n");
2532 return false; // no volatile/atomic accesses.
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002533 }
2534
Nick Lewycky9d0da182012-02-21 22:08:06 +00002535 Constant *Ptr = getVal(LI->getOperand(0));
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002536 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002537 Ptr = ConstantFoldConstantExpression(CE, DL, TLI);
Michael Gottesman2a654272013-01-11 23:08:52 +00002538 DEBUG(dbgs() << "Found a constant pointer expression, constant "
2539 "folding: " << *Ptr << "\n");
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002540 }
Nick Lewycky9d0da182012-02-21 22:08:06 +00002541 InstResult = ComputeLoadResult(Ptr);
Craig Topperf40110f2014-04-25 05:29:35 +00002542 if (!InstResult) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002543 DEBUG(dbgs() << "Failed to compute load result. Can not evaluate load."
2544 "\n");
2545 return false; // Could not evaluate load.
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002546 }
2547
2548 DEBUG(dbgs() << "Evaluated load: " << *InstResult << "\n");
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002549 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002550 if (AI->isArrayAllocation()) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002551 DEBUG(dbgs() << "Found an array alloca. Can not evaluate.\n");
2552 return false; // Cannot handle array allocs.
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002553 }
Chris Lattner229907c2011-07-18 04:54:35 +00002554 Type *Ty = AI->getType()->getElementType();
David Blaikiebc442202014-04-21 20:49:36 +00002555 AllocaTmps.push_back(
2556 make_unique<GlobalVariable>(Ty, false, GlobalValue::InternalLinkage,
2557 UndefValue::get(Ty), AI->getName()));
2558 InstResult = AllocaTmps.back().get();
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002559 DEBUG(dbgs() << "Found an alloca. Result: " << *InstResult << "\n");
Nick Lewyckyc1572e42012-02-12 05:09:35 +00002560 } else if (isa<CallInst>(CurInst) || isa<InvokeInst>(CurInst)) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002561 CallSite CS(&*CurInst);
Devang Patel04852aa2009-03-09 23:04:12 +00002562
2563 // Debug info can safely be ignored here.
Nick Lewyckyc1572e42012-02-12 05:09:35 +00002564 if (isa<DbgInfoIntrinsic>(CS.getInstruction())) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002565 DEBUG(dbgs() << "Ignoring debug info.\n");
Devang Patel04852aa2009-03-09 23:04:12 +00002566 ++CurInst;
2567 continue;
2568 }
2569
Chris Lattnerfd2e13b2006-07-07 21:37:01 +00002570 // Cannot handle inline asm.
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002571 if (isa<InlineAsm>(CS.getCalledValue())) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002572 DEBUG(dbgs() << "Found inline asm, can not evaluate.\n");
2573 return false;
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002574 }
Chris Lattnerfd2e13b2006-07-07 21:37:01 +00002575
Nick Lewycky68f9f9d2012-02-17 06:59:21 +00002576 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction())) {
2577 if (MemSetInst *MSI = dyn_cast<MemSetInst>(II)) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002578 if (MSI->isVolatile()) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002579 DEBUG(dbgs() << "Can not optimize a volatile memset " <<
2580 "intrinsic.\n");
2581 return false;
2582 }
Nick Lewycky73be5e32012-02-19 23:26:27 +00002583 Constant *Ptr = getVal(MSI->getDest());
2584 Constant *Val = getVal(MSI->getValue());
2585 Constant *DestVal = ComputeLoadResult(getVal(Ptr));
Nick Lewycky68f9f9d2012-02-17 06:59:21 +00002586 if (Val->isNullValue() && DestVal && DestVal->isNullValue()) {
2587 // This memset is a no-op.
Michael Gottesman2a654272013-01-11 23:08:52 +00002588 DEBUG(dbgs() << "Ignoring no-op memset.\n");
Nick Lewycky68f9f9d2012-02-17 06:59:21 +00002589 ++CurInst;
2590 continue;
2591 }
2592 }
2593
2594 if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
2595 II->getIntrinsicID() == Intrinsic::lifetime_end) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002596 DEBUG(dbgs() << "Ignoring lifetime intrinsic.\n");
Nick Lewycky68f9f9d2012-02-17 06:59:21 +00002597 ++CurInst;
2598 continue;
2599 }
2600
2601 if (II->getIntrinsicID() == Intrinsic::invariant_start) {
2602 // We don't insert an entry into Values, as it doesn't have a
2603 // meaningful return value.
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002604 if (!II->use_empty()) {
Alp Tokerf907b892013-12-05 05:44:44 +00002605 DEBUG(dbgs() << "Found unused invariant_start. Can't evaluate.\n");
Nick Lewycky68f9f9d2012-02-17 06:59:21 +00002606 return false;
Michael Gottesman2a654272013-01-11 23:08:52 +00002607 }
Nick Lewycky68f9f9d2012-02-17 06:59:21 +00002608 ConstantInt *Size = cast<ConstantInt>(II->getArgOperand(0));
Nick Lewycky519561f2012-02-20 23:32:26 +00002609 Value *PtrArg = getVal(II->getArgOperand(1));
2610 Value *Ptr = PtrArg->stripPointerCasts();
2611 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Ptr)) {
2612 Type *ElemTy = cast<PointerType>(GV->getType())->getElementType();
Mehdi Amini46a43552015-03-04 18:43:29 +00002613 if (!Size->isAllOnesValue() &&
Nick Lewycky519561f2012-02-20 23:32:26 +00002614 Size->getValue().getLimitedValue() >=
Mehdi Amini46a43552015-03-04 18:43:29 +00002615 DL.getTypeStoreSize(ElemTy)) {
Nick Lewycky68f9f9d2012-02-17 06:59:21 +00002616 Invariants.insert(GV);
Michael Gottesman2a654272013-01-11 23:08:52 +00002617 DEBUG(dbgs() << "Found a global var that is an invariant: " << *GV
2618 << "\n");
2619 } else {
2620 DEBUG(dbgs() << "Found a global var, but can not treat it as an "
2621 "invariant.\n");
2622 }
Nick Lewycky68f9f9d2012-02-17 06:59:21 +00002623 }
2624 // Continue even if we do nothing.
Nick Lewyckya3bb03e2011-05-29 18:41:56 +00002625 ++CurInst;
2626 continue;
Piotr Padlewski4e7f7522015-08-25 01:34:15 +00002627 } else if (II->getIntrinsicID() == Intrinsic::assume) {
2628 DEBUG(dbgs() << "Skipping assume intrinsic.\n");
2629 ++CurInst;
2630 continue;
Nick Lewyckya3bb03e2011-05-29 18:41:56 +00002631 }
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002632
Michael Gottesman2a654272013-01-11 23:08:52 +00002633 DEBUG(dbgs() << "Unknown intrinsic. Can not evaluate.\n");
Nick Lewyckya3bb03e2011-05-29 18:41:56 +00002634 return false;
2635 }
2636
Chris Lattner65a3a092005-09-27 04:45:34 +00002637 // Resolve function pointers.
Nick Lewycky73be5e32012-02-19 23:26:27 +00002638 Function *Callee = dyn_cast<Function>(getVal(CS.getCalledValue()));
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002639 if (!Callee || Callee->mayBeOverridden()) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002640 DEBUG(dbgs() << "Can not resolve function pointer.\n");
Nick Lewyckyc1572e42012-02-12 05:09:35 +00002641 return false; // Cannot resolve.
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002642 }
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002643
Duncan Sandsc4ce58d82009-08-17 14:33:27 +00002644 SmallVector<Constant*, 8> Formals;
Nick Lewyckyc1572e42012-02-12 05:09:35 +00002645 for (User::op_iterator i = CS.arg_begin(), e = CS.arg_end(); i != e; ++i)
Nick Lewycky73be5e32012-02-19 23:26:27 +00002646 Formals.push_back(getVal(*i));
Duncan Sandsc4ce58d82009-08-17 14:33:27 +00002647
Reid Spencer5301e7c2007-01-30 20:08:39 +00002648 if (Callee->isDeclaration()) {
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002649 // If this is a function we can constant fold, do it.
Chad Rosiere6de63d2011-12-01 21:29:16 +00002650 if (Constant *C = ConstantFoldCall(Callee, Formals, TLI)) {
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002651 InstResult = C;
Michael Gottesman2a654272013-01-11 23:08:52 +00002652 DEBUG(dbgs() << "Constant folded function call. Result: " <<
2653 *InstResult << "\n");
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002654 } else {
Michael Gottesman2a654272013-01-11 23:08:52 +00002655 DEBUG(dbgs() << "Can not constant fold function call.\n");
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002656 return false;
2657 }
2658 } else {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002659 if (Callee->getFunctionType()->isVarArg()) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002660 DEBUG(dbgs() << "Can not constant fold vararg function call.\n");
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002661 return false;
Michael Gottesman2a654272013-01-11 23:08:52 +00002662 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002663
Craig Topperf40110f2014-04-25 05:29:35 +00002664 Constant *RetVal = nullptr;
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002665 // Execute the call, if successful, use the return value.
Benjamin Kramer64425fe2014-05-03 15:50:37 +00002666 ValueStack.emplace_back();
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002667 if (!EvaluateFunction(Callee, RetVal, Formals)) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002668 DEBUG(dbgs() << "Failed to evaluate function.\n");
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002669 return false;
Michael Gottesman2a654272013-01-11 23:08:52 +00002670 }
David Blaikiebc442202014-04-21 20:49:36 +00002671 ValueStack.pop_back();
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002672 InstResult = RetVal;
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002673
Craig Topperf40110f2014-04-25 05:29:35 +00002674 if (InstResult) {
Michael Gottesman2a654272013-01-11 23:08:52 +00002675 DEBUG(dbgs() << "Successfully evaluated function. Result: " <<
2676 InstResult << "\n\n");
2677 } else {
2678 DEBUG(dbgs() << "Successfully evaluated function. Result: 0\n\n");
2679 }
Chris Lattner3d27e7f2005-09-27 05:02:43 +00002680 }
Reid Spencerde46e482006-11-02 20:25:50 +00002681 } else if (isa<TerminatorInst>(CurInst)) {
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002682 DEBUG(dbgs() << "Found a terminator instruction.\n");
2683
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00002684 if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
2685 if (BI->isUnconditional()) {
Nick Lewycky239fdf02012-02-06 08:24:44 +00002686 NextBB = BI->getSuccessor(0);
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00002687 } else {
Zhou Sheng75b871f2007-01-11 12:24:14 +00002688 ConstantInt *Cond =
Nick Lewycky73be5e32012-02-19 23:26:27 +00002689 dyn_cast<ConstantInt>(getVal(BI->getCondition()));
Chris Lattner15649082007-01-12 18:30:11 +00002690 if (!Cond) return false; // Cannot determine.
Zhou Sheng75b871f2007-01-11 12:24:14 +00002691
Nick Lewycky239fdf02012-02-06 08:24:44 +00002692 NextBB = BI->getSuccessor(!Cond->getZExtValue());
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00002693 }
2694 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
2695 ConstantInt *Val =
Nick Lewycky73be5e32012-02-19 23:26:27 +00002696 dyn_cast<ConstantInt>(getVal(SI->getCondition()));
Chris Lattner65a3a092005-09-27 04:45:34 +00002697 if (!Val) return false; // Cannot determine.
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00002698 NextBB = SI->findCaseValue(Val).getCaseSuccessor();
Chris Lattner31274882009-10-29 05:51:50 +00002699 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(CurInst)) {
Nick Lewycky73be5e32012-02-19 23:26:27 +00002700 Value *Val = getVal(IBI->getAddress())->stripPointerCasts();
Chris Lattner31274882009-10-29 05:51:50 +00002701 if (BlockAddress *BA = dyn_cast<BlockAddress>(Val))
Nick Lewycky239fdf02012-02-06 08:24:44 +00002702 NextBB = BA->getBasicBlock();
Chris Lattneraa99c942009-11-01 01:27:45 +00002703 else
2704 return false; // Cannot determine.
Nick Lewycky239fdf02012-02-06 08:24:44 +00002705 } else if (isa<ReturnInst>(CurInst)) {
Craig Topperf40110f2014-04-25 05:29:35 +00002706 NextBB = nullptr;
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00002707 } else {
Bill Wendlingf891bf82011-07-31 06:30:59 +00002708 // invoke, unwind, resume, unreachable.
Michael Gottesman2a654272013-01-11 23:08:52 +00002709 DEBUG(dbgs() << "Can not handle terminator.");
Chris Lattner65a3a092005-09-27 04:45:34 +00002710 return false; // Cannot handle this terminator.
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00002711 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002712
Nick Lewycky239fdf02012-02-06 08:24:44 +00002713 // We succeeded at evaluating this block!
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002714 DEBUG(dbgs() << "Successfully evaluated block.\n");
Nick Lewycky239fdf02012-02-06 08:24:44 +00002715 return true;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002716 } else {
Chris Lattner99e23fa2005-09-26 04:44:35 +00002717 // Did not know how to evaluate this!
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002718 DEBUG(dbgs() << "Failed to evaluate block due to unhandled instruction."
Michael Gottesman2a654272013-01-11 23:08:52 +00002719 "\n");
Chris Lattner65a3a092005-09-27 04:45:34 +00002720 return false;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002721 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002722
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002723 if (!CurInst->use_empty()) {
2724 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(InstResult))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002725 InstResult = ConstantFoldConstantExpression(CE, DL, TLI);
Jakub Staszak9525a772012-12-06 21:57:16 +00002726
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002727 setVal(&*CurInst, InstResult);
Chris Lattner0d71c4f2010-12-07 04:33:29 +00002728 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002729
Dan Gohmaneab06fa2012-03-13 18:01:37 +00002730 // If we just processed an invoke, we finished evaluating the block.
2731 if (InvokeInst *II = dyn_cast<InvokeInst>(CurInst)) {
2732 NextBB = II->getNormalDest();
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002733 DEBUG(dbgs() << "Found an invoke instruction. Finished Block.\n\n");
Dan Gohmaneab06fa2012-03-13 18:01:37 +00002734 return true;
2735 }
2736
Chris Lattner99e23fa2005-09-26 04:44:35 +00002737 // Advance program counter.
2738 ++CurInst;
2739 }
Chris Lattnerda1889b2005-09-27 04:27:01 +00002740}
2741
James Molloyea31ad32015-11-13 11:05:07 +00002742/// Evaluate a call to function F, returning true if successful, false if we
2743/// can't evaluate it. ActualArgs contains the formal arguments for the
2744/// function.
Nick Lewycky60829a582012-02-20 03:25:59 +00002745bool Evaluator::EvaluateFunction(Function *F, Constant *&RetVal,
2746 const SmallVectorImpl<Constant*> &ActualArgs) {
Nick Lewycky239fdf02012-02-06 08:24:44 +00002747 // Check to see if this function is already executing (recursion). If so,
2748 // bail out. TODO: we might want to accept limited recursion.
2749 if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
2750 return false;
2751
2752 CallStack.push_back(F);
2753
Nick Lewycky239fdf02012-02-06 08:24:44 +00002754 // Initialize arguments to the incoming values specified.
2755 unsigned ArgNo = 0;
2756 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
2757 ++AI, ++ArgNo)
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002758 setVal(&*AI, ActualArgs[ArgNo]);
Nick Lewycky239fdf02012-02-06 08:24:44 +00002759
2760 // ExecutedBlocks - We only handle non-looping, non-recursive code. As such,
2761 // we can only evaluate any one basic block at most once. This set keeps
2762 // track of what we have executed so we can detect recursive cases etc.
2763 SmallPtrSet<BasicBlock*, 32> ExecutedBlocks;
2764
2765 // CurBB - The current basic block we're evaluating.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00002766 BasicBlock *CurBB = &F->front();
Nick Lewycky239fdf02012-02-06 08:24:44 +00002767
Nick Lewycky4231c412012-02-12 00:47:24 +00002768 BasicBlock::iterator CurInst = CurBB->begin();
2769
Nick Lewycky239fdf02012-02-06 08:24:44 +00002770 while (1) {
Craig Topperf40110f2014-04-25 05:29:35 +00002771 BasicBlock *NextBB = nullptr; // Initialized to avoid compiler warnings.
Michael Gottesmand1a46f22013-01-11 20:07:53 +00002772 DEBUG(dbgs() << "Trying to evaluate BB: " << *CurBB << "\n");
2773
Nick Lewycky73be5e32012-02-19 23:26:27 +00002774 if (!EvaluateBlock(CurInst, NextBB))
Nick Lewycky239fdf02012-02-06 08:24:44 +00002775 return false;
2776
Craig Topperf40110f2014-04-25 05:29:35 +00002777 if (!NextBB) {
Nick Lewycky239fdf02012-02-06 08:24:44 +00002778 // Successfully running until there's no next block means that we found
2779 // the return. Fill it the return value and pop the call stack.
2780 ReturnInst *RI = cast<ReturnInst>(CurBB->getTerminator());
2781 if (RI->getNumOperands())
Nick Lewycky73be5e32012-02-19 23:26:27 +00002782 RetVal = getVal(RI->getOperand(0));
Nick Lewycky239fdf02012-02-06 08:24:44 +00002783 CallStack.pop_back();
2784 return true;
2785 }
2786
2787 // Okay, we succeeded in evaluating this control flow. See if we have
2788 // executed the new block before. If so, we have a looping function,
2789 // which we cannot evaluate in reasonable time.
David Blaikie70573dc2014-11-19 07:49:26 +00002790 if (!ExecutedBlocks.insert(NextBB).second)
Nick Lewycky239fdf02012-02-06 08:24:44 +00002791 return false; // looped!
2792
2793 // Okay, we have never been in this block before. Check to see if there
2794 // are any PHI nodes. If so, evaluate them with information about where
2795 // we came from.
Craig Topperf40110f2014-04-25 05:29:35 +00002796 PHINode *PN = nullptr;
Nick Lewycky4231c412012-02-12 00:47:24 +00002797 for (CurInst = NextBB->begin();
2798 (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
Nick Lewycky73be5e32012-02-19 23:26:27 +00002799 setVal(PN, getVal(PN->getIncomingValueForBlock(CurBB)));
Nick Lewycky239fdf02012-02-06 08:24:44 +00002800
2801 // Advance to the next block.
2802 CurBB = NextBB;
2803 }
2804}
2805
James Molloyea31ad32015-11-13 11:05:07 +00002806/// Evaluate static constructors in the function, if we can. Return true if we
2807/// can, false otherwise.
Mehdi Amini46a43552015-03-04 18:43:29 +00002808static bool EvaluateStaticConstructor(Function *F, const DataLayout &DL,
Chad Rosiere6de63d2011-12-01 21:29:16 +00002809 const TargetLibraryInfo *TLI) {
Chris Lattnerda1889b2005-09-27 04:27:01 +00002810 // Call the function.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002811 Evaluator Eval(DL, TLI);
Chris Lattner65a3a092005-09-27 04:45:34 +00002812 Constant *RetValDummy;
Nick Lewycky73be5e32012-02-19 23:26:27 +00002813 bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2814 SmallVector<Constant*, 0>());
Jakub Staszak9525a772012-12-06 21:57:16 +00002815
Chris Lattnerda1889b2005-09-27 04:27:01 +00002816 if (EvalSuccess) {
Nico Weber4b2acde2014-05-02 18:35:25 +00002817 ++NumCtorsEvaluated;
2818
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002819 // We succeeded at evaluation: commit the result.
David Greene44cb8ad2010-01-05 01:28:05 +00002820 DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
Anthony Pesche92ae2d2015-07-22 22:26:54 +00002821 << F->getName() << "' to " << Eval.getMutatedMemory().size()
2822 << " stores.\n");
2823 for (DenseMap<Constant*, Constant*>::const_iterator I =
2824 Eval.getMutatedMemory().begin(), E = Eval.getMutatedMemory().end();
2825 I != E; ++I)
2826 CommitValueTo(I->second, I->first);
Craig Topper46276792014-08-24 23:23:06 +00002827 for (GlobalVariable *GV : Eval.getInvariants())
2828 GV->setConstant(true);
Chris Lattner6bf2cd52005-09-26 17:07:09 +00002829 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00002830
Chris Lattnerda1889b2005-09-27 04:27:01 +00002831 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00002832}
2833
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002834static int compareNames(Constant *const *A, Constant *const *B) {
Sean Silvaace78182015-09-28 19:02:11 +00002835 return (*A)->stripPointerCasts()->getName().compare(
2836 (*B)->stripPointerCasts()->getName());
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002837}
2838
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002839static void setUsedInitializer(GlobalVariable &V,
Craig Topper97ebe532014-08-19 07:44:27 +00002840 const SmallPtrSet<GlobalValue *, 8> &Init) {
Rafael Espindolac2bb73f2013-07-20 23:33:15 +00002841 if (Init.empty()) {
2842 V.eraseFromParent();
2843 return;
2844 }
2845
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002846 // Type of pointer to the array of pointers.
2847 PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext(), 0);
Rafael Espindola00752162013-05-09 17:22:59 +00002848
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002849 SmallVector<llvm::Constant *, 8> UsedArray;
Craig Topper71b7b682014-08-21 05:55:13 +00002850 for (GlobalValue *GV : Init) {
Matt Arsenaultda1deab2014-01-02 19:53:49 +00002851 Constant *Cast
Craig Topper71b7b682014-08-21 05:55:13 +00002852 = ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV, Int8PtrTy);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002853 UsedArray.push_back(Cast);
Rafael Espindola00752162013-05-09 17:22:59 +00002854 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002855 // Sort to get deterministic order.
Benjamin Krameradf1ea82014-03-07 21:52:38 +00002856 array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002857 ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
Rafael Espindola00752162013-05-09 17:22:59 +00002858
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002859 Module *M = V.getParent();
2860 V.removeFromParent();
2861 GlobalVariable *NV =
2862 new GlobalVariable(*M, ATy, false, llvm::GlobalValue::AppendingLinkage,
2863 llvm::ConstantArray::get(ATy, UsedArray), "");
2864 NV->takeName(&V);
2865 NV->setSection("llvm.metadata");
2866 delete &V;
Rafael Espindola00752162013-05-09 17:22:59 +00002867}
2868
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002869namespace {
James Molloyea31ad32015-11-13 11:05:07 +00002870/// An easy to access representation of llvm.used and llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002871class LLVMUsed {
2872 SmallPtrSet<GlobalValue *, 8> Used;
2873 SmallPtrSet<GlobalValue *, 8> CompilerUsed;
2874 GlobalVariable *UsedV;
2875 GlobalVariable *CompilerUsedV;
2876
2877public:
Rafael Espindolaec2375f2013-07-25 02:50:08 +00002878 LLVMUsed(Module &M) {
Rafael Espindola17600e22013-07-25 03:23:25 +00002879 UsedV = collectUsedGlobalVariables(M, Used, false);
2880 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
Rafael Espindola00752162013-05-09 17:22:59 +00002881 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002882 typedef SmallPtrSet<GlobalValue *, 8>::iterator iterator;
Craig Topper46276792014-08-24 23:23:06 +00002883 typedef iterator_range<iterator> used_iterator_range;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002884 iterator usedBegin() { return Used.begin(); }
2885 iterator usedEnd() { return Used.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002886 used_iterator_range used() {
2887 return used_iterator_range(usedBegin(), usedEnd());
2888 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002889 iterator compilerUsedBegin() { return CompilerUsed.begin(); }
2890 iterator compilerUsedEnd() { return CompilerUsed.end(); }
Craig Topper46276792014-08-24 23:23:06 +00002891 used_iterator_range compilerUsed() {
2892 return used_iterator_range(compilerUsedBegin(), compilerUsedEnd());
2893 }
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002894 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
2895 bool compilerUsedCount(GlobalValue *GV) const {
2896 return CompilerUsed.count(GV);
2897 }
2898 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2899 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
David Blaikie70573dc2014-11-19 07:49:26 +00002900 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
2901 bool compilerUsedInsert(GlobalValue *GV) {
2902 return CompilerUsed.insert(GV).second;
2903 }
Rafael Espindola00752162013-05-09 17:22:59 +00002904
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002905 void syncVariablesAndSets() {
2906 if (UsedV)
2907 setUsedInitializer(*UsedV, Used);
2908 if (CompilerUsedV)
2909 setUsedInitializer(*CompilerUsedV, CompilerUsed);
2910 }
2911};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00002912}
Rafael Espindola00752162013-05-09 17:22:59 +00002913
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002914static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
2915 if (GA.use_empty()) // No use at all.
2916 return false;
2917
2918 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
2919 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002920 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002921 if (!GA.hasOneUse())
2922 // Strictly more than one use. So at least one is not in llvm.used and
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002923 // llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002924 return true;
2925
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002926 // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002927 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
Rafael Espindola00752162013-05-09 17:22:59 +00002928}
2929
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002930static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
2931 const LLVMUsed &U) {
2932 unsigned N = 2;
2933 assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
2934 "We should have removed the duplicated "
Rafael Espindola9aadcc42013-07-19 18:44:51 +00002935 "element from llvm.compiler.used");
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002936 if (U.usedCount(&V) || U.compilerUsedCount(&V))
2937 ++N;
2938 return V.hasNUsesOrMore(N);
2939}
2940
2941static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
2942 if (!GA.hasLocalLinkage())
2943 return true;
2944
2945 return U.usedCount(&GA) || U.compilerUsedCount(&GA);
2946}
2947
Craig Topper71b7b682014-08-21 05:55:13 +00002948static bool hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U,
2949 bool &RenameTarget) {
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002950 RenameTarget = false;
Rafael Espindola00752162013-05-09 17:22:59 +00002951 bool Ret = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002952 if (hasUseOtherThanLLVMUsed(GA, U))
Rafael Espindola00752162013-05-09 17:22:59 +00002953 Ret = true;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002954
2955 // If the alias is externally visible, we may still be able to simplify it.
2956 if (!mayHaveOtherReferences(GA, U))
2957 return Ret;
2958
2959 // If the aliasee has internal linkage, give it the name and linkage
2960 // of the alias, and delete the alias. This turns:
2961 // define internal ... @f(...)
2962 // @a = alias ... @f
2963 // into:
2964 // define ... @a(...)
2965 Constant *Aliasee = GA.getAliasee();
2966 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2967 if (!Target->hasLocalLinkage())
2968 return Ret;
2969
2970 // Do not perform the transform if multiple aliases potentially target the
2971 // aliasee. This check also ensures that it is safe to replace the section
2972 // and other attributes of the aliasee with those of the alias.
2973 if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
2974 return Ret;
2975
2976 RenameTarget = true;
2977 return true;
Rafael Espindola00752162013-05-09 17:22:59 +00002978}
2979
Duncan Sandsed722832009-03-06 10:21:56 +00002980bool GlobalOpt::OptimizeGlobalAliases(Module &M) {
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002981 bool Changed = false;
Rafael Espindolaa82555c2013-06-11 17:48:06 +00002982 LLVMUsed Used(M);
2983
Craig Topper46276792014-08-24 23:23:06 +00002984 for (GlobalValue *GV : Used.used())
2985 Used.compilerUsedErase(GV);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002986
Duncan Sands0bcf0852009-01-07 20:01:06 +00002987 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandsb3f27882009-02-15 09:56:08 +00002988 I != E;) {
2989 Module::alias_iterator J = I++;
Duncan Sandsed722832009-03-06 10:21:56 +00002990 // Aliases without names cannot be referenced outside this module.
David Majnemer5c921152014-07-01 15:26:50 +00002991 if (!J->hasName() && !J->isDeclaration() && !J->hasLocalLinkage())
Duncan Sandsed722832009-03-06 10:21:56 +00002992 J->setLinkage(GlobalValue::InternalLinkage);
Duncan Sandsb3f27882009-02-15 09:56:08 +00002993 // If the aliasee may change at link time, nothing can be done - bail out.
2994 if (J->mayBeOverridden())
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00002995 continue;
2996
Duncan Sandsb3f27882009-02-15 09:56:08 +00002997 Constant *Aliasee = J->getAliasee();
David Majnemer0e2cc2a2014-07-01 00:30:56 +00002998 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts());
2999 // We can't trivially replace the alias with the aliasee if the aliasee is
3000 // non-trivial in some way.
3001 // TODO: Try to handle non-zero GEPs of local aliasees.
3002 if (!Target)
3003 continue;
Duncan Sands7a1db332009-02-18 17:55:38 +00003004 Target->removeDeadConstantUsers();
Duncan Sandsb3f27882009-02-15 09:56:08 +00003005
3006 // Make all users of the alias use the aliasee instead.
Rafael Espindolaa82555c2013-06-11 17:48:06 +00003007 bool RenameTarget;
3008 if (!hasUsesToReplace(*J, Used, RenameTarget))
Rafael Espindola00752162013-05-09 17:22:59 +00003009 continue;
Duncan Sandsb3f27882009-02-15 09:56:08 +00003010
Rafael Espindola6b238632014-05-16 19:35:39 +00003011 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType()));
Rafael Espindolaa82555c2013-06-11 17:48:06 +00003012 ++NumAliasesResolved;
3013 Changed = true;
Duncan Sandsb3f27882009-02-15 09:56:08 +00003014
Rafael Espindolaa82555c2013-06-11 17:48:06 +00003015 if (RenameTarget) {
Duncan Sands6a3df7b2009-12-08 10:10:20 +00003016 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00003017 Target->takeName(&*J);
Duncan Sands6a3df7b2009-12-08 10:10:20 +00003018 Target->setLinkage(J->getLinkage());
Reid Kleckner22b19da2014-02-13 02:18:36 +00003019 Target->setVisibility(J->getVisibility());
3020 Target->setDLLStorageClass(J->getDLLStorageClass());
Rafael Espindolaa82555c2013-06-11 17:48:06 +00003021
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00003022 if (Used.usedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00003023 Used.usedInsert(Target);
3024
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +00003025 if (Used.compilerUsedErase(&*J))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00003026 Used.compilerUsedInsert(Target);
Rafael Espindola8d304802013-06-12 16:45:47 +00003027 } else if (mayHaveOtherReferences(*J, Used))
Rafael Espindolaa82555c2013-06-11 17:48:06 +00003028 continue;
3029
Duncan Sandsb3f27882009-02-15 09:56:08 +00003030 // Delete the alias.
3031 M.getAliasList().erase(J);
3032 ++NumAliasesRemoved;
3033 Changed = true;
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00003034 }
3035
Rafael Espindolaa82555c2013-06-11 17:48:06 +00003036 Used.syncVariablesAndSets();
3037
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00003038 return Changed;
3039}
Chris Lattner41b6a5a2005-09-26 01:43:45 +00003040
Nick Lewycky4b273cb2012-02-12 02:15:20 +00003041static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
3042 if (!TLI->has(LibFunc::cxa_atexit))
Craig Topperf40110f2014-04-25 05:29:35 +00003043 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00003044
3045 Function *Fn = M.getFunction(TLI->getName(LibFunc::cxa_atexit));
Jakub Staszak9525a772012-12-06 21:57:16 +00003046
Anders Carlssonee6bc702011-03-20 17:59:11 +00003047 if (!Fn)
Craig Topperf40110f2014-04-25 05:29:35 +00003048 return nullptr;
Nick Lewycky4b273cb2012-02-12 02:15:20 +00003049
Chris Lattner229907c2011-07-18 04:54:35 +00003050 FunctionType *FTy = Fn->getFunctionType();
Jakub Staszak9525a772012-12-06 21:57:16 +00003051
3052 // Checking that the function has the right return type, the right number of
Anders Carlsson48a44912011-03-20 19:51:13 +00003053 // parameters and that they all have pointer types should be enough.
3054 if (!FTy->getReturnType()->isIntegerTy() ||
3055 FTy->getNumParams() != 3 ||
Anders Carlssonee6bc702011-03-20 17:59:11 +00003056 !FTy->getParamType(0)->isPointerTy() ||
3057 !FTy->getParamType(1)->isPointerTy() ||
3058 !FTy->getParamType(2)->isPointerTy())
Craig Topperf40110f2014-04-25 05:29:35 +00003059 return nullptr;
Anders Carlssonee6bc702011-03-20 17:59:11 +00003060
3061 return Fn;
3062}
3063
James Molloyea31ad32015-11-13 11:05:07 +00003064/// Returns whether the given function is an empty C++ destructor and can
3065/// therefore be eliminated.
Anders Carlssonee6bc702011-03-20 17:59:11 +00003066/// Note that we assume that other optimization passes have already simplified
3067/// the code so we only look for a function with a single basic block, where
Benjamin Kramer1a4695a2012-02-09 16:28:15 +00003068/// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
3069/// other side-effect free instructions.
Anders Carlssonfcec2f52011-03-20 20:16:43 +00003070static bool cxxDtorIsEmpty(const Function &Fn,
3071 SmallPtrSet<const Function *, 8> &CalledFunctions) {
Anders Carlsson48a44912011-03-20 19:51:13 +00003072 // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
Nick Lewyckyd0781832011-03-21 02:26:01 +00003073 // nounwind, but that doesn't seem worth doing.
Anders Carlsson48a44912011-03-20 19:51:13 +00003074 if (Fn.isDeclaration())
3075 return false;
Anders Carlssonee6bc702011-03-20 17:59:11 +00003076
3077 if (++Fn.begin() != Fn.end())
3078 return false;
3079
3080 const BasicBlock &EntryBlock = Fn.getEntryBlock();
3081 for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end();
3082 I != E; ++I) {
3083 if (const CallInst *CI = dyn_cast<CallInst>(I)) {
Anders Carlsson4dd420f2011-03-21 14:54:40 +00003084 // Ignore debug intrinsics.
3085 if (isa<DbgInfoIntrinsic>(CI))
3086 continue;
3087
Anders Carlssonee6bc702011-03-20 17:59:11 +00003088 const Function *CalledFn = CI->getCalledFunction();
3089
3090 if (!CalledFn)
3091 return false;
3092
Anders Carlsson1cc80732011-03-22 03:21:01 +00003093 SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
3094
Anders Carlsson48a44912011-03-20 19:51:13 +00003095 // Don't treat recursive functions as empty.
David Blaikie70573dc2014-11-19 07:49:26 +00003096 if (!NewCalledFunctions.insert(CalledFn).second)
Anders Carlsson48a44912011-03-20 19:51:13 +00003097 return false;
3098
Anders Carlsson1cc80732011-03-22 03:21:01 +00003099 if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00003100 return false;
3101 } else if (isa<ReturnInst>(*I))
Benjamin Kramer487a3962012-02-09 14:26:06 +00003102 return true; // We're done.
3103 else if (I->mayHaveSideEffects())
3104 return false; // Destructor with side effects, bail.
Anders Carlssonee6bc702011-03-20 17:59:11 +00003105 }
3106
3107 return false;
3108}
3109
3110bool GlobalOpt::OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
3111 /// Itanium C++ ABI p3.3.5:
3112 ///
3113 /// After constructing a global (or local static) object, that will require
3114 /// destruction on exit, a termination function is registered as follows:
3115 ///
3116 /// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
3117 ///
3118 /// This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
3119 /// call f(p) when DSO d is unloaded, before all such termination calls
3120 /// registered before this one. It returns zero if registration is
Nick Lewyckyd0781832011-03-21 02:26:01 +00003121 /// successful, nonzero on failure.
Anders Carlssonee6bc702011-03-20 17:59:11 +00003122
3123 // This pass will look for calls to __cxa_atexit where the function is trivial
3124 // and remove them.
3125 bool Changed = false;
3126
Chandler Carruthcdf47882014-03-09 03:16:01 +00003127 for (auto I = CXAAtExitFn->user_begin(), E = CXAAtExitFn->user_end();
3128 I != E;) {
Anders Carlsson336fd902011-03-20 20:21:33 +00003129 // We're only interested in calls. Theoretically, we could handle invoke
3130 // instructions as well, but neither llvm-gcc nor clang generate invokes
3131 // to __cxa_atexit.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00003132 CallInst *CI = dyn_cast<CallInst>(*I++);
3133 if (!CI)
Anders Carlsson336fd902011-03-20 20:21:33 +00003134 continue;
3135
Jakub Staszak9525a772012-12-06 21:57:16 +00003136 Function *DtorFn =
Anders Carlsson4dd420f2011-03-21 14:54:40 +00003137 dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
Anders Carlssonee6bc702011-03-20 17:59:11 +00003138 if (!DtorFn)
3139 continue;
3140
Anders Carlssonfcec2f52011-03-20 20:16:43 +00003141 SmallPtrSet<const Function *, 8> CalledFunctions;
3142 if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
Anders Carlssonee6bc702011-03-20 17:59:11 +00003143 continue;
3144
3145 // Just remove the call.
Anders Carlsson4dd420f2011-03-21 14:54:40 +00003146 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
3147 CI->eraseFromParent();
Anders Carlsson48a44912011-03-20 19:51:13 +00003148
Anders Carlssonee6bc702011-03-20 17:59:11 +00003149 ++NumCXXDtorsRemoved;
3150
3151 Changed |= true;
3152 }
3153
3154 return Changed;
3155}
3156
Chris Lattner25db5802004-10-07 04:16:33 +00003157bool GlobalOpt::runOnModule(Module &M) {
3158 bool Changed = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00003159
Mehdi Amini46a43552015-03-04 18:43:29 +00003160 auto &DL = M.getDataLayout();
Chandler Carruthb98f63d2015-01-15 10:41:28 +00003161 TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Nick Lewyckycf6aae62012-02-12 01:13:18 +00003162
Chris Lattner25db5802004-10-07 04:16:33 +00003163 bool LocalChange = true;
3164 while (LocalChange) {
3165 LocalChange = false;
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00003166
David Majnemer1b3b70e2014-10-08 07:23:31 +00003167 NotDiscardableComdats.clear();
3168 for (const GlobalVariable &GV : M.globals())
3169 if (const Comdat *C = GV.getComdat())
3170 if (!GV.isDiscardableIfUnused() || !GV.use_empty())
3171 NotDiscardableComdats.insert(C);
3172 for (Function &F : M)
3173 if (const Comdat *C = F.getComdat())
3174 if (!F.isDefTriviallyDead())
3175 NotDiscardableComdats.insert(C);
3176 for (GlobalAlias &GA : M.aliases())
3177 if (const Comdat *C = GA.getComdat())
3178 if (!GA.isDiscardableIfUnused() || !GA.use_empty())
3179 NotDiscardableComdats.insert(C);
3180
Chris Lattner41b6a5a2005-09-26 01:43:45 +00003181 // Delete functions that are trivially dead, ccc -> fastcc
3182 LocalChange |= OptimizeFunctions(M);
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00003183
Chris Lattner41b6a5a2005-09-26 01:43:45 +00003184 // Optimize global_ctors list.
Richard Smithc167d652014-05-06 01:44:26 +00003185 LocalChange |= optimizeGlobalCtorsList(M, [&](Function *F) {
3186 return EvaluateStaticConstructor(F, DL, TLI);
3187 });
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00003188
Chris Lattner41b6a5a2005-09-26 01:43:45 +00003189 // Optimize non-address-taken globals.
3190 LocalChange |= OptimizeGlobalVars(M);
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00003191
3192 // Resolve aliases, when possible.
Duncan Sandsed722832009-03-06 10:21:56 +00003193 LocalChange |= OptimizeGlobalAliases(M);
Anders Carlssonee6bc702011-03-20 17:59:11 +00003194
Manman Renb3c52fb2013-05-14 21:52:44 +00003195 // Try to remove trivial global destructors if they are not removed
3196 // already.
3197 Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
Anders Carlssonee6bc702011-03-20 17:59:11 +00003198 if (CXAAtExitFn)
3199 LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
3200
Anton Korobeynikova9b60ee2008-09-09 19:04:59 +00003201 Changed |= LocalChange;
Chris Lattner25db5802004-10-07 04:16:33 +00003202 }
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00003203
Chris Lattner41b6a5a2005-09-26 01:43:45 +00003204 // TODO: Move all global ctors functions to the end of the module for code
3205 // layout.
Mikhail Glushenkovcf2afe02010-10-18 21:16:00 +00003206
Chris Lattner25db5802004-10-07 04:16:33 +00003207 return Changed;
3208}
Anthony Pescha2d93692015-07-22 18:50:10 +00003209