blob: ddff5ef8b36c8027f95b7a4a78e91e4d82209789 [file] [log] [blame]
Chris Lattner7a90b682004-10-07 04:16:33 +00001//===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Chris Lattner079236d2004-02-25 21:34:36 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanfd939082005-04-21 23:48:37 +00007//
Chris Lattner079236d2004-02-25 21:34:36 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattner7a90b682004-10-07 04:16:33 +000010// 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.
Chris Lattner079236d2004-02-25 21:34:36 +000013//
14//===----------------------------------------------------------------------===//
15
Chris Lattner7a90b682004-10-07 04:16:33 +000016#define DEBUG_TYPE "globalopt"
Chris Lattner079236d2004-02-25 21:34:36 +000017#include "llvm/Transforms/IPO.h"
Chris Lattnerfb217ad2005-05-08 22:18:06 +000018#include "llvm/CallingConv.h"
Chris Lattner079236d2004-02-25 21:34:36 +000019#include "llvm/Constants.h"
Chris Lattner7a90b682004-10-07 04:16:33 +000020#include "llvm/DerivedTypes.h"
Chris Lattner7d90a272004-02-27 18:09:25 +000021#include "llvm/Instructions.h"
Chris Lattner35c81b02005-02-27 18:58:52 +000022#include "llvm/IntrinsicInst.h"
Chris Lattner079236d2004-02-25 21:34:36 +000023#include "llvm/Module.h"
24#include "llvm/Pass.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000025#include "llvm/Analysis/ConstantFolding.h"
Victor Hernandezf006b182009-10-27 20:05:49 +000026#include "llvm/Analysis/MemoryBuiltins.h"
Chris Lattner30ba5692004-10-11 05:54:41 +000027#include "llvm/Target/TargetData.h"
Duncan Sands548448a2008-02-18 17:32:13 +000028#include "llvm/Support/CallSite.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000029#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000030#include "llvm/Support/ErrorHandling.h"
Chris Lattner941db492008-01-14 02:09:12 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner998182b2008-04-26 07:40:11 +000032#include "llvm/Support/MathExtras.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000033#include "llvm/Support/raw_ostream.h"
Chris Lattner5a6bb6a2008-12-16 07:34:30 +000034#include "llvm/ADT/DenseMap.h"
Chris Lattner81686182007-09-13 16:30:19 +000035#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner55eb1c42007-01-31 04:40:53 +000036#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000037#include "llvm/ADT/Statistic.h"
Chris Lattnerbce4afe2008-12-17 05:28:49 +000038#include "llvm/ADT/STLExtras.h"
Chris Lattnere47ba742004-10-06 20:57:02 +000039#include <algorithm>
Chris Lattner079236d2004-02-25 21:34:36 +000040using namespace llvm;
41
Chris Lattner86453c52006-12-19 22:09:18 +000042STATISTIC(NumMarked , "Number of globals marked constant");
43STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
44STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
45STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
46STATISTIC(NumDeleted , "Number of globals deleted");
47STATISTIC(NumFnDeleted , "Number of functions deleted");
48STATISTIC(NumGlobUses , "Number of global uses devirtualized");
49STATISTIC(NumLocalized , "Number of globals localized");
50STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
51STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
52STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands3d5378f2008-02-16 20:56:04 +000053STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sands4782b302009-02-15 09:56:08 +000054STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
55STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Chris Lattner079236d2004-02-25 21:34:36 +000056
Chris Lattner86453c52006-12-19 22:09:18 +000057namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000058 struct GlobalOpt : public ModulePass {
Chris Lattner30ba5692004-10-11 05:54:41 +000059 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner30ba5692004-10-11 05:54:41 +000060 }
Nick Lewyckyecd94c82007-05-06 13:37:16 +000061 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +000062 GlobalOpt() : ModulePass(&ID) {}
Misha Brukmanfd939082005-04-21 23:48:37 +000063
Chris Lattnerb12914b2004-09-20 04:48:05 +000064 bool runOnModule(Module &M);
Chris Lattner30ba5692004-10-11 05:54:41 +000065
66 private:
Chris Lattnerb1ab4582005-09-26 01:43:45 +000067 GlobalVariable *FindGlobalCtors(Module &M);
68 bool OptimizeFunctions(Module &M);
69 bool OptimizeGlobalVars(Module &M);
Duncan Sandsfc5940d2009-03-06 10:21:56 +000070 bool OptimizeGlobalAliases(Module &M);
Chris Lattnerb1ab4582005-09-26 01:43:45 +000071 bool OptimizeGlobalCtorsList(GlobalVariable *&GCL);
Chris Lattner7f8897f2006-08-27 22:42:52 +000072 bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
Chris Lattner079236d2004-02-25 21:34:36 +000073 };
Chris Lattner079236d2004-02-25 21:34:36 +000074}
75
Dan Gohman844731a2008-05-13 00:00:25 +000076char GlobalOpt::ID = 0;
77static RegisterPass<GlobalOpt> X("globalopt", "Global Variable Optimizer");
78
Chris Lattner7a90b682004-10-07 04:16:33 +000079ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
Chris Lattner079236d2004-02-25 21:34:36 +000080
Dan Gohman844731a2008-05-13 00:00:25 +000081namespace {
82
Chris Lattner7a90b682004-10-07 04:16:33 +000083/// GlobalStatus - As we analyze each global, keep track of some information
84/// about it. If we find out that the address of the global is taken, none of
Chris Lattnercf4d2a52004-10-07 21:30:30 +000085/// this info will be accurate.
Nick Lewycky6726b6d2009-10-25 06:33:48 +000086struct GlobalStatus {
Chris Lattnercf4d2a52004-10-07 21:30:30 +000087 /// isLoaded - True if the global is ever loaded. If the global isn't ever
88 /// loaded it can be deleted.
Chris Lattner7a90b682004-10-07 04:16:33 +000089 bool isLoaded;
Chris Lattnercf4d2a52004-10-07 21:30:30 +000090
91 /// StoredType - Keep track of what stores to the global look like.
92 ///
Chris Lattner7a90b682004-10-07 04:16:33 +000093 enum StoredType {
Chris Lattnercf4d2a52004-10-07 21:30:30 +000094 /// NotStored - There is no store to this global. It can thus be marked
95 /// constant.
96 NotStored,
97
98 /// isInitializerStored - This global is stored to, but the only thing
99 /// stored is the constant it was initialized with. This is only tracked
100 /// for scalar globals.
101 isInitializerStored,
102
103 /// isStoredOnce - This global is stored to, but only its initializer and
104 /// one other value is ever stored to it. If this global isStoredOnce, we
105 /// track the value stored to it in StoredOnceValue below. This is only
106 /// tracked for scalar globals.
107 isStoredOnce,
108
109 /// isStored - This global is stored to by multiple values or something else
110 /// that we cannot track.
111 isStored
Chris Lattner7a90b682004-10-07 04:16:33 +0000112 } StoredType;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000113
114 /// StoredOnceValue - If only one value (besides the initializer constant) is
115 /// ever stored to this global, keep track of what value it is.
116 Value *StoredOnceValue;
117
Chris Lattner25de4e52006-11-01 18:03:33 +0000118 /// AccessingFunction/HasMultipleAccessingFunctions - These start out
119 /// null/false. When the first accessing function is noticed, it is recorded.
120 /// When a second different accessing function is noticed,
121 /// HasMultipleAccessingFunctions is set to true.
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000122 const Function *AccessingFunction;
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000123 bool HasMultipleAccessingFunctions;
124
Chris Lattner25de4e52006-11-01 18:03:33 +0000125 /// HasNonInstructionUser - Set to true if this global has a user that is not
126 /// an instruction (e.g. a constant expr or GV initializer).
Chris Lattner553ca522005-06-15 21:11:48 +0000127 bool HasNonInstructionUser;
128
Chris Lattner25de4e52006-11-01 18:03:33 +0000129 /// HasPHIUser - Set to true if this global has a user that is a PHI node.
130 bool HasPHIUser;
131
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000132 GlobalStatus() : isLoaded(false), StoredType(NotStored), StoredOnceValue(0),
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000133 AccessingFunction(0), HasMultipleAccessingFunctions(false),
Chris Lattner6a93fc02008-01-14 01:32:52 +0000134 HasNonInstructionUser(false), HasPHIUser(false) {}
Chris Lattner7a90b682004-10-07 04:16:33 +0000135};
Chris Lattnere47ba742004-10-06 20:57:02 +0000136
Dan Gohman844731a2008-05-13 00:00:25 +0000137}
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000138
Jay Foade3acf152009-06-09 21:37:11 +0000139// SafeToDestroyConstant - It is safe to destroy a constant iff it is only used
140// by constants itself. Note that constants cannot be cyclic, so this test is
141// pretty easy to implement recursively.
142//
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000143static bool SafeToDestroyConstant(const Constant *C) {
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000144 if (isa<GlobalValue>(C)) return false;
145
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000146 for (Value::const_use_iterator UI = C->use_begin(), E = C->use_end(); UI != E; ++UI)
147 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
Jay Foade3acf152009-06-09 21:37:11 +0000148 if (!SafeToDestroyConstant(CU)) return false;
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000149 } else
150 return false;
151 return true;
152}
153
154
Chris Lattner7a90b682004-10-07 04:16:33 +0000155/// AnalyzeGlobal - Look at all uses of the global and fill in the GlobalStatus
156/// structure. If the global has its address taken, return true to indicate we
157/// can't do anything with it.
Chris Lattner079236d2004-02-25 21:34:36 +0000158///
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000159static bool AnalyzeGlobal(const Value *V, GlobalStatus &GS,
160 SmallPtrSet<const PHINode*, 16> &PHIUsers) {
161 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
162 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) {
Chris Lattner553ca522005-06-15 21:11:48 +0000163 GS.HasNonInstructionUser = true;
164
Chris Lattner7a90b682004-10-07 04:16:33 +0000165 if (AnalyzeGlobal(CE, GS, PHIUsers)) return true;
Chris Lattner670c8892004-10-08 17:32:09 +0000166
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000167 } else if (const Instruction *I = dyn_cast<Instruction>(*UI)) {
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000168 if (!GS.HasMultipleAccessingFunctions) {
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000169 const Function *F = I->getParent()->getParent();
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000170 if (GS.AccessingFunction == 0)
171 GS.AccessingFunction = F;
172 else if (GS.AccessingFunction != F)
173 GS.HasMultipleAccessingFunctions = true;
174 }
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000175 if (const LoadInst *LI = dyn_cast<LoadInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000176 GS.isLoaded = true;
Chris Lattnerc69d3c92008-01-29 19:01:37 +0000177 if (LI->isVolatile()) return true; // Don't hack on volatile loads.
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000178 } else if (const StoreInst *SI = dyn_cast<StoreInst>(I)) {
Chris Lattner36025492004-10-07 06:01:25 +0000179 // Don't allow a store OF the address, only stores TO the address.
180 if (SI->getOperand(0) == V) return true;
181
Chris Lattnerc69d3c92008-01-29 19:01:37 +0000182 if (SI->isVolatile()) return true; // Don't hack on volatile stores.
183
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000184 // If this is a direct store to the global (i.e., the global is a scalar
185 // value, not an aggregate), keep more specific information about
186 // stores.
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000187 if (GS.StoredType != GlobalStatus::isStored) {
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000188 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(SI->getOperand(1))){
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000189 Value *StoredVal = SI->getOperand(0);
190 if (StoredVal == GV->getInitializer()) {
191 if (GS.StoredType < GlobalStatus::isInitializerStored)
192 GS.StoredType = GlobalStatus::isInitializerStored;
193 } else if (isa<LoadInst>(StoredVal) &&
194 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000195 if (GS.StoredType < GlobalStatus::isInitializerStored)
196 GS.StoredType = GlobalStatus::isInitializerStored;
197 } else if (GS.StoredType < GlobalStatus::isStoredOnce) {
198 GS.StoredType = GlobalStatus::isStoredOnce;
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000199 GS.StoredOnceValue = StoredVal;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000200 } else if (GS.StoredType == GlobalStatus::isStoredOnce &&
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000201 GS.StoredOnceValue == StoredVal) {
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000202 // noop.
203 } else {
204 GS.StoredType = GlobalStatus::isStored;
205 }
206 } else {
Chris Lattner7a90b682004-10-07 04:16:33 +0000207 GS.StoredType = GlobalStatus::isStored;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000208 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000209 }
Chris Lattner35c81b02005-02-27 18:58:52 +0000210 } else if (isa<GetElementPtrInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000211 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner35c81b02005-02-27 18:58:52 +0000212 } else if (isa<SelectInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000213 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000214 } else if (const PHINode *PN = dyn_cast<PHINode>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000215 // PHI nodes we can check just like select or GEP instructions, but we
216 // have to be careful about infinite recursion.
Chris Lattner5a6bb6a2008-12-16 07:34:30 +0000217 if (PHIUsers.insert(PN)) // Not already visited.
Chris Lattner7a90b682004-10-07 04:16:33 +0000218 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner25de4e52006-11-01 18:03:33 +0000219 GS.HasPHIUser = true;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000220 } else if (isa<CmpInst>(I)) {
Chris Lattner8e108442009-03-08 03:37:35 +0000221 } else if (isa<MemTransferInst>(I)) {
Chris Lattner35c81b02005-02-27 18:58:52 +0000222 if (I->getOperand(1) == V)
223 GS.StoredType = GlobalStatus::isStored;
224 if (I->getOperand(2) == V)
225 GS.isLoaded = true;
Chris Lattner35c81b02005-02-27 18:58:52 +0000226 } else if (isa<MemSetInst>(I)) {
227 assert(I->getOperand(1) == V && "Memset only takes one pointer!");
228 GS.StoredType = GlobalStatus::isStored;
Chris Lattner7a90b682004-10-07 04:16:33 +0000229 } else {
230 return true; // Any other non-load instruction might take address!
Chris Lattner9ce30002004-07-20 03:58:07 +0000231 }
Gabor Greifc8b82cc2010-04-01 08:21:08 +0000232 } else if (const Constant *C = dyn_cast<Constant>(*UI)) {
Chris Lattner553ca522005-06-15 21:11:48 +0000233 GS.HasNonInstructionUser = true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000234 // We might have a dead and dangling constant hanging off of here.
Jay Foade3acf152009-06-09 21:37:11 +0000235 if (!SafeToDestroyConstant(C))
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000236 return true;
Chris Lattner079236d2004-02-25 21:34:36 +0000237 } else {
Chris Lattner553ca522005-06-15 21:11:48 +0000238 GS.HasNonInstructionUser = true;
239 // Otherwise must be some other user.
Chris Lattner079236d2004-02-25 21:34:36 +0000240 return true;
241 }
242
243 return false;
244}
245
Chris Lattner7b550cc2009-11-06 04:27:31 +0000246static Constant *getAggregateConstantElement(Constant *Agg, Constant *Idx) {
Chris Lattner670c8892004-10-08 17:32:09 +0000247 ConstantInt *CI = dyn_cast<ConstantInt>(Idx);
248 if (!CI) return 0;
Reid Spencerb83eb642006-10-20 07:07:24 +0000249 unsigned IdxV = CI->getZExtValue();
Chris Lattner7a90b682004-10-07 04:16:33 +0000250
Chris Lattner670c8892004-10-08 17:32:09 +0000251 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Agg)) {
252 if (IdxV < CS->getNumOperands()) return CS->getOperand(IdxV);
253 } else if (ConstantArray *CA = dyn_cast<ConstantArray>(Agg)) {
254 if (IdxV < CA->getNumOperands()) return CA->getOperand(IdxV);
Reid Spencer9d6565a2007-02-15 02:26:10 +0000255 } else if (ConstantVector *CP = dyn_cast<ConstantVector>(Agg)) {
Chris Lattner670c8892004-10-08 17:32:09 +0000256 if (IdxV < CP->getNumOperands()) return CP->getOperand(IdxV);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000257 } else if (isa<ConstantAggregateZero>(Agg)) {
Chris Lattner670c8892004-10-08 17:32:09 +0000258 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
259 if (IdxV < STy->getNumElements())
Owen Andersona7235ea2009-07-31 20:28:14 +0000260 return Constant::getNullValue(STy->getElementType(IdxV));
Chris Lattner670c8892004-10-08 17:32:09 +0000261 } else if (const SequentialType *STy =
262 dyn_cast<SequentialType>(Agg->getType())) {
Owen Andersona7235ea2009-07-31 20:28:14 +0000263 return Constant::getNullValue(STy->getElementType());
Chris Lattner670c8892004-10-08 17:32:09 +0000264 }
Chris Lattner7a7ed022004-10-16 18:09:00 +0000265 } else if (isa<UndefValue>(Agg)) {
266 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
267 if (IdxV < STy->getNumElements())
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000268 return UndefValue::get(STy->getElementType(IdxV));
Chris Lattner7a7ed022004-10-16 18:09:00 +0000269 } else if (const SequentialType *STy =
270 dyn_cast<SequentialType>(Agg->getType())) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000271 return UndefValue::get(STy->getElementType());
Chris Lattner7a7ed022004-10-16 18:09:00 +0000272 }
Chris Lattner670c8892004-10-08 17:32:09 +0000273 }
274 return 0;
275}
Chris Lattner7a90b682004-10-07 04:16:33 +0000276
Chris Lattner7a90b682004-10-07 04:16:33 +0000277
Chris Lattnere47ba742004-10-06 20:57:02 +0000278/// CleanupConstantGlobalUsers - We just marked GV constant. Loop over all
279/// users of the global, cleaning up the obvious ones. This is largely just a
Chris Lattner031955d2004-10-10 16:43:46 +0000280/// quick scan over the use list to clean up the easy and obvious cruft. This
281/// returns true if it made a change.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000282static bool CleanupConstantGlobalUsers(Value *V, Constant *Init) {
Chris Lattner031955d2004-10-10 16:43:46 +0000283 bool Changed = false;
Chris Lattner7a90b682004-10-07 04:16:33 +0000284 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;) {
285 User *U = *UI++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000286
Chris Lattner7a90b682004-10-07 04:16:33 +0000287 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner35c81b02005-02-27 18:58:52 +0000288 if (Init) {
289 // Replace the load with the initializer.
290 LI->replaceAllUsesWith(Init);
291 LI->eraseFromParent();
292 Changed = true;
293 }
Chris Lattner7a90b682004-10-07 04:16:33 +0000294 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattnere47ba742004-10-06 20:57:02 +0000295 // Store must be unreachable or storing Init into the global.
Chris Lattner7a7ed022004-10-16 18:09:00 +0000296 SI->eraseFromParent();
Chris Lattner031955d2004-10-10 16:43:46 +0000297 Changed = true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000298 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
299 if (CE->getOpcode() == Instruction::GetElementPtr) {
Chris Lattneraae4a1c2005-09-26 07:34:35 +0000300 Constant *SubInit = 0;
301 if (Init)
Dan Gohmanc6f69e92009-10-05 16:36:26 +0000302 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner7b550cc2009-11-06 04:27:31 +0000303 Changed |= CleanupConstantGlobalUsers(CE, SubInit);
Reid Spencer3da59db2006-11-27 01:05:10 +0000304 } else if (CE->getOpcode() == Instruction::BitCast &&
Duncan Sands1df98592010-02-16 11:11:14 +0000305 CE->getType()->isPointerTy()) {
Chris Lattner35c81b02005-02-27 18:58:52 +0000306 // Pointer cast, delete any stores and memsets to the global.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000307 Changed |= CleanupConstantGlobalUsers(CE, 0);
Chris Lattner35c81b02005-02-27 18:58:52 +0000308 }
309
310 if (CE->use_empty()) {
311 CE->destroyConstant();
312 Changed = true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000313 }
314 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner7b52fe72007-11-09 17:33:02 +0000315 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
316 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
317 // and will invalidate our notion of what Init is.
Chris Lattner19450242007-11-13 21:46:23 +0000318 Constant *SubInit = 0;
Chris Lattner7b52fe72007-11-09 17:33:02 +0000319 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
320 ConstantExpr *CE =
Chris Lattner7b550cc2009-11-06 04:27:31 +0000321 dyn_cast_or_null<ConstantExpr>(ConstantFoldInstruction(GEP));
Chris Lattner7b52fe72007-11-09 17:33:02 +0000322 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Dan Gohmanc6f69e92009-10-05 16:36:26 +0000323 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner7b52fe72007-11-09 17:33:02 +0000324 }
Chris Lattner7b550cc2009-11-06 04:27:31 +0000325 Changed |= CleanupConstantGlobalUsers(GEP, SubInit);
Chris Lattnerc4d81b02004-10-10 16:47:33 +0000326
Chris Lattner031955d2004-10-10 16:43:46 +0000327 if (GEP->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000328 GEP->eraseFromParent();
Chris Lattner031955d2004-10-10 16:43:46 +0000329 Changed = true;
330 }
Chris Lattner35c81b02005-02-27 18:58:52 +0000331 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
332 if (MI->getRawDest() == V) {
333 MI->eraseFromParent();
334 Changed = true;
335 }
336
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000337 } else if (Constant *C = dyn_cast<Constant>(U)) {
338 // If we have a chain of dead constantexprs or other things dangling from
339 // us, and if they are all dead, nuke them without remorse.
Jay Foade3acf152009-06-09 21:37:11 +0000340 if (SafeToDestroyConstant(C)) {
Devang Patel743cdf82009-03-06 01:37:41 +0000341 C->destroyConstant();
Chris Lattner35c81b02005-02-27 18:58:52 +0000342 // This could have invalidated UI, start over from scratch.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000343 CleanupConstantGlobalUsers(V, Init);
Chris Lattner031955d2004-10-10 16:43:46 +0000344 return true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000345 }
Chris Lattnere47ba742004-10-06 20:57:02 +0000346 }
347 }
Chris Lattner031955d2004-10-10 16:43:46 +0000348 return Changed;
Chris Lattnere47ba742004-10-06 20:57:02 +0000349}
350
Chris Lattner941db492008-01-14 02:09:12 +0000351/// isSafeSROAElementUse - Return true if the specified instruction is a safe
352/// user of a derived expression from a global that we want to SROA.
353static bool isSafeSROAElementUse(Value *V) {
354 // We might have a dead and dangling constant hanging off of here.
355 if (Constant *C = dyn_cast<Constant>(V))
Jay Foade3acf152009-06-09 21:37:11 +0000356 return SafeToDestroyConstant(C);
Chris Lattner727c2102008-01-14 01:31:05 +0000357
Chris Lattner941db492008-01-14 02:09:12 +0000358 Instruction *I = dyn_cast<Instruction>(V);
359 if (!I) return false;
360
361 // Loads are ok.
362 if (isa<LoadInst>(I)) return true;
363
364 // Stores *to* the pointer are ok.
365 if (StoreInst *SI = dyn_cast<StoreInst>(I))
366 return SI->getOperand(0) != V;
367
368 // Otherwise, it must be a GEP.
369 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
370 if (GEPI == 0) return false;
371
372 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
373 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
374 return false;
375
376 for (Value::use_iterator I = GEPI->use_begin(), E = GEPI->use_end();
377 I != E; ++I)
378 if (!isSafeSROAElementUse(*I))
379 return false;
Chris Lattner727c2102008-01-14 01:31:05 +0000380 return true;
381}
382
Chris Lattner941db492008-01-14 02:09:12 +0000383
384/// IsUserOfGlobalSafeForSRA - U is a direct user of the specified global value.
385/// Look at it and its uses and decide whether it is safe to SROA this global.
386///
387static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
388 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
389 if (!isa<GetElementPtrInst>(U) &&
390 (!isa<ConstantExpr>(U) ||
391 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
392 return false;
393
394 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
395 // don't like < 3 operand CE's, and we don't like non-constant integer
396 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
397 // value of C.
398 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
399 !cast<Constant>(U->getOperand(1))->isNullValue() ||
400 !isa<ConstantInt>(U->getOperand(2)))
401 return false;
402
403 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
404 ++GEPI; // Skip over the pointer index.
405
406 // If this is a use of an array allocation, do a bit more checking for sanity.
407 if (const ArrayType *AT = dyn_cast<ArrayType>(*GEPI)) {
408 uint64_t NumElements = AT->getNumElements();
409 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
410
411 // Check to make sure that index falls within the array. If not,
412 // something funny is going on, so we won't do the optimization.
413 //
414 if (Idx->getZExtValue() >= NumElements)
415 return false;
416
417 // We cannot scalar repl this level of the array unless any array
418 // sub-indices are in-range constants. In particular, consider:
419 // A[0][i]. We cannot know that the user isn't doing invalid things like
420 // allowing i to index an out-of-range subscript that accesses A[1].
421 //
422 // Scalar replacing *just* the outer index of the array is probably not
423 // going to be a win anyway, so just give up.
424 for (++GEPI; // Skip array index.
Dan Gohman6874a2a2009-08-18 14:58:19 +0000425 GEPI != E;
Chris Lattner941db492008-01-14 02:09:12 +0000426 ++GEPI) {
427 uint64_t NumElements;
428 if (const ArrayType *SubArrayTy = dyn_cast<ArrayType>(*GEPI))
429 NumElements = SubArrayTy->getNumElements();
Dan Gohman6874a2a2009-08-18 14:58:19 +0000430 else if (const VectorType *SubVectorTy = dyn_cast<VectorType>(*GEPI))
431 NumElements = SubVectorTy->getNumElements();
432 else {
Duncan Sands1df98592010-02-16 11:11:14 +0000433 assert((*GEPI)->isStructTy() &&
Dan Gohman6874a2a2009-08-18 14:58:19 +0000434 "Indexed GEP type is not array, vector, or struct!");
435 continue;
436 }
Chris Lattner941db492008-01-14 02:09:12 +0000437
438 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
439 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
440 return false;
441 }
442 }
443
444 for (Value::use_iterator I = U->use_begin(), E = U->use_end(); I != E; ++I)
445 if (!isSafeSROAElementUse(*I))
446 return false;
447 return true;
448}
449
450/// GlobalUsersSafeToSRA - Look at all uses of the global and decide whether it
451/// is safe for us to perform this transformation.
452///
453static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
454 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
455 UI != E; ++UI) {
456 if (!IsUserOfGlobalSafeForSRA(*UI, GV))
457 return false;
458 }
459 return true;
460}
461
462
Chris Lattner670c8892004-10-08 17:32:09 +0000463/// SRAGlobal - Perform scalar replacement of aggregates on the specified global
464/// variable. This opens the door for other optimizations by exposing the
465/// behavior of the program in a more fine-grained way. We have determined that
466/// this transformation is safe already. We return the first global variable we
467/// insert so that the caller can reprocess it.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000468static GlobalVariable *SRAGlobal(GlobalVariable *GV, const TargetData &TD) {
Chris Lattner727c2102008-01-14 01:31:05 +0000469 // Make sure this global only has simple uses that we can SRA.
Chris Lattner941db492008-01-14 02:09:12 +0000470 if (!GlobalUsersSafeToSRA(GV))
Chris Lattner727c2102008-01-14 01:31:05 +0000471 return 0;
472
Rafael Espindolabb46f522009-01-15 20:18:42 +0000473 assert(GV->hasLocalLinkage() && !GV->isConstant());
Chris Lattner670c8892004-10-08 17:32:09 +0000474 Constant *Init = GV->getInitializer();
475 const Type *Ty = Init->getType();
Misha Brukmanfd939082005-04-21 23:48:37 +0000476
Chris Lattner670c8892004-10-08 17:32:09 +0000477 std::vector<GlobalVariable*> NewGlobals;
478 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
479
Chris Lattner998182b2008-04-26 07:40:11 +0000480 // Get the alignment of the global, either explicit or target-specific.
481 unsigned StartAlignment = GV->getAlignment();
482 if (StartAlignment == 0)
483 StartAlignment = TD.getABITypeAlignment(GV->getType());
484
Chris Lattner670c8892004-10-08 17:32:09 +0000485 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
486 NewGlobals.reserve(STy->getNumElements());
Chris Lattner998182b2008-04-26 07:40:11 +0000487 const StructLayout &Layout = *TD.getStructLayout(STy);
Chris Lattner670c8892004-10-08 17:32:09 +0000488 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
489 Constant *In = getAggregateConstantElement(Init,
Chris Lattner7b550cc2009-11-06 04:27:31 +0000490 ConstantInt::get(Type::getInt32Ty(STy->getContext()), i));
Chris Lattner670c8892004-10-08 17:32:09 +0000491 assert(In && "Couldn't get element of initializer?");
Chris Lattner7b550cc2009-11-06 04:27:31 +0000492 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
Chris Lattner670c8892004-10-08 17:32:09 +0000493 GlobalVariable::InternalLinkage,
Daniel Dunbarfe09b202009-07-30 17:37:43 +0000494 In, GV->getName()+"."+Twine(i),
Matthijs Kooijmanbc1f9892008-07-17 11:59:53 +0000495 GV->isThreadLocal(),
Owen Anderson3d29df32009-07-08 01:26:06 +0000496 GV->getType()->getAddressSpace());
Chris Lattner670c8892004-10-08 17:32:09 +0000497 Globals.insert(GV, NGV);
498 NewGlobals.push_back(NGV);
Chris Lattner998182b2008-04-26 07:40:11 +0000499
500 // Calculate the known alignment of the field. If the original aggregate
501 // had 256 byte alignment for example, something might depend on that:
502 // propagate info to each field.
503 uint64_t FieldOffset = Layout.getElementOffset(i);
504 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
505 if (NewAlign > TD.getABITypeAlignment(STy->getElementType(i)))
506 NGV->setAlignment(NewAlign);
Chris Lattner670c8892004-10-08 17:32:09 +0000507 }
508 } else if (const SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
509 unsigned NumElements = 0;
510 if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
511 NumElements = ATy->getNumElements();
Chris Lattner670c8892004-10-08 17:32:09 +0000512 else
Chris Lattner998182b2008-04-26 07:40:11 +0000513 NumElements = cast<VectorType>(STy)->getNumElements();
Chris Lattner670c8892004-10-08 17:32:09 +0000514
Chris Lattner1f21ef12005-02-23 16:53:04 +0000515 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Chris Lattnerd514d822005-02-01 01:23:31 +0000516 return 0; // It's not worth it.
Chris Lattner670c8892004-10-08 17:32:09 +0000517 NewGlobals.reserve(NumElements);
Chris Lattner998182b2008-04-26 07:40:11 +0000518
Duncan Sands777d2302009-05-09 07:06:46 +0000519 uint64_t EltSize = TD.getTypeAllocSize(STy->getElementType());
Chris Lattner998182b2008-04-26 07:40:11 +0000520 unsigned EltAlign = TD.getABITypeAlignment(STy->getElementType());
Chris Lattner670c8892004-10-08 17:32:09 +0000521 for (unsigned i = 0, e = NumElements; i != e; ++i) {
522 Constant *In = getAggregateConstantElement(Init,
Chris Lattner7b550cc2009-11-06 04:27:31 +0000523 ConstantInt::get(Type::getInt32Ty(Init->getContext()), i));
Chris Lattner670c8892004-10-08 17:32:09 +0000524 assert(In && "Couldn't get element of initializer?");
525
Chris Lattner7b550cc2009-11-06 04:27:31 +0000526 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
Chris Lattner670c8892004-10-08 17:32:09 +0000527 GlobalVariable::InternalLinkage,
Daniel Dunbarfe09b202009-07-30 17:37:43 +0000528 In, GV->getName()+"."+Twine(i),
Matthijs Kooijmanbc1f9892008-07-17 11:59:53 +0000529 GV->isThreadLocal(),
Owen Andersone9b11b42009-07-08 19:03:57 +0000530 GV->getType()->getAddressSpace());
Chris Lattner670c8892004-10-08 17:32:09 +0000531 Globals.insert(GV, NGV);
532 NewGlobals.push_back(NGV);
Chris Lattner998182b2008-04-26 07:40:11 +0000533
534 // Calculate the known alignment of the field. If the original aggregate
535 // had 256 byte alignment for example, something might depend on that:
536 // propagate info to each field.
537 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
538 if (NewAlign > EltAlign)
539 NGV->setAlignment(NewAlign);
Chris Lattner670c8892004-10-08 17:32:09 +0000540 }
541 }
542
543 if (NewGlobals.empty())
544 return 0;
Chris Lattnerc6a669b2010-02-26 23:35:25 +0000545
David Greene3215b0e2010-01-05 01:28:05 +0000546 DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV);
Chris Lattner30ba5692004-10-11 05:54:41 +0000547
Chris Lattner7b550cc2009-11-06 04:27:31 +0000548 Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
Chris Lattner670c8892004-10-08 17:32:09 +0000549
550 // Loop over all of the uses of the global, replacing the constantexpr geps,
551 // with smaller constantexpr geps or direct references.
552 while (!GV->use_empty()) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000553 User *GEP = GV->use_back();
554 assert(((isa<ConstantExpr>(GEP) &&
555 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
556 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanfd939082005-04-21 23:48:37 +0000557
Chris Lattner670c8892004-10-08 17:32:09 +0000558 // Ignore the 1th operand, which has to be zero or else the program is quite
559 // broken (undefined). Get the 2nd operand, which is the structure or array
560 // index.
Reid Spencerb83eb642006-10-20 07:07:24 +0000561 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattner670c8892004-10-08 17:32:09 +0000562 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
563
Chris Lattner30ba5692004-10-11 05:54:41 +0000564 Value *NewPtr = NewGlobals[Val];
Chris Lattner670c8892004-10-08 17:32:09 +0000565
566 // Form a shorter GEP if needed.
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000567 if (GEP->getNumOperands() > 3) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000568 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattner55eb1c42007-01-31 04:40:53 +0000569 SmallVector<Constant*, 8> Idxs;
Chris Lattner30ba5692004-10-11 05:54:41 +0000570 Idxs.push_back(NullInt);
571 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
572 Idxs.push_back(CE->getOperand(i));
Owen Andersonbaf3c402009-07-29 18:55:55 +0000573 NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr),
Chris Lattner55eb1c42007-01-31 04:40:53 +0000574 &Idxs[0], Idxs.size());
Chris Lattner30ba5692004-10-11 05:54:41 +0000575 } else {
576 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner699d1442007-01-31 19:59:55 +0000577 SmallVector<Value*, 8> Idxs;
Chris Lattner30ba5692004-10-11 05:54:41 +0000578 Idxs.push_back(NullInt);
579 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
580 Idxs.push_back(GEPI->getOperand(i));
Gabor Greif051a9502008-04-06 20:25:17 +0000581 NewPtr = GetElementPtrInst::Create(NewPtr, Idxs.begin(), Idxs.end(),
Daniel Dunbarfe09b202009-07-30 17:37:43 +0000582 GEPI->getName()+"."+Twine(Val),GEPI);
Chris Lattner30ba5692004-10-11 05:54:41 +0000583 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000584 }
Chris Lattner30ba5692004-10-11 05:54:41 +0000585 GEP->replaceAllUsesWith(NewPtr);
586
587 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner7a7ed022004-10-16 18:09:00 +0000588 GEPI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000589 else
590 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattner670c8892004-10-08 17:32:09 +0000591 }
592
Chris Lattnere40e2d12004-10-08 20:25:55 +0000593 // Delete the old global, now that it is dead.
594 Globals.erase(GV);
Chris Lattner670c8892004-10-08 17:32:09 +0000595 ++NumSRA;
Chris Lattner30ba5692004-10-11 05:54:41 +0000596
597 // Loop over the new globals array deleting any globals that are obviously
598 // dead. This can arise due to scalarization of a structure or an array that
599 // has elements that are dead.
600 unsigned FirstGlobal = 0;
601 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
602 if (NewGlobals[i]->use_empty()) {
603 Globals.erase(NewGlobals[i]);
604 if (FirstGlobal == i) ++FirstGlobal;
605 }
606
607 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : 0;
Chris Lattner670c8892004-10-08 17:32:09 +0000608}
609
Chris Lattner9b34a612004-10-09 21:48:45 +0000610/// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
Chris Lattner81686182007-09-13 16:30:19 +0000611/// value will trap if the value is dynamically null. PHIs keeps track of any
612/// phi nodes we've seen to avoid reprocessing them.
613static bool AllUsesOfValueWillTrapIfNull(Value *V,
614 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner9b34a612004-10-09 21:48:45 +0000615 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
616 if (isa<LoadInst>(*UI)) {
617 // Will trap.
618 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
619 if (SI->getOperand(0) == V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000620 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000621 return false; // Storing the value.
622 }
623 } else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
Gabor Greif654c06f2010-03-20 21:00:25 +0000624 if (CI->getCalledValue() != V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000625 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000626 return false; // Not calling the ptr
627 }
628 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
Gabor Greif654c06f2010-03-20 21:00:25 +0000629 if (II->getCalledValue() != V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000630 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000631 return false; // Not calling the ptr
632 }
Chris Lattner81686182007-09-13 16:30:19 +0000633 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(*UI)) {
634 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Chris Lattner9b34a612004-10-09 21:48:45 +0000635 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
Chris Lattner81686182007-09-13 16:30:19 +0000636 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
637 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
638 // If we've already seen this phi node, ignore it, it has already been
639 // checked.
Jakob Stoklund Olesenb489d0f2010-01-29 23:54:14 +0000640 if (PHIs.insert(PN) && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
641 return false;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000642 } else if (isa<ICmpInst>(*UI) &&
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000643 isa<ConstantPointerNull>(UI->getOperand(1))) {
Nick Lewyckye7ee59b2010-02-25 06:39:10 +0000644 // Ignore icmp X, null
Chris Lattner9b34a612004-10-09 21:48:45 +0000645 } else {
Bill Wendlinge8156192006-12-07 01:30:32 +0000646 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000647 return false;
648 }
649 return true;
650}
651
652/// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000653/// from GV will trap if the loaded value is null. Note that this also permits
654/// comparisons of the loaded value against null, as a special case.
Chris Lattner9b34a612004-10-09 21:48:45 +0000655static bool AllUsesOfLoadedValueWillTrapIfNull(GlobalVariable *GV) {
656 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI!=E; ++UI)
657 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
Chris Lattner81686182007-09-13 16:30:19 +0000658 SmallPtrSet<PHINode*, 8> PHIs;
659 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner9b34a612004-10-09 21:48:45 +0000660 return false;
661 } else if (isa<StoreInst>(*UI)) {
662 // Ignore stores to the global.
663 } else {
664 // We don't know or understand this user, bail out.
Bill Wendlinge8156192006-12-07 01:30:32 +0000665 //cerr << "UNKNOWN USER OF GLOBAL!: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000666 return false;
667 }
668
669 return true;
670}
671
Chris Lattner7b550cc2009-11-06 04:27:31 +0000672static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
Chris Lattner708148e2004-10-10 23:14:11 +0000673 bool Changed = false;
674 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
675 Instruction *I = cast<Instruction>(*UI++);
676 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
677 LI->setOperand(0, NewV);
678 Changed = true;
679 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
680 if (SI->getOperand(1) == V) {
681 SI->setOperand(1, NewV);
682 Changed = true;
683 }
684 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
685 if (I->getOperand(0) == V) {
686 // Calling through the pointer! Turn into a direct call, but be careful
687 // that the pointer is not also being passed as an argument.
688 I->setOperand(0, NewV);
689 Changed = true;
690 bool PassedAsArg = false;
691 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i)
692 if (I->getOperand(i) == V) {
693 PassedAsArg = true;
694 I->setOperand(i, NewV);
695 }
696
697 if (PassedAsArg) {
698 // Being passed as an argument also. Be careful to not invalidate UI!
699 UI = V->use_begin();
700 }
701 }
702 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
703 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Owen Andersonbaf3c402009-07-29 18:55:55 +0000704 ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner7b550cc2009-11-06 04:27:31 +0000705 NewV, CI->getType()));
Chris Lattner708148e2004-10-10 23:14:11 +0000706 if (CI->use_empty()) {
707 Changed = true;
Chris Lattner7a7ed022004-10-16 18:09:00 +0000708 CI->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000709 }
710 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
711 // Should handle GEP here.
Chris Lattner55eb1c42007-01-31 04:40:53 +0000712 SmallVector<Constant*, 8> Idxs;
713 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif5e463212008-05-29 01:59:18 +0000714 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
715 i != e; ++i)
716 if (Constant *C = dyn_cast<Constant>(*i))
Chris Lattner55eb1c42007-01-31 04:40:53 +0000717 Idxs.push_back(C);
Chris Lattner708148e2004-10-10 23:14:11 +0000718 else
719 break;
Chris Lattner55eb1c42007-01-31 04:40:53 +0000720 if (Idxs.size() == GEPI->getNumOperands()-1)
Chris Lattner708148e2004-10-10 23:14:11 +0000721 Changed |= OptimizeAwayTrappingUsesOfValue(GEPI,
Owen Andersonbaf3c402009-07-29 18:55:55 +0000722 ConstantExpr::getGetElementPtr(NewV, &Idxs[0],
Chris Lattner7b550cc2009-11-06 04:27:31 +0000723 Idxs.size()));
Chris Lattner708148e2004-10-10 23:14:11 +0000724 if (GEPI->use_empty()) {
725 Changed = true;
Chris Lattner7a7ed022004-10-16 18:09:00 +0000726 GEPI->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000727 }
728 }
729 }
730
731 return Changed;
732}
733
734
735/// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
736/// value stored into it. If there are uses of the loaded value that would trap
737/// if the loaded value is dynamically null, then we know that they cannot be
738/// reachable with a null optimize away the load.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000739static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV) {
Chris Lattner708148e2004-10-10 23:14:11 +0000740 bool Changed = false;
741
Chris Lattner92c6bd22009-01-14 00:12:58 +0000742 // Keep track of whether we are able to remove all the uses of the global
743 // other than the store that defines it.
744 bool AllNonStoreUsesGone = true;
745
Chris Lattner708148e2004-10-10 23:14:11 +0000746 // Replace all uses of loads with uses of uses of the stored value.
Chris Lattner92c6bd22009-01-14 00:12:58 +0000747 for (Value::use_iterator GUI = GV->use_begin(), E = GV->use_end(); GUI != E;){
748 User *GlobalUser = *GUI++;
749 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Chris Lattner7b550cc2009-11-06 04:27:31 +0000750 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner92c6bd22009-01-14 00:12:58 +0000751 // If we were able to delete all uses of the loads
752 if (LI->use_empty()) {
753 LI->eraseFromParent();
754 Changed = true;
755 } else {
756 AllNonStoreUsesGone = false;
757 }
758 } else if (isa<StoreInst>(GlobalUser)) {
759 // Ignore the store that stores "LV" to the global.
760 assert(GlobalUser->getOperand(1) == GV &&
761 "Must be storing *to* the global");
Chris Lattner708148e2004-10-10 23:14:11 +0000762 } else {
Chris Lattner92c6bd22009-01-14 00:12:58 +0000763 AllNonStoreUsesGone = false;
764
765 // If we get here we could have other crazy uses that are transitively
766 // loaded.
767 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
768 isa<ConstantExpr>(GlobalUser)) && "Only expect load and stores!");
Chris Lattner708148e2004-10-10 23:14:11 +0000769 }
Chris Lattner92c6bd22009-01-14 00:12:58 +0000770 }
Chris Lattner708148e2004-10-10 23:14:11 +0000771
772 if (Changed) {
David Greene3215b0e2010-01-05 01:28:05 +0000773 DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV);
Chris Lattner708148e2004-10-10 23:14:11 +0000774 ++NumGlobUses;
775 }
776
Chris Lattner708148e2004-10-10 23:14:11 +0000777 // If we nuked all of the loads, then none of the stores are needed either,
778 // nor is the global.
Chris Lattner92c6bd22009-01-14 00:12:58 +0000779 if (AllNonStoreUsesGone) {
David Greene3215b0e2010-01-05 01:28:05 +0000780 DEBUG(dbgs() << " *** GLOBAL NOW DEAD!\n");
Chris Lattner7b550cc2009-11-06 04:27:31 +0000781 CleanupConstantGlobalUsers(GV, 0);
Chris Lattner708148e2004-10-10 23:14:11 +0000782 if (GV->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000783 GV->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000784 ++NumDeleted;
785 }
786 Changed = true;
787 }
788 return Changed;
789}
790
Chris Lattner30ba5692004-10-11 05:54:41 +0000791/// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
792/// instructions that are foldable.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000793static void ConstantPropUsersOf(Value *V) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000794 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
795 if (Instruction *I = dyn_cast<Instruction>(*UI++))
Chris Lattner7b550cc2009-11-06 04:27:31 +0000796 if (Constant *NewC = ConstantFoldInstruction(I)) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000797 I->replaceAllUsesWith(NewC);
798
Chris Lattnerd514d822005-02-01 01:23:31 +0000799 // Advance UI to the next non-I use to avoid invalidating it!
800 // Instructions could multiply use V.
801 while (UI != E && *UI == I)
Chris Lattner30ba5692004-10-11 05:54:41 +0000802 ++UI;
Chris Lattnerd514d822005-02-01 01:23:31 +0000803 I->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000804 }
805}
806
807/// OptimizeGlobalAddressOfMalloc - This function takes the specified global
808/// variable, and transforms the program as if it always contained the result of
809/// the specified malloc. Because it is always the result of the specified
810/// malloc, there is no reason to actually DO the malloc. Instead, turn the
Chris Lattner6e8fbad2006-11-30 17:32:29 +0000811/// malloc into a global, and any loads of GV as uses of the new global.
Chris Lattner30ba5692004-10-11 05:54:41 +0000812static GlobalVariable *OptimizeGlobalAddressOfMalloc(GlobalVariable *GV,
Victor Hernandez83d63912009-09-18 22:35:49 +0000813 CallInst *CI,
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000814 const Type *AllocTy,
Chris Lattnera6874652010-02-25 22:33:52 +0000815 ConstantInt *NElements,
Victor Hernandez83d63912009-09-18 22:35:49 +0000816 TargetData* TD) {
Chris Lattnera6874652010-02-25 22:33:52 +0000817 DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << " CALL = " << *CI << '\n');
Victor Hernandez83d63912009-09-18 22:35:49 +0000818
Chris Lattnera6874652010-02-25 22:33:52 +0000819 const Type *GlobalType;
820 if (NElements->getZExtValue() == 1)
821 GlobalType = AllocTy;
822 else
823 // If we have an array allocation, the global variable is of an array.
824 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
Victor Hernandez83d63912009-09-18 22:35:49 +0000825
826 // Create the new global variable. The contents of the malloc'd memory is
827 // undefined, so initialize with an undef value.
Victor Hernandez83d63912009-09-18 22:35:49 +0000828 GlobalVariable *NewGV = new GlobalVariable(*GV->getParent(),
Chris Lattnere9fd4442010-02-26 23:42:13 +0000829 GlobalType, false,
Chris Lattnera6874652010-02-25 22:33:52 +0000830 GlobalValue::InternalLinkage,
Chris Lattnere9fd4442010-02-26 23:42:13 +0000831 UndefValue::get(GlobalType),
Victor Hernandez83d63912009-09-18 22:35:49 +0000832 GV->getName()+".body",
833 GV,
834 GV->isThreadLocal());
835
Chris Lattnera6874652010-02-25 22:33:52 +0000836 // If there are bitcast users of the malloc (which is typical, usually we have
837 // a malloc + bitcast) then replace them with uses of the new global. Update
838 // other users to use the global as well.
839 BitCastInst *TheBC = 0;
840 while (!CI->use_empty()) {
841 Instruction *User = cast<Instruction>(CI->use_back());
842 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
843 if (BCI->getType() == NewGV->getType()) {
844 BCI->replaceAllUsesWith(NewGV);
845 BCI->eraseFromParent();
846 } else {
847 BCI->setOperand(0, NewGV);
848 }
849 } else {
850 if (TheBC == 0)
851 TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
852 User->replaceUsesOfWith(CI, TheBC);
853 }
854 }
855
Victor Hernandez83d63912009-09-18 22:35:49 +0000856 Constant *RepValue = NewGV;
857 if (NewGV->getType() != GV->getType()->getElementType())
858 RepValue = ConstantExpr::getBitCast(RepValue,
859 GV->getType()->getElementType());
860
861 // If there is a comparison against null, we will insert a global bool to
862 // keep track of whether the global was initialized yet or not.
863 GlobalVariable *InitBool =
Chris Lattner7b550cc2009-11-06 04:27:31 +0000864 new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
Victor Hernandez83d63912009-09-18 22:35:49 +0000865 GlobalValue::InternalLinkage,
Chris Lattner7b550cc2009-11-06 04:27:31 +0000866 ConstantInt::getFalse(GV->getContext()),
867 GV->getName()+".init", GV->isThreadLocal());
Victor Hernandez83d63912009-09-18 22:35:49 +0000868 bool InitBoolUsed = false;
869
870 // Loop over all uses of GV, processing them in turn.
Chris Lattnera6874652010-02-25 22:33:52 +0000871 while (!GV->use_empty()) {
872 if (StoreInst *SI = dyn_cast<StoreInst>(GV->use_back())) {
Victor Hernandez83d63912009-09-18 22:35:49 +0000873 // The global is initialized when the store to it occurs.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000874 new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, SI);
Victor Hernandez83d63912009-09-18 22:35:49 +0000875 SI->eraseFromParent();
Chris Lattnera6874652010-02-25 22:33:52 +0000876 continue;
Victor Hernandez83d63912009-09-18 22:35:49 +0000877 }
Chris Lattnera6874652010-02-25 22:33:52 +0000878
879 LoadInst *LI = cast<LoadInst>(GV->use_back());
880 while (!LI->use_empty()) {
881 Use &LoadUse = LI->use_begin().getUse();
882 if (!isa<ICmpInst>(LoadUse.getUser())) {
883 LoadUse = RepValue;
884 continue;
885 }
886
887 ICmpInst *ICI = cast<ICmpInst>(LoadUse.getUser());
888 // Replace the cmp X, 0 with a use of the bool value.
889 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", ICI);
890 InitBoolUsed = true;
891 switch (ICI->getPredicate()) {
892 default: llvm_unreachable("Unknown ICmp Predicate!");
893 case ICmpInst::ICMP_ULT:
894 case ICmpInst::ICMP_SLT: // X < null -> always false
895 LV = ConstantInt::getFalse(GV->getContext());
896 break;
897 case ICmpInst::ICMP_ULE:
898 case ICmpInst::ICMP_SLE:
899 case ICmpInst::ICMP_EQ:
900 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
901 break;
902 case ICmpInst::ICMP_NE:
903 case ICmpInst::ICMP_UGE:
904 case ICmpInst::ICMP_SGE:
905 case ICmpInst::ICMP_UGT:
906 case ICmpInst::ICMP_SGT:
907 break; // no change.
908 }
909 ICI->replaceAllUsesWith(LV);
910 ICI->eraseFromParent();
911 }
912 LI->eraseFromParent();
913 }
Victor Hernandez83d63912009-09-18 22:35:49 +0000914
915 // If the initialization boolean was used, insert it, otherwise delete it.
916 if (!InitBoolUsed) {
917 while (!InitBool->use_empty()) // Delete initializations
Chris Lattnera6874652010-02-25 22:33:52 +0000918 cast<StoreInst>(InitBool->use_back())->eraseFromParent();
Victor Hernandez83d63912009-09-18 22:35:49 +0000919 delete InitBool;
920 } else
921 GV->getParent()->getGlobalList().insert(GV, InitBool);
922
Chris Lattnera6874652010-02-25 22:33:52 +0000923 // Now the GV is dead, nuke it and the malloc..
Victor Hernandez83d63912009-09-18 22:35:49 +0000924 GV->eraseFromParent();
Victor Hernandez83d63912009-09-18 22:35:49 +0000925 CI->eraseFromParent();
926
927 // To further other optimizations, loop over all users of NewGV and try to
928 // constant prop them. This will promote GEP instructions with constant
929 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000930 ConstantPropUsersOf(NewGV);
Victor Hernandez83d63912009-09-18 22:35:49 +0000931 if (RepValue != NewGV)
Chris Lattner7b550cc2009-11-06 04:27:31 +0000932 ConstantPropUsersOf(RepValue);
Victor Hernandez83d63912009-09-18 22:35:49 +0000933
934 return NewGV;
935}
936
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000937/// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
938/// to make sure that there are no complex uses of V. We permit simple things
939/// like dereferencing the pointer, but not storing through the address, unless
940/// it is to the specified global.
941static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Instruction *V,
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000942 GlobalVariable *GV,
943 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner49b6d4a2008-12-15 21:08:54 +0000944 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
Jay Foad0906b1b2009-06-06 17:49:35 +0000945 Instruction *Inst = cast<Instruction>(*UI);
Chris Lattner49b6d4a2008-12-15 21:08:54 +0000946
947 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
948 continue; // Fine, ignore.
949 }
950
951 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000952 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
953 return false; // Storing the pointer itself... bad.
Chris Lattner49b6d4a2008-12-15 21:08:54 +0000954 continue; // Otherwise, storing through it, or storing into GV... fine.
955 }
956
957 if (isa<GetElementPtrInst>(Inst)) {
958 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000959 return false;
Chris Lattner49b6d4a2008-12-15 21:08:54 +0000960 continue;
961 }
962
963 if (PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000964 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
965 // cycles.
966 if (PHIs.insert(PN))
Chris Lattner5e6e4942007-09-14 03:41:21 +0000967 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
968 return false;
Chris Lattner49b6d4a2008-12-15 21:08:54 +0000969 continue;
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000970 }
Chris Lattner49b6d4a2008-12-15 21:08:54 +0000971
972 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
973 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
974 return false;
975 continue;
976 }
977
978 return false;
979 }
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000980 return true;
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000981}
982
Chris Lattner86395032006-09-30 23:32:09 +0000983/// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
984/// somewhere. Transform all uses of the allocation into loads from the
985/// global and uses of the resultant pointer. Further, delete the store into
986/// GV. This assumes that these value pass the
987/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
988static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
989 GlobalVariable *GV) {
990 while (!Alloc->use_empty()) {
Chris Lattnera637a8b2007-09-13 18:00:31 +0000991 Instruction *U = cast<Instruction>(*Alloc->use_begin());
992 Instruction *InsertPt = U;
Chris Lattner86395032006-09-30 23:32:09 +0000993 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
994 // If this is the store of the allocation into the global, remove it.
995 if (SI->getOperand(1) == GV) {
996 SI->eraseFromParent();
997 continue;
998 }
Chris Lattnera637a8b2007-09-13 18:00:31 +0000999 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
1000 // Insert the load in the corresponding predecessor, not right before the
1001 // PHI.
Gabor Greifa36791d2009-01-23 19:40:15 +00001002 InsertPt = PN->getIncomingBlock(Alloc->use_begin())->getTerminator();
Chris Lattner101f44e2008-12-15 21:44:34 +00001003 } else if (isa<BitCastInst>(U)) {
1004 // Must be bitcast between the malloc and store to initialize the global.
1005 ReplaceUsesOfMallocWithGlobal(U, GV);
1006 U->eraseFromParent();
1007 continue;
1008 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
1009 // If this is a "GEP bitcast" and the user is a store to the global, then
1010 // just process it as a bitcast.
1011 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
1012 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->use_back()))
1013 if (SI->getOperand(1) == GV) {
1014 // Must be bitcast GEP between the malloc and store to initialize
1015 // the global.
1016 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1017 GEPI->eraseFromParent();
1018 continue;
1019 }
Chris Lattner86395032006-09-30 23:32:09 +00001020 }
Chris Lattner101f44e2008-12-15 21:44:34 +00001021
Chris Lattner86395032006-09-30 23:32:09 +00001022 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnera637a8b2007-09-13 18:00:31 +00001023 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner86395032006-09-30 23:32:09 +00001024 U->replaceUsesOfWith(Alloc, NL);
1025 }
1026}
1027
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001028/// LoadUsesSimpleEnoughForHeapSRA - Verify that all uses of V (a load, or a phi
1029/// of a load) are simple enough to perform heap SRA on. This permits GEP's
1030/// that index through the array and struct field, icmps of null, and PHIs.
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001031static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
1032 SmallPtrSet<const PHINode*, 32> &LoadUsingPHIs,
1033 SmallPtrSet<const PHINode*, 32> &LoadUsingPHIsPerLoad) {
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001034 // We permit two users of the load: setcc comparing against the null
1035 // pointer, and a getelementptr of a specific form.
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001036 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
1037 const Instruction *User = cast<Instruction>(*UI);
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001038
1039 // Comparison against null is ok.
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001040 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(User)) {
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001041 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1042 return false;
1043 continue;
1044 }
1045
1046 // getelementptr is also ok, but only a simple form.
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001047 if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(User)) {
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001048 // Must index into the array and into the struct.
1049 if (GEPI->getNumOperands() < 3)
1050 return false;
1051
1052 // Otherwise the GEP is ok.
1053 continue;
1054 }
1055
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001056 if (const PHINode *PN = dyn_cast<PHINode>(User)) {
Evan Cheng5d163962009-06-02 00:56:07 +00001057 if (!LoadUsingPHIsPerLoad.insert(PN))
1058 // This means some phi nodes are dependent on each other.
1059 // Avoid infinite looping!
1060 return false;
1061 if (!LoadUsingPHIs.insert(PN))
1062 // If we have already analyzed this PHI, then it is safe.
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001063 continue;
1064
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001065 // Make sure all uses of the PHI are simple enough to transform.
Evan Cheng5d163962009-06-02 00:56:07 +00001066 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1067 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001068 return false;
1069
1070 continue;
Chris Lattner86395032006-09-30 23:32:09 +00001071 }
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001072
1073 // Otherwise we don't know what this is, not ok.
1074 return false;
1075 }
1076
1077 return true;
1078}
1079
1080
1081/// AllGlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
1082/// GV are simple enough to perform HeapSRA, return true.
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001083static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
Victor Hernandez83d63912009-09-18 22:35:49 +00001084 Instruction *StoredVal) {
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001085 SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1086 SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
1087 for (Value::const_use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001088 ++UI)
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001089 if (const LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
Evan Cheng5d163962009-06-02 00:56:07 +00001090 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1091 LoadUsingPHIsPerLoad))
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001092 return false;
Evan Cheng5d163962009-06-02 00:56:07 +00001093 LoadUsingPHIsPerLoad.clear();
1094 }
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001095
1096 // If we reach here, we know that all uses of the loads and transitive uses
1097 // (through PHI nodes) are simple enough to transform. However, we don't know
1098 // that all inputs the to the PHI nodes are in the same equivalence sets.
1099 // Check to verify that all operands of the PHIs are either PHIS that can be
1100 // transformed, loads from GV, or MI itself.
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001101 for (SmallPtrSet<const PHINode*, 32>::const_iterator I = LoadUsingPHIs.begin(),
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001102 E = LoadUsingPHIs.end(); I != E; ++I) {
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001103 const PHINode *PN = *I;
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001104 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1105 Value *InVal = PN->getIncomingValue(op);
1106
1107 // PHI of the stored value itself is ok.
Victor Hernandez83d63912009-09-18 22:35:49 +00001108 if (InVal == StoredVal) continue;
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001109
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001110 if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001111 // One of the PHIs in our set is (optimistically) ok.
1112 if (LoadUsingPHIs.count(InPN))
1113 continue;
1114 return false;
1115 }
1116
1117 // Load from GV is ok.
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001118 if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001119 if (LI->getOperand(0) == GV)
1120 continue;
1121
1122 // UNDEF? NULL?
1123
1124 // Anything else is rejected.
1125 return false;
1126 }
1127 }
1128
Chris Lattner86395032006-09-30 23:32:09 +00001129 return true;
1130}
1131
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001132static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1133 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001134 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001135 std::vector<Value*> &FieldVals = InsertedScalarizedValues[V];
1136
1137 if (FieldNo >= FieldVals.size())
1138 FieldVals.resize(FieldNo+1);
1139
1140 // If we already have this value, just reuse the previously scalarized
1141 // version.
1142 if (Value *FieldVal = FieldVals[FieldNo])
1143 return FieldVal;
1144
1145 // Depending on what instruction this is, we have several cases.
1146 Value *Result;
1147 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1148 // This is a scalarized version of the load from the global. Just create
1149 // a new Load of the scalarized global.
1150 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1151 InsertedScalarizedValues,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001152 PHIsToRewrite),
Daniel Dunbarfe09b202009-07-30 17:37:43 +00001153 LI->getName()+".f"+Twine(FieldNo), LI);
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001154 } else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1155 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1156 // field.
1157 const StructType *ST =
1158 cast<StructType>(cast<PointerType>(PN->getType())->getElementType());
1159
Owen Anderson14ce9ef2009-07-06 01:34:54 +00001160 Result =
Owen Andersondebcb012009-07-29 22:17:13 +00001161 PHINode::Create(PointerType::getUnqual(ST->getElementType(FieldNo)),
Daniel Dunbarfe09b202009-07-30 17:37:43 +00001162 PN->getName()+".f"+Twine(FieldNo), PN);
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001163 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
1164 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00001165 llvm_unreachable("Unknown usable value");
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001166 Result = 0;
1167 }
1168
1169 return FieldVals[FieldNo] = Result;
Chris Lattnera637a8b2007-09-13 18:00:31 +00001170}
1171
Chris Lattner330245e2007-09-13 17:29:05 +00001172/// RewriteHeapSROALoadUser - Given a load instruction and a value derived from
1173/// the load, rewrite the derived value to use the HeapSRoA'd load.
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001174static void RewriteHeapSROALoadUser(Instruction *LoadUser,
1175 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001176 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattner330245e2007-09-13 17:29:05 +00001177 // If this is a comparison against null, handle it.
1178 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1179 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1180 // If we have a setcc of the loaded pointer, we can use a setcc of any
1181 // field.
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001182 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001183 InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner330245e2007-09-13 17:29:05 +00001184
Owen Anderson333c4002009-07-09 23:48:35 +00001185 Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
Owen Andersona7235ea2009-07-31 20:28:14 +00001186 Constant::getNullValue(NPtr->getType()),
Owen Anderson333c4002009-07-09 23:48:35 +00001187 SCI->getName());
Chris Lattner330245e2007-09-13 17:29:05 +00001188 SCI->replaceAllUsesWith(New);
1189 SCI->eraseFromParent();
1190 return;
1191 }
1192
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001193 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattnera637a8b2007-09-13 18:00:31 +00001194 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1195 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1196 && "Unexpected GEPI!");
Chris Lattner330245e2007-09-13 17:29:05 +00001197
Chris Lattnera637a8b2007-09-13 18:00:31 +00001198 // Load the pointer for this field.
1199 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001200 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001201 InsertedScalarizedValues, PHIsToRewrite);
Chris Lattnera637a8b2007-09-13 18:00:31 +00001202
1203 // Create the new GEP idx vector.
1204 SmallVector<Value*, 8> GEPIdx;
1205 GEPIdx.push_back(GEPI->getOperand(1));
1206 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
1207
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001208 Value *NGEPI = GetElementPtrInst::Create(NewPtr,
1209 GEPIdx.begin(), GEPIdx.end(),
Gabor Greif051a9502008-04-06 20:25:17 +00001210 GEPI->getName(), GEPI);
Chris Lattnera637a8b2007-09-13 18:00:31 +00001211 GEPI->replaceAllUsesWith(NGEPI);
1212 GEPI->eraseFromParent();
1213 return;
1214 }
Chris Lattner309f20f2007-09-13 21:31:36 +00001215
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001216 // Recursively transform the users of PHI nodes. This will lazily create the
1217 // PHIs that are needed for individual elements. Keep track of what PHIs we
1218 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1219 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1220 // already been seen first by another load, so its uses have already been
1221 // processed.
1222 PHINode *PN = cast<PHINode>(LoadUser);
1223 bool Inserted;
1224 DenseMap<Value*, std::vector<Value*> >::iterator InsertPos;
1225 tie(InsertPos, Inserted) =
1226 InsertedScalarizedValues.insert(std::make_pair(PN, std::vector<Value*>()));
1227 if (!Inserted) return;
Chris Lattner309f20f2007-09-13 21:31:36 +00001228
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001229 // If this is the first time we've seen this PHI, recursively process all
1230 // users.
Chris Lattnerf49a28c2008-12-17 05:42:08 +00001231 for (Value::use_iterator UI = PN->use_begin(), E = PN->use_end(); UI != E; ) {
1232 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner7b550cc2009-11-06 04:27:31 +00001233 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattnerf49a28c2008-12-17 05:42:08 +00001234 }
Chris Lattner330245e2007-09-13 17:29:05 +00001235}
1236
Chris Lattner86395032006-09-30 23:32:09 +00001237/// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global. Ptr
1238/// is a value loaded from the global. Eliminate all uses of Ptr, making them
1239/// use FieldGlobals instead. All uses of loaded values satisfy
Chris Lattner85d3d4f2008-12-16 21:24:51 +00001240/// AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Chris Lattner330245e2007-09-13 17:29:05 +00001241static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001242 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001243 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001244 for (Value::use_iterator UI = Load->use_begin(), E = Load->use_end();
Chris Lattnerf49a28c2008-12-17 05:42:08 +00001245 UI != E; ) {
1246 Instruction *User = cast<Instruction>(*UI++);
Chris Lattner7b550cc2009-11-06 04:27:31 +00001247 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
Chris Lattnerf49a28c2008-12-17 05:42:08 +00001248 }
Chris Lattnerbce4afe2008-12-17 05:28:49 +00001249
1250 if (Load->use_empty()) {
1251 Load->eraseFromParent();
1252 InsertedScalarizedValues.erase(Load);
1253 }
Chris Lattner86395032006-09-30 23:32:09 +00001254}
1255
Victor Hernandez83d63912009-09-18 22:35:49 +00001256/// PerformHeapAllocSRoA - CI is an allocation of an array of structures. Break
1257/// it up into multiple allocations of arrays of the fields.
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001258static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
1259 Value* NElems, TargetData *TD) {
David Greene3215b0e2010-01-05 01:28:05 +00001260 DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *CI << '\n');
Victor Hernandez83d63912009-09-18 22:35:49 +00001261 const Type* MAT = getMallocAllocatedType(CI);
1262 const StructType *STy = cast<StructType>(MAT);
1263
1264 // There is guaranteed to be at least one use of the malloc (storing
1265 // it into GV). If there are other uses, change them to be uses of
1266 // the global to simplify later code. This also deletes the store
1267 // into GV.
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001268 ReplaceUsesOfMallocWithGlobal(CI, GV);
1269
Victor Hernandez83d63912009-09-18 22:35:49 +00001270 // Okay, at this point, there are no users of the malloc. Insert N
1271 // new mallocs at the same place as CI, and N globals.
1272 std::vector<Value*> FieldGlobals;
1273 std::vector<Value*> FieldMallocs;
1274
1275 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
1276 const Type *FieldTy = STy->getElementType(FieldNo);
1277 const PointerType *PFieldTy = PointerType::getUnqual(FieldTy);
1278
1279 GlobalVariable *NGV =
1280 new GlobalVariable(*GV->getParent(),
1281 PFieldTy, false, GlobalValue::InternalLinkage,
1282 Constant::getNullValue(PFieldTy),
1283 GV->getName() + ".f" + Twine(FieldNo), GV,
1284 GV->isThreadLocal());
1285 FieldGlobals.push_back(NGV);
1286
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001287 unsigned TypeSize = TD->getTypeAllocSize(FieldTy);
Victor Hernandez631f3c02009-11-07 00:41:19 +00001288 if (const StructType *ST = dyn_cast<StructType>(FieldTy))
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001289 TypeSize = TD->getStructLayout(ST)->getSizeInBytes();
Victor Hernandez631f3c02009-11-07 00:41:19 +00001290 const Type *IntPtrTy = TD->getIntPtrType(CI->getContext());
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001291 Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1292 ConstantInt::get(IntPtrTy, TypeSize),
1293 NElems,
1294 CI->getName() + ".f" + Twine(FieldNo));
Chris Lattner3f5e0b82010-02-26 18:23:13 +00001295 FieldMallocs.push_back(NMI);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001296 new StoreInst(NMI, NGV, CI);
Victor Hernandez83d63912009-09-18 22:35:49 +00001297 }
1298
1299 // The tricky aspect of this transformation is handling the case when malloc
1300 // fails. In the original code, malloc failing would set the result pointer
1301 // of malloc to null. In this case, some mallocs could succeed and others
1302 // could fail. As such, we emit code that looks like this:
1303 // F0 = malloc(field0)
1304 // F1 = malloc(field1)
1305 // F2 = malloc(field2)
1306 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1307 // if (F0) { free(F0); F0 = 0; }
1308 // if (F1) { free(F1); F1 = 0; }
1309 // if (F2) { free(F2); F2 = 0; }
1310 // }
Victor Hernandez8e345a12009-11-10 08:32:25 +00001311 // The malloc can also fail if its argument is too large.
1312 Constant *ConstantZero = ConstantInt::get(CI->getOperand(1)->getType(), 0);
1313 Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getOperand(1),
1314 ConstantZero, "isneg");
Victor Hernandez83d63912009-09-18 22:35:49 +00001315 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001316 Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1317 Constant::getNullValue(FieldMallocs[i]->getType()),
1318 "isnull");
Victor Hernandez8e345a12009-11-10 08:32:25 +00001319 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
Victor Hernandez83d63912009-09-18 22:35:49 +00001320 }
1321
1322 // Split the basic block at the old malloc.
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001323 BasicBlock *OrigBB = CI->getParent();
1324 BasicBlock *ContBB = OrigBB->splitBasicBlock(CI, "malloc_cont");
Victor Hernandez83d63912009-09-18 22:35:49 +00001325
1326 // Create the block to check the first condition. Put all these blocks at the
1327 // end of the function as they are unlikely to be executed.
Chris Lattner7b550cc2009-11-06 04:27:31 +00001328 BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1329 "malloc_ret_null",
Victor Hernandez83d63912009-09-18 22:35:49 +00001330 OrigBB->getParent());
1331
1332 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1333 // branch on RunningOr.
1334 OrigBB->getTerminator()->eraseFromParent();
1335 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
1336
1337 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1338 // pointer, because some may be null while others are not.
1339 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1340 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
1341 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
1342 Constant::getNullValue(GVVal->getType()),
1343 "tmp");
Chris Lattner7b550cc2009-11-06 04:27:31 +00001344 BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
Victor Hernandez83d63912009-09-18 22:35:49 +00001345 OrigBB->getParent());
Chris Lattner7b550cc2009-11-06 04:27:31 +00001346 BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
Victor Hernandez83d63912009-09-18 22:35:49 +00001347 OrigBB->getParent());
Victor Hernandez66284e02009-10-24 04:23:03 +00001348 Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1349 Cmp, NullPtrBlock);
Victor Hernandez83d63912009-09-18 22:35:49 +00001350
1351 // Fill in FreeBlock.
Victor Hernandez66284e02009-10-24 04:23:03 +00001352 CallInst::CreateFree(GVVal, BI);
Victor Hernandez83d63912009-09-18 22:35:49 +00001353 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1354 FreeBlock);
1355 BranchInst::Create(NextBlock, FreeBlock);
1356
1357 NullPtrBlock = NextBlock;
1358 }
1359
1360 BranchInst::Create(ContBB, NullPtrBlock);
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001361
1362 // CI is no longer needed, remove it.
Victor Hernandez83d63912009-09-18 22:35:49 +00001363 CI->eraseFromParent();
1364
1365 /// InsertedScalarizedLoads - As we process loads, if we can't immediately
1366 /// update all uses of the load, keep track of what scalarized loads are
1367 /// inserted for a given load.
1368 DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1369 InsertedScalarizedValues[GV] = FieldGlobals;
1370
1371 std::vector<std::pair<PHINode*, unsigned> > PHIsToRewrite;
1372
1373 // Okay, the malloc site is completely handled. All of the uses of GV are now
1374 // loads, and all uses of those loads are simple. Rewrite them to use loads
1375 // of the per-field globals instead.
1376 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;) {
1377 Instruction *User = cast<Instruction>(*UI++);
1378
1379 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner7b550cc2009-11-06 04:27:31 +00001380 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
Victor Hernandez83d63912009-09-18 22:35:49 +00001381 continue;
1382 }
1383
1384 // Must be a store of null.
1385 StoreInst *SI = cast<StoreInst>(User);
1386 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1387 "Unexpected heap-sra user!");
1388
1389 // Insert a store of null into each global.
1390 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1391 const PointerType *PT = cast<PointerType>(FieldGlobals[i]->getType());
1392 Constant *Null = Constant::getNullValue(PT->getElementType());
1393 new StoreInst(Null, FieldGlobals[i], SI);
1394 }
1395 // Erase the original store.
1396 SI->eraseFromParent();
1397 }
1398
1399 // While we have PHIs that are interesting to rewrite, do it.
1400 while (!PHIsToRewrite.empty()) {
1401 PHINode *PN = PHIsToRewrite.back().first;
1402 unsigned FieldNo = PHIsToRewrite.back().second;
1403 PHIsToRewrite.pop_back();
1404 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1405 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1406
1407 // Add all the incoming values. This can materialize more phis.
1408 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1409 Value *InVal = PN->getIncomingValue(i);
1410 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001411 PHIsToRewrite);
Victor Hernandez83d63912009-09-18 22:35:49 +00001412 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1413 }
1414 }
1415
1416 // Drop all inter-phi links and any loads that made it this far.
1417 for (DenseMap<Value*, std::vector<Value*> >::iterator
1418 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1419 I != E; ++I) {
1420 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1421 PN->dropAllReferences();
1422 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1423 LI->dropAllReferences();
1424 }
1425
1426 // Delete all the phis and loads now that inter-references are dead.
1427 for (DenseMap<Value*, std::vector<Value*> >::iterator
1428 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1429 I != E; ++I) {
1430 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1431 PN->eraseFromParent();
1432 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1433 LI->eraseFromParent();
1434 }
1435
1436 // The old global is now dead, remove it.
1437 GV->eraseFromParent();
1438
1439 ++NumHeapSRA;
1440 return cast<GlobalVariable>(FieldGlobals[0]);
1441}
1442
Chris Lattnere61d0a62008-12-15 21:02:25 +00001443/// TryToOptimizeStoreOfMallocToGlobal - This function is called when we see a
1444/// pointer global variable with a single value stored it that is a malloc or
1445/// cast of malloc.
1446static bool TryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV,
Victor Hernandez83d63912009-09-18 22:35:49 +00001447 CallInst *CI,
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001448 const Type *AllocTy,
Victor Hernandez83d63912009-09-18 22:35:49 +00001449 Module::global_iterator &GVI,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001450 TargetData *TD) {
Victor Hernandez83d63912009-09-18 22:35:49 +00001451 // If this is a malloc of an abstract type, don't touch it.
1452 if (!AllocTy->isSized())
1453 return false;
1454
1455 // We can't optimize this global unless all uses of it are *known* to be
1456 // of the malloc value, not of the null initializer value (consider a use
1457 // that compares the global's value against zero to see if the malloc has
1458 // been reached). To do this, we check to see if all uses of the global
1459 // would trap if the global were null: this proves that they must all
1460 // happen after the malloc.
1461 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1462 return false;
1463
1464 // We can't optimize this if the malloc itself is used in a complex way,
1465 // for example, being stored into multiple globals. This allows the
1466 // malloc to be stored into the specified global, loaded setcc'd, and
1467 // GEP'd. These are all things we could transform to using the global
1468 // for.
1469 {
1470 SmallPtrSet<PHINode*, 8> PHIs;
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001471 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
Victor Hernandez83d63912009-09-18 22:35:49 +00001472 return false;
1473 }
1474
1475 // If we have a global that is only initialized with a fixed size malloc,
1476 // transform the program to use global memory instead of malloc'd memory.
1477 // This eliminates dynamic allocation, avoids an indirection accessing the
1478 // data, and exposes the resultant global to further GlobalOpt.
Victor Hernandez8db42d22009-10-16 23:12:25 +00001479 // We cannot optimize the malloc if we cannot determine malloc array size.
Victor Hernandez8e345a12009-11-10 08:32:25 +00001480 if (Value *NElems = getMallocArraySize(CI, TD, true)) {
Victor Hernandez2491ce02009-10-15 20:14:52 +00001481 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1482 // Restrict this transformation to only working on small allocations
1483 // (2048 bytes currently), as we don't want to introduce a 16M global or
1484 // something.
1485 if (TD &&
1486 NElements->getZExtValue() * TD->getTypeAllocSize(AllocTy) < 2048) {
Chris Lattnera6874652010-02-25 22:33:52 +00001487 GVI = OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, TD);
Victor Hernandez2491ce02009-10-15 20:14:52 +00001488 return true;
1489 }
Victor Hernandez83d63912009-09-18 22:35:49 +00001490
Victor Hernandez8db42d22009-10-16 23:12:25 +00001491 // If the allocation is an array of structures, consider transforming this
1492 // into multiple malloc'd arrays, one for each field. This is basically
1493 // SRoA for malloc'd memory.
Victor Hernandez83d63912009-09-18 22:35:49 +00001494
Victor Hernandez8db42d22009-10-16 23:12:25 +00001495 // If this is an allocation of a fixed size array of structs, analyze as a
1496 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
Victor Hernandez90f48e72009-10-28 20:18:55 +00001497 if (NElems == ConstantInt::get(CI->getOperand(1)->getType(), 1))
Victor Hernandez8db42d22009-10-16 23:12:25 +00001498 if (const ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
1499 AllocTy = AT->getElementType();
Victor Hernandez83d63912009-09-18 22:35:49 +00001500
Victor Hernandez8db42d22009-10-16 23:12:25 +00001501 if (const StructType *AllocSTy = dyn_cast<StructType>(AllocTy)) {
1502 // This the structure has an unreasonable number of fields, leave it
1503 // alone.
1504 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001505 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
Victor Hernandez83d63912009-09-18 22:35:49 +00001506
Victor Hernandez8db42d22009-10-16 23:12:25 +00001507 // If this is a fixed size array, transform the Malloc to be an alloc of
1508 // structs. malloc [100 x struct],1 -> malloc struct, 100
1509 if (const ArrayType *AT =
1510 dyn_cast<ArrayType>(getMallocAllocatedType(CI))) {
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001511 const Type *IntPtrTy = TD->getIntPtrType(CI->getContext());
1512 unsigned TypeSize = TD->getStructLayout(AllocSTy)->getSizeInBytes();
1513 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1514 Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
1515 Instruction *Malloc = CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy,
1516 AllocSize, NumElements,
1517 CI->getName());
1518 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1519 CI->replaceAllUsesWith(Cast);
Victor Hernandez8db42d22009-10-16 23:12:25 +00001520 CI->eraseFromParent();
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001521 CI = dyn_cast<BitCastInst>(Malloc) ?
Victor Hernandez631f3c02009-11-07 00:41:19 +00001522 extractMallocCallFromBitCast(Malloc) : cast<CallInst>(Malloc);
Victor Hernandez8db42d22009-10-16 23:12:25 +00001523 }
Victor Hernandez83d63912009-09-18 22:35:49 +00001524
Victor Hernandez8e345a12009-11-10 08:32:25 +00001525 GVI = PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, TD, true),TD);
Victor Hernandez8db42d22009-10-16 23:12:25 +00001526 return true;
1527 }
Victor Hernandez83d63912009-09-18 22:35:49 +00001528 }
1529 }
1530
1531 return false;
1532}
1533
Chris Lattner9b34a612004-10-09 21:48:45 +00001534// OptimizeOnceStoredGlobal - Try to optimize globals based on the knowledge
1535// that only one value (besides its initializer) is ever stored to the global.
Chris Lattner30ba5692004-10-11 05:54:41 +00001536static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Chris Lattner7f8897f2006-08-27 22:42:52 +00001537 Module::global_iterator &GVI,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001538 TargetData *TD) {
Chris Lattner344b41c2008-12-15 21:20:32 +00001539 // Ignore no-op GEPs and bitcasts.
1540 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Chris Lattner9b34a612004-10-09 21:48:45 +00001541
Chris Lattner708148e2004-10-10 23:14:11 +00001542 // If we are dealing with a pointer global that is initialized to null and
1543 // only has one (non-null) value stored into it, then we can optimize any
1544 // users of the loaded value (often calls and loads) that would trap if the
1545 // value was null.
Duncan Sands1df98592010-02-16 11:11:14 +00001546 if (GV->getInitializer()->getType()->isPointerTy() &&
Chris Lattner9b34a612004-10-09 21:48:45 +00001547 GV->getInitializer()->isNullValue()) {
Chris Lattner708148e2004-10-10 23:14:11 +00001548 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1549 if (GV->getInitializer()->getType() != SOVC->getType())
Owen Anderson14ce9ef2009-07-06 01:34:54 +00001550 SOVC =
Owen Andersonbaf3c402009-07-29 18:55:55 +00001551 ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanfd939082005-04-21 23:48:37 +00001552
Chris Lattner708148e2004-10-10 23:14:11 +00001553 // Optimize away any trapping uses of the loaded value.
Chris Lattner7b550cc2009-11-06 04:27:31 +00001554 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC))
Chris Lattner8be80122004-10-10 17:07:12 +00001555 return true;
Victor Hernandez83d63912009-09-18 22:35:49 +00001556 } else if (CallInst *CI = extractMallocCall(StoredOnceVal)) {
Victor Hernandez9d0b7042009-11-07 00:16:28 +00001557 const Type* MallocType = getMallocAllocatedType(CI);
1558 if (MallocType && TryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType,
1559 GVI, TD))
1560 return true;
Chris Lattner708148e2004-10-10 23:14:11 +00001561 }
Chris Lattner9b34a612004-10-09 21:48:45 +00001562 }
Chris Lattner30ba5692004-10-11 05:54:41 +00001563
Chris Lattner9b34a612004-10-09 21:48:45 +00001564 return false;
1565}
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001566
Chris Lattner58e44f42008-01-14 01:17:44 +00001567/// TryToShrinkGlobalToBoolean - At this point, we have learned that the only
1568/// two values ever stored into GV are its initializer and OtherVal. See if we
1569/// can shrink the global into a boolean and select between the two values
1570/// whenever it is used. This exposes the values to other scalar optimizations.
Chris Lattner7b550cc2009-11-06 04:27:31 +00001571static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
Chris Lattner58e44f42008-01-14 01:17:44 +00001572 const Type *GVElType = GV->getType()->getElementType();
1573
1574 // If GVElType is already i1, it is already shrunk. If the type of the GV is
Chris Lattner6f6923f2009-03-07 23:32:02 +00001575 // an FP value, pointer or vector, don't do this optimization because a select
1576 // between them is very expensive and unlikely to lead to later
1577 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1578 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattner7b550cc2009-11-06 04:27:31 +00001579 if (GVElType == Type::getInt1Ty(GV->getContext()) ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001580 GVElType->isFloatingPointTy() ||
Duncan Sands1df98592010-02-16 11:11:14 +00001581 GVElType->isPointerTy() || GVElType->isVectorTy())
Chris Lattner58e44f42008-01-14 01:17:44 +00001582 return false;
1583
1584 // Walk the use list of the global seeing if all the uses are load or store.
1585 // If there is anything else, bail out.
1586 for (Value::use_iterator I = GV->use_begin(), E = GV->use_end(); I != E; ++I)
Devang Patel771281f2009-03-06 01:39:36 +00001587 if (!isa<LoadInst>(I) && !isa<StoreInst>(I))
Chris Lattner58e44f42008-01-14 01:17:44 +00001588 return false;
1589
David Greene3215b0e2010-01-05 01:28:05 +00001590 DEBUG(dbgs() << " *** SHRINKING TO BOOL: " << *GV);
Chris Lattner58e44f42008-01-14 01:17:44 +00001591
Chris Lattner96a86b22004-12-12 05:53:50 +00001592 // Create the new global, initializing it to false.
Chris Lattner7b550cc2009-11-06 04:27:31 +00001593 GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1594 false,
1595 GlobalValue::InternalLinkage,
1596 ConstantInt::getFalse(GV->getContext()),
Nick Lewycky0e670df2009-05-03 03:49:08 +00001597 GV->getName()+".b",
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001598 GV->isThreadLocal());
Chris Lattner96a86b22004-12-12 05:53:50 +00001599 GV->getParent()->getGlobalList().insert(GV, NewGV);
1600
1601 Constant *InitVal = GV->getInitializer();
Chris Lattner7b550cc2009-11-06 04:27:31 +00001602 assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
Owen Anderson1d0be152009-08-13 21:58:54 +00001603 "No reason to shrink to bool!");
Chris Lattner96a86b22004-12-12 05:53:50 +00001604
1605 // If initialized to zero and storing one into the global, we can use a cast
1606 // instead of a select to synthesize the desired value.
1607 bool IsOneZero = false;
1608 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
Reid Spencercae57542007-03-02 00:28:52 +00001609 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner96a86b22004-12-12 05:53:50 +00001610
1611 while (!GV->use_empty()) {
Devang Patel771281f2009-03-06 01:39:36 +00001612 Instruction *UI = cast<Instruction>(GV->use_back());
1613 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
Chris Lattner96a86b22004-12-12 05:53:50 +00001614 // Change the store into a boolean store.
1615 bool StoringOther = SI->getOperand(0) == OtherVal;
1616 // Only do this if we weren't storing a loaded value.
Chris Lattner38c25562004-12-12 19:34:41 +00001617 Value *StoreVal;
Chris Lattner96a86b22004-12-12 05:53:50 +00001618 if (StoringOther || SI->getOperand(0) == InitVal)
Chris Lattner7b550cc2009-11-06 04:27:31 +00001619 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1620 StoringOther);
Chris Lattner38c25562004-12-12 19:34:41 +00001621 else {
1622 // Otherwise, we are storing a previously loaded copy. To do this,
1623 // change the copy from copying the original value to just copying the
1624 // bool.
1625 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1626
1627 // If we're already replaced the input, StoredVal will be a cast or
1628 // select instruction. If not, it will be a load of the original
1629 // global.
1630 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1631 assert(LI->getOperand(0) == GV && "Not a copy!");
1632 // Insert a new load, to preserve the saved value.
1633 StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI);
1634 } else {
1635 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1636 "This is not a form that we understand!");
1637 StoreVal = StoredVal->getOperand(0);
1638 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1639 }
1640 }
1641 new StoreInst(StoreVal, NewGV, SI);
Devang Patel771281f2009-03-06 01:39:36 +00001642 } else {
Chris Lattner96a86b22004-12-12 05:53:50 +00001643 // Change the load into a load of bool then a select.
Devang Patel771281f2009-03-06 01:39:36 +00001644 LoadInst *LI = cast<LoadInst>(UI);
Chris Lattner046800a2007-02-11 01:08:35 +00001645 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", LI);
Chris Lattner96a86b22004-12-12 05:53:50 +00001646 Value *NSI;
1647 if (IsOneZero)
Chris Lattner046800a2007-02-11 01:08:35 +00001648 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
Misha Brukmanfd939082005-04-21 23:48:37 +00001649 else
Gabor Greif051a9502008-04-06 20:25:17 +00001650 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
Chris Lattner046800a2007-02-11 01:08:35 +00001651 NSI->takeName(LI);
Chris Lattner96a86b22004-12-12 05:53:50 +00001652 LI->replaceAllUsesWith(NSI);
Devang Patel771281f2009-03-06 01:39:36 +00001653 }
1654 UI->eraseFromParent();
Chris Lattner96a86b22004-12-12 05:53:50 +00001655 }
1656
1657 GV->eraseFromParent();
Chris Lattner58e44f42008-01-14 01:17:44 +00001658 return true;
Chris Lattner96a86b22004-12-12 05:53:50 +00001659}
1660
1661
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001662/// ProcessInternalGlobal - Analyze the specified global variable and optimize
1663/// it if possible. If we make a change, return true.
Chris Lattner30ba5692004-10-11 05:54:41 +00001664bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
Chris Lattnere4d5c442005-03-15 04:54:21 +00001665 Module::global_iterator &GVI) {
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001666 SmallPtrSet<const PHINode*, 16> PHIUsers;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001667 GlobalStatus GS;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001668 GV->removeDeadConstantUsers();
1669
1670 if (GV->use_empty()) {
David Greene3215b0e2010-01-05 01:28:05 +00001671 DEBUG(dbgs() << "GLOBAL DEAD: " << *GV);
Chris Lattner7a7ed022004-10-16 18:09:00 +00001672 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001673 ++NumDeleted;
1674 return true;
1675 }
1676
1677 if (!AnalyzeGlobal(GV, GS, PHIUsers)) {
Chris Lattnercff16732006-09-30 19:40:30 +00001678#if 0
David Greene3215b0e2010-01-05 01:28:05 +00001679 DEBUG(dbgs() << "Global: " << *GV);
1680 DEBUG(dbgs() << " isLoaded = " << GS.isLoaded << "\n");
1681 DEBUG(dbgs() << " StoredType = ");
Chris Lattnercff16732006-09-30 19:40:30 +00001682 switch (GS.StoredType) {
David Greene3215b0e2010-01-05 01:28:05 +00001683 case GlobalStatus::NotStored: DEBUG(dbgs() << "NEVER STORED\n"); break;
1684 case GlobalStatus::isInitializerStored: DEBUG(dbgs() << "INIT STORED\n");
Victor Hernandez631f3c02009-11-07 00:41:19 +00001685 break;
David Greene3215b0e2010-01-05 01:28:05 +00001686 case GlobalStatus::isStoredOnce: DEBUG(dbgs() << "STORED ONCE\n"); break;
1687 case GlobalStatus::isStored: DEBUG(dbgs() << "stored\n"); break;
Chris Lattnercff16732006-09-30 19:40:30 +00001688 }
1689 if (GS.StoredType == GlobalStatus::isStoredOnce && GS.StoredOnceValue)
David Greene3215b0e2010-01-05 01:28:05 +00001690 DEBUG(dbgs() << " StoredOnceValue = " << *GS.StoredOnceValue << "\n");
Chris Lattnercff16732006-09-30 19:40:30 +00001691 if (GS.AccessingFunction && !GS.HasMultipleAccessingFunctions)
David Greene3215b0e2010-01-05 01:28:05 +00001692 DEBUG(dbgs() << " AccessingFunction = " << GS.AccessingFunction->getName()
Victor Hernandez631f3c02009-11-07 00:41:19 +00001693 << "\n");
David Greene3215b0e2010-01-05 01:28:05 +00001694 DEBUG(dbgs() << " HasMultipleAccessingFunctions = "
Victor Hernandez631f3c02009-11-07 00:41:19 +00001695 << GS.HasMultipleAccessingFunctions << "\n");
David Greene3215b0e2010-01-05 01:28:05 +00001696 DEBUG(dbgs() << " HasNonInstructionUser = "
Victor Hernandez631f3c02009-11-07 00:41:19 +00001697 << GS.HasNonInstructionUser<<"\n");
David Greene3215b0e2010-01-05 01:28:05 +00001698 DEBUG(dbgs() << "\n");
Chris Lattnercff16732006-09-30 19:40:30 +00001699#endif
1700
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001701 // If this is a first class global and has only one accessing function
1702 // and this function is main (which we know is not recursive we can make
1703 // this global a local variable) we replace the global with a local alloca
1704 // in this function.
1705 //
Dan Gohman399101a2008-05-23 00:17:26 +00001706 // NOTE: It doesn't make sense to promote non single-value types since we
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001707 // are just replacing static memory to stack memory.
Sanjiv Gupta059aa8c2009-06-17 06:47:15 +00001708 //
1709 // If the global is in different address space, don't bring it to stack.
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001710 if (!GS.HasMultipleAccessingFunctions &&
Chris Lattner553ca522005-06-15 21:11:48 +00001711 GS.AccessingFunction && !GS.HasNonInstructionUser &&
Dan Gohman399101a2008-05-23 00:17:26 +00001712 GV->getType()->getElementType()->isSingleValueType() &&
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001713 GS.AccessingFunction->getName() == "main" &&
Sanjiv Gupta059aa8c2009-06-17 06:47:15 +00001714 GS.AccessingFunction->hasExternalLinkage() &&
1715 GV->getType()->getAddressSpace() == 0) {
David Greene3215b0e2010-01-05 01:28:05 +00001716 DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV);
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001717 Instruction& FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1718 ->getEntryBlock().begin());
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001719 const Type* ElemTy = GV->getType()->getElementType();
Nate Begeman14b05292005-11-05 09:21:28 +00001720 // FIXME: Pass Global's alignment when globals have alignment
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001721 AllocaInst* Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), &FirstI);
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001722 if (!isa<UndefValue>(GV->getInitializer()))
Gabor Greifc8b82cc2010-04-01 08:21:08 +00001723 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
Misha Brukmanfd939082005-04-21 23:48:37 +00001724
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001725 GV->replaceAllUsesWith(Alloca);
1726 GV->eraseFromParent();
1727 ++NumLocalized;
1728 return true;
1729 }
Chris Lattnercff16732006-09-30 19:40:30 +00001730
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001731 // If the global is never loaded (but may be stored to), it is dead.
1732 // Delete it now.
1733 if (!GS.isLoaded) {
David Greene3215b0e2010-01-05 01:28:05 +00001734 DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV);
Chris Lattner930f4752004-10-09 03:32:52 +00001735
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001736 // Delete any stores we can find to the global. We may not be able to
1737 // make it completely dead though.
Chris Lattner7b550cc2009-11-06 04:27:31 +00001738 bool Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer());
Chris Lattner930f4752004-10-09 03:32:52 +00001739
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001740 // If the global is dead now, delete it.
1741 if (GV->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +00001742 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001743 ++NumDeleted;
Chris Lattner930f4752004-10-09 03:32:52 +00001744 Changed = true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001745 }
Chris Lattner930f4752004-10-09 03:32:52 +00001746 return Changed;
Misha Brukmanfd939082005-04-21 23:48:37 +00001747
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001748 } else if (GS.StoredType <= GlobalStatus::isInitializerStored) {
David Greene3215b0e2010-01-05 01:28:05 +00001749 DEBUG(dbgs() << "MARKING CONSTANT: " << *GV);
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001750 GV->setConstant(true);
Misha Brukmanfd939082005-04-21 23:48:37 +00001751
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001752 // Clean up any obviously simplifiable users now.
Chris Lattner7b550cc2009-11-06 04:27:31 +00001753 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanfd939082005-04-21 23:48:37 +00001754
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001755 // If the global is dead now, just nuke it.
1756 if (GV->use_empty()) {
David Greene3215b0e2010-01-05 01:28:05 +00001757 DEBUG(dbgs() << " *** Marking constant allowed us to simplify "
Chris Lattnerbdff5482009-08-23 04:37:46 +00001758 << "all users and delete global!\n");
Chris Lattner7a7ed022004-10-16 18:09:00 +00001759 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001760 ++NumDeleted;
1761 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001762
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001763 ++NumMarked;
1764 return true;
Dan Gohman399101a2008-05-23 00:17:26 +00001765 } else if (!GV->getInitializer()->getType()->isSingleValueType()) {
Dan Gohman7eb28f32009-08-14 00:11:03 +00001766 if (TargetData *TD = getAnalysisIfAvailable<TargetData>())
Chris Lattner7b550cc2009-11-06 04:27:31 +00001767 if (GlobalVariable *FirstNewGV = SRAGlobal(GV, *TD)) {
Dan Gohman7eb28f32009-08-14 00:11:03 +00001768 GVI = FirstNewGV; // Don't skip the newly produced globals!
1769 return true;
1770 }
Chris Lattner9b34a612004-10-09 21:48:45 +00001771 } else if (GS.StoredType == GlobalStatus::isStoredOnce) {
Chris Lattner96a86b22004-12-12 05:53:50 +00001772 // If the initial value for the global was an undef value, and if only
1773 // one other value was stored into it, we can just change the
Duncan Sandsb5024402009-01-13 13:48:44 +00001774 // initializer to be the stored value, then delete all stores to the
Chris Lattner96a86b22004-12-12 05:53:50 +00001775 // global. This allows us to mark it constant.
1776 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1777 if (isa<UndefValue>(GV->getInitializer())) {
1778 // Change the initial value here.
1779 GV->setInitializer(SOVConstant);
Misha Brukmanfd939082005-04-21 23:48:37 +00001780
Chris Lattner96a86b22004-12-12 05:53:50 +00001781 // Clean up any obviously simplifiable users now.
Chris Lattner7b550cc2009-11-06 04:27:31 +00001782 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanfd939082005-04-21 23:48:37 +00001783
Chris Lattner96a86b22004-12-12 05:53:50 +00001784 if (GV->use_empty()) {
David Greene3215b0e2010-01-05 01:28:05 +00001785 DEBUG(dbgs() << " *** Substituting initializer allowed us to "
Chris Lattnerbdff5482009-08-23 04:37:46 +00001786 << "simplify all users and delete global!\n");
Chris Lattner96a86b22004-12-12 05:53:50 +00001787 GV->eraseFromParent();
1788 ++NumDeleted;
1789 } else {
1790 GVI = GV;
1791 }
1792 ++NumSubstitute;
1793 return true;
Chris Lattner7a7ed022004-10-16 18:09:00 +00001794 }
Chris Lattner7a7ed022004-10-16 18:09:00 +00001795
Chris Lattner9b34a612004-10-09 21:48:45 +00001796 // Try to optimize globals based on the knowledge that only one value
1797 // (besides its initializer) is ever stored to the global.
Chris Lattner30ba5692004-10-11 05:54:41 +00001798 if (OptimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GVI,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001799 getAnalysisIfAvailable<TargetData>()))
Chris Lattner9b34a612004-10-09 21:48:45 +00001800 return true;
Chris Lattner96a86b22004-12-12 05:53:50 +00001801
1802 // Otherwise, if the global was not a boolean, we can shrink it to be a
1803 // boolean.
1804 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
Chris Lattner7b550cc2009-11-06 04:27:31 +00001805 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Chris Lattner96a86b22004-12-12 05:53:50 +00001806 ++NumShrunkToBool;
1807 return true;
1808 }
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001809 }
1810 }
1811 return false;
1812}
1813
Chris Lattnerfb217ad2005-05-08 22:18:06 +00001814/// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
1815/// function, changing them to FastCC.
1816static void ChangeCalleesToFastCall(Function *F) {
1817 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
Duncan Sands548448a2008-02-18 17:32:13 +00001818 CallSite User(cast<Instruction>(*UI));
1819 User.setCallingConv(CallingConv::Fast);
Chris Lattnerfb217ad2005-05-08 22:18:06 +00001820 }
1821}
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001822
Devang Patel05988662008-09-25 21:00:45 +00001823static AttrListPtr StripNest(const AttrListPtr &Attrs) {
Chris Lattner58d74912008-03-12 17:45:29 +00001824 for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
Devang Patel05988662008-09-25 21:00:45 +00001825 if ((Attrs.getSlot(i).Attrs & Attribute::Nest) == 0)
Duncan Sands548448a2008-02-18 17:32:13 +00001826 continue;
1827
Duncan Sands548448a2008-02-18 17:32:13 +00001828 // There can be only one.
Devang Patel05988662008-09-25 21:00:45 +00001829 return Attrs.removeAttr(Attrs.getSlot(i).Index, Attribute::Nest);
Duncan Sands3d5378f2008-02-16 20:56:04 +00001830 }
1831
1832 return Attrs;
1833}
1834
1835static void RemoveNestAttribute(Function *F) {
Devang Patel05988662008-09-25 21:00:45 +00001836 F->setAttributes(StripNest(F->getAttributes()));
Duncan Sands3d5378f2008-02-16 20:56:04 +00001837 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
Duncan Sands548448a2008-02-18 17:32:13 +00001838 CallSite User(cast<Instruction>(*UI));
Devang Patel05988662008-09-25 21:00:45 +00001839 User.setAttributes(StripNest(User.getAttributes()));
Duncan Sands3d5378f2008-02-16 20:56:04 +00001840 }
1841}
1842
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001843bool GlobalOpt::OptimizeFunctions(Module &M) {
1844 bool Changed = false;
1845 // Optimize functions.
1846 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
1847 Function *F = FI++;
Duncan Sandsfc5940d2009-03-06 10:21:56 +00001848 // Functions without names cannot be referenced outside this module.
1849 if (!F->hasName() && !F->isDeclaration())
1850 F->setLinkage(GlobalValue::InternalLinkage);
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001851 F->removeDeadConstantUsers();
Chris Lattnerec4c7b92009-11-01 19:03:42 +00001852 if (F->use_empty() && (F->hasLocalLinkage() || F->hasLinkOnceLinkage())) {
1853 F->eraseFromParent();
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001854 Changed = true;
1855 ++NumFnDeleted;
Rafael Espindolabb46f522009-01-15 20:18:42 +00001856 } else if (F->hasLocalLinkage()) {
Duncan Sands3d5378f2008-02-16 20:56:04 +00001857 if (F->getCallingConv() == CallingConv::C && !F->isVarArg() &&
Jay Foad757068f2009-06-10 08:41:11 +00001858 !F->hasAddressTaken()) {
Duncan Sands3d5378f2008-02-16 20:56:04 +00001859 // If this function has C calling conventions, is not a varargs
1860 // function, and is only called directly, promote it to use the Fast
1861 // calling convention.
1862 F->setCallingConv(CallingConv::Fast);
1863 ChangeCalleesToFastCall(F);
1864 ++NumFastCallFns;
1865 Changed = true;
1866 }
1867
Devang Patel05988662008-09-25 21:00:45 +00001868 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
Jay Foad757068f2009-06-10 08:41:11 +00001869 !F->hasAddressTaken()) {
Duncan Sands3d5378f2008-02-16 20:56:04 +00001870 // The function is not used by a trampoline intrinsic, so it is safe
1871 // to remove the 'nest' attribute.
1872 RemoveNestAttribute(F);
1873 ++NumNestRemoved;
1874 Changed = true;
1875 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001876 }
1877 }
1878 return Changed;
1879}
1880
1881bool GlobalOpt::OptimizeGlobalVars(Module &M) {
1882 bool Changed = false;
1883 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
1884 GVI != E; ) {
1885 GlobalVariable *GV = GVI++;
Duncan Sandsfc5940d2009-03-06 10:21:56 +00001886 // Global variables without names cannot be referenced outside this module.
1887 if (!GV->hasName() && !GV->isDeclaration())
1888 GV->setLinkage(GlobalValue::InternalLinkage);
Dan Gohman01b97dd2009-11-23 16:22:21 +00001889 // Simplify the initializer.
1890 if (GV->hasInitializer())
1891 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GV->getInitializer())) {
Dan Gohmanf860db22010-04-02 03:04:37 +00001892 TargetData *TD = getAnalysisIfAvailable<TargetData>();
Dan Gohman01b97dd2009-11-23 16:22:21 +00001893 Constant *New = ConstantFoldConstantExpression(CE, TD);
1894 if (New && New != CE)
1895 GV->setInitializer(New);
1896 }
1897 // Do more involved optimizations if the global is internal.
Rafael Espindolabb46f522009-01-15 20:18:42 +00001898 if (!GV->isConstant() && GV->hasLocalLinkage() &&
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001899 GV->hasInitializer())
1900 Changed |= ProcessInternalGlobal(GV, GVI);
1901 }
1902 return Changed;
1903}
1904
1905/// FindGlobalCtors - Find the llvm.globalctors list, verifying that all
1906/// initializers have an init priority of 65535.
1907GlobalVariable *GlobalOpt::FindGlobalCtors(Module &M) {
Alkis Evlogimenose9c6d362005-10-25 11:18:06 +00001908 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1909 I != E; ++I)
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001910 if (I->getName() == "llvm.global_ctors") {
1911 // Found it, verify it's an array of { int, void()* }.
1912 const ArrayType *ATy =dyn_cast<ArrayType>(I->getType()->getElementType());
1913 if (!ATy) return 0;
1914 const StructType *STy = dyn_cast<StructType>(ATy->getElementType());
1915 if (!STy || STy->getNumElements() != 2 ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001916 !STy->getElementType(0)->isIntegerTy(32)) return 0;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001917 const PointerType *PFTy = dyn_cast<PointerType>(STy->getElementType(1));
1918 if (!PFTy) return 0;
1919 const FunctionType *FTy = dyn_cast<FunctionType>(PFTy->getElementType());
Benjamin Kramerf0127052010-01-05 13:12:22 +00001920 if (!FTy || !FTy->getReturnType()->isVoidTy() ||
Owen Anderson1d0be152009-08-13 21:58:54 +00001921 FTy->isVarArg() || FTy->getNumParams() != 0)
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001922 return 0;
1923
1924 // Verify that the initializer is simple enough for us to handle.
Dan Gohman82555732009-08-19 18:20:44 +00001925 if (!I->hasDefinitiveInitializer()) return 0;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001926 ConstantArray *CA = dyn_cast<ConstantArray>(I->getInitializer());
1927 if (!CA) return 0;
Gabor Greif5e463212008-05-29 01:59:18 +00001928 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i)
1929 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(*i)) {
Chris Lattner7d8e58f2005-09-26 02:19:27 +00001930 if (isa<ConstantPointerNull>(CS->getOperand(1)))
1931 continue;
1932
1933 // Must have a function or null ptr.
1934 if (!isa<Function>(CS->getOperand(1)))
1935 return 0;
1936
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001937 // Init priority must be standard.
1938 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
Reid Spencerb83eb642006-10-20 07:07:24 +00001939 if (!CI || CI->getZExtValue() != 65535)
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001940 return 0;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001941 } else {
1942 return 0;
1943 }
1944
1945 return I;
1946 }
1947 return 0;
1948}
1949
Chris Lattnerdb973e62005-09-26 02:31:18 +00001950/// ParseGlobalCtors - Given a llvm.global_ctors list that we can understand,
1951/// return a list of the functions and null terminator as a vector.
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001952static std::vector<Function*> ParseGlobalCtors(GlobalVariable *GV) {
1953 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1954 std::vector<Function*> Result;
1955 Result.reserve(CA->getNumOperands());
Gabor Greif5e463212008-05-29 01:59:18 +00001956 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i) {
1957 ConstantStruct *CS = cast<ConstantStruct>(*i);
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001958 Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
1959 }
1960 return Result;
1961}
1962
Chris Lattnerdb973e62005-09-26 02:31:18 +00001963/// InstallGlobalCtors - Given a specified llvm.global_ctors list, install the
1964/// specified array, returning the new global to use.
1965static GlobalVariable *InstallGlobalCtors(GlobalVariable *GCL,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001966 const std::vector<Function*> &Ctors) {
Chris Lattnerdb973e62005-09-26 02:31:18 +00001967 // If we made a change, reassemble the initializer list.
1968 std::vector<Constant*> CSVals;
Chris Lattner7b550cc2009-11-06 04:27:31 +00001969 CSVals.push_back(ConstantInt::get(Type::getInt32Ty(GCL->getContext()),65535));
Chris Lattnerdb973e62005-09-26 02:31:18 +00001970 CSVals.push_back(0);
1971
1972 // Create the new init list.
1973 std::vector<Constant*> CAList;
1974 for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
Chris Lattner79c11012005-09-26 04:44:35 +00001975 if (Ctors[i]) {
Chris Lattnerdb973e62005-09-26 02:31:18 +00001976 CSVals[1] = Ctors[i];
Chris Lattner79c11012005-09-26 04:44:35 +00001977 } else {
Chris Lattner7b550cc2009-11-06 04:27:31 +00001978 const Type *FTy = FunctionType::get(Type::getVoidTy(GCL->getContext()),
1979 false);
Owen Andersondebcb012009-07-29 22:17:13 +00001980 const PointerType *PFTy = PointerType::getUnqual(FTy);
Owen Andersona7235ea2009-07-31 20:28:14 +00001981 CSVals[1] = Constant::getNullValue(PFTy);
Chris Lattner7b550cc2009-11-06 04:27:31 +00001982 CSVals[0] = ConstantInt::get(Type::getInt32Ty(GCL->getContext()),
1983 2147483647);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001984 }
Chris Lattner7b550cc2009-11-06 04:27:31 +00001985 CAList.push_back(ConstantStruct::get(GCL->getContext(), CSVals, false));
Chris Lattnerdb973e62005-09-26 02:31:18 +00001986 }
1987
1988 // Create the array initializer.
1989 const Type *StructTy =
Nick Lewyckyc332fba2009-09-19 20:30:26 +00001990 cast<ArrayType>(GCL->getType()->getElementType())->getElementType();
Owen Anderson1fd70962009-07-28 18:32:17 +00001991 Constant *CA = ConstantArray::get(ArrayType::get(StructTy,
Nick Lewyckyc332fba2009-09-19 20:30:26 +00001992 CAList.size()), CAList);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001993
1994 // If we didn't change the number of elements, don't create a new GV.
1995 if (CA->getType() == GCL->getInitializer()->getType()) {
1996 GCL->setInitializer(CA);
1997 return GCL;
1998 }
1999
2000 // Create the new global and insert it next to the existing list.
Chris Lattner7b550cc2009-11-06 04:27:31 +00002001 GlobalVariable *NGV = new GlobalVariable(CA->getType(), GCL->isConstant(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002002 GCL->getLinkage(), CA, "",
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00002003 GCL->isThreadLocal());
Chris Lattnerdb973e62005-09-26 02:31:18 +00002004 GCL->getParent()->getGlobalList().insert(GCL, NGV);
Chris Lattner046800a2007-02-11 01:08:35 +00002005 NGV->takeName(GCL);
Chris Lattnerdb973e62005-09-26 02:31:18 +00002006
2007 // Nuke the old list, replacing any uses with the new one.
2008 if (!GCL->use_empty()) {
2009 Constant *V = NGV;
2010 if (V->getType() != GCL->getType())
Owen Andersonbaf3c402009-07-29 18:55:55 +00002011 V = ConstantExpr::getBitCast(V, GCL->getType());
Chris Lattnerdb973e62005-09-26 02:31:18 +00002012 GCL->replaceAllUsesWith(V);
2013 }
2014 GCL->eraseFromParent();
2015
2016 if (Ctors.size())
2017 return NGV;
2018 else
2019 return 0;
2020}
Chris Lattner79c11012005-09-26 04:44:35 +00002021
2022
Chris Lattner5a6bb6a2008-12-16 07:34:30 +00002023static Constant *getVal(DenseMap<Value*, Constant*> &ComputedValues,
Chris Lattner79c11012005-09-26 04:44:35 +00002024 Value *V) {
2025 if (Constant *CV = dyn_cast<Constant>(V)) return CV;
2026 Constant *R = ComputedValues[V];
2027 assert(R && "Reference to an uncomputed value!");
2028 return R;
2029}
2030
2031/// isSimpleEnoughPointerToCommit - Return true if this constant is simple
2032/// enough for us to understand. In particular, if it is a cast of something,
2033/// we punt. We basically just support direct accesses to globals and GEP's of
2034/// globals. This should be kept up to date with CommitValueTo.
Chris Lattner7b550cc2009-11-06 04:27:31 +00002035static bool isSimpleEnoughPointerToCommit(Constant *C) {
Dan Gohmance5de5b2009-09-07 22:42:05 +00002036 // Conservatively, avoid aggregate types. This is because we don't
2037 // want to worry about them partially overlapping other stores.
2038 if (!cast<PointerType>(C->getType())->getElementType()->isSingleValueType())
2039 return false;
2040
Dan Gohmanfd54a892009-09-07 22:31:26 +00002041 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
2042 // Do not allow weak/linkonce/dllimport/dllexport linkage or
2043 // external globals.
2044 return GV->hasDefinitiveInitializer();
2045
Chris Lattner798b4d52005-09-26 06:52:44 +00002046 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
2047 // Handle a constantexpr gep.
2048 if (CE->getOpcode() == Instruction::GetElementPtr &&
Dan Gohmanc62482d2009-09-07 22:40:13 +00002049 isa<GlobalVariable>(CE->getOperand(0)) &&
2050 cast<GEPOperator>(CE)->isInBounds()) {
Chris Lattner798b4d52005-09-26 06:52:44 +00002051 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Dan Gohmanfd54a892009-09-07 22:31:26 +00002052 // Do not allow weak/linkonce/dllimport/dllexport linkage or
2053 // external globals.
2054 if (!GV->hasDefinitiveInitializer())
2055 return false;
Dan Gohman80bdc962009-09-07 22:44:55 +00002056
Dan Gohman80bdc962009-09-07 22:44:55 +00002057 // The first index must be zero.
Dan Gohmane6992f72009-09-10 23:37:55 +00002058 ConstantInt *CI = dyn_cast<ConstantInt>(*next(CE->op_begin()));
Dan Gohman80bdc962009-09-07 22:44:55 +00002059 if (!CI || !CI->isZero()) return false;
Dan Gohman80bdc962009-09-07 22:44:55 +00002060
2061 // The remaining indices must be compile-time known integers within the
Dan Gohmane6992f72009-09-10 23:37:55 +00002062 // notional bounds of the corresponding static array types.
2063 if (!CE->isGEPWithNoNotionalOverIndexing())
2064 return false;
Dan Gohman80bdc962009-09-07 22:44:55 +00002065
Dan Gohmanc6f69e92009-10-05 16:36:26 +00002066 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
Chris Lattner798b4d52005-09-26 06:52:44 +00002067 }
Chris Lattner79c11012005-09-26 04:44:35 +00002068 return false;
2069}
2070
Chris Lattner798b4d52005-09-26 06:52:44 +00002071/// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
2072/// initializer. This returns 'Init' modified to reflect 'Val' stored into it.
2073/// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
2074static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
Chris Lattner7b550cc2009-11-06 04:27:31 +00002075 ConstantExpr *Addr, unsigned OpNo) {
Chris Lattner798b4d52005-09-26 06:52:44 +00002076 // Base case of the recursion.
2077 if (OpNo == Addr->getNumOperands()) {
2078 assert(Val->getType() == Init->getType() && "Type mismatch!");
2079 return Val;
2080 }
2081
Chris Lattnera0e9a242010-01-07 01:16:21 +00002082 std::vector<Constant*> Elts;
Chris Lattner798b4d52005-09-26 06:52:44 +00002083 if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
Chris Lattner798b4d52005-09-26 06:52:44 +00002084
2085 // Break up the constant into its elements.
2086 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
Gabor Greif5e463212008-05-29 01:59:18 +00002087 for (User::op_iterator i = CS->op_begin(), e = CS->op_end(); i != e; ++i)
2088 Elts.push_back(cast<Constant>(*i));
Chris Lattner798b4d52005-09-26 06:52:44 +00002089 } else if (isa<ConstantAggregateZero>(Init)) {
2090 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
Owen Andersona7235ea2009-07-31 20:28:14 +00002091 Elts.push_back(Constant::getNullValue(STy->getElementType(i)));
Chris Lattner798b4d52005-09-26 06:52:44 +00002092 } else if (isa<UndefValue>(Init)) {
2093 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002094 Elts.push_back(UndefValue::get(STy->getElementType(i)));
Chris Lattner798b4d52005-09-26 06:52:44 +00002095 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00002096 llvm_unreachable("This code is out of sync with "
Chris Lattner798b4d52005-09-26 06:52:44 +00002097 " ConstantFoldLoadThroughGEPConstantExpr");
2098 }
2099
2100 // Replace the element that we are supposed to.
Reid Spencerb83eb642006-10-20 07:07:24 +00002101 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2102 unsigned Idx = CU->getZExtValue();
2103 assert(Idx < STy->getNumElements() && "Struct index out of range!");
Chris Lattner7b550cc2009-11-06 04:27:31 +00002104 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
Chris Lattner798b4d52005-09-26 06:52:44 +00002105
2106 // Return the modified struct.
Chris Lattner7b550cc2009-11-06 04:27:31 +00002107 return ConstantStruct::get(Init->getContext(), &Elts[0], Elts.size(),
2108 STy->isPacked());
Chris Lattner798b4d52005-09-26 06:52:44 +00002109 } else {
2110 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
Chris Lattnera0e9a242010-01-07 01:16:21 +00002111 const SequentialType *InitTy = cast<SequentialType>(Init->getType());
Chris Lattner798b4d52005-09-26 06:52:44 +00002112
Chris Lattnera0e9a242010-01-07 01:16:21 +00002113 uint64_t NumElts;
2114 if (const ArrayType *ATy = dyn_cast<ArrayType>(InitTy))
2115 NumElts = ATy->getNumElements();
2116 else
2117 NumElts = cast<VectorType>(InitTy)->getNumElements();
2118
2119
Chris Lattner798b4d52005-09-26 06:52:44 +00002120 // Break up the array into elements.
Chris Lattner798b4d52005-09-26 06:52:44 +00002121 if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
Gabor Greif5e463212008-05-29 01:59:18 +00002122 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i)
2123 Elts.push_back(cast<Constant>(*i));
Chris Lattner4039bd02010-01-07 01:20:20 +00002124 } else if (ConstantVector *CV = dyn_cast<ConstantVector>(Init)) {
2125 for (User::op_iterator i = CV->op_begin(), e = CV->op_end(); i != e; ++i)
2126 Elts.push_back(cast<Constant>(*i));
Chris Lattner798b4d52005-09-26 06:52:44 +00002127 } else if (isa<ConstantAggregateZero>(Init)) {
Chris Lattnera0e9a242010-01-07 01:16:21 +00002128 Elts.assign(NumElts, Constant::getNullValue(InitTy->getElementType()));
Chris Lattner798b4d52005-09-26 06:52:44 +00002129 } else {
Chris Lattnera0e9a242010-01-07 01:16:21 +00002130 assert(isa<UndefValue>(Init) && "This code is out of sync with "
Chris Lattner798b4d52005-09-26 06:52:44 +00002131 " ConstantFoldLoadThroughGEPConstantExpr");
Chris Lattnera0e9a242010-01-07 01:16:21 +00002132 Elts.assign(NumElts, UndefValue::get(InitTy->getElementType()));
Chris Lattner798b4d52005-09-26 06:52:44 +00002133 }
2134
Chris Lattnera0e9a242010-01-07 01:16:21 +00002135 assert(CI->getZExtValue() < NumElts);
Reid Spencerb83eb642006-10-20 07:07:24 +00002136 Elts[CI->getZExtValue()] =
Chris Lattner7b550cc2009-11-06 04:27:31 +00002137 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
Chris Lattnera0e9a242010-01-07 01:16:21 +00002138
Duncan Sands1df98592010-02-16 11:11:14 +00002139 if (Init->getType()->isArrayTy())
Chris Lattnera0e9a242010-01-07 01:16:21 +00002140 return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2141 else
2142 return ConstantVector::get(&Elts[0], Elts.size());
Chris Lattner798b4d52005-09-26 06:52:44 +00002143 }
2144}
2145
Chris Lattner79c11012005-09-26 04:44:35 +00002146/// CommitValueTo - We have decided that Addr (which satisfies the predicate
2147/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
Chris Lattner7b550cc2009-11-06 04:27:31 +00002148static void CommitValueTo(Constant *Val, Constant *Addr) {
Chris Lattner798b4d52005-09-26 06:52:44 +00002149 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2150 assert(GV->hasInitializer());
2151 GV->setInitializer(Val);
2152 return;
2153 }
Chris Lattnera0e9a242010-01-07 01:16:21 +00002154
Chris Lattner798b4d52005-09-26 06:52:44 +00002155 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2156 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Chris Lattnera0e9a242010-01-07 01:16:21 +00002157 GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
Chris Lattner79c11012005-09-26 04:44:35 +00002158}
2159
Chris Lattner562a0552005-09-26 05:16:34 +00002160/// ComputeLoadResult - Return the value that would be computed by a load from
2161/// P after the stores reflected by 'memory' have been performed. If we can't
2162/// decide, return null.
Chris Lattner04de1cf2005-09-26 05:15:37 +00002163static Constant *ComputeLoadResult(Constant *P,
Chris Lattner7b550cc2009-11-06 04:27:31 +00002164 const DenseMap<Constant*, Constant*> &Memory) {
Chris Lattner04de1cf2005-09-26 05:15:37 +00002165 // If this memory location has been recently stored, use the stored value: it
2166 // is the most up-to-date.
Chris Lattner5a6bb6a2008-12-16 07:34:30 +00002167 DenseMap<Constant*, Constant*>::const_iterator I = Memory.find(P);
Chris Lattner04de1cf2005-09-26 05:15:37 +00002168 if (I != Memory.end()) return I->second;
2169
2170 // Access it.
2171 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
Dan Gohman82555732009-08-19 18:20:44 +00002172 if (GV->hasDefinitiveInitializer())
Chris Lattner04de1cf2005-09-26 05:15:37 +00002173 return GV->getInitializer();
2174 return 0;
Chris Lattner04de1cf2005-09-26 05:15:37 +00002175 }
Chris Lattner798b4d52005-09-26 06:52:44 +00002176
2177 // Handle a constantexpr getelementptr.
2178 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
2179 if (CE->getOpcode() == Instruction::GetElementPtr &&
2180 isa<GlobalVariable>(CE->getOperand(0))) {
2181 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Dan Gohman82555732009-08-19 18:20:44 +00002182 if (GV->hasDefinitiveInitializer())
Dan Gohmanc6f69e92009-10-05 16:36:26 +00002183 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
Chris Lattner798b4d52005-09-26 06:52:44 +00002184 }
2185
2186 return 0; // don't know how to evaluate.
Chris Lattner04de1cf2005-09-26 05:15:37 +00002187}
2188
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002189/// EvaluateFunction - Evaluate a call to function F, returning true if
2190/// successful, false if we can't evaluate it. ActualArgs contains the formal
2191/// arguments for the function.
Chris Lattnercd271422005-09-27 04:45:34 +00002192static bool EvaluateFunction(Function *F, Constant *&RetVal,
Duncan Sandsfa6a1cf2009-08-17 14:33:27 +00002193 const SmallVectorImpl<Constant*> &ActualArgs,
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002194 std::vector<Function*> &CallStack,
Chris Lattner5a6bb6a2008-12-16 07:34:30 +00002195 DenseMap<Constant*, Constant*> &MutatedMemory,
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002196 std::vector<GlobalVariable*> &AllocaTmps) {
Chris Lattnercd271422005-09-27 04:45:34 +00002197 // Check to see if this function is already executing (recursion). If so,
2198 // bail out. TODO: we might want to accept limited recursion.
2199 if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
2200 return false;
2201
2202 CallStack.push_back(F);
2203
Chris Lattner79c11012005-09-26 04:44:35 +00002204 /// Values - As we compute SSA register values, we store their contents here.
Chris Lattner5a6bb6a2008-12-16 07:34:30 +00002205 DenseMap<Value*, Constant*> Values;
Chris Lattnercd271422005-09-27 04:45:34 +00002206
2207 // Initialize arguments to the incoming values specified.
2208 unsigned ArgNo = 0;
2209 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
2210 ++AI, ++ArgNo)
2211 Values[AI] = ActualArgs[ArgNo];
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002212
Chris Lattnercdf98be2005-09-26 04:57:38 +00002213 /// ExecutedBlocks - We only handle non-looping, non-recursive code. As such,
2214 /// we can only evaluate any one basic block at most once. This set keeps
2215 /// track of what we have executed so we can detect recursive cases etc.
Chris Lattner5a6bb6a2008-12-16 07:34:30 +00002216 SmallPtrSet<BasicBlock*, 32> ExecutedBlocks;
Chris Lattnera22fdb02005-09-26 17:07:09 +00002217
Chris Lattner79c11012005-09-26 04:44:35 +00002218 // CurInst - The current instruction we're evaluating.
2219 BasicBlock::iterator CurInst = F->begin()->begin();
2220
2221 // This is the main evaluation loop.
2222 while (1) {
2223 Constant *InstResult = 0;
2224
2225 if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00002226 if (SI->isVolatile()) return false; // no volatile accesses.
Chris Lattner79c11012005-09-26 04:44:35 +00002227 Constant *Ptr = getVal(Values, SI->getOperand(1));
Chris Lattner7b550cc2009-11-06 04:27:31 +00002228 if (!isSimpleEnoughPointerToCommit(Ptr))
Chris Lattner79c11012005-09-26 04:44:35 +00002229 // If this is too complex for us to commit, reject it.
Chris Lattnercd271422005-09-27 04:45:34 +00002230 return false;
Chris Lattner79c11012005-09-26 04:44:35 +00002231 Constant *Val = getVal(Values, SI->getOperand(0));
2232 MutatedMemory[Ptr] = Val;
2233 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002234 InstResult = ConstantExpr::get(BO->getOpcode(),
Chris Lattner79c11012005-09-26 04:44:35 +00002235 getVal(Values, BO->getOperand(0)),
2236 getVal(Values, BO->getOperand(1)));
Reid Spencere4d87aa2006-12-23 06:05:41 +00002237 } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002238 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
Reid Spencere4d87aa2006-12-23 06:05:41 +00002239 getVal(Values, CI->getOperand(0)),
2240 getVal(Values, CI->getOperand(1)));
Chris Lattner79c11012005-09-26 04:44:35 +00002241 } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002242 InstResult = ConstantExpr::getCast(CI->getOpcode(),
Chris Lattner9a989f02006-11-30 17:26:08 +00002243 getVal(Values, CI->getOperand(0)),
Chris Lattner79c11012005-09-26 04:44:35 +00002244 CI->getType());
2245 } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
Owen Anderson14ce9ef2009-07-06 01:34:54 +00002246 InstResult =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002247 ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)),
Chris Lattner79c11012005-09-26 04:44:35 +00002248 getVal(Values, SI->getOperand(1)),
2249 getVal(Values, SI->getOperand(2)));
Chris Lattner04de1cf2005-09-26 05:15:37 +00002250 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
2251 Constant *P = getVal(Values, GEP->getOperand(0));
Chris Lattner55eb1c42007-01-31 04:40:53 +00002252 SmallVector<Constant*, 8> GEPOps;
Gabor Greif5e463212008-05-29 01:59:18 +00002253 for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end();
2254 i != e; ++i)
2255 GEPOps.push_back(getVal(Values, *i));
Dan Gohman4a7e6b72009-09-07 22:34:43 +00002256 InstResult = cast<GEPOperator>(GEP)->isInBounds() ?
2257 ConstantExpr::getInBoundsGetElementPtr(P, &GEPOps[0], GEPOps.size()) :
2258 ConstantExpr::getGetElementPtr(P, &GEPOps[0], GEPOps.size());
Chris Lattner04de1cf2005-09-26 05:15:37 +00002259 } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00002260 if (LI->isVolatile()) return false; // no volatile accesses.
Chris Lattner04de1cf2005-09-26 05:15:37 +00002261 InstResult = ComputeLoadResult(getVal(Values, LI->getOperand(0)),
Chris Lattner7b550cc2009-11-06 04:27:31 +00002262 MutatedMemory);
Chris Lattnercd271422005-09-27 04:45:34 +00002263 if (InstResult == 0) return false; // Could not evaluate load.
Chris Lattnera22fdb02005-09-26 17:07:09 +00002264 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00002265 if (AI->isArrayAllocation()) return false; // Cannot handle array allocs.
Chris Lattnera22fdb02005-09-26 17:07:09 +00002266 const Type *Ty = AI->getType()->getElementType();
Chris Lattner7b550cc2009-11-06 04:27:31 +00002267 AllocaTmps.push_back(new GlobalVariable(Ty, false,
Chris Lattnera22fdb02005-09-26 17:07:09 +00002268 GlobalValue::InternalLinkage,
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002269 UndefValue::get(Ty),
Chris Lattnera22fdb02005-09-26 17:07:09 +00002270 AI->getName()));
Chris Lattnercd271422005-09-27 04:45:34 +00002271 InstResult = AllocaTmps.back();
2272 } else if (CallInst *CI = dyn_cast<CallInst>(CurInst)) {
Devang Patel412a4462009-03-09 23:04:12 +00002273
2274 // Debug info can safely be ignored here.
2275 if (isa<DbgInfoIntrinsic>(CI)) {
2276 ++CurInst;
2277 continue;
2278 }
2279
Chris Lattner7cd580f2006-07-07 21:37:01 +00002280 // Cannot handle inline asm.
2281 if (isa<InlineAsm>(CI->getOperand(0))) return false;
2282
Chris Lattnercd271422005-09-27 04:45:34 +00002283 // Resolve function pointers.
2284 Function *Callee = dyn_cast<Function>(getVal(Values, CI->getOperand(0)));
2285 if (!Callee) return false; // Cannot resolve.
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00002286
Duncan Sandsfa6a1cf2009-08-17 14:33:27 +00002287 SmallVector<Constant*, 8> Formals;
Gabor Greif5e463212008-05-29 01:59:18 +00002288 for (User::op_iterator i = CI->op_begin() + 1, e = CI->op_end();
2289 i != e; ++i)
2290 Formals.push_back(getVal(Values, *i));
Duncan Sandsfa6a1cf2009-08-17 14:33:27 +00002291
Reid Spencer5cbf9852007-01-30 20:08:39 +00002292 if (Callee->isDeclaration()) {
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00002293 // If this is a function we can constant fold, do it.
Duncan Sandsfa6a1cf2009-08-17 14:33:27 +00002294 if (Constant *C = ConstantFoldCall(Callee, Formals.data(),
Chris Lattner6c1f5652007-01-30 23:14:52 +00002295 Formals.size())) {
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00002296 InstResult = C;
2297 } else {
2298 return false;
2299 }
2300 } else {
2301 if (Callee->getFunctionType()->isVarArg())
2302 return false;
2303
2304 Constant *RetVal;
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00002305 // Execute the call, if successful, use the return value.
2306 if (!EvaluateFunction(Callee, RetVal, Formals, CallStack,
2307 MutatedMemory, AllocaTmps))
2308 return false;
2309 InstResult = RetVal;
2310 }
Reid Spencer3ed469c2006-11-02 20:25:50 +00002311 } else if (isa<TerminatorInst>(CurInst)) {
Chris Lattnercdf98be2005-09-26 04:57:38 +00002312 BasicBlock *NewBB = 0;
2313 if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
2314 if (BI->isUnconditional()) {
2315 NewBB = BI->getSuccessor(0);
2316 } else {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002317 ConstantInt *Cond =
2318 dyn_cast<ConstantInt>(getVal(Values, BI->getCondition()));
Chris Lattner97d1fad2007-01-12 18:30:11 +00002319 if (!Cond) return false; // Cannot determine.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002320
Reid Spencer579dca12007-01-12 04:24:46 +00002321 NewBB = BI->getSuccessor(!Cond->getZExtValue());
Chris Lattnercdf98be2005-09-26 04:57:38 +00002322 }
2323 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
2324 ConstantInt *Val =
2325 dyn_cast<ConstantInt>(getVal(Values, SI->getCondition()));
Chris Lattnercd271422005-09-27 04:45:34 +00002326 if (!Val) return false; // Cannot determine.
Chris Lattnercdf98be2005-09-26 04:57:38 +00002327 NewBB = SI->getSuccessor(SI->findCaseValue(Val));
Chris Lattnerb3d5a652009-10-29 05:51:50 +00002328 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(CurInst)) {
2329 Value *Val = getVal(Values, IBI->getAddress())->stripPointerCasts();
2330 if (BlockAddress *BA = dyn_cast<BlockAddress>(Val))
2331 NewBB = BA->getBasicBlock();
Chris Lattnercdfc9402009-11-01 01:27:45 +00002332 else
2333 return false; // Cannot determine.
Chris Lattnercdf98be2005-09-26 04:57:38 +00002334 } else if (ReturnInst *RI = dyn_cast<ReturnInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00002335 if (RI->getNumOperands())
2336 RetVal = getVal(Values, RI->getOperand(0));
2337
2338 CallStack.pop_back(); // return from fn.
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002339 return true; // We succeeded at evaluating this ctor!
Chris Lattnercdf98be2005-09-26 04:57:38 +00002340 } else {
Chris Lattnercd271422005-09-27 04:45:34 +00002341 // invoke, unwind, unreachable.
2342 return false; // Cannot handle this terminator.
Chris Lattnercdf98be2005-09-26 04:57:38 +00002343 }
2344
2345 // Okay, we succeeded in evaluating this control flow. See if we have
Chris Lattnercd271422005-09-27 04:45:34 +00002346 // executed the new block before. If so, we have a looping function,
2347 // which we cannot evaluate in reasonable time.
Chris Lattner5a6bb6a2008-12-16 07:34:30 +00002348 if (!ExecutedBlocks.insert(NewBB))
Chris Lattnercd271422005-09-27 04:45:34 +00002349 return false; // looped!
Chris Lattnercdf98be2005-09-26 04:57:38 +00002350
2351 // Okay, we have never been in this block before. Check to see if there
2352 // are any PHI nodes. If so, evaluate them with information about where
2353 // we came from.
2354 BasicBlock *OldBB = CurInst->getParent();
2355 CurInst = NewBB->begin();
2356 PHINode *PN;
2357 for (; (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
2358 Values[PN] = getVal(Values, PN->getIncomingValueForBlock(OldBB));
2359
2360 // Do NOT increment CurInst. We know that the terminator had no value.
2361 continue;
Chris Lattner79c11012005-09-26 04:44:35 +00002362 } else {
Chris Lattner79c11012005-09-26 04:44:35 +00002363 // Did not know how to evaluate this!
Chris Lattnercd271422005-09-27 04:45:34 +00002364 return false;
Chris Lattner79c11012005-09-26 04:44:35 +00002365 }
2366
2367 if (!CurInst->use_empty())
2368 Values[CurInst] = InstResult;
2369
2370 // Advance program counter.
2371 ++CurInst;
2372 }
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002373}
2374
2375/// EvaluateStaticConstructor - Evaluate static constructors in the function, if
2376/// we can. Return true if we can, false otherwise.
2377static bool EvaluateStaticConstructor(Function *F) {
2378 /// MutatedMemory - For each store we execute, we update this map. Loads
2379 /// check this to get the most up-to-date value. If evaluation is successful,
2380 /// this state is committed to the process.
Chris Lattner5a6bb6a2008-12-16 07:34:30 +00002381 DenseMap<Constant*, Constant*> MutatedMemory;
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002382
2383 /// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
2384 /// to represent its body. This vector is needed so we can delete the
2385 /// temporary globals when we are done.
2386 std::vector<GlobalVariable*> AllocaTmps;
2387
2388 /// CallStack - This is used to detect recursion. In pathological situations
2389 /// we could hit exponential behavior, but at least there is nothing
2390 /// unbounded.
2391 std::vector<Function*> CallStack;
2392
2393 // Call the function.
Chris Lattnercd271422005-09-27 04:45:34 +00002394 Constant *RetValDummy;
Duncan Sandsfa6a1cf2009-08-17 14:33:27 +00002395 bool EvalSuccess = EvaluateFunction(F, RetValDummy,
2396 SmallVector<Constant*, 0>(), CallStack,
2397 MutatedMemory, AllocaTmps);
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002398 if (EvalSuccess) {
Chris Lattnera22fdb02005-09-26 17:07:09 +00002399 // We succeeded at evaluation: commit the result.
David Greene3215b0e2010-01-05 01:28:05 +00002400 DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002401 << F->getName() << "' to " << MutatedMemory.size()
2402 << " stores.\n");
Chris Lattner5a6bb6a2008-12-16 07:34:30 +00002403 for (DenseMap<Constant*, Constant*>::iterator I = MutatedMemory.begin(),
Chris Lattnera22fdb02005-09-26 17:07:09 +00002404 E = MutatedMemory.end(); I != E; ++I)
Chris Lattner7b550cc2009-11-06 04:27:31 +00002405 CommitValueTo(I->second, I->first);
Chris Lattnera22fdb02005-09-26 17:07:09 +00002406 }
Chris Lattner79c11012005-09-26 04:44:35 +00002407
Chris Lattnera22fdb02005-09-26 17:07:09 +00002408 // At this point, we are done interpreting. If we created any 'alloca'
2409 // temporaries, release them now.
2410 while (!AllocaTmps.empty()) {
2411 GlobalVariable *Tmp = AllocaTmps.back();
2412 AllocaTmps.pop_back();
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002413
Chris Lattnera22fdb02005-09-26 17:07:09 +00002414 // If there are still users of the alloca, the program is doing something
2415 // silly, e.g. storing the address of the alloca somewhere and using it
2416 // later. Since this is undefined, we'll just make it be null.
2417 if (!Tmp->use_empty())
Owen Andersona7235ea2009-07-31 20:28:14 +00002418 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
Chris Lattnera22fdb02005-09-26 17:07:09 +00002419 delete Tmp;
2420 }
Chris Lattneraae4a1c2005-09-26 07:34:35 +00002421
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002422 return EvalSuccess;
Chris Lattner79c11012005-09-26 04:44:35 +00002423}
2424
Chris Lattnerdb973e62005-09-26 02:31:18 +00002425
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002426
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002427/// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
2428/// Return true if anything changed.
2429bool GlobalOpt::OptimizeGlobalCtorsList(GlobalVariable *&GCL) {
2430 std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
2431 bool MadeChange = false;
2432 if (Ctors.empty()) return false;
2433
2434 // Loop over global ctors, optimizing them when we can.
2435 for (unsigned i = 0; i != Ctors.size(); ++i) {
2436 Function *F = Ctors[i];
2437 // Found a null terminator in the middle of the list, prune off the rest of
2438 // the list.
Chris Lattner7d8e58f2005-09-26 02:19:27 +00002439 if (F == 0) {
2440 if (i != Ctors.size()-1) {
2441 Ctors.resize(i+1);
2442 MadeChange = true;
2443 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002444 break;
2445 }
2446
Chris Lattner79c11012005-09-26 04:44:35 +00002447 // We cannot simplify external ctor functions.
2448 if (F->empty()) continue;
2449
2450 // If we can evaluate the ctor at compile time, do.
2451 if (EvaluateStaticConstructor(F)) {
2452 Ctors.erase(Ctors.begin()+i);
2453 MadeChange = true;
2454 --i;
2455 ++NumCtorsEvaluated;
2456 continue;
2457 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002458 }
2459
2460 if (!MadeChange) return false;
2461
Chris Lattner7b550cc2009-11-06 04:27:31 +00002462 GCL = InstallGlobalCtors(GCL, Ctors);
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002463 return true;
2464}
2465
Duncan Sandsfc5940d2009-03-06 10:21:56 +00002466bool GlobalOpt::OptimizeGlobalAliases(Module &M) {
Anton Korobeynikove4c6b612008-09-09 19:04:59 +00002467 bool Changed = false;
2468
Duncan Sands177d84e2009-01-07 20:01:06 +00002469 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sands4782b302009-02-15 09:56:08 +00002470 I != E;) {
2471 Module::alias_iterator J = I++;
Duncan Sandsfc5940d2009-03-06 10:21:56 +00002472 // Aliases without names cannot be referenced outside this module.
2473 if (!J->hasName() && !J->isDeclaration())
2474 J->setLinkage(GlobalValue::InternalLinkage);
Duncan Sands4782b302009-02-15 09:56:08 +00002475 // If the aliasee may change at link time, nothing can be done - bail out.
2476 if (J->mayBeOverridden())
Anton Korobeynikove4c6b612008-09-09 19:04:59 +00002477 continue;
2478
Duncan Sands4782b302009-02-15 09:56:08 +00002479 Constant *Aliasee = J->getAliasee();
2480 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
Duncan Sands95c5d0f2009-02-18 17:55:38 +00002481 Target->removeDeadConstantUsers();
Duncan Sands4782b302009-02-15 09:56:08 +00002482 bool hasOneUse = Target->hasOneUse() && Aliasee->hasOneUse();
2483
2484 // Make all users of the alias use the aliasee instead.
2485 if (!J->use_empty()) {
2486 J->replaceAllUsesWith(Aliasee);
2487 ++NumAliasesResolved;
2488 Changed = true;
2489 }
2490
Duncan Sands7a154cf2009-12-08 10:10:20 +00002491 // If the alias is externally visible, we may still be able to simplify it.
2492 if (!J->hasLocalLinkage()) {
2493 // If the aliasee has internal linkage, give it the name and linkage
2494 // of the alias, and delete the alias. This turns:
2495 // define internal ... @f(...)
2496 // @a = alias ... @f
2497 // into:
2498 // define ... @a(...)
2499 if (!Target->hasLocalLinkage())
2500 continue;
Duncan Sands4782b302009-02-15 09:56:08 +00002501
Duncan Sands7a154cf2009-12-08 10:10:20 +00002502 // Do not perform the transform if multiple aliases potentially target the
2503 // aliasee. This check also ensures that it is safe to replace the section
2504 // and other attributes of the aliasee with those of the alias.
2505 if (!hasOneUse)
2506 continue;
Duncan Sands4782b302009-02-15 09:56:08 +00002507
Duncan Sands7a154cf2009-12-08 10:10:20 +00002508 // Give the aliasee the name, linkage and other attributes of the alias.
2509 Target->takeName(J);
2510 Target->setLinkage(J->getLinkage());
2511 Target->GlobalValue::copyAttributesFrom(J);
2512 }
Duncan Sands4782b302009-02-15 09:56:08 +00002513
2514 // Delete the alias.
2515 M.getAliasList().erase(J);
2516 ++NumAliasesRemoved;
2517 Changed = true;
Anton Korobeynikove4c6b612008-09-09 19:04:59 +00002518 }
2519
2520 return Changed;
2521}
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002522
Chris Lattner7a90b682004-10-07 04:16:33 +00002523bool GlobalOpt::runOnModule(Module &M) {
Chris Lattner079236d2004-02-25 21:34:36 +00002524 bool Changed = false;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002525
2526 // Try to find the llvm.globalctors list.
2527 GlobalVariable *GlobalCtors = FindGlobalCtors(M);
Chris Lattner7a90b682004-10-07 04:16:33 +00002528
Chris Lattner7a90b682004-10-07 04:16:33 +00002529 bool LocalChange = true;
2530 while (LocalChange) {
2531 LocalChange = false;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002532
2533 // Delete functions that are trivially dead, ccc -> fastcc
2534 LocalChange |= OptimizeFunctions(M);
2535
2536 // Optimize global_ctors list.
2537 if (GlobalCtors)
2538 LocalChange |= OptimizeGlobalCtorsList(GlobalCtors);
2539
2540 // Optimize non-address-taken globals.
2541 LocalChange |= OptimizeGlobalVars(M);
Anton Korobeynikove4c6b612008-09-09 19:04:59 +00002542
2543 // Resolve aliases, when possible.
Duncan Sandsfc5940d2009-03-06 10:21:56 +00002544 LocalChange |= OptimizeGlobalAliases(M);
Anton Korobeynikove4c6b612008-09-09 19:04:59 +00002545 Changed |= LocalChange;
Chris Lattner7a90b682004-10-07 04:16:33 +00002546 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002547
2548 // TODO: Move all global ctors functions to the end of the module for code
2549 // layout.
2550
Chris Lattner079236d2004-02-25 21:34:36 +00002551 return Changed;
2552}