blob: fd71dfb826148bcd968f8fda23dfdb86ff5f63ac [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"
Duncan Sands3d5378f2008-02-16 20:56:04 +000024#include "llvm/ParameterAttributes.h"
Chris Lattner079236d2004-02-25 21:34:36 +000025#include "llvm/Pass.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000026#include "llvm/Analysis/ConstantFolding.h"
Chris Lattner30ba5692004-10-11 05:54:41 +000027#include "llvm/Target/TargetData.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000028#include "llvm/Support/Compiler.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000029#include "llvm/Support/Debug.h"
Chris Lattner941db492008-01-14 02:09:12 +000030#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner81686182007-09-13 16:30:19 +000031#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner55eb1c42007-01-31 04:40:53 +000032#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000033#include "llvm/ADT/Statistic.h"
Chris Lattner670c8892004-10-08 17:32:09 +000034#include "llvm/ADT/StringExtras.h"
Chris Lattnere47ba742004-10-06 20:57:02 +000035#include <algorithm>
Chris Lattnerdac58ad2006-01-22 23:32:06 +000036#include <set>
Chris Lattner079236d2004-02-25 21:34:36 +000037using namespace llvm;
38
Chris Lattner86453c52006-12-19 22:09:18 +000039STATISTIC(NumMarked , "Number of globals marked constant");
40STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
41STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
42STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
43STATISTIC(NumDeleted , "Number of globals deleted");
44STATISTIC(NumFnDeleted , "Number of functions deleted");
45STATISTIC(NumGlobUses , "Number of global uses devirtualized");
46STATISTIC(NumLocalized , "Number of globals localized");
47STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
48STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
49STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sands3d5378f2008-02-16 20:56:04 +000050STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Chris Lattner079236d2004-02-25 21:34:36 +000051
Chris Lattner86453c52006-12-19 22:09:18 +000052namespace {
Reid Spencer9133fe22007-02-05 23:32:05 +000053 struct VISIBILITY_HIDDEN GlobalOpt : public ModulePass {
Chris Lattner30ba5692004-10-11 05:54:41 +000054 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
55 AU.addRequired<TargetData>();
56 }
Nick Lewyckyecd94c82007-05-06 13:37:16 +000057 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000058 GlobalOpt() : ModulePass((intptr_t)&ID) {}
Misha Brukmanfd939082005-04-21 23:48:37 +000059
Chris Lattnerb12914b2004-09-20 04:48:05 +000060 bool runOnModule(Module &M);
Chris Lattner30ba5692004-10-11 05:54:41 +000061
62 private:
Chris Lattnerb1ab4582005-09-26 01:43:45 +000063 GlobalVariable *FindGlobalCtors(Module &M);
64 bool OptimizeFunctions(Module &M);
65 bool OptimizeGlobalVars(Module &M);
66 bool OptimizeGlobalCtorsList(GlobalVariable *&GCL);
Chris Lattner7f8897f2006-08-27 22:42:52 +000067 bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
Chris Lattner079236d2004-02-25 21:34:36 +000068 };
69
Devang Patel19974732007-05-03 01:11:54 +000070 char GlobalOpt::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000071 RegisterPass<GlobalOpt> X("globalopt", "Global Variable Optimizer");
Chris Lattner079236d2004-02-25 21:34:36 +000072}
73
Chris Lattner7a90b682004-10-07 04:16:33 +000074ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
Chris Lattner079236d2004-02-25 21:34:36 +000075
Chris Lattner7a90b682004-10-07 04:16:33 +000076/// GlobalStatus - As we analyze each global, keep track of some information
77/// about it. If we find out that the address of the global is taken, none of
Chris Lattnercf4d2a52004-10-07 21:30:30 +000078/// this info will be accurate.
Reid Spencer9133fe22007-02-05 23:32:05 +000079struct VISIBILITY_HIDDEN GlobalStatus {
Chris Lattnercf4d2a52004-10-07 21:30:30 +000080 /// isLoaded - True if the global is ever loaded. If the global isn't ever
81 /// loaded it can be deleted.
Chris Lattner7a90b682004-10-07 04:16:33 +000082 bool isLoaded;
Chris Lattnercf4d2a52004-10-07 21:30:30 +000083
84 /// StoredType - Keep track of what stores to the global look like.
85 ///
Chris Lattner7a90b682004-10-07 04:16:33 +000086 enum StoredType {
Chris Lattnercf4d2a52004-10-07 21:30:30 +000087 /// NotStored - There is no store to this global. It can thus be marked
88 /// constant.
89 NotStored,
90
91 /// isInitializerStored - This global is stored to, but the only thing
92 /// stored is the constant it was initialized with. This is only tracked
93 /// for scalar globals.
94 isInitializerStored,
95
96 /// isStoredOnce - This global is stored to, but only its initializer and
97 /// one other value is ever stored to it. If this global isStoredOnce, we
98 /// track the value stored to it in StoredOnceValue below. This is only
99 /// tracked for scalar globals.
100 isStoredOnce,
101
102 /// isStored - This global is stored to by multiple values or something else
103 /// that we cannot track.
104 isStored
Chris Lattner7a90b682004-10-07 04:16:33 +0000105 } StoredType;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000106
107 /// StoredOnceValue - If only one value (besides the initializer constant) is
108 /// ever stored to this global, keep track of what value it is.
109 Value *StoredOnceValue;
110
Chris Lattner25de4e52006-11-01 18:03:33 +0000111 /// AccessingFunction/HasMultipleAccessingFunctions - These start out
112 /// null/false. When the first accessing function is noticed, it is recorded.
113 /// When a second different accessing function is noticed,
114 /// HasMultipleAccessingFunctions is set to true.
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000115 Function *AccessingFunction;
116 bool HasMultipleAccessingFunctions;
117
Chris Lattner25de4e52006-11-01 18:03:33 +0000118 /// HasNonInstructionUser - Set to true if this global has a user that is not
119 /// an instruction (e.g. a constant expr or GV initializer).
Chris Lattner553ca522005-06-15 21:11:48 +0000120 bool HasNonInstructionUser;
121
Chris Lattner25de4e52006-11-01 18:03:33 +0000122 /// HasPHIUser - Set to true if this global has a user that is a PHI node.
123 bool HasPHIUser;
124
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000125 GlobalStatus() : isLoaded(false), StoredType(NotStored), StoredOnceValue(0),
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000126 AccessingFunction(0), HasMultipleAccessingFunctions(false),
Chris Lattner6a93fc02008-01-14 01:32:52 +0000127 HasNonInstructionUser(false), HasPHIUser(false) {}
Chris Lattner7a90b682004-10-07 04:16:33 +0000128};
Chris Lattnere47ba742004-10-06 20:57:02 +0000129
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000130
131
132/// ConstantIsDead - Return true if the specified constant is (transitively)
133/// dead. The constant may be used by other constants (e.g. constant arrays and
134/// constant exprs) as long as they are dead, but it cannot be used by anything
135/// else.
136static bool ConstantIsDead(Constant *C) {
137 if (isa<GlobalValue>(C)) return false;
138
139 for (Value::use_iterator UI = C->use_begin(), E = C->use_end(); UI != E; ++UI)
140 if (Constant *CU = dyn_cast<Constant>(*UI)) {
141 if (!ConstantIsDead(CU)) return false;
142 } else
143 return false;
144 return true;
145}
146
147
Chris Lattner7a90b682004-10-07 04:16:33 +0000148/// AnalyzeGlobal - Look at all uses of the global and fill in the GlobalStatus
149/// structure. If the global has its address taken, return true to indicate we
150/// can't do anything with it.
Chris Lattner079236d2004-02-25 21:34:36 +0000151///
Chris Lattner7a90b682004-10-07 04:16:33 +0000152static bool AnalyzeGlobal(Value *V, GlobalStatus &GS,
153 std::set<PHINode*> &PHIUsers) {
Chris Lattner079236d2004-02-25 21:34:36 +0000154 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
Chris Lattner96940cb2004-07-18 19:56:20 +0000155 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) {
Chris Lattner553ca522005-06-15 21:11:48 +0000156 GS.HasNonInstructionUser = true;
157
Chris Lattner7a90b682004-10-07 04:16:33 +0000158 if (AnalyzeGlobal(CE, GS, PHIUsers)) return true;
Chris Lattner670c8892004-10-08 17:32:09 +0000159
Chris Lattner079236d2004-02-25 21:34:36 +0000160 } else if (Instruction *I = dyn_cast<Instruction>(*UI)) {
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000161 if (!GS.HasMultipleAccessingFunctions) {
162 Function *F = I->getParent()->getParent();
163 if (GS.AccessingFunction == 0)
164 GS.AccessingFunction = F;
165 else if (GS.AccessingFunction != F)
166 GS.HasMultipleAccessingFunctions = true;
167 }
Chris Lattnerc69d3c92008-01-29 19:01:37 +0000168 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000169 GS.isLoaded = true;
Chris Lattnerc69d3c92008-01-29 19:01:37 +0000170 if (LI->isVolatile()) return true; // Don't hack on volatile loads.
Chris Lattner7a90b682004-10-07 04:16:33 +0000171 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Chris Lattner36025492004-10-07 06:01:25 +0000172 // Don't allow a store OF the address, only stores TO the address.
173 if (SI->getOperand(0) == V) return true;
174
Chris Lattnerc69d3c92008-01-29 19:01:37 +0000175 if (SI->isVolatile()) return true; // Don't hack on volatile stores.
176
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000177 // If this is a direct store to the global (i.e., the global is a scalar
178 // value, not an aggregate), keep more specific information about
179 // stores.
180 if (GS.StoredType != GlobalStatus::isStored)
181 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(SI->getOperand(1))){
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000182 Value *StoredVal = SI->getOperand(0);
183 if (StoredVal == GV->getInitializer()) {
184 if (GS.StoredType < GlobalStatus::isInitializerStored)
185 GS.StoredType = GlobalStatus::isInitializerStored;
186 } else if (isa<LoadInst>(StoredVal) &&
187 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
188 // G = G
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000189 if (GS.StoredType < GlobalStatus::isInitializerStored)
190 GS.StoredType = GlobalStatus::isInitializerStored;
191 } else if (GS.StoredType < GlobalStatus::isStoredOnce) {
192 GS.StoredType = GlobalStatus::isStoredOnce;
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000193 GS.StoredOnceValue = StoredVal;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000194 } else if (GS.StoredType == GlobalStatus::isStoredOnce &&
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000195 GS.StoredOnceValue == StoredVal) {
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000196 // noop.
197 } else {
198 GS.StoredType = GlobalStatus::isStored;
199 }
200 } else {
Chris Lattner7a90b682004-10-07 04:16:33 +0000201 GS.StoredType = GlobalStatus::isStored;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000202 }
Chris Lattner35c81b02005-02-27 18:58:52 +0000203 } else if (isa<GetElementPtrInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000204 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner35c81b02005-02-27 18:58:52 +0000205 } else if (isa<SelectInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000206 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000207 } else if (PHINode *PN = dyn_cast<PHINode>(I)) {
208 // PHI nodes we can check just like select or GEP instructions, but we
209 // have to be careful about infinite recursion.
210 if (PHIUsers.insert(PN).second) // Not already visited.
211 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner25de4e52006-11-01 18:03:33 +0000212 GS.HasPHIUser = true;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000213 } else if (isa<CmpInst>(I)) {
Chris Lattner35c81b02005-02-27 18:58:52 +0000214 } else if (isa<MemCpyInst>(I) || isa<MemMoveInst>(I)) {
215 if (I->getOperand(1) == V)
216 GS.StoredType = GlobalStatus::isStored;
217 if (I->getOperand(2) == V)
218 GS.isLoaded = true;
Chris Lattner35c81b02005-02-27 18:58:52 +0000219 } else if (isa<MemSetInst>(I)) {
220 assert(I->getOperand(1) == V && "Memset only takes one pointer!");
221 GS.StoredType = GlobalStatus::isStored;
Chris Lattner7a90b682004-10-07 04:16:33 +0000222 } else {
223 return true; // Any other non-load instruction might take address!
Chris Lattner9ce30002004-07-20 03:58:07 +0000224 }
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000225 } else if (Constant *C = dyn_cast<Constant>(*UI)) {
Chris Lattner553ca522005-06-15 21:11:48 +0000226 GS.HasNonInstructionUser = true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000227 // We might have a dead and dangling constant hanging off of here.
228 if (!ConstantIsDead(C))
229 return true;
Chris Lattner079236d2004-02-25 21:34:36 +0000230 } else {
Chris Lattner553ca522005-06-15 21:11:48 +0000231 GS.HasNonInstructionUser = true;
232 // Otherwise must be some other user.
Chris Lattner079236d2004-02-25 21:34:36 +0000233 return true;
234 }
235
236 return false;
237}
238
Chris Lattner670c8892004-10-08 17:32:09 +0000239static Constant *getAggregateConstantElement(Constant *Agg, Constant *Idx) {
240 ConstantInt *CI = dyn_cast<ConstantInt>(Idx);
241 if (!CI) return 0;
Reid Spencerb83eb642006-10-20 07:07:24 +0000242 unsigned IdxV = CI->getZExtValue();
Chris Lattner7a90b682004-10-07 04:16:33 +0000243
Chris Lattner670c8892004-10-08 17:32:09 +0000244 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Agg)) {
245 if (IdxV < CS->getNumOperands()) return CS->getOperand(IdxV);
246 } else if (ConstantArray *CA = dyn_cast<ConstantArray>(Agg)) {
247 if (IdxV < CA->getNumOperands()) return CA->getOperand(IdxV);
Reid Spencer9d6565a2007-02-15 02:26:10 +0000248 } else if (ConstantVector *CP = dyn_cast<ConstantVector>(Agg)) {
Chris Lattner670c8892004-10-08 17:32:09 +0000249 if (IdxV < CP->getNumOperands()) return CP->getOperand(IdxV);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000250 } else if (isa<ConstantAggregateZero>(Agg)) {
Chris Lattner670c8892004-10-08 17:32:09 +0000251 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
252 if (IdxV < STy->getNumElements())
253 return Constant::getNullValue(STy->getElementType(IdxV));
254 } else if (const SequentialType *STy =
255 dyn_cast<SequentialType>(Agg->getType())) {
256 return Constant::getNullValue(STy->getElementType());
257 }
Chris Lattner7a7ed022004-10-16 18:09:00 +0000258 } else if (isa<UndefValue>(Agg)) {
259 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
260 if (IdxV < STy->getNumElements())
261 return UndefValue::get(STy->getElementType(IdxV));
262 } else if (const SequentialType *STy =
263 dyn_cast<SequentialType>(Agg->getType())) {
264 return UndefValue::get(STy->getElementType());
265 }
Chris Lattner670c8892004-10-08 17:32:09 +0000266 }
267 return 0;
268}
Chris Lattner7a90b682004-10-07 04:16:33 +0000269
Chris Lattner7a90b682004-10-07 04:16:33 +0000270
Chris Lattnere47ba742004-10-06 20:57:02 +0000271/// CleanupConstantGlobalUsers - We just marked GV constant. Loop over all
272/// users of the global, cleaning up the obvious ones. This is largely just a
Chris Lattner031955d2004-10-10 16:43:46 +0000273/// quick scan over the use list to clean up the easy and obvious cruft. This
274/// returns true if it made a change.
275static bool CleanupConstantGlobalUsers(Value *V, Constant *Init) {
276 bool Changed = false;
Chris Lattner7a90b682004-10-07 04:16:33 +0000277 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;) {
278 User *U = *UI++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000279
Chris Lattner7a90b682004-10-07 04:16:33 +0000280 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner35c81b02005-02-27 18:58:52 +0000281 if (Init) {
282 // Replace the load with the initializer.
283 LI->replaceAllUsesWith(Init);
284 LI->eraseFromParent();
285 Changed = true;
286 }
Chris Lattner7a90b682004-10-07 04:16:33 +0000287 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattnere47ba742004-10-06 20:57:02 +0000288 // Store must be unreachable or storing Init into the global.
Chris Lattner7a7ed022004-10-16 18:09:00 +0000289 SI->eraseFromParent();
Chris Lattner031955d2004-10-10 16:43:46 +0000290 Changed = true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000291 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
292 if (CE->getOpcode() == Instruction::GetElementPtr) {
Chris Lattneraae4a1c2005-09-26 07:34:35 +0000293 Constant *SubInit = 0;
294 if (Init)
295 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner35c81b02005-02-27 18:58:52 +0000296 Changed |= CleanupConstantGlobalUsers(CE, SubInit);
Reid Spencer3da59db2006-11-27 01:05:10 +0000297 } else if (CE->getOpcode() == Instruction::BitCast &&
Chris Lattner35c81b02005-02-27 18:58:52 +0000298 isa<PointerType>(CE->getType())) {
299 // Pointer cast, delete any stores and memsets to the global.
300 Changed |= CleanupConstantGlobalUsers(CE, 0);
301 }
302
303 if (CE->use_empty()) {
304 CE->destroyConstant();
305 Changed = true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000306 }
307 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner7b52fe72007-11-09 17:33:02 +0000308 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
309 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
310 // and will invalidate our notion of what Init is.
Chris Lattner19450242007-11-13 21:46:23 +0000311 Constant *SubInit = 0;
Chris Lattner7b52fe72007-11-09 17:33:02 +0000312 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
313 ConstantExpr *CE =
314 dyn_cast_or_null<ConstantExpr>(ConstantFoldInstruction(GEP));
315 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Chris Lattner19450242007-11-13 21:46:23 +0000316 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner7b52fe72007-11-09 17:33:02 +0000317 }
Chris Lattner19450242007-11-13 21:46:23 +0000318 Changed |= CleanupConstantGlobalUsers(GEP, SubInit);
Chris Lattnerc4d81b02004-10-10 16:47:33 +0000319
Chris Lattner031955d2004-10-10 16:43:46 +0000320 if (GEP->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000321 GEP->eraseFromParent();
Chris Lattner031955d2004-10-10 16:43:46 +0000322 Changed = true;
323 }
Chris Lattner35c81b02005-02-27 18:58:52 +0000324 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
325 if (MI->getRawDest() == V) {
326 MI->eraseFromParent();
327 Changed = true;
328 }
329
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000330 } else if (Constant *C = dyn_cast<Constant>(U)) {
331 // If we have a chain of dead constantexprs or other things dangling from
332 // us, and if they are all dead, nuke them without remorse.
333 if (ConstantIsDead(C)) {
334 C->destroyConstant();
Chris Lattner35c81b02005-02-27 18:58:52 +0000335 // This could have invalidated UI, start over from scratch.
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000336 CleanupConstantGlobalUsers(V, Init);
Chris Lattner031955d2004-10-10 16:43:46 +0000337 return true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000338 }
Chris Lattnere47ba742004-10-06 20:57:02 +0000339 }
340 }
Chris Lattner031955d2004-10-10 16:43:46 +0000341 return Changed;
Chris Lattnere47ba742004-10-06 20:57:02 +0000342}
343
Chris Lattner941db492008-01-14 02:09:12 +0000344/// isSafeSROAElementUse - Return true if the specified instruction is a safe
345/// user of a derived expression from a global that we want to SROA.
346static bool isSafeSROAElementUse(Value *V) {
347 // We might have a dead and dangling constant hanging off of here.
348 if (Constant *C = dyn_cast<Constant>(V))
349 return ConstantIsDead(C);
Chris Lattner727c2102008-01-14 01:31:05 +0000350
Chris Lattner941db492008-01-14 02:09:12 +0000351 Instruction *I = dyn_cast<Instruction>(V);
352 if (!I) return false;
353
354 // Loads are ok.
355 if (isa<LoadInst>(I)) return true;
356
357 // Stores *to* the pointer are ok.
358 if (StoreInst *SI = dyn_cast<StoreInst>(I))
359 return SI->getOperand(0) != V;
360
361 // Otherwise, it must be a GEP.
362 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
363 if (GEPI == 0) return false;
364
365 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
366 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
367 return false;
368
369 for (Value::use_iterator I = GEPI->use_begin(), E = GEPI->use_end();
370 I != E; ++I)
371 if (!isSafeSROAElementUse(*I))
372 return false;
Chris Lattner727c2102008-01-14 01:31:05 +0000373 return true;
374}
375
Chris Lattner941db492008-01-14 02:09:12 +0000376
377/// IsUserOfGlobalSafeForSRA - U is a direct user of the specified global value.
378/// Look at it and its uses and decide whether it is safe to SROA this global.
379///
380static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
381 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
382 if (!isa<GetElementPtrInst>(U) &&
383 (!isa<ConstantExpr>(U) ||
384 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
385 return false;
386
387 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
388 // don't like < 3 operand CE's, and we don't like non-constant integer
389 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
390 // value of C.
391 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
392 !cast<Constant>(U->getOperand(1))->isNullValue() ||
393 !isa<ConstantInt>(U->getOperand(2)))
394 return false;
395
396 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
397 ++GEPI; // Skip over the pointer index.
398
399 // If this is a use of an array allocation, do a bit more checking for sanity.
400 if (const ArrayType *AT = dyn_cast<ArrayType>(*GEPI)) {
401 uint64_t NumElements = AT->getNumElements();
402 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
403
404 // Check to make sure that index falls within the array. If not,
405 // something funny is going on, so we won't do the optimization.
406 //
407 if (Idx->getZExtValue() >= NumElements)
408 return false;
409
410 // We cannot scalar repl this level of the array unless any array
411 // sub-indices are in-range constants. In particular, consider:
412 // A[0][i]. We cannot know that the user isn't doing invalid things like
413 // allowing i to index an out-of-range subscript that accesses A[1].
414 //
415 // Scalar replacing *just* the outer index of the array is probably not
416 // going to be a win anyway, so just give up.
417 for (++GEPI; // Skip array index.
418 GEPI != E && (isa<ArrayType>(*GEPI) || isa<VectorType>(*GEPI));
419 ++GEPI) {
420 uint64_t NumElements;
421 if (const ArrayType *SubArrayTy = dyn_cast<ArrayType>(*GEPI))
422 NumElements = SubArrayTy->getNumElements();
423 else
424 NumElements = cast<VectorType>(*GEPI)->getNumElements();
425
426 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
427 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
428 return false;
429 }
430 }
431
432 for (Value::use_iterator I = U->use_begin(), E = U->use_end(); I != E; ++I)
433 if (!isSafeSROAElementUse(*I))
434 return false;
435 return true;
436}
437
438/// GlobalUsersSafeToSRA - Look at all uses of the global and decide whether it
439/// is safe for us to perform this transformation.
440///
441static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
442 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
443 UI != E; ++UI) {
444 if (!IsUserOfGlobalSafeForSRA(*UI, GV))
445 return false;
446 }
447 return true;
448}
449
450
Chris Lattner670c8892004-10-08 17:32:09 +0000451/// SRAGlobal - Perform scalar replacement of aggregates on the specified global
452/// variable. This opens the door for other optimizations by exposing the
453/// behavior of the program in a more fine-grained way. We have determined that
454/// this transformation is safe already. We return the first global variable we
455/// insert so that the caller can reprocess it.
456static GlobalVariable *SRAGlobal(GlobalVariable *GV) {
Chris Lattner727c2102008-01-14 01:31:05 +0000457 // Make sure this global only has simple uses that we can SRA.
Chris Lattner941db492008-01-14 02:09:12 +0000458 if (!GlobalUsersSafeToSRA(GV))
Chris Lattner727c2102008-01-14 01:31:05 +0000459 return 0;
460
Chris Lattner670c8892004-10-08 17:32:09 +0000461 assert(GV->hasInternalLinkage() && !GV->isConstant());
462 Constant *Init = GV->getInitializer();
463 const Type *Ty = Init->getType();
Misha Brukmanfd939082005-04-21 23:48:37 +0000464
Chris Lattner670c8892004-10-08 17:32:09 +0000465 std::vector<GlobalVariable*> NewGlobals;
466 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
467
468 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
469 NewGlobals.reserve(STy->getNumElements());
470 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
471 Constant *In = getAggregateConstantElement(Init,
Reid Spencerc5b206b2006-12-31 05:48:39 +0000472 ConstantInt::get(Type::Int32Ty, i));
Chris Lattner670c8892004-10-08 17:32:09 +0000473 assert(In && "Couldn't get element of initializer?");
474 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
475 GlobalVariable::InternalLinkage,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000476 In, GV->getName()+"."+utostr(i),
477 (Module *)NULL,
478 GV->isThreadLocal());
Chris Lattner670c8892004-10-08 17:32:09 +0000479 Globals.insert(GV, NGV);
480 NewGlobals.push_back(NGV);
481 }
482 } else if (const SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
483 unsigned NumElements = 0;
484 if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
485 NumElements = ATy->getNumElements();
Reid Spencer9d6565a2007-02-15 02:26:10 +0000486 else if (const VectorType *PTy = dyn_cast<VectorType>(STy))
Chris Lattner670c8892004-10-08 17:32:09 +0000487 NumElements = PTy->getNumElements();
488 else
489 assert(0 && "Unknown aggregate sequential type!");
490
Chris Lattner1f21ef12005-02-23 16:53:04 +0000491 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Chris Lattnerd514d822005-02-01 01:23:31 +0000492 return 0; // It's not worth it.
Chris Lattner670c8892004-10-08 17:32:09 +0000493 NewGlobals.reserve(NumElements);
494 for (unsigned i = 0, e = NumElements; i != e; ++i) {
495 Constant *In = getAggregateConstantElement(Init,
Reid Spencerc5b206b2006-12-31 05:48:39 +0000496 ConstantInt::get(Type::Int32Ty, i));
Chris Lattner670c8892004-10-08 17:32:09 +0000497 assert(In && "Couldn't get element of initializer?");
498
499 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
500 GlobalVariable::InternalLinkage,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000501 In, GV->getName()+"."+utostr(i),
502 (Module *)NULL,
503 GV->isThreadLocal());
Chris Lattner670c8892004-10-08 17:32:09 +0000504 Globals.insert(GV, NGV);
505 NewGlobals.push_back(NGV);
506 }
507 }
508
509 if (NewGlobals.empty())
510 return 0;
511
Bill Wendling0a81aac2006-11-26 10:02:32 +0000512 DOUT << "PERFORMING GLOBAL SRA ON: " << *GV;
Chris Lattner30ba5692004-10-11 05:54:41 +0000513
Reid Spencerc5b206b2006-12-31 05:48:39 +0000514 Constant *NullInt = Constant::getNullValue(Type::Int32Ty);
Chris Lattner670c8892004-10-08 17:32:09 +0000515
516 // Loop over all of the uses of the global, replacing the constantexpr geps,
517 // with smaller constantexpr geps or direct references.
518 while (!GV->use_empty()) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000519 User *GEP = GV->use_back();
520 assert(((isa<ConstantExpr>(GEP) &&
521 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
522 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanfd939082005-04-21 23:48:37 +0000523
Chris Lattner670c8892004-10-08 17:32:09 +0000524 // Ignore the 1th operand, which has to be zero or else the program is quite
525 // broken (undefined). Get the 2nd operand, which is the structure or array
526 // index.
Reid Spencerb83eb642006-10-20 07:07:24 +0000527 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattner670c8892004-10-08 17:32:09 +0000528 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
529
Chris Lattner30ba5692004-10-11 05:54:41 +0000530 Value *NewPtr = NewGlobals[Val];
Chris Lattner670c8892004-10-08 17:32:09 +0000531
532 // Form a shorter GEP if needed.
Chris Lattner30ba5692004-10-11 05:54:41 +0000533 if (GEP->getNumOperands() > 3)
534 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattner55eb1c42007-01-31 04:40:53 +0000535 SmallVector<Constant*, 8> Idxs;
Chris Lattner30ba5692004-10-11 05:54:41 +0000536 Idxs.push_back(NullInt);
537 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
538 Idxs.push_back(CE->getOperand(i));
Chris Lattner55eb1c42007-01-31 04:40:53 +0000539 NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr),
540 &Idxs[0], Idxs.size());
Chris Lattner30ba5692004-10-11 05:54:41 +0000541 } else {
542 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner699d1442007-01-31 19:59:55 +0000543 SmallVector<Value*, 8> Idxs;
Chris Lattner30ba5692004-10-11 05:54:41 +0000544 Idxs.push_back(NullInt);
545 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
546 Idxs.push_back(GEPI->getOperand(i));
David Greeneb8f74792007-09-04 15:46:09 +0000547 NewPtr = new GetElementPtrInst(NewPtr, Idxs.begin(), Idxs.end(),
Chris Lattner30ba5692004-10-11 05:54:41 +0000548 GEPI->getName()+"."+utostr(Val), GEPI);
549 }
550 GEP->replaceAllUsesWith(NewPtr);
551
552 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner7a7ed022004-10-16 18:09:00 +0000553 GEPI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000554 else
555 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattner670c8892004-10-08 17:32:09 +0000556 }
557
Chris Lattnere40e2d12004-10-08 20:25:55 +0000558 // Delete the old global, now that it is dead.
559 Globals.erase(GV);
Chris Lattner670c8892004-10-08 17:32:09 +0000560 ++NumSRA;
Chris Lattner30ba5692004-10-11 05:54:41 +0000561
562 // Loop over the new globals array deleting any globals that are obviously
563 // dead. This can arise due to scalarization of a structure or an array that
564 // has elements that are dead.
565 unsigned FirstGlobal = 0;
566 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
567 if (NewGlobals[i]->use_empty()) {
568 Globals.erase(NewGlobals[i]);
569 if (FirstGlobal == i) ++FirstGlobal;
570 }
571
572 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : 0;
Chris Lattner670c8892004-10-08 17:32:09 +0000573}
574
Chris Lattner9b34a612004-10-09 21:48:45 +0000575/// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
Chris Lattner81686182007-09-13 16:30:19 +0000576/// value will trap if the value is dynamically null. PHIs keeps track of any
577/// phi nodes we've seen to avoid reprocessing them.
578static bool AllUsesOfValueWillTrapIfNull(Value *V,
579 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner9b34a612004-10-09 21:48:45 +0000580 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
581 if (isa<LoadInst>(*UI)) {
582 // Will trap.
583 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
584 if (SI->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; // Storing the value.
587 }
588 } else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
589 if (CI->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 }
593 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
594 if (II->getOperand(0) != V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000595 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000596 return false; // Not calling the ptr
597 }
Chris Lattner81686182007-09-13 16:30:19 +0000598 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(*UI)) {
599 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Chris Lattner9b34a612004-10-09 21:48:45 +0000600 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
Chris Lattner81686182007-09-13 16:30:19 +0000601 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
602 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
603 // If we've already seen this phi node, ignore it, it has already been
604 // checked.
605 if (PHIs.insert(PN))
606 return AllUsesOfValueWillTrapIfNull(PN, PHIs);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000607 } else if (isa<ICmpInst>(*UI) &&
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000608 isa<ConstantPointerNull>(UI->getOperand(1))) {
609 // Ignore setcc X, null
Chris Lattner9b34a612004-10-09 21:48:45 +0000610 } else {
Bill Wendlinge8156192006-12-07 01:30:32 +0000611 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000612 return false;
613 }
614 return true;
615}
616
617/// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000618/// from GV will trap if the loaded value is null. Note that this also permits
619/// comparisons of the loaded value against null, as a special case.
Chris Lattner9b34a612004-10-09 21:48:45 +0000620static bool AllUsesOfLoadedValueWillTrapIfNull(GlobalVariable *GV) {
621 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI!=E; ++UI)
622 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
Chris Lattner81686182007-09-13 16:30:19 +0000623 SmallPtrSet<PHINode*, 8> PHIs;
624 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner9b34a612004-10-09 21:48:45 +0000625 return false;
626 } else if (isa<StoreInst>(*UI)) {
627 // Ignore stores to the global.
628 } else {
629 // We don't know or understand this user, bail out.
Bill Wendlinge8156192006-12-07 01:30:32 +0000630 //cerr << "UNKNOWN USER OF GLOBAL!: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000631 return false;
632 }
633
634 return true;
635}
636
Chris Lattner708148e2004-10-10 23:14:11 +0000637static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
638 bool Changed = false;
639 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
640 Instruction *I = cast<Instruction>(*UI++);
641 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
642 LI->setOperand(0, NewV);
643 Changed = true;
644 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
645 if (SI->getOperand(1) == V) {
646 SI->setOperand(1, NewV);
647 Changed = true;
648 }
649 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
650 if (I->getOperand(0) == V) {
651 // Calling through the pointer! Turn into a direct call, but be careful
652 // that the pointer is not also being passed as an argument.
653 I->setOperand(0, NewV);
654 Changed = true;
655 bool PassedAsArg = false;
656 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i)
657 if (I->getOperand(i) == V) {
658 PassedAsArg = true;
659 I->setOperand(i, NewV);
660 }
661
662 if (PassedAsArg) {
663 // Being passed as an argument also. Be careful to not invalidate UI!
664 UI = V->use_begin();
665 }
666 }
667 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
668 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Chris Lattner6e8fbad2006-11-30 17:32:29 +0000669 ConstantExpr::getCast(CI->getOpcode(),
670 NewV, CI->getType()));
Chris Lattner708148e2004-10-10 23:14:11 +0000671 if (CI->use_empty()) {
672 Changed = true;
Chris Lattner7a7ed022004-10-16 18:09:00 +0000673 CI->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000674 }
675 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
676 // Should handle GEP here.
Chris Lattner55eb1c42007-01-31 04:40:53 +0000677 SmallVector<Constant*, 8> Idxs;
678 Idxs.reserve(GEPI->getNumOperands()-1);
Chris Lattner708148e2004-10-10 23:14:11 +0000679 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
680 if (Constant *C = dyn_cast<Constant>(GEPI->getOperand(i)))
Chris Lattner55eb1c42007-01-31 04:40:53 +0000681 Idxs.push_back(C);
Chris Lattner708148e2004-10-10 23:14:11 +0000682 else
683 break;
Chris Lattner55eb1c42007-01-31 04:40:53 +0000684 if (Idxs.size() == GEPI->getNumOperands()-1)
Chris Lattner708148e2004-10-10 23:14:11 +0000685 Changed |= OptimizeAwayTrappingUsesOfValue(GEPI,
Chris Lattner55eb1c42007-01-31 04:40:53 +0000686 ConstantExpr::getGetElementPtr(NewV, &Idxs[0],
687 Idxs.size()));
Chris Lattner708148e2004-10-10 23:14:11 +0000688 if (GEPI->use_empty()) {
689 Changed = true;
Chris Lattner7a7ed022004-10-16 18:09:00 +0000690 GEPI->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000691 }
692 }
693 }
694
695 return Changed;
696}
697
698
699/// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
700/// value stored into it. If there are uses of the loaded value that would trap
701/// if the loaded value is dynamically null, then we know that they cannot be
702/// reachable with a null optimize away the load.
703static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV) {
704 std::vector<LoadInst*> Loads;
705 bool Changed = false;
706
707 // Replace all uses of loads with uses of uses of the stored value.
708 for (Value::use_iterator GUI = GV->use_begin(), E = GV->use_end();
709 GUI != E; ++GUI)
710 if (LoadInst *LI = dyn_cast<LoadInst>(*GUI)) {
711 Loads.push_back(LI);
712 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
713 } else {
Chris Lattnerce3e2bf2007-05-15 06:42:04 +0000714 // If we get here we could have stores, selects, or phi nodes whose values
Chris Lattner79cfddf2007-05-13 21:28:07 +0000715 // are loaded.
Chris Lattnerce3e2bf2007-05-15 06:42:04 +0000716 assert((isa<StoreInst>(*GUI) || isa<PHINode>(*GUI) ||
Chris Lattner9027b3c2008-01-04 05:04:53 +0000717 isa<SelectInst>(*GUI) || isa<ConstantExpr>(*GUI)) &&
Chris Lattner79cfddf2007-05-13 21:28:07 +0000718 "Only expect load and stores!");
Chris Lattner708148e2004-10-10 23:14:11 +0000719 }
720
721 if (Changed) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000722 DOUT << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV;
Chris Lattner708148e2004-10-10 23:14:11 +0000723 ++NumGlobUses;
724 }
725
726 // Delete all of the loads we can, keeping track of whether we nuked them all!
727 bool AllLoadsGone = true;
728 while (!Loads.empty()) {
729 LoadInst *L = Loads.back();
730 if (L->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000731 L->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000732 Changed = true;
733 } else {
734 AllLoadsGone = false;
735 }
736 Loads.pop_back();
737 }
738
739 // If we nuked all of the loads, then none of the stores are needed either,
740 // nor is the global.
741 if (AllLoadsGone) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000742 DOUT << " *** GLOBAL NOW DEAD!\n";
Chris Lattner708148e2004-10-10 23:14:11 +0000743 CleanupConstantGlobalUsers(GV, 0);
744 if (GV->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000745 GV->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000746 ++NumDeleted;
747 }
748 Changed = true;
749 }
750 return Changed;
751}
752
Chris Lattner30ba5692004-10-11 05:54:41 +0000753/// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
754/// instructions that are foldable.
755static void ConstantPropUsersOf(Value *V) {
756 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
757 if (Instruction *I = dyn_cast<Instruction>(*UI++))
758 if (Constant *NewC = ConstantFoldInstruction(I)) {
759 I->replaceAllUsesWith(NewC);
760
Chris Lattnerd514d822005-02-01 01:23:31 +0000761 // Advance UI to the next non-I use to avoid invalidating it!
762 // Instructions could multiply use V.
763 while (UI != E && *UI == I)
Chris Lattner30ba5692004-10-11 05:54:41 +0000764 ++UI;
Chris Lattnerd514d822005-02-01 01:23:31 +0000765 I->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000766 }
767}
768
769/// OptimizeGlobalAddressOfMalloc - This function takes the specified global
770/// variable, and transforms the program as if it always contained the result of
771/// the specified malloc. Because it is always the result of the specified
772/// malloc, there is no reason to actually DO the malloc. Instead, turn the
Chris Lattner6e8fbad2006-11-30 17:32:29 +0000773/// malloc into a global, and any loads of GV as uses of the new global.
Chris Lattner30ba5692004-10-11 05:54:41 +0000774static GlobalVariable *OptimizeGlobalAddressOfMalloc(GlobalVariable *GV,
775 MallocInst *MI) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000776 DOUT << "PROMOTING MALLOC GLOBAL: " << *GV << " MALLOC = " << *MI;
Chris Lattner30ba5692004-10-11 05:54:41 +0000777 ConstantInt *NElements = cast<ConstantInt>(MI->getArraySize());
778
Reid Spencerb83eb642006-10-20 07:07:24 +0000779 if (NElements->getZExtValue() != 1) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000780 // If we have an array allocation, transform it to a single element
781 // allocation to make the code below simpler.
782 Type *NewTy = ArrayType::get(MI->getAllocatedType(),
Reid Spencerb83eb642006-10-20 07:07:24 +0000783 NElements->getZExtValue());
Chris Lattner30ba5692004-10-11 05:54:41 +0000784 MallocInst *NewMI =
Reid Spencerc5b206b2006-12-31 05:48:39 +0000785 new MallocInst(NewTy, Constant::getNullValue(Type::Int32Ty),
Nate Begeman14b05292005-11-05 09:21:28 +0000786 MI->getAlignment(), MI->getName(), MI);
Chris Lattner699d1442007-01-31 19:59:55 +0000787 Value* Indices[2];
788 Indices[0] = Indices[1] = Constant::getNullValue(Type::Int32Ty);
David Greeneb8f74792007-09-04 15:46:09 +0000789 Value *NewGEP = new GetElementPtrInst(NewMI, Indices, Indices + 2,
Chris Lattner30ba5692004-10-11 05:54:41 +0000790 NewMI->getName()+".el0", MI);
791 MI->replaceAllUsesWith(NewGEP);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000792 MI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000793 MI = NewMI;
794 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000795
Chris Lattner7a7ed022004-10-16 18:09:00 +0000796 // Create the new global variable. The contents of the malloc'd memory is
797 // undefined, so initialize with an undef value.
798 Constant *Init = UndefValue::get(MI->getAllocatedType());
Chris Lattner30ba5692004-10-11 05:54:41 +0000799 GlobalVariable *NewGV = new GlobalVariable(MI->getAllocatedType(), false,
800 GlobalValue::InternalLinkage, Init,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000801 GV->getName()+".body",
802 (Module *)NULL,
803 GV->isThreadLocal());
Chris Lattner30ba5692004-10-11 05:54:41 +0000804 GV->getParent()->getGlobalList().insert(GV, NewGV);
Misha Brukmanfd939082005-04-21 23:48:37 +0000805
Chris Lattner30ba5692004-10-11 05:54:41 +0000806 // Anything that used the malloc now uses the global directly.
807 MI->replaceAllUsesWith(NewGV);
Chris Lattner30ba5692004-10-11 05:54:41 +0000808
809 Constant *RepValue = NewGV;
810 if (NewGV->getType() != GV->getType()->getElementType())
Reid Spencerd977d862006-12-12 23:36:14 +0000811 RepValue = ConstantExpr::getBitCast(RepValue,
812 GV->getType()->getElementType());
Chris Lattner30ba5692004-10-11 05:54:41 +0000813
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000814 // If there is a comparison against null, we will insert a global bool to
815 // keep track of whether the global was initialized yet or not.
Misha Brukmanfd939082005-04-21 23:48:37 +0000816 GlobalVariable *InitBool =
Reid Spencer4fe16d62007-01-11 18:21:29 +0000817 new GlobalVariable(Type::Int1Ty, false, GlobalValue::InternalLinkage,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000818 ConstantInt::getFalse(), GV->getName()+".init",
819 (Module *)NULL, GV->isThreadLocal());
Chris Lattnerbc965b92004-12-02 06:25:58 +0000820 bool InitBoolUsed = false;
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000821
Chris Lattner30ba5692004-10-11 05:54:41 +0000822 // Loop over all uses of GV, processing them in turn.
Chris Lattnerbc965b92004-12-02 06:25:58 +0000823 std::vector<StoreInst*> Stores;
Chris Lattner30ba5692004-10-11 05:54:41 +0000824 while (!GV->use_empty())
825 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000826 while (!LI->use_empty()) {
Chris Lattnerd514d822005-02-01 01:23:31 +0000827 Use &LoadUse = LI->use_begin().getUse();
Reid Spencere4d87aa2006-12-23 06:05:41 +0000828 if (!isa<ICmpInst>(LoadUse.getUser()))
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000829 LoadUse = RepValue;
830 else {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000831 ICmpInst *CI = cast<ICmpInst>(LoadUse.getUser());
832 // Replace the cmp X, 0 with a use of the bool value.
833 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", CI);
Chris Lattnerbc965b92004-12-02 06:25:58 +0000834 InitBoolUsed = true;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000835 switch (CI->getPredicate()) {
836 default: assert(0 && "Unknown ICmp Predicate!");
837 case ICmpInst::ICMP_ULT:
838 case ICmpInst::ICMP_SLT:
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000839 LV = ConstantInt::getFalse(); // X < null -> always false
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000840 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000841 case ICmpInst::ICMP_ULE:
842 case ICmpInst::ICMP_SLE:
843 case ICmpInst::ICMP_EQ:
844 LV = BinaryOperator::createNot(LV, "notinit", CI);
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000845 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000846 case ICmpInst::ICMP_NE:
847 case ICmpInst::ICMP_UGE:
848 case ICmpInst::ICMP_SGE:
849 case ICmpInst::ICMP_UGT:
850 case ICmpInst::ICMP_SGT:
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000851 break; // no change.
852 }
Reid Spencere4d87aa2006-12-23 06:05:41 +0000853 CI->replaceAllUsesWith(LV);
854 CI->eraseFromParent();
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000855 }
856 }
Chris Lattner7a7ed022004-10-16 18:09:00 +0000857 LI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000858 } else {
859 StoreInst *SI = cast<StoreInst>(GV->use_back());
Chris Lattnerbc965b92004-12-02 06:25:58 +0000860 // The global is initialized when the store to it occurs.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000861 new StoreInst(ConstantInt::getTrue(), InitBool, SI);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000862 SI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000863 }
864
Chris Lattnerbc965b92004-12-02 06:25:58 +0000865 // If the initialization boolean was used, insert it, otherwise delete it.
866 if (!InitBoolUsed) {
867 while (!InitBool->use_empty()) // Delete initializations
868 cast<Instruction>(InitBool->use_back())->eraseFromParent();
869 delete InitBool;
870 } else
871 GV->getParent()->getGlobalList().insert(GV, InitBool);
872
873
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000874 // Now the GV is dead, nuke it and the malloc.
Chris Lattner7a7ed022004-10-16 18:09:00 +0000875 GV->eraseFromParent();
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000876 MI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000877
878 // To further other optimizations, loop over all users of NewGV and try to
879 // constant prop them. This will promote GEP instructions with constant
880 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
881 ConstantPropUsersOf(NewGV);
882 if (RepValue != NewGV)
883 ConstantPropUsersOf(RepValue);
884
885 return NewGV;
886}
Chris Lattner708148e2004-10-10 23:14:11 +0000887
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000888/// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
889/// to make sure that there are no complex uses of V. We permit simple things
890/// like dereferencing the pointer, but not storing through the address, unless
891/// it is to the specified global.
892static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Instruction *V,
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000893 GlobalVariable *GV,
894 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner5e6e4942007-09-14 03:41:21 +0000895 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
Reid Spencere4d87aa2006-12-23 06:05:41 +0000896 if (isa<LoadInst>(*UI) || isa<CmpInst>(*UI)) {
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000897 // Fine, ignore.
898 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
899 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
900 return false; // Storing the pointer itself... bad.
901 // Otherwise, storing through it, or storing into GV... fine.
Chris Lattner5e6e4942007-09-14 03:41:21 +0000902 } else if (isa<GetElementPtrInst>(*UI)) {
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000903 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(cast<Instruction>(*UI),
904 GV, PHIs))
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000905 return false;
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000906 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
907 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
908 // cycles.
909 if (PHIs.insert(PN))
Chris Lattner5e6e4942007-09-14 03:41:21 +0000910 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
911 return false;
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000912 } else {
913 return false;
914 }
915 return true;
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000916}
917
Chris Lattner86395032006-09-30 23:32:09 +0000918/// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
919/// somewhere. Transform all uses of the allocation into loads from the
920/// global and uses of the resultant pointer. Further, delete the store into
921/// GV. This assumes that these value pass the
922/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
923static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
924 GlobalVariable *GV) {
925 while (!Alloc->use_empty()) {
Chris Lattnera637a8b2007-09-13 18:00:31 +0000926 Instruction *U = cast<Instruction>(*Alloc->use_begin());
927 Instruction *InsertPt = U;
Chris Lattner86395032006-09-30 23:32:09 +0000928 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
929 // If this is the store of the allocation into the global, remove it.
930 if (SI->getOperand(1) == GV) {
931 SI->eraseFromParent();
932 continue;
933 }
Chris Lattnera637a8b2007-09-13 18:00:31 +0000934 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
935 // Insert the load in the corresponding predecessor, not right before the
936 // PHI.
937 unsigned PredNo = Alloc->use_begin().getOperandNo()/2;
938 InsertPt = PN->getIncomingBlock(PredNo)->getTerminator();
Chris Lattner86395032006-09-30 23:32:09 +0000939 }
940
941 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnera637a8b2007-09-13 18:00:31 +0000942 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner86395032006-09-30 23:32:09 +0000943 U->replaceUsesOfWith(Alloc, NL);
944 }
945}
946
947/// GlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
948/// GV are simple enough to perform HeapSRA, return true.
Chris Lattner309f20f2007-09-13 21:31:36 +0000949static bool GlobalLoadUsesSimpleEnoughForHeapSRA(GlobalVariable *GV,
950 MallocInst *MI) {
Chris Lattner86395032006-09-30 23:32:09 +0000951 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;
952 ++UI)
953 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
954 // We permit two users of the load: setcc comparing against the null
955 // pointer, and a getelementptr of a specific form.
956 for (Value::use_iterator UI = LI->use_begin(), E = LI->use_end(); UI != E;
957 ++UI) {
958 // Comparison against null is ok.
Reid Spencere4d87aa2006-12-23 06:05:41 +0000959 if (ICmpInst *ICI = dyn_cast<ICmpInst>(*UI)) {
960 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
Chris Lattner86395032006-09-30 23:32:09 +0000961 return false;
962 continue;
963 }
964
965 // getelementptr is also ok, but only a simple form.
Chris Lattner309f20f2007-09-13 21:31:36 +0000966 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
967 // Must index into the array and into the struct.
968 if (GEPI->getNumOperands() < 3)
969 return false;
970
971 // Otherwise the GEP is ok.
972 continue;
973 }
Chris Lattner86395032006-09-30 23:32:09 +0000974
Chris Lattner309f20f2007-09-13 21:31:36 +0000975 if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
976 // We have a phi of a load from the global. We can only handle this
977 // if the other PHI'd values are actually the same. In this case,
978 // the rewriter will just drop the phi entirely.
979 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
980 Value *IV = PN->getIncomingValue(i);
981 if (IV == LI) continue; // Trivial the same.
982
983 // If the phi'd value is from the malloc that initializes the value,
984 // we can xform it.
985 if (IV == MI) continue;
986
987 // Otherwise, we don't know what it is.
988 return false;
989 }
990 return true;
991 }
Chris Lattner86395032006-09-30 23:32:09 +0000992
Chris Lattner309f20f2007-09-13 21:31:36 +0000993 // Otherwise we don't know what this is, not ok.
994 return false;
Chris Lattner86395032006-09-30 23:32:09 +0000995 }
996 }
997 return true;
998}
999
Chris Lattnera637a8b2007-09-13 18:00:31 +00001000/// GetHeapSROALoad - Return the load for the specified field of the HeapSROA'd
1001/// value, lazily creating it on demand.
Chris Lattner309f20f2007-09-13 21:31:36 +00001002static Value *GetHeapSROALoad(Instruction *Load, unsigned FieldNo,
Chris Lattnera637a8b2007-09-13 18:00:31 +00001003 const std::vector<GlobalVariable*> &FieldGlobals,
1004 std::vector<Value *> &InsertedLoadsForPtr) {
1005 if (InsertedLoadsForPtr.size() <= FieldNo)
1006 InsertedLoadsForPtr.resize(FieldNo+1);
1007 if (InsertedLoadsForPtr[FieldNo] == 0)
1008 InsertedLoadsForPtr[FieldNo] = new LoadInst(FieldGlobals[FieldNo],
1009 Load->getName()+".f" +
1010 utostr(FieldNo), Load);
1011 return InsertedLoadsForPtr[FieldNo];
1012}
1013
Chris Lattner330245e2007-09-13 17:29:05 +00001014/// RewriteHeapSROALoadUser - Given a load instruction and a value derived from
1015/// the load, rewrite the derived value to use the HeapSRoA'd load.
1016static void RewriteHeapSROALoadUser(LoadInst *Load, Instruction *LoadUser,
1017 const std::vector<GlobalVariable*> &FieldGlobals,
1018 std::vector<Value *> &InsertedLoadsForPtr) {
1019 // If this is a comparison against null, handle it.
1020 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1021 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1022 // If we have a setcc of the loaded pointer, we can use a setcc of any
1023 // field.
1024 Value *NPtr;
1025 if (InsertedLoadsForPtr.empty()) {
Chris Lattnera637a8b2007-09-13 18:00:31 +00001026 NPtr = GetHeapSROALoad(Load, 0, FieldGlobals, InsertedLoadsForPtr);
Chris Lattner330245e2007-09-13 17:29:05 +00001027 } else {
1028 NPtr = InsertedLoadsForPtr.back();
1029 }
1030
1031 Value *New = new ICmpInst(SCI->getPredicate(), NPtr,
1032 Constant::getNullValue(NPtr->getType()),
1033 SCI->getName(), SCI);
1034 SCI->replaceAllUsesWith(New);
1035 SCI->eraseFromParent();
1036 return;
1037 }
1038
Chris Lattnera637a8b2007-09-13 18:00:31 +00001039 // Handle 'getelementptr Ptr, Idx, uint FieldNo ...'
1040 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1041 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1042 && "Unexpected GEPI!");
Chris Lattner330245e2007-09-13 17:29:05 +00001043
Chris Lattnera637a8b2007-09-13 18:00:31 +00001044 // Load the pointer for this field.
1045 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
1046 Value *NewPtr = GetHeapSROALoad(Load, FieldNo,
1047 FieldGlobals, InsertedLoadsForPtr);
1048
1049 // Create the new GEP idx vector.
1050 SmallVector<Value*, 8> GEPIdx;
1051 GEPIdx.push_back(GEPI->getOperand(1));
1052 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
1053
1054 Value *NGEPI = new GetElementPtrInst(NewPtr, GEPIdx.begin(), GEPIdx.end(),
1055 GEPI->getName(), GEPI);
1056 GEPI->replaceAllUsesWith(NGEPI);
1057 GEPI->eraseFromParent();
1058 return;
1059 }
Chris Lattner330245e2007-09-13 17:29:05 +00001060
Chris Lattner309f20f2007-09-13 21:31:36 +00001061 // Handle PHI nodes. PHI nodes must be merging in the same values, plus
1062 // potentially the original malloc. Insert phi nodes for each field, then
1063 // process uses of the PHI.
Chris Lattnera637a8b2007-09-13 18:00:31 +00001064 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner309f20f2007-09-13 21:31:36 +00001065 std::vector<Value *> PHIsForField;
1066 PHIsForField.resize(FieldGlobals.size());
1067 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1068 Value *LoadV = GetHeapSROALoad(Load, i, FieldGlobals, InsertedLoadsForPtr);
1069
1070 PHINode *FieldPN = new PHINode(LoadV->getType(),
1071 PN->getName()+"."+utostr(i), PN);
1072 // Fill in the predecessor values.
1073 for (unsigned pred = 0, e = PN->getNumIncomingValues(); pred != e; ++pred) {
1074 // Each predecessor either uses the load or the original malloc.
1075 Value *InVal = PN->getIncomingValue(pred);
1076 BasicBlock *BB = PN->getIncomingBlock(pred);
1077 Value *NewVal;
1078 if (isa<MallocInst>(InVal)) {
1079 // Insert a reload from the global in the predecessor.
1080 NewVal = GetHeapSROALoad(BB->getTerminator(), i, FieldGlobals,
1081 PHIsForField);
1082 } else {
1083 NewVal = InsertedLoadsForPtr[i];
1084 }
1085 FieldPN->addIncoming(NewVal, BB);
1086 }
1087 PHIsForField[i] = FieldPN;
1088 }
1089
1090 // Since PHIsForField specifies a phi for every input value, the lazy inserter
1091 // will never insert a load.
Chris Lattnera637a8b2007-09-13 18:00:31 +00001092 while (!PN->use_empty())
Chris Lattner309f20f2007-09-13 21:31:36 +00001093 RewriteHeapSROALoadUser(Load, PN->use_back(), FieldGlobals, PHIsForField);
Chris Lattnera637a8b2007-09-13 18:00:31 +00001094 PN->eraseFromParent();
Chris Lattner330245e2007-09-13 17:29:05 +00001095}
1096
Chris Lattner86395032006-09-30 23:32:09 +00001097/// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global. Ptr
1098/// is a value loaded from the global. Eliminate all uses of Ptr, making them
1099/// use FieldGlobals instead. All uses of loaded values satisfy
1100/// GlobalLoadUsesSimpleEnoughForHeapSRA.
Chris Lattner330245e2007-09-13 17:29:05 +00001101static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner86395032006-09-30 23:32:09 +00001102 const std::vector<GlobalVariable*> &FieldGlobals) {
1103 std::vector<Value *> InsertedLoadsForPtr;
1104 //InsertedLoadsForPtr.resize(FieldGlobals.size());
Chris Lattner330245e2007-09-13 17:29:05 +00001105 while (!Load->use_empty())
1106 RewriteHeapSROALoadUser(Load, Load->use_back(),
1107 FieldGlobals, InsertedLoadsForPtr);
Chris Lattner86395032006-09-30 23:32:09 +00001108}
1109
1110/// PerformHeapAllocSRoA - MI is an allocation of an array of structures. Break
1111/// it up into multiple allocations of arrays of the fields.
1112static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, MallocInst *MI){
Bill Wendling0a81aac2006-11-26 10:02:32 +00001113 DOUT << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *MI;
Chris Lattner86395032006-09-30 23:32:09 +00001114 const StructType *STy = cast<StructType>(MI->getAllocatedType());
1115
1116 // There is guaranteed to be at least one use of the malloc (storing
1117 // it into GV). If there are other uses, change them to be uses of
1118 // the global to simplify later code. This also deletes the store
1119 // into GV.
1120 ReplaceUsesOfMallocWithGlobal(MI, GV);
1121
1122 // Okay, at this point, there are no users of the malloc. Insert N
1123 // new mallocs at the same place as MI, and N globals.
1124 std::vector<GlobalVariable*> FieldGlobals;
1125 std::vector<MallocInst*> FieldMallocs;
1126
1127 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
1128 const Type *FieldTy = STy->getElementType(FieldNo);
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001129 const Type *PFieldTy = PointerType::getUnqual(FieldTy);
Chris Lattner86395032006-09-30 23:32:09 +00001130
1131 GlobalVariable *NGV =
1132 new GlobalVariable(PFieldTy, false, GlobalValue::InternalLinkage,
1133 Constant::getNullValue(PFieldTy),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001134 GV->getName() + ".f" + utostr(FieldNo), GV,
1135 GV->isThreadLocal());
Chris Lattner86395032006-09-30 23:32:09 +00001136 FieldGlobals.push_back(NGV);
1137
1138 MallocInst *NMI = new MallocInst(FieldTy, MI->getArraySize(),
1139 MI->getName() + ".f" + utostr(FieldNo),MI);
1140 FieldMallocs.push_back(NMI);
1141 new StoreInst(NMI, NGV, MI);
1142 }
1143
1144 // The tricky aspect of this transformation is handling the case when malloc
1145 // fails. In the original code, malloc failing would set the result pointer
1146 // of malloc to null. In this case, some mallocs could succeed and others
1147 // could fail. As such, we emit code that looks like this:
1148 // F0 = malloc(field0)
1149 // F1 = malloc(field1)
1150 // F2 = malloc(field2)
1151 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1152 // if (F0) { free(F0); F0 = 0; }
1153 // if (F1) { free(F1); F1 = 0; }
1154 // if (F2) { free(F2); F2 = 0; }
1155 // }
1156 Value *RunningOr = 0;
1157 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001158 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, FieldMallocs[i],
Chris Lattner86395032006-09-30 23:32:09 +00001159 Constant::getNullValue(FieldMallocs[i]->getType()),
1160 "isnull", MI);
1161 if (!RunningOr)
1162 RunningOr = Cond; // First seteq
1163 else
1164 RunningOr = BinaryOperator::createOr(RunningOr, Cond, "tmp", MI);
1165 }
1166
1167 // Split the basic block at the old malloc.
1168 BasicBlock *OrigBB = MI->getParent();
1169 BasicBlock *ContBB = OrigBB->splitBasicBlock(MI, "malloc_cont");
1170
1171 // Create the block to check the first condition. Put all these blocks at the
1172 // end of the function as they are unlikely to be executed.
1173 BasicBlock *NullPtrBlock = new BasicBlock("malloc_ret_null",
1174 OrigBB->getParent());
1175
1176 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1177 // branch on RunningOr.
1178 OrigBB->getTerminator()->eraseFromParent();
1179 new BranchInst(NullPtrBlock, ContBB, RunningOr, OrigBB);
1180
1181 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1182 // pointer, because some may be null while others are not.
1183 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1184 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001185 Value *Cmp = new ICmpInst(ICmpInst::ICMP_NE, GVVal,
1186 Constant::getNullValue(GVVal->getType()),
1187 "tmp", NullPtrBlock);
Chris Lattner86395032006-09-30 23:32:09 +00001188 BasicBlock *FreeBlock = new BasicBlock("free_it", OrigBB->getParent());
1189 BasicBlock *NextBlock = new BasicBlock("next", OrigBB->getParent());
1190 new BranchInst(FreeBlock, NextBlock, Cmp, NullPtrBlock);
1191
1192 // Fill in FreeBlock.
1193 new FreeInst(GVVal, FreeBlock);
1194 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1195 FreeBlock);
1196 new BranchInst(NextBlock, FreeBlock);
1197
1198 NullPtrBlock = NextBlock;
1199 }
1200
1201 new BranchInst(ContBB, NullPtrBlock);
1202
1203
1204 // MI is no longer needed, remove it.
1205 MI->eraseFromParent();
1206
1207
1208 // Okay, the malloc site is completely handled. All of the uses of GV are now
1209 // loads, and all uses of those loads are simple. Rewrite them to use loads
1210 // of the per-field globals instead.
1211 while (!GV->use_empty()) {
Chris Lattner39ff1e22007-01-09 23:29:37 +00001212 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
1213 RewriteUsesOfLoadForHeapSRoA(LI, FieldGlobals);
1214 LI->eraseFromParent();
1215 } else {
1216 // Must be a store of null.
1217 StoreInst *SI = cast<StoreInst>(GV->use_back());
1218 assert(isa<Constant>(SI->getOperand(0)) &&
1219 cast<Constant>(SI->getOperand(0))->isNullValue() &&
1220 "Unexpected heap-sra user!");
1221
1222 // Insert a store of null into each global.
1223 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1224 Constant *Null =
1225 Constant::getNullValue(FieldGlobals[i]->getType()->getElementType());
1226 new StoreInst(Null, FieldGlobals[i], SI);
1227 }
1228 // Erase the original store.
1229 SI->eraseFromParent();
1230 }
Chris Lattner86395032006-09-30 23:32:09 +00001231 }
1232
1233 // The old global is now dead, remove it.
1234 GV->eraseFromParent();
1235
1236 ++NumHeapSRA;
1237 return FieldGlobals[0];
1238}
1239
1240
Chris Lattner9b34a612004-10-09 21:48:45 +00001241// OptimizeOnceStoredGlobal - Try to optimize globals based on the knowledge
1242// that only one value (besides its initializer) is ever stored to the global.
Chris Lattner30ba5692004-10-11 05:54:41 +00001243static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Chris Lattner7f8897f2006-08-27 22:42:52 +00001244 Module::global_iterator &GVI,
1245 TargetData &TD) {
Chris Lattner9b34a612004-10-09 21:48:45 +00001246 if (CastInst *CI = dyn_cast<CastInst>(StoredOnceVal))
1247 StoredOnceVal = CI->getOperand(0);
1248 else if (GetElementPtrInst *GEPI =dyn_cast<GetElementPtrInst>(StoredOnceVal)){
Chris Lattner708148e2004-10-10 23:14:11 +00001249 // "getelementptr Ptr, 0, 0, 0" is really just a cast.
Chris Lattner9b34a612004-10-09 21:48:45 +00001250 bool IsJustACast = true;
1251 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
1252 if (!isa<Constant>(GEPI->getOperand(i)) ||
1253 !cast<Constant>(GEPI->getOperand(i))->isNullValue()) {
1254 IsJustACast = false;
1255 break;
1256 }
1257 if (IsJustACast)
1258 StoredOnceVal = GEPI->getOperand(0);
1259 }
1260
Chris Lattner708148e2004-10-10 23:14:11 +00001261 // If we are dealing with a pointer global that is initialized to null and
1262 // only has one (non-null) value stored into it, then we can optimize any
1263 // users of the loaded value (often calls and loads) that would trap if the
1264 // value was null.
Chris Lattner9b34a612004-10-09 21:48:45 +00001265 if (isa<PointerType>(GV->getInitializer()->getType()) &&
1266 GV->getInitializer()->isNullValue()) {
Chris Lattner708148e2004-10-10 23:14:11 +00001267 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1268 if (GV->getInitializer()->getType() != SOVC->getType())
Reid Spencerd977d862006-12-12 23:36:14 +00001269 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanfd939082005-04-21 23:48:37 +00001270
Chris Lattner708148e2004-10-10 23:14:11 +00001271 // Optimize away any trapping uses of the loaded value.
1272 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC))
Chris Lattner8be80122004-10-10 17:07:12 +00001273 return true;
Chris Lattner30ba5692004-10-11 05:54:41 +00001274 } else if (MallocInst *MI = dyn_cast<MallocInst>(StoredOnceVal)) {
Chris Lattnercff16732006-09-30 19:40:30 +00001275 // If this is a malloc of an abstract type, don't touch it.
1276 if (!MI->getAllocatedType()->isSized())
1277 return false;
1278
Chris Lattner86395032006-09-30 23:32:09 +00001279 // We can't optimize this global unless all uses of it are *known* to be
1280 // of the malloc value, not of the null initializer value (consider a use
1281 // that compares the global's value against zero to see if the malloc has
1282 // been reached). To do this, we check to see if all uses of the global
1283 // would trap if the global were null: this proves that they must all
1284 // happen after the malloc.
1285 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1286 return false;
1287
1288 // We can't optimize this if the malloc itself is used in a complex way,
1289 // for example, being stored into multiple globals. This allows the
1290 // malloc to be stored into the specified global, loaded setcc'd, and
1291 // GEP'd. These are all things we could transform to using the global
1292 // for.
Chris Lattnerc451f9c2007-09-13 16:37:20 +00001293 {
1294 SmallPtrSet<PHINode*, 8> PHIs;
1295 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(MI, GV, PHIs))
1296 return false;
1297 }
Chris Lattner86395032006-09-30 23:32:09 +00001298
1299
Chris Lattner30ba5692004-10-11 05:54:41 +00001300 // If we have a global that is only initialized with a fixed size malloc,
Chris Lattner86395032006-09-30 23:32:09 +00001301 // transform the program to use global memory instead of malloc'd memory.
1302 // This eliminates dynamic allocation, avoids an indirection accessing the
1303 // data, and exposes the resultant global to further GlobalOpt.
Chris Lattnercff16732006-09-30 19:40:30 +00001304 if (ConstantInt *NElements = dyn_cast<ConstantInt>(MI->getArraySize())) {
Chris Lattner86395032006-09-30 23:32:09 +00001305 // Restrict this transformation to only working on small allocations
1306 // (2048 bytes currently), as we don't want to introduce a 16M global or
1307 // something.
Reid Spencerb83eb642006-10-20 07:07:24 +00001308 if (NElements->getZExtValue()*
Duncan Sands514ab342007-11-01 20:53:16 +00001309 TD.getABITypeSize(MI->getAllocatedType()) < 2048) {
Chris Lattner30ba5692004-10-11 05:54:41 +00001310 GVI = OptimizeGlobalAddressOfMalloc(GV, MI);
1311 return true;
1312 }
Chris Lattnercff16732006-09-30 19:40:30 +00001313 }
Chris Lattner86395032006-09-30 23:32:09 +00001314
1315 // If the allocation is an array of structures, consider transforming this
1316 // into multiple malloc'd arrays, one for each field. This is basically
1317 // SRoA for malloc'd memory.
1318 if (const StructType *AllocTy =
1319 dyn_cast<StructType>(MI->getAllocatedType())) {
1320 // This the structure has an unreasonable number of fields, leave it
1321 // alone.
1322 if (AllocTy->getNumElements() <= 16 && AllocTy->getNumElements() > 0 &&
Chris Lattner309f20f2007-09-13 21:31:36 +00001323 GlobalLoadUsesSimpleEnoughForHeapSRA(GV, MI)) {
Chris Lattner86395032006-09-30 23:32:09 +00001324 GVI = PerformHeapAllocSRoA(GV, MI);
1325 return true;
1326 }
1327 }
Chris Lattner708148e2004-10-10 23:14:11 +00001328 }
Chris Lattner9b34a612004-10-09 21:48:45 +00001329 }
Chris Lattner30ba5692004-10-11 05:54:41 +00001330
Chris Lattner9b34a612004-10-09 21:48:45 +00001331 return false;
1332}
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001333
Chris Lattner58e44f42008-01-14 01:17:44 +00001334/// TryToShrinkGlobalToBoolean - At this point, we have learned that the only
1335/// two values ever stored into GV are its initializer and OtherVal. See if we
1336/// can shrink the global into a boolean and select between the two values
1337/// whenever it is used. This exposes the values to other scalar optimizations.
1338static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1339 const Type *GVElType = GV->getType()->getElementType();
1340
1341 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1342 // an FP value or vector, don't do this optimization because a select between
1343 // them is very expensive and unlikely to lead to later simplification.
1344 if (GVElType == Type::Int1Ty || GVElType->isFloatingPoint() ||
1345 isa<VectorType>(GVElType))
1346 return false;
1347
1348 // Walk the use list of the global seeing if all the uses are load or store.
1349 // If there is anything else, bail out.
1350 for (Value::use_iterator I = GV->use_begin(), E = GV->use_end(); I != E; ++I)
1351 if (!isa<LoadInst>(I) && !isa<StoreInst>(I))
1352 return false;
1353
1354 DOUT << " *** SHRINKING TO BOOL: " << *GV;
1355
Chris Lattner96a86b22004-12-12 05:53:50 +00001356 // Create the new global, initializing it to false.
Reid Spencer4fe16d62007-01-11 18:21:29 +00001357 GlobalVariable *NewGV = new GlobalVariable(Type::Int1Ty, false,
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001358 GlobalValue::InternalLinkage, ConstantInt::getFalse(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001359 GV->getName()+".b",
1360 (Module *)NULL,
1361 GV->isThreadLocal());
Chris Lattner96a86b22004-12-12 05:53:50 +00001362 GV->getParent()->getGlobalList().insert(GV, NewGV);
1363
1364 Constant *InitVal = GV->getInitializer();
Reid Spencer4fe16d62007-01-11 18:21:29 +00001365 assert(InitVal->getType() != Type::Int1Ty && "No reason to shrink to bool!");
Chris Lattner96a86b22004-12-12 05:53:50 +00001366
1367 // If initialized to zero and storing one into the global, we can use a cast
1368 // instead of a select to synthesize the desired value.
1369 bool IsOneZero = false;
1370 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
Reid Spencercae57542007-03-02 00:28:52 +00001371 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner96a86b22004-12-12 05:53:50 +00001372
1373 while (!GV->use_empty()) {
1374 Instruction *UI = cast<Instruction>(GV->use_back());
1375 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1376 // Change the store into a boolean store.
1377 bool StoringOther = SI->getOperand(0) == OtherVal;
1378 // Only do this if we weren't storing a loaded value.
Chris Lattner38c25562004-12-12 19:34:41 +00001379 Value *StoreVal;
Chris Lattner96a86b22004-12-12 05:53:50 +00001380 if (StoringOther || SI->getOperand(0) == InitVal)
Reid Spencer579dca12007-01-12 04:24:46 +00001381 StoreVal = ConstantInt::get(Type::Int1Ty, StoringOther);
Chris Lattner38c25562004-12-12 19:34:41 +00001382 else {
1383 // Otherwise, we are storing a previously loaded copy. To do this,
1384 // change the copy from copying the original value to just copying the
1385 // bool.
1386 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1387
1388 // If we're already replaced the input, StoredVal will be a cast or
1389 // select instruction. If not, it will be a load of the original
1390 // global.
1391 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1392 assert(LI->getOperand(0) == GV && "Not a copy!");
1393 // Insert a new load, to preserve the saved value.
1394 StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI);
1395 } else {
1396 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1397 "This is not a form that we understand!");
1398 StoreVal = StoredVal->getOperand(0);
1399 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1400 }
1401 }
1402 new StoreInst(StoreVal, NewGV, SI);
Chris Lattner58e44f42008-01-14 01:17:44 +00001403 } else {
Chris Lattner96a86b22004-12-12 05:53:50 +00001404 // Change the load into a load of bool then a select.
1405 LoadInst *LI = cast<LoadInst>(UI);
Chris Lattner046800a2007-02-11 01:08:35 +00001406 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", LI);
Chris Lattner96a86b22004-12-12 05:53:50 +00001407 Value *NSI;
1408 if (IsOneZero)
Chris Lattner046800a2007-02-11 01:08:35 +00001409 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
Misha Brukmanfd939082005-04-21 23:48:37 +00001410 else
Chris Lattner046800a2007-02-11 01:08:35 +00001411 NSI = new SelectInst(NLI, OtherVal, InitVal, "", LI);
1412 NSI->takeName(LI);
Chris Lattner96a86b22004-12-12 05:53:50 +00001413 LI->replaceAllUsesWith(NSI);
1414 }
1415 UI->eraseFromParent();
1416 }
1417
1418 GV->eraseFromParent();
Chris Lattner58e44f42008-01-14 01:17:44 +00001419 return true;
Chris Lattner96a86b22004-12-12 05:53:50 +00001420}
1421
1422
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001423/// ProcessInternalGlobal - Analyze the specified global variable and optimize
1424/// it if possible. If we make a change, return true.
Chris Lattner30ba5692004-10-11 05:54:41 +00001425bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
Chris Lattnere4d5c442005-03-15 04:54:21 +00001426 Module::global_iterator &GVI) {
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001427 std::set<PHINode*> PHIUsers;
1428 GlobalStatus GS;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001429 GV->removeDeadConstantUsers();
1430
1431 if (GV->use_empty()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001432 DOUT << "GLOBAL DEAD: " << *GV;
Chris Lattner7a7ed022004-10-16 18:09:00 +00001433 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001434 ++NumDeleted;
1435 return true;
1436 }
1437
1438 if (!AnalyzeGlobal(GV, GS, PHIUsers)) {
Chris Lattnercff16732006-09-30 19:40:30 +00001439#if 0
Bill Wendlinge8156192006-12-07 01:30:32 +00001440 cerr << "Global: " << *GV;
1441 cerr << " isLoaded = " << GS.isLoaded << "\n";
1442 cerr << " StoredType = ";
Chris Lattnercff16732006-09-30 19:40:30 +00001443 switch (GS.StoredType) {
Bill Wendlinge8156192006-12-07 01:30:32 +00001444 case GlobalStatus::NotStored: cerr << "NEVER STORED\n"; break;
1445 case GlobalStatus::isInitializerStored: cerr << "INIT STORED\n"; break;
1446 case GlobalStatus::isStoredOnce: cerr << "STORED ONCE\n"; break;
1447 case GlobalStatus::isStored: cerr << "stored\n"; break;
Chris Lattnercff16732006-09-30 19:40:30 +00001448 }
1449 if (GS.StoredType == GlobalStatus::isStoredOnce && GS.StoredOnceValue)
Bill Wendlinge8156192006-12-07 01:30:32 +00001450 cerr << " StoredOnceValue = " << *GS.StoredOnceValue << "\n";
Chris Lattnercff16732006-09-30 19:40:30 +00001451 if (GS.AccessingFunction && !GS.HasMultipleAccessingFunctions)
Bill Wendlinge8156192006-12-07 01:30:32 +00001452 cerr << " AccessingFunction = " << GS.AccessingFunction->getName()
Chris Lattnercff16732006-09-30 19:40:30 +00001453 << "\n";
Bill Wendlinge8156192006-12-07 01:30:32 +00001454 cerr << " HasMultipleAccessingFunctions = "
Chris Lattnercff16732006-09-30 19:40:30 +00001455 << GS.HasMultipleAccessingFunctions << "\n";
Bill Wendlinge8156192006-12-07 01:30:32 +00001456 cerr << " HasNonInstructionUser = " << GS.HasNonInstructionUser<<"\n";
Bill Wendlinge8156192006-12-07 01:30:32 +00001457 cerr << "\n";
Chris Lattnercff16732006-09-30 19:40:30 +00001458#endif
1459
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001460 // If this is a first class global and has only one accessing function
1461 // and this function is main (which we know is not recursive we can make
1462 // this global a local variable) we replace the global with a local alloca
1463 // in this function.
1464 //
1465 // NOTE: It doesn't make sense to promote non first class types since we
1466 // are just replacing static memory to stack memory.
1467 if (!GS.HasMultipleAccessingFunctions &&
Chris Lattner553ca522005-06-15 21:11:48 +00001468 GS.AccessingFunction && !GS.HasNonInstructionUser &&
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001469 GV->getType()->getElementType()->isFirstClassType() &&
1470 GS.AccessingFunction->getName() == "main" &&
1471 GS.AccessingFunction->hasExternalLinkage()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001472 DOUT << "LOCALIZING GLOBAL: " << *GV;
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001473 Instruction* FirstI = GS.AccessingFunction->getEntryBlock().begin();
1474 const Type* ElemTy = GV->getType()->getElementType();
Nate Begeman14b05292005-11-05 09:21:28 +00001475 // FIXME: Pass Global's alignment when globals have alignment
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001476 AllocaInst* Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), FirstI);
1477 if (!isa<UndefValue>(GV->getInitializer()))
1478 new StoreInst(GV->getInitializer(), Alloca, FirstI);
Misha Brukmanfd939082005-04-21 23:48:37 +00001479
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001480 GV->replaceAllUsesWith(Alloca);
1481 GV->eraseFromParent();
1482 ++NumLocalized;
1483 return true;
1484 }
Chris Lattnercff16732006-09-30 19:40:30 +00001485
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001486 // If the global is never loaded (but may be stored to), it is dead.
1487 // Delete it now.
1488 if (!GS.isLoaded) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001489 DOUT << "GLOBAL NEVER LOADED: " << *GV;
Chris Lattner930f4752004-10-09 03:32:52 +00001490
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001491 // Delete any stores we can find to the global. We may not be able to
1492 // make it completely dead though.
Chris Lattner031955d2004-10-10 16:43:46 +00001493 bool Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer());
Chris Lattner930f4752004-10-09 03:32:52 +00001494
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001495 // If the global is dead now, delete it.
1496 if (GV->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +00001497 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001498 ++NumDeleted;
Chris Lattner930f4752004-10-09 03:32:52 +00001499 Changed = true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001500 }
Chris Lattner930f4752004-10-09 03:32:52 +00001501 return Changed;
Misha Brukmanfd939082005-04-21 23:48:37 +00001502
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001503 } else if (GS.StoredType <= GlobalStatus::isInitializerStored) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001504 DOUT << "MARKING CONSTANT: " << *GV;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001505 GV->setConstant(true);
Misha Brukmanfd939082005-04-21 23:48:37 +00001506
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001507 // Clean up any obviously simplifiable users now.
1508 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanfd939082005-04-21 23:48:37 +00001509
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001510 // If the global is dead now, just nuke it.
1511 if (GV->use_empty()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001512 DOUT << " *** Marking constant allowed us to simplify "
1513 << "all users and delete global!\n";
Chris Lattner7a7ed022004-10-16 18:09:00 +00001514 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001515 ++NumDeleted;
1516 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001517
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001518 ++NumMarked;
1519 return true;
Chris Lattner727c2102008-01-14 01:31:05 +00001520 } else if (!GV->getInitializer()->getType()->isFirstClassType()) {
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001521 if (GlobalVariable *FirstNewGV = SRAGlobal(GV)) {
1522 GVI = FirstNewGV; // Don't skip the newly produced globals!
1523 return true;
1524 }
Chris Lattner9b34a612004-10-09 21:48:45 +00001525 } else if (GS.StoredType == GlobalStatus::isStoredOnce) {
Chris Lattner96a86b22004-12-12 05:53:50 +00001526 // If the initial value for the global was an undef value, and if only
1527 // one other value was stored into it, we can just change the
1528 // initializer to be an undef value, then delete all stores to the
1529 // global. This allows us to mark it constant.
1530 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1531 if (isa<UndefValue>(GV->getInitializer())) {
1532 // Change the initial value here.
1533 GV->setInitializer(SOVConstant);
Misha Brukmanfd939082005-04-21 23:48:37 +00001534
Chris Lattner96a86b22004-12-12 05:53:50 +00001535 // Clean up any obviously simplifiable users now.
1536 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanfd939082005-04-21 23:48:37 +00001537
Chris Lattner96a86b22004-12-12 05:53:50 +00001538 if (GV->use_empty()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001539 DOUT << " *** Substituting initializer allowed us to "
1540 << "simplify all users and delete global!\n";
Chris Lattner96a86b22004-12-12 05:53:50 +00001541 GV->eraseFromParent();
1542 ++NumDeleted;
1543 } else {
1544 GVI = GV;
1545 }
1546 ++NumSubstitute;
1547 return true;
Chris Lattner7a7ed022004-10-16 18:09:00 +00001548 }
Chris Lattner7a7ed022004-10-16 18:09:00 +00001549
Chris Lattner9b34a612004-10-09 21:48:45 +00001550 // Try to optimize globals based on the knowledge that only one value
1551 // (besides its initializer) is ever stored to the global.
Chris Lattner30ba5692004-10-11 05:54:41 +00001552 if (OptimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GVI,
1553 getAnalysis<TargetData>()))
Chris Lattner9b34a612004-10-09 21:48:45 +00001554 return true;
Chris Lattner96a86b22004-12-12 05:53:50 +00001555
1556 // Otherwise, if the global was not a boolean, we can shrink it to be a
1557 // boolean.
1558 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
Chris Lattner58e44f42008-01-14 01:17:44 +00001559 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Chris Lattner96a86b22004-12-12 05:53:50 +00001560 ++NumShrunkToBool;
1561 return true;
1562 }
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001563 }
1564 }
1565 return false;
1566}
1567
Chris Lattnerfb217ad2005-05-08 22:18:06 +00001568/// OnlyCalledDirectly - Return true if the specified function is only called
1569/// directly. In other words, its address is never taken.
1570static bool OnlyCalledDirectly(Function *F) {
1571 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1572 Instruction *User = dyn_cast<Instruction>(*UI);
1573 if (!User) return false;
1574 if (!isa<CallInst>(User) && !isa<InvokeInst>(User)) return false;
1575
1576 // See if the function address is passed as an argument.
1577 for (unsigned i = 1, e = User->getNumOperands(); i != e; ++i)
1578 if (User->getOperand(i) == F) return false;
1579 }
1580 return true;
1581}
1582
1583/// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
1584/// function, changing them to FastCC.
1585static void ChangeCalleesToFastCall(Function *F) {
1586 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1587 Instruction *User = cast<Instruction>(*UI);
1588 if (CallInst *CI = dyn_cast<CallInst>(User))
1589 CI->setCallingConv(CallingConv::Fast);
1590 else
1591 cast<InvokeInst>(User)->setCallingConv(CallingConv::Fast);
1592 }
1593}
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001594
Duncan Sands3d5378f2008-02-16 20:56:04 +00001595static const ParamAttrsList *StripNest(const ParamAttrsList *Attrs) {
1596 if (Attrs) {
1597 for (unsigned i = 0, e = Attrs->size(); i != e; ++i) {
1598 uint16_t A = Attrs->getParamAttrsAtIndex(i);
1599 if (A & ParamAttr::Nest) {
1600 Attrs = ParamAttrsList::excludeAttrs(Attrs, Attrs->getParamIndex(i),
1601 ParamAttr::Nest);
1602 // There can be only one.
1603 break;
1604 }
1605 }
1606 }
1607
1608 return Attrs;
1609}
1610
1611static void RemoveNestAttribute(Function *F) {
1612 F->setParamAttrs(StripNest(F->getParamAttrs()));
1613 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1614 Instruction *User = cast<Instruction>(*UI);
1615 if (CallInst *CI = dyn_cast<CallInst>(User)) {
1616 CI->setParamAttrs(StripNest(CI->getParamAttrs()));
1617 } else {
1618 InvokeInst *II = cast<InvokeInst>(User);
1619 II->setParamAttrs(StripNest(II->getParamAttrs()));
1620 }
1621 }
1622}
1623
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001624bool GlobalOpt::OptimizeFunctions(Module &M) {
1625 bool Changed = false;
1626 // Optimize functions.
1627 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
1628 Function *F = FI++;
1629 F->removeDeadConstantUsers();
1630 if (F->use_empty() && (F->hasInternalLinkage() ||
1631 F->hasLinkOnceLinkage())) {
1632 M.getFunctionList().erase(F);
1633 Changed = true;
1634 ++NumFnDeleted;
Duncan Sands3d5378f2008-02-16 20:56:04 +00001635 } else if (F->hasInternalLinkage()) {
1636 if (F->getCallingConv() == CallingConv::C && !F->isVarArg() &&
1637 OnlyCalledDirectly(F)) {
1638 // If this function has C calling conventions, is not a varargs
1639 // function, and is only called directly, promote it to use the Fast
1640 // calling convention.
1641 F->setCallingConv(CallingConv::Fast);
1642 ChangeCalleesToFastCall(F);
1643 ++NumFastCallFns;
1644 Changed = true;
1645 }
1646
1647 if (F->getParamAttrs() &&
1648 F->getParamAttrs()->hasAttrSomewhere(ParamAttr::Nest) &&
1649 OnlyCalledDirectly(F)) {
1650 // The function is not used by a trampoline intrinsic, so it is safe
1651 // to remove the 'nest' attribute.
1652 RemoveNestAttribute(F);
1653 ++NumNestRemoved;
1654 Changed = true;
1655 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001656 }
1657 }
1658 return Changed;
1659}
1660
1661bool GlobalOpt::OptimizeGlobalVars(Module &M) {
1662 bool Changed = false;
1663 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
1664 GVI != E; ) {
1665 GlobalVariable *GV = GVI++;
1666 if (!GV->isConstant() && GV->hasInternalLinkage() &&
1667 GV->hasInitializer())
1668 Changed |= ProcessInternalGlobal(GV, GVI);
1669 }
1670 return Changed;
1671}
1672
1673/// FindGlobalCtors - Find the llvm.globalctors list, verifying that all
1674/// initializers have an init priority of 65535.
1675GlobalVariable *GlobalOpt::FindGlobalCtors(Module &M) {
Alkis Evlogimenose9c6d362005-10-25 11:18:06 +00001676 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1677 I != E; ++I)
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001678 if (I->getName() == "llvm.global_ctors") {
1679 // Found it, verify it's an array of { int, void()* }.
1680 const ArrayType *ATy =dyn_cast<ArrayType>(I->getType()->getElementType());
1681 if (!ATy) return 0;
1682 const StructType *STy = dyn_cast<StructType>(ATy->getElementType());
1683 if (!STy || STy->getNumElements() != 2 ||
Reid Spencerc5b206b2006-12-31 05:48:39 +00001684 STy->getElementType(0) != Type::Int32Ty) return 0;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001685 const PointerType *PFTy = dyn_cast<PointerType>(STy->getElementType(1));
1686 if (!PFTy) return 0;
1687 const FunctionType *FTy = dyn_cast<FunctionType>(PFTy->getElementType());
1688 if (!FTy || FTy->getReturnType() != Type::VoidTy || FTy->isVarArg() ||
1689 FTy->getNumParams() != 0)
1690 return 0;
1691
1692 // Verify that the initializer is simple enough for us to handle.
1693 if (!I->hasInitializer()) return 0;
1694 ConstantArray *CA = dyn_cast<ConstantArray>(I->getInitializer());
1695 if (!CA) return 0;
1696 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1697 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(CA->getOperand(i))) {
Chris Lattner7d8e58f2005-09-26 02:19:27 +00001698 if (isa<ConstantPointerNull>(CS->getOperand(1)))
1699 continue;
1700
1701 // Must have a function or null ptr.
1702 if (!isa<Function>(CS->getOperand(1)))
1703 return 0;
1704
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001705 // Init priority must be standard.
1706 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
Reid Spencerb83eb642006-10-20 07:07:24 +00001707 if (!CI || CI->getZExtValue() != 65535)
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001708 return 0;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001709 } else {
1710 return 0;
1711 }
1712
1713 return I;
1714 }
1715 return 0;
1716}
1717
Chris Lattnerdb973e62005-09-26 02:31:18 +00001718/// ParseGlobalCtors - Given a llvm.global_ctors list that we can understand,
1719/// return a list of the functions and null terminator as a vector.
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001720static std::vector<Function*> ParseGlobalCtors(GlobalVariable *GV) {
1721 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1722 std::vector<Function*> Result;
1723 Result.reserve(CA->getNumOperands());
1724 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) {
1725 ConstantStruct *CS = cast<ConstantStruct>(CA->getOperand(i));
1726 Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
1727 }
1728 return Result;
1729}
1730
Chris Lattnerdb973e62005-09-26 02:31:18 +00001731/// InstallGlobalCtors - Given a specified llvm.global_ctors list, install the
1732/// specified array, returning the new global to use.
1733static GlobalVariable *InstallGlobalCtors(GlobalVariable *GCL,
1734 const std::vector<Function*> &Ctors) {
1735 // If we made a change, reassemble the initializer list.
1736 std::vector<Constant*> CSVals;
Reid Spencerc5b206b2006-12-31 05:48:39 +00001737 CSVals.push_back(ConstantInt::get(Type::Int32Ty, 65535));
Chris Lattnerdb973e62005-09-26 02:31:18 +00001738 CSVals.push_back(0);
1739
1740 // Create the new init list.
1741 std::vector<Constant*> CAList;
1742 for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
Chris Lattner79c11012005-09-26 04:44:35 +00001743 if (Ctors[i]) {
Chris Lattnerdb973e62005-09-26 02:31:18 +00001744 CSVals[1] = Ctors[i];
Chris Lattner79c11012005-09-26 04:44:35 +00001745 } else {
Chris Lattnerdb973e62005-09-26 02:31:18 +00001746 const Type *FTy = FunctionType::get(Type::VoidTy,
1747 std::vector<const Type*>(), false);
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001748 const PointerType *PFTy = PointerType::getUnqual(FTy);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001749 CSVals[1] = Constant::getNullValue(PFTy);
Reid Spencerc5b206b2006-12-31 05:48:39 +00001750 CSVals[0] = ConstantInt::get(Type::Int32Ty, 2147483647);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001751 }
1752 CAList.push_back(ConstantStruct::get(CSVals));
1753 }
1754
1755 // Create the array initializer.
1756 const Type *StructTy =
1757 cast<ArrayType>(GCL->getType()->getElementType())->getElementType();
1758 Constant *CA = ConstantArray::get(ArrayType::get(StructTy, CAList.size()),
1759 CAList);
1760
1761 // If we didn't change the number of elements, don't create a new GV.
1762 if (CA->getType() == GCL->getInitializer()->getType()) {
1763 GCL->setInitializer(CA);
1764 return GCL;
1765 }
1766
1767 // Create the new global and insert it next to the existing list.
1768 GlobalVariable *NGV = new GlobalVariable(CA->getType(), GCL->isConstant(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001769 GCL->getLinkage(), CA, "",
1770 (Module *)NULL,
1771 GCL->isThreadLocal());
Chris Lattnerdb973e62005-09-26 02:31:18 +00001772 GCL->getParent()->getGlobalList().insert(GCL, NGV);
Chris Lattner046800a2007-02-11 01:08:35 +00001773 NGV->takeName(GCL);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001774
1775 // Nuke the old list, replacing any uses with the new one.
1776 if (!GCL->use_empty()) {
1777 Constant *V = NGV;
1778 if (V->getType() != GCL->getType())
Reid Spencerd977d862006-12-12 23:36:14 +00001779 V = ConstantExpr::getBitCast(V, GCL->getType());
Chris Lattnerdb973e62005-09-26 02:31:18 +00001780 GCL->replaceAllUsesWith(V);
1781 }
1782 GCL->eraseFromParent();
1783
1784 if (Ctors.size())
1785 return NGV;
1786 else
1787 return 0;
1788}
Chris Lattner79c11012005-09-26 04:44:35 +00001789
1790
1791static Constant *getVal(std::map<Value*, Constant*> &ComputedValues,
1792 Value *V) {
1793 if (Constant *CV = dyn_cast<Constant>(V)) return CV;
1794 Constant *R = ComputedValues[V];
1795 assert(R && "Reference to an uncomputed value!");
1796 return R;
1797}
1798
1799/// isSimpleEnoughPointerToCommit - Return true if this constant is simple
1800/// enough for us to understand. In particular, if it is a cast of something,
1801/// we punt. We basically just support direct accesses to globals and GEP's of
1802/// globals. This should be kept up to date with CommitValueTo.
1803static bool isSimpleEnoughPointerToCommit(Constant *C) {
Chris Lattner231308c2005-09-27 04:50:03 +00001804 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
1805 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001806 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
Reid Spencer5cbf9852007-01-30 20:08:39 +00001807 return !GV->isDeclaration(); // reject external globals.
Chris Lattner231308c2005-09-27 04:50:03 +00001808 }
Chris Lattner798b4d52005-09-26 06:52:44 +00001809 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
1810 // Handle a constantexpr gep.
1811 if (CE->getOpcode() == Instruction::GetElementPtr &&
1812 isa<GlobalVariable>(CE->getOperand(0))) {
1813 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Chris Lattner231308c2005-09-27 04:50:03 +00001814 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001815 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
Chris Lattner798b4d52005-09-26 06:52:44 +00001816 return GV->hasInitializer() &&
1817 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1818 }
Chris Lattner79c11012005-09-26 04:44:35 +00001819 return false;
1820}
1821
Chris Lattner798b4d52005-09-26 06:52:44 +00001822/// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
1823/// initializer. This returns 'Init' modified to reflect 'Val' stored into it.
1824/// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
1825static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
1826 ConstantExpr *Addr, unsigned OpNo) {
1827 // Base case of the recursion.
1828 if (OpNo == Addr->getNumOperands()) {
1829 assert(Val->getType() == Init->getType() && "Type mismatch!");
1830 return Val;
1831 }
1832
1833 if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
1834 std::vector<Constant*> Elts;
1835
1836 // Break up the constant into its elements.
1837 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
1838 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
1839 Elts.push_back(CS->getOperand(i));
1840 } else if (isa<ConstantAggregateZero>(Init)) {
1841 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1842 Elts.push_back(Constant::getNullValue(STy->getElementType(i)));
1843 } else if (isa<UndefValue>(Init)) {
1844 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1845 Elts.push_back(UndefValue::get(STy->getElementType(i)));
1846 } else {
1847 assert(0 && "This code is out of sync with "
1848 " ConstantFoldLoadThroughGEPConstantExpr");
1849 }
1850
1851 // Replace the element that we are supposed to.
Reid Spencerb83eb642006-10-20 07:07:24 +00001852 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
1853 unsigned Idx = CU->getZExtValue();
1854 assert(Idx < STy->getNumElements() && "Struct index out of range!");
Chris Lattner798b4d52005-09-26 06:52:44 +00001855 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
1856
1857 // Return the modified struct.
Chris Lattnerf0a9aab2007-06-04 22:23:42 +00001858 return ConstantStruct::get(&Elts[0], Elts.size(), STy->isPacked());
Chris Lattner798b4d52005-09-26 06:52:44 +00001859 } else {
1860 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
1861 const ArrayType *ATy = cast<ArrayType>(Init->getType());
1862
1863 // Break up the array into elements.
1864 std::vector<Constant*> Elts;
1865 if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
1866 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1867 Elts.push_back(CA->getOperand(i));
1868 } else if (isa<ConstantAggregateZero>(Init)) {
1869 Constant *Elt = Constant::getNullValue(ATy->getElementType());
1870 Elts.assign(ATy->getNumElements(), Elt);
1871 } else if (isa<UndefValue>(Init)) {
1872 Constant *Elt = UndefValue::get(ATy->getElementType());
1873 Elts.assign(ATy->getNumElements(), Elt);
1874 } else {
1875 assert(0 && "This code is out of sync with "
1876 " ConstantFoldLoadThroughGEPConstantExpr");
1877 }
1878
Reid Spencerb83eb642006-10-20 07:07:24 +00001879 assert(CI->getZExtValue() < ATy->getNumElements());
1880 Elts[CI->getZExtValue()] =
1881 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
Chris Lattner798b4d52005-09-26 06:52:44 +00001882 return ConstantArray::get(ATy, Elts);
1883 }
1884}
1885
Chris Lattner79c11012005-09-26 04:44:35 +00001886/// CommitValueTo - We have decided that Addr (which satisfies the predicate
1887/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
1888static void CommitValueTo(Constant *Val, Constant *Addr) {
Chris Lattner798b4d52005-09-26 06:52:44 +00001889 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
1890 assert(GV->hasInitializer());
1891 GV->setInitializer(Val);
1892 return;
1893 }
1894
1895 ConstantExpr *CE = cast<ConstantExpr>(Addr);
1896 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1897
1898 Constant *Init = GV->getInitializer();
1899 Init = EvaluateStoreInto(Init, Val, CE, 2);
1900 GV->setInitializer(Init);
Chris Lattner79c11012005-09-26 04:44:35 +00001901}
1902
Chris Lattner562a0552005-09-26 05:16:34 +00001903/// ComputeLoadResult - Return the value that would be computed by a load from
1904/// P after the stores reflected by 'memory' have been performed. If we can't
1905/// decide, return null.
Chris Lattner04de1cf2005-09-26 05:15:37 +00001906static Constant *ComputeLoadResult(Constant *P,
1907 const std::map<Constant*, Constant*> &Memory) {
1908 // If this memory location has been recently stored, use the stored value: it
1909 // is the most up-to-date.
1910 std::map<Constant*, Constant*>::const_iterator I = Memory.find(P);
1911 if (I != Memory.end()) return I->second;
1912
1913 // Access it.
1914 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
1915 if (GV->hasInitializer())
1916 return GV->getInitializer();
1917 return 0;
Chris Lattner04de1cf2005-09-26 05:15:37 +00001918 }
Chris Lattner798b4d52005-09-26 06:52:44 +00001919
1920 // Handle a constantexpr getelementptr.
1921 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
1922 if (CE->getOpcode() == Instruction::GetElementPtr &&
1923 isa<GlobalVariable>(CE->getOperand(0))) {
1924 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1925 if (GV->hasInitializer())
1926 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1927 }
1928
1929 return 0; // don't know how to evaluate.
Chris Lattner04de1cf2005-09-26 05:15:37 +00001930}
1931
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001932/// EvaluateFunction - Evaluate a call to function F, returning true if
1933/// successful, false if we can't evaluate it. ActualArgs contains the formal
1934/// arguments for the function.
Chris Lattnercd271422005-09-27 04:45:34 +00001935static bool EvaluateFunction(Function *F, Constant *&RetVal,
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001936 const std::vector<Constant*> &ActualArgs,
1937 std::vector<Function*> &CallStack,
1938 std::map<Constant*, Constant*> &MutatedMemory,
1939 std::vector<GlobalVariable*> &AllocaTmps) {
Chris Lattnercd271422005-09-27 04:45:34 +00001940 // Check to see if this function is already executing (recursion). If so,
1941 // bail out. TODO: we might want to accept limited recursion.
1942 if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
1943 return false;
1944
1945 CallStack.push_back(F);
1946
Chris Lattner79c11012005-09-26 04:44:35 +00001947 /// Values - As we compute SSA register values, we store their contents here.
1948 std::map<Value*, Constant*> Values;
Chris Lattnercd271422005-09-27 04:45:34 +00001949
1950 // Initialize arguments to the incoming values specified.
1951 unsigned ArgNo = 0;
1952 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
1953 ++AI, ++ArgNo)
1954 Values[AI] = ActualArgs[ArgNo];
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001955
Chris Lattnercdf98be2005-09-26 04:57:38 +00001956 /// ExecutedBlocks - We only handle non-looping, non-recursive code. As such,
1957 /// we can only evaluate any one basic block at most once. This set keeps
1958 /// track of what we have executed so we can detect recursive cases etc.
1959 std::set<BasicBlock*> ExecutedBlocks;
Chris Lattnera22fdb02005-09-26 17:07:09 +00001960
Chris Lattner79c11012005-09-26 04:44:35 +00001961 // CurInst - The current instruction we're evaluating.
1962 BasicBlock::iterator CurInst = F->begin()->begin();
1963
1964 // This is the main evaluation loop.
1965 while (1) {
1966 Constant *InstResult = 0;
1967
1968 if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00001969 if (SI->isVolatile()) return false; // no volatile accesses.
Chris Lattner79c11012005-09-26 04:44:35 +00001970 Constant *Ptr = getVal(Values, SI->getOperand(1));
1971 if (!isSimpleEnoughPointerToCommit(Ptr))
1972 // If this is too complex for us to commit, reject it.
Chris Lattnercd271422005-09-27 04:45:34 +00001973 return false;
Chris Lattner79c11012005-09-26 04:44:35 +00001974 Constant *Val = getVal(Values, SI->getOperand(0));
1975 MutatedMemory[Ptr] = Val;
1976 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
1977 InstResult = ConstantExpr::get(BO->getOpcode(),
1978 getVal(Values, BO->getOperand(0)),
1979 getVal(Values, BO->getOperand(1)));
Reid Spencere4d87aa2006-12-23 06:05:41 +00001980 } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
1981 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
1982 getVal(Values, CI->getOperand(0)),
1983 getVal(Values, CI->getOperand(1)));
Chris Lattner79c11012005-09-26 04:44:35 +00001984 } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
Chris Lattner9a989f02006-11-30 17:26:08 +00001985 InstResult = ConstantExpr::getCast(CI->getOpcode(),
1986 getVal(Values, CI->getOperand(0)),
Chris Lattner79c11012005-09-26 04:44:35 +00001987 CI->getType());
1988 } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
1989 InstResult = ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)),
1990 getVal(Values, SI->getOperand(1)),
1991 getVal(Values, SI->getOperand(2)));
Chris Lattner04de1cf2005-09-26 05:15:37 +00001992 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
1993 Constant *P = getVal(Values, GEP->getOperand(0));
Chris Lattner55eb1c42007-01-31 04:40:53 +00001994 SmallVector<Constant*, 8> GEPOps;
Chris Lattner04de1cf2005-09-26 05:15:37 +00001995 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
1996 GEPOps.push_back(getVal(Values, GEP->getOperand(i)));
Chris Lattner55eb1c42007-01-31 04:40:53 +00001997 InstResult = ConstantExpr::getGetElementPtr(P, &GEPOps[0], GEPOps.size());
Chris Lattner04de1cf2005-09-26 05:15:37 +00001998 } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00001999 if (LI->isVolatile()) return false; // no volatile accesses.
Chris Lattner04de1cf2005-09-26 05:15:37 +00002000 InstResult = ComputeLoadResult(getVal(Values, LI->getOperand(0)),
2001 MutatedMemory);
Chris Lattnercd271422005-09-27 04:45:34 +00002002 if (InstResult == 0) return false; // Could not evaluate load.
Chris Lattnera22fdb02005-09-26 17:07:09 +00002003 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00002004 if (AI->isArrayAllocation()) return false; // Cannot handle array allocs.
Chris Lattnera22fdb02005-09-26 17:07:09 +00002005 const Type *Ty = AI->getType()->getElementType();
2006 AllocaTmps.push_back(new GlobalVariable(Ty, false,
2007 GlobalValue::InternalLinkage,
2008 UndefValue::get(Ty),
2009 AI->getName()));
Chris Lattnercd271422005-09-27 04:45:34 +00002010 InstResult = AllocaTmps.back();
2011 } else if (CallInst *CI = dyn_cast<CallInst>(CurInst)) {
Chris Lattner7cd580f2006-07-07 21:37:01 +00002012 // Cannot handle inline asm.
2013 if (isa<InlineAsm>(CI->getOperand(0))) return false;
2014
Chris Lattnercd271422005-09-27 04:45:34 +00002015 // Resolve function pointers.
2016 Function *Callee = dyn_cast<Function>(getVal(Values, CI->getOperand(0)));
2017 if (!Callee) return false; // Cannot resolve.
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00002018
Chris Lattnercd271422005-09-27 04:45:34 +00002019 std::vector<Constant*> Formals;
2020 for (unsigned i = 1, e = CI->getNumOperands(); i != e; ++i)
2021 Formals.push_back(getVal(Values, CI->getOperand(i)));
Chris Lattnercd271422005-09-27 04:45:34 +00002022
Reid Spencer5cbf9852007-01-30 20:08:39 +00002023 if (Callee->isDeclaration()) {
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00002024 // If this is a function we can constant fold, do it.
Chris Lattner6c1f5652007-01-30 23:14:52 +00002025 if (Constant *C = ConstantFoldCall(Callee, &Formals[0],
2026 Formals.size())) {
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00002027 InstResult = C;
2028 } else {
2029 return false;
2030 }
2031 } else {
2032 if (Callee->getFunctionType()->isVarArg())
2033 return false;
2034
2035 Constant *RetVal;
2036
2037 // Execute the call, if successful, use the return value.
2038 if (!EvaluateFunction(Callee, RetVal, Formals, CallStack,
2039 MutatedMemory, AllocaTmps))
2040 return false;
2041 InstResult = RetVal;
2042 }
Reid Spencer3ed469c2006-11-02 20:25:50 +00002043 } else if (isa<TerminatorInst>(CurInst)) {
Chris Lattnercdf98be2005-09-26 04:57:38 +00002044 BasicBlock *NewBB = 0;
2045 if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
2046 if (BI->isUnconditional()) {
2047 NewBB = BI->getSuccessor(0);
2048 } else {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002049 ConstantInt *Cond =
2050 dyn_cast<ConstantInt>(getVal(Values, BI->getCondition()));
Chris Lattner97d1fad2007-01-12 18:30:11 +00002051 if (!Cond) return false; // Cannot determine.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00002052
Reid Spencer579dca12007-01-12 04:24:46 +00002053 NewBB = BI->getSuccessor(!Cond->getZExtValue());
Chris Lattnercdf98be2005-09-26 04:57:38 +00002054 }
2055 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
2056 ConstantInt *Val =
2057 dyn_cast<ConstantInt>(getVal(Values, SI->getCondition()));
Chris Lattnercd271422005-09-27 04:45:34 +00002058 if (!Val) return false; // Cannot determine.
Chris Lattnercdf98be2005-09-26 04:57:38 +00002059 NewBB = SI->getSuccessor(SI->findCaseValue(Val));
2060 } else if (ReturnInst *RI = dyn_cast<ReturnInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00002061 if (RI->getNumOperands())
2062 RetVal = getVal(Values, RI->getOperand(0));
2063
2064 CallStack.pop_back(); // return from fn.
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002065 return true; // We succeeded at evaluating this ctor!
Chris Lattnercdf98be2005-09-26 04:57:38 +00002066 } else {
Chris Lattnercd271422005-09-27 04:45:34 +00002067 // invoke, unwind, unreachable.
2068 return false; // Cannot handle this terminator.
Chris Lattnercdf98be2005-09-26 04:57:38 +00002069 }
2070
2071 // Okay, we succeeded in evaluating this control flow. See if we have
Chris Lattnercd271422005-09-27 04:45:34 +00002072 // executed the new block before. If so, we have a looping function,
2073 // which we cannot evaluate in reasonable time.
Chris Lattnercdf98be2005-09-26 04:57:38 +00002074 if (!ExecutedBlocks.insert(NewBB).second)
Chris Lattnercd271422005-09-27 04:45:34 +00002075 return false; // looped!
Chris Lattnercdf98be2005-09-26 04:57:38 +00002076
2077 // Okay, we have never been in this block before. Check to see if there
2078 // are any PHI nodes. If so, evaluate them with information about where
2079 // we came from.
2080 BasicBlock *OldBB = CurInst->getParent();
2081 CurInst = NewBB->begin();
2082 PHINode *PN;
2083 for (; (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
2084 Values[PN] = getVal(Values, PN->getIncomingValueForBlock(OldBB));
2085
2086 // Do NOT increment CurInst. We know that the terminator had no value.
2087 continue;
Chris Lattner79c11012005-09-26 04:44:35 +00002088 } else {
Chris Lattner79c11012005-09-26 04:44:35 +00002089 // Did not know how to evaluate this!
Chris Lattnercd271422005-09-27 04:45:34 +00002090 return false;
Chris Lattner79c11012005-09-26 04:44:35 +00002091 }
2092
2093 if (!CurInst->use_empty())
2094 Values[CurInst] = InstResult;
2095
2096 // Advance program counter.
2097 ++CurInst;
2098 }
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002099}
2100
2101/// EvaluateStaticConstructor - Evaluate static constructors in the function, if
2102/// we can. Return true if we can, false otherwise.
2103static bool EvaluateStaticConstructor(Function *F) {
2104 /// MutatedMemory - For each store we execute, we update this map. Loads
2105 /// check this to get the most up-to-date value. If evaluation is successful,
2106 /// this state is committed to the process.
2107 std::map<Constant*, Constant*> MutatedMemory;
2108
2109 /// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
2110 /// to represent its body. This vector is needed so we can delete the
2111 /// temporary globals when we are done.
2112 std::vector<GlobalVariable*> AllocaTmps;
2113
2114 /// CallStack - This is used to detect recursion. In pathological situations
2115 /// we could hit exponential behavior, but at least there is nothing
2116 /// unbounded.
2117 std::vector<Function*> CallStack;
2118
2119 // Call the function.
Chris Lattnercd271422005-09-27 04:45:34 +00002120 Constant *RetValDummy;
2121 bool EvalSuccess = EvaluateFunction(F, RetValDummy, std::vector<Constant*>(),
2122 CallStack, MutatedMemory, AllocaTmps);
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002123 if (EvalSuccess) {
Chris Lattnera22fdb02005-09-26 17:07:09 +00002124 // We succeeded at evaluation: commit the result.
Bill Wendling0a81aac2006-11-26 10:02:32 +00002125 DOUT << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
2126 << F->getName() << "' to " << MutatedMemory.size()
2127 << " stores.\n";
Chris Lattnera22fdb02005-09-26 17:07:09 +00002128 for (std::map<Constant*, Constant*>::iterator I = MutatedMemory.begin(),
2129 E = MutatedMemory.end(); I != E; ++I)
2130 CommitValueTo(I->second, I->first);
2131 }
Chris Lattner79c11012005-09-26 04:44:35 +00002132
Chris Lattnera22fdb02005-09-26 17:07:09 +00002133 // At this point, we are done interpreting. If we created any 'alloca'
2134 // temporaries, release them now.
2135 while (!AllocaTmps.empty()) {
2136 GlobalVariable *Tmp = AllocaTmps.back();
2137 AllocaTmps.pop_back();
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002138
Chris Lattnera22fdb02005-09-26 17:07:09 +00002139 // If there are still users of the alloca, the program is doing something
2140 // silly, e.g. storing the address of the alloca somewhere and using it
2141 // later. Since this is undefined, we'll just make it be null.
2142 if (!Tmp->use_empty())
2143 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
2144 delete Tmp;
2145 }
Chris Lattneraae4a1c2005-09-26 07:34:35 +00002146
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002147 return EvalSuccess;
Chris Lattner79c11012005-09-26 04:44:35 +00002148}
2149
Chris Lattnerdb973e62005-09-26 02:31:18 +00002150
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002151
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002152/// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
2153/// Return true if anything changed.
2154bool GlobalOpt::OptimizeGlobalCtorsList(GlobalVariable *&GCL) {
2155 std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
2156 bool MadeChange = false;
2157 if (Ctors.empty()) return false;
2158
2159 // Loop over global ctors, optimizing them when we can.
2160 for (unsigned i = 0; i != Ctors.size(); ++i) {
2161 Function *F = Ctors[i];
2162 // Found a null terminator in the middle of the list, prune off the rest of
2163 // the list.
Chris Lattner7d8e58f2005-09-26 02:19:27 +00002164 if (F == 0) {
2165 if (i != Ctors.size()-1) {
2166 Ctors.resize(i+1);
2167 MadeChange = true;
2168 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002169 break;
2170 }
2171
Chris Lattner79c11012005-09-26 04:44:35 +00002172 // We cannot simplify external ctor functions.
2173 if (F->empty()) continue;
2174
2175 // If we can evaluate the ctor at compile time, do.
2176 if (EvaluateStaticConstructor(F)) {
2177 Ctors.erase(Ctors.begin()+i);
2178 MadeChange = true;
2179 --i;
2180 ++NumCtorsEvaluated;
2181 continue;
2182 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002183 }
2184
2185 if (!MadeChange) return false;
2186
Chris Lattnerdb973e62005-09-26 02:31:18 +00002187 GCL = InstallGlobalCtors(GCL, Ctors);
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002188 return true;
2189}
2190
2191
Chris Lattner7a90b682004-10-07 04:16:33 +00002192bool GlobalOpt::runOnModule(Module &M) {
Chris Lattner079236d2004-02-25 21:34:36 +00002193 bool Changed = false;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002194
2195 // Try to find the llvm.globalctors list.
2196 GlobalVariable *GlobalCtors = FindGlobalCtors(M);
Chris Lattner7a90b682004-10-07 04:16:33 +00002197
Chris Lattner7a90b682004-10-07 04:16:33 +00002198 bool LocalChange = true;
2199 while (LocalChange) {
2200 LocalChange = false;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002201
2202 // Delete functions that are trivially dead, ccc -> fastcc
2203 LocalChange |= OptimizeFunctions(M);
2204
2205 // Optimize global_ctors list.
2206 if (GlobalCtors)
2207 LocalChange |= OptimizeGlobalCtorsList(GlobalCtors);
2208
2209 // Optimize non-address-taken globals.
2210 LocalChange |= OptimizeGlobalVars(M);
Chris Lattner7a90b682004-10-07 04:16:33 +00002211 Changed |= LocalChange;
2212 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002213
2214 // TODO: Move all global ctors functions to the end of the module for code
2215 // layout.
2216
Chris Lattner079236d2004-02-25 21:34:36 +00002217 return Changed;
2218}