blob: ea8080e35e89590cde78b2f88efec3eb7d555cf1 [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"
Chris Lattner30ba5692004-10-11 05:54:41 +000026#include "llvm/Target/TargetData.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000027#include "llvm/Support/Compiler.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000028#include "llvm/Support/Debug.h"
Chris Lattner941db492008-01-14 02:09:12 +000029#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner81686182007-09-13 16:30:19 +000030#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner55eb1c42007-01-31 04:40:53 +000031#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000032#include "llvm/ADT/Statistic.h"
Chris Lattner670c8892004-10-08 17:32:09 +000033#include "llvm/ADT/StringExtras.h"
Chris Lattnere47ba742004-10-06 20:57:02 +000034#include <algorithm>
Chris Lattnerdac58ad2006-01-22 23:32:06 +000035#include <set>
Chris Lattner079236d2004-02-25 21:34:36 +000036using namespace llvm;
37
Chris Lattner86453c52006-12-19 22:09:18 +000038STATISTIC(NumMarked , "Number of globals marked constant");
39STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
40STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
41STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
42STATISTIC(NumDeleted , "Number of globals deleted");
43STATISTIC(NumFnDeleted , "Number of functions deleted");
44STATISTIC(NumGlobUses , "Number of global uses devirtualized");
45STATISTIC(NumLocalized , "Number of globals localized");
46STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
47STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
48STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Chris Lattner079236d2004-02-25 21:34:36 +000049
Chris Lattner86453c52006-12-19 22:09:18 +000050namespace {
Reid Spencer9133fe22007-02-05 23:32:05 +000051 struct VISIBILITY_HIDDEN GlobalOpt : public ModulePass {
Chris Lattner30ba5692004-10-11 05:54:41 +000052 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
53 AU.addRequired<TargetData>();
54 }
Nick Lewyckyecd94c82007-05-06 13:37:16 +000055 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000056 GlobalOpt() : ModulePass((intptr_t)&ID) {}
Misha Brukmanfd939082005-04-21 23:48:37 +000057
Chris Lattnerb12914b2004-09-20 04:48:05 +000058 bool runOnModule(Module &M);
Chris Lattner30ba5692004-10-11 05:54:41 +000059
60 private:
Chris Lattnerb1ab4582005-09-26 01:43:45 +000061 GlobalVariable *FindGlobalCtors(Module &M);
62 bool OptimizeFunctions(Module &M);
63 bool OptimizeGlobalVars(Module &M);
64 bool OptimizeGlobalCtorsList(GlobalVariable *&GCL);
Chris Lattner7f8897f2006-08-27 22:42:52 +000065 bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
Chris Lattner079236d2004-02-25 21:34:36 +000066 };
67
Devang Patel19974732007-05-03 01:11:54 +000068 char GlobalOpt::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000069 RegisterPass<GlobalOpt> X("globalopt", "Global Variable Optimizer");
Chris Lattner079236d2004-02-25 21:34:36 +000070}
71
Chris Lattner7a90b682004-10-07 04:16:33 +000072ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
Chris Lattner079236d2004-02-25 21:34:36 +000073
Chris Lattner7a90b682004-10-07 04:16:33 +000074/// GlobalStatus - As we analyze each global, keep track of some information
75/// about it. If we find out that the address of the global is taken, none of
Chris Lattnercf4d2a52004-10-07 21:30:30 +000076/// this info will be accurate.
Reid Spencer9133fe22007-02-05 23:32:05 +000077struct VISIBILITY_HIDDEN GlobalStatus {
Chris Lattnercf4d2a52004-10-07 21:30:30 +000078 /// isLoaded - True if the global is ever loaded. If the global isn't ever
79 /// loaded it can be deleted.
Chris Lattner7a90b682004-10-07 04:16:33 +000080 bool isLoaded;
Chris Lattnercf4d2a52004-10-07 21:30:30 +000081
82 /// StoredType - Keep track of what stores to the global look like.
83 ///
Chris Lattner7a90b682004-10-07 04:16:33 +000084 enum StoredType {
Chris Lattnercf4d2a52004-10-07 21:30:30 +000085 /// NotStored - There is no store to this global. It can thus be marked
86 /// constant.
87 NotStored,
88
89 /// isInitializerStored - This global is stored to, but the only thing
90 /// stored is the constant it was initialized with. This is only tracked
91 /// for scalar globals.
92 isInitializerStored,
93
94 /// isStoredOnce - This global is stored to, but only its initializer and
95 /// one other value is ever stored to it. If this global isStoredOnce, we
96 /// track the value stored to it in StoredOnceValue below. This is only
97 /// tracked for scalar globals.
98 isStoredOnce,
99
100 /// isStored - This global is stored to by multiple values or something else
101 /// that we cannot track.
102 isStored
Chris Lattner7a90b682004-10-07 04:16:33 +0000103 } StoredType;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000104
105 /// StoredOnceValue - If only one value (besides the initializer constant) is
106 /// ever stored to this global, keep track of what value it is.
107 Value *StoredOnceValue;
108
Chris Lattner25de4e52006-11-01 18:03:33 +0000109 /// AccessingFunction/HasMultipleAccessingFunctions - These start out
110 /// null/false. When the first accessing function is noticed, it is recorded.
111 /// When a second different accessing function is noticed,
112 /// HasMultipleAccessingFunctions is set to true.
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000113 Function *AccessingFunction;
114 bool HasMultipleAccessingFunctions;
115
Chris Lattner25de4e52006-11-01 18:03:33 +0000116 /// HasNonInstructionUser - Set to true if this global has a user that is not
117 /// an instruction (e.g. a constant expr or GV initializer).
Chris Lattner553ca522005-06-15 21:11:48 +0000118 bool HasNonInstructionUser;
119
Chris Lattner25de4e52006-11-01 18:03:33 +0000120 /// HasPHIUser - Set to true if this global has a user that is a PHI node.
121 bool HasPHIUser;
122
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000123 GlobalStatus() : isLoaded(false), StoredType(NotStored), StoredOnceValue(0),
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000124 AccessingFunction(0), HasMultipleAccessingFunctions(false),
Chris Lattner6a93fc02008-01-14 01:32:52 +0000125 HasNonInstructionUser(false), HasPHIUser(false) {}
Chris Lattner7a90b682004-10-07 04:16:33 +0000126};
Chris Lattnere47ba742004-10-06 20:57:02 +0000127
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000128
129
130/// ConstantIsDead - Return true if the specified constant is (transitively)
131/// dead. The constant may be used by other constants (e.g. constant arrays and
132/// constant exprs) as long as they are dead, but it cannot be used by anything
133/// else.
134static bool ConstantIsDead(Constant *C) {
135 if (isa<GlobalValue>(C)) return false;
136
137 for (Value::use_iterator UI = C->use_begin(), E = C->use_end(); UI != E; ++UI)
138 if (Constant *CU = dyn_cast<Constant>(*UI)) {
139 if (!ConstantIsDead(CU)) return false;
140 } else
141 return false;
142 return true;
143}
144
145
Chris Lattner7a90b682004-10-07 04:16:33 +0000146/// AnalyzeGlobal - Look at all uses of the global and fill in the GlobalStatus
147/// structure. If the global has its address taken, return true to indicate we
148/// can't do anything with it.
Chris Lattner079236d2004-02-25 21:34:36 +0000149///
Chris Lattner7a90b682004-10-07 04:16:33 +0000150static bool AnalyzeGlobal(Value *V, GlobalStatus &GS,
151 std::set<PHINode*> &PHIUsers) {
Chris Lattner079236d2004-02-25 21:34:36 +0000152 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
Chris Lattner96940cb2004-07-18 19:56:20 +0000153 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) {
Chris Lattner553ca522005-06-15 21:11:48 +0000154 GS.HasNonInstructionUser = true;
155
Chris Lattner7a90b682004-10-07 04:16:33 +0000156 if (AnalyzeGlobal(CE, GS, PHIUsers)) return true;
Chris Lattner670c8892004-10-08 17:32:09 +0000157
Chris Lattner079236d2004-02-25 21:34:36 +0000158 } else if (Instruction *I = dyn_cast<Instruction>(*UI)) {
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000159 if (!GS.HasMultipleAccessingFunctions) {
160 Function *F = I->getParent()->getParent();
161 if (GS.AccessingFunction == 0)
162 GS.AccessingFunction = F;
163 else if (GS.AccessingFunction != F)
164 GS.HasMultipleAccessingFunctions = true;
165 }
Chris Lattner7a90b682004-10-07 04:16:33 +0000166 if (isa<LoadInst>(I)) {
167 GS.isLoaded = true;
168 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Chris Lattner36025492004-10-07 06:01:25 +0000169 // Don't allow a store OF the address, only stores TO the address.
170 if (SI->getOperand(0) == V) return true;
171
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000172 // If this is a direct store to the global (i.e., the global is a scalar
173 // value, not an aggregate), keep more specific information about
174 // stores.
175 if (GS.StoredType != GlobalStatus::isStored)
176 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(SI->getOperand(1))){
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000177 Value *StoredVal = SI->getOperand(0);
178 if (StoredVal == GV->getInitializer()) {
179 if (GS.StoredType < GlobalStatus::isInitializerStored)
180 GS.StoredType = GlobalStatus::isInitializerStored;
181 } else if (isa<LoadInst>(StoredVal) &&
182 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
183 // G = G
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000184 if (GS.StoredType < GlobalStatus::isInitializerStored)
185 GS.StoredType = GlobalStatus::isInitializerStored;
186 } else if (GS.StoredType < GlobalStatus::isStoredOnce) {
187 GS.StoredType = GlobalStatus::isStoredOnce;
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000188 GS.StoredOnceValue = StoredVal;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000189 } else if (GS.StoredType == GlobalStatus::isStoredOnce &&
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000190 GS.StoredOnceValue == StoredVal) {
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000191 // noop.
192 } else {
193 GS.StoredType = GlobalStatus::isStored;
194 }
195 } else {
Chris Lattner7a90b682004-10-07 04:16:33 +0000196 GS.StoredType = GlobalStatus::isStored;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000197 }
Chris Lattner35c81b02005-02-27 18:58:52 +0000198 } else if (isa<GetElementPtrInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000199 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner35c81b02005-02-27 18:58:52 +0000200 } else if (isa<SelectInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000201 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000202 } else if (PHINode *PN = dyn_cast<PHINode>(I)) {
203 // PHI nodes we can check just like select or GEP instructions, but we
204 // have to be careful about infinite recursion.
205 if (PHIUsers.insert(PN).second) // Not already visited.
206 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner25de4e52006-11-01 18:03:33 +0000207 GS.HasPHIUser = true;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000208 } else if (isa<CmpInst>(I)) {
Chris Lattner35c81b02005-02-27 18:58:52 +0000209 } else if (isa<MemCpyInst>(I) || isa<MemMoveInst>(I)) {
210 if (I->getOperand(1) == V)
211 GS.StoredType = GlobalStatus::isStored;
212 if (I->getOperand(2) == V)
213 GS.isLoaded = true;
Chris Lattner35c81b02005-02-27 18:58:52 +0000214 } else if (isa<MemSetInst>(I)) {
215 assert(I->getOperand(1) == V && "Memset only takes one pointer!");
216 GS.StoredType = GlobalStatus::isStored;
Chris Lattner7a90b682004-10-07 04:16:33 +0000217 } else {
218 return true; // Any other non-load instruction might take address!
Chris Lattner9ce30002004-07-20 03:58:07 +0000219 }
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000220 } else if (Constant *C = dyn_cast<Constant>(*UI)) {
Chris Lattner553ca522005-06-15 21:11:48 +0000221 GS.HasNonInstructionUser = true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000222 // We might have a dead and dangling constant hanging off of here.
223 if (!ConstantIsDead(C))
224 return true;
Chris Lattner079236d2004-02-25 21:34:36 +0000225 } else {
Chris Lattner553ca522005-06-15 21:11:48 +0000226 GS.HasNonInstructionUser = true;
227 // Otherwise must be some other user.
Chris Lattner079236d2004-02-25 21:34:36 +0000228 return true;
229 }
230
231 return false;
232}
233
Chris Lattner670c8892004-10-08 17:32:09 +0000234static Constant *getAggregateConstantElement(Constant *Agg, Constant *Idx) {
235 ConstantInt *CI = dyn_cast<ConstantInt>(Idx);
236 if (!CI) return 0;
Reid Spencerb83eb642006-10-20 07:07:24 +0000237 unsigned IdxV = CI->getZExtValue();
Chris Lattner7a90b682004-10-07 04:16:33 +0000238
Chris Lattner670c8892004-10-08 17:32:09 +0000239 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Agg)) {
240 if (IdxV < CS->getNumOperands()) return CS->getOperand(IdxV);
241 } else if (ConstantArray *CA = dyn_cast<ConstantArray>(Agg)) {
242 if (IdxV < CA->getNumOperands()) return CA->getOperand(IdxV);
Reid Spencer9d6565a2007-02-15 02:26:10 +0000243 } else if (ConstantVector *CP = dyn_cast<ConstantVector>(Agg)) {
Chris Lattner670c8892004-10-08 17:32:09 +0000244 if (IdxV < CP->getNumOperands()) return CP->getOperand(IdxV);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000245 } else if (isa<ConstantAggregateZero>(Agg)) {
Chris Lattner670c8892004-10-08 17:32:09 +0000246 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
247 if (IdxV < STy->getNumElements())
248 return Constant::getNullValue(STy->getElementType(IdxV));
249 } else if (const SequentialType *STy =
250 dyn_cast<SequentialType>(Agg->getType())) {
251 return Constant::getNullValue(STy->getElementType());
252 }
Chris Lattner7a7ed022004-10-16 18:09:00 +0000253 } else if (isa<UndefValue>(Agg)) {
254 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
255 if (IdxV < STy->getNumElements())
256 return UndefValue::get(STy->getElementType(IdxV));
257 } else if (const SequentialType *STy =
258 dyn_cast<SequentialType>(Agg->getType())) {
259 return UndefValue::get(STy->getElementType());
260 }
Chris Lattner670c8892004-10-08 17:32:09 +0000261 }
262 return 0;
263}
Chris Lattner7a90b682004-10-07 04:16:33 +0000264
Chris Lattner7a90b682004-10-07 04:16:33 +0000265
Chris Lattnere47ba742004-10-06 20:57:02 +0000266/// CleanupConstantGlobalUsers - We just marked GV constant. Loop over all
267/// users of the global, cleaning up the obvious ones. This is largely just a
Chris Lattner031955d2004-10-10 16:43:46 +0000268/// quick scan over the use list to clean up the easy and obvious cruft. This
269/// returns true if it made a change.
270static bool CleanupConstantGlobalUsers(Value *V, Constant *Init) {
271 bool Changed = false;
Chris Lattner7a90b682004-10-07 04:16:33 +0000272 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;) {
273 User *U = *UI++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000274
Chris Lattner7a90b682004-10-07 04:16:33 +0000275 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner35c81b02005-02-27 18:58:52 +0000276 if (Init) {
277 // Replace the load with the initializer.
278 LI->replaceAllUsesWith(Init);
279 LI->eraseFromParent();
280 Changed = true;
281 }
Chris Lattner7a90b682004-10-07 04:16:33 +0000282 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattnere47ba742004-10-06 20:57:02 +0000283 // Store must be unreachable or storing Init into the global.
Chris Lattner7a7ed022004-10-16 18:09:00 +0000284 SI->eraseFromParent();
Chris Lattner031955d2004-10-10 16:43:46 +0000285 Changed = true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000286 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
287 if (CE->getOpcode() == Instruction::GetElementPtr) {
Chris Lattneraae4a1c2005-09-26 07:34:35 +0000288 Constant *SubInit = 0;
289 if (Init)
290 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner35c81b02005-02-27 18:58:52 +0000291 Changed |= CleanupConstantGlobalUsers(CE, SubInit);
Reid Spencer3da59db2006-11-27 01:05:10 +0000292 } else if (CE->getOpcode() == Instruction::BitCast &&
Chris Lattner35c81b02005-02-27 18:58:52 +0000293 isa<PointerType>(CE->getType())) {
294 // Pointer cast, delete any stores and memsets to the global.
295 Changed |= CleanupConstantGlobalUsers(CE, 0);
296 }
297
298 if (CE->use_empty()) {
299 CE->destroyConstant();
300 Changed = true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000301 }
302 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner7b52fe72007-11-09 17:33:02 +0000303 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
304 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
305 // and will invalidate our notion of what Init is.
Chris Lattner19450242007-11-13 21:46:23 +0000306 Constant *SubInit = 0;
Chris Lattner7b52fe72007-11-09 17:33:02 +0000307 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
308 ConstantExpr *CE =
309 dyn_cast_or_null<ConstantExpr>(ConstantFoldInstruction(GEP));
310 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Chris Lattner19450242007-11-13 21:46:23 +0000311 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner7b52fe72007-11-09 17:33:02 +0000312 }
Chris Lattner19450242007-11-13 21:46:23 +0000313 Changed |= CleanupConstantGlobalUsers(GEP, SubInit);
Chris Lattnerc4d81b02004-10-10 16:47:33 +0000314
Chris Lattner031955d2004-10-10 16:43:46 +0000315 if (GEP->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000316 GEP->eraseFromParent();
Chris Lattner031955d2004-10-10 16:43:46 +0000317 Changed = true;
318 }
Chris Lattner35c81b02005-02-27 18:58:52 +0000319 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
320 if (MI->getRawDest() == V) {
321 MI->eraseFromParent();
322 Changed = true;
323 }
324
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000325 } else if (Constant *C = dyn_cast<Constant>(U)) {
326 // If we have a chain of dead constantexprs or other things dangling from
327 // us, and if they are all dead, nuke them without remorse.
328 if (ConstantIsDead(C)) {
329 C->destroyConstant();
Chris Lattner35c81b02005-02-27 18:58:52 +0000330 // This could have invalidated UI, start over from scratch.
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000331 CleanupConstantGlobalUsers(V, Init);
Chris Lattner031955d2004-10-10 16:43:46 +0000332 return true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000333 }
Chris Lattnere47ba742004-10-06 20:57:02 +0000334 }
335 }
Chris Lattner031955d2004-10-10 16:43:46 +0000336 return Changed;
Chris Lattnere47ba742004-10-06 20:57:02 +0000337}
338
Chris Lattner941db492008-01-14 02:09:12 +0000339/// isSafeSROAElementUse - Return true if the specified instruction is a safe
340/// user of a derived expression from a global that we want to SROA.
341static bool isSafeSROAElementUse(Value *V) {
342 // We might have a dead and dangling constant hanging off of here.
343 if (Constant *C = dyn_cast<Constant>(V))
344 return ConstantIsDead(C);
Chris Lattner727c2102008-01-14 01:31:05 +0000345
Chris Lattner941db492008-01-14 02:09:12 +0000346 Instruction *I = dyn_cast<Instruction>(V);
347 if (!I) return false;
348
349 // Loads are ok.
350 if (isa<LoadInst>(I)) return true;
351
352 // Stores *to* the pointer are ok.
353 if (StoreInst *SI = dyn_cast<StoreInst>(I))
354 return SI->getOperand(0) != V;
355
356 // Otherwise, it must be a GEP.
357 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
358 if (GEPI == 0) return false;
359
360 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
361 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
362 return false;
363
364 for (Value::use_iterator I = GEPI->use_begin(), E = GEPI->use_end();
365 I != E; ++I)
366 if (!isSafeSROAElementUse(*I))
367 return false;
Chris Lattner727c2102008-01-14 01:31:05 +0000368 return true;
369}
370
Chris Lattner941db492008-01-14 02:09:12 +0000371
372/// IsUserOfGlobalSafeForSRA - U is a direct user of the specified global value.
373/// Look at it and its uses and decide whether it is safe to SROA this global.
374///
375static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
376 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
377 if (!isa<GetElementPtrInst>(U) &&
378 (!isa<ConstantExpr>(U) ||
379 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
380 return false;
381
382 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
383 // don't like < 3 operand CE's, and we don't like non-constant integer
384 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
385 // value of C.
386 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
387 !cast<Constant>(U->getOperand(1))->isNullValue() ||
388 !isa<ConstantInt>(U->getOperand(2)))
389 return false;
390
391 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
392 ++GEPI; // Skip over the pointer index.
393
394 // If this is a use of an array allocation, do a bit more checking for sanity.
395 if (const ArrayType *AT = dyn_cast<ArrayType>(*GEPI)) {
396 uint64_t NumElements = AT->getNumElements();
397 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
398
399 // Check to make sure that index falls within the array. If not,
400 // something funny is going on, so we won't do the optimization.
401 //
402 if (Idx->getZExtValue() >= NumElements)
403 return false;
404
405 // We cannot scalar repl this level of the array unless any array
406 // sub-indices are in-range constants. In particular, consider:
407 // A[0][i]. We cannot know that the user isn't doing invalid things like
408 // allowing i to index an out-of-range subscript that accesses A[1].
409 //
410 // Scalar replacing *just* the outer index of the array is probably not
411 // going to be a win anyway, so just give up.
412 for (++GEPI; // Skip array index.
413 GEPI != E && (isa<ArrayType>(*GEPI) || isa<VectorType>(*GEPI));
414 ++GEPI) {
415 uint64_t NumElements;
416 if (const ArrayType *SubArrayTy = dyn_cast<ArrayType>(*GEPI))
417 NumElements = SubArrayTy->getNumElements();
418 else
419 NumElements = cast<VectorType>(*GEPI)->getNumElements();
420
421 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
422 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
423 return false;
424 }
425 }
426
427 for (Value::use_iterator I = U->use_begin(), E = U->use_end(); I != E; ++I)
428 if (!isSafeSROAElementUse(*I))
429 return false;
430 return true;
431}
432
433/// GlobalUsersSafeToSRA - Look at all uses of the global and decide whether it
434/// is safe for us to perform this transformation.
435///
436static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
437 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
438 UI != E; ++UI) {
439 if (!IsUserOfGlobalSafeForSRA(*UI, GV))
440 return false;
441 }
442 return true;
443}
444
445
Chris Lattner670c8892004-10-08 17:32:09 +0000446/// SRAGlobal - Perform scalar replacement of aggregates on the specified global
447/// variable. This opens the door for other optimizations by exposing the
448/// behavior of the program in a more fine-grained way. We have determined that
449/// this transformation is safe already. We return the first global variable we
450/// insert so that the caller can reprocess it.
451static GlobalVariable *SRAGlobal(GlobalVariable *GV) {
Chris Lattner727c2102008-01-14 01:31:05 +0000452 // Make sure this global only has simple uses that we can SRA.
Chris Lattner941db492008-01-14 02:09:12 +0000453 if (!GlobalUsersSafeToSRA(GV))
Chris Lattner727c2102008-01-14 01:31:05 +0000454 return 0;
455
Chris Lattner670c8892004-10-08 17:32:09 +0000456 assert(GV->hasInternalLinkage() && !GV->isConstant());
457 Constant *Init = GV->getInitializer();
458 const Type *Ty = Init->getType();
Misha Brukmanfd939082005-04-21 23:48:37 +0000459
Chris Lattner670c8892004-10-08 17:32:09 +0000460 std::vector<GlobalVariable*> NewGlobals;
461 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
462
463 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
464 NewGlobals.reserve(STy->getNumElements());
465 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
466 Constant *In = getAggregateConstantElement(Init,
Reid Spencerc5b206b2006-12-31 05:48:39 +0000467 ConstantInt::get(Type::Int32Ty, i));
Chris Lattner670c8892004-10-08 17:32:09 +0000468 assert(In && "Couldn't get element of initializer?");
469 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
470 GlobalVariable::InternalLinkage,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000471 In, GV->getName()+"."+utostr(i),
472 (Module *)NULL,
473 GV->isThreadLocal());
Chris Lattner670c8892004-10-08 17:32:09 +0000474 Globals.insert(GV, NGV);
475 NewGlobals.push_back(NGV);
476 }
477 } else if (const SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
478 unsigned NumElements = 0;
479 if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
480 NumElements = ATy->getNumElements();
Reid Spencer9d6565a2007-02-15 02:26:10 +0000481 else if (const VectorType *PTy = dyn_cast<VectorType>(STy))
Chris Lattner670c8892004-10-08 17:32:09 +0000482 NumElements = PTy->getNumElements();
483 else
484 assert(0 && "Unknown aggregate sequential type!");
485
Chris Lattner1f21ef12005-02-23 16:53:04 +0000486 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Chris Lattnerd514d822005-02-01 01:23:31 +0000487 return 0; // It's not worth it.
Chris Lattner670c8892004-10-08 17:32:09 +0000488 NewGlobals.reserve(NumElements);
489 for (unsigned i = 0, e = NumElements; i != e; ++i) {
490 Constant *In = getAggregateConstantElement(Init,
Reid Spencerc5b206b2006-12-31 05:48:39 +0000491 ConstantInt::get(Type::Int32Ty, i));
Chris Lattner670c8892004-10-08 17:32:09 +0000492 assert(In && "Couldn't get element of initializer?");
493
494 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
495 GlobalVariable::InternalLinkage,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000496 In, GV->getName()+"."+utostr(i),
497 (Module *)NULL,
498 GV->isThreadLocal());
Chris Lattner670c8892004-10-08 17:32:09 +0000499 Globals.insert(GV, NGV);
500 NewGlobals.push_back(NGV);
501 }
502 }
503
504 if (NewGlobals.empty())
505 return 0;
506
Bill Wendling0a81aac2006-11-26 10:02:32 +0000507 DOUT << "PERFORMING GLOBAL SRA ON: " << *GV;
Chris Lattner30ba5692004-10-11 05:54:41 +0000508
Reid Spencerc5b206b2006-12-31 05:48:39 +0000509 Constant *NullInt = Constant::getNullValue(Type::Int32Ty);
Chris Lattner670c8892004-10-08 17:32:09 +0000510
511 // Loop over all of the uses of the global, replacing the constantexpr geps,
512 // with smaller constantexpr geps or direct references.
513 while (!GV->use_empty()) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000514 User *GEP = GV->use_back();
515 assert(((isa<ConstantExpr>(GEP) &&
516 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
517 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanfd939082005-04-21 23:48:37 +0000518
Chris Lattner670c8892004-10-08 17:32:09 +0000519 // Ignore the 1th operand, which has to be zero or else the program is quite
520 // broken (undefined). Get the 2nd operand, which is the structure or array
521 // index.
Reid Spencerb83eb642006-10-20 07:07:24 +0000522 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattner670c8892004-10-08 17:32:09 +0000523 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
524
Chris Lattner30ba5692004-10-11 05:54:41 +0000525 Value *NewPtr = NewGlobals[Val];
Chris Lattner670c8892004-10-08 17:32:09 +0000526
527 // Form a shorter GEP if needed.
Chris Lattner30ba5692004-10-11 05:54:41 +0000528 if (GEP->getNumOperands() > 3)
529 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattner55eb1c42007-01-31 04:40:53 +0000530 SmallVector<Constant*, 8> Idxs;
Chris Lattner30ba5692004-10-11 05:54:41 +0000531 Idxs.push_back(NullInt);
532 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
533 Idxs.push_back(CE->getOperand(i));
Chris Lattner55eb1c42007-01-31 04:40:53 +0000534 NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr),
535 &Idxs[0], Idxs.size());
Chris Lattner30ba5692004-10-11 05:54:41 +0000536 } else {
537 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner699d1442007-01-31 19:59:55 +0000538 SmallVector<Value*, 8> Idxs;
Chris Lattner30ba5692004-10-11 05:54:41 +0000539 Idxs.push_back(NullInt);
540 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
541 Idxs.push_back(GEPI->getOperand(i));
David Greeneb8f74792007-09-04 15:46:09 +0000542 NewPtr = new GetElementPtrInst(NewPtr, Idxs.begin(), Idxs.end(),
Chris Lattner30ba5692004-10-11 05:54:41 +0000543 GEPI->getName()+"."+utostr(Val), GEPI);
544 }
545 GEP->replaceAllUsesWith(NewPtr);
546
547 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner7a7ed022004-10-16 18:09:00 +0000548 GEPI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000549 else
550 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattner670c8892004-10-08 17:32:09 +0000551 }
552
Chris Lattnere40e2d12004-10-08 20:25:55 +0000553 // Delete the old global, now that it is dead.
554 Globals.erase(GV);
Chris Lattner670c8892004-10-08 17:32:09 +0000555 ++NumSRA;
Chris Lattner30ba5692004-10-11 05:54:41 +0000556
557 // Loop over the new globals array deleting any globals that are obviously
558 // dead. This can arise due to scalarization of a structure or an array that
559 // has elements that are dead.
560 unsigned FirstGlobal = 0;
561 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
562 if (NewGlobals[i]->use_empty()) {
563 Globals.erase(NewGlobals[i]);
564 if (FirstGlobal == i) ++FirstGlobal;
565 }
566
567 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : 0;
Chris Lattner670c8892004-10-08 17:32:09 +0000568}
569
Chris Lattner9b34a612004-10-09 21:48:45 +0000570/// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
Chris Lattner81686182007-09-13 16:30:19 +0000571/// value will trap if the value is dynamically null. PHIs keeps track of any
572/// phi nodes we've seen to avoid reprocessing them.
573static bool AllUsesOfValueWillTrapIfNull(Value *V,
574 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner9b34a612004-10-09 21:48:45 +0000575 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
576 if (isa<LoadInst>(*UI)) {
577 // Will trap.
578 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
579 if (SI->getOperand(0) == V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000580 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000581 return false; // Storing the value.
582 }
583 } else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
584 if (CI->getOperand(0) != V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000585 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000586 return false; // Not calling the ptr
587 }
588 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
589 if (II->getOperand(0) != V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000590 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000591 return false; // Not calling the ptr
592 }
Chris Lattner81686182007-09-13 16:30:19 +0000593 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(*UI)) {
594 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Chris Lattner9b34a612004-10-09 21:48:45 +0000595 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
Chris Lattner81686182007-09-13 16:30:19 +0000596 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
597 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
598 // If we've already seen this phi node, ignore it, it has already been
599 // checked.
600 if (PHIs.insert(PN))
601 return AllUsesOfValueWillTrapIfNull(PN, PHIs);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000602 } else if (isa<ICmpInst>(*UI) &&
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000603 isa<ConstantPointerNull>(UI->getOperand(1))) {
604 // Ignore setcc X, null
Chris Lattner9b34a612004-10-09 21:48:45 +0000605 } else {
Bill Wendlinge8156192006-12-07 01:30:32 +0000606 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000607 return false;
608 }
609 return true;
610}
611
612/// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000613/// from GV will trap if the loaded value is null. Note that this also permits
614/// comparisons of the loaded value against null, as a special case.
Chris Lattner9b34a612004-10-09 21:48:45 +0000615static bool AllUsesOfLoadedValueWillTrapIfNull(GlobalVariable *GV) {
616 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI!=E; ++UI)
617 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
Chris Lattner81686182007-09-13 16:30:19 +0000618 SmallPtrSet<PHINode*, 8> PHIs;
619 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner9b34a612004-10-09 21:48:45 +0000620 return false;
621 } else if (isa<StoreInst>(*UI)) {
622 // Ignore stores to the global.
623 } else {
624 // We don't know or understand this user, bail out.
Bill Wendlinge8156192006-12-07 01:30:32 +0000625 //cerr << "UNKNOWN USER OF GLOBAL!: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000626 return false;
627 }
628
629 return true;
630}
631
Chris Lattner708148e2004-10-10 23:14:11 +0000632static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
633 bool Changed = false;
634 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
635 Instruction *I = cast<Instruction>(*UI++);
636 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
637 LI->setOperand(0, NewV);
638 Changed = true;
639 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
640 if (SI->getOperand(1) == V) {
641 SI->setOperand(1, NewV);
642 Changed = true;
643 }
644 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
645 if (I->getOperand(0) == V) {
646 // Calling through the pointer! Turn into a direct call, but be careful
647 // that the pointer is not also being passed as an argument.
648 I->setOperand(0, NewV);
649 Changed = true;
650 bool PassedAsArg = false;
651 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i)
652 if (I->getOperand(i) == V) {
653 PassedAsArg = true;
654 I->setOperand(i, NewV);
655 }
656
657 if (PassedAsArg) {
658 // Being passed as an argument also. Be careful to not invalidate UI!
659 UI = V->use_begin();
660 }
661 }
662 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
663 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Chris Lattner6e8fbad2006-11-30 17:32:29 +0000664 ConstantExpr::getCast(CI->getOpcode(),
665 NewV, CI->getType()));
Chris Lattner708148e2004-10-10 23:14:11 +0000666 if (CI->use_empty()) {
667 Changed = true;
Chris Lattner7a7ed022004-10-16 18:09:00 +0000668 CI->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000669 }
670 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
671 // Should handle GEP here.
Chris Lattner55eb1c42007-01-31 04:40:53 +0000672 SmallVector<Constant*, 8> Idxs;
673 Idxs.reserve(GEPI->getNumOperands()-1);
Chris Lattner708148e2004-10-10 23:14:11 +0000674 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
675 if (Constant *C = dyn_cast<Constant>(GEPI->getOperand(i)))
Chris Lattner55eb1c42007-01-31 04:40:53 +0000676 Idxs.push_back(C);
Chris Lattner708148e2004-10-10 23:14:11 +0000677 else
678 break;
Chris Lattner55eb1c42007-01-31 04:40:53 +0000679 if (Idxs.size() == GEPI->getNumOperands()-1)
Chris Lattner708148e2004-10-10 23:14:11 +0000680 Changed |= OptimizeAwayTrappingUsesOfValue(GEPI,
Chris Lattner55eb1c42007-01-31 04:40:53 +0000681 ConstantExpr::getGetElementPtr(NewV, &Idxs[0],
682 Idxs.size()));
Chris Lattner708148e2004-10-10 23:14:11 +0000683 if (GEPI->use_empty()) {
684 Changed = true;
Chris Lattner7a7ed022004-10-16 18:09:00 +0000685 GEPI->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000686 }
687 }
688 }
689
690 return Changed;
691}
692
693
694/// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
695/// value stored into it. If there are uses of the loaded value that would trap
696/// if the loaded value is dynamically null, then we know that they cannot be
697/// reachable with a null optimize away the load.
698static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV) {
699 std::vector<LoadInst*> Loads;
700 bool Changed = false;
701
702 // Replace all uses of loads with uses of uses of the stored value.
703 for (Value::use_iterator GUI = GV->use_begin(), E = GV->use_end();
704 GUI != E; ++GUI)
705 if (LoadInst *LI = dyn_cast<LoadInst>(*GUI)) {
706 Loads.push_back(LI);
707 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
708 } else {
Chris Lattnerce3e2bf2007-05-15 06:42:04 +0000709 // If we get here we could have stores, selects, or phi nodes whose values
Chris Lattner79cfddf2007-05-13 21:28:07 +0000710 // are loaded.
Chris Lattnerce3e2bf2007-05-15 06:42:04 +0000711 assert((isa<StoreInst>(*GUI) || isa<PHINode>(*GUI) ||
Chris Lattner9027b3c2008-01-04 05:04:53 +0000712 isa<SelectInst>(*GUI) || isa<ConstantExpr>(*GUI)) &&
Chris Lattner79cfddf2007-05-13 21:28:07 +0000713 "Only expect load and stores!");
Chris Lattner708148e2004-10-10 23:14:11 +0000714 }
715
716 if (Changed) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000717 DOUT << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV;
Chris Lattner708148e2004-10-10 23:14:11 +0000718 ++NumGlobUses;
719 }
720
721 // Delete all of the loads we can, keeping track of whether we nuked them all!
722 bool AllLoadsGone = true;
723 while (!Loads.empty()) {
724 LoadInst *L = Loads.back();
725 if (L->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000726 L->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000727 Changed = true;
728 } else {
729 AllLoadsGone = false;
730 }
731 Loads.pop_back();
732 }
733
734 // If we nuked all of the loads, then none of the stores are needed either,
735 // nor is the global.
736 if (AllLoadsGone) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000737 DOUT << " *** GLOBAL NOW DEAD!\n";
Chris Lattner708148e2004-10-10 23:14:11 +0000738 CleanupConstantGlobalUsers(GV, 0);
739 if (GV->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000740 GV->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000741 ++NumDeleted;
742 }
743 Changed = true;
744 }
745 return Changed;
746}
747
Chris Lattner30ba5692004-10-11 05:54:41 +0000748/// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
749/// instructions that are foldable.
750static void ConstantPropUsersOf(Value *V) {
751 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
752 if (Instruction *I = dyn_cast<Instruction>(*UI++))
753 if (Constant *NewC = ConstantFoldInstruction(I)) {
754 I->replaceAllUsesWith(NewC);
755
Chris Lattnerd514d822005-02-01 01:23:31 +0000756 // Advance UI to the next non-I use to avoid invalidating it!
757 // Instructions could multiply use V.
758 while (UI != E && *UI == I)
Chris Lattner30ba5692004-10-11 05:54:41 +0000759 ++UI;
Chris Lattnerd514d822005-02-01 01:23:31 +0000760 I->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000761 }
762}
763
764/// OptimizeGlobalAddressOfMalloc - This function takes the specified global
765/// variable, and transforms the program as if it always contained the result of
766/// the specified malloc. Because it is always the result of the specified
767/// malloc, there is no reason to actually DO the malloc. Instead, turn the
Chris Lattner6e8fbad2006-11-30 17:32:29 +0000768/// malloc into a global, and any loads of GV as uses of the new global.
Chris Lattner30ba5692004-10-11 05:54:41 +0000769static GlobalVariable *OptimizeGlobalAddressOfMalloc(GlobalVariable *GV,
770 MallocInst *MI) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000771 DOUT << "PROMOTING MALLOC GLOBAL: " << *GV << " MALLOC = " << *MI;
Chris Lattner30ba5692004-10-11 05:54:41 +0000772 ConstantInt *NElements = cast<ConstantInt>(MI->getArraySize());
773
Reid Spencerb83eb642006-10-20 07:07:24 +0000774 if (NElements->getZExtValue() != 1) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000775 // If we have an array allocation, transform it to a single element
776 // allocation to make the code below simpler.
777 Type *NewTy = ArrayType::get(MI->getAllocatedType(),
Reid Spencerb83eb642006-10-20 07:07:24 +0000778 NElements->getZExtValue());
Chris Lattner30ba5692004-10-11 05:54:41 +0000779 MallocInst *NewMI =
Reid Spencerc5b206b2006-12-31 05:48:39 +0000780 new MallocInst(NewTy, Constant::getNullValue(Type::Int32Ty),
Nate Begeman14b05292005-11-05 09:21:28 +0000781 MI->getAlignment(), MI->getName(), MI);
Chris Lattner699d1442007-01-31 19:59:55 +0000782 Value* Indices[2];
783 Indices[0] = Indices[1] = Constant::getNullValue(Type::Int32Ty);
David Greeneb8f74792007-09-04 15:46:09 +0000784 Value *NewGEP = new GetElementPtrInst(NewMI, Indices, Indices + 2,
Chris Lattner30ba5692004-10-11 05:54:41 +0000785 NewMI->getName()+".el0", MI);
786 MI->replaceAllUsesWith(NewGEP);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000787 MI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000788 MI = NewMI;
789 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000790
Chris Lattner7a7ed022004-10-16 18:09:00 +0000791 // Create the new global variable. The contents of the malloc'd memory is
792 // undefined, so initialize with an undef value.
793 Constant *Init = UndefValue::get(MI->getAllocatedType());
Chris Lattner30ba5692004-10-11 05:54:41 +0000794 GlobalVariable *NewGV = new GlobalVariable(MI->getAllocatedType(), false,
795 GlobalValue::InternalLinkage, Init,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000796 GV->getName()+".body",
797 (Module *)NULL,
798 GV->isThreadLocal());
Chris Lattner30ba5692004-10-11 05:54:41 +0000799 GV->getParent()->getGlobalList().insert(GV, NewGV);
Misha Brukmanfd939082005-04-21 23:48:37 +0000800
Chris Lattner30ba5692004-10-11 05:54:41 +0000801 // Anything that used the malloc now uses the global directly.
802 MI->replaceAllUsesWith(NewGV);
Chris Lattner30ba5692004-10-11 05:54:41 +0000803
804 Constant *RepValue = NewGV;
805 if (NewGV->getType() != GV->getType()->getElementType())
Reid Spencerd977d862006-12-12 23:36:14 +0000806 RepValue = ConstantExpr::getBitCast(RepValue,
807 GV->getType()->getElementType());
Chris Lattner30ba5692004-10-11 05:54:41 +0000808
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000809 // If there is a comparison against null, we will insert a global bool to
810 // keep track of whether the global was initialized yet or not.
Misha Brukmanfd939082005-04-21 23:48:37 +0000811 GlobalVariable *InitBool =
Reid Spencer4fe16d62007-01-11 18:21:29 +0000812 new GlobalVariable(Type::Int1Ty, false, GlobalValue::InternalLinkage,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000813 ConstantInt::getFalse(), GV->getName()+".init",
814 (Module *)NULL, GV->isThreadLocal());
Chris Lattnerbc965b92004-12-02 06:25:58 +0000815 bool InitBoolUsed = false;
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000816
Chris Lattner30ba5692004-10-11 05:54:41 +0000817 // Loop over all uses of GV, processing them in turn.
Chris Lattnerbc965b92004-12-02 06:25:58 +0000818 std::vector<StoreInst*> Stores;
Chris Lattner30ba5692004-10-11 05:54:41 +0000819 while (!GV->use_empty())
820 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000821 while (!LI->use_empty()) {
Chris Lattnerd514d822005-02-01 01:23:31 +0000822 Use &LoadUse = LI->use_begin().getUse();
Reid Spencere4d87aa2006-12-23 06:05:41 +0000823 if (!isa<ICmpInst>(LoadUse.getUser()))
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000824 LoadUse = RepValue;
825 else {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000826 ICmpInst *CI = cast<ICmpInst>(LoadUse.getUser());
827 // Replace the cmp X, 0 with a use of the bool value.
828 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", CI);
Chris Lattnerbc965b92004-12-02 06:25:58 +0000829 InitBoolUsed = true;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000830 switch (CI->getPredicate()) {
831 default: assert(0 && "Unknown ICmp Predicate!");
832 case ICmpInst::ICMP_ULT:
833 case ICmpInst::ICMP_SLT:
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000834 LV = ConstantInt::getFalse(); // X < null -> always false
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000835 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000836 case ICmpInst::ICMP_ULE:
837 case ICmpInst::ICMP_SLE:
838 case ICmpInst::ICMP_EQ:
839 LV = BinaryOperator::createNot(LV, "notinit", CI);
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000840 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000841 case ICmpInst::ICMP_NE:
842 case ICmpInst::ICMP_UGE:
843 case ICmpInst::ICMP_SGE:
844 case ICmpInst::ICMP_UGT:
845 case ICmpInst::ICMP_SGT:
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000846 break; // no change.
847 }
Reid Spencere4d87aa2006-12-23 06:05:41 +0000848 CI->replaceAllUsesWith(LV);
849 CI->eraseFromParent();
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000850 }
851 }
Chris Lattner7a7ed022004-10-16 18:09:00 +0000852 LI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000853 } else {
854 StoreInst *SI = cast<StoreInst>(GV->use_back());
Chris Lattnerbc965b92004-12-02 06:25:58 +0000855 // The global is initialized when the store to it occurs.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000856 new StoreInst(ConstantInt::getTrue(), InitBool, SI);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000857 SI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000858 }
859
Chris Lattnerbc965b92004-12-02 06:25:58 +0000860 // If the initialization boolean was used, insert it, otherwise delete it.
861 if (!InitBoolUsed) {
862 while (!InitBool->use_empty()) // Delete initializations
863 cast<Instruction>(InitBool->use_back())->eraseFromParent();
864 delete InitBool;
865 } else
866 GV->getParent()->getGlobalList().insert(GV, InitBool);
867
868
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000869 // Now the GV is dead, nuke it and the malloc.
Chris Lattner7a7ed022004-10-16 18:09:00 +0000870 GV->eraseFromParent();
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000871 MI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000872
873 // To further other optimizations, loop over all users of NewGV and try to
874 // constant prop them. This will promote GEP instructions with constant
875 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
876 ConstantPropUsersOf(NewGV);
877 if (RepValue != NewGV)
878 ConstantPropUsersOf(RepValue);
879
880 return NewGV;
881}
Chris Lattner708148e2004-10-10 23:14:11 +0000882
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000883/// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
884/// to make sure that there are no complex uses of V. We permit simple things
885/// like dereferencing the pointer, but not storing through the address, unless
886/// it is to the specified global.
887static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Instruction *V,
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000888 GlobalVariable *GV,
889 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner5e6e4942007-09-14 03:41:21 +0000890 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
Reid Spencere4d87aa2006-12-23 06:05:41 +0000891 if (isa<LoadInst>(*UI) || isa<CmpInst>(*UI)) {
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000892 // Fine, ignore.
893 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
894 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
895 return false; // Storing the pointer itself... bad.
896 // Otherwise, storing through it, or storing into GV... fine.
Chris Lattner5e6e4942007-09-14 03:41:21 +0000897 } else if (isa<GetElementPtrInst>(*UI)) {
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000898 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(cast<Instruction>(*UI),
899 GV, PHIs))
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000900 return false;
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000901 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
902 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
903 // cycles.
904 if (PHIs.insert(PN))
Chris Lattner5e6e4942007-09-14 03:41:21 +0000905 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
906 return false;
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000907 } else {
908 return false;
909 }
910 return true;
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000911}
912
Chris Lattner86395032006-09-30 23:32:09 +0000913/// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
914/// somewhere. Transform all uses of the allocation into loads from the
915/// global and uses of the resultant pointer. Further, delete the store into
916/// GV. This assumes that these value pass the
917/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
918static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
919 GlobalVariable *GV) {
920 while (!Alloc->use_empty()) {
Chris Lattnera637a8b2007-09-13 18:00:31 +0000921 Instruction *U = cast<Instruction>(*Alloc->use_begin());
922 Instruction *InsertPt = U;
Chris Lattner86395032006-09-30 23:32:09 +0000923 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
924 // If this is the store of the allocation into the global, remove it.
925 if (SI->getOperand(1) == GV) {
926 SI->eraseFromParent();
927 continue;
928 }
Chris Lattnera637a8b2007-09-13 18:00:31 +0000929 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
930 // Insert the load in the corresponding predecessor, not right before the
931 // PHI.
932 unsigned PredNo = Alloc->use_begin().getOperandNo()/2;
933 InsertPt = PN->getIncomingBlock(PredNo)->getTerminator();
Chris Lattner86395032006-09-30 23:32:09 +0000934 }
935
936 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnera637a8b2007-09-13 18:00:31 +0000937 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner86395032006-09-30 23:32:09 +0000938 U->replaceUsesOfWith(Alloc, NL);
939 }
940}
941
942/// GlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
943/// GV are simple enough to perform HeapSRA, return true.
Chris Lattner309f20f2007-09-13 21:31:36 +0000944static bool GlobalLoadUsesSimpleEnoughForHeapSRA(GlobalVariable *GV,
945 MallocInst *MI) {
Chris Lattner86395032006-09-30 23:32:09 +0000946 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;
947 ++UI)
948 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
949 // We permit two users of the load: setcc comparing against the null
950 // pointer, and a getelementptr of a specific form.
951 for (Value::use_iterator UI = LI->use_begin(), E = LI->use_end(); UI != E;
952 ++UI) {
953 // Comparison against null is ok.
Reid Spencere4d87aa2006-12-23 06:05:41 +0000954 if (ICmpInst *ICI = dyn_cast<ICmpInst>(*UI)) {
955 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
Chris Lattner86395032006-09-30 23:32:09 +0000956 return false;
957 continue;
958 }
959
960 // getelementptr is also ok, but only a simple form.
Chris Lattner309f20f2007-09-13 21:31:36 +0000961 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
962 // Must index into the array and into the struct.
963 if (GEPI->getNumOperands() < 3)
964 return false;
965
966 // Otherwise the GEP is ok.
967 continue;
968 }
Chris Lattner86395032006-09-30 23:32:09 +0000969
Chris Lattner309f20f2007-09-13 21:31:36 +0000970 if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
971 // We have a phi of a load from the global. We can only handle this
972 // if the other PHI'd values are actually the same. In this case,
973 // the rewriter will just drop the phi entirely.
974 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
975 Value *IV = PN->getIncomingValue(i);
976 if (IV == LI) continue; // Trivial the same.
977
978 // If the phi'd value is from the malloc that initializes the value,
979 // we can xform it.
980 if (IV == MI) continue;
981
982 // Otherwise, we don't know what it is.
983 return false;
984 }
985 return true;
986 }
Chris Lattner86395032006-09-30 23:32:09 +0000987
Chris Lattner309f20f2007-09-13 21:31:36 +0000988 // Otherwise we don't know what this is, not ok.
989 return false;
Chris Lattner86395032006-09-30 23:32:09 +0000990 }
991 }
992 return true;
993}
994
Chris Lattnera637a8b2007-09-13 18:00:31 +0000995/// GetHeapSROALoad - Return the load for the specified field of the HeapSROA'd
996/// value, lazily creating it on demand.
Chris Lattner309f20f2007-09-13 21:31:36 +0000997static Value *GetHeapSROALoad(Instruction *Load, unsigned FieldNo,
Chris Lattnera637a8b2007-09-13 18:00:31 +0000998 const std::vector<GlobalVariable*> &FieldGlobals,
999 std::vector<Value *> &InsertedLoadsForPtr) {
1000 if (InsertedLoadsForPtr.size() <= FieldNo)
1001 InsertedLoadsForPtr.resize(FieldNo+1);
1002 if (InsertedLoadsForPtr[FieldNo] == 0)
1003 InsertedLoadsForPtr[FieldNo] = new LoadInst(FieldGlobals[FieldNo],
1004 Load->getName()+".f" +
1005 utostr(FieldNo), Load);
1006 return InsertedLoadsForPtr[FieldNo];
1007}
1008
Chris Lattner330245e2007-09-13 17:29:05 +00001009/// RewriteHeapSROALoadUser - Given a load instruction and a value derived from
1010/// the load, rewrite the derived value to use the HeapSRoA'd load.
1011static void RewriteHeapSROALoadUser(LoadInst *Load, Instruction *LoadUser,
1012 const std::vector<GlobalVariable*> &FieldGlobals,
1013 std::vector<Value *> &InsertedLoadsForPtr) {
1014 // If this is a comparison against null, handle it.
1015 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1016 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1017 // If we have a setcc of the loaded pointer, we can use a setcc of any
1018 // field.
1019 Value *NPtr;
1020 if (InsertedLoadsForPtr.empty()) {
Chris Lattnera637a8b2007-09-13 18:00:31 +00001021 NPtr = GetHeapSROALoad(Load, 0, FieldGlobals, InsertedLoadsForPtr);
Chris Lattner330245e2007-09-13 17:29:05 +00001022 } else {
1023 NPtr = InsertedLoadsForPtr.back();
1024 }
1025
1026 Value *New = new ICmpInst(SCI->getPredicate(), NPtr,
1027 Constant::getNullValue(NPtr->getType()),
1028 SCI->getName(), SCI);
1029 SCI->replaceAllUsesWith(New);
1030 SCI->eraseFromParent();
1031 return;
1032 }
1033
Chris Lattnera637a8b2007-09-13 18:00:31 +00001034 // Handle 'getelementptr Ptr, Idx, uint FieldNo ...'
1035 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1036 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1037 && "Unexpected GEPI!");
Chris Lattner330245e2007-09-13 17:29:05 +00001038
Chris Lattnera637a8b2007-09-13 18:00:31 +00001039 // Load the pointer for this field.
1040 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
1041 Value *NewPtr = GetHeapSROALoad(Load, FieldNo,
1042 FieldGlobals, InsertedLoadsForPtr);
1043
1044 // Create the new GEP idx vector.
1045 SmallVector<Value*, 8> GEPIdx;
1046 GEPIdx.push_back(GEPI->getOperand(1));
1047 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
1048
1049 Value *NGEPI = new GetElementPtrInst(NewPtr, GEPIdx.begin(), GEPIdx.end(),
1050 GEPI->getName(), GEPI);
1051 GEPI->replaceAllUsesWith(NGEPI);
1052 GEPI->eraseFromParent();
1053 return;
1054 }
Chris Lattner330245e2007-09-13 17:29:05 +00001055
Chris Lattner309f20f2007-09-13 21:31:36 +00001056 // Handle PHI nodes. PHI nodes must be merging in the same values, plus
1057 // potentially the original malloc. Insert phi nodes for each field, then
1058 // process uses of the PHI.
Chris Lattnera637a8b2007-09-13 18:00:31 +00001059 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner309f20f2007-09-13 21:31:36 +00001060 std::vector<Value *> PHIsForField;
1061 PHIsForField.resize(FieldGlobals.size());
1062 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1063 Value *LoadV = GetHeapSROALoad(Load, i, FieldGlobals, InsertedLoadsForPtr);
1064
1065 PHINode *FieldPN = new PHINode(LoadV->getType(),
1066 PN->getName()+"."+utostr(i), PN);
1067 // Fill in the predecessor values.
1068 for (unsigned pred = 0, e = PN->getNumIncomingValues(); pred != e; ++pred) {
1069 // Each predecessor either uses the load or the original malloc.
1070 Value *InVal = PN->getIncomingValue(pred);
1071 BasicBlock *BB = PN->getIncomingBlock(pred);
1072 Value *NewVal;
1073 if (isa<MallocInst>(InVal)) {
1074 // Insert a reload from the global in the predecessor.
1075 NewVal = GetHeapSROALoad(BB->getTerminator(), i, FieldGlobals,
1076 PHIsForField);
1077 } else {
1078 NewVal = InsertedLoadsForPtr[i];
1079 }
1080 FieldPN->addIncoming(NewVal, BB);
1081 }
1082 PHIsForField[i] = FieldPN;
1083 }
1084
1085 // Since PHIsForField specifies a phi for every input value, the lazy inserter
1086 // will never insert a load.
Chris Lattnera637a8b2007-09-13 18:00:31 +00001087 while (!PN->use_empty())
Chris Lattner309f20f2007-09-13 21:31:36 +00001088 RewriteHeapSROALoadUser(Load, PN->use_back(), FieldGlobals, PHIsForField);
Chris Lattnera637a8b2007-09-13 18:00:31 +00001089 PN->eraseFromParent();
Chris Lattner330245e2007-09-13 17:29:05 +00001090}
1091
Chris Lattner86395032006-09-30 23:32:09 +00001092/// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global. Ptr
1093/// is a value loaded from the global. Eliminate all uses of Ptr, making them
1094/// use FieldGlobals instead. All uses of loaded values satisfy
1095/// GlobalLoadUsesSimpleEnoughForHeapSRA.
Chris Lattner330245e2007-09-13 17:29:05 +00001096static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner86395032006-09-30 23:32:09 +00001097 const std::vector<GlobalVariable*> &FieldGlobals) {
1098 std::vector<Value *> InsertedLoadsForPtr;
1099 //InsertedLoadsForPtr.resize(FieldGlobals.size());
Chris Lattner330245e2007-09-13 17:29:05 +00001100 while (!Load->use_empty())
1101 RewriteHeapSROALoadUser(Load, Load->use_back(),
1102 FieldGlobals, InsertedLoadsForPtr);
Chris Lattner86395032006-09-30 23:32:09 +00001103}
1104
1105/// PerformHeapAllocSRoA - MI is an allocation of an array of structures. Break
1106/// it up into multiple allocations of arrays of the fields.
1107static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, MallocInst *MI){
Bill Wendling0a81aac2006-11-26 10:02:32 +00001108 DOUT << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *MI;
Chris Lattner86395032006-09-30 23:32:09 +00001109 const StructType *STy = cast<StructType>(MI->getAllocatedType());
1110
1111 // There is guaranteed to be at least one use of the malloc (storing
1112 // it into GV). If there are other uses, change them to be uses of
1113 // the global to simplify later code. This also deletes the store
1114 // into GV.
1115 ReplaceUsesOfMallocWithGlobal(MI, GV);
1116
1117 // Okay, at this point, there are no users of the malloc. Insert N
1118 // new mallocs at the same place as MI, and N globals.
1119 std::vector<GlobalVariable*> FieldGlobals;
1120 std::vector<MallocInst*> FieldMallocs;
1121
1122 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
1123 const Type *FieldTy = STy->getElementType(FieldNo);
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001124 const Type *PFieldTy = PointerType::getUnqual(FieldTy);
Chris Lattner86395032006-09-30 23:32:09 +00001125
1126 GlobalVariable *NGV =
1127 new GlobalVariable(PFieldTy, false, GlobalValue::InternalLinkage,
1128 Constant::getNullValue(PFieldTy),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001129 GV->getName() + ".f" + utostr(FieldNo), GV,
1130 GV->isThreadLocal());
Chris Lattner86395032006-09-30 23:32:09 +00001131 FieldGlobals.push_back(NGV);
1132
1133 MallocInst *NMI = new MallocInst(FieldTy, MI->getArraySize(),
1134 MI->getName() + ".f" + utostr(FieldNo),MI);
1135 FieldMallocs.push_back(NMI);
1136 new StoreInst(NMI, NGV, MI);
1137 }
1138
1139 // The tricky aspect of this transformation is handling the case when malloc
1140 // fails. In the original code, malloc failing would set the result pointer
1141 // of malloc to null. In this case, some mallocs could succeed and others
1142 // could fail. As such, we emit code that looks like this:
1143 // F0 = malloc(field0)
1144 // F1 = malloc(field1)
1145 // F2 = malloc(field2)
1146 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1147 // if (F0) { free(F0); F0 = 0; }
1148 // if (F1) { free(F1); F1 = 0; }
1149 // if (F2) { free(F2); F2 = 0; }
1150 // }
1151 Value *RunningOr = 0;
1152 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001153 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, FieldMallocs[i],
Chris Lattner86395032006-09-30 23:32:09 +00001154 Constant::getNullValue(FieldMallocs[i]->getType()),
1155 "isnull", MI);
1156 if (!RunningOr)
1157 RunningOr = Cond; // First seteq
1158 else
1159 RunningOr = BinaryOperator::createOr(RunningOr, Cond, "tmp", MI);
1160 }
1161
1162 // Split the basic block at the old malloc.
1163 BasicBlock *OrigBB = MI->getParent();
1164 BasicBlock *ContBB = OrigBB->splitBasicBlock(MI, "malloc_cont");
1165
1166 // Create the block to check the first condition. Put all these blocks at the
1167 // end of the function as they are unlikely to be executed.
1168 BasicBlock *NullPtrBlock = new BasicBlock("malloc_ret_null",
1169 OrigBB->getParent());
1170
1171 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1172 // branch on RunningOr.
1173 OrigBB->getTerminator()->eraseFromParent();
1174 new BranchInst(NullPtrBlock, ContBB, RunningOr, OrigBB);
1175
1176 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1177 // pointer, because some may be null while others are not.
1178 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1179 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001180 Value *Cmp = new ICmpInst(ICmpInst::ICMP_NE, GVVal,
1181 Constant::getNullValue(GVVal->getType()),
1182 "tmp", NullPtrBlock);
Chris Lattner86395032006-09-30 23:32:09 +00001183 BasicBlock *FreeBlock = new BasicBlock("free_it", OrigBB->getParent());
1184 BasicBlock *NextBlock = new BasicBlock("next", OrigBB->getParent());
1185 new BranchInst(FreeBlock, NextBlock, Cmp, NullPtrBlock);
1186
1187 // Fill in FreeBlock.
1188 new FreeInst(GVVal, FreeBlock);
1189 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1190 FreeBlock);
1191 new BranchInst(NextBlock, FreeBlock);
1192
1193 NullPtrBlock = NextBlock;
1194 }
1195
1196 new BranchInst(ContBB, NullPtrBlock);
1197
1198
1199 // MI is no longer needed, remove it.
1200 MI->eraseFromParent();
1201
1202
1203 // Okay, the malloc site is completely handled. All of the uses of GV are now
1204 // loads, and all uses of those loads are simple. Rewrite them to use loads
1205 // of the per-field globals instead.
1206 while (!GV->use_empty()) {
Chris Lattner39ff1e22007-01-09 23:29:37 +00001207 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
1208 RewriteUsesOfLoadForHeapSRoA(LI, FieldGlobals);
1209 LI->eraseFromParent();
1210 } else {
1211 // Must be a store of null.
1212 StoreInst *SI = cast<StoreInst>(GV->use_back());
1213 assert(isa<Constant>(SI->getOperand(0)) &&
1214 cast<Constant>(SI->getOperand(0))->isNullValue() &&
1215 "Unexpected heap-sra user!");
1216
1217 // Insert a store of null into each global.
1218 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1219 Constant *Null =
1220 Constant::getNullValue(FieldGlobals[i]->getType()->getElementType());
1221 new StoreInst(Null, FieldGlobals[i], SI);
1222 }
1223 // Erase the original store.
1224 SI->eraseFromParent();
1225 }
Chris Lattner86395032006-09-30 23:32:09 +00001226 }
1227
1228 // The old global is now dead, remove it.
1229 GV->eraseFromParent();
1230
1231 ++NumHeapSRA;
1232 return FieldGlobals[0];
1233}
1234
1235
Chris Lattner9b34a612004-10-09 21:48:45 +00001236// OptimizeOnceStoredGlobal - Try to optimize globals based on the knowledge
1237// that only one value (besides its initializer) is ever stored to the global.
Chris Lattner30ba5692004-10-11 05:54:41 +00001238static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Chris Lattner7f8897f2006-08-27 22:42:52 +00001239 Module::global_iterator &GVI,
1240 TargetData &TD) {
Chris Lattner9b34a612004-10-09 21:48:45 +00001241 if (CastInst *CI = dyn_cast<CastInst>(StoredOnceVal))
1242 StoredOnceVal = CI->getOperand(0);
1243 else if (GetElementPtrInst *GEPI =dyn_cast<GetElementPtrInst>(StoredOnceVal)){
Chris Lattner708148e2004-10-10 23:14:11 +00001244 // "getelementptr Ptr, 0, 0, 0" is really just a cast.
Chris Lattner9b34a612004-10-09 21:48:45 +00001245 bool IsJustACast = true;
1246 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
1247 if (!isa<Constant>(GEPI->getOperand(i)) ||
1248 !cast<Constant>(GEPI->getOperand(i))->isNullValue()) {
1249 IsJustACast = false;
1250 break;
1251 }
1252 if (IsJustACast)
1253 StoredOnceVal = GEPI->getOperand(0);
1254 }
1255
Chris Lattner708148e2004-10-10 23:14:11 +00001256 // If we are dealing with a pointer global that is initialized to null and
1257 // only has one (non-null) value stored into it, then we can optimize any
1258 // users of the loaded value (often calls and loads) that would trap if the
1259 // value was null.
Chris Lattner9b34a612004-10-09 21:48:45 +00001260 if (isa<PointerType>(GV->getInitializer()->getType()) &&
1261 GV->getInitializer()->isNullValue()) {
Chris Lattner708148e2004-10-10 23:14:11 +00001262 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1263 if (GV->getInitializer()->getType() != SOVC->getType())
Reid Spencerd977d862006-12-12 23:36:14 +00001264 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanfd939082005-04-21 23:48:37 +00001265
Chris Lattner708148e2004-10-10 23:14:11 +00001266 // Optimize away any trapping uses of the loaded value.
1267 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC))
Chris Lattner8be80122004-10-10 17:07:12 +00001268 return true;
Chris Lattner30ba5692004-10-11 05:54:41 +00001269 } else if (MallocInst *MI = dyn_cast<MallocInst>(StoredOnceVal)) {
Chris Lattnercff16732006-09-30 19:40:30 +00001270 // If this is a malloc of an abstract type, don't touch it.
1271 if (!MI->getAllocatedType()->isSized())
1272 return false;
1273
Chris Lattner86395032006-09-30 23:32:09 +00001274 // We can't optimize this global unless all uses of it are *known* to be
1275 // of the malloc value, not of the null initializer value (consider a use
1276 // that compares the global's value against zero to see if the malloc has
1277 // been reached). To do this, we check to see if all uses of the global
1278 // would trap if the global were null: this proves that they must all
1279 // happen after the malloc.
1280 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1281 return false;
1282
1283 // We can't optimize this if the malloc itself is used in a complex way,
1284 // for example, being stored into multiple globals. This allows the
1285 // malloc to be stored into the specified global, loaded setcc'd, and
1286 // GEP'd. These are all things we could transform to using the global
1287 // for.
Chris Lattnerc451f9c2007-09-13 16:37:20 +00001288 {
1289 SmallPtrSet<PHINode*, 8> PHIs;
1290 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(MI, GV, PHIs))
1291 return false;
1292 }
Chris Lattner86395032006-09-30 23:32:09 +00001293
1294
Chris Lattner30ba5692004-10-11 05:54:41 +00001295 // If we have a global that is only initialized with a fixed size malloc,
Chris Lattner86395032006-09-30 23:32:09 +00001296 // transform the program to use global memory instead of malloc'd memory.
1297 // This eliminates dynamic allocation, avoids an indirection accessing the
1298 // data, and exposes the resultant global to further GlobalOpt.
Chris Lattnercff16732006-09-30 19:40:30 +00001299 if (ConstantInt *NElements = dyn_cast<ConstantInt>(MI->getArraySize())) {
Chris Lattner86395032006-09-30 23:32:09 +00001300 // Restrict this transformation to only working on small allocations
1301 // (2048 bytes currently), as we don't want to introduce a 16M global or
1302 // something.
Reid Spencerb83eb642006-10-20 07:07:24 +00001303 if (NElements->getZExtValue()*
Duncan Sands514ab342007-11-01 20:53:16 +00001304 TD.getABITypeSize(MI->getAllocatedType()) < 2048) {
Chris Lattner30ba5692004-10-11 05:54:41 +00001305 GVI = OptimizeGlobalAddressOfMalloc(GV, MI);
1306 return true;
1307 }
Chris Lattnercff16732006-09-30 19:40:30 +00001308 }
Chris Lattner86395032006-09-30 23:32:09 +00001309
1310 // If the allocation is an array of structures, consider transforming this
1311 // into multiple malloc'd arrays, one for each field. This is basically
1312 // SRoA for malloc'd memory.
1313 if (const StructType *AllocTy =
1314 dyn_cast<StructType>(MI->getAllocatedType())) {
1315 // This the structure has an unreasonable number of fields, leave it
1316 // alone.
1317 if (AllocTy->getNumElements() <= 16 && AllocTy->getNumElements() > 0 &&
Chris Lattner309f20f2007-09-13 21:31:36 +00001318 GlobalLoadUsesSimpleEnoughForHeapSRA(GV, MI)) {
Chris Lattner86395032006-09-30 23:32:09 +00001319 GVI = PerformHeapAllocSRoA(GV, MI);
1320 return true;
1321 }
1322 }
Chris Lattner708148e2004-10-10 23:14:11 +00001323 }
Chris Lattner9b34a612004-10-09 21:48:45 +00001324 }
Chris Lattner30ba5692004-10-11 05:54:41 +00001325
Chris Lattner9b34a612004-10-09 21:48:45 +00001326 return false;
1327}
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001328
Chris Lattner58e44f42008-01-14 01:17:44 +00001329/// TryToShrinkGlobalToBoolean - At this point, we have learned that the only
1330/// two values ever stored into GV are its initializer and OtherVal. See if we
1331/// can shrink the global into a boolean and select between the two values
1332/// whenever it is used. This exposes the values to other scalar optimizations.
1333static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1334 const Type *GVElType = GV->getType()->getElementType();
1335
1336 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1337 // an FP value or vector, don't do this optimization because a select between
1338 // them is very expensive and unlikely to lead to later simplification.
1339 if (GVElType == Type::Int1Ty || GVElType->isFloatingPoint() ||
1340 isa<VectorType>(GVElType))
1341 return false;
1342
1343 // Walk the use list of the global seeing if all the uses are load or store.
1344 // If there is anything else, bail out.
1345 for (Value::use_iterator I = GV->use_begin(), E = GV->use_end(); I != E; ++I)
1346 if (!isa<LoadInst>(I) && !isa<StoreInst>(I))
1347 return false;
1348
1349 DOUT << " *** SHRINKING TO BOOL: " << *GV;
1350
Chris Lattner96a86b22004-12-12 05:53:50 +00001351 // Create the new global, initializing it to false.
Reid Spencer4fe16d62007-01-11 18:21:29 +00001352 GlobalVariable *NewGV = new GlobalVariable(Type::Int1Ty, false,
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001353 GlobalValue::InternalLinkage, ConstantInt::getFalse(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001354 GV->getName()+".b",
1355 (Module *)NULL,
1356 GV->isThreadLocal());
Chris Lattner96a86b22004-12-12 05:53:50 +00001357 GV->getParent()->getGlobalList().insert(GV, NewGV);
1358
1359 Constant *InitVal = GV->getInitializer();
Reid Spencer4fe16d62007-01-11 18:21:29 +00001360 assert(InitVal->getType() != Type::Int1Ty && "No reason to shrink to bool!");
Chris Lattner96a86b22004-12-12 05:53:50 +00001361
1362 // If initialized to zero and storing one into the global, we can use a cast
1363 // instead of a select to synthesize the desired value.
1364 bool IsOneZero = false;
1365 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
Reid Spencercae57542007-03-02 00:28:52 +00001366 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner96a86b22004-12-12 05:53:50 +00001367
1368 while (!GV->use_empty()) {
1369 Instruction *UI = cast<Instruction>(GV->use_back());
1370 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1371 // Change the store into a boolean store.
1372 bool StoringOther = SI->getOperand(0) == OtherVal;
1373 // Only do this if we weren't storing a loaded value.
Chris Lattner38c25562004-12-12 19:34:41 +00001374 Value *StoreVal;
Chris Lattner96a86b22004-12-12 05:53:50 +00001375 if (StoringOther || SI->getOperand(0) == InitVal)
Reid Spencer579dca12007-01-12 04:24:46 +00001376 StoreVal = ConstantInt::get(Type::Int1Ty, StoringOther);
Chris Lattner38c25562004-12-12 19:34:41 +00001377 else {
1378 // Otherwise, we are storing a previously loaded copy. To do this,
1379 // change the copy from copying the original value to just copying the
1380 // bool.
1381 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1382
1383 // If we're already replaced the input, StoredVal will be a cast or
1384 // select instruction. If not, it will be a load of the original
1385 // global.
1386 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1387 assert(LI->getOperand(0) == GV && "Not a copy!");
1388 // Insert a new load, to preserve the saved value.
1389 StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI);
1390 } else {
1391 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1392 "This is not a form that we understand!");
1393 StoreVal = StoredVal->getOperand(0);
1394 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1395 }
1396 }
1397 new StoreInst(StoreVal, NewGV, SI);
Chris Lattner58e44f42008-01-14 01:17:44 +00001398 } else {
Chris Lattner96a86b22004-12-12 05:53:50 +00001399 // Change the load into a load of bool then a select.
1400 LoadInst *LI = cast<LoadInst>(UI);
Chris Lattner046800a2007-02-11 01:08:35 +00001401 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", LI);
Chris Lattner96a86b22004-12-12 05:53:50 +00001402 Value *NSI;
1403 if (IsOneZero)
Chris Lattner046800a2007-02-11 01:08:35 +00001404 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
Misha Brukmanfd939082005-04-21 23:48:37 +00001405 else
Chris Lattner046800a2007-02-11 01:08:35 +00001406 NSI = new SelectInst(NLI, OtherVal, InitVal, "", LI);
1407 NSI->takeName(LI);
Chris Lattner96a86b22004-12-12 05:53:50 +00001408 LI->replaceAllUsesWith(NSI);
1409 }
1410 UI->eraseFromParent();
1411 }
1412
1413 GV->eraseFromParent();
Chris Lattner58e44f42008-01-14 01:17:44 +00001414 return true;
Chris Lattner96a86b22004-12-12 05:53:50 +00001415}
1416
1417
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001418/// ProcessInternalGlobal - Analyze the specified global variable and optimize
1419/// it if possible. If we make a change, return true.
Chris Lattner30ba5692004-10-11 05:54:41 +00001420bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
Chris Lattnere4d5c442005-03-15 04:54:21 +00001421 Module::global_iterator &GVI) {
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001422 std::set<PHINode*> PHIUsers;
1423 GlobalStatus GS;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001424 GV->removeDeadConstantUsers();
1425
1426 if (GV->use_empty()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001427 DOUT << "GLOBAL DEAD: " << *GV;
Chris Lattner7a7ed022004-10-16 18:09:00 +00001428 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001429 ++NumDeleted;
1430 return true;
1431 }
1432
1433 if (!AnalyzeGlobal(GV, GS, PHIUsers)) {
Chris Lattnercff16732006-09-30 19:40:30 +00001434#if 0
Bill Wendlinge8156192006-12-07 01:30:32 +00001435 cerr << "Global: " << *GV;
1436 cerr << " isLoaded = " << GS.isLoaded << "\n";
1437 cerr << " StoredType = ";
Chris Lattnercff16732006-09-30 19:40:30 +00001438 switch (GS.StoredType) {
Bill Wendlinge8156192006-12-07 01:30:32 +00001439 case GlobalStatus::NotStored: cerr << "NEVER STORED\n"; break;
1440 case GlobalStatus::isInitializerStored: cerr << "INIT STORED\n"; break;
1441 case GlobalStatus::isStoredOnce: cerr << "STORED ONCE\n"; break;
1442 case GlobalStatus::isStored: cerr << "stored\n"; break;
Chris Lattnercff16732006-09-30 19:40:30 +00001443 }
1444 if (GS.StoredType == GlobalStatus::isStoredOnce && GS.StoredOnceValue)
Bill Wendlinge8156192006-12-07 01:30:32 +00001445 cerr << " StoredOnceValue = " << *GS.StoredOnceValue << "\n";
Chris Lattnercff16732006-09-30 19:40:30 +00001446 if (GS.AccessingFunction && !GS.HasMultipleAccessingFunctions)
Bill Wendlinge8156192006-12-07 01:30:32 +00001447 cerr << " AccessingFunction = " << GS.AccessingFunction->getName()
Chris Lattnercff16732006-09-30 19:40:30 +00001448 << "\n";
Bill Wendlinge8156192006-12-07 01:30:32 +00001449 cerr << " HasMultipleAccessingFunctions = "
Chris Lattnercff16732006-09-30 19:40:30 +00001450 << GS.HasMultipleAccessingFunctions << "\n";
Bill Wendlinge8156192006-12-07 01:30:32 +00001451 cerr << " HasNonInstructionUser = " << GS.HasNonInstructionUser<<"\n";
Bill Wendlinge8156192006-12-07 01:30:32 +00001452 cerr << "\n";
Chris Lattnercff16732006-09-30 19:40:30 +00001453#endif
1454
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001455 // If this is a first class global and has only one accessing function
1456 // and this function is main (which we know is not recursive we can make
1457 // this global a local variable) we replace the global with a local alloca
1458 // in this function.
1459 //
1460 // NOTE: It doesn't make sense to promote non first class types since we
1461 // are just replacing static memory to stack memory.
1462 if (!GS.HasMultipleAccessingFunctions &&
Chris Lattner553ca522005-06-15 21:11:48 +00001463 GS.AccessingFunction && !GS.HasNonInstructionUser &&
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001464 GV->getType()->getElementType()->isFirstClassType() &&
1465 GS.AccessingFunction->getName() == "main" &&
1466 GS.AccessingFunction->hasExternalLinkage()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001467 DOUT << "LOCALIZING GLOBAL: " << *GV;
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001468 Instruction* FirstI = GS.AccessingFunction->getEntryBlock().begin();
1469 const Type* ElemTy = GV->getType()->getElementType();
Nate Begeman14b05292005-11-05 09:21:28 +00001470 // FIXME: Pass Global's alignment when globals have alignment
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001471 AllocaInst* Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), FirstI);
1472 if (!isa<UndefValue>(GV->getInitializer()))
1473 new StoreInst(GV->getInitializer(), Alloca, FirstI);
Misha Brukmanfd939082005-04-21 23:48:37 +00001474
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001475 GV->replaceAllUsesWith(Alloca);
1476 GV->eraseFromParent();
1477 ++NumLocalized;
1478 return true;
1479 }
Chris Lattnercff16732006-09-30 19:40:30 +00001480
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001481 // If the global is never loaded (but may be stored to), it is dead.
1482 // Delete it now.
1483 if (!GS.isLoaded) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001484 DOUT << "GLOBAL NEVER LOADED: " << *GV;
Chris Lattner930f4752004-10-09 03:32:52 +00001485
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001486 // Delete any stores we can find to the global. We may not be able to
1487 // make it completely dead though.
Chris Lattner031955d2004-10-10 16:43:46 +00001488 bool Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer());
Chris Lattner930f4752004-10-09 03:32:52 +00001489
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001490 // If the global is dead now, delete it.
1491 if (GV->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +00001492 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001493 ++NumDeleted;
Chris Lattner930f4752004-10-09 03:32:52 +00001494 Changed = true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001495 }
Chris Lattner930f4752004-10-09 03:32:52 +00001496 return Changed;
Misha Brukmanfd939082005-04-21 23:48:37 +00001497
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001498 } else if (GS.StoredType <= GlobalStatus::isInitializerStored) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001499 DOUT << "MARKING CONSTANT: " << *GV;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001500 GV->setConstant(true);
Misha Brukmanfd939082005-04-21 23:48:37 +00001501
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001502 // Clean up any obviously simplifiable users now.
1503 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanfd939082005-04-21 23:48:37 +00001504
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001505 // If the global is dead now, just nuke it.
1506 if (GV->use_empty()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001507 DOUT << " *** Marking constant allowed us to simplify "
1508 << "all users and delete global!\n";
Chris Lattner7a7ed022004-10-16 18:09:00 +00001509 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001510 ++NumDeleted;
1511 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001512
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001513 ++NumMarked;
1514 return true;
Chris Lattner727c2102008-01-14 01:31:05 +00001515 } else if (!GV->getInitializer()->getType()->isFirstClassType()) {
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001516 if (GlobalVariable *FirstNewGV = SRAGlobal(GV)) {
1517 GVI = FirstNewGV; // Don't skip the newly produced globals!
1518 return true;
1519 }
Chris Lattner9b34a612004-10-09 21:48:45 +00001520 } else if (GS.StoredType == GlobalStatus::isStoredOnce) {
Chris Lattner96a86b22004-12-12 05:53:50 +00001521 // If the initial value for the global was an undef value, and if only
1522 // one other value was stored into it, we can just change the
1523 // initializer to be an undef value, then delete all stores to the
1524 // global. This allows us to mark it constant.
1525 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1526 if (isa<UndefValue>(GV->getInitializer())) {
1527 // Change the initial value here.
1528 GV->setInitializer(SOVConstant);
Misha Brukmanfd939082005-04-21 23:48:37 +00001529
Chris Lattner96a86b22004-12-12 05:53:50 +00001530 // Clean up any obviously simplifiable users now.
1531 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanfd939082005-04-21 23:48:37 +00001532
Chris Lattner96a86b22004-12-12 05:53:50 +00001533 if (GV->use_empty()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001534 DOUT << " *** Substituting initializer allowed us to "
1535 << "simplify all users and delete global!\n";
Chris Lattner96a86b22004-12-12 05:53:50 +00001536 GV->eraseFromParent();
1537 ++NumDeleted;
1538 } else {
1539 GVI = GV;
1540 }
1541 ++NumSubstitute;
1542 return true;
Chris Lattner7a7ed022004-10-16 18:09:00 +00001543 }
Chris Lattner7a7ed022004-10-16 18:09:00 +00001544
Chris Lattner9b34a612004-10-09 21:48:45 +00001545 // Try to optimize globals based on the knowledge that only one value
1546 // (besides its initializer) is ever stored to the global.
Chris Lattner30ba5692004-10-11 05:54:41 +00001547 if (OptimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GVI,
1548 getAnalysis<TargetData>()))
Chris Lattner9b34a612004-10-09 21:48:45 +00001549 return true;
Chris Lattner96a86b22004-12-12 05:53:50 +00001550
1551 // Otherwise, if the global was not a boolean, we can shrink it to be a
1552 // boolean.
1553 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
Chris Lattner58e44f42008-01-14 01:17:44 +00001554 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Chris Lattner96a86b22004-12-12 05:53:50 +00001555 ++NumShrunkToBool;
1556 return true;
1557 }
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001558 }
1559 }
1560 return false;
1561}
1562
Chris Lattnerfb217ad2005-05-08 22:18:06 +00001563/// OnlyCalledDirectly - Return true if the specified function is only called
1564/// directly. In other words, its address is never taken.
1565static bool OnlyCalledDirectly(Function *F) {
1566 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1567 Instruction *User = dyn_cast<Instruction>(*UI);
1568 if (!User) return false;
1569 if (!isa<CallInst>(User) && !isa<InvokeInst>(User)) return false;
1570
1571 // See if the function address is passed as an argument.
1572 for (unsigned i = 1, e = User->getNumOperands(); i != e; ++i)
1573 if (User->getOperand(i) == F) return false;
1574 }
1575 return true;
1576}
1577
1578/// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
1579/// function, changing them to FastCC.
1580static void ChangeCalleesToFastCall(Function *F) {
1581 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1582 Instruction *User = cast<Instruction>(*UI);
1583 if (CallInst *CI = dyn_cast<CallInst>(User))
1584 CI->setCallingConv(CallingConv::Fast);
1585 else
1586 cast<InvokeInst>(User)->setCallingConv(CallingConv::Fast);
1587 }
1588}
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001589
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001590bool GlobalOpt::OptimizeFunctions(Module &M) {
1591 bool Changed = false;
1592 // Optimize functions.
1593 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
1594 Function *F = FI++;
1595 F->removeDeadConstantUsers();
1596 if (F->use_empty() && (F->hasInternalLinkage() ||
1597 F->hasLinkOnceLinkage())) {
1598 M.getFunctionList().erase(F);
1599 Changed = true;
1600 ++NumFnDeleted;
1601 } else if (F->hasInternalLinkage() &&
1602 F->getCallingConv() == CallingConv::C && !F->isVarArg() &&
1603 OnlyCalledDirectly(F)) {
1604 // If this function has C calling conventions, is not a varargs
1605 // function, and is only called directly, promote it to use the Fast
1606 // calling convention.
1607 F->setCallingConv(CallingConv::Fast);
1608 ChangeCalleesToFastCall(F);
1609 ++NumFastCallFns;
1610 Changed = true;
1611 }
1612 }
1613 return Changed;
1614}
1615
1616bool GlobalOpt::OptimizeGlobalVars(Module &M) {
1617 bool Changed = false;
1618 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
1619 GVI != E; ) {
1620 GlobalVariable *GV = GVI++;
1621 if (!GV->isConstant() && GV->hasInternalLinkage() &&
1622 GV->hasInitializer())
1623 Changed |= ProcessInternalGlobal(GV, GVI);
1624 }
1625 return Changed;
1626}
1627
1628/// FindGlobalCtors - Find the llvm.globalctors list, verifying that all
1629/// initializers have an init priority of 65535.
1630GlobalVariable *GlobalOpt::FindGlobalCtors(Module &M) {
Alkis Evlogimenose9c6d362005-10-25 11:18:06 +00001631 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1632 I != E; ++I)
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001633 if (I->getName() == "llvm.global_ctors") {
1634 // Found it, verify it's an array of { int, void()* }.
1635 const ArrayType *ATy =dyn_cast<ArrayType>(I->getType()->getElementType());
1636 if (!ATy) return 0;
1637 const StructType *STy = dyn_cast<StructType>(ATy->getElementType());
1638 if (!STy || STy->getNumElements() != 2 ||
Reid Spencerc5b206b2006-12-31 05:48:39 +00001639 STy->getElementType(0) != Type::Int32Ty) return 0;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001640 const PointerType *PFTy = dyn_cast<PointerType>(STy->getElementType(1));
1641 if (!PFTy) return 0;
1642 const FunctionType *FTy = dyn_cast<FunctionType>(PFTy->getElementType());
1643 if (!FTy || FTy->getReturnType() != Type::VoidTy || FTy->isVarArg() ||
1644 FTy->getNumParams() != 0)
1645 return 0;
1646
1647 // Verify that the initializer is simple enough for us to handle.
1648 if (!I->hasInitializer()) return 0;
1649 ConstantArray *CA = dyn_cast<ConstantArray>(I->getInitializer());
1650 if (!CA) return 0;
1651 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1652 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(CA->getOperand(i))) {
Chris Lattner7d8e58f2005-09-26 02:19:27 +00001653 if (isa<ConstantPointerNull>(CS->getOperand(1)))
1654 continue;
1655
1656 // Must have a function or null ptr.
1657 if (!isa<Function>(CS->getOperand(1)))
1658 return 0;
1659
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001660 // Init priority must be standard.
1661 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
Reid Spencerb83eb642006-10-20 07:07:24 +00001662 if (!CI || CI->getZExtValue() != 65535)
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001663 return 0;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001664 } else {
1665 return 0;
1666 }
1667
1668 return I;
1669 }
1670 return 0;
1671}
1672
Chris Lattnerdb973e62005-09-26 02:31:18 +00001673/// ParseGlobalCtors - Given a llvm.global_ctors list that we can understand,
1674/// return a list of the functions and null terminator as a vector.
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001675static std::vector<Function*> ParseGlobalCtors(GlobalVariable *GV) {
1676 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1677 std::vector<Function*> Result;
1678 Result.reserve(CA->getNumOperands());
1679 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) {
1680 ConstantStruct *CS = cast<ConstantStruct>(CA->getOperand(i));
1681 Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
1682 }
1683 return Result;
1684}
1685
Chris Lattnerdb973e62005-09-26 02:31:18 +00001686/// InstallGlobalCtors - Given a specified llvm.global_ctors list, install the
1687/// specified array, returning the new global to use.
1688static GlobalVariable *InstallGlobalCtors(GlobalVariable *GCL,
1689 const std::vector<Function*> &Ctors) {
1690 // If we made a change, reassemble the initializer list.
1691 std::vector<Constant*> CSVals;
Reid Spencerc5b206b2006-12-31 05:48:39 +00001692 CSVals.push_back(ConstantInt::get(Type::Int32Ty, 65535));
Chris Lattnerdb973e62005-09-26 02:31:18 +00001693 CSVals.push_back(0);
1694
1695 // Create the new init list.
1696 std::vector<Constant*> CAList;
1697 for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
Chris Lattner79c11012005-09-26 04:44:35 +00001698 if (Ctors[i]) {
Chris Lattnerdb973e62005-09-26 02:31:18 +00001699 CSVals[1] = Ctors[i];
Chris Lattner79c11012005-09-26 04:44:35 +00001700 } else {
Chris Lattnerdb973e62005-09-26 02:31:18 +00001701 const Type *FTy = FunctionType::get(Type::VoidTy,
1702 std::vector<const Type*>(), false);
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001703 const PointerType *PFTy = PointerType::getUnqual(FTy);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001704 CSVals[1] = Constant::getNullValue(PFTy);
Reid Spencerc5b206b2006-12-31 05:48:39 +00001705 CSVals[0] = ConstantInt::get(Type::Int32Ty, 2147483647);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001706 }
1707 CAList.push_back(ConstantStruct::get(CSVals));
1708 }
1709
1710 // Create the array initializer.
1711 const Type *StructTy =
1712 cast<ArrayType>(GCL->getType()->getElementType())->getElementType();
1713 Constant *CA = ConstantArray::get(ArrayType::get(StructTy, CAList.size()),
1714 CAList);
1715
1716 // If we didn't change the number of elements, don't create a new GV.
1717 if (CA->getType() == GCL->getInitializer()->getType()) {
1718 GCL->setInitializer(CA);
1719 return GCL;
1720 }
1721
1722 // Create the new global and insert it next to the existing list.
1723 GlobalVariable *NGV = new GlobalVariable(CA->getType(), GCL->isConstant(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001724 GCL->getLinkage(), CA, "",
1725 (Module *)NULL,
1726 GCL->isThreadLocal());
Chris Lattnerdb973e62005-09-26 02:31:18 +00001727 GCL->getParent()->getGlobalList().insert(GCL, NGV);
Chris Lattner046800a2007-02-11 01:08:35 +00001728 NGV->takeName(GCL);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001729
1730 // Nuke the old list, replacing any uses with the new one.
1731 if (!GCL->use_empty()) {
1732 Constant *V = NGV;
1733 if (V->getType() != GCL->getType())
Reid Spencerd977d862006-12-12 23:36:14 +00001734 V = ConstantExpr::getBitCast(V, GCL->getType());
Chris Lattnerdb973e62005-09-26 02:31:18 +00001735 GCL->replaceAllUsesWith(V);
1736 }
1737 GCL->eraseFromParent();
1738
1739 if (Ctors.size())
1740 return NGV;
1741 else
1742 return 0;
1743}
Chris Lattner79c11012005-09-26 04:44:35 +00001744
1745
1746static Constant *getVal(std::map<Value*, Constant*> &ComputedValues,
1747 Value *V) {
1748 if (Constant *CV = dyn_cast<Constant>(V)) return CV;
1749 Constant *R = ComputedValues[V];
1750 assert(R && "Reference to an uncomputed value!");
1751 return R;
1752}
1753
1754/// isSimpleEnoughPointerToCommit - Return true if this constant is simple
1755/// enough for us to understand. In particular, if it is a cast of something,
1756/// we punt. We basically just support direct accesses to globals and GEP's of
1757/// globals. This should be kept up to date with CommitValueTo.
1758static bool isSimpleEnoughPointerToCommit(Constant *C) {
Chris Lattner231308c2005-09-27 04:50:03 +00001759 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
1760 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001761 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
Reid Spencer5cbf9852007-01-30 20:08:39 +00001762 return !GV->isDeclaration(); // reject external globals.
Chris Lattner231308c2005-09-27 04:50:03 +00001763 }
Chris Lattner798b4d52005-09-26 06:52:44 +00001764 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
1765 // Handle a constantexpr gep.
1766 if (CE->getOpcode() == Instruction::GetElementPtr &&
1767 isa<GlobalVariable>(CE->getOperand(0))) {
1768 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Chris Lattner231308c2005-09-27 04:50:03 +00001769 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001770 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
Chris Lattner798b4d52005-09-26 06:52:44 +00001771 return GV->hasInitializer() &&
1772 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1773 }
Chris Lattner79c11012005-09-26 04:44:35 +00001774 return false;
1775}
1776
Chris Lattner798b4d52005-09-26 06:52:44 +00001777/// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
1778/// initializer. This returns 'Init' modified to reflect 'Val' stored into it.
1779/// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
1780static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
1781 ConstantExpr *Addr, unsigned OpNo) {
1782 // Base case of the recursion.
1783 if (OpNo == Addr->getNumOperands()) {
1784 assert(Val->getType() == Init->getType() && "Type mismatch!");
1785 return Val;
1786 }
1787
1788 if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
1789 std::vector<Constant*> Elts;
1790
1791 // Break up the constant into its elements.
1792 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
1793 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
1794 Elts.push_back(CS->getOperand(i));
1795 } else if (isa<ConstantAggregateZero>(Init)) {
1796 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1797 Elts.push_back(Constant::getNullValue(STy->getElementType(i)));
1798 } else if (isa<UndefValue>(Init)) {
1799 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1800 Elts.push_back(UndefValue::get(STy->getElementType(i)));
1801 } else {
1802 assert(0 && "This code is out of sync with "
1803 " ConstantFoldLoadThroughGEPConstantExpr");
1804 }
1805
1806 // Replace the element that we are supposed to.
Reid Spencerb83eb642006-10-20 07:07:24 +00001807 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
1808 unsigned Idx = CU->getZExtValue();
1809 assert(Idx < STy->getNumElements() && "Struct index out of range!");
Chris Lattner798b4d52005-09-26 06:52:44 +00001810 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
1811
1812 // Return the modified struct.
Chris Lattnerf0a9aab2007-06-04 22:23:42 +00001813 return ConstantStruct::get(&Elts[0], Elts.size(), STy->isPacked());
Chris Lattner798b4d52005-09-26 06:52:44 +00001814 } else {
1815 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
1816 const ArrayType *ATy = cast<ArrayType>(Init->getType());
1817
1818 // Break up the array into elements.
1819 std::vector<Constant*> Elts;
1820 if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
1821 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1822 Elts.push_back(CA->getOperand(i));
1823 } else if (isa<ConstantAggregateZero>(Init)) {
1824 Constant *Elt = Constant::getNullValue(ATy->getElementType());
1825 Elts.assign(ATy->getNumElements(), Elt);
1826 } else if (isa<UndefValue>(Init)) {
1827 Constant *Elt = UndefValue::get(ATy->getElementType());
1828 Elts.assign(ATy->getNumElements(), Elt);
1829 } else {
1830 assert(0 && "This code is out of sync with "
1831 " ConstantFoldLoadThroughGEPConstantExpr");
1832 }
1833
Reid Spencerb83eb642006-10-20 07:07:24 +00001834 assert(CI->getZExtValue() < ATy->getNumElements());
1835 Elts[CI->getZExtValue()] =
1836 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
Chris Lattner798b4d52005-09-26 06:52:44 +00001837 return ConstantArray::get(ATy, Elts);
1838 }
1839}
1840
Chris Lattner79c11012005-09-26 04:44:35 +00001841/// CommitValueTo - We have decided that Addr (which satisfies the predicate
1842/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
1843static void CommitValueTo(Constant *Val, Constant *Addr) {
Chris Lattner798b4d52005-09-26 06:52:44 +00001844 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
1845 assert(GV->hasInitializer());
1846 GV->setInitializer(Val);
1847 return;
1848 }
1849
1850 ConstantExpr *CE = cast<ConstantExpr>(Addr);
1851 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1852
1853 Constant *Init = GV->getInitializer();
1854 Init = EvaluateStoreInto(Init, Val, CE, 2);
1855 GV->setInitializer(Init);
Chris Lattner79c11012005-09-26 04:44:35 +00001856}
1857
Chris Lattner562a0552005-09-26 05:16:34 +00001858/// ComputeLoadResult - Return the value that would be computed by a load from
1859/// P after the stores reflected by 'memory' have been performed. If we can't
1860/// decide, return null.
Chris Lattner04de1cf2005-09-26 05:15:37 +00001861static Constant *ComputeLoadResult(Constant *P,
1862 const std::map<Constant*, Constant*> &Memory) {
1863 // If this memory location has been recently stored, use the stored value: it
1864 // is the most up-to-date.
1865 std::map<Constant*, Constant*>::const_iterator I = Memory.find(P);
1866 if (I != Memory.end()) return I->second;
1867
1868 // Access it.
1869 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
1870 if (GV->hasInitializer())
1871 return GV->getInitializer();
1872 return 0;
Chris Lattner04de1cf2005-09-26 05:15:37 +00001873 }
Chris Lattner798b4d52005-09-26 06:52:44 +00001874
1875 // Handle a constantexpr getelementptr.
1876 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
1877 if (CE->getOpcode() == Instruction::GetElementPtr &&
1878 isa<GlobalVariable>(CE->getOperand(0))) {
1879 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1880 if (GV->hasInitializer())
1881 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1882 }
1883
1884 return 0; // don't know how to evaluate.
Chris Lattner04de1cf2005-09-26 05:15:37 +00001885}
1886
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001887/// EvaluateFunction - Evaluate a call to function F, returning true if
1888/// successful, false if we can't evaluate it. ActualArgs contains the formal
1889/// arguments for the function.
Chris Lattnercd271422005-09-27 04:45:34 +00001890static bool EvaluateFunction(Function *F, Constant *&RetVal,
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001891 const std::vector<Constant*> &ActualArgs,
1892 std::vector<Function*> &CallStack,
1893 std::map<Constant*, Constant*> &MutatedMemory,
1894 std::vector<GlobalVariable*> &AllocaTmps) {
Chris Lattnercd271422005-09-27 04:45:34 +00001895 // Check to see if this function is already executing (recursion). If so,
1896 // bail out. TODO: we might want to accept limited recursion.
1897 if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
1898 return false;
1899
1900 CallStack.push_back(F);
1901
Chris Lattner79c11012005-09-26 04:44:35 +00001902 /// Values - As we compute SSA register values, we store their contents here.
1903 std::map<Value*, Constant*> Values;
Chris Lattnercd271422005-09-27 04:45:34 +00001904
1905 // Initialize arguments to the incoming values specified.
1906 unsigned ArgNo = 0;
1907 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
1908 ++AI, ++ArgNo)
1909 Values[AI] = ActualArgs[ArgNo];
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001910
Chris Lattnercdf98be2005-09-26 04:57:38 +00001911 /// ExecutedBlocks - We only handle non-looping, non-recursive code. As such,
1912 /// we can only evaluate any one basic block at most once. This set keeps
1913 /// track of what we have executed so we can detect recursive cases etc.
1914 std::set<BasicBlock*> ExecutedBlocks;
Chris Lattnera22fdb02005-09-26 17:07:09 +00001915
Chris Lattner79c11012005-09-26 04:44:35 +00001916 // CurInst - The current instruction we're evaluating.
1917 BasicBlock::iterator CurInst = F->begin()->begin();
1918
1919 // This is the main evaluation loop.
1920 while (1) {
1921 Constant *InstResult = 0;
1922
1923 if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00001924 if (SI->isVolatile()) return false; // no volatile accesses.
Chris Lattner79c11012005-09-26 04:44:35 +00001925 Constant *Ptr = getVal(Values, SI->getOperand(1));
1926 if (!isSimpleEnoughPointerToCommit(Ptr))
1927 // If this is too complex for us to commit, reject it.
Chris Lattnercd271422005-09-27 04:45:34 +00001928 return false;
Chris Lattner79c11012005-09-26 04:44:35 +00001929 Constant *Val = getVal(Values, SI->getOperand(0));
1930 MutatedMemory[Ptr] = Val;
1931 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
1932 InstResult = ConstantExpr::get(BO->getOpcode(),
1933 getVal(Values, BO->getOperand(0)),
1934 getVal(Values, BO->getOperand(1)));
Reid Spencere4d87aa2006-12-23 06:05:41 +00001935 } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
1936 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
1937 getVal(Values, CI->getOperand(0)),
1938 getVal(Values, CI->getOperand(1)));
Chris Lattner79c11012005-09-26 04:44:35 +00001939 } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
Chris Lattner9a989f02006-11-30 17:26:08 +00001940 InstResult = ConstantExpr::getCast(CI->getOpcode(),
1941 getVal(Values, CI->getOperand(0)),
Chris Lattner79c11012005-09-26 04:44:35 +00001942 CI->getType());
1943 } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
1944 InstResult = ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)),
1945 getVal(Values, SI->getOperand(1)),
1946 getVal(Values, SI->getOperand(2)));
Chris Lattner04de1cf2005-09-26 05:15:37 +00001947 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
1948 Constant *P = getVal(Values, GEP->getOperand(0));
Chris Lattner55eb1c42007-01-31 04:40:53 +00001949 SmallVector<Constant*, 8> GEPOps;
Chris Lattner04de1cf2005-09-26 05:15:37 +00001950 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
1951 GEPOps.push_back(getVal(Values, GEP->getOperand(i)));
Chris Lattner55eb1c42007-01-31 04:40:53 +00001952 InstResult = ConstantExpr::getGetElementPtr(P, &GEPOps[0], GEPOps.size());
Chris Lattner04de1cf2005-09-26 05:15:37 +00001953 } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00001954 if (LI->isVolatile()) return false; // no volatile accesses.
Chris Lattner04de1cf2005-09-26 05:15:37 +00001955 InstResult = ComputeLoadResult(getVal(Values, LI->getOperand(0)),
1956 MutatedMemory);
Chris Lattnercd271422005-09-27 04:45:34 +00001957 if (InstResult == 0) return false; // Could not evaluate load.
Chris Lattnera22fdb02005-09-26 17:07:09 +00001958 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00001959 if (AI->isArrayAllocation()) return false; // Cannot handle array allocs.
Chris Lattnera22fdb02005-09-26 17:07:09 +00001960 const Type *Ty = AI->getType()->getElementType();
1961 AllocaTmps.push_back(new GlobalVariable(Ty, false,
1962 GlobalValue::InternalLinkage,
1963 UndefValue::get(Ty),
1964 AI->getName()));
Chris Lattnercd271422005-09-27 04:45:34 +00001965 InstResult = AllocaTmps.back();
1966 } else if (CallInst *CI = dyn_cast<CallInst>(CurInst)) {
Chris Lattner7cd580f2006-07-07 21:37:01 +00001967 // Cannot handle inline asm.
1968 if (isa<InlineAsm>(CI->getOperand(0))) return false;
1969
Chris Lattnercd271422005-09-27 04:45:34 +00001970 // Resolve function pointers.
1971 Function *Callee = dyn_cast<Function>(getVal(Values, CI->getOperand(0)));
1972 if (!Callee) return false; // Cannot resolve.
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00001973
Chris Lattnercd271422005-09-27 04:45:34 +00001974 std::vector<Constant*> Formals;
1975 for (unsigned i = 1, e = CI->getNumOperands(); i != e; ++i)
1976 Formals.push_back(getVal(Values, CI->getOperand(i)));
Chris Lattnercd271422005-09-27 04:45:34 +00001977
Reid Spencer5cbf9852007-01-30 20:08:39 +00001978 if (Callee->isDeclaration()) {
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00001979 // If this is a function we can constant fold, do it.
Chris Lattner6c1f5652007-01-30 23:14:52 +00001980 if (Constant *C = ConstantFoldCall(Callee, &Formals[0],
1981 Formals.size())) {
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00001982 InstResult = C;
1983 } else {
1984 return false;
1985 }
1986 } else {
1987 if (Callee->getFunctionType()->isVarArg())
1988 return false;
1989
1990 Constant *RetVal;
1991
1992 // Execute the call, if successful, use the return value.
1993 if (!EvaluateFunction(Callee, RetVal, Formals, CallStack,
1994 MutatedMemory, AllocaTmps))
1995 return false;
1996 InstResult = RetVal;
1997 }
Reid Spencer3ed469c2006-11-02 20:25:50 +00001998 } else if (isa<TerminatorInst>(CurInst)) {
Chris Lattnercdf98be2005-09-26 04:57:38 +00001999 BasicBlock *NewBB = 0;
2000 if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
2001 if (BI->isUnconditional()) {
2002 NewBB = BI->getSuccessor(0);
2003 } else {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002004 ConstantInt *Cond =
2005 dyn_cast<ConstantInt>(getVal(Values, BI->getCondition()));
Chris Lattner97d1fad2007-01-12 18:30:11 +00002006 if (!Cond) return false; // Cannot determine.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002007
Reid Spencer579dca12007-01-12 04:24:46 +00002008 NewBB = BI->getSuccessor(!Cond->getZExtValue());
Chris Lattnercdf98be2005-09-26 04:57:38 +00002009 }
2010 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
2011 ConstantInt *Val =
2012 dyn_cast<ConstantInt>(getVal(Values, SI->getCondition()));
Chris Lattnercd271422005-09-27 04:45:34 +00002013 if (!Val) return false; // Cannot determine.
Chris Lattnercdf98be2005-09-26 04:57:38 +00002014 NewBB = SI->getSuccessor(SI->findCaseValue(Val));
2015 } else if (ReturnInst *RI = dyn_cast<ReturnInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00002016 if (RI->getNumOperands())
2017 RetVal = getVal(Values, RI->getOperand(0));
2018
2019 CallStack.pop_back(); // return from fn.
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002020 return true; // We succeeded at evaluating this ctor!
Chris Lattnercdf98be2005-09-26 04:57:38 +00002021 } else {
Chris Lattnercd271422005-09-27 04:45:34 +00002022 // invoke, unwind, unreachable.
2023 return false; // Cannot handle this terminator.
Chris Lattnercdf98be2005-09-26 04:57:38 +00002024 }
2025
2026 // Okay, we succeeded in evaluating this control flow. See if we have
Chris Lattnercd271422005-09-27 04:45:34 +00002027 // executed the new block before. If so, we have a looping function,
2028 // which we cannot evaluate in reasonable time.
Chris Lattnercdf98be2005-09-26 04:57:38 +00002029 if (!ExecutedBlocks.insert(NewBB).second)
Chris Lattnercd271422005-09-27 04:45:34 +00002030 return false; // looped!
Chris Lattnercdf98be2005-09-26 04:57:38 +00002031
2032 // Okay, we have never been in this block before. Check to see if there
2033 // are any PHI nodes. If so, evaluate them with information about where
2034 // we came from.
2035 BasicBlock *OldBB = CurInst->getParent();
2036 CurInst = NewBB->begin();
2037 PHINode *PN;
2038 for (; (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
2039 Values[PN] = getVal(Values, PN->getIncomingValueForBlock(OldBB));
2040
2041 // Do NOT increment CurInst. We know that the terminator had no value.
2042 continue;
Chris Lattner79c11012005-09-26 04:44:35 +00002043 } else {
Chris Lattner79c11012005-09-26 04:44:35 +00002044 // Did not know how to evaluate this!
Chris Lattnercd271422005-09-27 04:45:34 +00002045 return false;
Chris Lattner79c11012005-09-26 04:44:35 +00002046 }
2047
2048 if (!CurInst->use_empty())
2049 Values[CurInst] = InstResult;
2050
2051 // Advance program counter.
2052 ++CurInst;
2053 }
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002054}
2055
2056/// EvaluateStaticConstructor - Evaluate static constructors in the function, if
2057/// we can. Return true if we can, false otherwise.
2058static bool EvaluateStaticConstructor(Function *F) {
2059 /// MutatedMemory - For each store we execute, we update this map. Loads
2060 /// check this to get the most up-to-date value. If evaluation is successful,
2061 /// this state is committed to the process.
2062 std::map<Constant*, Constant*> MutatedMemory;
2063
2064 /// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
2065 /// to represent its body. This vector is needed so we can delete the
2066 /// temporary globals when we are done.
2067 std::vector<GlobalVariable*> AllocaTmps;
2068
2069 /// CallStack - This is used to detect recursion. In pathological situations
2070 /// we could hit exponential behavior, but at least there is nothing
2071 /// unbounded.
2072 std::vector<Function*> CallStack;
2073
2074 // Call the function.
Chris Lattnercd271422005-09-27 04:45:34 +00002075 Constant *RetValDummy;
2076 bool EvalSuccess = EvaluateFunction(F, RetValDummy, std::vector<Constant*>(),
2077 CallStack, MutatedMemory, AllocaTmps);
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002078 if (EvalSuccess) {
Chris Lattnera22fdb02005-09-26 17:07:09 +00002079 // We succeeded at evaluation: commit the result.
Bill Wendling0a81aac2006-11-26 10:02:32 +00002080 DOUT << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
2081 << F->getName() << "' to " << MutatedMemory.size()
2082 << " stores.\n";
Chris Lattnera22fdb02005-09-26 17:07:09 +00002083 for (std::map<Constant*, Constant*>::iterator I = MutatedMemory.begin(),
2084 E = MutatedMemory.end(); I != E; ++I)
2085 CommitValueTo(I->second, I->first);
2086 }
Chris Lattner79c11012005-09-26 04:44:35 +00002087
Chris Lattnera22fdb02005-09-26 17:07:09 +00002088 // At this point, we are done interpreting. If we created any 'alloca'
2089 // temporaries, release them now.
2090 while (!AllocaTmps.empty()) {
2091 GlobalVariable *Tmp = AllocaTmps.back();
2092 AllocaTmps.pop_back();
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002093
Chris Lattnera22fdb02005-09-26 17:07:09 +00002094 // If there are still users of the alloca, the program is doing something
2095 // silly, e.g. storing the address of the alloca somewhere and using it
2096 // later. Since this is undefined, we'll just make it be null.
2097 if (!Tmp->use_empty())
2098 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
2099 delete Tmp;
2100 }
Chris Lattneraae4a1c2005-09-26 07:34:35 +00002101
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002102 return EvalSuccess;
Chris Lattner79c11012005-09-26 04:44:35 +00002103}
2104
Chris Lattnerdb973e62005-09-26 02:31:18 +00002105
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002106
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002107/// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
2108/// Return true if anything changed.
2109bool GlobalOpt::OptimizeGlobalCtorsList(GlobalVariable *&GCL) {
2110 std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
2111 bool MadeChange = false;
2112 if (Ctors.empty()) return false;
2113
2114 // Loop over global ctors, optimizing them when we can.
2115 for (unsigned i = 0; i != Ctors.size(); ++i) {
2116 Function *F = Ctors[i];
2117 // Found a null terminator in the middle of the list, prune off the rest of
2118 // the list.
Chris Lattner7d8e58f2005-09-26 02:19:27 +00002119 if (F == 0) {
2120 if (i != Ctors.size()-1) {
2121 Ctors.resize(i+1);
2122 MadeChange = true;
2123 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002124 break;
2125 }
2126
Chris Lattner79c11012005-09-26 04:44:35 +00002127 // We cannot simplify external ctor functions.
2128 if (F->empty()) continue;
2129
2130 // If we can evaluate the ctor at compile time, do.
2131 if (EvaluateStaticConstructor(F)) {
2132 Ctors.erase(Ctors.begin()+i);
2133 MadeChange = true;
2134 --i;
2135 ++NumCtorsEvaluated;
2136 continue;
2137 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002138 }
2139
2140 if (!MadeChange) return false;
2141
Chris Lattnerdb973e62005-09-26 02:31:18 +00002142 GCL = InstallGlobalCtors(GCL, Ctors);
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002143 return true;
2144}
2145
2146
Chris Lattner7a90b682004-10-07 04:16:33 +00002147bool GlobalOpt::runOnModule(Module &M) {
Chris Lattner079236d2004-02-25 21:34:36 +00002148 bool Changed = false;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002149
2150 // Try to find the llvm.globalctors list.
2151 GlobalVariable *GlobalCtors = FindGlobalCtors(M);
Chris Lattner7a90b682004-10-07 04:16:33 +00002152
Chris Lattner7a90b682004-10-07 04:16:33 +00002153 bool LocalChange = true;
2154 while (LocalChange) {
2155 LocalChange = false;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002156
2157 // Delete functions that are trivially dead, ccc -> fastcc
2158 LocalChange |= OptimizeFunctions(M);
2159
2160 // Optimize global_ctors list.
2161 if (GlobalCtors)
2162 LocalChange |= OptimizeGlobalCtorsList(GlobalCtors);
2163
2164 // Optimize non-address-taken globals.
2165 LocalChange |= OptimizeGlobalVars(M);
Chris Lattner7a90b682004-10-07 04:16:33 +00002166 Changed |= LocalChange;
2167 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002168
2169 // TODO: Move all global ctors functions to the end of the module for code
2170 // layout.
2171
Chris Lattner079236d2004-02-25 21:34:36 +00002172 return Changed;
2173}