blob: 91e1296c89b9c9d3df7f17021d1e620eb330504b [file] [log] [blame]
Chris Lattner25db5802004-10-07 04:16:33 +00001//===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chris Lattner25db5802004-10-07 04:16:33 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Chris Lattner25db5802004-10-07 04:16:33 +00008//===----------------------------------------------------------------------===//
9//
10// This pass transforms simple global variables that never have their address
11// taken. If obviously true, it marks read/write globals as constant, deletes
12// variables only stored to, etc.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "globalopt"
17#include "llvm/Transforms/IPO.h"
Chris Lattnera4c80222005-05-08 22:18:06 +000018#include "llvm/CallingConv.h"
Chris Lattner25db5802004-10-07 04:16:33 +000019#include "llvm/Constants.h"
20#include "llvm/DerivedTypes.h"
21#include "llvm/Instructions.h"
Chris Lattner7561ca12005-02-27 18:58:52 +000022#include "llvm/IntrinsicInst.h"
Chris Lattner25db5802004-10-07 04:16:33 +000023#include "llvm/Module.h"
24#include "llvm/Pass.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000025#include "llvm/Analysis/ConstantFolding.h"
Chris Lattner004e2502004-10-11 05:54:41 +000026#include "llvm/Target/TargetData.h"
Reid Spencer557ab152007-02-05 23:32:05 +000027#include "llvm/Support/Compiler.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000028#include "llvm/Support/Debug.h"
Chris Lattner2d2892e2007-09-13 16:30:19 +000029#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerf96f4a82007-01-31 04:40:53 +000030#include "llvm/ADT/SmallVector.h"
Chris Lattner25db5802004-10-07 04:16:33 +000031#include "llvm/ADT/Statistic.h"
Chris Lattnerabab0712004-10-08 17:32:09 +000032#include "llvm/ADT/StringExtras.h"
Chris Lattner25db5802004-10-07 04:16:33 +000033#include <algorithm>
Chris Lattnerc597b8a2006-01-22 23:32:06 +000034#include <set>
Chris Lattner25db5802004-10-07 04:16:33 +000035using namespace llvm;
36
Chris Lattner1631bcb2006-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 Lattner25db5802004-10-07 04:16:33 +000048
Chris Lattner1631bcb2006-12-19 22:09:18 +000049namespace {
Reid Spencer557ab152007-02-05 23:32:05 +000050 struct VISIBILITY_HIDDEN GlobalOpt : public ModulePass {
Chris Lattner004e2502004-10-11 05:54:41 +000051 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
52 AU.addRequired<TargetData>();
53 }
Nick Lewyckye7da2d62007-05-06 13:37:16 +000054 static char ID; // Pass identification, replacement for typeid
Devang Patel09f162c2007-05-01 21:15:47 +000055 GlobalOpt() : ModulePass((intptr_t)&ID) {}
Misha Brukmanb1c93172005-04-21 23:48:37 +000056
Chris Lattner25db5802004-10-07 04:16:33 +000057 bool runOnModule(Module &M);
Chris Lattner004e2502004-10-11 05:54:41 +000058
59 private:
Chris Lattner41b6a5a2005-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 Lattnerc2d3d312006-08-27 22:42:52 +000064 bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
Chris Lattner25db5802004-10-07 04:16:33 +000065 };
66
Devang Patel8c78a0b2007-05-03 01:11:54 +000067 char GlobalOpt::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +000068 RegisterPass<GlobalOpt> X("globalopt", "Global Variable Optimizer");
Chris Lattner25db5802004-10-07 04:16:33 +000069}
70
71ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
72
73/// 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 Lattner617f1a32004-10-07 21:30:30 +000075/// this info will be accurate.
Reid Spencer557ab152007-02-05 23:32:05 +000076struct VISIBILITY_HIDDEN GlobalStatus {
Chris Lattner617f1a32004-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 Lattner25db5802004-10-07 04:16:33 +000079 bool isLoaded;
Chris Lattner617f1a32004-10-07 21:30:30 +000080
81 /// StoredType - Keep track of what stores to the global look like.
82 ///
Chris Lattner25db5802004-10-07 04:16:33 +000083 enum StoredType {
Chris Lattner617f1a32004-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 Lattner25db5802004-10-07 04:16:33 +0000102 } StoredType;
Chris Lattner617f1a32004-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 Lattner5a0bd612006-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 Evlogimenosc4a44c62005-02-10 18:36:30 +0000112 Function *AccessingFunction;
113 bool HasMultipleAccessingFunctions;
114
Chris Lattner5a0bd612006-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 Lattner50bdfcb2005-06-15 21:11:48 +0000117 bool HasNonInstructionUser;
118
Chris Lattner5a0bd612006-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 Lattner617f1a32004-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 Lattner25db5802004-10-07 04:16:33 +0000125 bool isNotSuitableForSRA;
126
Chris Lattner617f1a32004-10-07 21:30:30 +0000127 GlobalStatus() : isLoaded(false), StoredType(NotStored), StoredOnceValue(0),
Alkis Evlogimenosc4a44c62005-02-10 18:36:30 +0000128 AccessingFunction(0), HasMultipleAccessingFunctions(false),
Chris Lattner5a0bd612006-11-01 18:03:33 +0000129 HasNonInstructionUser(false), HasPHIUser(false),
130 isNotSuitableForSRA(false) {}
Chris Lattner25db5802004-10-07 04:16:33 +0000131};
132
Chris Lattner1c4bddc2004-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 Lattner25db5802004-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.
154///
155static bool AnalyzeGlobal(Value *V, GlobalStatus &GS,
156 std::set<PHINode*> &PHIUsers) {
157 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
158 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) {
Chris Lattner50bdfcb2005-06-15 21:11:48 +0000159 GS.HasNonInstructionUser = true;
160
Chris Lattner25db5802004-10-07 04:16:33 +0000161 if (AnalyzeGlobal(CE, GS, PHIUsers)) return true;
162 if (CE->getOpcode() != Instruction::GetElementPtr)
163 GS.isNotSuitableForSRA = true;
Chris Lattnerabab0712004-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 Lattner25db5802004-10-07 04:16:33 +0000179 } else if (Instruction *I = dyn_cast<Instruction>(*UI)) {
Alkis Evlogimenosc4a44c62005-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 Lattner25db5802004-10-07 04:16:33 +0000187 if (isa<LoadInst>(I)) {
188 GS.isLoaded = true;
189 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Chris Lattner02b6c912004-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 Lattner617f1a32004-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 Lattner28eeb732004-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 Lattner617f1a32004-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 Lattner28eeb732004-11-14 20:50:30 +0000209 GS.StoredOnceValue = StoredVal;
Chris Lattner617f1a32004-10-07 21:30:30 +0000210 } else if (GS.StoredType == GlobalStatus::isStoredOnce &&
Chris Lattner28eeb732004-11-14 20:50:30 +0000211 GS.StoredOnceValue == StoredVal) {
Chris Lattner617f1a32004-10-07 21:30:30 +0000212 // noop.
213 } else {
214 GS.StoredType = GlobalStatus::isStored;
215 }
216 } else {
Chris Lattner25db5802004-10-07 04:16:33 +0000217 GS.StoredType = GlobalStatus::isStored;
Chris Lattner617f1a32004-10-07 21:30:30 +0000218 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000219 } else if (isa<GetElementPtrInst>(I)) {
Chris Lattner25db5802004-10-07 04:16:33 +0000220 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Chris Lattner004e2502004-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 Brukmanb1c93172005-04-21 23:48:37 +0000225 !cast<Constant>(I->getOperand(1))->isNullValue() ||
Chris Lattner004e2502004-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 Lattner7561ca12005-02-27 18:58:52 +0000237 } else if (isa<SelectInst>(I)) {
Chris Lattner25db5802004-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 Lattner5a0bd612006-11-01 18:03:33 +0000246 GS.HasPHIUser = true;
Reid Spencer266e42b2006-12-23 06:05:41 +0000247 } else if (isa<CmpInst>(I)) {
Chris Lattner25db5802004-10-07 04:16:33 +0000248 GS.isNotSuitableForSRA = true;
Chris Lattner7561ca12005-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 Lattner25db5802004-10-07 04:16:33 +0000259 } else {
260 return true; // Any other non-load instruction might take address!
261 }
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000262 } else if (Constant *C = dyn_cast<Constant>(*UI)) {
Chris Lattner50bdfcb2005-06-15 21:11:48 +0000263 GS.HasNonInstructionUser = true;
Chris Lattner1c4bddc2004-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 Lattner25db5802004-10-07 04:16:33 +0000267 } else {
Chris Lattner50bdfcb2005-06-15 21:11:48 +0000268 GS.HasNonInstructionUser = true;
269 // Otherwise must be some other user.
Chris Lattner25db5802004-10-07 04:16:33 +0000270 return true;
271 }
272
273 return false;
274}
275
Chris Lattnerabab0712004-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 Spencere0fc4df2006-10-20 07:07:24 +0000279 unsigned IdxV = CI->getZExtValue();
Chris Lattner25db5802004-10-07 04:16:33 +0000280
Chris Lattnerabab0712004-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 Spencerd84d35b2007-02-15 02:26:10 +0000285 } else if (ConstantVector *CP = dyn_cast<ConstantVector>(Agg)) {
Chris Lattnerabab0712004-10-08 17:32:09 +0000286 if (IdxV < CP->getNumOperands()) return CP->getOperand(IdxV);
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000287 } else if (isa<ConstantAggregateZero>(Agg)) {
Chris Lattnerabab0712004-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 Lattner8e71c6a2004-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 Lattnerabab0712004-10-08 17:32:09 +0000303 }
304 return 0;
305}
Chris Lattner25db5802004-10-07 04:16:33 +0000306
Chris Lattner25db5802004-10-07 04:16:33 +0000307
308/// 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 Lattnercb9f1522004-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 Lattner25db5802004-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 Brukmanb1c93172005-04-21 23:48:37 +0000316
Chris Lattner25db5802004-10-07 04:16:33 +0000317 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
Chris Lattner7561ca12005-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 Lattner25db5802004-10-07 04:16:33 +0000324 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
325 // Store must be unreachable or storing Init into the global.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000326 SI->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000327 Changed = true;
Chris Lattner25db5802004-10-07 04:16:33 +0000328 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
329 if (CE->getOpcode() == Instruction::GetElementPtr) {
Chris Lattner46d9ff082005-09-26 07:34:35 +0000330 Constant *SubInit = 0;
331 if (Init)
332 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner7561ca12005-02-27 18:58:52 +0000333 Changed |= CleanupConstantGlobalUsers(CE, SubInit);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000334 } else if (CE->getOpcode() == Instruction::BitCast &&
Chris Lattner7561ca12005-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 Lattner25db5802004-10-07 04:16:33 +0000343 }
344 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner61ff32c2005-09-26 05:34:07 +0000345 Constant *SubInit = 0;
Chris Lattner46af55e2005-09-26 06:52:44 +0000346 ConstantExpr *CE =
347 dyn_cast_or_null<ConstantExpr>(ConstantFoldInstruction(GEP));
Chris Lattnereb953f02005-09-27 22:28:11 +0000348 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Chris Lattner61ff32c2005-09-26 05:34:07 +0000349 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner7561ca12005-02-27 18:58:52 +0000350 Changed |= CleanupConstantGlobalUsers(GEP, SubInit);
Chris Lattnera0e769c2004-10-10 16:47:33 +0000351
Chris Lattnercb9f1522004-10-10 16:43:46 +0000352 if (GEP->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000353 GEP->eraseFromParent();
Chris Lattnercb9f1522004-10-10 16:43:46 +0000354 Changed = true;
355 }
Chris Lattner7561ca12005-02-27 18:58:52 +0000356 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
357 if (MI->getRawDest() == V) {
358 MI->eraseFromParent();
359 Changed = true;
360 }
361
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000362 } else if (Constant *C = dyn_cast<Constant>(U)) {
363 // If we have a chain of dead constantexprs or other things dangling from
364 // us, and if they are all dead, nuke them without remorse.
365 if (ConstantIsDead(C)) {
366 C->destroyConstant();
Chris Lattner7561ca12005-02-27 18:58:52 +0000367 // This could have invalidated UI, start over from scratch.
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000368 CleanupConstantGlobalUsers(V, Init);
Chris Lattnercb9f1522004-10-10 16:43:46 +0000369 return true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +0000370 }
Chris Lattner25db5802004-10-07 04:16:33 +0000371 }
372 }
Chris Lattnercb9f1522004-10-10 16:43:46 +0000373 return Changed;
Chris Lattner25db5802004-10-07 04:16:33 +0000374}
375
Chris Lattnerabab0712004-10-08 17:32:09 +0000376/// SRAGlobal - Perform scalar replacement of aggregates on the specified global
377/// variable. This opens the door for other optimizations by exposing the
378/// behavior of the program in a more fine-grained way. We have determined that
379/// this transformation is safe already. We return the first global variable we
380/// insert so that the caller can reprocess it.
381static GlobalVariable *SRAGlobal(GlobalVariable *GV) {
382 assert(GV->hasInternalLinkage() && !GV->isConstant());
383 Constant *Init = GV->getInitializer();
384 const Type *Ty = Init->getType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000385
Chris Lattnerabab0712004-10-08 17:32:09 +0000386 std::vector<GlobalVariable*> NewGlobals;
387 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
388
389 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
390 NewGlobals.reserve(STy->getNumElements());
391 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
392 Constant *In = getAggregateConstantElement(Init,
Reid Spencerc635f472006-12-31 05:48:39 +0000393 ConstantInt::get(Type::Int32Ty, i));
Chris Lattnerabab0712004-10-08 17:32:09 +0000394 assert(In && "Couldn't get element of initializer?");
395 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
396 GlobalVariable::InternalLinkage,
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000397 In, GV->getName()+"."+utostr(i),
398 (Module *)NULL,
399 GV->isThreadLocal());
Chris Lattnerabab0712004-10-08 17:32:09 +0000400 Globals.insert(GV, NGV);
401 NewGlobals.push_back(NGV);
402 }
403 } else if (const SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
404 unsigned NumElements = 0;
405 if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
406 NumElements = ATy->getNumElements();
Reid Spencerd84d35b2007-02-15 02:26:10 +0000407 else if (const VectorType *PTy = dyn_cast<VectorType>(STy))
Chris Lattnerabab0712004-10-08 17:32:09 +0000408 NumElements = PTy->getNumElements();
409 else
410 assert(0 && "Unknown aggregate sequential type!");
411
Chris Lattner25169ca2005-02-23 16:53:04 +0000412 if (NumElements > 16 && GV->hasNUsesOrMore(16))
Chris Lattnerd6a44922005-02-01 01:23:31 +0000413 return 0; // It's not worth it.
Chris Lattnerabab0712004-10-08 17:32:09 +0000414 NewGlobals.reserve(NumElements);
415 for (unsigned i = 0, e = NumElements; i != e; ++i) {
416 Constant *In = getAggregateConstantElement(Init,
Reid Spencerc635f472006-12-31 05:48:39 +0000417 ConstantInt::get(Type::Int32Ty, i));
Chris Lattnerabab0712004-10-08 17:32:09 +0000418 assert(In && "Couldn't get element of initializer?");
419
420 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
421 GlobalVariable::InternalLinkage,
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000422 In, GV->getName()+"."+utostr(i),
423 (Module *)NULL,
424 GV->isThreadLocal());
Chris Lattnerabab0712004-10-08 17:32:09 +0000425 Globals.insert(GV, NGV);
426 NewGlobals.push_back(NGV);
427 }
428 }
429
430 if (NewGlobals.empty())
431 return 0;
432
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000433 DOUT << "PERFORMING GLOBAL SRA ON: " << *GV;
Chris Lattner004e2502004-10-11 05:54:41 +0000434
Reid Spencerc635f472006-12-31 05:48:39 +0000435 Constant *NullInt = Constant::getNullValue(Type::Int32Ty);
Chris Lattnerabab0712004-10-08 17:32:09 +0000436
437 // Loop over all of the uses of the global, replacing the constantexpr geps,
438 // with smaller constantexpr geps or direct references.
439 while (!GV->use_empty()) {
Chris Lattner004e2502004-10-11 05:54:41 +0000440 User *GEP = GV->use_back();
441 assert(((isa<ConstantExpr>(GEP) &&
442 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
443 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000444
Chris Lattnerabab0712004-10-08 17:32:09 +0000445 // Ignore the 1th operand, which has to be zero or else the program is quite
446 // broken (undefined). Get the 2nd operand, which is the structure or array
447 // index.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000448 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnerabab0712004-10-08 17:32:09 +0000449 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
450
Chris Lattner004e2502004-10-11 05:54:41 +0000451 Value *NewPtr = NewGlobals[Val];
Chris Lattnerabab0712004-10-08 17:32:09 +0000452
453 // Form a shorter GEP if needed.
Chris Lattner004e2502004-10-11 05:54:41 +0000454 if (GEP->getNumOperands() > 3)
455 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000456 SmallVector<Constant*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000457 Idxs.push_back(NullInt);
458 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
459 Idxs.push_back(CE->getOperand(i));
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000460 NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr),
461 &Idxs[0], Idxs.size());
Chris Lattner004e2502004-10-11 05:54:41 +0000462 } else {
463 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
Chris Lattner927653f2007-01-31 19:59:55 +0000464 SmallVector<Value*, 8> Idxs;
Chris Lattner004e2502004-10-11 05:54:41 +0000465 Idxs.push_back(NullInt);
466 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
467 Idxs.push_back(GEPI->getOperand(i));
David Greenec656cbb2007-09-04 15:46:09 +0000468 NewPtr = new GetElementPtrInst(NewPtr, Idxs.begin(), Idxs.end(),
Chris Lattner004e2502004-10-11 05:54:41 +0000469 GEPI->getName()+"."+utostr(Val), GEPI);
470 }
471 GEP->replaceAllUsesWith(NewPtr);
472
473 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000474 GEPI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000475 else
476 cast<ConstantExpr>(GEP)->destroyConstant();
Chris Lattnerabab0712004-10-08 17:32:09 +0000477 }
478
Chris Lattner73ad73e2004-10-08 20:25:55 +0000479 // Delete the old global, now that it is dead.
480 Globals.erase(GV);
Chris Lattnerabab0712004-10-08 17:32:09 +0000481 ++NumSRA;
Chris Lattner004e2502004-10-11 05:54:41 +0000482
483 // Loop over the new globals array deleting any globals that are obviously
484 // dead. This can arise due to scalarization of a structure or an array that
485 // has elements that are dead.
486 unsigned FirstGlobal = 0;
487 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
488 if (NewGlobals[i]->use_empty()) {
489 Globals.erase(NewGlobals[i]);
490 if (FirstGlobal == i) ++FirstGlobal;
491 }
492
493 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : 0;
Chris Lattnerabab0712004-10-08 17:32:09 +0000494}
495
Chris Lattner09a52722004-10-09 21:48:45 +0000496/// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
Chris Lattner2d2892e2007-09-13 16:30:19 +0000497/// value will trap if the value is dynamically null. PHIs keeps track of any
498/// phi nodes we've seen to avoid reprocessing them.
499static bool AllUsesOfValueWillTrapIfNull(Value *V,
500 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner09a52722004-10-09 21:48:45 +0000501 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
502 if (isa<LoadInst>(*UI)) {
503 // Will trap.
504 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
505 if (SI->getOperand(0) == V) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000506 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner09a52722004-10-09 21:48:45 +0000507 return false; // Storing the value.
508 }
509 } else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
510 if (CI->getOperand(0) != V) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000511 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner09a52722004-10-09 21:48:45 +0000512 return false; // Not calling the ptr
513 }
514 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
515 if (II->getOperand(0) != V) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000516 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner09a52722004-10-09 21:48:45 +0000517 return false; // Not calling the ptr
518 }
Chris Lattner2d2892e2007-09-13 16:30:19 +0000519 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(*UI)) {
520 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Chris Lattner09a52722004-10-09 21:48:45 +0000521 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000522 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
523 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
524 // If we've already seen this phi node, ignore it, it has already been
525 // checked.
526 if (PHIs.insert(PN))
527 return AllUsesOfValueWillTrapIfNull(PN, PHIs);
Reid Spencer266e42b2006-12-23 06:05:41 +0000528 } else if (isa<ICmpInst>(*UI) &&
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000529 isa<ConstantPointerNull>(UI->getOperand(1))) {
530 // Ignore setcc X, null
Chris Lattner09a52722004-10-09 21:48:45 +0000531 } else {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000532 //cerr << "NONTRAPPING USE: " << **UI;
Chris Lattner09a52722004-10-09 21:48:45 +0000533 return false;
534 }
535 return true;
536}
537
538/// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000539/// from GV will trap if the loaded value is null. Note that this also permits
540/// comparisons of the loaded value against null, as a special case.
Chris Lattner09a52722004-10-09 21:48:45 +0000541static bool AllUsesOfLoadedValueWillTrapIfNull(GlobalVariable *GV) {
542 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI!=E; ++UI)
543 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
Chris Lattner2d2892e2007-09-13 16:30:19 +0000544 SmallPtrSet<PHINode*, 8> PHIs;
545 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Chris Lattner09a52722004-10-09 21:48:45 +0000546 return false;
547 } else if (isa<StoreInst>(*UI)) {
548 // Ignore stores to the global.
549 } else {
550 // We don't know or understand this user, bail out.
Bill Wendlingf3baad32006-12-07 01:30:32 +0000551 //cerr << "UNKNOWN USER OF GLOBAL!: " << **UI;
Chris Lattner09a52722004-10-09 21:48:45 +0000552 return false;
553 }
554
555 return true;
556}
557
Chris Lattnere42eb312004-10-10 23:14:11 +0000558static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
559 bool Changed = false;
560 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
561 Instruction *I = cast<Instruction>(*UI++);
562 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
563 LI->setOperand(0, NewV);
564 Changed = true;
565 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
566 if (SI->getOperand(1) == V) {
567 SI->setOperand(1, NewV);
568 Changed = true;
569 }
570 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
571 if (I->getOperand(0) == V) {
572 // Calling through the pointer! Turn into a direct call, but be careful
573 // that the pointer is not also being passed as an argument.
574 I->setOperand(0, NewV);
575 Changed = true;
576 bool PassedAsArg = false;
577 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i)
578 if (I->getOperand(i) == V) {
579 PassedAsArg = true;
580 I->setOperand(i, NewV);
581 }
582
583 if (PassedAsArg) {
584 // Being passed as an argument also. Be careful to not invalidate UI!
585 UI = V->use_begin();
586 }
587 }
588 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
589 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
Chris Lattner3ede00b2006-11-30 17:32:29 +0000590 ConstantExpr::getCast(CI->getOpcode(),
591 NewV, CI->getType()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000592 if (CI->use_empty()) {
593 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000594 CI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000595 }
596 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
597 // Should handle GEP here.
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000598 SmallVector<Constant*, 8> Idxs;
599 Idxs.reserve(GEPI->getNumOperands()-1);
Chris Lattnere42eb312004-10-10 23:14:11 +0000600 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
601 if (Constant *C = dyn_cast<Constant>(GEPI->getOperand(i)))
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000602 Idxs.push_back(C);
Chris Lattnere42eb312004-10-10 23:14:11 +0000603 else
604 break;
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000605 if (Idxs.size() == GEPI->getNumOperands()-1)
Chris Lattnere42eb312004-10-10 23:14:11 +0000606 Changed |= OptimizeAwayTrappingUsesOfValue(GEPI,
Chris Lattnerf96f4a82007-01-31 04:40:53 +0000607 ConstantExpr::getGetElementPtr(NewV, &Idxs[0],
608 Idxs.size()));
Chris Lattnere42eb312004-10-10 23:14:11 +0000609 if (GEPI->use_empty()) {
610 Changed = true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000611 GEPI->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000612 }
613 }
614 }
615
616 return Changed;
617}
618
619
620/// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
621/// value stored into it. If there are uses of the loaded value that would trap
622/// if the loaded value is dynamically null, then we know that they cannot be
623/// reachable with a null optimize away the load.
624static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV) {
625 std::vector<LoadInst*> Loads;
626 bool Changed = false;
627
628 // Replace all uses of loads with uses of uses of the stored value.
629 for (Value::use_iterator GUI = GV->use_begin(), E = GV->use_end();
630 GUI != E; ++GUI)
631 if (LoadInst *LI = dyn_cast<LoadInst>(*GUI)) {
632 Loads.push_back(LI);
633 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
634 } else {
Chris Lattner66ad6fa2007-05-15 06:42:04 +0000635 // If we get here we could have stores, selects, or phi nodes whose values
Chris Lattnercea37be2007-05-13 21:28:07 +0000636 // are loaded.
Chris Lattner66ad6fa2007-05-15 06:42:04 +0000637 assert((isa<StoreInst>(*GUI) || isa<PHINode>(*GUI) ||
638 isa<SelectInst>(*GUI)) &&
Chris Lattnercea37be2007-05-13 21:28:07 +0000639 "Only expect load and stores!");
Chris Lattnere42eb312004-10-10 23:14:11 +0000640 }
641
642 if (Changed) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000643 DOUT << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV;
Chris Lattnere42eb312004-10-10 23:14:11 +0000644 ++NumGlobUses;
645 }
646
647 // Delete all of the loads we can, keeping track of whether we nuked them all!
648 bool AllLoadsGone = true;
649 while (!Loads.empty()) {
650 LoadInst *L = Loads.back();
651 if (L->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000652 L->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000653 Changed = true;
654 } else {
655 AllLoadsGone = false;
656 }
657 Loads.pop_back();
658 }
659
660 // If we nuked all of the loads, then none of the stores are needed either,
661 // nor is the global.
662 if (AllLoadsGone) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000663 DOUT << " *** GLOBAL NOW DEAD!\n";
Chris Lattnere42eb312004-10-10 23:14:11 +0000664 CleanupConstantGlobalUsers(GV, 0);
665 if (GV->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000666 GV->eraseFromParent();
Chris Lattnere42eb312004-10-10 23:14:11 +0000667 ++NumDeleted;
668 }
669 Changed = true;
670 }
671 return Changed;
672}
673
Chris Lattner004e2502004-10-11 05:54:41 +0000674/// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
675/// instructions that are foldable.
676static void ConstantPropUsersOf(Value *V) {
677 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
678 if (Instruction *I = dyn_cast<Instruction>(*UI++))
679 if (Constant *NewC = ConstantFoldInstruction(I)) {
680 I->replaceAllUsesWith(NewC);
681
Chris Lattnerd6a44922005-02-01 01:23:31 +0000682 // Advance UI to the next non-I use to avoid invalidating it!
683 // Instructions could multiply use V.
684 while (UI != E && *UI == I)
Chris Lattner004e2502004-10-11 05:54:41 +0000685 ++UI;
Chris Lattnerd6a44922005-02-01 01:23:31 +0000686 I->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000687 }
688}
689
690/// OptimizeGlobalAddressOfMalloc - This function takes the specified global
691/// variable, and transforms the program as if it always contained the result of
692/// the specified malloc. Because it is always the result of the specified
693/// malloc, there is no reason to actually DO the malloc. Instead, turn the
Chris Lattner3ede00b2006-11-30 17:32:29 +0000694/// malloc into a global, and any loads of GV as uses of the new global.
Chris Lattner004e2502004-10-11 05:54:41 +0000695static GlobalVariable *OptimizeGlobalAddressOfMalloc(GlobalVariable *GV,
696 MallocInst *MI) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000697 DOUT << "PROMOTING MALLOC GLOBAL: " << *GV << " MALLOC = " << *MI;
Chris Lattner004e2502004-10-11 05:54:41 +0000698 ConstantInt *NElements = cast<ConstantInt>(MI->getArraySize());
699
Reid Spencere0fc4df2006-10-20 07:07:24 +0000700 if (NElements->getZExtValue() != 1) {
Chris Lattner004e2502004-10-11 05:54:41 +0000701 // If we have an array allocation, transform it to a single element
702 // allocation to make the code below simpler.
703 Type *NewTy = ArrayType::get(MI->getAllocatedType(),
Reid Spencere0fc4df2006-10-20 07:07:24 +0000704 NElements->getZExtValue());
Chris Lattner004e2502004-10-11 05:54:41 +0000705 MallocInst *NewMI =
Reid Spencerc635f472006-12-31 05:48:39 +0000706 new MallocInst(NewTy, Constant::getNullValue(Type::Int32Ty),
Nate Begeman848622f2005-11-05 09:21:28 +0000707 MI->getAlignment(), MI->getName(), MI);
Chris Lattner927653f2007-01-31 19:59:55 +0000708 Value* Indices[2];
709 Indices[0] = Indices[1] = Constant::getNullValue(Type::Int32Ty);
David Greenec656cbb2007-09-04 15:46:09 +0000710 Value *NewGEP = new GetElementPtrInst(NewMI, Indices, Indices + 2,
Chris Lattner004e2502004-10-11 05:54:41 +0000711 NewMI->getName()+".el0", MI);
712 MI->replaceAllUsesWith(NewGEP);
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000713 MI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000714 MI = NewMI;
715 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000716
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000717 // Create the new global variable. The contents of the malloc'd memory is
718 // undefined, so initialize with an undef value.
719 Constant *Init = UndefValue::get(MI->getAllocatedType());
Chris Lattner004e2502004-10-11 05:54:41 +0000720 GlobalVariable *NewGV = new GlobalVariable(MI->getAllocatedType(), false,
721 GlobalValue::InternalLinkage, Init,
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000722 GV->getName()+".body",
723 (Module *)NULL,
724 GV->isThreadLocal());
Chris Lattner004e2502004-10-11 05:54:41 +0000725 GV->getParent()->getGlobalList().insert(GV, NewGV);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000726
Chris Lattner004e2502004-10-11 05:54:41 +0000727 // Anything that used the malloc now uses the global directly.
728 MI->replaceAllUsesWith(NewGV);
Chris Lattner004e2502004-10-11 05:54:41 +0000729
730 Constant *RepValue = NewGV;
731 if (NewGV->getType() != GV->getType()->getElementType())
Reid Spencerbb65ebf2006-12-12 23:36:14 +0000732 RepValue = ConstantExpr::getBitCast(RepValue,
733 GV->getType()->getElementType());
Chris Lattner004e2502004-10-11 05:54:41 +0000734
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000735 // If there is a comparison against null, we will insert a global bool to
736 // keep track of whether the global was initialized yet or not.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000737 GlobalVariable *InitBool =
Reid Spencer542964f2007-01-11 18:21:29 +0000738 new GlobalVariable(Type::Int1Ty, false, GlobalValue::InternalLinkage,
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000739 ConstantInt::getFalse(), GV->getName()+".init",
740 (Module *)NULL, GV->isThreadLocal());
Chris Lattner3b181392004-12-02 06:25:58 +0000741 bool InitBoolUsed = false;
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000742
Chris Lattner004e2502004-10-11 05:54:41 +0000743 // Loop over all uses of GV, processing them in turn.
Chris Lattner3b181392004-12-02 06:25:58 +0000744 std::vector<StoreInst*> Stores;
Chris Lattner004e2502004-10-11 05:54:41 +0000745 while (!GV->use_empty())
746 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000747 while (!LI->use_empty()) {
Chris Lattnerd6a44922005-02-01 01:23:31 +0000748 Use &LoadUse = LI->use_begin().getUse();
Reid Spencer266e42b2006-12-23 06:05:41 +0000749 if (!isa<ICmpInst>(LoadUse.getUser()))
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000750 LoadUse = RepValue;
751 else {
Reid Spencer266e42b2006-12-23 06:05:41 +0000752 ICmpInst *CI = cast<ICmpInst>(LoadUse.getUser());
753 // Replace the cmp X, 0 with a use of the bool value.
754 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", CI);
Chris Lattner3b181392004-12-02 06:25:58 +0000755 InitBoolUsed = true;
Reid Spencer266e42b2006-12-23 06:05:41 +0000756 switch (CI->getPredicate()) {
757 default: assert(0 && "Unknown ICmp Predicate!");
758 case ICmpInst::ICMP_ULT:
759 case ICmpInst::ICMP_SLT:
Zhou Sheng75b871f2007-01-11 12:24:14 +0000760 LV = ConstantInt::getFalse(); // X < null -> always false
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000761 break;
Reid Spencer266e42b2006-12-23 06:05:41 +0000762 case ICmpInst::ICMP_ULE:
763 case ICmpInst::ICMP_SLE:
764 case ICmpInst::ICMP_EQ:
765 LV = BinaryOperator::createNot(LV, "notinit", CI);
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000766 break;
Reid Spencer266e42b2006-12-23 06:05:41 +0000767 case ICmpInst::ICMP_NE:
768 case ICmpInst::ICMP_UGE:
769 case ICmpInst::ICMP_SGE:
770 case ICmpInst::ICMP_UGT:
771 case ICmpInst::ICMP_SGT:
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000772 break; // no change.
773 }
Reid Spencer266e42b2006-12-23 06:05:41 +0000774 CI->replaceAllUsesWith(LV);
775 CI->eraseFromParent();
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000776 }
777 }
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000778 LI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000779 } else {
780 StoreInst *SI = cast<StoreInst>(GV->use_back());
Chris Lattner3b181392004-12-02 06:25:58 +0000781 // The global is initialized when the store to it occurs.
Zhou Sheng75b871f2007-01-11 12:24:14 +0000782 new StoreInst(ConstantInt::getTrue(), InitBool, SI);
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000783 SI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000784 }
785
Chris Lattner3b181392004-12-02 06:25:58 +0000786 // If the initialization boolean was used, insert it, otherwise delete it.
787 if (!InitBoolUsed) {
788 while (!InitBool->use_empty()) // Delete initializations
789 cast<Instruction>(InitBool->use_back())->eraseFromParent();
790 delete InitBool;
791 } else
792 GV->getParent()->getGlobalList().insert(GV, InitBool);
793
794
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000795 // Now the GV is dead, nuke it and the malloc.
Chris Lattner8e71c6a2004-10-16 18:09:00 +0000796 GV->eraseFromParent();
Chris Lattnerfe9abf92004-10-22 06:43:28 +0000797 MI->eraseFromParent();
Chris Lattner004e2502004-10-11 05:54:41 +0000798
799 // To further other optimizations, loop over all users of NewGV and try to
800 // constant prop them. This will promote GEP instructions with constant
801 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
802 ConstantPropUsersOf(NewGV);
803 if (RepValue != NewGV)
804 ConstantPropUsersOf(RepValue);
805
806 return NewGV;
807}
Chris Lattnere42eb312004-10-10 23:14:11 +0000808
Chris Lattnerc0677c02004-12-02 07:11:07 +0000809/// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
810/// to make sure that there are no complex uses of V. We permit simple things
811/// like dereferencing the pointer, but not storing through the address, unless
812/// it is to the specified global.
813static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Instruction *V,
Chris Lattner6eed0e72007-09-13 16:37:20 +0000814 GlobalVariable *GV,
815 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000816 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI)
Reid Spencer266e42b2006-12-23 06:05:41 +0000817 if (isa<LoadInst>(*UI) || isa<CmpInst>(*UI)) {
Chris Lattnerc0677c02004-12-02 07:11:07 +0000818 // Fine, ignore.
819 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
820 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
821 return false; // Storing the pointer itself... bad.
822 // Otherwise, storing through it, or storing into GV... fine.
Chris Lattner6eed0e72007-09-13 16:37:20 +0000823 } else if (isa<GetElementPtrInst>(*UI) || isa<SelectInst>(*UI) ||
824 isa<BitCastInst>(*UI)) {
825 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(cast<Instruction>(*UI),
826 GV, PHIs))
Chris Lattnerc0677c02004-12-02 07:11:07 +0000827 return false;
Chris Lattner6eed0e72007-09-13 16:37:20 +0000828 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
829 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
830 // cycles.
831 if (PHIs.insert(PN))
832 return ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs);
Chris Lattnerc0677c02004-12-02 07:11:07 +0000833 } else {
834 return false;
835 }
836 return true;
Chris Lattnerc0677c02004-12-02 07:11:07 +0000837}
838
Chris Lattner24d3d422006-09-30 23:32:09 +0000839/// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
840/// somewhere. Transform all uses of the allocation into loads from the
841/// global and uses of the resultant pointer. Further, delete the store into
842/// GV. This assumes that these value pass the
843/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
844static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
845 GlobalVariable *GV) {
846 while (!Alloc->use_empty()) {
847 Instruction *U = Alloc->use_back();
848 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
849 // If this is the store of the allocation into the global, remove it.
850 if (SI->getOperand(1) == GV) {
851 SI->eraseFromParent();
852 continue;
853 }
854 }
855
856 // Insert a load from the global, and use it instead of the malloc.
857 Value *NL = new LoadInst(GV, GV->getName()+".val", U);
858 U->replaceUsesOfWith(Alloc, NL);
859 }
860}
861
862/// GlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
863/// GV are simple enough to perform HeapSRA, return true.
864static bool GlobalLoadUsesSimpleEnoughForHeapSRA(GlobalVariable *GV) {
865 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;
866 ++UI)
867 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
868 // We permit two users of the load: setcc comparing against the null
869 // pointer, and a getelementptr of a specific form.
870 for (Value::use_iterator UI = LI->use_begin(), E = LI->use_end(); UI != E;
871 ++UI) {
872 // Comparison against null is ok.
Reid Spencer266e42b2006-12-23 06:05:41 +0000873 if (ICmpInst *ICI = dyn_cast<ICmpInst>(*UI)) {
874 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
Chris Lattner24d3d422006-09-30 23:32:09 +0000875 return false;
876 continue;
877 }
878
879 // getelementptr is also ok, but only a simple form.
880 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI);
881 if (!GEPI) return false;
882
883 // Must index into the array and into the struct.
884 if (GEPI->getNumOperands() < 3)
885 return false;
886
887 // Otherwise the GEP is ok.
888 continue;
889 }
890 }
891 return true;
892}
893
894/// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global. Ptr
895/// is a value loaded from the global. Eliminate all uses of Ptr, making them
896/// use FieldGlobals instead. All uses of loaded values satisfy
897/// GlobalLoadUsesSimpleEnoughForHeapSRA.
898static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Ptr,
899 const std::vector<GlobalVariable*> &FieldGlobals) {
900 std::vector<Value *> InsertedLoadsForPtr;
901 //InsertedLoadsForPtr.resize(FieldGlobals.size());
902 while (!Ptr->use_empty()) {
903 Instruction *User = Ptr->use_back();
904
905 // If this is a comparison against null, handle it.
Reid Spencer266e42b2006-12-23 06:05:41 +0000906 if (ICmpInst *SCI = dyn_cast<ICmpInst>(User)) {
Chris Lattner24d3d422006-09-30 23:32:09 +0000907 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
908 // If we have a setcc of the loaded pointer, we can use a setcc of any
909 // field.
910 Value *NPtr;
911 if (InsertedLoadsForPtr.empty()) {
912 NPtr = new LoadInst(FieldGlobals[0], Ptr->getName()+".f0", Ptr);
913 InsertedLoadsForPtr.push_back(Ptr);
914 } else {
915 NPtr = InsertedLoadsForPtr.back();
916 }
917
Reid Spencer266e42b2006-12-23 06:05:41 +0000918 Value *New = new ICmpInst(SCI->getPredicate(), NPtr,
919 Constant::getNullValue(NPtr->getType()),
920 SCI->getName(), SCI);
Chris Lattner24d3d422006-09-30 23:32:09 +0000921 SCI->replaceAllUsesWith(New);
922 SCI->eraseFromParent();
923 continue;
924 }
925
926 // Otherwise, this should be: 'getelementptr Ptr, Idx, uint FieldNo ...'
927 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(User);
Reid Spencere0fc4df2006-10-20 07:07:24 +0000928 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
Chris Lattner24d3d422006-09-30 23:32:09 +0000929 && "Unexpected GEPI!");
930
931 // Load the pointer for this field.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000932 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner24d3d422006-09-30 23:32:09 +0000933 if (InsertedLoadsForPtr.size() <= FieldNo)
934 InsertedLoadsForPtr.resize(FieldNo+1);
935 if (InsertedLoadsForPtr[FieldNo] == 0)
936 InsertedLoadsForPtr[FieldNo] = new LoadInst(FieldGlobals[FieldNo],
937 Ptr->getName()+".f" +
938 utostr(FieldNo), Ptr);
939 Value *NewPtr = InsertedLoadsForPtr[FieldNo];
940
941 // Create the new GEP idx vector.
Chris Lattnera7315132007-02-12 22:56:41 +0000942 SmallVector<Value*, 8> GEPIdx;
Chris Lattner24d3d422006-09-30 23:32:09 +0000943 GEPIdx.push_back(GEPI->getOperand(1));
Chris Lattnera7315132007-02-12 22:56:41 +0000944 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
Chris Lattner24d3d422006-09-30 23:32:09 +0000945
David Greenec656cbb2007-09-04 15:46:09 +0000946 Value *NGEPI = new GetElementPtrInst(NewPtr, GEPIdx.begin(), GEPIdx.end(),
Chris Lattnera7315132007-02-12 22:56:41 +0000947 GEPI->getName(), GEPI);
Chris Lattner24d3d422006-09-30 23:32:09 +0000948 GEPI->replaceAllUsesWith(NGEPI);
949 GEPI->eraseFromParent();
950 }
951}
952
953/// PerformHeapAllocSRoA - MI is an allocation of an array of structures. Break
954/// it up into multiple allocations of arrays of the fields.
955static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, MallocInst *MI){
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000956 DOUT << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *MI;
Chris Lattner24d3d422006-09-30 23:32:09 +0000957 const StructType *STy = cast<StructType>(MI->getAllocatedType());
958
959 // There is guaranteed to be at least one use of the malloc (storing
960 // it into GV). If there are other uses, change them to be uses of
961 // the global to simplify later code. This also deletes the store
962 // into GV.
963 ReplaceUsesOfMallocWithGlobal(MI, GV);
964
965 // Okay, at this point, there are no users of the malloc. Insert N
966 // new mallocs at the same place as MI, and N globals.
967 std::vector<GlobalVariable*> FieldGlobals;
968 std::vector<MallocInst*> FieldMallocs;
969
970 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
971 const Type *FieldTy = STy->getElementType(FieldNo);
972 const Type *PFieldTy = PointerType::get(FieldTy);
973
974 GlobalVariable *NGV =
975 new GlobalVariable(PFieldTy, false, GlobalValue::InternalLinkage,
976 Constant::getNullValue(PFieldTy),
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000977 GV->getName() + ".f" + utostr(FieldNo), GV,
978 GV->isThreadLocal());
Chris Lattner24d3d422006-09-30 23:32:09 +0000979 FieldGlobals.push_back(NGV);
980
981 MallocInst *NMI = new MallocInst(FieldTy, MI->getArraySize(),
982 MI->getName() + ".f" + utostr(FieldNo),MI);
983 FieldMallocs.push_back(NMI);
984 new StoreInst(NMI, NGV, MI);
985 }
986
987 // The tricky aspect of this transformation is handling the case when malloc
988 // fails. In the original code, malloc failing would set the result pointer
989 // of malloc to null. In this case, some mallocs could succeed and others
990 // could fail. As such, we emit code that looks like this:
991 // F0 = malloc(field0)
992 // F1 = malloc(field1)
993 // F2 = malloc(field2)
994 // if (F0 == 0 || F1 == 0 || F2 == 0) {
995 // if (F0) { free(F0); F0 = 0; }
996 // if (F1) { free(F1); F1 = 0; }
997 // if (F2) { free(F2); F2 = 0; }
998 // }
999 Value *RunningOr = 0;
1000 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001001 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, FieldMallocs[i],
Chris Lattner24d3d422006-09-30 23:32:09 +00001002 Constant::getNullValue(FieldMallocs[i]->getType()),
1003 "isnull", MI);
1004 if (!RunningOr)
1005 RunningOr = Cond; // First seteq
1006 else
1007 RunningOr = BinaryOperator::createOr(RunningOr, Cond, "tmp", MI);
1008 }
1009
1010 // Split the basic block at the old malloc.
1011 BasicBlock *OrigBB = MI->getParent();
1012 BasicBlock *ContBB = OrigBB->splitBasicBlock(MI, "malloc_cont");
1013
1014 // Create the block to check the first condition. Put all these blocks at the
1015 // end of the function as they are unlikely to be executed.
1016 BasicBlock *NullPtrBlock = new BasicBlock("malloc_ret_null",
1017 OrigBB->getParent());
1018
1019 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1020 // branch on RunningOr.
1021 OrigBB->getTerminator()->eraseFromParent();
1022 new BranchInst(NullPtrBlock, ContBB, RunningOr, OrigBB);
1023
1024 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1025 // pointer, because some may be null while others are not.
1026 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1027 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
Reid Spencer266e42b2006-12-23 06:05:41 +00001028 Value *Cmp = new ICmpInst(ICmpInst::ICMP_NE, GVVal,
1029 Constant::getNullValue(GVVal->getType()),
1030 "tmp", NullPtrBlock);
Chris Lattner24d3d422006-09-30 23:32:09 +00001031 BasicBlock *FreeBlock = new BasicBlock("free_it", OrigBB->getParent());
1032 BasicBlock *NextBlock = new BasicBlock("next", OrigBB->getParent());
1033 new BranchInst(FreeBlock, NextBlock, Cmp, NullPtrBlock);
1034
1035 // Fill in FreeBlock.
1036 new FreeInst(GVVal, FreeBlock);
1037 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1038 FreeBlock);
1039 new BranchInst(NextBlock, FreeBlock);
1040
1041 NullPtrBlock = NextBlock;
1042 }
1043
1044 new BranchInst(ContBB, NullPtrBlock);
1045
1046
1047 // MI is no longer needed, remove it.
1048 MI->eraseFromParent();
1049
1050
1051 // Okay, the malloc site is completely handled. All of the uses of GV are now
1052 // loads, and all uses of those loads are simple. Rewrite them to use loads
1053 // of the per-field globals instead.
1054 while (!GV->use_empty()) {
Chris Lattner8571caa2007-01-09 23:29:37 +00001055 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
1056 RewriteUsesOfLoadForHeapSRoA(LI, FieldGlobals);
1057 LI->eraseFromParent();
1058 } else {
1059 // Must be a store of null.
1060 StoreInst *SI = cast<StoreInst>(GV->use_back());
1061 assert(isa<Constant>(SI->getOperand(0)) &&
1062 cast<Constant>(SI->getOperand(0))->isNullValue() &&
1063 "Unexpected heap-sra user!");
1064
1065 // Insert a store of null into each global.
1066 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1067 Constant *Null =
1068 Constant::getNullValue(FieldGlobals[i]->getType()->getElementType());
1069 new StoreInst(Null, FieldGlobals[i], SI);
1070 }
1071 // Erase the original store.
1072 SI->eraseFromParent();
1073 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001074 }
1075
1076 // The old global is now dead, remove it.
1077 GV->eraseFromParent();
1078
1079 ++NumHeapSRA;
1080 return FieldGlobals[0];
1081}
1082
1083
Chris Lattner09a52722004-10-09 21:48:45 +00001084// OptimizeOnceStoredGlobal - Try to optimize globals based on the knowledge
1085// that only one value (besides its initializer) is ever stored to the global.
Chris Lattner004e2502004-10-11 05:54:41 +00001086static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
Chris Lattnerc2d3d312006-08-27 22:42:52 +00001087 Module::global_iterator &GVI,
1088 TargetData &TD) {
Chris Lattner09a52722004-10-09 21:48:45 +00001089 if (CastInst *CI = dyn_cast<CastInst>(StoredOnceVal))
1090 StoredOnceVal = CI->getOperand(0);
1091 else if (GetElementPtrInst *GEPI =dyn_cast<GetElementPtrInst>(StoredOnceVal)){
Chris Lattnere42eb312004-10-10 23:14:11 +00001092 // "getelementptr Ptr, 0, 0, 0" is really just a cast.
Chris Lattner09a52722004-10-09 21:48:45 +00001093 bool IsJustACast = true;
1094 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
1095 if (!isa<Constant>(GEPI->getOperand(i)) ||
1096 !cast<Constant>(GEPI->getOperand(i))->isNullValue()) {
1097 IsJustACast = false;
1098 break;
1099 }
1100 if (IsJustACast)
1101 StoredOnceVal = GEPI->getOperand(0);
1102 }
1103
Chris Lattnere42eb312004-10-10 23:14:11 +00001104 // If we are dealing with a pointer global that is initialized to null and
1105 // only has one (non-null) value stored into it, then we can optimize any
1106 // users of the loaded value (often calls and loads) that would trap if the
1107 // value was null.
Chris Lattner09a52722004-10-09 21:48:45 +00001108 if (isa<PointerType>(GV->getInitializer()->getType()) &&
1109 GV->getInitializer()->isNullValue()) {
Chris Lattnere42eb312004-10-10 23:14:11 +00001110 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1111 if (GV->getInitializer()->getType() != SOVC->getType())
Reid Spencerbb65ebf2006-12-12 23:36:14 +00001112 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001113
Chris Lattnere42eb312004-10-10 23:14:11 +00001114 // Optimize away any trapping uses of the loaded value.
1115 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC))
Chris Lattner604ed7a2004-10-10 17:07:12 +00001116 return true;
Chris Lattner004e2502004-10-11 05:54:41 +00001117 } else if (MallocInst *MI = dyn_cast<MallocInst>(StoredOnceVal)) {
Chris Lattner80a01ef2006-09-30 19:40:30 +00001118 // If this is a malloc of an abstract type, don't touch it.
1119 if (!MI->getAllocatedType()->isSized())
1120 return false;
1121
Chris Lattner24d3d422006-09-30 23:32:09 +00001122 // We can't optimize this global unless all uses of it are *known* to be
1123 // of the malloc value, not of the null initializer value (consider a use
1124 // that compares the global's value against zero to see if the malloc has
1125 // been reached). To do this, we check to see if all uses of the global
1126 // would trap if the global were null: this proves that they must all
1127 // happen after the malloc.
1128 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1129 return false;
1130
1131 // We can't optimize this if the malloc itself is used in a complex way,
1132 // for example, being stored into multiple globals. This allows the
1133 // malloc to be stored into the specified global, loaded setcc'd, and
1134 // GEP'd. These are all things we could transform to using the global
1135 // for.
Chris Lattner6eed0e72007-09-13 16:37:20 +00001136 {
1137 SmallPtrSet<PHINode*, 8> PHIs;
1138 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(MI, GV, PHIs))
1139 return false;
1140 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001141
1142
Chris Lattner004e2502004-10-11 05:54:41 +00001143 // If we have a global that is only initialized with a fixed size malloc,
Chris Lattner24d3d422006-09-30 23:32:09 +00001144 // transform the program to use global memory instead of malloc'd memory.
1145 // This eliminates dynamic allocation, avoids an indirection accessing the
1146 // data, and exposes the resultant global to further GlobalOpt.
Chris Lattner80a01ef2006-09-30 19:40:30 +00001147 if (ConstantInt *NElements = dyn_cast<ConstantInt>(MI->getArraySize())) {
Chris Lattner24d3d422006-09-30 23:32:09 +00001148 // Restrict this transformation to only working on small allocations
1149 // (2048 bytes currently), as we don't want to introduce a 16M global or
1150 // something.
Reid Spencere0fc4df2006-10-20 07:07:24 +00001151 if (NElements->getZExtValue()*
Chris Lattner24d3d422006-09-30 23:32:09 +00001152 TD.getTypeSize(MI->getAllocatedType()) < 2048) {
Chris Lattner004e2502004-10-11 05:54:41 +00001153 GVI = OptimizeGlobalAddressOfMalloc(GV, MI);
1154 return true;
1155 }
Chris Lattner80a01ef2006-09-30 19:40:30 +00001156 }
Chris Lattner24d3d422006-09-30 23:32:09 +00001157
1158 // If the allocation is an array of structures, consider transforming this
1159 // into multiple malloc'd arrays, one for each field. This is basically
1160 // SRoA for malloc'd memory.
1161 if (const StructType *AllocTy =
1162 dyn_cast<StructType>(MI->getAllocatedType())) {
1163 // This the structure has an unreasonable number of fields, leave it
1164 // alone.
1165 if (AllocTy->getNumElements() <= 16 && AllocTy->getNumElements() > 0 &&
1166 GlobalLoadUsesSimpleEnoughForHeapSRA(GV)) {
1167 GVI = PerformHeapAllocSRoA(GV, MI);
1168 return true;
1169 }
1170 }
Chris Lattnere42eb312004-10-10 23:14:11 +00001171 }
Chris Lattner09a52722004-10-09 21:48:45 +00001172 }
Chris Lattner004e2502004-10-11 05:54:41 +00001173
Chris Lattner09a52722004-10-09 21:48:45 +00001174 return false;
1175}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001176
Chris Lattner40e4cec2004-12-12 05:53:50 +00001177/// ShrinkGlobalToBoolean - At this point, we have learned that the only two
Misha Brukmanb1c93172005-04-21 23:48:37 +00001178/// values ever stored into GV are its initializer and OtherVal.
Chris Lattner40e4cec2004-12-12 05:53:50 +00001179static void ShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1180 // Create the new global, initializing it to false.
Reid Spencer542964f2007-01-11 18:21:29 +00001181 GlobalVariable *NewGV = new GlobalVariable(Type::Int1Ty, false,
Zhou Sheng75b871f2007-01-11 12:24:14 +00001182 GlobalValue::InternalLinkage, ConstantInt::getFalse(),
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001183 GV->getName()+".b",
1184 (Module *)NULL,
1185 GV->isThreadLocal());
Chris Lattner40e4cec2004-12-12 05:53:50 +00001186 GV->getParent()->getGlobalList().insert(GV, NewGV);
1187
1188 Constant *InitVal = GV->getInitializer();
Reid Spencer542964f2007-01-11 18:21:29 +00001189 assert(InitVal->getType() != Type::Int1Ty && "No reason to shrink to bool!");
Chris Lattner40e4cec2004-12-12 05:53:50 +00001190
1191 // If initialized to zero and storing one into the global, we can use a cast
1192 // instead of a select to synthesize the desired value.
1193 bool IsOneZero = false;
1194 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
Reid Spencer2e54a152007-03-02 00:28:52 +00001195 IsOneZero = InitVal->isNullValue() && CI->isOne();
Chris Lattner40e4cec2004-12-12 05:53:50 +00001196
1197 while (!GV->use_empty()) {
1198 Instruction *UI = cast<Instruction>(GV->use_back());
1199 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1200 // Change the store into a boolean store.
1201 bool StoringOther = SI->getOperand(0) == OtherVal;
1202 // Only do this if we weren't storing a loaded value.
Chris Lattner745196a2004-12-12 19:34:41 +00001203 Value *StoreVal;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001204 if (StoringOther || SI->getOperand(0) == InitVal)
Reid Spencercddc9df2007-01-12 04:24:46 +00001205 StoreVal = ConstantInt::get(Type::Int1Ty, StoringOther);
Chris Lattner745196a2004-12-12 19:34:41 +00001206 else {
1207 // Otherwise, we are storing a previously loaded copy. To do this,
1208 // change the copy from copying the original value to just copying the
1209 // bool.
1210 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1211
1212 // If we're already replaced the input, StoredVal will be a cast or
1213 // select instruction. If not, it will be a load of the original
1214 // global.
1215 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1216 assert(LI->getOperand(0) == GV && "Not a copy!");
1217 // Insert a new load, to preserve the saved value.
1218 StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI);
1219 } else {
1220 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1221 "This is not a form that we understand!");
1222 StoreVal = StoredVal->getOperand(0);
1223 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1224 }
1225 }
1226 new StoreInst(StoreVal, NewGV, SI);
1227 } else if (!UI->use_empty()) {
Chris Lattner40e4cec2004-12-12 05:53:50 +00001228 // Change the load into a load of bool then a select.
1229 LoadInst *LI = cast<LoadInst>(UI);
Chris Lattner8d4c36b2007-02-11 01:08:35 +00001230 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", LI);
Chris Lattner40e4cec2004-12-12 05:53:50 +00001231 Value *NSI;
1232 if (IsOneZero)
Chris Lattner8d4c36b2007-02-11 01:08:35 +00001233 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001234 else
Chris Lattner8d4c36b2007-02-11 01:08:35 +00001235 NSI = new SelectInst(NLI, OtherVal, InitVal, "", LI);
1236 NSI->takeName(LI);
Chris Lattner40e4cec2004-12-12 05:53:50 +00001237 LI->replaceAllUsesWith(NSI);
1238 }
1239 UI->eraseFromParent();
1240 }
1241
1242 GV->eraseFromParent();
1243}
1244
1245
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001246/// ProcessInternalGlobal - Analyze the specified global variable and optimize
1247/// it if possible. If we make a change, return true.
Chris Lattner004e2502004-10-11 05:54:41 +00001248bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
Chris Lattner531f9e92005-03-15 04:54:21 +00001249 Module::global_iterator &GVI) {
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001250 std::set<PHINode*> PHIUsers;
1251 GlobalStatus GS;
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001252 GV->removeDeadConstantUsers();
1253
1254 if (GV->use_empty()) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +00001255 DOUT << "GLOBAL DEAD: " << *GV;
Chris Lattner8e71c6a2004-10-16 18:09:00 +00001256 GV->eraseFromParent();
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001257 ++NumDeleted;
1258 return true;
1259 }
1260
1261 if (!AnalyzeGlobal(GV, GS, PHIUsers)) {
Chris Lattner80a01ef2006-09-30 19:40:30 +00001262#if 0
Bill Wendlingf3baad32006-12-07 01:30:32 +00001263 cerr << "Global: " << *GV;
1264 cerr << " isLoaded = " << GS.isLoaded << "\n";
1265 cerr << " StoredType = ";
Chris Lattner80a01ef2006-09-30 19:40:30 +00001266 switch (GS.StoredType) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001267 case GlobalStatus::NotStored: cerr << "NEVER STORED\n"; break;
1268 case GlobalStatus::isInitializerStored: cerr << "INIT STORED\n"; break;
1269 case GlobalStatus::isStoredOnce: cerr << "STORED ONCE\n"; break;
1270 case GlobalStatus::isStored: cerr << "stored\n"; break;
Chris Lattner80a01ef2006-09-30 19:40:30 +00001271 }
1272 if (GS.StoredType == GlobalStatus::isStoredOnce && GS.StoredOnceValue)
Bill Wendlingf3baad32006-12-07 01:30:32 +00001273 cerr << " StoredOnceValue = " << *GS.StoredOnceValue << "\n";
Chris Lattner80a01ef2006-09-30 19:40:30 +00001274 if (GS.AccessingFunction && !GS.HasMultipleAccessingFunctions)
Bill Wendlingf3baad32006-12-07 01:30:32 +00001275 cerr << " AccessingFunction = " << GS.AccessingFunction->getName()
Chris Lattner80a01ef2006-09-30 19:40:30 +00001276 << "\n";
Bill Wendlingf3baad32006-12-07 01:30:32 +00001277 cerr << " HasMultipleAccessingFunctions = "
Chris Lattner80a01ef2006-09-30 19:40:30 +00001278 << GS.HasMultipleAccessingFunctions << "\n";
Bill Wendlingf3baad32006-12-07 01:30:32 +00001279 cerr << " HasNonInstructionUser = " << GS.HasNonInstructionUser<<"\n";
1280 cerr << " isNotSuitableForSRA = " << GS.isNotSuitableForSRA << "\n";
1281 cerr << "\n";
Chris Lattner80a01ef2006-09-30 19:40:30 +00001282#endif
1283
Alkis Evlogimenosc4a44c62005-02-10 18:36:30 +00001284 // If this is a first class global and has only one accessing function
1285 // and this function is main (which we know is not recursive we can make
1286 // this global a local variable) we replace the global with a local alloca
1287 // in this function.
1288 //
1289 // NOTE: It doesn't make sense to promote non first class types since we
1290 // are just replacing static memory to stack memory.
1291 if (!GS.HasMultipleAccessingFunctions &&
Chris Lattner50bdfcb2005-06-15 21:11:48 +00001292 GS.AccessingFunction && !GS.HasNonInstructionUser &&
Alkis Evlogimenosc4a44c62005-02-10 18:36:30 +00001293 GV->getType()->getElementType()->isFirstClassType() &&
1294 GS.AccessingFunction->getName() == "main" &&
1295 GS.AccessingFunction->hasExternalLinkage()) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +00001296 DOUT << "LOCALIZING GLOBAL: " << *GV;
Alkis Evlogimenosc4a44c62005-02-10 18:36:30 +00001297 Instruction* FirstI = GS.AccessingFunction->getEntryBlock().begin();
1298 const Type* ElemTy = GV->getType()->getElementType();
Nate Begeman848622f2005-11-05 09:21:28 +00001299 // FIXME: Pass Global's alignment when globals have alignment
Alkis Evlogimenosc4a44c62005-02-10 18:36:30 +00001300 AllocaInst* Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), FirstI);
1301 if (!isa<UndefValue>(GV->getInitializer()))
1302 new StoreInst(GV->getInitializer(), Alloca, FirstI);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001303
Alkis Evlogimenosc4a44c62005-02-10 18:36:30 +00001304 GV->replaceAllUsesWith(Alloca);
1305 GV->eraseFromParent();
1306 ++NumLocalized;
1307 return true;
1308 }
Chris Lattner80a01ef2006-09-30 19:40:30 +00001309
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001310 // If the global is never loaded (but may be stored to), it is dead.
1311 // Delete it now.
1312 if (!GS.isLoaded) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +00001313 DOUT << "GLOBAL NEVER LOADED: " << *GV;
Chris Lattnerf369b382004-10-09 03:32:52 +00001314
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001315 // Delete any stores we can find to the global. We may not be able to
1316 // make it completely dead though.
Chris Lattnercb9f1522004-10-10 16:43:46 +00001317 bool Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer());
Chris Lattnerf369b382004-10-09 03:32:52 +00001318
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001319 // If the global is dead now, delete it.
1320 if (GV->use_empty()) {
Chris Lattner8e71c6a2004-10-16 18:09:00 +00001321 GV->eraseFromParent();
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001322 ++NumDeleted;
Chris Lattnerf369b382004-10-09 03:32:52 +00001323 Changed = true;
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001324 }
Chris Lattnerf369b382004-10-09 03:32:52 +00001325 return Changed;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001326
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001327 } else if (GS.StoredType <= GlobalStatus::isInitializerStored) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +00001328 DOUT << "MARKING CONSTANT: " << *GV;
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001329 GV->setConstant(true);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001330
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001331 // Clean up any obviously simplifiable users now.
1332 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001333
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001334 // If the global is dead now, just nuke it.
1335 if (GV->use_empty()) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +00001336 DOUT << " *** Marking constant allowed us to simplify "
1337 << "all users and delete global!\n";
Chris Lattner8e71c6a2004-10-16 18:09:00 +00001338 GV->eraseFromParent();
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001339 ++NumDeleted;
1340 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001341
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001342 ++NumMarked;
1343 return true;
1344 } else if (!GS.isNotSuitableForSRA &&
1345 !GV->getInitializer()->getType()->isFirstClassType()) {
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001346 if (GlobalVariable *FirstNewGV = SRAGlobal(GV)) {
1347 GVI = FirstNewGV; // Don't skip the newly produced globals!
1348 return true;
1349 }
Chris Lattner09a52722004-10-09 21:48:45 +00001350 } else if (GS.StoredType == GlobalStatus::isStoredOnce) {
Chris Lattner40e4cec2004-12-12 05:53:50 +00001351 // If the initial value for the global was an undef value, and if only
1352 // one other value was stored into it, we can just change the
1353 // initializer to be an undef value, then delete all stores to the
1354 // global. This allows us to mark it constant.
1355 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1356 if (isa<UndefValue>(GV->getInitializer())) {
1357 // Change the initial value here.
1358 GV->setInitializer(SOVConstant);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001359
Chris Lattner40e4cec2004-12-12 05:53:50 +00001360 // Clean up any obviously simplifiable users now.
1361 CleanupConstantGlobalUsers(GV, GV->getInitializer());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001362
Chris Lattner40e4cec2004-12-12 05:53:50 +00001363 if (GV->use_empty()) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +00001364 DOUT << " *** Substituting initializer allowed us to "
1365 << "simplify all users and delete global!\n";
Chris Lattner40e4cec2004-12-12 05:53:50 +00001366 GV->eraseFromParent();
1367 ++NumDeleted;
1368 } else {
1369 GVI = GV;
1370 }
1371 ++NumSubstitute;
1372 return true;
Chris Lattner8e71c6a2004-10-16 18:09:00 +00001373 }
Chris Lattner8e71c6a2004-10-16 18:09:00 +00001374
Chris Lattner09a52722004-10-09 21:48:45 +00001375 // Try to optimize globals based on the knowledge that only one value
1376 // (besides its initializer) is ever stored to the global.
Chris Lattner004e2502004-10-11 05:54:41 +00001377 if (OptimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GVI,
1378 getAnalysis<TargetData>()))
Chris Lattner09a52722004-10-09 21:48:45 +00001379 return true;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001380
1381 // Otherwise, if the global was not a boolean, we can shrink it to be a
1382 // boolean.
1383 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
Reid Spencer542964f2007-01-11 18:21:29 +00001384 if (GV->getType()->getElementType() != Type::Int1Ty &&
Chris Lattner5a0bd612006-11-01 18:03:33 +00001385 !GV->getType()->getElementType()->isFloatingPoint() &&
Reid Spencerd84d35b2007-02-15 02:26:10 +00001386 !isa<VectorType>(GV->getType()->getElementType()) &&
Chris Lattner1a9a7602007-04-05 21:09:42 +00001387 !GS.HasPHIUser && !GS.isNotSuitableForSRA) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +00001388 DOUT << " *** SHRINKING TO BOOL: " << *GV;
Chris Lattner40e4cec2004-12-12 05:53:50 +00001389 ShrinkGlobalToBoolean(GV, SOVConstant);
1390 ++NumShrunkToBool;
1391 return true;
1392 }
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001393 }
1394 }
1395 return false;
1396}
1397
Chris Lattnera4c80222005-05-08 22:18:06 +00001398/// OnlyCalledDirectly - Return true if the specified function is only called
1399/// directly. In other words, its address is never taken.
1400static bool OnlyCalledDirectly(Function *F) {
1401 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1402 Instruction *User = dyn_cast<Instruction>(*UI);
1403 if (!User) return false;
1404 if (!isa<CallInst>(User) && !isa<InvokeInst>(User)) return false;
1405
1406 // See if the function address is passed as an argument.
1407 for (unsigned i = 1, e = User->getNumOperands(); i != e; ++i)
1408 if (User->getOperand(i) == F) return false;
1409 }
1410 return true;
1411}
1412
1413/// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
1414/// function, changing them to FastCC.
1415static void ChangeCalleesToFastCall(Function *F) {
1416 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1417 Instruction *User = cast<Instruction>(*UI);
1418 if (CallInst *CI = dyn_cast<CallInst>(User))
1419 CI->setCallingConv(CallingConv::Fast);
1420 else
1421 cast<InvokeInst>(User)->setCallingConv(CallingConv::Fast);
1422 }
1423}
Chris Lattner1c4bddc2004-10-08 20:59:28 +00001424
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001425bool GlobalOpt::OptimizeFunctions(Module &M) {
1426 bool Changed = false;
1427 // Optimize functions.
1428 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
1429 Function *F = FI++;
1430 F->removeDeadConstantUsers();
1431 if (F->use_empty() && (F->hasInternalLinkage() ||
1432 F->hasLinkOnceLinkage())) {
1433 M.getFunctionList().erase(F);
1434 Changed = true;
1435 ++NumFnDeleted;
1436 } else if (F->hasInternalLinkage() &&
1437 F->getCallingConv() == CallingConv::C && !F->isVarArg() &&
1438 OnlyCalledDirectly(F)) {
1439 // If this function has C calling conventions, is not a varargs
1440 // function, and is only called directly, promote it to use the Fast
1441 // calling convention.
1442 F->setCallingConv(CallingConv::Fast);
1443 ChangeCalleesToFastCall(F);
1444 ++NumFastCallFns;
1445 Changed = true;
1446 }
1447 }
1448 return Changed;
1449}
1450
1451bool GlobalOpt::OptimizeGlobalVars(Module &M) {
1452 bool Changed = false;
1453 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
1454 GVI != E; ) {
1455 GlobalVariable *GV = GVI++;
1456 if (!GV->isConstant() && GV->hasInternalLinkage() &&
1457 GV->hasInitializer())
1458 Changed |= ProcessInternalGlobal(GV, GVI);
1459 }
1460 return Changed;
1461}
1462
1463/// FindGlobalCtors - Find the llvm.globalctors list, verifying that all
1464/// initializers have an init priority of 65535.
1465GlobalVariable *GlobalOpt::FindGlobalCtors(Module &M) {
Alkis Evlogimenoscb67b652005-10-25 11:18:06 +00001466 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1467 I != E; ++I)
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001468 if (I->getName() == "llvm.global_ctors") {
1469 // Found it, verify it's an array of { int, void()* }.
1470 const ArrayType *ATy =dyn_cast<ArrayType>(I->getType()->getElementType());
1471 if (!ATy) return 0;
1472 const StructType *STy = dyn_cast<StructType>(ATy->getElementType());
1473 if (!STy || STy->getNumElements() != 2 ||
Reid Spencerc635f472006-12-31 05:48:39 +00001474 STy->getElementType(0) != Type::Int32Ty) return 0;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001475 const PointerType *PFTy = dyn_cast<PointerType>(STy->getElementType(1));
1476 if (!PFTy) return 0;
1477 const FunctionType *FTy = dyn_cast<FunctionType>(PFTy->getElementType());
1478 if (!FTy || FTy->getReturnType() != Type::VoidTy || FTy->isVarArg() ||
1479 FTy->getNumParams() != 0)
1480 return 0;
1481
1482 // Verify that the initializer is simple enough for us to handle.
1483 if (!I->hasInitializer()) return 0;
1484 ConstantArray *CA = dyn_cast<ConstantArray>(I->getInitializer());
1485 if (!CA) return 0;
1486 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1487 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(CA->getOperand(i))) {
Chris Lattner838bdc12005-09-26 02:19:27 +00001488 if (isa<ConstantPointerNull>(CS->getOperand(1)))
1489 continue;
1490
1491 // Must have a function or null ptr.
1492 if (!isa<Function>(CS->getOperand(1)))
1493 return 0;
1494
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001495 // Init priority must be standard.
1496 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
Reid Spencere0fc4df2006-10-20 07:07:24 +00001497 if (!CI || CI->getZExtValue() != 65535)
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001498 return 0;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001499 } else {
1500 return 0;
1501 }
1502
1503 return I;
1504 }
1505 return 0;
1506}
1507
Chris Lattner696beef2005-09-26 02:31:18 +00001508/// ParseGlobalCtors - Given a llvm.global_ctors list that we can understand,
1509/// return a list of the functions and null terminator as a vector.
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001510static std::vector<Function*> ParseGlobalCtors(GlobalVariable *GV) {
1511 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1512 std::vector<Function*> Result;
1513 Result.reserve(CA->getNumOperands());
1514 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) {
1515 ConstantStruct *CS = cast<ConstantStruct>(CA->getOperand(i));
1516 Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
1517 }
1518 return Result;
1519}
1520
Chris Lattner696beef2005-09-26 02:31:18 +00001521/// InstallGlobalCtors - Given a specified llvm.global_ctors list, install the
1522/// specified array, returning the new global to use.
1523static GlobalVariable *InstallGlobalCtors(GlobalVariable *GCL,
1524 const std::vector<Function*> &Ctors) {
1525 // If we made a change, reassemble the initializer list.
1526 std::vector<Constant*> CSVals;
Reid Spencerc635f472006-12-31 05:48:39 +00001527 CSVals.push_back(ConstantInt::get(Type::Int32Ty, 65535));
Chris Lattner696beef2005-09-26 02:31:18 +00001528 CSVals.push_back(0);
1529
1530 // Create the new init list.
1531 std::vector<Constant*> CAList;
1532 for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
Chris Lattner99e23fa2005-09-26 04:44:35 +00001533 if (Ctors[i]) {
Chris Lattner696beef2005-09-26 02:31:18 +00001534 CSVals[1] = Ctors[i];
Chris Lattner99e23fa2005-09-26 04:44:35 +00001535 } else {
Chris Lattner696beef2005-09-26 02:31:18 +00001536 const Type *FTy = FunctionType::get(Type::VoidTy,
1537 std::vector<const Type*>(), false);
1538 const PointerType *PFTy = PointerType::get(FTy);
1539 CSVals[1] = Constant::getNullValue(PFTy);
Reid Spencerc635f472006-12-31 05:48:39 +00001540 CSVals[0] = ConstantInt::get(Type::Int32Ty, 2147483647);
Chris Lattner696beef2005-09-26 02:31:18 +00001541 }
1542 CAList.push_back(ConstantStruct::get(CSVals));
1543 }
1544
1545 // Create the array initializer.
1546 const Type *StructTy =
1547 cast<ArrayType>(GCL->getType()->getElementType())->getElementType();
1548 Constant *CA = ConstantArray::get(ArrayType::get(StructTy, CAList.size()),
1549 CAList);
1550
1551 // If we didn't change the number of elements, don't create a new GV.
1552 if (CA->getType() == GCL->getInitializer()->getType()) {
1553 GCL->setInitializer(CA);
1554 return GCL;
1555 }
1556
1557 // Create the new global and insert it next to the existing list.
1558 GlobalVariable *NGV = new GlobalVariable(CA->getType(), GCL->isConstant(),
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001559 GCL->getLinkage(), CA, "",
1560 (Module *)NULL,
1561 GCL->isThreadLocal());
Chris Lattner696beef2005-09-26 02:31:18 +00001562 GCL->getParent()->getGlobalList().insert(GCL, NGV);
Chris Lattner8d4c36b2007-02-11 01:08:35 +00001563 NGV->takeName(GCL);
Chris Lattner696beef2005-09-26 02:31:18 +00001564
1565 // Nuke the old list, replacing any uses with the new one.
1566 if (!GCL->use_empty()) {
1567 Constant *V = NGV;
1568 if (V->getType() != GCL->getType())
Reid Spencerbb65ebf2006-12-12 23:36:14 +00001569 V = ConstantExpr::getBitCast(V, GCL->getType());
Chris Lattner696beef2005-09-26 02:31:18 +00001570 GCL->replaceAllUsesWith(V);
1571 }
1572 GCL->eraseFromParent();
1573
1574 if (Ctors.size())
1575 return NGV;
1576 else
1577 return 0;
1578}
Chris Lattner99e23fa2005-09-26 04:44:35 +00001579
1580
1581static Constant *getVal(std::map<Value*, Constant*> &ComputedValues,
1582 Value *V) {
1583 if (Constant *CV = dyn_cast<Constant>(V)) return CV;
1584 Constant *R = ComputedValues[V];
1585 assert(R && "Reference to an uncomputed value!");
1586 return R;
1587}
1588
1589/// isSimpleEnoughPointerToCommit - Return true if this constant is simple
1590/// enough for us to understand. In particular, if it is a cast of something,
1591/// we punt. We basically just support direct accesses to globals and GEP's of
1592/// globals. This should be kept up to date with CommitValueTo.
1593static bool isSimpleEnoughPointerToCommit(Constant *C) {
Chris Lattner29b27802005-09-27 04:50:03 +00001594 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
1595 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +00001596 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
Reid Spencer5301e7c2007-01-30 20:08:39 +00001597 return !GV->isDeclaration(); // reject external globals.
Chris Lattner29b27802005-09-27 04:50:03 +00001598 }
Chris Lattner46af55e2005-09-26 06:52:44 +00001599 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
1600 // Handle a constantexpr gep.
1601 if (CE->getOpcode() == Instruction::GetElementPtr &&
1602 isa<GlobalVariable>(CE->getOperand(0))) {
1603 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Chris Lattner29b27802005-09-27 04:50:03 +00001604 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +00001605 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
Chris Lattner46af55e2005-09-26 06:52:44 +00001606 return GV->hasInitializer() &&
1607 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1608 }
Chris Lattner99e23fa2005-09-26 04:44:35 +00001609 return false;
1610}
1611
Chris Lattner46af55e2005-09-26 06:52:44 +00001612/// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
1613/// initializer. This returns 'Init' modified to reflect 'Val' stored into it.
1614/// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
1615static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
1616 ConstantExpr *Addr, unsigned OpNo) {
1617 // Base case of the recursion.
1618 if (OpNo == Addr->getNumOperands()) {
1619 assert(Val->getType() == Init->getType() && "Type mismatch!");
1620 return Val;
1621 }
1622
1623 if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
1624 std::vector<Constant*> Elts;
1625
1626 // Break up the constant into its elements.
1627 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
1628 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
1629 Elts.push_back(CS->getOperand(i));
1630 } else if (isa<ConstantAggregateZero>(Init)) {
1631 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1632 Elts.push_back(Constant::getNullValue(STy->getElementType(i)));
1633 } else if (isa<UndefValue>(Init)) {
1634 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1635 Elts.push_back(UndefValue::get(STy->getElementType(i)));
1636 } else {
1637 assert(0 && "This code is out of sync with "
1638 " ConstantFoldLoadThroughGEPConstantExpr");
1639 }
1640
1641 // Replace the element that we are supposed to.
Reid Spencere0fc4df2006-10-20 07:07:24 +00001642 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
1643 unsigned Idx = CU->getZExtValue();
1644 assert(Idx < STy->getNumElements() && "Struct index out of range!");
Chris Lattner46af55e2005-09-26 06:52:44 +00001645 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
1646
1647 // Return the modified struct.
Chris Lattnerd7897d42007-06-04 22:23:42 +00001648 return ConstantStruct::get(&Elts[0], Elts.size(), STy->isPacked());
Chris Lattner46af55e2005-09-26 06:52:44 +00001649 } else {
1650 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
1651 const ArrayType *ATy = cast<ArrayType>(Init->getType());
1652
1653 // Break up the array into elements.
1654 std::vector<Constant*> Elts;
1655 if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
1656 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1657 Elts.push_back(CA->getOperand(i));
1658 } else if (isa<ConstantAggregateZero>(Init)) {
1659 Constant *Elt = Constant::getNullValue(ATy->getElementType());
1660 Elts.assign(ATy->getNumElements(), Elt);
1661 } else if (isa<UndefValue>(Init)) {
1662 Constant *Elt = UndefValue::get(ATy->getElementType());
1663 Elts.assign(ATy->getNumElements(), Elt);
1664 } else {
1665 assert(0 && "This code is out of sync with "
1666 " ConstantFoldLoadThroughGEPConstantExpr");
1667 }
1668
Reid Spencere0fc4df2006-10-20 07:07:24 +00001669 assert(CI->getZExtValue() < ATy->getNumElements());
1670 Elts[CI->getZExtValue()] =
1671 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
Chris Lattner46af55e2005-09-26 06:52:44 +00001672 return ConstantArray::get(ATy, Elts);
1673 }
1674}
1675
Chris Lattner99e23fa2005-09-26 04:44:35 +00001676/// CommitValueTo - We have decided that Addr (which satisfies the predicate
1677/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
1678static void CommitValueTo(Constant *Val, Constant *Addr) {
Chris Lattner46af55e2005-09-26 06:52:44 +00001679 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
1680 assert(GV->hasInitializer());
1681 GV->setInitializer(Val);
1682 return;
1683 }
1684
1685 ConstantExpr *CE = cast<ConstantExpr>(Addr);
1686 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1687
1688 Constant *Init = GV->getInitializer();
1689 Init = EvaluateStoreInto(Init, Val, CE, 2);
1690 GV->setInitializer(Init);
Chris Lattner99e23fa2005-09-26 04:44:35 +00001691}
1692
Chris Lattnerb0096632005-09-26 05:16:34 +00001693/// ComputeLoadResult - Return the value that would be computed by a load from
1694/// P after the stores reflected by 'memory' have been performed. If we can't
1695/// decide, return null.
Chris Lattner4b05c322005-09-26 05:15:37 +00001696static Constant *ComputeLoadResult(Constant *P,
1697 const std::map<Constant*, Constant*> &Memory) {
1698 // If this memory location has been recently stored, use the stored value: it
1699 // is the most up-to-date.
1700 std::map<Constant*, Constant*>::const_iterator I = Memory.find(P);
1701 if (I != Memory.end()) return I->second;
1702
1703 // Access it.
1704 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
1705 if (GV->hasInitializer())
1706 return GV->getInitializer();
1707 return 0;
Chris Lattner4b05c322005-09-26 05:15:37 +00001708 }
Chris Lattner46af55e2005-09-26 06:52:44 +00001709
1710 // Handle a constantexpr getelementptr.
1711 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
1712 if (CE->getOpcode() == Instruction::GetElementPtr &&
1713 isa<GlobalVariable>(CE->getOperand(0))) {
1714 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1715 if (GV->hasInitializer())
1716 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1717 }
1718
1719 return 0; // don't know how to evaluate.
Chris Lattner4b05c322005-09-26 05:15:37 +00001720}
1721
Chris Lattnerda1889b2005-09-27 04:27:01 +00001722/// EvaluateFunction - Evaluate a call to function F, returning true if
1723/// successful, false if we can't evaluate it. ActualArgs contains the formal
1724/// arguments for the function.
Chris Lattner65a3a092005-09-27 04:45:34 +00001725static bool EvaluateFunction(Function *F, Constant *&RetVal,
Chris Lattnerda1889b2005-09-27 04:27:01 +00001726 const std::vector<Constant*> &ActualArgs,
1727 std::vector<Function*> &CallStack,
1728 std::map<Constant*, Constant*> &MutatedMemory,
1729 std::vector<GlobalVariable*> &AllocaTmps) {
Chris Lattner65a3a092005-09-27 04:45:34 +00001730 // Check to see if this function is already executing (recursion). If so,
1731 // bail out. TODO: we might want to accept limited recursion.
1732 if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
1733 return false;
1734
1735 CallStack.push_back(F);
1736
Chris Lattner99e23fa2005-09-26 04:44:35 +00001737 /// Values - As we compute SSA register values, we store their contents here.
1738 std::map<Value*, Constant*> Values;
Chris Lattner65a3a092005-09-27 04:45:34 +00001739
1740 // Initialize arguments to the incoming values specified.
1741 unsigned ArgNo = 0;
1742 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
1743 ++AI, ++ArgNo)
1744 Values[AI] = ActualArgs[ArgNo];
Chris Lattnerda1889b2005-09-27 04:27:01 +00001745
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00001746 /// ExecutedBlocks - We only handle non-looping, non-recursive code. As such,
1747 /// we can only evaluate any one basic block at most once. This set keeps
1748 /// track of what we have executed so we can detect recursive cases etc.
1749 std::set<BasicBlock*> ExecutedBlocks;
Chris Lattner6bf2cd52005-09-26 17:07:09 +00001750
Chris Lattner99e23fa2005-09-26 04:44:35 +00001751 // CurInst - The current instruction we're evaluating.
1752 BasicBlock::iterator CurInst = F->begin()->begin();
1753
1754 // This is the main evaluation loop.
1755 while (1) {
1756 Constant *InstResult = 0;
1757
1758 if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
Chris Lattner65a3a092005-09-27 04:45:34 +00001759 if (SI->isVolatile()) return false; // no volatile accesses.
Chris Lattner99e23fa2005-09-26 04:44:35 +00001760 Constant *Ptr = getVal(Values, SI->getOperand(1));
1761 if (!isSimpleEnoughPointerToCommit(Ptr))
1762 // If this is too complex for us to commit, reject it.
Chris Lattner65a3a092005-09-27 04:45:34 +00001763 return false;
Chris Lattner99e23fa2005-09-26 04:44:35 +00001764 Constant *Val = getVal(Values, SI->getOperand(0));
1765 MutatedMemory[Ptr] = Val;
1766 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
1767 InstResult = ConstantExpr::get(BO->getOpcode(),
1768 getVal(Values, BO->getOperand(0)),
1769 getVal(Values, BO->getOperand(1)));
Reid Spencer266e42b2006-12-23 06:05:41 +00001770 } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
1771 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
1772 getVal(Values, CI->getOperand(0)),
1773 getVal(Values, CI->getOperand(1)));
Chris Lattner99e23fa2005-09-26 04:44:35 +00001774 } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
Chris Lattner0390b9e2006-11-30 17:26:08 +00001775 InstResult = ConstantExpr::getCast(CI->getOpcode(),
1776 getVal(Values, CI->getOperand(0)),
Chris Lattner99e23fa2005-09-26 04:44:35 +00001777 CI->getType());
1778 } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
1779 InstResult = ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)),
1780 getVal(Values, SI->getOperand(1)),
1781 getVal(Values, SI->getOperand(2)));
Chris Lattner4b05c322005-09-26 05:15:37 +00001782 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
1783 Constant *P = getVal(Values, GEP->getOperand(0));
Chris Lattnerf96f4a82007-01-31 04:40:53 +00001784 SmallVector<Constant*, 8> GEPOps;
Chris Lattner4b05c322005-09-26 05:15:37 +00001785 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
1786 GEPOps.push_back(getVal(Values, GEP->getOperand(i)));
Chris Lattnerf96f4a82007-01-31 04:40:53 +00001787 InstResult = ConstantExpr::getGetElementPtr(P, &GEPOps[0], GEPOps.size());
Chris Lattner4b05c322005-09-26 05:15:37 +00001788 } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
Chris Lattner65a3a092005-09-27 04:45:34 +00001789 if (LI->isVolatile()) return false; // no volatile accesses.
Chris Lattner4b05c322005-09-26 05:15:37 +00001790 InstResult = ComputeLoadResult(getVal(Values, LI->getOperand(0)),
1791 MutatedMemory);
Chris Lattner65a3a092005-09-27 04:45:34 +00001792 if (InstResult == 0) return false; // Could not evaluate load.
Chris Lattner6bf2cd52005-09-26 17:07:09 +00001793 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
Chris Lattner65a3a092005-09-27 04:45:34 +00001794 if (AI->isArrayAllocation()) return false; // Cannot handle array allocs.
Chris Lattner6bf2cd52005-09-26 17:07:09 +00001795 const Type *Ty = AI->getType()->getElementType();
1796 AllocaTmps.push_back(new GlobalVariable(Ty, false,
1797 GlobalValue::InternalLinkage,
1798 UndefValue::get(Ty),
1799 AI->getName()));
Chris Lattner65a3a092005-09-27 04:45:34 +00001800 InstResult = AllocaTmps.back();
1801 } else if (CallInst *CI = dyn_cast<CallInst>(CurInst)) {
Chris Lattnerfd2e13b2006-07-07 21:37:01 +00001802 // Cannot handle inline asm.
1803 if (isa<InlineAsm>(CI->getOperand(0))) return false;
1804
Chris Lattner65a3a092005-09-27 04:45:34 +00001805 // Resolve function pointers.
1806 Function *Callee = dyn_cast<Function>(getVal(Values, CI->getOperand(0)));
1807 if (!Callee) return false; // Cannot resolve.
Chris Lattner3d27e7f2005-09-27 05:02:43 +00001808
Chris Lattner65a3a092005-09-27 04:45:34 +00001809 std::vector<Constant*> Formals;
1810 for (unsigned i = 1, e = CI->getNumOperands(); i != e; ++i)
1811 Formals.push_back(getVal(Values, CI->getOperand(i)));
Chris Lattner65a3a092005-09-27 04:45:34 +00001812
Reid Spencer5301e7c2007-01-30 20:08:39 +00001813 if (Callee->isDeclaration()) {
Chris Lattner3d27e7f2005-09-27 05:02:43 +00001814 // If this is a function we can constant fold, do it.
Chris Lattner6fc4b462007-01-30 23:14:52 +00001815 if (Constant *C = ConstantFoldCall(Callee, &Formals[0],
1816 Formals.size())) {
Chris Lattner3d27e7f2005-09-27 05:02:43 +00001817 InstResult = C;
1818 } else {
1819 return false;
1820 }
1821 } else {
1822 if (Callee->getFunctionType()->isVarArg())
1823 return false;
1824
1825 Constant *RetVal;
1826
1827 // Execute the call, if successful, use the return value.
1828 if (!EvaluateFunction(Callee, RetVal, Formals, CallStack,
1829 MutatedMemory, AllocaTmps))
1830 return false;
1831 InstResult = RetVal;
1832 }
Reid Spencerde46e482006-11-02 20:25:50 +00001833 } else if (isa<TerminatorInst>(CurInst)) {
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00001834 BasicBlock *NewBB = 0;
1835 if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
1836 if (BI->isUnconditional()) {
1837 NewBB = BI->getSuccessor(0);
1838 } else {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001839 ConstantInt *Cond =
1840 dyn_cast<ConstantInt>(getVal(Values, BI->getCondition()));
Chris Lattner15649082007-01-12 18:30:11 +00001841 if (!Cond) return false; // Cannot determine.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001842
Reid Spencercddc9df2007-01-12 04:24:46 +00001843 NewBB = BI->getSuccessor(!Cond->getZExtValue());
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00001844 }
1845 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
1846 ConstantInt *Val =
1847 dyn_cast<ConstantInt>(getVal(Values, SI->getCondition()));
Chris Lattner65a3a092005-09-27 04:45:34 +00001848 if (!Val) return false; // Cannot determine.
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00001849 NewBB = SI->getSuccessor(SI->findCaseValue(Val));
1850 } else if (ReturnInst *RI = dyn_cast<ReturnInst>(CurInst)) {
Chris Lattner65a3a092005-09-27 04:45:34 +00001851 if (RI->getNumOperands())
1852 RetVal = getVal(Values, RI->getOperand(0));
1853
1854 CallStack.pop_back(); // return from fn.
Chris Lattnerda1889b2005-09-27 04:27:01 +00001855 return true; // We succeeded at evaluating this ctor!
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00001856 } else {
Chris Lattner65a3a092005-09-27 04:45:34 +00001857 // invoke, unwind, unreachable.
1858 return false; // Cannot handle this terminator.
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00001859 }
1860
1861 // Okay, we succeeded in evaluating this control flow. See if we have
Chris Lattner65a3a092005-09-27 04:45:34 +00001862 // executed the new block before. If so, we have a looping function,
1863 // which we cannot evaluate in reasonable time.
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00001864 if (!ExecutedBlocks.insert(NewBB).second)
Chris Lattner65a3a092005-09-27 04:45:34 +00001865 return false; // looped!
Chris Lattner3e9ea5f2005-09-26 04:57:38 +00001866
1867 // Okay, we have never been in this block before. Check to see if there
1868 // are any PHI nodes. If so, evaluate them with information about where
1869 // we came from.
1870 BasicBlock *OldBB = CurInst->getParent();
1871 CurInst = NewBB->begin();
1872 PHINode *PN;
1873 for (; (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
1874 Values[PN] = getVal(Values, PN->getIncomingValueForBlock(OldBB));
1875
1876 // Do NOT increment CurInst. We know that the terminator had no value.
1877 continue;
Chris Lattner99e23fa2005-09-26 04:44:35 +00001878 } else {
Chris Lattner99e23fa2005-09-26 04:44:35 +00001879 // Did not know how to evaluate this!
Chris Lattner65a3a092005-09-27 04:45:34 +00001880 return false;
Chris Lattner99e23fa2005-09-26 04:44:35 +00001881 }
1882
1883 if (!CurInst->use_empty())
1884 Values[CurInst] = InstResult;
1885
1886 // Advance program counter.
1887 ++CurInst;
1888 }
Chris Lattnerda1889b2005-09-27 04:27:01 +00001889}
1890
1891/// EvaluateStaticConstructor - Evaluate static constructors in the function, if
1892/// we can. Return true if we can, false otherwise.
1893static bool EvaluateStaticConstructor(Function *F) {
1894 /// MutatedMemory - For each store we execute, we update this map. Loads
1895 /// check this to get the most up-to-date value. If evaluation is successful,
1896 /// this state is committed to the process.
1897 std::map<Constant*, Constant*> MutatedMemory;
1898
1899 /// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
1900 /// to represent its body. This vector is needed so we can delete the
1901 /// temporary globals when we are done.
1902 std::vector<GlobalVariable*> AllocaTmps;
1903
1904 /// CallStack - This is used to detect recursion. In pathological situations
1905 /// we could hit exponential behavior, but at least there is nothing
1906 /// unbounded.
1907 std::vector<Function*> CallStack;
1908
1909 // Call the function.
Chris Lattner65a3a092005-09-27 04:45:34 +00001910 Constant *RetValDummy;
1911 bool EvalSuccess = EvaluateFunction(F, RetValDummy, std::vector<Constant*>(),
1912 CallStack, MutatedMemory, AllocaTmps);
Chris Lattnerda1889b2005-09-27 04:27:01 +00001913 if (EvalSuccess) {
Chris Lattner6bf2cd52005-09-26 17:07:09 +00001914 // We succeeded at evaluation: commit the result.
Bill Wendling8f13b5c2006-11-26 10:02:32 +00001915 DOUT << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
1916 << F->getName() << "' to " << MutatedMemory.size()
1917 << " stores.\n";
Chris Lattner6bf2cd52005-09-26 17:07:09 +00001918 for (std::map<Constant*, Constant*>::iterator I = MutatedMemory.begin(),
1919 E = MutatedMemory.end(); I != E; ++I)
1920 CommitValueTo(I->second, I->first);
1921 }
Chris Lattner99e23fa2005-09-26 04:44:35 +00001922
Chris Lattner6bf2cd52005-09-26 17:07:09 +00001923 // At this point, we are done interpreting. If we created any 'alloca'
1924 // temporaries, release them now.
1925 while (!AllocaTmps.empty()) {
1926 GlobalVariable *Tmp = AllocaTmps.back();
1927 AllocaTmps.pop_back();
Chris Lattnerda1889b2005-09-27 04:27:01 +00001928
Chris Lattner6bf2cd52005-09-26 17:07:09 +00001929 // If there are still users of the alloca, the program is doing something
1930 // silly, e.g. storing the address of the alloca somewhere and using it
1931 // later. Since this is undefined, we'll just make it be null.
1932 if (!Tmp->use_empty())
1933 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
1934 delete Tmp;
1935 }
Chris Lattner46d9ff082005-09-26 07:34:35 +00001936
Chris Lattnerda1889b2005-09-27 04:27:01 +00001937 return EvalSuccess;
Chris Lattner99e23fa2005-09-26 04:44:35 +00001938}
1939
Chris Lattner696beef2005-09-26 02:31:18 +00001940
Chris Lattnerda1889b2005-09-27 04:27:01 +00001941
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001942/// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
1943/// Return true if anything changed.
1944bool GlobalOpt::OptimizeGlobalCtorsList(GlobalVariable *&GCL) {
1945 std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
1946 bool MadeChange = false;
1947 if (Ctors.empty()) return false;
1948
1949 // Loop over global ctors, optimizing them when we can.
1950 for (unsigned i = 0; i != Ctors.size(); ++i) {
1951 Function *F = Ctors[i];
1952 // Found a null terminator in the middle of the list, prune off the rest of
1953 // the list.
Chris Lattner838bdc12005-09-26 02:19:27 +00001954 if (F == 0) {
1955 if (i != Ctors.size()-1) {
1956 Ctors.resize(i+1);
1957 MadeChange = true;
1958 }
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001959 break;
1960 }
1961
Chris Lattner99e23fa2005-09-26 04:44:35 +00001962 // We cannot simplify external ctor functions.
1963 if (F->empty()) continue;
1964
1965 // If we can evaluate the ctor at compile time, do.
1966 if (EvaluateStaticConstructor(F)) {
1967 Ctors.erase(Ctors.begin()+i);
1968 MadeChange = true;
1969 --i;
1970 ++NumCtorsEvaluated;
1971 continue;
1972 }
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001973 }
1974
1975 if (!MadeChange) return false;
1976
Chris Lattner696beef2005-09-26 02:31:18 +00001977 GCL = InstallGlobalCtors(GCL, Ctors);
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001978 return true;
1979}
1980
1981
Chris Lattner25db5802004-10-07 04:16:33 +00001982bool GlobalOpt::runOnModule(Module &M) {
1983 bool Changed = false;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001984
1985 // Try to find the llvm.globalctors list.
1986 GlobalVariable *GlobalCtors = FindGlobalCtors(M);
Chris Lattner25db5802004-10-07 04:16:33 +00001987
Chris Lattner25db5802004-10-07 04:16:33 +00001988 bool LocalChange = true;
1989 while (LocalChange) {
1990 LocalChange = false;
Chris Lattner41b6a5a2005-09-26 01:43:45 +00001991
1992 // Delete functions that are trivially dead, ccc -> fastcc
1993 LocalChange |= OptimizeFunctions(M);
1994
1995 // Optimize global_ctors list.
1996 if (GlobalCtors)
1997 LocalChange |= OptimizeGlobalCtorsList(GlobalCtors);
1998
1999 // Optimize non-address-taken globals.
2000 LocalChange |= OptimizeGlobalVars(M);
Chris Lattner25db5802004-10-07 04:16:33 +00002001 Changed |= LocalChange;
2002 }
Chris Lattner41b6a5a2005-09-26 01:43:45 +00002003
2004 // TODO: Move all global ctors functions to the end of the module for code
2005 // layout.
2006
Chris Lattner25db5802004-10-07 04:16:33 +00002007 return Changed;
2008}