blob: 4b017507f09fc3209698346414ee1f8e1985081f [file] [log] [blame]
Chris Lattner7a90b682004-10-07 04:16:33 +00001//===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Chris Lattner079236d2004-02-25 21:34:36 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
Chris Lattner079236d2004-02-25 21:34:36 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattner7a90b682004-10-07 04:16:33 +000010// This pass transforms simple global variables that never have their address
11// taken. If obviously true, it marks read/write globals as constant, deletes
12// variables only stored to, etc.
Chris Lattner079236d2004-02-25 21:34:36 +000013//
14//===----------------------------------------------------------------------===//
15
Chris Lattner7a90b682004-10-07 04:16:33 +000016#define DEBUG_TYPE "globalopt"
Chris Lattner079236d2004-02-25 21:34:36 +000017#include "llvm/Transforms/IPO.h"
Chris Lattnerfb217ad2005-05-08 22:18:06 +000018#include "llvm/CallingConv.h"
Chris Lattner079236d2004-02-25 21:34:36 +000019#include "llvm/Constants.h"
Chris Lattner7a90b682004-10-07 04:16:33 +000020#include "llvm/DerivedTypes.h"
Chris Lattner7d90a272004-02-27 18:09:25 +000021#include "llvm/Instructions.h"
Chris Lattner35c81b02005-02-27 18:58:52 +000022#include "llvm/IntrinsicInst.h"
Chris Lattner079236d2004-02-25 21:34:36 +000023#include "llvm/Module.h"
24#include "llvm/Pass.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000025#include "llvm/Analysis/ConstantFolding.h"
Chris Lattner30ba5692004-10-11 05:54:41 +000026#include "llvm/Target/TargetData.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000027#include "llvm/Support/Compiler.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000028#include "llvm/Support/Debug.h"
Chris Lattner81686182007-09-13 16:30:19 +000029#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner55eb1c42007-01-31 04:40:53 +000030#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/ADT/Statistic.h"
Chris Lattner670c8892004-10-08 17:32:09 +000032#include "llvm/ADT/StringExtras.h"
Chris Lattnere47ba742004-10-06 20:57:02 +000033#include <algorithm>
Chris Lattnerdac58ad2006-01-22 23:32:06 +000034#include <set>
Chris Lattner079236d2004-02-25 21:34:36 +000035using namespace llvm;
36
Chris Lattner86453c52006-12-19 22:09:18 +000037STATISTIC(NumMarked , "Number of globals marked constant");
38STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
39STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
40STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
41STATISTIC(NumDeleted , "Number of globals deleted");
42STATISTIC(NumFnDeleted , "Number of functions deleted");
43STATISTIC(NumGlobUses , "Number of global uses devirtualized");
44STATISTIC(NumLocalized , "Number of globals localized");
45STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
46STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
47STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Chris Lattner079236d2004-02-25 21:34:36 +000048
Chris Lattner86453c52006-12-19 22:09:18 +000049namespace {
Reid Spencer9133fe22007-02-05 23:32:05 +000050 struct VISIBILITY_HIDDEN GlobalOpt : public ModulePass {
Chris Lattner30ba5692004-10-11 05:54:41 +000051 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
52 AU.addRequired<TargetData>();
53 }
Nick Lewyckyecd94c82007-05-06 13:37:16 +000054 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000055 GlobalOpt() : ModulePass((intptr_t)&ID) {}
Misha Brukmanfd939082005-04-21 23:48:37 +000056
Chris Lattnerb12914b2004-09-20 04:48:05 +000057 bool runOnModule(Module &M);
Chris Lattner30ba5692004-10-11 05:54:41 +000058
59 private:
Chris Lattnerb1ab4582005-09-26 01:43:45 +000060 GlobalVariable *FindGlobalCtors(Module &M);
61 bool OptimizeFunctions(Module &M);
62 bool OptimizeGlobalVars(Module &M);
63 bool OptimizeGlobalCtorsList(GlobalVariable *&GCL);
Chris Lattner7f8897f2006-08-27 22:42:52 +000064 bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
Chris Lattner079236d2004-02-25 21:34:36 +000065 };
66
Devang Patel19974732007-05-03 01:11:54 +000067 char GlobalOpt::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000068 RegisterPass<GlobalOpt> X("globalopt", "Global Variable Optimizer");
Chris Lattner079236d2004-02-25 21:34:36 +000069}
70
Chris Lattner7a90b682004-10-07 04:16:33 +000071ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
Chris Lattner079236d2004-02-25 21:34:36 +000072
Chris Lattner7a90b682004-10-07 04:16:33 +000073/// GlobalStatus - As we analyze each global, keep track of some information
74/// about it. If we find out that the address of the global is taken, none of
Chris Lattnercf4d2a52004-10-07 21:30:30 +000075/// this info will be accurate.
Reid Spencer9133fe22007-02-05 23:32:05 +000076struct VISIBILITY_HIDDEN GlobalStatus {
Chris Lattnercf4d2a52004-10-07 21:30:30 +000077 /// isLoaded - True if the global is ever loaded. If the global isn't ever
78 /// loaded it can be deleted.
Chris Lattner7a90b682004-10-07 04:16:33 +000079 bool isLoaded;
Chris Lattnercf4d2a52004-10-07 21:30:30 +000080
81 /// StoredType - Keep track of what stores to the global look like.
82 ///
Chris Lattner7a90b682004-10-07 04:16:33 +000083 enum StoredType {
Chris Lattnercf4d2a52004-10-07 21:30:30 +000084 /// NotStored - There is no store to this global. It can thus be marked
85 /// constant.
86 NotStored,
87
88 /// isInitializerStored - This global is stored to, but the only thing
89 /// stored is the constant it was initialized with. This is only tracked
90 /// for scalar globals.
91 isInitializerStored,
92
93 /// isStoredOnce - This global is stored to, but only its initializer and
94 /// one other value is ever stored to it. If this global isStoredOnce, we
95 /// track the value stored to it in StoredOnceValue below. This is only
96 /// tracked for scalar globals.
97 isStoredOnce,
98
99 /// isStored - This global is stored to by multiple values or something else
100 /// that we cannot track.
101 isStored
Chris Lattner7a90b682004-10-07 04:16:33 +0000102 } StoredType;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000103
104 /// StoredOnceValue - If only one value (besides the initializer constant) is
105 /// ever stored to this global, keep track of what value it is.
106 Value *StoredOnceValue;
107
Chris Lattner25de4e52006-11-01 18:03:33 +0000108 /// AccessingFunction/HasMultipleAccessingFunctions - These start out
109 /// null/false. When the first accessing function is noticed, it is recorded.
110 /// When a second different accessing function is noticed,
111 /// HasMultipleAccessingFunctions is set to true.
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000112 Function *AccessingFunction;
113 bool HasMultipleAccessingFunctions;
114
Chris Lattner25de4e52006-11-01 18:03:33 +0000115 /// HasNonInstructionUser - Set to true if this global has a user that is not
116 /// an instruction (e.g. a constant expr or GV initializer).
Chris Lattner553ca522005-06-15 21:11:48 +0000117 bool HasNonInstructionUser;
118
Chris Lattner25de4e52006-11-01 18:03:33 +0000119 /// HasPHIUser - Set to true if this global has a user that is a PHI node.
120 bool HasPHIUser;
121
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000122 /// isNotSuitableForSRA - Keep track of whether any SRA preventing users of
123 /// the global exist. Such users include GEP instruction with variable
124 /// indexes, and non-gep/load/store users like constant expr casts.
Chris Lattner7a90b682004-10-07 04:16:33 +0000125 bool isNotSuitableForSRA;
Chris Lattner9ce30002004-07-20 03:58:07 +0000126
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000127 GlobalStatus() : isLoaded(false), StoredType(NotStored), StoredOnceValue(0),
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000128 AccessingFunction(0), HasMultipleAccessingFunctions(false),
Chris Lattner25de4e52006-11-01 18:03:33 +0000129 HasNonInstructionUser(false), HasPHIUser(false),
130 isNotSuitableForSRA(false) {}
Chris Lattner7a90b682004-10-07 04:16:33 +0000131};
Chris Lattnere47ba742004-10-06 20:57:02 +0000132
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000133
134
135/// ConstantIsDead - Return true if the specified constant is (transitively)
136/// dead. The constant may be used by other constants (e.g. constant arrays and
137/// constant exprs) as long as they are dead, but it cannot be used by anything
138/// else.
139static bool ConstantIsDead(Constant *C) {
140 if (isa<GlobalValue>(C)) return false;
141
142 for (Value::use_iterator UI = C->use_begin(), E = C->use_end(); UI != E; ++UI)
143 if (Constant *CU = dyn_cast<Constant>(*UI)) {
144 if (!ConstantIsDead(CU)) return false;
145 } else
146 return false;
147 return true;
148}
149
150
Chris Lattner7a90b682004-10-07 04:16:33 +0000151/// AnalyzeGlobal - Look at all uses of the global and fill in the GlobalStatus
152/// structure. If the global has its address taken, return true to indicate we
153/// can't do anything with it.
Chris Lattner079236d2004-02-25 21:34:36 +0000154///
Chris Lattner7a90b682004-10-07 04:16:33 +0000155static bool AnalyzeGlobal(Value *V, GlobalStatus &GS,
156 std::set<PHINode*> &PHIUsers) {
Chris Lattner079236d2004-02-25 21:34:36 +0000157 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
Chris Lattner96940cb2004-07-18 19:56:20 +0000158 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) {
Chris Lattner553ca522005-06-15 21:11:48 +0000159 GS.HasNonInstructionUser = true;
160
Chris Lattner7a90b682004-10-07 04:16:33 +0000161 if (AnalyzeGlobal(CE, GS, PHIUsers)) return true;
162 if (CE->getOpcode() != Instruction::GetElementPtr)
163 GS.isNotSuitableForSRA = true;
Chris Lattner670c8892004-10-08 17:32:09 +0000164 else if (!GS.isNotSuitableForSRA) {
165 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
166 // don't like < 3 operand CE's, and we don't like non-constant integer
167 // indices.
168 if (CE->getNumOperands() < 3 || !CE->getOperand(1)->isNullValue())
169 GS.isNotSuitableForSRA = true;
170 else {
171 for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
172 if (!isa<ConstantInt>(CE->getOperand(i))) {
173 GS.isNotSuitableForSRA = true;
174 break;
175 }
176 }
177 }
178
Chris Lattner079236d2004-02-25 21:34:36 +0000179 } else if (Instruction *I = dyn_cast<Instruction>(*UI)) {
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +0000180 if (!GS.HasMultipleAccessingFunctions) {
181 Function *F = I->getParent()->getParent();
182 if (GS.AccessingFunction == 0)
183 GS.AccessingFunction = F;
184 else if (GS.AccessingFunction != F)
185 GS.HasMultipleAccessingFunctions = true;
186 }
Chris Lattner7a90b682004-10-07 04:16:33 +0000187 if (isa<LoadInst>(I)) {
188 GS.isLoaded = true;
189 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Chris Lattner36025492004-10-07 06:01:25 +0000190 // Don't allow a store OF the address, only stores TO the address.
191 if (SI->getOperand(0) == V) return true;
192
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000193 // If this is a direct store to the global (i.e., the global is a scalar
194 // value, not an aggregate), keep more specific information about
195 // stores.
196 if (GS.StoredType != GlobalStatus::isStored)
197 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(SI->getOperand(1))){
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000198 Value *StoredVal = SI->getOperand(0);
199 if (StoredVal == GV->getInitializer()) {
200 if (GS.StoredType < GlobalStatus::isInitializerStored)
201 GS.StoredType = GlobalStatus::isInitializerStored;
202 } else if (isa<LoadInst>(StoredVal) &&
203 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
204 // G = G
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000205 if (GS.StoredType < GlobalStatus::isInitializerStored)
206 GS.StoredType = GlobalStatus::isInitializerStored;
207 } else if (GS.StoredType < GlobalStatus::isStoredOnce) {
208 GS.StoredType = GlobalStatus::isStoredOnce;
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000209 GS.StoredOnceValue = StoredVal;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000210 } else if (GS.StoredType == GlobalStatus::isStoredOnce &&
Chris Lattnerbd38edf2004-11-14 20:50:30 +0000211 GS.StoredOnceValue == StoredVal) {
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000212 // noop.
213 } else {
214 GS.StoredType = GlobalStatus::isStored;
215 }
216 } else {
Chris Lattner7a90b682004-10-07 04:16:33 +0000217 GS.StoredType = GlobalStatus::isStored;
Chris Lattnercf4d2a52004-10-07 21:30:30 +0000218 }
Chris Lattner35c81b02005-02-27 18:58:52 +0000219 } else if (isa<GetElementPtrInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000220 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner30ba5692004-10-11 05:54:41 +0000221
222 // If the first two indices are constants, this can be SRA'd.
223 if (isa<GlobalVariable>(I->getOperand(0))) {
224 if (I->getNumOperands() < 3 || !isa<Constant>(I->getOperand(1)) ||
Misha Brukmanfd939082005-04-21 23:48:37 +0000225 !cast<Constant>(I->getOperand(1))->isNullValue() ||
Chris Lattner30ba5692004-10-11 05:54:41 +0000226 !isa<ConstantInt>(I->getOperand(2)))
227 GS.isNotSuitableForSRA = true;
228 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(I->getOperand(0))){
229 if (CE->getOpcode() != Instruction::GetElementPtr ||
230 CE->getNumOperands() < 3 || I->getNumOperands() < 2 ||
231 !isa<Constant>(I->getOperand(0)) ||
232 !cast<Constant>(I->getOperand(0))->isNullValue())
233 GS.isNotSuitableForSRA = true;
234 } else {
235 GS.isNotSuitableForSRA = true;
236 }
Chris Lattner35c81b02005-02-27 18:58:52 +0000237 } else if (isa<SelectInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000238 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
239 GS.isNotSuitableForSRA = true;
240 } else if (PHINode *PN = dyn_cast<PHINode>(I)) {
241 // PHI nodes we can check just like select or GEP instructions, but we
242 // have to be careful about infinite recursion.
243 if (PHIUsers.insert(PN).second) // Not already visited.
244 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
245 GS.isNotSuitableForSRA = true;
Chris Lattner25de4e52006-11-01 18:03:33 +0000246 GS.HasPHIUser = true;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000247 } else if (isa<CmpInst>(I)) {
Chris Lattner7a90b682004-10-07 04:16:33 +0000248 GS.isNotSuitableForSRA = true;
Chris Lattner35c81b02005-02-27 18:58:52 +0000249 } else if (isa<MemCpyInst>(I) || isa<MemMoveInst>(I)) {
250 if (I->getOperand(1) == V)
251 GS.StoredType = GlobalStatus::isStored;
252 if (I->getOperand(2) == V)
253 GS.isLoaded = true;
254 GS.isNotSuitableForSRA = true;
255 } else if (isa<MemSetInst>(I)) {
256 assert(I->getOperand(1) == V && "Memset only takes one pointer!");
257 GS.StoredType = GlobalStatus::isStored;
258 GS.isNotSuitableForSRA = true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000259 } else {
260 return true; // Any other non-load instruction might take address!
Chris Lattner9ce30002004-07-20 03:58:07 +0000261 }
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000262 } else if (Constant *C = dyn_cast<Constant>(*UI)) {
Chris Lattner553ca522005-06-15 21:11:48 +0000263 GS.HasNonInstructionUser = true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000264 // We might have a dead and dangling constant hanging off of here.
265 if (!ConstantIsDead(C))
266 return true;
Chris Lattner079236d2004-02-25 21:34:36 +0000267 } else {
Chris Lattner553ca522005-06-15 21:11:48 +0000268 GS.HasNonInstructionUser = true;
269 // Otherwise must be some other user.
Chris Lattner079236d2004-02-25 21:34:36 +0000270 return true;
271 }
272
273 return false;
274}
275
Chris Lattner670c8892004-10-08 17:32:09 +0000276static Constant *getAggregateConstantElement(Constant *Agg, Constant *Idx) {
277 ConstantInt *CI = dyn_cast<ConstantInt>(Idx);
278 if (!CI) return 0;
Reid Spencerb83eb642006-10-20 07:07:24 +0000279 unsigned IdxV = CI->getZExtValue();
Chris Lattner7a90b682004-10-07 04:16:33 +0000280
Chris Lattner670c8892004-10-08 17:32:09 +0000281 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Agg)) {
282 if (IdxV < CS->getNumOperands()) return CS->getOperand(IdxV);
283 } else if (ConstantArray *CA = dyn_cast<ConstantArray>(Agg)) {
284 if (IdxV < CA->getNumOperands()) return CA->getOperand(IdxV);
Reid Spencer9d6565a2007-02-15 02:26:10 +0000285 } else if (ConstantVector *CP = dyn_cast<ConstantVector>(Agg)) {
Chris Lattner670c8892004-10-08 17:32:09 +0000286 if (IdxV < CP->getNumOperands()) return CP->getOperand(IdxV);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000287 } else if (isa<ConstantAggregateZero>(Agg)) {
Chris Lattner670c8892004-10-08 17:32:09 +0000288 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
289 if (IdxV < STy->getNumElements())
290 return Constant::getNullValue(STy->getElementType(IdxV));
291 } else if (const SequentialType *STy =
292 dyn_cast<SequentialType>(Agg->getType())) {
293 return Constant::getNullValue(STy->getElementType());
294 }
Chris Lattner7a7ed022004-10-16 18:09:00 +0000295 } else if (isa<UndefValue>(Agg)) {
296 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
297 if (IdxV < STy->getNumElements())
298 return UndefValue::get(STy->getElementType(IdxV));
299 } else if (const SequentialType *STy =
300 dyn_cast<SequentialType>(Agg->getType())) {
301 return UndefValue::get(STy->getElementType());
302 }
Chris Lattner670c8892004-10-08 17:32:09 +0000303 }
304 return 0;
305}
Chris Lattner7a90b682004-10-07 04:16:33 +0000306
Chris Lattner7a90b682004-10-07 04:16:33 +0000307
Chris Lattnere47ba742004-10-06 20:57:02 +0000308/// CleanupConstantGlobalUsers - We just marked GV constant. Loop over all
309/// users of the global, cleaning up the obvious ones. This is largely just a
Chris Lattner031955d2004-10-10 16:43:46 +0000310/// quick scan over the use list to clean up the easy and obvious cruft. This
311/// returns true if it made a change.
312static bool CleanupConstantGlobalUsers(Value *V, Constant *Init) {
313 bool Changed = false;
Chris Lattner7a90b682004-10-07 04:16:33 +0000314 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;) {
315 User *U = *UI++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000316
Chris Lattner7a90b682004-10-07 04:16:33 +0000317 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner35c81b02005-02-27 18:58:52 +0000318 if (Init) {
319 // Replace the load with the initializer.
320 LI->replaceAllUsesWith(Init);
321 LI->eraseFromParent();
322 Changed = true;
323 }
Chris Lattner7a90b682004-10-07 04:16:33 +0000324 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
Chris Lattnere47ba742004-10-06 20:57:02 +0000325 // Store must be unreachable or storing Init into the global.
Chris Lattner7a7ed022004-10-16 18:09:00 +0000326 SI->eraseFromParent();
Chris Lattner031955d2004-10-10 16:43:46 +0000327 Changed = true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000328 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
329 if (CE->getOpcode() == Instruction::GetElementPtr) {
Chris Lattneraae4a1c2005-09-26 07:34:35 +0000330 Constant *SubInit = 0;
331 if (Init)
332 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner35c81b02005-02-27 18:58:52 +0000333 Changed |= CleanupConstantGlobalUsers(CE, SubInit);
Reid Spencer3da59db2006-11-27 01:05:10 +0000334 } else if (CE->getOpcode() == Instruction::BitCast &&
Chris Lattner35c81b02005-02-27 18:58:52 +0000335 isa<PointerType>(CE->getType())) {
336 // Pointer cast, delete any stores and memsets to the global.
337 Changed |= CleanupConstantGlobalUsers(CE, 0);
338 }
339
340 if (CE->use_empty()) {
341 CE->destroyConstant();
342 Changed = true;
Chris Lattner7a90b682004-10-07 04:16:33 +0000343 }
344 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner7b52fe72007-11-09 17:33:02 +0000345 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
346 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
347 // and will invalidate our notion of what Init is.
Chris Lattner19450242007-11-13 21:46:23 +0000348 Constant *SubInit = 0;
Chris Lattner7b52fe72007-11-09 17:33:02 +0000349 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
350 ConstantExpr *CE =
351 dyn_cast_or_null<ConstantExpr>(ConstantFoldInstruction(GEP));
352 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Chris Lattner19450242007-11-13 21:46:23 +0000353 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner7b52fe72007-11-09 17:33:02 +0000354 }
Chris Lattner19450242007-11-13 21:46:23 +0000355 Changed |= CleanupConstantGlobalUsers(GEP, SubInit);
Chris Lattnerc4d81b02004-10-10 16:47:33 +0000356
Chris Lattner031955d2004-10-10 16:43:46 +0000357 if (GEP->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000358 GEP->eraseFromParent();
Chris Lattner031955d2004-10-10 16:43:46 +0000359 Changed = true;
360 }
Chris Lattner35c81b02005-02-27 18:58:52 +0000361 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
362 if (MI->getRawDest() == V) {
363 MI->eraseFromParent();
364 Changed = true;
365 }
366
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000367 } else if (Constant *C = dyn_cast<Constant>(U)) {
368 // If we have a chain of dead constantexprs or other things dangling from
369 // us, and if they are all dead, nuke them without remorse.
370 if (ConstantIsDead(C)) {
371 C->destroyConstant();
Chris Lattner35c81b02005-02-27 18:58:52 +0000372 // This could have invalidated UI, start over from scratch.
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000373 CleanupConstantGlobalUsers(V, Init);
Chris Lattner031955d2004-10-10 16:43:46 +0000374 return true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +0000375 }
Chris Lattnere47ba742004-10-06 20:57:02 +0000376 }
377 }
Chris Lattner031955d2004-10-10 16:43:46 +0000378 return Changed;
Chris Lattnere47ba742004-10-06 20:57:02 +0000379}
380
Chris Lattner670c8892004-10-08 17:32:09 +0000381/// SRAGlobal - Perform scalar replacement of aggregates on the specified global
382/// variable. This opens the door for other optimizations by exposing the
383/// behavior of the program in a more fine-grained way. We have determined that
384/// this transformation is safe already. We return the first global variable we
385/// insert so that the caller can reprocess it.
386static GlobalVariable *SRAGlobal(GlobalVariable *GV) {
387 assert(GV->hasInternalLinkage() && !GV->isConstant());
388 Constant *Init = GV->getInitializer();
389 const Type *Ty = Init->getType();
Misha Brukmanfd939082005-04-21 23:48:37 +0000390
Chris Lattner670c8892004-10-08 17:32:09 +0000391 std::vector<GlobalVariable*> NewGlobals;
392 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
393
394 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
395 NewGlobals.reserve(STy->getNumElements());
396 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
397 Constant *In = getAggregateConstantElement(Init,
Reid Spencerc5b206b2006-12-31 05:48:39 +0000398 ConstantInt::get(Type::Int32Ty, i));
Chris Lattner670c8892004-10-08 17:32:09 +0000399 assert(In && "Couldn't get element of initializer?");
400 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
401 GlobalVariable::InternalLinkage,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000402 In, GV->getName()+"."+utostr(i),
403 (Module *)NULL,
404 GV->isThreadLocal());
Chris Lattner670c8892004-10-08 17:32:09 +0000405 Globals.insert(GV, NGV);
406 NewGlobals.push_back(NGV);
407 }
408 } else if (const SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
409 unsigned NumElements = 0;
410 if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
411 NumElements = ATy->getNumElements();
Reid Spencer9d6565a2007-02-15 02:26:10 +0000412 else if (const VectorType *PTy = dyn_cast<VectorType>(STy))
Chris Lattner670c8892004-10-08 17:32:09 +0000413 NumElements = PTy->getNumElements();
414 else
415 assert(0 && "Unknown aggregate sequential type!");
416
Chris Lattner1f21ef12005-02-23 16:53:04 +0000417 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Chris Lattnerd514d822005-02-01 01:23:31 +0000418 return 0; // It's not worth it.
Chris Lattner670c8892004-10-08 17:32:09 +0000419 NewGlobals.reserve(NumElements);
420 for (unsigned i = 0, e = NumElements; i != e; ++i) {
421 Constant *In = getAggregateConstantElement(Init,
Reid Spencerc5b206b2006-12-31 05:48:39 +0000422 ConstantInt::get(Type::Int32Ty, i));
Chris Lattner670c8892004-10-08 17:32:09 +0000423 assert(In && "Couldn't get element of initializer?");
424
425 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
426 GlobalVariable::InternalLinkage,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000427 In, GV->getName()+"."+utostr(i),
428 (Module *)NULL,
429 GV->isThreadLocal());
Chris Lattner670c8892004-10-08 17:32:09 +0000430 Globals.insert(GV, NGV);
431 NewGlobals.push_back(NGV);
432 }
433 }
434
435 if (NewGlobals.empty())
436 return 0;
437
Bill Wendling0a81aac2006-11-26 10:02:32 +0000438 DOUT << "PERFORMING GLOBAL SRA ON: " << *GV;
Chris Lattner30ba5692004-10-11 05:54:41 +0000439
Reid Spencerc5b206b2006-12-31 05:48:39 +0000440 Constant *NullInt = Constant::getNullValue(Type::Int32Ty);
Chris Lattner670c8892004-10-08 17:32:09 +0000441
442 // Loop over all of the uses of the global, replacing the constantexpr geps,
443 // with smaller constantexpr geps or direct references.
444 while (!GV->use_empty()) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000445 User *GEP = GV->use_back();
446 assert(((isa<ConstantExpr>(GEP) &&
447 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
448 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanfd939082005-04-21 23:48:37 +0000449
Chris Lattner670c8892004-10-08 17:32:09 +0000450 // Ignore the 1th operand, which has to be zero or else the program is quite
451 // broken (undefined). Get the 2nd operand, which is the structure or array
452 // index.
Reid Spencerb83eb642006-10-20 07:07:24 +0000453 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattner670c8892004-10-08 17:32:09 +0000454 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
455
Chris Lattner30ba5692004-10-11 05:54:41 +0000456 Value *NewPtr = NewGlobals[Val];
Chris Lattner670c8892004-10-08 17:32:09 +0000457
458 // Form a shorter GEP if needed.
Chris Lattner30ba5692004-10-11 05:54:41 +0000459 if (GEP->getNumOperands() > 3)
460 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattner55eb1c42007-01-31 04:40:53 +0000461 SmallVector<Constant*, 8> Idxs;
Chris Lattner30ba5692004-10-11 05:54:41 +0000462 Idxs.push_back(NullInt);
463 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
464 Idxs.push_back(CE->getOperand(i));
Chris Lattner55eb1c42007-01-31 04:40:53 +0000465 NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr),
466 &Idxs[0], Idxs.size());
Chris Lattner30ba5692004-10-11 05:54:41 +0000467 } else {
468 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner699d1442007-01-31 19:59:55 +0000469 SmallVector<Value*, 8> Idxs;
Chris Lattner30ba5692004-10-11 05:54:41 +0000470 Idxs.push_back(NullInt);
471 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
472 Idxs.push_back(GEPI->getOperand(i));
David Greeneb8f74792007-09-04 15:46:09 +0000473 NewPtr = new GetElementPtrInst(NewPtr, Idxs.begin(), Idxs.end(),
Chris Lattner30ba5692004-10-11 05:54:41 +0000474 GEPI->getName()+"."+utostr(Val), GEPI);
475 }
476 GEP->replaceAllUsesWith(NewPtr);
477
478 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner7a7ed022004-10-16 18:09:00 +0000479 GEPI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000480 else
481 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattner670c8892004-10-08 17:32:09 +0000482 }
483
Chris Lattnere40e2d12004-10-08 20:25:55 +0000484 // Delete the old global, now that it is dead.
485 Globals.erase(GV);
Chris Lattner670c8892004-10-08 17:32:09 +0000486 ++NumSRA;
Chris Lattner30ba5692004-10-11 05:54:41 +0000487
488 // Loop over the new globals array deleting any globals that are obviously
489 // dead. This can arise due to scalarization of a structure or an array that
490 // has elements that are dead.
491 unsigned FirstGlobal = 0;
492 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
493 if (NewGlobals[i]->use_empty()) {
494 Globals.erase(NewGlobals[i]);
495 if (FirstGlobal == i) ++FirstGlobal;
496 }
497
498 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : 0;
Chris Lattner670c8892004-10-08 17:32:09 +0000499}
500
Chris Lattner9b34a612004-10-09 21:48:45 +0000501/// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
Chris Lattner81686182007-09-13 16:30:19 +0000502/// value will trap if the value is dynamically null. PHIs keeps track of any
503/// phi nodes we've seen to avoid reprocessing them.
504static bool AllUsesOfValueWillTrapIfNull(Value *V,
505 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner9b34a612004-10-09 21:48:45 +0000506 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
507 if (isa<LoadInst>(*UI)) {
508 // Will trap.
509 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
510 if (SI->getOperand(0) == V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000511 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000512 return false; // Storing the value.
513 }
514 } else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
515 if (CI->getOperand(0) != V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000516 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000517 return false; // Not calling the ptr
518 }
519 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
520 if (II->getOperand(0) != V) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000521 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000522 return false; // Not calling the ptr
523 }
Chris Lattner81686182007-09-13 16:30:19 +0000524 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(*UI)) {
525 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Chris Lattner9b34a612004-10-09 21:48:45 +0000526 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
Chris Lattner81686182007-09-13 16:30:19 +0000527 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
528 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
529 // If we've already seen this phi node, ignore it, it has already been
530 // checked.
531 if (PHIs.insert(PN))
532 return AllUsesOfValueWillTrapIfNull(PN, PHIs);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000533 } else if (isa<ICmpInst>(*UI) &&
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000534 isa<ConstantPointerNull>(UI->getOperand(1))) {
535 // Ignore setcc X, null
Chris Lattner9b34a612004-10-09 21:48:45 +0000536 } else {
Bill Wendlinge8156192006-12-07 01:30:32 +0000537 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000538 return false;
539 }
540 return true;
541}
542
543/// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000544/// from GV will trap if the loaded value is null. Note that this also permits
545/// comparisons of the loaded value against null, as a special case.
Chris Lattner9b34a612004-10-09 21:48:45 +0000546static bool AllUsesOfLoadedValueWillTrapIfNull(GlobalVariable *GV) {
547 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI!=E; ++UI)
548 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
Chris Lattner81686182007-09-13 16:30:19 +0000549 SmallPtrSet<PHINode*, 8> PHIs;
550 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner9b34a612004-10-09 21:48:45 +0000551 return false;
552 } else if (isa<StoreInst>(*UI)) {
553 // Ignore stores to the global.
554 } else {
555 // We don't know or understand this user, bail out.
Bill Wendlinge8156192006-12-07 01:30:32 +0000556 //cerr << "UNKNOWN USER OF GLOBAL!: " << **UI;
Chris Lattner9b34a612004-10-09 21:48:45 +0000557 return false;
558 }
559
560 return true;
561}
562
Chris Lattner708148e2004-10-10 23:14:11 +0000563static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
564 bool Changed = false;
565 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
566 Instruction *I = cast<Instruction>(*UI++);
567 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
568 LI->setOperand(0, NewV);
569 Changed = true;
570 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
571 if (SI->getOperand(1) == V) {
572 SI->setOperand(1, NewV);
573 Changed = true;
574 }
575 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
576 if (I->getOperand(0) == V) {
577 // Calling through the pointer! Turn into a direct call, but be careful
578 // that the pointer is not also being passed as an argument.
579 I->setOperand(0, NewV);
580 Changed = true;
581 bool PassedAsArg = false;
582 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i)
583 if (I->getOperand(i) == V) {
584 PassedAsArg = true;
585 I->setOperand(i, NewV);
586 }
587
588 if (PassedAsArg) {
589 // Being passed as an argument also. Be careful to not invalidate UI!
590 UI = V->use_begin();
591 }
592 }
593 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
594 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Chris Lattner6e8fbad2006-11-30 17:32:29 +0000595 ConstantExpr::getCast(CI->getOpcode(),
596 NewV, CI->getType()));
Chris Lattner708148e2004-10-10 23:14:11 +0000597 if (CI->use_empty()) {
598 Changed = true;
Chris Lattner7a7ed022004-10-16 18:09:00 +0000599 CI->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000600 }
601 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
602 // Should handle GEP here.
Chris Lattner55eb1c42007-01-31 04:40:53 +0000603 SmallVector<Constant*, 8> Idxs;
604 Idxs.reserve(GEPI->getNumOperands()-1);
Chris Lattner708148e2004-10-10 23:14:11 +0000605 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
606 if (Constant *C = dyn_cast<Constant>(GEPI->getOperand(i)))
Chris Lattner55eb1c42007-01-31 04:40:53 +0000607 Idxs.push_back(C);
Chris Lattner708148e2004-10-10 23:14:11 +0000608 else
609 break;
Chris Lattner55eb1c42007-01-31 04:40:53 +0000610 if (Idxs.size() == GEPI->getNumOperands()-1)
Chris Lattner708148e2004-10-10 23:14:11 +0000611 Changed |= OptimizeAwayTrappingUsesOfValue(GEPI,
Chris Lattner55eb1c42007-01-31 04:40:53 +0000612 ConstantExpr::getGetElementPtr(NewV, &Idxs[0],
613 Idxs.size()));
Chris Lattner708148e2004-10-10 23:14:11 +0000614 if (GEPI->use_empty()) {
615 Changed = true;
Chris Lattner7a7ed022004-10-16 18:09:00 +0000616 GEPI->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000617 }
618 }
619 }
620
621 return Changed;
622}
623
624
625/// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
626/// value stored into it. If there are uses of the loaded value that would trap
627/// if the loaded value is dynamically null, then we know that they cannot be
628/// reachable with a null optimize away the load.
629static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV) {
630 std::vector<LoadInst*> Loads;
631 bool Changed = false;
632
633 // Replace all uses of loads with uses of uses of the stored value.
634 for (Value::use_iterator GUI = GV->use_begin(), E = GV->use_end();
635 GUI != E; ++GUI)
636 if (LoadInst *LI = dyn_cast<LoadInst>(*GUI)) {
637 Loads.push_back(LI);
638 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
639 } else {
Chris Lattnerce3e2bf2007-05-15 06:42:04 +0000640 // If we get here we could have stores, selects, or phi nodes whose values
Chris Lattner79cfddf2007-05-13 21:28:07 +0000641 // are loaded.
Chris Lattnerce3e2bf2007-05-15 06:42:04 +0000642 assert((isa<StoreInst>(*GUI) || isa<PHINode>(*GUI) ||
Chris Lattner9027b3c2008-01-04 05:04:53 +0000643 isa<SelectInst>(*GUI) || isa<ConstantExpr>(*GUI)) &&
Chris Lattner79cfddf2007-05-13 21:28:07 +0000644 "Only expect load and stores!");
Chris Lattner708148e2004-10-10 23:14:11 +0000645 }
646
647 if (Changed) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000648 DOUT << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV;
Chris Lattner708148e2004-10-10 23:14:11 +0000649 ++NumGlobUses;
650 }
651
652 // Delete all of the loads we can, keeping track of whether we nuked them all!
653 bool AllLoadsGone = true;
654 while (!Loads.empty()) {
655 LoadInst *L = Loads.back();
656 if (L->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000657 L->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000658 Changed = true;
659 } else {
660 AllLoadsGone = false;
661 }
662 Loads.pop_back();
663 }
664
665 // If we nuked all of the loads, then none of the stores are needed either,
666 // nor is the global.
667 if (AllLoadsGone) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000668 DOUT << " *** GLOBAL NOW DEAD!\n";
Chris Lattner708148e2004-10-10 23:14:11 +0000669 CleanupConstantGlobalUsers(GV, 0);
670 if (GV->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +0000671 GV->eraseFromParent();
Chris Lattner708148e2004-10-10 23:14:11 +0000672 ++NumDeleted;
673 }
674 Changed = true;
675 }
676 return Changed;
677}
678
Chris Lattner30ba5692004-10-11 05:54:41 +0000679/// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
680/// instructions that are foldable.
681static void ConstantPropUsersOf(Value *V) {
682 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
683 if (Instruction *I = dyn_cast<Instruction>(*UI++))
684 if (Constant *NewC = ConstantFoldInstruction(I)) {
685 I->replaceAllUsesWith(NewC);
686
Chris Lattnerd514d822005-02-01 01:23:31 +0000687 // Advance UI to the next non-I use to avoid invalidating it!
688 // Instructions could multiply use V.
689 while (UI != E && *UI == I)
Chris Lattner30ba5692004-10-11 05:54:41 +0000690 ++UI;
Chris Lattnerd514d822005-02-01 01:23:31 +0000691 I->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000692 }
693}
694
695/// OptimizeGlobalAddressOfMalloc - This function takes the specified global
696/// variable, and transforms the program as if it always contained the result of
697/// the specified malloc. Because it is always the result of the specified
698/// malloc, there is no reason to actually DO the malloc. Instead, turn the
Chris Lattner6e8fbad2006-11-30 17:32:29 +0000699/// malloc into a global, and any loads of GV as uses of the new global.
Chris Lattner30ba5692004-10-11 05:54:41 +0000700static GlobalVariable *OptimizeGlobalAddressOfMalloc(GlobalVariable *GV,
701 MallocInst *MI) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000702 DOUT << "PROMOTING MALLOC GLOBAL: " << *GV << " MALLOC = " << *MI;
Chris Lattner30ba5692004-10-11 05:54:41 +0000703 ConstantInt *NElements = cast<ConstantInt>(MI->getArraySize());
704
Reid Spencerb83eb642006-10-20 07:07:24 +0000705 if (NElements->getZExtValue() != 1) {
Chris Lattner30ba5692004-10-11 05:54:41 +0000706 // If we have an array allocation, transform it to a single element
707 // allocation to make the code below simpler.
708 Type *NewTy = ArrayType::get(MI->getAllocatedType(),
Reid Spencerb83eb642006-10-20 07:07:24 +0000709 NElements->getZExtValue());
Chris Lattner30ba5692004-10-11 05:54:41 +0000710 MallocInst *NewMI =
Reid Spencerc5b206b2006-12-31 05:48:39 +0000711 new MallocInst(NewTy, Constant::getNullValue(Type::Int32Ty),
Nate Begeman14b05292005-11-05 09:21:28 +0000712 MI->getAlignment(), MI->getName(), MI);
Chris Lattner699d1442007-01-31 19:59:55 +0000713 Value* Indices[2];
714 Indices[0] = Indices[1] = Constant::getNullValue(Type::Int32Ty);
David Greeneb8f74792007-09-04 15:46:09 +0000715 Value *NewGEP = new GetElementPtrInst(NewMI, Indices, Indices + 2,
Chris Lattner30ba5692004-10-11 05:54:41 +0000716 NewMI->getName()+".el0", MI);
717 MI->replaceAllUsesWith(NewGEP);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000718 MI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000719 MI = NewMI;
720 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000721
Chris Lattner7a7ed022004-10-16 18:09:00 +0000722 // Create the new global variable. The contents of the malloc'd memory is
723 // undefined, so initialize with an undef value.
724 Constant *Init = UndefValue::get(MI->getAllocatedType());
Chris Lattner30ba5692004-10-11 05:54:41 +0000725 GlobalVariable *NewGV = new GlobalVariable(MI->getAllocatedType(), false,
726 GlobalValue::InternalLinkage, Init,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000727 GV->getName()+".body",
728 (Module *)NULL,
729 GV->isThreadLocal());
Chris Lattner30ba5692004-10-11 05:54:41 +0000730 GV->getParent()->getGlobalList().insert(GV, NewGV);
Misha Brukmanfd939082005-04-21 23:48:37 +0000731
Chris Lattner30ba5692004-10-11 05:54:41 +0000732 // Anything that used the malloc now uses the global directly.
733 MI->replaceAllUsesWith(NewGV);
Chris Lattner30ba5692004-10-11 05:54:41 +0000734
735 Constant *RepValue = NewGV;
736 if (NewGV->getType() != GV->getType()->getElementType())
Reid Spencerd977d862006-12-12 23:36:14 +0000737 RepValue = ConstantExpr::getBitCast(RepValue,
738 GV->getType()->getElementType());
Chris Lattner30ba5692004-10-11 05:54:41 +0000739
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000740 // If there is a comparison against null, we will insert a global bool to
741 // keep track of whether the global was initialized yet or not.
Misha Brukmanfd939082005-04-21 23:48:37 +0000742 GlobalVariable *InitBool =
Reid Spencer4fe16d62007-01-11 18:21:29 +0000743 new GlobalVariable(Type::Int1Ty, false, GlobalValue::InternalLinkage,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000744 ConstantInt::getFalse(), GV->getName()+".init",
745 (Module *)NULL, GV->isThreadLocal());
Chris Lattnerbc965b92004-12-02 06:25:58 +0000746 bool InitBoolUsed = false;
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000747
Chris Lattner30ba5692004-10-11 05:54:41 +0000748 // Loop over all uses of GV, processing them in turn.
Chris Lattnerbc965b92004-12-02 06:25:58 +0000749 std::vector<StoreInst*> Stores;
Chris Lattner30ba5692004-10-11 05:54:41 +0000750 while (!GV->use_empty())
751 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000752 while (!LI->use_empty()) {
Chris Lattnerd514d822005-02-01 01:23:31 +0000753 Use &LoadUse = LI->use_begin().getUse();
Reid Spencere4d87aa2006-12-23 06:05:41 +0000754 if (!isa<ICmpInst>(LoadUse.getUser()))
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000755 LoadUse = RepValue;
756 else {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000757 ICmpInst *CI = cast<ICmpInst>(LoadUse.getUser());
758 // Replace the cmp X, 0 with a use of the bool value.
759 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", CI);
Chris Lattnerbc965b92004-12-02 06:25:58 +0000760 InitBoolUsed = true;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000761 switch (CI->getPredicate()) {
762 default: assert(0 && "Unknown ICmp Predicate!");
763 case ICmpInst::ICMP_ULT:
764 case ICmpInst::ICMP_SLT:
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000765 LV = ConstantInt::getFalse(); // X < null -> always false
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000766 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000767 case ICmpInst::ICMP_ULE:
768 case ICmpInst::ICMP_SLE:
769 case ICmpInst::ICMP_EQ:
770 LV = BinaryOperator::createNot(LV, "notinit", CI);
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000771 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000772 case ICmpInst::ICMP_NE:
773 case ICmpInst::ICMP_UGE:
774 case ICmpInst::ICMP_SGE:
775 case ICmpInst::ICMP_UGT:
776 case ICmpInst::ICMP_SGT:
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000777 break; // no change.
778 }
Reid Spencere4d87aa2006-12-23 06:05:41 +0000779 CI->replaceAllUsesWith(LV);
780 CI->eraseFromParent();
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000781 }
782 }
Chris Lattner7a7ed022004-10-16 18:09:00 +0000783 LI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000784 } else {
785 StoreInst *SI = cast<StoreInst>(GV->use_back());
Chris Lattnerbc965b92004-12-02 06:25:58 +0000786 // The global is initialized when the store to it occurs.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000787 new StoreInst(ConstantInt::getTrue(), InitBool, SI);
Chris Lattner7a7ed022004-10-16 18:09:00 +0000788 SI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000789 }
790
Chris Lattnerbc965b92004-12-02 06:25:58 +0000791 // If the initialization boolean was used, insert it, otherwise delete it.
792 if (!InitBoolUsed) {
793 while (!InitBool->use_empty()) // Delete initializations
794 cast<Instruction>(InitBool->use_back())->eraseFromParent();
795 delete InitBool;
796 } else
797 GV->getParent()->getGlobalList().insert(GV, InitBool);
798
799
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000800 // Now the GV is dead, nuke it and the malloc.
Chris Lattner7a7ed022004-10-16 18:09:00 +0000801 GV->eraseFromParent();
Chris Lattnere9ece2a2004-10-22 06:43:28 +0000802 MI->eraseFromParent();
Chris Lattner30ba5692004-10-11 05:54:41 +0000803
804 // To further other optimizations, loop over all users of NewGV and try to
805 // constant prop them. This will promote GEP instructions with constant
806 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
807 ConstantPropUsersOf(NewGV);
808 if (RepValue != NewGV)
809 ConstantPropUsersOf(RepValue);
810
811 return NewGV;
812}
Chris Lattner708148e2004-10-10 23:14:11 +0000813
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000814/// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
815/// to make sure that there are no complex uses of V. We permit simple things
816/// like dereferencing the pointer, but not storing through the address, unless
817/// it is to the specified global.
818static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Instruction *V,
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000819 GlobalVariable *GV,
820 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner5e6e4942007-09-14 03:41:21 +0000821 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
Reid Spencere4d87aa2006-12-23 06:05:41 +0000822 if (isa<LoadInst>(*UI) || isa<CmpInst>(*UI)) {
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000823 // Fine, ignore.
824 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
825 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
826 return false; // Storing the pointer itself... bad.
827 // Otherwise, storing through it, or storing into GV... fine.
Chris Lattner5e6e4942007-09-14 03:41:21 +0000828 } else if (isa<GetElementPtrInst>(*UI)) {
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000829 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(cast<Instruction>(*UI),
830 GV, PHIs))
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000831 return false;
Chris Lattnerc451f9c2007-09-13 16:37:20 +0000832 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
833 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
834 // cycles.
835 if (PHIs.insert(PN))
Chris Lattner5e6e4942007-09-14 03:41:21 +0000836 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
837 return false;
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000838 } else {
839 return false;
840 }
841 return true;
Chris Lattnerfa07e4f2004-12-02 07:11:07 +0000842}
843
Chris Lattner86395032006-09-30 23:32:09 +0000844/// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
845/// somewhere. Transform all uses of the allocation into loads from the
846/// global and uses of the resultant pointer. Further, delete the store into
847/// GV. This assumes that these value pass the
848/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
849static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
850 GlobalVariable *GV) {
851 while (!Alloc->use_empty()) {
Chris Lattnera637a8b2007-09-13 18:00:31 +0000852 Instruction *U = cast<Instruction>(*Alloc->use_begin());
853 Instruction *InsertPt = U;
Chris Lattner86395032006-09-30 23:32:09 +0000854 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
855 // If this is the store of the allocation into the global, remove it.
856 if (SI->getOperand(1) == GV) {
857 SI->eraseFromParent();
858 continue;
859 }
Chris Lattnera637a8b2007-09-13 18:00:31 +0000860 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
861 // Insert the load in the corresponding predecessor, not right before the
862 // PHI.
863 unsigned PredNo = Alloc->use_begin().getOperandNo()/2;
864 InsertPt = PN->getIncomingBlock(PredNo)->getTerminator();
Chris Lattner86395032006-09-30 23:32:09 +0000865 }
866
867 // Insert a load from the global, and use it instead of the malloc.
Chris Lattnera637a8b2007-09-13 18:00:31 +0000868 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Chris Lattner86395032006-09-30 23:32:09 +0000869 U->replaceUsesOfWith(Alloc, NL);
870 }
871}
872
873/// GlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
874/// GV are simple enough to perform HeapSRA, return true.
Chris Lattner309f20f2007-09-13 21:31:36 +0000875static bool GlobalLoadUsesSimpleEnoughForHeapSRA(GlobalVariable *GV,
876 MallocInst *MI) {
Chris Lattner86395032006-09-30 23:32:09 +0000877 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;
878 ++UI)
879 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
880 // We permit two users of the load: setcc comparing against the null
881 // pointer, and a getelementptr of a specific form.
882 for (Value::use_iterator UI = LI->use_begin(), E = LI->use_end(); UI != E;
883 ++UI) {
884 // Comparison against null is ok.
Reid Spencere4d87aa2006-12-23 06:05:41 +0000885 if (ICmpInst *ICI = dyn_cast<ICmpInst>(*UI)) {
886 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
Chris Lattner86395032006-09-30 23:32:09 +0000887 return false;
888 continue;
889 }
890
891 // getelementptr is also ok, but only a simple form.
Chris Lattner309f20f2007-09-13 21:31:36 +0000892 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
893 // Must index into the array and into the struct.
894 if (GEPI->getNumOperands() < 3)
895 return false;
896
897 // Otherwise the GEP is ok.
898 continue;
899 }
Chris Lattner86395032006-09-30 23:32:09 +0000900
Chris Lattner309f20f2007-09-13 21:31:36 +0000901 if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
902 // We have a phi of a load from the global. We can only handle this
903 // if the other PHI'd values are actually the same. In this case,
904 // the rewriter will just drop the phi entirely.
905 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
906 Value *IV = PN->getIncomingValue(i);
907 if (IV == LI) continue; // Trivial the same.
908
909 // If the phi'd value is from the malloc that initializes the value,
910 // we can xform it.
911 if (IV == MI) continue;
912
913 // Otherwise, we don't know what it is.
914 return false;
915 }
916 return true;
917 }
Chris Lattner86395032006-09-30 23:32:09 +0000918
Chris Lattner309f20f2007-09-13 21:31:36 +0000919 // Otherwise we don't know what this is, not ok.
920 return false;
Chris Lattner86395032006-09-30 23:32:09 +0000921 }
922 }
923 return true;
924}
925
Chris Lattnera637a8b2007-09-13 18:00:31 +0000926/// GetHeapSROALoad - Return the load for the specified field of the HeapSROA'd
927/// value, lazily creating it on demand.
Chris Lattner309f20f2007-09-13 21:31:36 +0000928static Value *GetHeapSROALoad(Instruction *Load, unsigned FieldNo,
Chris Lattnera637a8b2007-09-13 18:00:31 +0000929 const std::vector<GlobalVariable*> &FieldGlobals,
930 std::vector<Value *> &InsertedLoadsForPtr) {
931 if (InsertedLoadsForPtr.size() <= FieldNo)
932 InsertedLoadsForPtr.resize(FieldNo+1);
933 if (InsertedLoadsForPtr[FieldNo] == 0)
934 InsertedLoadsForPtr[FieldNo] = new LoadInst(FieldGlobals[FieldNo],
935 Load->getName()+".f" +
936 utostr(FieldNo), Load);
937 return InsertedLoadsForPtr[FieldNo];
938}
939
Chris Lattner330245e2007-09-13 17:29:05 +0000940/// RewriteHeapSROALoadUser - Given a load instruction and a value derived from
941/// the load, rewrite the derived value to use the HeapSRoA'd load.
942static void RewriteHeapSROALoadUser(LoadInst *Load, Instruction *LoadUser,
943 const std::vector<GlobalVariable*> &FieldGlobals,
944 std::vector<Value *> &InsertedLoadsForPtr) {
945 // If this is a comparison against null, handle it.
946 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
947 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
948 // If we have a setcc of the loaded pointer, we can use a setcc of any
949 // field.
950 Value *NPtr;
951 if (InsertedLoadsForPtr.empty()) {
Chris Lattnera637a8b2007-09-13 18:00:31 +0000952 NPtr = GetHeapSROALoad(Load, 0, FieldGlobals, InsertedLoadsForPtr);
Chris Lattner330245e2007-09-13 17:29:05 +0000953 } else {
954 NPtr = InsertedLoadsForPtr.back();
955 }
956
957 Value *New = new ICmpInst(SCI->getPredicate(), NPtr,
958 Constant::getNullValue(NPtr->getType()),
959 SCI->getName(), SCI);
960 SCI->replaceAllUsesWith(New);
961 SCI->eraseFromParent();
962 return;
963 }
964
Chris Lattnera637a8b2007-09-13 18:00:31 +0000965 // Handle 'getelementptr Ptr, Idx, uint FieldNo ...'
966 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
967 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
968 && "Unexpected GEPI!");
Chris Lattner330245e2007-09-13 17:29:05 +0000969
Chris Lattnera637a8b2007-09-13 18:00:31 +0000970 // Load the pointer for this field.
971 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
972 Value *NewPtr = GetHeapSROALoad(Load, FieldNo,
973 FieldGlobals, InsertedLoadsForPtr);
974
975 // Create the new GEP idx vector.
976 SmallVector<Value*, 8> GEPIdx;
977 GEPIdx.push_back(GEPI->getOperand(1));
978 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
979
980 Value *NGEPI = new GetElementPtrInst(NewPtr, GEPIdx.begin(), GEPIdx.end(),
981 GEPI->getName(), GEPI);
982 GEPI->replaceAllUsesWith(NGEPI);
983 GEPI->eraseFromParent();
984 return;
985 }
Chris Lattner330245e2007-09-13 17:29:05 +0000986
Chris Lattner309f20f2007-09-13 21:31:36 +0000987 // Handle PHI nodes. PHI nodes must be merging in the same values, plus
988 // potentially the original malloc. Insert phi nodes for each field, then
989 // process uses of the PHI.
Chris Lattnera637a8b2007-09-13 18:00:31 +0000990 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattner309f20f2007-09-13 21:31:36 +0000991 std::vector<Value *> PHIsForField;
992 PHIsForField.resize(FieldGlobals.size());
993 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
994 Value *LoadV = GetHeapSROALoad(Load, i, FieldGlobals, InsertedLoadsForPtr);
995
996 PHINode *FieldPN = new PHINode(LoadV->getType(),
997 PN->getName()+"."+utostr(i), PN);
998 // Fill in the predecessor values.
999 for (unsigned pred = 0, e = PN->getNumIncomingValues(); pred != e; ++pred) {
1000 // Each predecessor either uses the load or the original malloc.
1001 Value *InVal = PN->getIncomingValue(pred);
1002 BasicBlock *BB = PN->getIncomingBlock(pred);
1003 Value *NewVal;
1004 if (isa<MallocInst>(InVal)) {
1005 // Insert a reload from the global in the predecessor.
1006 NewVal = GetHeapSROALoad(BB->getTerminator(), i, FieldGlobals,
1007 PHIsForField);
1008 } else {
1009 NewVal = InsertedLoadsForPtr[i];
1010 }
1011 FieldPN->addIncoming(NewVal, BB);
1012 }
1013 PHIsForField[i] = FieldPN;
1014 }
1015
1016 // Since PHIsForField specifies a phi for every input value, the lazy inserter
1017 // will never insert a load.
Chris Lattnera637a8b2007-09-13 18:00:31 +00001018 while (!PN->use_empty())
Chris Lattner309f20f2007-09-13 21:31:36 +00001019 RewriteHeapSROALoadUser(Load, PN->use_back(), FieldGlobals, PHIsForField);
Chris Lattnera637a8b2007-09-13 18:00:31 +00001020 PN->eraseFromParent();
Chris Lattner330245e2007-09-13 17:29:05 +00001021}
1022
Chris Lattner86395032006-09-30 23:32:09 +00001023/// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global. Ptr
1024/// is a value loaded from the global. Eliminate all uses of Ptr, making them
1025/// use FieldGlobals instead. All uses of loaded values satisfy
1026/// GlobalLoadUsesSimpleEnoughForHeapSRA.
Chris Lattner330245e2007-09-13 17:29:05 +00001027static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner86395032006-09-30 23:32:09 +00001028 const std::vector<GlobalVariable*> &FieldGlobals) {
1029 std::vector<Value *> InsertedLoadsForPtr;
1030 //InsertedLoadsForPtr.resize(FieldGlobals.size());
Chris Lattner330245e2007-09-13 17:29:05 +00001031 while (!Load->use_empty())
1032 RewriteHeapSROALoadUser(Load, Load->use_back(),
1033 FieldGlobals, InsertedLoadsForPtr);
Chris Lattner86395032006-09-30 23:32:09 +00001034}
1035
1036/// PerformHeapAllocSRoA - MI is an allocation of an array of structures. Break
1037/// it up into multiple allocations of arrays of the fields.
1038static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, MallocInst *MI){
Bill Wendling0a81aac2006-11-26 10:02:32 +00001039 DOUT << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *MI;
Chris Lattner86395032006-09-30 23:32:09 +00001040 const StructType *STy = cast<StructType>(MI->getAllocatedType());
1041
1042 // There is guaranteed to be at least one use of the malloc (storing
1043 // it into GV). If there are other uses, change them to be uses of
1044 // the global to simplify later code. This also deletes the store
1045 // into GV.
1046 ReplaceUsesOfMallocWithGlobal(MI, GV);
1047
1048 // Okay, at this point, there are no users of the malloc. Insert N
1049 // new mallocs at the same place as MI, and N globals.
1050 std::vector<GlobalVariable*> FieldGlobals;
1051 std::vector<MallocInst*> FieldMallocs;
1052
1053 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
1054 const Type *FieldTy = STy->getElementType(FieldNo);
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001055 const Type *PFieldTy = PointerType::getUnqual(FieldTy);
Chris Lattner86395032006-09-30 23:32:09 +00001056
1057 GlobalVariable *NGV =
1058 new GlobalVariable(PFieldTy, false, GlobalValue::InternalLinkage,
1059 Constant::getNullValue(PFieldTy),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001060 GV->getName() + ".f" + utostr(FieldNo), GV,
1061 GV->isThreadLocal());
Chris Lattner86395032006-09-30 23:32:09 +00001062 FieldGlobals.push_back(NGV);
1063
1064 MallocInst *NMI = new MallocInst(FieldTy, MI->getArraySize(),
1065 MI->getName() + ".f" + utostr(FieldNo),MI);
1066 FieldMallocs.push_back(NMI);
1067 new StoreInst(NMI, NGV, MI);
1068 }
1069
1070 // The tricky aspect of this transformation is handling the case when malloc
1071 // fails. In the original code, malloc failing would set the result pointer
1072 // of malloc to null. In this case, some mallocs could succeed and others
1073 // could fail. As such, we emit code that looks like this:
1074 // F0 = malloc(field0)
1075 // F1 = malloc(field1)
1076 // F2 = malloc(field2)
1077 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1078 // if (F0) { free(F0); F0 = 0; }
1079 // if (F1) { free(F1); F1 = 0; }
1080 // if (F2) { free(F2); F2 = 0; }
1081 // }
1082 Value *RunningOr = 0;
1083 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001084 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, FieldMallocs[i],
Chris Lattner86395032006-09-30 23:32:09 +00001085 Constant::getNullValue(FieldMallocs[i]->getType()),
1086 "isnull", MI);
1087 if (!RunningOr)
1088 RunningOr = Cond; // First seteq
1089 else
1090 RunningOr = BinaryOperator::createOr(RunningOr, Cond, "tmp", MI);
1091 }
1092
1093 // Split the basic block at the old malloc.
1094 BasicBlock *OrigBB = MI->getParent();
1095 BasicBlock *ContBB = OrigBB->splitBasicBlock(MI, "malloc_cont");
1096
1097 // Create the block to check the first condition. Put all these blocks at the
1098 // end of the function as they are unlikely to be executed.
1099 BasicBlock *NullPtrBlock = new BasicBlock("malloc_ret_null",
1100 OrigBB->getParent());
1101
1102 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1103 // branch on RunningOr.
1104 OrigBB->getTerminator()->eraseFromParent();
1105 new BranchInst(NullPtrBlock, ContBB, RunningOr, OrigBB);
1106
1107 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1108 // pointer, because some may be null while others are not.
1109 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1110 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001111 Value *Cmp = new ICmpInst(ICmpInst::ICMP_NE, GVVal,
1112 Constant::getNullValue(GVVal->getType()),
1113 "tmp", NullPtrBlock);
Chris Lattner86395032006-09-30 23:32:09 +00001114 BasicBlock *FreeBlock = new BasicBlock("free_it", OrigBB->getParent());
1115 BasicBlock *NextBlock = new BasicBlock("next", OrigBB->getParent());
1116 new BranchInst(FreeBlock, NextBlock, Cmp, NullPtrBlock);
1117
1118 // Fill in FreeBlock.
1119 new FreeInst(GVVal, FreeBlock);
1120 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1121 FreeBlock);
1122 new BranchInst(NextBlock, FreeBlock);
1123
1124 NullPtrBlock = NextBlock;
1125 }
1126
1127 new BranchInst(ContBB, NullPtrBlock);
1128
1129
1130 // MI is no longer needed, remove it.
1131 MI->eraseFromParent();
1132
1133
1134 // Okay, the malloc site is completely handled. All of the uses of GV are now
1135 // loads, and all uses of those loads are simple. Rewrite them to use loads
1136 // of the per-field globals instead.
1137 while (!GV->use_empty()) {
Chris Lattner39ff1e22007-01-09 23:29:37 +00001138 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
1139 RewriteUsesOfLoadForHeapSRoA(LI, FieldGlobals);
1140 LI->eraseFromParent();
1141 } else {
1142 // Must be a store of null.
1143 StoreInst *SI = cast<StoreInst>(GV->use_back());
1144 assert(isa<Constant>(SI->getOperand(0)) &&
1145 cast<Constant>(SI->getOperand(0))->isNullValue() &&
1146 "Unexpected heap-sra user!");
1147
1148 // Insert a store of null into each global.
1149 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1150 Constant *Null =
1151 Constant::getNullValue(FieldGlobals[i]->getType()->getElementType());
1152 new StoreInst(Null, FieldGlobals[i], SI);
1153 }
1154 // Erase the original store.
1155 SI->eraseFromParent();
1156 }
Chris Lattner86395032006-09-30 23:32:09 +00001157 }
1158
1159 // The old global is now dead, remove it.
1160 GV->eraseFromParent();
1161
1162 ++NumHeapSRA;
1163 return FieldGlobals[0];
1164}
1165
1166
Chris Lattner9b34a612004-10-09 21:48:45 +00001167// OptimizeOnceStoredGlobal - Try to optimize globals based on the knowledge
1168// that only one value (besides its initializer) is ever stored to the global.
Chris Lattner30ba5692004-10-11 05:54:41 +00001169static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Chris Lattner7f8897f2006-08-27 22:42:52 +00001170 Module::global_iterator &GVI,
1171 TargetData &TD) {
Chris Lattner9b34a612004-10-09 21:48:45 +00001172 if (CastInst *CI = dyn_cast<CastInst>(StoredOnceVal))
1173 StoredOnceVal = CI->getOperand(0);
1174 else if (GetElementPtrInst *GEPI =dyn_cast<GetElementPtrInst>(StoredOnceVal)){
Chris Lattner708148e2004-10-10 23:14:11 +00001175 // "getelementptr Ptr, 0, 0, 0" is really just a cast.
Chris Lattner9b34a612004-10-09 21:48:45 +00001176 bool IsJustACast = true;
1177 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
1178 if (!isa<Constant>(GEPI->getOperand(i)) ||
1179 !cast<Constant>(GEPI->getOperand(i))->isNullValue()) {
1180 IsJustACast = false;
1181 break;
1182 }
1183 if (IsJustACast)
1184 StoredOnceVal = GEPI->getOperand(0);
1185 }
1186
Chris Lattner708148e2004-10-10 23:14:11 +00001187 // If we are dealing with a pointer global that is initialized to null and
1188 // only has one (non-null) value stored into it, then we can optimize any
1189 // users of the loaded value (often calls and loads) that would trap if the
1190 // value was null.
Chris Lattner9b34a612004-10-09 21:48:45 +00001191 if (isa<PointerType>(GV->getInitializer()->getType()) &&
1192 GV->getInitializer()->isNullValue()) {
Chris Lattner708148e2004-10-10 23:14:11 +00001193 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1194 if (GV->getInitializer()->getType() != SOVC->getType())
Reid Spencerd977d862006-12-12 23:36:14 +00001195 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanfd939082005-04-21 23:48:37 +00001196
Chris Lattner708148e2004-10-10 23:14:11 +00001197 // Optimize away any trapping uses of the loaded value.
1198 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC))
Chris Lattner8be80122004-10-10 17:07:12 +00001199 return true;
Chris Lattner30ba5692004-10-11 05:54:41 +00001200 } else if (MallocInst *MI = dyn_cast<MallocInst>(StoredOnceVal)) {
Chris Lattnercff16732006-09-30 19:40:30 +00001201 // If this is a malloc of an abstract type, don't touch it.
1202 if (!MI->getAllocatedType()->isSized())
1203 return false;
1204
Chris Lattner86395032006-09-30 23:32:09 +00001205 // We can't optimize this global unless all uses of it are *known* to be
1206 // of the malloc value, not of the null initializer value (consider a use
1207 // that compares the global's value against zero to see if the malloc has
1208 // been reached). To do this, we check to see if all uses of the global
1209 // would trap if the global were null: this proves that they must all
1210 // happen after the malloc.
1211 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1212 return false;
1213
1214 // We can't optimize this if the malloc itself is used in a complex way,
1215 // for example, being stored into multiple globals. This allows the
1216 // malloc to be stored into the specified global, loaded setcc'd, and
1217 // GEP'd. These are all things we could transform to using the global
1218 // for.
Chris Lattnerc451f9c2007-09-13 16:37:20 +00001219 {
1220 SmallPtrSet<PHINode*, 8> PHIs;
1221 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(MI, GV, PHIs))
1222 return false;
1223 }
Chris Lattner86395032006-09-30 23:32:09 +00001224
1225
Chris Lattner30ba5692004-10-11 05:54:41 +00001226 // If we have a global that is only initialized with a fixed size malloc,
Chris Lattner86395032006-09-30 23:32:09 +00001227 // transform the program to use global memory instead of malloc'd memory.
1228 // This eliminates dynamic allocation, avoids an indirection accessing the
1229 // data, and exposes the resultant global to further GlobalOpt.
Chris Lattnercff16732006-09-30 19:40:30 +00001230 if (ConstantInt *NElements = dyn_cast<ConstantInt>(MI->getArraySize())) {
Chris Lattner86395032006-09-30 23:32:09 +00001231 // Restrict this transformation to only working on small allocations
1232 // (2048 bytes currently), as we don't want to introduce a 16M global or
1233 // something.
Reid Spencerb83eb642006-10-20 07:07:24 +00001234 if (NElements->getZExtValue()*
Duncan Sands514ab342007-11-01 20:53:16 +00001235 TD.getABITypeSize(MI->getAllocatedType()) < 2048) {
Chris Lattner30ba5692004-10-11 05:54:41 +00001236 GVI = OptimizeGlobalAddressOfMalloc(GV, MI);
1237 return true;
1238 }
Chris Lattnercff16732006-09-30 19:40:30 +00001239 }
Chris Lattner86395032006-09-30 23:32:09 +00001240
1241 // If the allocation is an array of structures, consider transforming this
1242 // into multiple malloc'd arrays, one for each field. This is basically
1243 // SRoA for malloc'd memory.
1244 if (const StructType *AllocTy =
1245 dyn_cast<StructType>(MI->getAllocatedType())) {
1246 // This the structure has an unreasonable number of fields, leave it
1247 // alone.
1248 if (AllocTy->getNumElements() <= 16 && AllocTy->getNumElements() > 0 &&
Chris Lattner309f20f2007-09-13 21:31:36 +00001249 GlobalLoadUsesSimpleEnoughForHeapSRA(GV, MI)) {
Chris Lattner86395032006-09-30 23:32:09 +00001250 GVI = PerformHeapAllocSRoA(GV, MI);
1251 return true;
1252 }
1253 }
Chris Lattner708148e2004-10-10 23:14:11 +00001254 }
Chris Lattner9b34a612004-10-09 21:48:45 +00001255 }
Chris Lattner30ba5692004-10-11 05:54:41 +00001256
Chris Lattner9b34a612004-10-09 21:48:45 +00001257 return false;
1258}
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001259
Chris Lattner58e44f42008-01-14 01:17:44 +00001260/// TryToShrinkGlobalToBoolean - At this point, we have learned that the only
1261/// two values ever stored into GV are its initializer and OtherVal. See if we
1262/// can shrink the global into a boolean and select between the two values
1263/// whenever it is used. This exposes the values to other scalar optimizations.
1264static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1265 const Type *GVElType = GV->getType()->getElementType();
1266
1267 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1268 // an FP value or vector, don't do this optimization because a select between
1269 // them is very expensive and unlikely to lead to later simplification.
1270 if (GVElType == Type::Int1Ty || GVElType->isFloatingPoint() ||
1271 isa<VectorType>(GVElType))
1272 return false;
1273
1274 // Walk the use list of the global seeing if all the uses are load or store.
1275 // If there is anything else, bail out.
1276 for (Value::use_iterator I = GV->use_begin(), E = GV->use_end(); I != E; ++I)
1277 if (!isa<LoadInst>(I) && !isa<StoreInst>(I))
1278 return false;
1279
1280 DOUT << " *** SHRINKING TO BOOL: " << *GV;
1281
Chris Lattner96a86b22004-12-12 05:53:50 +00001282 // Create the new global, initializing it to false.
Reid Spencer4fe16d62007-01-11 18:21:29 +00001283 GlobalVariable *NewGV = new GlobalVariable(Type::Int1Ty, false,
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001284 GlobalValue::InternalLinkage, ConstantInt::getFalse(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001285 GV->getName()+".b",
1286 (Module *)NULL,
1287 GV->isThreadLocal());
Chris Lattner96a86b22004-12-12 05:53:50 +00001288 GV->getParent()->getGlobalList().insert(GV, NewGV);
1289
1290 Constant *InitVal = GV->getInitializer();
Reid Spencer4fe16d62007-01-11 18:21:29 +00001291 assert(InitVal->getType() != Type::Int1Ty && "No reason to shrink to bool!");
Chris Lattner96a86b22004-12-12 05:53:50 +00001292
1293 // If initialized to zero and storing one into the global, we can use a cast
1294 // instead of a select to synthesize the desired value.
1295 bool IsOneZero = false;
1296 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
Reid Spencercae57542007-03-02 00:28:52 +00001297 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner96a86b22004-12-12 05:53:50 +00001298
1299 while (!GV->use_empty()) {
1300 Instruction *UI = cast<Instruction>(GV->use_back());
1301 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1302 // Change the store into a boolean store.
1303 bool StoringOther = SI->getOperand(0) == OtherVal;
1304 // Only do this if we weren't storing a loaded value.
Chris Lattner38c25562004-12-12 19:34:41 +00001305 Value *StoreVal;
Chris Lattner96a86b22004-12-12 05:53:50 +00001306 if (StoringOther || SI->getOperand(0) == InitVal)
Reid Spencer579dca12007-01-12 04:24:46 +00001307 StoreVal = ConstantInt::get(Type::Int1Ty, StoringOther);
Chris Lattner38c25562004-12-12 19:34:41 +00001308 else {
1309 // Otherwise, we are storing a previously loaded copy. To do this,
1310 // change the copy from copying the original value to just copying the
1311 // bool.
1312 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1313
1314 // If we're already replaced the input, StoredVal will be a cast or
1315 // select instruction. If not, it will be a load of the original
1316 // global.
1317 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1318 assert(LI->getOperand(0) == GV && "Not a copy!");
1319 // Insert a new load, to preserve the saved value.
1320 StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI);
1321 } else {
1322 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1323 "This is not a form that we understand!");
1324 StoreVal = StoredVal->getOperand(0);
1325 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1326 }
1327 }
1328 new StoreInst(StoreVal, NewGV, SI);
Chris Lattner58e44f42008-01-14 01:17:44 +00001329 } else {
Chris Lattner96a86b22004-12-12 05:53:50 +00001330 // Change the load into a load of bool then a select.
1331 LoadInst *LI = cast<LoadInst>(UI);
Chris Lattner046800a2007-02-11 01:08:35 +00001332 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", LI);
Chris Lattner96a86b22004-12-12 05:53:50 +00001333 Value *NSI;
1334 if (IsOneZero)
Chris Lattner046800a2007-02-11 01:08:35 +00001335 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
Misha Brukmanfd939082005-04-21 23:48:37 +00001336 else
Chris Lattner046800a2007-02-11 01:08:35 +00001337 NSI = new SelectInst(NLI, OtherVal, InitVal, "", LI);
1338 NSI->takeName(LI);
Chris Lattner96a86b22004-12-12 05:53:50 +00001339 LI->replaceAllUsesWith(NSI);
1340 }
1341 UI->eraseFromParent();
1342 }
1343
1344 GV->eraseFromParent();
Chris Lattner58e44f42008-01-14 01:17:44 +00001345 return true;
Chris Lattner96a86b22004-12-12 05:53:50 +00001346}
1347
1348
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001349/// ProcessInternalGlobal - Analyze the specified global variable and optimize
1350/// it if possible. If we make a change, return true.
Chris Lattner30ba5692004-10-11 05:54:41 +00001351bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
Chris Lattnere4d5c442005-03-15 04:54:21 +00001352 Module::global_iterator &GVI) {
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001353 std::set<PHINode*> PHIUsers;
1354 GlobalStatus GS;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001355 GV->removeDeadConstantUsers();
1356
1357 if (GV->use_empty()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001358 DOUT << "GLOBAL DEAD: " << *GV;
Chris Lattner7a7ed022004-10-16 18:09:00 +00001359 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001360 ++NumDeleted;
1361 return true;
1362 }
1363
1364 if (!AnalyzeGlobal(GV, GS, PHIUsers)) {
Chris Lattnercff16732006-09-30 19:40:30 +00001365#if 0
Bill Wendlinge8156192006-12-07 01:30:32 +00001366 cerr << "Global: " << *GV;
1367 cerr << " isLoaded = " << GS.isLoaded << "\n";
1368 cerr << " StoredType = ";
Chris Lattnercff16732006-09-30 19:40:30 +00001369 switch (GS.StoredType) {
Bill Wendlinge8156192006-12-07 01:30:32 +00001370 case GlobalStatus::NotStored: cerr << "NEVER STORED\n"; break;
1371 case GlobalStatus::isInitializerStored: cerr << "INIT STORED\n"; break;
1372 case GlobalStatus::isStoredOnce: cerr << "STORED ONCE\n"; break;
1373 case GlobalStatus::isStored: cerr << "stored\n"; break;
Chris Lattnercff16732006-09-30 19:40:30 +00001374 }
1375 if (GS.StoredType == GlobalStatus::isStoredOnce && GS.StoredOnceValue)
Bill Wendlinge8156192006-12-07 01:30:32 +00001376 cerr << " StoredOnceValue = " << *GS.StoredOnceValue << "\n";
Chris Lattnercff16732006-09-30 19:40:30 +00001377 if (GS.AccessingFunction && !GS.HasMultipleAccessingFunctions)
Bill Wendlinge8156192006-12-07 01:30:32 +00001378 cerr << " AccessingFunction = " << GS.AccessingFunction->getName()
Chris Lattnercff16732006-09-30 19:40:30 +00001379 << "\n";
Bill Wendlinge8156192006-12-07 01:30:32 +00001380 cerr << " HasMultipleAccessingFunctions = "
Chris Lattnercff16732006-09-30 19:40:30 +00001381 << GS.HasMultipleAccessingFunctions << "\n";
Bill Wendlinge8156192006-12-07 01:30:32 +00001382 cerr << " HasNonInstructionUser = " << GS.HasNonInstructionUser<<"\n";
1383 cerr << " isNotSuitableForSRA = " << GS.isNotSuitableForSRA << "\n";
1384 cerr << "\n";
Chris Lattnercff16732006-09-30 19:40:30 +00001385#endif
1386
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001387 // If this is a first class global and has only one accessing function
1388 // and this function is main (which we know is not recursive we can make
1389 // this global a local variable) we replace the global with a local alloca
1390 // in this function.
1391 //
1392 // NOTE: It doesn't make sense to promote non first class types since we
1393 // are just replacing static memory to stack memory.
1394 if (!GS.HasMultipleAccessingFunctions &&
Chris Lattner553ca522005-06-15 21:11:48 +00001395 GS.AccessingFunction && !GS.HasNonInstructionUser &&
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001396 GV->getType()->getElementType()->isFirstClassType() &&
1397 GS.AccessingFunction->getName() == "main" &&
1398 GS.AccessingFunction->hasExternalLinkage()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001399 DOUT << "LOCALIZING GLOBAL: " << *GV;
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001400 Instruction* FirstI = GS.AccessingFunction->getEntryBlock().begin();
1401 const Type* ElemTy = GV->getType()->getElementType();
Nate Begeman14b05292005-11-05 09:21:28 +00001402 // FIXME: Pass Global's alignment when globals have alignment
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001403 AllocaInst* Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), FirstI);
1404 if (!isa<UndefValue>(GV->getInitializer()))
1405 new StoreInst(GV->getInitializer(), Alloca, FirstI);
Misha Brukmanfd939082005-04-21 23:48:37 +00001406
Alkis Evlogimenosf64ea9d2005-02-10 18:36:30 +00001407 GV->replaceAllUsesWith(Alloca);
1408 GV->eraseFromParent();
1409 ++NumLocalized;
1410 return true;
1411 }
Chris Lattnercff16732006-09-30 19:40:30 +00001412
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001413 // If the global is never loaded (but may be stored to), it is dead.
1414 // Delete it now.
1415 if (!GS.isLoaded) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001416 DOUT << "GLOBAL NEVER LOADED: " << *GV;
Chris Lattner930f4752004-10-09 03:32:52 +00001417
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001418 // Delete any stores we can find to the global. We may not be able to
1419 // make it completely dead though.
Chris Lattner031955d2004-10-10 16:43:46 +00001420 bool Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer());
Chris Lattner930f4752004-10-09 03:32:52 +00001421
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001422 // If the global is dead now, delete it.
1423 if (GV->use_empty()) {
Chris Lattner7a7ed022004-10-16 18:09:00 +00001424 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001425 ++NumDeleted;
Chris Lattner930f4752004-10-09 03:32:52 +00001426 Changed = true;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001427 }
Chris Lattner930f4752004-10-09 03:32:52 +00001428 return Changed;
Misha Brukmanfd939082005-04-21 23:48:37 +00001429
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001430 } else if (GS.StoredType <= GlobalStatus::isInitializerStored) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001431 DOUT << "MARKING CONSTANT: " << *GV;
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001432 GV->setConstant(true);
Misha Brukmanfd939082005-04-21 23:48:37 +00001433
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001434 // Clean up any obviously simplifiable users now.
1435 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanfd939082005-04-21 23:48:37 +00001436
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001437 // If the global is dead now, just nuke it.
1438 if (GV->use_empty()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001439 DOUT << " *** Marking constant allowed us to simplify "
1440 << "all users and delete global!\n";
Chris Lattner7a7ed022004-10-16 18:09:00 +00001441 GV->eraseFromParent();
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001442 ++NumDeleted;
1443 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001444
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001445 ++NumMarked;
1446 return true;
1447 } else if (!GS.isNotSuitableForSRA &&
1448 !GV->getInitializer()->getType()->isFirstClassType()) {
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001449 if (GlobalVariable *FirstNewGV = SRAGlobal(GV)) {
1450 GVI = FirstNewGV; // Don't skip the newly produced globals!
1451 return true;
1452 }
Chris Lattner9b34a612004-10-09 21:48:45 +00001453 } else if (GS.StoredType == GlobalStatus::isStoredOnce) {
Chris Lattner96a86b22004-12-12 05:53:50 +00001454 // If the initial value for the global was an undef value, and if only
1455 // one other value was stored into it, we can just change the
1456 // initializer to be an undef value, then delete all stores to the
1457 // global. This allows us to mark it constant.
1458 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1459 if (isa<UndefValue>(GV->getInitializer())) {
1460 // Change the initial value here.
1461 GV->setInitializer(SOVConstant);
Misha Brukmanfd939082005-04-21 23:48:37 +00001462
Chris Lattner96a86b22004-12-12 05:53:50 +00001463 // Clean up any obviously simplifiable users now.
1464 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanfd939082005-04-21 23:48:37 +00001465
Chris Lattner96a86b22004-12-12 05:53:50 +00001466 if (GV->use_empty()) {
Bill Wendling0a81aac2006-11-26 10:02:32 +00001467 DOUT << " *** Substituting initializer allowed us to "
1468 << "simplify all users and delete global!\n";
Chris Lattner96a86b22004-12-12 05:53:50 +00001469 GV->eraseFromParent();
1470 ++NumDeleted;
1471 } else {
1472 GVI = GV;
1473 }
1474 ++NumSubstitute;
1475 return true;
Chris Lattner7a7ed022004-10-16 18:09:00 +00001476 }
Chris Lattner7a7ed022004-10-16 18:09:00 +00001477
Chris Lattner9b34a612004-10-09 21:48:45 +00001478 // Try to optimize globals based on the knowledge that only one value
1479 // (besides its initializer) is ever stored to the global.
Chris Lattner30ba5692004-10-11 05:54:41 +00001480 if (OptimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GVI,
1481 getAnalysis<TargetData>()))
Chris Lattner9b34a612004-10-09 21:48:45 +00001482 return true;
Chris Lattner96a86b22004-12-12 05:53:50 +00001483
1484 // Otherwise, if the global was not a boolean, we can shrink it to be a
1485 // boolean.
1486 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
Chris Lattner58e44f42008-01-14 01:17:44 +00001487 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Chris Lattner96a86b22004-12-12 05:53:50 +00001488 ++NumShrunkToBool;
1489 return true;
1490 }
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001491 }
1492 }
1493 return false;
1494}
1495
Chris Lattnerfb217ad2005-05-08 22:18:06 +00001496/// OnlyCalledDirectly - Return true if the specified function is only called
1497/// directly. In other words, its address is never taken.
1498static bool OnlyCalledDirectly(Function *F) {
1499 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1500 Instruction *User = dyn_cast<Instruction>(*UI);
1501 if (!User) return false;
1502 if (!isa<CallInst>(User) && !isa<InvokeInst>(User)) return false;
1503
1504 // See if the function address is passed as an argument.
1505 for (unsigned i = 1, e = User->getNumOperands(); i != e; ++i)
1506 if (User->getOperand(i) == F) return false;
1507 }
1508 return true;
1509}
1510
1511/// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
1512/// function, changing them to FastCC.
1513static void ChangeCalleesToFastCall(Function *F) {
1514 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1515 Instruction *User = cast<Instruction>(*UI);
1516 if (CallInst *CI = dyn_cast<CallInst>(User))
1517 CI->setCallingConv(CallingConv::Fast);
1518 else
1519 cast<InvokeInst>(User)->setCallingConv(CallingConv::Fast);
1520 }
1521}
Chris Lattnera4be1dc2004-10-08 20:59:28 +00001522
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001523bool GlobalOpt::OptimizeFunctions(Module &M) {
1524 bool Changed = false;
1525 // Optimize functions.
1526 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
1527 Function *F = FI++;
1528 F->removeDeadConstantUsers();
1529 if (F->use_empty() && (F->hasInternalLinkage() ||
1530 F->hasLinkOnceLinkage())) {
1531 M.getFunctionList().erase(F);
1532 Changed = true;
1533 ++NumFnDeleted;
1534 } else if (F->hasInternalLinkage() &&
1535 F->getCallingConv() == CallingConv::C && !F->isVarArg() &&
1536 OnlyCalledDirectly(F)) {
1537 // If this function has C calling conventions, is not a varargs
1538 // function, and is only called directly, promote it to use the Fast
1539 // calling convention.
1540 F->setCallingConv(CallingConv::Fast);
1541 ChangeCalleesToFastCall(F);
1542 ++NumFastCallFns;
1543 Changed = true;
1544 }
1545 }
1546 return Changed;
1547}
1548
1549bool GlobalOpt::OptimizeGlobalVars(Module &M) {
1550 bool Changed = false;
1551 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
1552 GVI != E; ) {
1553 GlobalVariable *GV = GVI++;
1554 if (!GV->isConstant() && GV->hasInternalLinkage() &&
1555 GV->hasInitializer())
1556 Changed |= ProcessInternalGlobal(GV, GVI);
1557 }
1558 return Changed;
1559}
1560
1561/// FindGlobalCtors - Find the llvm.globalctors list, verifying that all
1562/// initializers have an init priority of 65535.
1563GlobalVariable *GlobalOpt::FindGlobalCtors(Module &M) {
Alkis Evlogimenose9c6d362005-10-25 11:18:06 +00001564 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1565 I != E; ++I)
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001566 if (I->getName() == "llvm.global_ctors") {
1567 // Found it, verify it's an array of { int, void()* }.
1568 const ArrayType *ATy =dyn_cast<ArrayType>(I->getType()->getElementType());
1569 if (!ATy) return 0;
1570 const StructType *STy = dyn_cast<StructType>(ATy->getElementType());
1571 if (!STy || STy->getNumElements() != 2 ||
Reid Spencerc5b206b2006-12-31 05:48:39 +00001572 STy->getElementType(0) != Type::Int32Ty) return 0;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001573 const PointerType *PFTy = dyn_cast<PointerType>(STy->getElementType(1));
1574 if (!PFTy) return 0;
1575 const FunctionType *FTy = dyn_cast<FunctionType>(PFTy->getElementType());
1576 if (!FTy || FTy->getReturnType() != Type::VoidTy || FTy->isVarArg() ||
1577 FTy->getNumParams() != 0)
1578 return 0;
1579
1580 // Verify that the initializer is simple enough for us to handle.
1581 if (!I->hasInitializer()) return 0;
1582 ConstantArray *CA = dyn_cast<ConstantArray>(I->getInitializer());
1583 if (!CA) return 0;
1584 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1585 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(CA->getOperand(i))) {
Chris Lattner7d8e58f2005-09-26 02:19:27 +00001586 if (isa<ConstantPointerNull>(CS->getOperand(1)))
1587 continue;
1588
1589 // Must have a function or null ptr.
1590 if (!isa<Function>(CS->getOperand(1)))
1591 return 0;
1592
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001593 // Init priority must be standard.
1594 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
Reid Spencerb83eb642006-10-20 07:07:24 +00001595 if (!CI || CI->getZExtValue() != 65535)
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001596 return 0;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001597 } else {
1598 return 0;
1599 }
1600
1601 return I;
1602 }
1603 return 0;
1604}
1605
Chris Lattnerdb973e62005-09-26 02:31:18 +00001606/// ParseGlobalCtors - Given a llvm.global_ctors list that we can understand,
1607/// return a list of the functions and null terminator as a vector.
Chris Lattnerb1ab4582005-09-26 01:43:45 +00001608static std::vector<Function*> ParseGlobalCtors(GlobalVariable *GV) {
1609 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1610 std::vector<Function*> Result;
1611 Result.reserve(CA->getNumOperands());
1612 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) {
1613 ConstantStruct *CS = cast<ConstantStruct>(CA->getOperand(i));
1614 Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
1615 }
1616 return Result;
1617}
1618
Chris Lattnerdb973e62005-09-26 02:31:18 +00001619/// InstallGlobalCtors - Given a specified llvm.global_ctors list, install the
1620/// specified array, returning the new global to use.
1621static GlobalVariable *InstallGlobalCtors(GlobalVariable *GCL,
1622 const std::vector<Function*> &Ctors) {
1623 // If we made a change, reassemble the initializer list.
1624 std::vector<Constant*> CSVals;
Reid Spencerc5b206b2006-12-31 05:48:39 +00001625 CSVals.push_back(ConstantInt::get(Type::Int32Ty, 65535));
Chris Lattnerdb973e62005-09-26 02:31:18 +00001626 CSVals.push_back(0);
1627
1628 // Create the new init list.
1629 std::vector<Constant*> CAList;
1630 for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
Chris Lattner79c11012005-09-26 04:44:35 +00001631 if (Ctors[i]) {
Chris Lattnerdb973e62005-09-26 02:31:18 +00001632 CSVals[1] = Ctors[i];
Chris Lattner79c11012005-09-26 04:44:35 +00001633 } else {
Chris Lattnerdb973e62005-09-26 02:31:18 +00001634 const Type *FTy = FunctionType::get(Type::VoidTy,
1635 std::vector<const Type*>(), false);
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001636 const PointerType *PFTy = PointerType::getUnqual(FTy);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001637 CSVals[1] = Constant::getNullValue(PFTy);
Reid Spencerc5b206b2006-12-31 05:48:39 +00001638 CSVals[0] = ConstantInt::get(Type::Int32Ty, 2147483647);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001639 }
1640 CAList.push_back(ConstantStruct::get(CSVals));
1641 }
1642
1643 // Create the array initializer.
1644 const Type *StructTy =
1645 cast<ArrayType>(GCL->getType()->getElementType())->getElementType();
1646 Constant *CA = ConstantArray::get(ArrayType::get(StructTy, CAList.size()),
1647 CAList);
1648
1649 // If we didn't change the number of elements, don't create a new GV.
1650 if (CA->getType() == GCL->getInitializer()->getType()) {
1651 GCL->setInitializer(CA);
1652 return GCL;
1653 }
1654
1655 // Create the new global and insert it next to the existing list.
1656 GlobalVariable *NGV = new GlobalVariable(CA->getType(), GCL->isConstant(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001657 GCL->getLinkage(), CA, "",
1658 (Module *)NULL,
1659 GCL->isThreadLocal());
Chris Lattnerdb973e62005-09-26 02:31:18 +00001660 GCL->getParent()->getGlobalList().insert(GCL, NGV);
Chris Lattner046800a2007-02-11 01:08:35 +00001661 NGV->takeName(GCL);
Chris Lattnerdb973e62005-09-26 02:31:18 +00001662
1663 // Nuke the old list, replacing any uses with the new one.
1664 if (!GCL->use_empty()) {
1665 Constant *V = NGV;
1666 if (V->getType() != GCL->getType())
Reid Spencerd977d862006-12-12 23:36:14 +00001667 V = ConstantExpr::getBitCast(V, GCL->getType());
Chris Lattnerdb973e62005-09-26 02:31:18 +00001668 GCL->replaceAllUsesWith(V);
1669 }
1670 GCL->eraseFromParent();
1671
1672 if (Ctors.size())
1673 return NGV;
1674 else
1675 return 0;
1676}
Chris Lattner79c11012005-09-26 04:44:35 +00001677
1678
1679static Constant *getVal(std::map<Value*, Constant*> &ComputedValues,
1680 Value *V) {
1681 if (Constant *CV = dyn_cast<Constant>(V)) return CV;
1682 Constant *R = ComputedValues[V];
1683 assert(R && "Reference to an uncomputed value!");
1684 return R;
1685}
1686
1687/// isSimpleEnoughPointerToCommit - Return true if this constant is simple
1688/// enough for us to understand. In particular, if it is a cast of something,
1689/// we punt. We basically just support direct accesses to globals and GEP's of
1690/// globals. This should be kept up to date with CommitValueTo.
1691static bool isSimpleEnoughPointerToCommit(Constant *C) {
Chris Lattner231308c2005-09-27 04:50:03 +00001692 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
1693 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001694 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
Reid Spencer5cbf9852007-01-30 20:08:39 +00001695 return !GV->isDeclaration(); // reject external globals.
Chris Lattner231308c2005-09-27 04:50:03 +00001696 }
Chris Lattner798b4d52005-09-26 06:52:44 +00001697 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
1698 // Handle a constantexpr gep.
1699 if (CE->getOpcode() == Instruction::GetElementPtr &&
1700 isa<GlobalVariable>(CE->getOperand(0))) {
1701 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Chris Lattner231308c2005-09-27 04:50:03 +00001702 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001703 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
Chris Lattner798b4d52005-09-26 06:52:44 +00001704 return GV->hasInitializer() &&
1705 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1706 }
Chris Lattner79c11012005-09-26 04:44:35 +00001707 return false;
1708}
1709
Chris Lattner798b4d52005-09-26 06:52:44 +00001710/// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
1711/// initializer. This returns 'Init' modified to reflect 'Val' stored into it.
1712/// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
1713static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
1714 ConstantExpr *Addr, unsigned OpNo) {
1715 // Base case of the recursion.
1716 if (OpNo == Addr->getNumOperands()) {
1717 assert(Val->getType() == Init->getType() && "Type mismatch!");
1718 return Val;
1719 }
1720
1721 if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
1722 std::vector<Constant*> Elts;
1723
1724 // Break up the constant into its elements.
1725 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
1726 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
1727 Elts.push_back(CS->getOperand(i));
1728 } else if (isa<ConstantAggregateZero>(Init)) {
1729 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1730 Elts.push_back(Constant::getNullValue(STy->getElementType(i)));
1731 } else if (isa<UndefValue>(Init)) {
1732 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1733 Elts.push_back(UndefValue::get(STy->getElementType(i)));
1734 } else {
1735 assert(0 && "This code is out of sync with "
1736 " ConstantFoldLoadThroughGEPConstantExpr");
1737 }
1738
1739 // Replace the element that we are supposed to.
Reid Spencerb83eb642006-10-20 07:07:24 +00001740 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
1741 unsigned Idx = CU->getZExtValue();
1742 assert(Idx < STy->getNumElements() && "Struct index out of range!");
Chris Lattner798b4d52005-09-26 06:52:44 +00001743 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
1744
1745 // Return the modified struct.
Chris Lattnerf0a9aab2007-06-04 22:23:42 +00001746 return ConstantStruct::get(&Elts[0], Elts.size(), STy->isPacked());
Chris Lattner798b4d52005-09-26 06:52:44 +00001747 } else {
1748 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
1749 const ArrayType *ATy = cast<ArrayType>(Init->getType());
1750
1751 // Break up the array into elements.
1752 std::vector<Constant*> Elts;
1753 if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
1754 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1755 Elts.push_back(CA->getOperand(i));
1756 } else if (isa<ConstantAggregateZero>(Init)) {
1757 Constant *Elt = Constant::getNullValue(ATy->getElementType());
1758 Elts.assign(ATy->getNumElements(), Elt);
1759 } else if (isa<UndefValue>(Init)) {
1760 Constant *Elt = UndefValue::get(ATy->getElementType());
1761 Elts.assign(ATy->getNumElements(), Elt);
1762 } else {
1763 assert(0 && "This code is out of sync with "
1764 " ConstantFoldLoadThroughGEPConstantExpr");
1765 }
1766
Reid Spencerb83eb642006-10-20 07:07:24 +00001767 assert(CI->getZExtValue() < ATy->getNumElements());
1768 Elts[CI->getZExtValue()] =
1769 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
Chris Lattner798b4d52005-09-26 06:52:44 +00001770 return ConstantArray::get(ATy, Elts);
1771 }
1772}
1773
Chris Lattner79c11012005-09-26 04:44:35 +00001774/// CommitValueTo - We have decided that Addr (which satisfies the predicate
1775/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
1776static void CommitValueTo(Constant *Val, Constant *Addr) {
Chris Lattner798b4d52005-09-26 06:52:44 +00001777 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
1778 assert(GV->hasInitializer());
1779 GV->setInitializer(Val);
1780 return;
1781 }
1782
1783 ConstantExpr *CE = cast<ConstantExpr>(Addr);
1784 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1785
1786 Constant *Init = GV->getInitializer();
1787 Init = EvaluateStoreInto(Init, Val, CE, 2);
1788 GV->setInitializer(Init);
Chris Lattner79c11012005-09-26 04:44:35 +00001789}
1790
Chris Lattner562a0552005-09-26 05:16:34 +00001791/// ComputeLoadResult - Return the value that would be computed by a load from
1792/// P after the stores reflected by 'memory' have been performed. If we can't
1793/// decide, return null.
Chris Lattner04de1cf2005-09-26 05:15:37 +00001794static Constant *ComputeLoadResult(Constant *P,
1795 const std::map<Constant*, Constant*> &Memory) {
1796 // If this memory location has been recently stored, use the stored value: it
1797 // is the most up-to-date.
1798 std::map<Constant*, Constant*>::const_iterator I = Memory.find(P);
1799 if (I != Memory.end()) return I->second;
1800
1801 // Access it.
1802 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
1803 if (GV->hasInitializer())
1804 return GV->getInitializer();
1805 return 0;
Chris Lattner04de1cf2005-09-26 05:15:37 +00001806 }
Chris Lattner798b4d52005-09-26 06:52:44 +00001807
1808 // Handle a constantexpr getelementptr.
1809 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
1810 if (CE->getOpcode() == Instruction::GetElementPtr &&
1811 isa<GlobalVariable>(CE->getOperand(0))) {
1812 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1813 if (GV->hasInitializer())
1814 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1815 }
1816
1817 return 0; // don't know how to evaluate.
Chris Lattner04de1cf2005-09-26 05:15:37 +00001818}
1819
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001820/// EvaluateFunction - Evaluate a call to function F, returning true if
1821/// successful, false if we can't evaluate it. ActualArgs contains the formal
1822/// arguments for the function.
Chris Lattnercd271422005-09-27 04:45:34 +00001823static bool EvaluateFunction(Function *F, Constant *&RetVal,
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001824 const std::vector<Constant*> &ActualArgs,
1825 std::vector<Function*> &CallStack,
1826 std::map<Constant*, Constant*> &MutatedMemory,
1827 std::vector<GlobalVariable*> &AllocaTmps) {
Chris Lattnercd271422005-09-27 04:45:34 +00001828 // Check to see if this function is already executing (recursion). If so,
1829 // bail out. TODO: we might want to accept limited recursion.
1830 if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
1831 return false;
1832
1833 CallStack.push_back(F);
1834
Chris Lattner79c11012005-09-26 04:44:35 +00001835 /// Values - As we compute SSA register values, we store their contents here.
1836 std::map<Value*, Constant*> Values;
Chris Lattnercd271422005-09-27 04:45:34 +00001837
1838 // Initialize arguments to the incoming values specified.
1839 unsigned ArgNo = 0;
1840 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
1841 ++AI, ++ArgNo)
1842 Values[AI] = ActualArgs[ArgNo];
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001843
Chris Lattnercdf98be2005-09-26 04:57:38 +00001844 /// ExecutedBlocks - We only handle non-looping, non-recursive code. As such,
1845 /// we can only evaluate any one basic block at most once. This set keeps
1846 /// track of what we have executed so we can detect recursive cases etc.
1847 std::set<BasicBlock*> ExecutedBlocks;
Chris Lattnera22fdb02005-09-26 17:07:09 +00001848
Chris Lattner79c11012005-09-26 04:44:35 +00001849 // CurInst - The current instruction we're evaluating.
1850 BasicBlock::iterator CurInst = F->begin()->begin();
1851
1852 // This is the main evaluation loop.
1853 while (1) {
1854 Constant *InstResult = 0;
1855
1856 if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00001857 if (SI->isVolatile()) return false; // no volatile accesses.
Chris Lattner79c11012005-09-26 04:44:35 +00001858 Constant *Ptr = getVal(Values, SI->getOperand(1));
1859 if (!isSimpleEnoughPointerToCommit(Ptr))
1860 // If this is too complex for us to commit, reject it.
Chris Lattnercd271422005-09-27 04:45:34 +00001861 return false;
Chris Lattner79c11012005-09-26 04:44:35 +00001862 Constant *Val = getVal(Values, SI->getOperand(0));
1863 MutatedMemory[Ptr] = Val;
1864 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
1865 InstResult = ConstantExpr::get(BO->getOpcode(),
1866 getVal(Values, BO->getOperand(0)),
1867 getVal(Values, BO->getOperand(1)));
Reid Spencere4d87aa2006-12-23 06:05:41 +00001868 } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
1869 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
1870 getVal(Values, CI->getOperand(0)),
1871 getVal(Values, CI->getOperand(1)));
Chris Lattner79c11012005-09-26 04:44:35 +00001872 } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
Chris Lattner9a989f02006-11-30 17:26:08 +00001873 InstResult = ConstantExpr::getCast(CI->getOpcode(),
1874 getVal(Values, CI->getOperand(0)),
Chris Lattner79c11012005-09-26 04:44:35 +00001875 CI->getType());
1876 } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
1877 InstResult = ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)),
1878 getVal(Values, SI->getOperand(1)),
1879 getVal(Values, SI->getOperand(2)));
Chris Lattner04de1cf2005-09-26 05:15:37 +00001880 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
1881 Constant *P = getVal(Values, GEP->getOperand(0));
Chris Lattner55eb1c42007-01-31 04:40:53 +00001882 SmallVector<Constant*, 8> GEPOps;
Chris Lattner04de1cf2005-09-26 05:15:37 +00001883 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
1884 GEPOps.push_back(getVal(Values, GEP->getOperand(i)));
Chris Lattner55eb1c42007-01-31 04:40:53 +00001885 InstResult = ConstantExpr::getGetElementPtr(P, &GEPOps[0], GEPOps.size());
Chris Lattner04de1cf2005-09-26 05:15:37 +00001886 } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00001887 if (LI->isVolatile()) return false; // no volatile accesses.
Chris Lattner04de1cf2005-09-26 05:15:37 +00001888 InstResult = ComputeLoadResult(getVal(Values, LI->getOperand(0)),
1889 MutatedMemory);
Chris Lattnercd271422005-09-27 04:45:34 +00001890 if (InstResult == 0) return false; // Could not evaluate load.
Chris Lattnera22fdb02005-09-26 17:07:09 +00001891 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00001892 if (AI->isArrayAllocation()) return false; // Cannot handle array allocs.
Chris Lattnera22fdb02005-09-26 17:07:09 +00001893 const Type *Ty = AI->getType()->getElementType();
1894 AllocaTmps.push_back(new GlobalVariable(Ty, false,
1895 GlobalValue::InternalLinkage,
1896 UndefValue::get(Ty),
1897 AI->getName()));
Chris Lattnercd271422005-09-27 04:45:34 +00001898 InstResult = AllocaTmps.back();
1899 } else if (CallInst *CI = dyn_cast<CallInst>(CurInst)) {
Chris Lattner7cd580f2006-07-07 21:37:01 +00001900 // Cannot handle inline asm.
1901 if (isa<InlineAsm>(CI->getOperand(0))) return false;
1902
Chris Lattnercd271422005-09-27 04:45:34 +00001903 // Resolve function pointers.
1904 Function *Callee = dyn_cast<Function>(getVal(Values, CI->getOperand(0)));
1905 if (!Callee) return false; // Cannot resolve.
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00001906
Chris Lattnercd271422005-09-27 04:45:34 +00001907 std::vector<Constant*> Formals;
1908 for (unsigned i = 1, e = CI->getNumOperands(); i != e; ++i)
1909 Formals.push_back(getVal(Values, CI->getOperand(i)));
Chris Lattnercd271422005-09-27 04:45:34 +00001910
Reid Spencer5cbf9852007-01-30 20:08:39 +00001911 if (Callee->isDeclaration()) {
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00001912 // If this is a function we can constant fold, do it.
Chris Lattner6c1f5652007-01-30 23:14:52 +00001913 if (Constant *C = ConstantFoldCall(Callee, &Formals[0],
1914 Formals.size())) {
Chris Lattnera9ec8ab2005-09-27 05:02:43 +00001915 InstResult = C;
1916 } else {
1917 return false;
1918 }
1919 } else {
1920 if (Callee->getFunctionType()->isVarArg())
1921 return false;
1922
1923 Constant *RetVal;
1924
1925 // Execute the call, if successful, use the return value.
1926 if (!EvaluateFunction(Callee, RetVal, Formals, CallStack,
1927 MutatedMemory, AllocaTmps))
1928 return false;
1929 InstResult = RetVal;
1930 }
Reid Spencer3ed469c2006-11-02 20:25:50 +00001931 } else if (isa<TerminatorInst>(CurInst)) {
Chris Lattnercdf98be2005-09-26 04:57:38 +00001932 BasicBlock *NewBB = 0;
1933 if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
1934 if (BI->isUnconditional()) {
1935 NewBB = BI->getSuccessor(0);
1936 } else {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001937 ConstantInt *Cond =
1938 dyn_cast<ConstantInt>(getVal(Values, BI->getCondition()));
Chris Lattner97d1fad2007-01-12 18:30:11 +00001939 if (!Cond) return false; // Cannot determine.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001940
Reid Spencer579dca12007-01-12 04:24:46 +00001941 NewBB = BI->getSuccessor(!Cond->getZExtValue());
Chris Lattnercdf98be2005-09-26 04:57:38 +00001942 }
1943 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
1944 ConstantInt *Val =
1945 dyn_cast<ConstantInt>(getVal(Values, SI->getCondition()));
Chris Lattnercd271422005-09-27 04:45:34 +00001946 if (!Val) return false; // Cannot determine.
Chris Lattnercdf98be2005-09-26 04:57:38 +00001947 NewBB = SI->getSuccessor(SI->findCaseValue(Val));
1948 } else if (ReturnInst *RI = dyn_cast<ReturnInst>(CurInst)) {
Chris Lattnercd271422005-09-27 04:45:34 +00001949 if (RI->getNumOperands())
1950 RetVal = getVal(Values, RI->getOperand(0));
1951
1952 CallStack.pop_back(); // return from fn.
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001953 return true; // We succeeded at evaluating this ctor!
Chris Lattnercdf98be2005-09-26 04:57:38 +00001954 } else {
Chris Lattnercd271422005-09-27 04:45:34 +00001955 // invoke, unwind, unreachable.
1956 return false; // Cannot handle this terminator.
Chris Lattnercdf98be2005-09-26 04:57:38 +00001957 }
1958
1959 // Okay, we succeeded in evaluating this control flow. See if we have
Chris Lattnercd271422005-09-27 04:45:34 +00001960 // executed the new block before. If so, we have a looping function,
1961 // which we cannot evaluate in reasonable time.
Chris Lattnercdf98be2005-09-26 04:57:38 +00001962 if (!ExecutedBlocks.insert(NewBB).second)
Chris Lattnercd271422005-09-27 04:45:34 +00001963 return false; // looped!
Chris Lattnercdf98be2005-09-26 04:57:38 +00001964
1965 // Okay, we have never been in this block before. Check to see if there
1966 // are any PHI nodes. If so, evaluate them with information about where
1967 // we came from.
1968 BasicBlock *OldBB = CurInst->getParent();
1969 CurInst = NewBB->begin();
1970 PHINode *PN;
1971 for (; (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
1972 Values[PN] = getVal(Values, PN->getIncomingValueForBlock(OldBB));
1973
1974 // Do NOT increment CurInst. We know that the terminator had no value.
1975 continue;
Chris Lattner79c11012005-09-26 04:44:35 +00001976 } else {
Chris Lattner79c11012005-09-26 04:44:35 +00001977 // Did not know how to evaluate this!
Chris Lattnercd271422005-09-27 04:45:34 +00001978 return false;
Chris Lattner79c11012005-09-26 04:44:35 +00001979 }
1980
1981 if (!CurInst->use_empty())
1982 Values[CurInst] = InstResult;
1983
1984 // Advance program counter.
1985 ++CurInst;
1986 }
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00001987}
1988
1989/// EvaluateStaticConstructor - Evaluate static constructors in the function, if
1990/// we can. Return true if we can, false otherwise.
1991static bool EvaluateStaticConstructor(Function *F) {
1992 /// MutatedMemory - For each store we execute, we update this map. Loads
1993 /// check this to get the most up-to-date value. If evaluation is successful,
1994 /// this state is committed to the process.
1995 std::map<Constant*, Constant*> MutatedMemory;
1996
1997 /// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
1998 /// to represent its body. This vector is needed so we can delete the
1999 /// temporary globals when we are done.
2000 std::vector<GlobalVariable*> AllocaTmps;
2001
2002 /// CallStack - This is used to detect recursion. In pathological situations
2003 /// we could hit exponential behavior, but at least there is nothing
2004 /// unbounded.
2005 std::vector<Function*> CallStack;
2006
2007 // Call the function.
Chris Lattnercd271422005-09-27 04:45:34 +00002008 Constant *RetValDummy;
2009 bool EvalSuccess = EvaluateFunction(F, RetValDummy, std::vector<Constant*>(),
2010 CallStack, MutatedMemory, AllocaTmps);
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002011 if (EvalSuccess) {
Chris Lattnera22fdb02005-09-26 17:07:09 +00002012 // We succeeded at evaluation: commit the result.
Bill Wendling0a81aac2006-11-26 10:02:32 +00002013 DOUT << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
2014 << F->getName() << "' to " << MutatedMemory.size()
2015 << " stores.\n";
Chris Lattnera22fdb02005-09-26 17:07:09 +00002016 for (std::map<Constant*, Constant*>::iterator I = MutatedMemory.begin(),
2017 E = MutatedMemory.end(); I != E; ++I)
2018 CommitValueTo(I->second, I->first);
2019 }
Chris Lattner79c11012005-09-26 04:44:35 +00002020
Chris Lattnera22fdb02005-09-26 17:07:09 +00002021 // At this point, we are done interpreting. If we created any 'alloca'
2022 // temporaries, release them now.
2023 while (!AllocaTmps.empty()) {
2024 GlobalVariable *Tmp = AllocaTmps.back();
2025 AllocaTmps.pop_back();
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002026
Chris Lattnera22fdb02005-09-26 17:07:09 +00002027 // If there are still users of the alloca, the program is doing something
2028 // silly, e.g. storing the address of the alloca somewhere and using it
2029 // later. Since this is undefined, we'll just make it be null.
2030 if (!Tmp->use_empty())
2031 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
2032 delete Tmp;
2033 }
Chris Lattneraae4a1c2005-09-26 07:34:35 +00002034
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002035 return EvalSuccess;
Chris Lattner79c11012005-09-26 04:44:35 +00002036}
2037
Chris Lattnerdb973e62005-09-26 02:31:18 +00002038
Chris Lattner8a7cc6e2005-09-27 04:27:01 +00002039
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002040/// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
2041/// Return true if anything changed.
2042bool GlobalOpt::OptimizeGlobalCtorsList(GlobalVariable *&GCL) {
2043 std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
2044 bool MadeChange = false;
2045 if (Ctors.empty()) return false;
2046
2047 // Loop over global ctors, optimizing them when we can.
2048 for (unsigned i = 0; i != Ctors.size(); ++i) {
2049 Function *F = Ctors[i];
2050 // Found a null terminator in the middle of the list, prune off the rest of
2051 // the list.
Chris Lattner7d8e58f2005-09-26 02:19:27 +00002052 if (F == 0) {
2053 if (i != Ctors.size()-1) {
2054 Ctors.resize(i+1);
2055 MadeChange = true;
2056 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002057 break;
2058 }
2059
Chris Lattner79c11012005-09-26 04:44:35 +00002060 // We cannot simplify external ctor functions.
2061 if (F->empty()) continue;
2062
2063 // If we can evaluate the ctor at compile time, do.
2064 if (EvaluateStaticConstructor(F)) {
2065 Ctors.erase(Ctors.begin()+i);
2066 MadeChange = true;
2067 --i;
2068 ++NumCtorsEvaluated;
2069 continue;
2070 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002071 }
2072
2073 if (!MadeChange) return false;
2074
Chris Lattnerdb973e62005-09-26 02:31:18 +00002075 GCL = InstallGlobalCtors(GCL, Ctors);
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002076 return true;
2077}
2078
2079
Chris Lattner7a90b682004-10-07 04:16:33 +00002080bool GlobalOpt::runOnModule(Module &M) {
Chris Lattner079236d2004-02-25 21:34:36 +00002081 bool Changed = false;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002082
2083 // Try to find the llvm.globalctors list.
2084 GlobalVariable *GlobalCtors = FindGlobalCtors(M);
Chris Lattner7a90b682004-10-07 04:16:33 +00002085
Chris Lattner7a90b682004-10-07 04:16:33 +00002086 bool LocalChange = true;
2087 while (LocalChange) {
2088 LocalChange = false;
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002089
2090 // Delete functions that are trivially dead, ccc -> fastcc
2091 LocalChange |= OptimizeFunctions(M);
2092
2093 // Optimize global_ctors list.
2094 if (GlobalCtors)
2095 LocalChange |= OptimizeGlobalCtorsList(GlobalCtors);
2096
2097 // Optimize non-address-taken globals.
2098 LocalChange |= OptimizeGlobalVars(M);
Chris Lattner7a90b682004-10-07 04:16:33 +00002099 Changed |= LocalChange;
2100 }
Chris Lattnerb1ab4582005-09-26 01:43:45 +00002101
2102 // TODO: Move all global ctors functions to the end of the module for code
2103 // layout.
2104
Chris Lattner079236d2004-02-25 21:34:36 +00002105 return Changed;
2106}