blob: ac8ff115fae8c117d3829f91b750d5e6a322335f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
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"
18#include "llvm/CallingConv.h"
19#include "llvm/Constants.h"
20#include "llvm/DerivedTypes.h"
21#include "llvm/Instructions.h"
22#include "llvm/IntrinsicInst.h"
23#include "llvm/Module.h"
24#include "llvm/Pass.h"
25#include "llvm/Analysis/ConstantFolding.h"
26#include "llvm/Target/TargetData.h"
Duncan Sands551ec902008-02-18 17:32:13 +000027#include "llvm/Support/CallSite.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/Support/Compiler.h"
29#include "llvm/Support/Debug.h"
Chris Lattner7bd79da2008-01-14 02:09:12 +000030#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner20846272008-04-26 07:40:11 +000031#include "llvm/Support/MathExtras.h"
Chris Lattner4cd08c22008-12-16 07:34:30 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerbdf77462007-09-13 16:30:19 +000033#include "llvm/ADT/SmallPtrSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include "llvm/ADT/SmallVector.h"
35#include "llvm/ADT/Statistic.h"
36#include "llvm/ADT/StringExtras.h"
37#include <algorithm>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038using namespace llvm;
39
40STATISTIC(NumMarked , "Number of globals marked constant");
41STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
42STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
43STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
44STATISTIC(NumDeleted , "Number of globals deleted");
45STATISTIC(NumFnDeleted , "Number of functions deleted");
46STATISTIC(NumGlobUses , "Number of global uses devirtualized");
47STATISTIC(NumLocalized , "Number of globals localized");
48STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
49STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
50STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sandsafa10bf2008-02-16 20:56:04 +000051STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052
53namespace {
54 struct VISIBILITY_HIDDEN GlobalOpt : public ModulePass {
55 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
56 AU.addRequired<TargetData>();
57 }
58 static char ID; // Pass identification, replacement for typeid
Dan Gohman26f8c272008-09-04 17:05:41 +000059 GlobalOpt() : ModulePass(&ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060
61 bool runOnModule(Module &M);
62
63 private:
64 GlobalVariable *FindGlobalCtors(Module &M);
65 bool OptimizeFunctions(Module &M);
66 bool OptimizeGlobalVars(Module &M);
Anton Korobeynikov76944bd2008-09-09 19:04:59 +000067 bool ResolveAliases(Module &M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068 bool OptimizeGlobalCtorsList(GlobalVariable *&GCL);
69 bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
70 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071}
72
Dan Gohman089efff2008-05-13 00:00:25 +000073char GlobalOpt::ID = 0;
74static RegisterPass<GlobalOpt> X("globalopt", "Global Variable Optimizer");
75
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
77
Dan Gohman089efff2008-05-13 00:00:25 +000078namespace {
79
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080/// GlobalStatus - As we analyze each global, keep track of some information
81/// about it. If we find out that the address of the global is taken, none of
82/// this info will be accurate.
83struct VISIBILITY_HIDDEN GlobalStatus {
84 /// isLoaded - True if the global is ever loaded. If the global isn't ever
85 /// loaded it can be deleted.
86 bool isLoaded;
87
88 /// StoredType - Keep track of what stores to the global look like.
89 ///
90 enum StoredType {
91 /// NotStored - There is no store to this global. It can thus be marked
92 /// constant.
93 NotStored,
94
95 /// isInitializerStored - This global is stored to, but the only thing
96 /// stored is the constant it was initialized with. This is only tracked
97 /// for scalar globals.
98 isInitializerStored,
99
100 /// isStoredOnce - This global is stored to, but only its initializer and
101 /// one other value is ever stored to it. If this global isStoredOnce, we
102 /// track the value stored to it in StoredOnceValue below. This is only
103 /// tracked for scalar globals.
104 isStoredOnce,
105
106 /// isStored - This global is stored to by multiple values or something else
107 /// that we cannot track.
108 isStored
109 } StoredType;
110
111 /// StoredOnceValue - If only one value (besides the initializer constant) is
112 /// ever stored to this global, keep track of what value it is.
113 Value *StoredOnceValue;
114
115 /// AccessingFunction/HasMultipleAccessingFunctions - These start out
116 /// null/false. When the first accessing function is noticed, it is recorded.
117 /// When a second different accessing function is noticed,
118 /// HasMultipleAccessingFunctions is set to true.
119 Function *AccessingFunction;
120 bool HasMultipleAccessingFunctions;
121
122 /// HasNonInstructionUser - Set to true if this global has a user that is not
123 /// an instruction (e.g. a constant expr or GV initializer).
124 bool HasNonInstructionUser;
125
126 /// HasPHIUser - Set to true if this global has a user that is a PHI node.
127 bool HasPHIUser;
128
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 GlobalStatus() : isLoaded(false), StoredType(NotStored), StoredOnceValue(0),
130 AccessingFunction(0), HasMultipleAccessingFunctions(false),
Chris Lattnercad76212008-01-14 01:32:52 +0000131 HasNonInstructionUser(false), HasPHIUser(false) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132};
133
Dan Gohman089efff2008-05-13 00:00:25 +0000134}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135
136/// ConstantIsDead - Return true if the specified constant is (transitively)
137/// dead. The constant may be used by other constants (e.g. constant arrays and
138/// constant exprs) as long as they are dead, but it cannot be used by anything
139/// else.
140static bool ConstantIsDead(Constant *C) {
141 if (isa<GlobalValue>(C)) return false;
142
143 for (Value::use_iterator UI = C->use_begin(), E = C->use_end(); UI != E; ++UI)
144 if (Constant *CU = dyn_cast<Constant>(*UI)) {
145 if (!ConstantIsDead(CU)) return false;
146 } else
147 return false;
148 return true;
149}
150
151
152/// AnalyzeGlobal - Look at all uses of the global and fill in the GlobalStatus
153/// structure. If the global has its address taken, return true to indicate we
154/// can't do anything with it.
155///
156static bool AnalyzeGlobal(Value *V, GlobalStatus &GS,
Chris Lattner4cd08c22008-12-16 07:34:30 +0000157 SmallPtrSet<PHINode*, 16> &PHIUsers) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
159 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) {
160 GS.HasNonInstructionUser = true;
161
162 if (AnalyzeGlobal(CE, GS, PHIUsers)) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163
164 } else if (Instruction *I = dyn_cast<Instruction>(*UI)) {
165 if (!GS.HasMultipleAccessingFunctions) {
166 Function *F = I->getParent()->getParent();
167 if (GS.AccessingFunction == 0)
168 GS.AccessingFunction = F;
169 else if (GS.AccessingFunction != F)
170 GS.HasMultipleAccessingFunctions = true;
171 }
Chris Lattner75a2db82008-01-29 19:01:37 +0000172 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 GS.isLoaded = true;
Chris Lattner75a2db82008-01-29 19:01:37 +0000174 if (LI->isVolatile()) return true; // Don't hack on volatile loads.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
176 // Don't allow a store OF the address, only stores TO the address.
177 if (SI->getOperand(0) == V) return true;
178
Chris Lattner75a2db82008-01-29 19:01:37 +0000179 if (SI->isVolatile()) return true; // Don't hack on volatile stores.
180
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 // If this is a direct store to the global (i.e., the global is a scalar
182 // value, not an aggregate), keep more specific information about
183 // stores.
Anton Korobeynikov8522e1c2008-02-20 11:26:25 +0000184 if (GS.StoredType != GlobalStatus::isStored) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(SI->getOperand(1))){
186 Value *StoredVal = SI->getOperand(0);
187 if (StoredVal == GV->getInitializer()) {
188 if (GS.StoredType < GlobalStatus::isInitializerStored)
189 GS.StoredType = GlobalStatus::isInitializerStored;
190 } else if (isa<LoadInst>(StoredVal) &&
191 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
192 // G = G
193 if (GS.StoredType < GlobalStatus::isInitializerStored)
194 GS.StoredType = GlobalStatus::isInitializerStored;
195 } else if (GS.StoredType < GlobalStatus::isStoredOnce) {
196 GS.StoredType = GlobalStatus::isStoredOnce;
197 GS.StoredOnceValue = StoredVal;
198 } else if (GS.StoredType == GlobalStatus::isStoredOnce &&
199 GS.StoredOnceValue == StoredVal) {
200 // noop.
201 } else {
202 GS.StoredType = GlobalStatus::isStored;
203 }
204 } else {
205 GS.StoredType = GlobalStatus::isStored;
206 }
Anton Korobeynikov8522e1c2008-02-20 11:26:25 +0000207 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 } else if (isa<GetElementPtrInst>(I)) {
209 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210 } else if (isa<SelectInst>(I)) {
211 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 } else if (PHINode *PN = dyn_cast<PHINode>(I)) {
213 // PHI nodes we can check just like select or GEP instructions, but we
214 // have to be careful about infinite recursion.
Chris Lattner4cd08c22008-12-16 07:34:30 +0000215 if (PHIUsers.insert(PN)) // Not already visited.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 GS.HasPHIUser = true;
218 } else if (isa<CmpInst>(I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 } else if (isa<MemCpyInst>(I) || isa<MemMoveInst>(I)) {
220 if (I->getOperand(1) == V)
221 GS.StoredType = GlobalStatus::isStored;
222 if (I->getOperand(2) == V)
223 GS.isLoaded = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224 } else if (isa<MemSetInst>(I)) {
225 assert(I->getOperand(1) == V && "Memset only takes one pointer!");
226 GS.StoredType = GlobalStatus::isStored;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 } else {
228 return true; // Any other non-load instruction might take address!
229 }
230 } else if (Constant *C = dyn_cast<Constant>(*UI)) {
231 GS.HasNonInstructionUser = true;
232 // We might have a dead and dangling constant hanging off of here.
233 if (!ConstantIsDead(C))
234 return true;
235 } else {
236 GS.HasNonInstructionUser = true;
237 // Otherwise must be some other user.
238 return true;
239 }
240
241 return false;
242}
243
244static Constant *getAggregateConstantElement(Constant *Agg, Constant *Idx) {
245 ConstantInt *CI = dyn_cast<ConstantInt>(Idx);
246 if (!CI) return 0;
247 unsigned IdxV = CI->getZExtValue();
248
249 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Agg)) {
250 if (IdxV < CS->getNumOperands()) return CS->getOperand(IdxV);
251 } else if (ConstantArray *CA = dyn_cast<ConstantArray>(Agg)) {
252 if (IdxV < CA->getNumOperands()) return CA->getOperand(IdxV);
253 } else if (ConstantVector *CP = dyn_cast<ConstantVector>(Agg)) {
254 if (IdxV < CP->getNumOperands()) return CP->getOperand(IdxV);
255 } else if (isa<ConstantAggregateZero>(Agg)) {
256 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
257 if (IdxV < STy->getNumElements())
258 return Constant::getNullValue(STy->getElementType(IdxV));
259 } else if (const SequentialType *STy =
260 dyn_cast<SequentialType>(Agg->getType())) {
261 return Constant::getNullValue(STy->getElementType());
262 }
263 } else if (isa<UndefValue>(Agg)) {
264 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
265 if (IdxV < STy->getNumElements())
266 return UndefValue::get(STy->getElementType(IdxV));
267 } else if (const SequentialType *STy =
268 dyn_cast<SequentialType>(Agg->getType())) {
269 return UndefValue::get(STy->getElementType());
270 }
271 }
272 return 0;
273}
274
275
276/// CleanupConstantGlobalUsers - We just marked GV constant. Loop over all
277/// users of the global, cleaning up the obvious ones. This is largely just a
278/// quick scan over the use list to clean up the easy and obvious cruft. This
279/// returns true if it made a change.
280static bool CleanupConstantGlobalUsers(Value *V, Constant *Init) {
281 bool Changed = false;
282 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;) {
283 User *U = *UI++;
284
285 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
286 if (Init) {
287 // Replace the load with the initializer.
288 LI->replaceAllUsesWith(Init);
289 LI->eraseFromParent();
290 Changed = true;
291 }
292 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
293 // Store must be unreachable or storing Init into the global.
294 SI->eraseFromParent();
295 Changed = true;
296 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
297 if (CE->getOpcode() == Instruction::GetElementPtr) {
298 Constant *SubInit = 0;
299 if (Init)
300 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
301 Changed |= CleanupConstantGlobalUsers(CE, SubInit);
302 } else if (CE->getOpcode() == Instruction::BitCast &&
303 isa<PointerType>(CE->getType())) {
304 // Pointer cast, delete any stores and memsets to the global.
305 Changed |= CleanupConstantGlobalUsers(CE, 0);
306 }
307
308 if (CE->use_empty()) {
309 CE->destroyConstant();
310 Changed = true;
311 }
312 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner7ebafca2007-11-09 17:33:02 +0000313 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
314 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
315 // and will invalidate our notion of what Init is.
Chris Lattner2dd9c042007-11-13 21:46:23 +0000316 Constant *SubInit = 0;
Chris Lattner7ebafca2007-11-09 17:33:02 +0000317 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
318 ConstantExpr *CE =
319 dyn_cast_or_null<ConstantExpr>(ConstantFoldInstruction(GEP));
320 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Chris Lattner2dd9c042007-11-13 21:46:23 +0000321 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner7ebafca2007-11-09 17:33:02 +0000322 }
Chris Lattner2dd9c042007-11-13 21:46:23 +0000323 Changed |= CleanupConstantGlobalUsers(GEP, SubInit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000324
325 if (GEP->use_empty()) {
326 GEP->eraseFromParent();
327 Changed = true;
328 }
329 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
330 if (MI->getRawDest() == V) {
331 MI->eraseFromParent();
332 Changed = true;
333 }
334
335 } else if (Constant *C = dyn_cast<Constant>(U)) {
336 // If we have a chain of dead constantexprs or other things dangling from
337 // us, and if they are all dead, nuke them without remorse.
338 if (ConstantIsDead(C)) {
339 C->destroyConstant();
340 // This could have invalidated UI, start over from scratch.
341 CleanupConstantGlobalUsers(V, Init);
342 return true;
343 }
344 }
345 }
346 return Changed;
347}
348
Chris Lattner7bd79da2008-01-14 02:09:12 +0000349/// isSafeSROAElementUse - Return true if the specified instruction is a safe
350/// user of a derived expression from a global that we want to SROA.
351static bool isSafeSROAElementUse(Value *V) {
352 // We might have a dead and dangling constant hanging off of here.
353 if (Constant *C = dyn_cast<Constant>(V))
354 return ConstantIsDead(C);
Chris Lattner7329c662008-01-14 01:31:05 +0000355
Chris Lattner7bd79da2008-01-14 02:09:12 +0000356 Instruction *I = dyn_cast<Instruction>(V);
357 if (!I) return false;
358
359 // Loads are ok.
360 if (isa<LoadInst>(I)) return true;
361
362 // Stores *to* the pointer are ok.
363 if (StoreInst *SI = dyn_cast<StoreInst>(I))
364 return SI->getOperand(0) != V;
365
366 // Otherwise, it must be a GEP.
367 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
368 if (GEPI == 0) return false;
369
370 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
371 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
372 return false;
373
374 for (Value::use_iterator I = GEPI->use_begin(), E = GEPI->use_end();
375 I != E; ++I)
376 if (!isSafeSROAElementUse(*I))
377 return false;
Chris Lattner7329c662008-01-14 01:31:05 +0000378 return true;
379}
380
Chris Lattner7bd79da2008-01-14 02:09:12 +0000381
382/// IsUserOfGlobalSafeForSRA - U is a direct user of the specified global value.
383/// Look at it and its uses and decide whether it is safe to SROA this global.
384///
385static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
386 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
387 if (!isa<GetElementPtrInst>(U) &&
388 (!isa<ConstantExpr>(U) ||
389 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
390 return false;
391
392 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
393 // don't like < 3 operand CE's, and we don't like non-constant integer
394 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
395 // value of C.
396 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
397 !cast<Constant>(U->getOperand(1))->isNullValue() ||
398 !isa<ConstantInt>(U->getOperand(2)))
399 return false;
400
401 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
402 ++GEPI; // Skip over the pointer index.
403
404 // If this is a use of an array allocation, do a bit more checking for sanity.
405 if (const ArrayType *AT = dyn_cast<ArrayType>(*GEPI)) {
406 uint64_t NumElements = AT->getNumElements();
407 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
408
409 // Check to make sure that index falls within the array. If not,
410 // something funny is going on, so we won't do the optimization.
411 //
412 if (Idx->getZExtValue() >= NumElements)
413 return false;
414
415 // We cannot scalar repl this level of the array unless any array
416 // sub-indices are in-range constants. In particular, consider:
417 // A[0][i]. We cannot know that the user isn't doing invalid things like
418 // allowing i to index an out-of-range subscript that accesses A[1].
419 //
420 // Scalar replacing *just* the outer index of the array is probably not
421 // going to be a win anyway, so just give up.
422 for (++GEPI; // Skip array index.
423 GEPI != E && (isa<ArrayType>(*GEPI) || isa<VectorType>(*GEPI));
424 ++GEPI) {
425 uint64_t NumElements;
426 if (const ArrayType *SubArrayTy = dyn_cast<ArrayType>(*GEPI))
427 NumElements = SubArrayTy->getNumElements();
428 else
429 NumElements = cast<VectorType>(*GEPI)->getNumElements();
430
431 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
432 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
433 return false;
434 }
435 }
436
437 for (Value::use_iterator I = U->use_begin(), E = U->use_end(); I != E; ++I)
438 if (!isSafeSROAElementUse(*I))
439 return false;
440 return true;
441}
442
443/// GlobalUsersSafeToSRA - Look at all uses of the global and decide whether it
444/// is safe for us to perform this transformation.
445///
446static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
447 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
448 UI != E; ++UI) {
449 if (!IsUserOfGlobalSafeForSRA(*UI, GV))
450 return false;
451 }
452 return true;
453}
454
455
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000456/// SRAGlobal - Perform scalar replacement of aggregates on the specified global
457/// variable. This opens the door for other optimizations by exposing the
458/// behavior of the program in a more fine-grained way. We have determined that
459/// this transformation is safe already. We return the first global variable we
460/// insert so that the caller can reprocess it.
Chris Lattner20846272008-04-26 07:40:11 +0000461static GlobalVariable *SRAGlobal(GlobalVariable *GV, const TargetData &TD) {
Chris Lattner7329c662008-01-14 01:31:05 +0000462 // Make sure this global only has simple uses that we can SRA.
Chris Lattner7bd79da2008-01-14 02:09:12 +0000463 if (!GlobalUsersSafeToSRA(GV))
Chris Lattner7329c662008-01-14 01:31:05 +0000464 return 0;
465
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466 assert(GV->hasInternalLinkage() && !GV->isConstant());
467 Constant *Init = GV->getInitializer();
468 const Type *Ty = Init->getType();
469
470 std::vector<GlobalVariable*> NewGlobals;
471 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
472
Chris Lattner20846272008-04-26 07:40:11 +0000473 // Get the alignment of the global, either explicit or target-specific.
474 unsigned StartAlignment = GV->getAlignment();
475 if (StartAlignment == 0)
476 StartAlignment = TD.getABITypeAlignment(GV->getType());
477
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
479 NewGlobals.reserve(STy->getNumElements());
Chris Lattner20846272008-04-26 07:40:11 +0000480 const StructLayout &Layout = *TD.getStructLayout(STy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
482 Constant *In = getAggregateConstantElement(Init,
483 ConstantInt::get(Type::Int32Ty, i));
484 assert(In && "Couldn't get element of initializer?");
485 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
486 GlobalVariable::InternalLinkage,
487 In, GV->getName()+"."+utostr(i),
488 (Module *)NULL,
Matthijs Kooijman36693bb2008-07-17 11:59:53 +0000489 GV->isThreadLocal(),
490 GV->getType()->getAddressSpace());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491 Globals.insert(GV, NGV);
492 NewGlobals.push_back(NGV);
Chris Lattner20846272008-04-26 07:40:11 +0000493
494 // Calculate the known alignment of the field. If the original aggregate
495 // had 256 byte alignment for example, something might depend on that:
496 // propagate info to each field.
497 uint64_t FieldOffset = Layout.getElementOffset(i);
498 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
499 if (NewAlign > TD.getABITypeAlignment(STy->getElementType(i)))
500 NGV->setAlignment(NewAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000501 }
502 } else if (const SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
503 unsigned NumElements = 0;
504 if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
505 NumElements = ATy->getNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506 else
Chris Lattner20846272008-04-26 07:40:11 +0000507 NumElements = cast<VectorType>(STy)->getNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508
509 if (NumElements > 16 && GV->hasNUsesOrMore(16))
510 return 0; // It's not worth it.
511 NewGlobals.reserve(NumElements);
Chris Lattner20846272008-04-26 07:40:11 +0000512
513 uint64_t EltSize = TD.getABITypeSize(STy->getElementType());
514 unsigned EltAlign = TD.getABITypeAlignment(STy->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515 for (unsigned i = 0, e = NumElements; i != e; ++i) {
516 Constant *In = getAggregateConstantElement(Init,
517 ConstantInt::get(Type::Int32Ty, i));
518 assert(In && "Couldn't get element of initializer?");
519
520 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
521 GlobalVariable::InternalLinkage,
522 In, GV->getName()+"."+utostr(i),
523 (Module *)NULL,
Matthijs Kooijman36693bb2008-07-17 11:59:53 +0000524 GV->isThreadLocal(),
525 GV->getType()->getAddressSpace());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 Globals.insert(GV, NGV);
527 NewGlobals.push_back(NGV);
Chris Lattner20846272008-04-26 07:40:11 +0000528
529 // Calculate the known alignment of the field. If the original aggregate
530 // had 256 byte alignment for example, something might depend on that:
531 // propagate info to each field.
532 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
533 if (NewAlign > EltAlign)
534 NGV->setAlignment(NewAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535 }
536 }
537
538 if (NewGlobals.empty())
539 return 0;
540
541 DOUT << "PERFORMING GLOBAL SRA ON: " << *GV;
542
543 Constant *NullInt = Constant::getNullValue(Type::Int32Ty);
544
545 // Loop over all of the uses of the global, replacing the constantexpr geps,
546 // with smaller constantexpr geps or direct references.
547 while (!GV->use_empty()) {
548 User *GEP = GV->use_back();
549 assert(((isa<ConstantExpr>(GEP) &&
550 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
551 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
552
553 // Ignore the 1th operand, which has to be zero or else the program is quite
554 // broken (undefined). Get the 2nd operand, which is the structure or array
555 // index.
556 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
557 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
558
559 Value *NewPtr = NewGlobals[Val];
560
561 // Form a shorter GEP if needed.
Anton Korobeynikov8522e1c2008-02-20 11:26:25 +0000562 if (GEP->getNumOperands() > 3) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000563 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
564 SmallVector<Constant*, 8> Idxs;
565 Idxs.push_back(NullInt);
566 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
567 Idxs.push_back(CE->getOperand(i));
568 NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr),
569 &Idxs[0], Idxs.size());
570 } else {
571 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
572 SmallVector<Value*, 8> Idxs;
573 Idxs.push_back(NullInt);
574 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
575 Idxs.push_back(GEPI->getOperand(i));
Gabor Greifd6da1d02008-04-06 20:25:17 +0000576 NewPtr = GetElementPtrInst::Create(NewPtr, Idxs.begin(), Idxs.end(),
577 GEPI->getName()+"."+utostr(Val), GEPI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578 }
Anton Korobeynikov8522e1c2008-02-20 11:26:25 +0000579 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000580 GEP->replaceAllUsesWith(NewPtr);
581
582 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
583 GEPI->eraseFromParent();
584 else
585 cast<ConstantExpr>(GEP)->destroyConstant();
586 }
587
588 // Delete the old global, now that it is dead.
589 Globals.erase(GV);
590 ++NumSRA;
591
592 // Loop over the new globals array deleting any globals that are obviously
593 // dead. This can arise due to scalarization of a structure or an array that
594 // has elements that are dead.
595 unsigned FirstGlobal = 0;
596 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
597 if (NewGlobals[i]->use_empty()) {
598 Globals.erase(NewGlobals[i]);
599 if (FirstGlobal == i) ++FirstGlobal;
600 }
601
602 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : 0;
603}
604
605/// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
Chris Lattnerbdf77462007-09-13 16:30:19 +0000606/// value will trap if the value is dynamically null. PHIs keeps track of any
607/// phi nodes we've seen to avoid reprocessing them.
608static bool AllUsesOfValueWillTrapIfNull(Value *V,
609 SmallPtrSet<PHINode*, 8> &PHIs) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000610 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
611 if (isa<LoadInst>(*UI)) {
612 // Will trap.
613 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
614 if (SI->getOperand(0) == V) {
615 //cerr << "NONTRAPPING USE: " << **UI;
616 return false; // Storing the value.
617 }
618 } else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
619 if (CI->getOperand(0) != V) {
620 //cerr << "NONTRAPPING USE: " << **UI;
621 return false; // Not calling the ptr
622 }
623 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
624 if (II->getOperand(0) != V) {
625 //cerr << "NONTRAPPING USE: " << **UI;
626 return false; // Not calling the ptr
627 }
Chris Lattnerbdf77462007-09-13 16:30:19 +0000628 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(*UI)) {
629 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
Chris Lattnerbdf77462007-09-13 16:30:19 +0000631 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
632 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
633 // If we've already seen this phi node, ignore it, it has already been
634 // checked.
635 if (PHIs.insert(PN))
636 return AllUsesOfValueWillTrapIfNull(PN, PHIs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637 } else if (isa<ICmpInst>(*UI) &&
638 isa<ConstantPointerNull>(UI->getOperand(1))) {
639 // Ignore setcc X, null
640 } else {
641 //cerr << "NONTRAPPING USE: " << **UI;
642 return false;
643 }
644 return true;
645}
646
647/// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
648/// from GV will trap if the loaded value is null. Note that this also permits
649/// comparisons of the loaded value against null, as a special case.
650static bool AllUsesOfLoadedValueWillTrapIfNull(GlobalVariable *GV) {
651 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI!=E; ++UI)
652 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
Chris Lattnerbdf77462007-09-13 16:30:19 +0000653 SmallPtrSet<PHINode*, 8> PHIs;
654 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655 return false;
656 } else if (isa<StoreInst>(*UI)) {
657 // Ignore stores to the global.
658 } else {
659 // We don't know or understand this user, bail out.
660 //cerr << "UNKNOWN USER OF GLOBAL!: " << **UI;
661 return false;
662 }
663
664 return true;
665}
666
667static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
668 bool Changed = false;
669 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
670 Instruction *I = cast<Instruction>(*UI++);
671 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
672 LI->setOperand(0, NewV);
673 Changed = true;
674 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
675 if (SI->getOperand(1) == V) {
676 SI->setOperand(1, NewV);
677 Changed = true;
678 }
679 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
680 if (I->getOperand(0) == V) {
681 // Calling through the pointer! Turn into a direct call, but be careful
682 // that the pointer is not also being passed as an argument.
683 I->setOperand(0, NewV);
684 Changed = true;
685 bool PassedAsArg = false;
686 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i)
687 if (I->getOperand(i) == V) {
688 PassedAsArg = true;
689 I->setOperand(i, NewV);
690 }
691
692 if (PassedAsArg) {
693 // Being passed as an argument also. Be careful to not invalidate UI!
694 UI = V->use_begin();
695 }
696 }
697 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
698 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
699 ConstantExpr::getCast(CI->getOpcode(),
700 NewV, CI->getType()));
701 if (CI->use_empty()) {
702 Changed = true;
703 CI->eraseFromParent();
704 }
705 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
706 // Should handle GEP here.
707 SmallVector<Constant*, 8> Idxs;
708 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif20f03f52008-05-29 01:59:18 +0000709 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
710 i != e; ++i)
711 if (Constant *C = dyn_cast<Constant>(*i))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000712 Idxs.push_back(C);
713 else
714 break;
715 if (Idxs.size() == GEPI->getNumOperands()-1)
716 Changed |= OptimizeAwayTrappingUsesOfValue(GEPI,
717 ConstantExpr::getGetElementPtr(NewV, &Idxs[0],
718 Idxs.size()));
719 if (GEPI->use_empty()) {
720 Changed = true;
721 GEPI->eraseFromParent();
722 }
723 }
724 }
725
726 return Changed;
727}
728
729
730/// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
731/// value stored into it. If there are uses of the loaded value that would trap
732/// if the loaded value is dynamically null, then we know that they cannot be
733/// reachable with a null optimize away the load.
734static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV) {
735 std::vector<LoadInst*> Loads;
736 bool Changed = false;
737
738 // Replace all uses of loads with uses of uses of the stored value.
739 for (Value::use_iterator GUI = GV->use_begin(), E = GV->use_end();
740 GUI != E; ++GUI)
741 if (LoadInst *LI = dyn_cast<LoadInst>(*GUI)) {
742 Loads.push_back(LI);
743 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
744 } else {
745 // If we get here we could have stores, selects, or phi nodes whose values
746 // are loaded.
747 assert((isa<StoreInst>(*GUI) || isa<PHINode>(*GUI) ||
Chris Lattnerad8665a2008-01-04 05:04:53 +0000748 isa<SelectInst>(*GUI) || isa<ConstantExpr>(*GUI)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 "Only expect load and stores!");
750 }
751
752 if (Changed) {
753 DOUT << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV;
754 ++NumGlobUses;
755 }
756
757 // Delete all of the loads we can, keeping track of whether we nuked them all!
758 bool AllLoadsGone = true;
759 while (!Loads.empty()) {
760 LoadInst *L = Loads.back();
761 if (L->use_empty()) {
762 L->eraseFromParent();
763 Changed = true;
764 } else {
765 AllLoadsGone = false;
766 }
767 Loads.pop_back();
768 }
769
770 // If we nuked all of the loads, then none of the stores are needed either,
771 // nor is the global.
772 if (AllLoadsGone) {
773 DOUT << " *** GLOBAL NOW DEAD!\n";
774 CleanupConstantGlobalUsers(GV, 0);
775 if (GV->use_empty()) {
776 GV->eraseFromParent();
777 ++NumDeleted;
778 }
779 Changed = true;
780 }
781 return Changed;
782}
783
784/// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
785/// instructions that are foldable.
786static void ConstantPropUsersOf(Value *V) {
787 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
788 if (Instruction *I = dyn_cast<Instruction>(*UI++))
789 if (Constant *NewC = ConstantFoldInstruction(I)) {
790 I->replaceAllUsesWith(NewC);
791
792 // Advance UI to the next non-I use to avoid invalidating it!
793 // Instructions could multiply use V.
794 while (UI != E && *UI == I)
795 ++UI;
796 I->eraseFromParent();
797 }
798}
799
800/// OptimizeGlobalAddressOfMalloc - This function takes the specified global
801/// variable, and transforms the program as if it always contained the result of
802/// the specified malloc. Because it is always the result of the specified
803/// malloc, there is no reason to actually DO the malloc. Instead, turn the
804/// malloc into a global, and any loads of GV as uses of the new global.
805static GlobalVariable *OptimizeGlobalAddressOfMalloc(GlobalVariable *GV,
806 MallocInst *MI) {
807 DOUT << "PROMOTING MALLOC GLOBAL: " << *GV << " MALLOC = " << *MI;
808 ConstantInt *NElements = cast<ConstantInt>(MI->getArraySize());
809
810 if (NElements->getZExtValue() != 1) {
811 // If we have an array allocation, transform it to a single element
812 // allocation to make the code below simpler.
813 Type *NewTy = ArrayType::get(MI->getAllocatedType(),
814 NElements->getZExtValue());
815 MallocInst *NewMI =
816 new MallocInst(NewTy, Constant::getNullValue(Type::Int32Ty),
817 MI->getAlignment(), MI->getName(), MI);
818 Value* Indices[2];
819 Indices[0] = Indices[1] = Constant::getNullValue(Type::Int32Ty);
Gabor Greifd6da1d02008-04-06 20:25:17 +0000820 Value *NewGEP = GetElementPtrInst::Create(NewMI, Indices, Indices + 2,
821 NewMI->getName()+".el0", MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000822 MI->replaceAllUsesWith(NewGEP);
823 MI->eraseFromParent();
824 MI = NewMI;
825 }
826
827 // Create the new global variable. The contents of the malloc'd memory is
828 // undefined, so initialize with an undef value.
829 Constant *Init = UndefValue::get(MI->getAllocatedType());
830 GlobalVariable *NewGV = new GlobalVariable(MI->getAllocatedType(), false,
831 GlobalValue::InternalLinkage, Init,
832 GV->getName()+".body",
833 (Module *)NULL,
834 GV->isThreadLocal());
Chris Lattner20846272008-04-26 07:40:11 +0000835 // FIXME: This new global should have the alignment returned by malloc. Code
836 // could depend on malloc returning large alignment (on the mac, 16 bytes) but
837 // this would only guarantee some lower alignment.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 GV->getParent()->getGlobalList().insert(GV, NewGV);
839
840 // Anything that used the malloc now uses the global directly.
841 MI->replaceAllUsesWith(NewGV);
842
843 Constant *RepValue = NewGV;
844 if (NewGV->getType() != GV->getType()->getElementType())
845 RepValue = ConstantExpr::getBitCast(RepValue,
846 GV->getType()->getElementType());
847
848 // If there is a comparison against null, we will insert a global bool to
849 // keep track of whether the global was initialized yet or not.
850 GlobalVariable *InitBool =
851 new GlobalVariable(Type::Int1Ty, false, GlobalValue::InternalLinkage,
852 ConstantInt::getFalse(), GV->getName()+".init",
853 (Module *)NULL, GV->isThreadLocal());
854 bool InitBoolUsed = false;
855
856 // Loop over all uses of GV, processing them in turn.
857 std::vector<StoreInst*> Stores;
858 while (!GV->use_empty())
859 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
860 while (!LI->use_empty()) {
861 Use &LoadUse = LI->use_begin().getUse();
862 if (!isa<ICmpInst>(LoadUse.getUser()))
863 LoadUse = RepValue;
864 else {
865 ICmpInst *CI = cast<ICmpInst>(LoadUse.getUser());
866 // Replace the cmp X, 0 with a use of the bool value.
867 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", CI);
868 InitBoolUsed = true;
869 switch (CI->getPredicate()) {
870 default: assert(0 && "Unknown ICmp Predicate!");
871 case ICmpInst::ICMP_ULT:
872 case ICmpInst::ICMP_SLT:
873 LV = ConstantInt::getFalse(); // X < null -> always false
874 break;
875 case ICmpInst::ICMP_ULE:
876 case ICmpInst::ICMP_SLE:
877 case ICmpInst::ICMP_EQ:
Gabor Greifa645dd32008-05-16 19:29:10 +0000878 LV = BinaryOperator::CreateNot(LV, "notinit", CI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000879 break;
880 case ICmpInst::ICMP_NE:
881 case ICmpInst::ICMP_UGE:
882 case ICmpInst::ICMP_SGE:
883 case ICmpInst::ICMP_UGT:
884 case ICmpInst::ICMP_SGT:
885 break; // no change.
886 }
887 CI->replaceAllUsesWith(LV);
888 CI->eraseFromParent();
889 }
890 }
891 LI->eraseFromParent();
892 } else {
893 StoreInst *SI = cast<StoreInst>(GV->use_back());
894 // The global is initialized when the store to it occurs.
895 new StoreInst(ConstantInt::getTrue(), InitBool, SI);
896 SI->eraseFromParent();
897 }
898
899 // If the initialization boolean was used, insert it, otherwise delete it.
900 if (!InitBoolUsed) {
901 while (!InitBool->use_empty()) // Delete initializations
902 cast<Instruction>(InitBool->use_back())->eraseFromParent();
903 delete InitBool;
904 } else
905 GV->getParent()->getGlobalList().insert(GV, InitBool);
906
907
908 // Now the GV is dead, nuke it and the malloc.
909 GV->eraseFromParent();
910 MI->eraseFromParent();
911
912 // To further other optimizations, loop over all users of NewGV and try to
913 // constant prop them. This will promote GEP instructions with constant
914 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
915 ConstantPropUsersOf(NewGV);
916 if (RepValue != NewGV)
917 ConstantPropUsersOf(RepValue);
918
919 return NewGV;
920}
921
922/// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
923/// to make sure that there are no complex uses of V. We permit simple things
924/// like dereferencing the pointer, but not storing through the address, unless
925/// it is to the specified global.
926static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Instruction *V,
Chris Lattnere7606f42007-09-13 16:37:20 +0000927 GlobalVariable *GV,
928 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner183b0cf2008-12-15 21:08:54 +0000929 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
930 Instruction *Inst = dyn_cast<Instruction>(*UI);
931 if (Inst == 0) return false;
932
933 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
934 continue; // Fine, ignore.
935 }
936
937 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
939 return false; // Storing the pointer itself... bad.
Chris Lattner183b0cf2008-12-15 21:08:54 +0000940 continue; // Otherwise, storing through it, or storing into GV... fine.
941 }
942
943 if (isa<GetElementPtrInst>(Inst)) {
944 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945 return false;
Chris Lattner183b0cf2008-12-15 21:08:54 +0000946 continue;
947 }
948
949 if (PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattnere7606f42007-09-13 16:37:20 +0000950 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
951 // cycles.
952 if (PHIs.insert(PN))
Chris Lattner4bde3c42007-09-14 03:41:21 +0000953 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
954 return false;
Chris Lattner183b0cf2008-12-15 21:08:54 +0000955 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000956 }
Chris Lattner183b0cf2008-12-15 21:08:54 +0000957
958 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
959 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
960 return false;
961 continue;
962 }
963
964 return false;
965 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000966 return true;
967}
968
969/// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
970/// somewhere. Transform all uses of the allocation into loads from the
971/// global and uses of the resultant pointer. Further, delete the store into
972/// GV. This assumes that these value pass the
973/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
974static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
975 GlobalVariable *GV) {
976 while (!Alloc->use_empty()) {
Chris Lattner20eef0f2007-09-13 18:00:31 +0000977 Instruction *U = cast<Instruction>(*Alloc->use_begin());
978 Instruction *InsertPt = U;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
980 // If this is the store of the allocation into the global, remove it.
981 if (SI->getOperand(1) == GV) {
982 SI->eraseFromParent();
983 continue;
984 }
Chris Lattner20eef0f2007-09-13 18:00:31 +0000985 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
986 // Insert the load in the corresponding predecessor, not right before the
987 // PHI.
988 unsigned PredNo = Alloc->use_begin().getOperandNo()/2;
989 InsertPt = PN->getIncomingBlock(PredNo)->getTerminator();
Chris Lattner27ef89e2008-12-15 21:44:34 +0000990 } else if (isa<BitCastInst>(U)) {
991 // Must be bitcast between the malloc and store to initialize the global.
992 ReplaceUsesOfMallocWithGlobal(U, GV);
993 U->eraseFromParent();
994 continue;
995 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
996 // If this is a "GEP bitcast" and the user is a store to the global, then
997 // just process it as a bitcast.
998 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
999 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->use_back()))
1000 if (SI->getOperand(1) == GV) {
1001 // Must be bitcast GEP between the malloc and store to initialize
1002 // the global.
1003 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1004 GEPI->eraseFromParent();
1005 continue;
1006 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001007 }
Chris Lattner27ef89e2008-12-15 21:44:34 +00001008
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001009 // Insert a load from the global, and use it instead of the malloc.
Chris Lattner20eef0f2007-09-13 18:00:31 +00001010 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001011 U->replaceUsesOfWith(Alloc, NL);
1012 }
1013}
1014
1015/// GlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
1016/// GV are simple enough to perform HeapSRA, return true.
Chris Lattnereefff982007-09-13 21:31:36 +00001017static bool GlobalLoadUsesSimpleEnoughForHeapSRA(GlobalVariable *GV,
1018 MallocInst *MI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;
1020 ++UI)
1021 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
1022 // We permit two users of the load: setcc comparing against the null
1023 // pointer, and a getelementptr of a specific form.
Gabor Greif20f03f52008-05-29 01:59:18 +00001024 for (Value::use_iterator UI = LI->use_begin(), E = LI->use_end();
Bill Wendling3c470e22008-08-12 23:15:44 +00001025 UI != E; ++UI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001026 // Comparison against null is ok.
1027 if (ICmpInst *ICI = dyn_cast<ICmpInst>(*UI)) {
1028 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1029 return false;
1030 continue;
1031 }
1032
1033 // getelementptr is also ok, but only a simple form.
Chris Lattnereefff982007-09-13 21:31:36 +00001034 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
1035 // Must index into the array and into the struct.
1036 if (GEPI->getNumOperands() < 3)
1037 return false;
1038
1039 // Otherwise the GEP is ok.
1040 continue;
1041 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042
Chris Lattnereefff982007-09-13 21:31:36 +00001043 if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
1044 // We have a phi of a load from the global. We can only handle this
1045 // if the other PHI'd values are actually the same. In this case,
1046 // the rewriter will just drop the phi entirely.
1047 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1048 Value *IV = PN->getIncomingValue(i);
1049 if (IV == LI) continue; // Trivial the same.
1050
1051 // If the phi'd value is from the malloc that initializes the value,
1052 // we can xform it.
1053 if (IV == MI) continue;
1054
1055 // Otherwise, we don't know what it is.
1056 return false;
1057 }
Chris Lattnerae6b0962008-12-16 21:04:51 +00001058 continue;
Chris Lattnereefff982007-09-13 21:31:36 +00001059 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060
Chris Lattnereefff982007-09-13 21:31:36 +00001061 // Otherwise we don't know what this is, not ok.
1062 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 }
1064 }
1065 return true;
1066}
1067
Chris Lattner20eef0f2007-09-13 18:00:31 +00001068/// GetHeapSROALoad - Return the load for the specified field of the HeapSROA'd
1069/// value, lazily creating it on demand.
Chris Lattnereefff982007-09-13 21:31:36 +00001070static Value *GetHeapSROALoad(Instruction *Load, unsigned FieldNo,
Chris Lattner20eef0f2007-09-13 18:00:31 +00001071 const std::vector<GlobalVariable*> &FieldGlobals,
1072 std::vector<Value *> &InsertedLoadsForPtr) {
1073 if (InsertedLoadsForPtr.size() <= FieldNo)
1074 InsertedLoadsForPtr.resize(FieldNo+1);
1075 if (InsertedLoadsForPtr[FieldNo] == 0)
1076 InsertedLoadsForPtr[FieldNo] = new LoadInst(FieldGlobals[FieldNo],
1077 Load->getName()+".f" +
1078 utostr(FieldNo), Load);
1079 return InsertedLoadsForPtr[FieldNo];
1080}
1081
Chris Lattneraf82fb82007-09-13 17:29:05 +00001082/// RewriteHeapSROALoadUser - Given a load instruction and a value derived from
1083/// the load, rewrite the derived value to use the HeapSRoA'd load.
1084static void RewriteHeapSROALoadUser(LoadInst *Load, Instruction *LoadUser,
1085 const std::vector<GlobalVariable*> &FieldGlobals,
1086 std::vector<Value *> &InsertedLoadsForPtr) {
1087 // If this is a comparison against null, handle it.
1088 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1089 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1090 // If we have a setcc of the loaded pointer, we can use a setcc of any
1091 // field.
1092 Value *NPtr;
1093 if (InsertedLoadsForPtr.empty()) {
Chris Lattner20eef0f2007-09-13 18:00:31 +00001094 NPtr = GetHeapSROALoad(Load, 0, FieldGlobals, InsertedLoadsForPtr);
Chris Lattneraf82fb82007-09-13 17:29:05 +00001095 } else {
1096 NPtr = InsertedLoadsForPtr.back();
1097 }
1098
1099 Value *New = new ICmpInst(SCI->getPredicate(), NPtr,
1100 Constant::getNullValue(NPtr->getType()),
1101 SCI->getName(), SCI);
1102 SCI->replaceAllUsesWith(New);
1103 SCI->eraseFromParent();
1104 return;
1105 }
1106
Chris Lattner20eef0f2007-09-13 18:00:31 +00001107 // Handle 'getelementptr Ptr, Idx, uint FieldNo ...'
1108 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1109 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1110 && "Unexpected GEPI!");
Chris Lattneraf82fb82007-09-13 17:29:05 +00001111
Chris Lattner20eef0f2007-09-13 18:00:31 +00001112 // Load the pointer for this field.
1113 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
1114 Value *NewPtr = GetHeapSROALoad(Load, FieldNo,
1115 FieldGlobals, InsertedLoadsForPtr);
1116
1117 // Create the new GEP idx vector.
1118 SmallVector<Value*, 8> GEPIdx;
1119 GEPIdx.push_back(GEPI->getOperand(1));
1120 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
1121
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001122 Value *NGEPI = GetElementPtrInst::Create(NewPtr,
1123 GEPIdx.begin(), GEPIdx.end(),
Gabor Greifd6da1d02008-04-06 20:25:17 +00001124 GEPI->getName(), GEPI);
Chris Lattner20eef0f2007-09-13 18:00:31 +00001125 GEPI->replaceAllUsesWith(NGEPI);
1126 GEPI->eraseFromParent();
1127 return;
1128 }
Chris Lattneraf82fb82007-09-13 17:29:05 +00001129
Chris Lattnereefff982007-09-13 21:31:36 +00001130 // Handle PHI nodes. PHI nodes must be merging in the same values, plus
1131 // potentially the original malloc. Insert phi nodes for each field, then
1132 // process uses of the PHI.
Chris Lattner20eef0f2007-09-13 18:00:31 +00001133 PHINode *PN = cast<PHINode>(LoadUser);
Chris Lattnereefff982007-09-13 21:31:36 +00001134 std::vector<Value *> PHIsForField;
1135 PHIsForField.resize(FieldGlobals.size());
1136 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1137 Value *LoadV = GetHeapSROALoad(Load, i, FieldGlobals, InsertedLoadsForPtr);
1138
Gabor Greifd6da1d02008-04-06 20:25:17 +00001139 PHINode *FieldPN = PHINode::Create(LoadV->getType(),
1140 PN->getName()+"."+utostr(i), PN);
Chris Lattnereefff982007-09-13 21:31:36 +00001141 // Fill in the predecessor values.
1142 for (unsigned pred = 0, e = PN->getNumIncomingValues(); pred != e; ++pred) {
1143 // Each predecessor either uses the load or the original malloc.
1144 Value *InVal = PN->getIncomingValue(pred);
1145 BasicBlock *BB = PN->getIncomingBlock(pred);
1146 Value *NewVal;
1147 if (isa<MallocInst>(InVal)) {
1148 // Insert a reload from the global in the predecessor.
1149 NewVal = GetHeapSROALoad(BB->getTerminator(), i, FieldGlobals,
1150 PHIsForField);
1151 } else {
1152 NewVal = InsertedLoadsForPtr[i];
1153 }
1154 FieldPN->addIncoming(NewVal, BB);
1155 }
1156 PHIsForField[i] = FieldPN;
1157 }
1158
1159 // Since PHIsForField specifies a phi for every input value, the lazy inserter
1160 // will never insert a load.
Chris Lattner20eef0f2007-09-13 18:00:31 +00001161 while (!PN->use_empty())
Chris Lattnereefff982007-09-13 21:31:36 +00001162 RewriteHeapSROALoadUser(Load, PN->use_back(), FieldGlobals, PHIsForField);
Chris Lattner20eef0f2007-09-13 18:00:31 +00001163 PN->eraseFromParent();
Chris Lattneraf82fb82007-09-13 17:29:05 +00001164}
1165
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001166/// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global. Ptr
1167/// is a value loaded from the global. Eliminate all uses of Ptr, making them
1168/// use FieldGlobals instead. All uses of loaded values satisfy
1169/// GlobalLoadUsesSimpleEnoughForHeapSRA.
Chris Lattneraf82fb82007-09-13 17:29:05 +00001170static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001171 const std::vector<GlobalVariable*> &FieldGlobals) {
1172 std::vector<Value *> InsertedLoadsForPtr;
1173 //InsertedLoadsForPtr.resize(FieldGlobals.size());
Chris Lattneraf82fb82007-09-13 17:29:05 +00001174 while (!Load->use_empty())
1175 RewriteHeapSROALoadUser(Load, Load->use_back(),
1176 FieldGlobals, InsertedLoadsForPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001177}
1178
1179/// PerformHeapAllocSRoA - MI is an allocation of an array of structures. Break
1180/// it up into multiple allocations of arrays of the fields.
1181static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, MallocInst *MI){
1182 DOUT << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *MI;
1183 const StructType *STy = cast<StructType>(MI->getAllocatedType());
1184
1185 // There is guaranteed to be at least one use of the malloc (storing
1186 // it into GV). If there are other uses, change them to be uses of
1187 // the global to simplify later code. This also deletes the store
1188 // into GV.
1189 ReplaceUsesOfMallocWithGlobal(MI, GV);
1190
1191 // Okay, at this point, there are no users of the malloc. Insert N
1192 // new mallocs at the same place as MI, and N globals.
1193 std::vector<GlobalVariable*> FieldGlobals;
1194 std::vector<MallocInst*> FieldMallocs;
1195
1196 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
1197 const Type *FieldTy = STy->getElementType(FieldNo);
Christopher Lambbb2f2222007-12-17 01:12:55 +00001198 const Type *PFieldTy = PointerType::getUnqual(FieldTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001199
1200 GlobalVariable *NGV =
1201 new GlobalVariable(PFieldTy, false, GlobalValue::InternalLinkage,
1202 Constant::getNullValue(PFieldTy),
1203 GV->getName() + ".f" + utostr(FieldNo), GV,
1204 GV->isThreadLocal());
1205 FieldGlobals.push_back(NGV);
1206
1207 MallocInst *NMI = new MallocInst(FieldTy, MI->getArraySize(),
1208 MI->getName() + ".f" + utostr(FieldNo),MI);
1209 FieldMallocs.push_back(NMI);
1210 new StoreInst(NMI, NGV, MI);
1211 }
1212
1213 // The tricky aspect of this transformation is handling the case when malloc
1214 // fails. In the original code, malloc failing would set the result pointer
1215 // of malloc to null. In this case, some mallocs could succeed and others
1216 // could fail. As such, we emit code that looks like this:
1217 // F0 = malloc(field0)
1218 // F1 = malloc(field1)
1219 // F2 = malloc(field2)
1220 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1221 // if (F0) { free(F0); F0 = 0; }
1222 // if (F1) { free(F1); F1 = 0; }
1223 // if (F2) { free(F2); F2 = 0; }
1224 // }
1225 Value *RunningOr = 0;
1226 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
1227 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, FieldMallocs[i],
1228 Constant::getNullValue(FieldMallocs[i]->getType()),
1229 "isnull", MI);
1230 if (!RunningOr)
1231 RunningOr = Cond; // First seteq
1232 else
Gabor Greifa645dd32008-05-16 19:29:10 +00001233 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001234 }
1235
1236 // Split the basic block at the old malloc.
1237 BasicBlock *OrigBB = MI->getParent();
1238 BasicBlock *ContBB = OrigBB->splitBasicBlock(MI, "malloc_cont");
1239
1240 // Create the block to check the first condition. Put all these blocks at the
1241 // end of the function as they are unlikely to be executed.
Gabor Greifd6da1d02008-04-06 20:25:17 +00001242 BasicBlock *NullPtrBlock = BasicBlock::Create("malloc_ret_null",
1243 OrigBB->getParent());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001244
1245 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1246 // branch on RunningOr.
1247 OrigBB->getTerminator()->eraseFromParent();
Gabor Greifd6da1d02008-04-06 20:25:17 +00001248 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249
1250 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1251 // pointer, because some may be null while others are not.
1252 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1253 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
1254 Value *Cmp = new ICmpInst(ICmpInst::ICMP_NE, GVVal,
1255 Constant::getNullValue(GVVal->getType()),
1256 "tmp", NullPtrBlock);
Gabor Greifd6da1d02008-04-06 20:25:17 +00001257 BasicBlock *FreeBlock = BasicBlock::Create("free_it", OrigBB->getParent());
1258 BasicBlock *NextBlock = BasicBlock::Create("next", OrigBB->getParent());
1259 BranchInst::Create(FreeBlock, NextBlock, Cmp, NullPtrBlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001260
1261 // Fill in FreeBlock.
1262 new FreeInst(GVVal, FreeBlock);
1263 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1264 FreeBlock);
Gabor Greifd6da1d02008-04-06 20:25:17 +00001265 BranchInst::Create(NextBlock, FreeBlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001266
1267 NullPtrBlock = NextBlock;
1268 }
1269
Gabor Greifd6da1d02008-04-06 20:25:17 +00001270 BranchInst::Create(ContBB, NullPtrBlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001271
1272 // MI is no longer needed, remove it.
1273 MI->eraseFromParent();
1274
1275
1276 // Okay, the malloc site is completely handled. All of the uses of GV are now
1277 // loads, and all uses of those loads are simple. Rewrite them to use loads
1278 // of the per-field globals instead.
1279 while (!GV->use_empty()) {
1280 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
1281 RewriteUsesOfLoadForHeapSRoA(LI, FieldGlobals);
1282 LI->eraseFromParent();
1283 } else {
1284 // Must be a store of null.
1285 StoreInst *SI = cast<StoreInst>(GV->use_back());
1286 assert(isa<Constant>(SI->getOperand(0)) &&
1287 cast<Constant>(SI->getOperand(0))->isNullValue() &&
1288 "Unexpected heap-sra user!");
1289
1290 // Insert a store of null into each global.
1291 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1292 Constant *Null =
1293 Constant::getNullValue(FieldGlobals[i]->getType()->getElementType());
1294 new StoreInst(Null, FieldGlobals[i], SI);
1295 }
1296 // Erase the original store.
1297 SI->eraseFromParent();
1298 }
1299 }
1300
1301 // The old global is now dead, remove it.
1302 GV->eraseFromParent();
1303
1304 ++NumHeapSRA;
1305 return FieldGlobals[0];
1306}
1307
Chris Lattner78e568b2008-12-15 21:02:25 +00001308/// TryToOptimizeStoreOfMallocToGlobal - This function is called when we see a
1309/// pointer global variable with a single value stored it that is a malloc or
1310/// cast of malloc.
1311static bool TryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV,
1312 MallocInst *MI,
1313 Module::global_iterator &GVI,
1314 TargetData &TD) {
1315 // If this is a malloc of an abstract type, don't touch it.
1316 if (!MI->getAllocatedType()->isSized())
1317 return false;
1318
1319 // We can't optimize this global unless all uses of it are *known* to be
1320 // of the malloc value, not of the null initializer value (consider a use
1321 // that compares the global's value against zero to see if the malloc has
1322 // been reached). To do this, we check to see if all uses of the global
1323 // would trap if the global were null: this proves that they must all
1324 // happen after the malloc.
1325 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1326 return false;
1327
1328 // We can't optimize this if the malloc itself is used in a complex way,
1329 // for example, being stored into multiple globals. This allows the
1330 // malloc to be stored into the specified global, loaded setcc'd, and
1331 // GEP'd. These are all things we could transform to using the global
1332 // for.
1333 {
1334 SmallPtrSet<PHINode*, 8> PHIs;
1335 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(MI, GV, PHIs))
1336 return false;
1337 }
1338
1339
1340 // If we have a global that is only initialized with a fixed size malloc,
1341 // transform the program to use global memory instead of malloc'd memory.
1342 // This eliminates dynamic allocation, avoids an indirection accessing the
1343 // data, and exposes the resultant global to further GlobalOpt.
1344 if (ConstantInt *NElements = dyn_cast<ConstantInt>(MI->getArraySize())) {
1345 // Restrict this transformation to only working on small allocations
1346 // (2048 bytes currently), as we don't want to introduce a 16M global or
1347 // something.
1348 if (NElements->getZExtValue()*
1349 TD.getABITypeSize(MI->getAllocatedType()) < 2048) {
1350 GVI = OptimizeGlobalAddressOfMalloc(GV, MI);
1351 return true;
1352 }
1353 }
1354
1355 // If the allocation is an array of structures, consider transforming this
1356 // into multiple malloc'd arrays, one for each field. This is basically
1357 // SRoA for malloc'd memory.
Chris Lattner27ef89e2008-12-15 21:44:34 +00001358 const Type *AllocTy = MI->getAllocatedType();
1359
1360 // If this is an allocation of a fixed size array of structs, analyze as a
1361 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
1362 if (!MI->isArrayAllocation())
1363 if (const ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
1364 AllocTy = AT->getElementType();
1365
1366 if (const StructType *AllocSTy = dyn_cast<StructType>(AllocTy)) {
Chris Lattner78e568b2008-12-15 21:02:25 +00001367 // This the structure has an unreasonable number of fields, leave it
1368 // alone.
Chris Lattner27ef89e2008-12-15 21:44:34 +00001369 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
Chris Lattner78e568b2008-12-15 21:02:25 +00001370 GlobalLoadUsesSimpleEnoughForHeapSRA(GV, MI)) {
Chris Lattner27ef89e2008-12-15 21:44:34 +00001371
1372 // If this is a fixed size array, transform the Malloc to be an alloc of
1373 // structs. malloc [100 x struct],1 -> malloc struct, 100
1374 if (const ArrayType *AT = dyn_cast<ArrayType>(MI->getAllocatedType())) {
1375 MallocInst *NewMI =
1376 new MallocInst(AllocSTy,
1377 ConstantInt::get(Type::Int32Ty, AT->getNumElements()),
1378 "", MI);
1379 NewMI->takeName(MI);
1380 Value *Cast = new BitCastInst(NewMI, MI->getType(), "tmp", MI);
1381 MI->replaceAllUsesWith(Cast);
1382 MI->eraseFromParent();
1383 MI = NewMI;
1384 }
1385
Chris Lattner78e568b2008-12-15 21:02:25 +00001386 GVI = PerformHeapAllocSRoA(GV, MI);
1387 return true;
1388 }
1389 }
1390
1391 return false;
1392}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001393
1394// OptimizeOnceStoredGlobal - Try to optimize globals based on the knowledge
1395// that only one value (besides its initializer) is ever stored to the global.
1396static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
1397 Module::global_iterator &GVI,
1398 TargetData &TD) {
Chris Lattner2e729112008-12-15 21:20:32 +00001399 // Ignore no-op GEPs and bitcasts.
1400 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001401
1402 // If we are dealing with a pointer global that is initialized to null and
1403 // only has one (non-null) value stored into it, then we can optimize any
1404 // users of the loaded value (often calls and loads) that would trap if the
1405 // value was null.
1406 if (isa<PointerType>(GV->getInitializer()->getType()) &&
1407 GV->getInitializer()->isNullValue()) {
1408 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1409 if (GV->getInitializer()->getType() != SOVC->getType())
1410 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
1411
1412 // Optimize away any trapping uses of the loaded value.
1413 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC))
1414 return true;
1415 } else if (MallocInst *MI = dyn_cast<MallocInst>(StoredOnceVal)) {
Chris Lattner78e568b2008-12-15 21:02:25 +00001416 if (TryToOptimizeStoreOfMallocToGlobal(GV, MI, GVI, TD))
1417 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001418 }
1419 }
1420
1421 return false;
1422}
1423
Chris Lattnerece46db2008-01-14 01:17:44 +00001424/// TryToShrinkGlobalToBoolean - At this point, we have learned that the only
1425/// two values ever stored into GV are its initializer and OtherVal. See if we
1426/// can shrink the global into a boolean and select between the two values
1427/// whenever it is used. This exposes the values to other scalar optimizations.
1428static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1429 const Type *GVElType = GV->getType()->getElementType();
1430
1431 // If GVElType is already i1, it is already shrunk. If the type of the GV is
1432 // an FP value or vector, don't do this optimization because a select between
1433 // them is very expensive and unlikely to lead to later simplification.
1434 if (GVElType == Type::Int1Ty || GVElType->isFloatingPoint() ||
1435 isa<VectorType>(GVElType))
1436 return false;
1437
1438 // Walk the use list of the global seeing if all the uses are load or store.
1439 // If there is anything else, bail out.
1440 for (Value::use_iterator I = GV->use_begin(), E = GV->use_end(); I != E; ++I)
1441 if (!isa<LoadInst>(I) && !isa<StoreInst>(I))
1442 return false;
1443
1444 DOUT << " *** SHRINKING TO BOOL: " << *GV;
1445
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001446 // Create the new global, initializing it to false.
1447 GlobalVariable *NewGV = new GlobalVariable(Type::Int1Ty, false,
1448 GlobalValue::InternalLinkage, ConstantInt::getFalse(),
1449 GV->getName()+".b",
1450 (Module *)NULL,
1451 GV->isThreadLocal());
1452 GV->getParent()->getGlobalList().insert(GV, NewGV);
1453
1454 Constant *InitVal = GV->getInitializer();
1455 assert(InitVal->getType() != Type::Int1Ty && "No reason to shrink to bool!");
1456
1457 // If initialized to zero and storing one into the global, we can use a cast
1458 // instead of a select to synthesize the desired value.
1459 bool IsOneZero = false;
1460 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1461 IsOneZero = InitVal->isNullValue() && CI->isOne();
1462
1463 while (!GV->use_empty()) {
1464 Instruction *UI = cast<Instruction>(GV->use_back());
1465 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1466 // Change the store into a boolean store.
1467 bool StoringOther = SI->getOperand(0) == OtherVal;
1468 // Only do this if we weren't storing a loaded value.
1469 Value *StoreVal;
1470 if (StoringOther || SI->getOperand(0) == InitVal)
1471 StoreVal = ConstantInt::get(Type::Int1Ty, StoringOther);
1472 else {
1473 // Otherwise, we are storing a previously loaded copy. To do this,
1474 // change the copy from copying the original value to just copying the
1475 // bool.
1476 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1477
1478 // If we're already replaced the input, StoredVal will be a cast or
1479 // select instruction. If not, it will be a load of the original
1480 // global.
1481 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1482 assert(LI->getOperand(0) == GV && "Not a copy!");
1483 // Insert a new load, to preserve the saved value.
1484 StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI);
1485 } else {
1486 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1487 "This is not a form that we understand!");
1488 StoreVal = StoredVal->getOperand(0);
1489 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1490 }
1491 }
1492 new StoreInst(StoreVal, NewGV, SI);
Chris Lattnerece46db2008-01-14 01:17:44 +00001493 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001494 // Change the load into a load of bool then a select.
1495 LoadInst *LI = cast<LoadInst>(UI);
1496 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", LI);
1497 Value *NSI;
1498 if (IsOneZero)
1499 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1500 else
Gabor Greifd6da1d02008-04-06 20:25:17 +00001501 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001502 NSI->takeName(LI);
1503 LI->replaceAllUsesWith(NSI);
1504 }
1505 UI->eraseFromParent();
1506 }
1507
1508 GV->eraseFromParent();
Chris Lattnerece46db2008-01-14 01:17:44 +00001509 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001510}
1511
1512
1513/// ProcessInternalGlobal - Analyze the specified global variable and optimize
1514/// it if possible. If we make a change, return true.
1515bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
1516 Module::global_iterator &GVI) {
Chris Lattner4cd08c22008-12-16 07:34:30 +00001517 SmallPtrSet<PHINode*, 16> PHIUsers;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001518 GlobalStatus GS;
1519 GV->removeDeadConstantUsers();
1520
1521 if (GV->use_empty()) {
1522 DOUT << "GLOBAL DEAD: " << *GV;
1523 GV->eraseFromParent();
1524 ++NumDeleted;
1525 return true;
1526 }
1527
1528 if (!AnalyzeGlobal(GV, GS, PHIUsers)) {
1529#if 0
1530 cerr << "Global: " << *GV;
1531 cerr << " isLoaded = " << GS.isLoaded << "\n";
1532 cerr << " StoredType = ";
1533 switch (GS.StoredType) {
1534 case GlobalStatus::NotStored: cerr << "NEVER STORED\n"; break;
1535 case GlobalStatus::isInitializerStored: cerr << "INIT STORED\n"; break;
1536 case GlobalStatus::isStoredOnce: cerr << "STORED ONCE\n"; break;
1537 case GlobalStatus::isStored: cerr << "stored\n"; break;
1538 }
1539 if (GS.StoredType == GlobalStatus::isStoredOnce && GS.StoredOnceValue)
1540 cerr << " StoredOnceValue = " << *GS.StoredOnceValue << "\n";
1541 if (GS.AccessingFunction && !GS.HasMultipleAccessingFunctions)
1542 cerr << " AccessingFunction = " << GS.AccessingFunction->getName()
1543 << "\n";
1544 cerr << " HasMultipleAccessingFunctions = "
1545 << GS.HasMultipleAccessingFunctions << "\n";
1546 cerr << " HasNonInstructionUser = " << GS.HasNonInstructionUser<<"\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001547 cerr << "\n";
1548#endif
1549
1550 // If this is a first class global and has only one accessing function
1551 // and this function is main (which we know is not recursive we can make
1552 // this global a local variable) we replace the global with a local alloca
1553 // in this function.
1554 //
Dan Gohman5e8fbc22008-05-23 00:17:26 +00001555 // NOTE: It doesn't make sense to promote non single-value types since we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001556 // are just replacing static memory to stack memory.
1557 if (!GS.HasMultipleAccessingFunctions &&
1558 GS.AccessingFunction && !GS.HasNonInstructionUser &&
Dan Gohman5e8fbc22008-05-23 00:17:26 +00001559 GV->getType()->getElementType()->isSingleValueType() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001560 GS.AccessingFunction->getName() == "main" &&
1561 GS.AccessingFunction->hasExternalLinkage()) {
1562 DOUT << "LOCALIZING GLOBAL: " << *GV;
1563 Instruction* FirstI = GS.AccessingFunction->getEntryBlock().begin();
1564 const Type* ElemTy = GV->getType()->getElementType();
1565 // FIXME: Pass Global's alignment when globals have alignment
1566 AllocaInst* Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), FirstI);
1567 if (!isa<UndefValue>(GV->getInitializer()))
1568 new StoreInst(GV->getInitializer(), Alloca, FirstI);
1569
1570 GV->replaceAllUsesWith(Alloca);
1571 GV->eraseFromParent();
1572 ++NumLocalized;
1573 return true;
1574 }
1575
1576 // If the global is never loaded (but may be stored to), it is dead.
1577 // Delete it now.
1578 if (!GS.isLoaded) {
1579 DOUT << "GLOBAL NEVER LOADED: " << *GV;
1580
1581 // Delete any stores we can find to the global. We may not be able to
1582 // make it completely dead though.
1583 bool Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer());
1584
1585 // If the global is dead now, delete it.
1586 if (GV->use_empty()) {
1587 GV->eraseFromParent();
1588 ++NumDeleted;
1589 Changed = true;
1590 }
1591 return Changed;
1592
1593 } else if (GS.StoredType <= GlobalStatus::isInitializerStored) {
1594 DOUT << "MARKING CONSTANT: " << *GV;
1595 GV->setConstant(true);
1596
1597 // Clean up any obviously simplifiable users now.
1598 CleanupConstantGlobalUsers(GV, GV->getInitializer());
1599
1600 // If the global is dead now, just nuke it.
1601 if (GV->use_empty()) {
1602 DOUT << " *** Marking constant allowed us to simplify "
1603 << "all users and delete global!\n";
1604 GV->eraseFromParent();
1605 ++NumDeleted;
1606 }
1607
1608 ++NumMarked;
1609 return true;
Dan Gohman5e8fbc22008-05-23 00:17:26 +00001610 } else if (!GV->getInitializer()->getType()->isSingleValueType()) {
Chris Lattner20846272008-04-26 07:40:11 +00001611 if (GlobalVariable *FirstNewGV = SRAGlobal(GV,
1612 getAnalysis<TargetData>())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001613 GVI = FirstNewGV; // Don't skip the newly produced globals!
1614 return true;
1615 }
1616 } else if (GS.StoredType == GlobalStatus::isStoredOnce) {
1617 // If the initial value for the global was an undef value, and if only
1618 // one other value was stored into it, we can just change the
1619 // initializer to be an undef value, then delete all stores to the
1620 // global. This allows us to mark it constant.
1621 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1622 if (isa<UndefValue>(GV->getInitializer())) {
1623 // Change the initial value here.
1624 GV->setInitializer(SOVConstant);
1625
1626 // Clean up any obviously simplifiable users now.
1627 CleanupConstantGlobalUsers(GV, GV->getInitializer());
1628
1629 if (GV->use_empty()) {
1630 DOUT << " *** Substituting initializer allowed us to "
1631 << "simplify all users and delete global!\n";
1632 GV->eraseFromParent();
1633 ++NumDeleted;
1634 } else {
1635 GVI = GV;
1636 }
1637 ++NumSubstitute;
1638 return true;
1639 }
1640
1641 // Try to optimize globals based on the knowledge that only one value
1642 // (besides its initializer) is ever stored to the global.
1643 if (OptimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GVI,
1644 getAnalysis<TargetData>()))
1645 return true;
1646
1647 // Otherwise, if the global was not a boolean, we can shrink it to be a
1648 // boolean.
1649 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
Chris Lattnerece46db2008-01-14 01:17:44 +00001650 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001651 ++NumShrunkToBool;
1652 return true;
1653 }
1654 }
1655 }
1656 return false;
1657}
1658
1659/// OnlyCalledDirectly - Return true if the specified function is only called
1660/// directly. In other words, its address is never taken.
1661static bool OnlyCalledDirectly(Function *F) {
1662 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1663 Instruction *User = dyn_cast<Instruction>(*UI);
1664 if (!User) return false;
1665 if (!isa<CallInst>(User) && !isa<InvokeInst>(User)) return false;
1666
1667 // See if the function address is passed as an argument.
Gabor Greif20f03f52008-05-29 01:59:18 +00001668 for (User::op_iterator i = User->op_begin() + 1, e = User->op_end();
Bill Wendling3c470e22008-08-12 23:15:44 +00001669 i != e; ++i)
Gabor Greif20f03f52008-05-29 01:59:18 +00001670 if (*i == F) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001671 }
1672 return true;
1673}
1674
1675/// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
1676/// function, changing them to FastCC.
1677static void ChangeCalleesToFastCall(Function *F) {
1678 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
Duncan Sands551ec902008-02-18 17:32:13 +00001679 CallSite User(cast<Instruction>(*UI));
1680 User.setCallingConv(CallingConv::Fast);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001681 }
1682}
1683
Devang Pateld222f862008-09-25 21:00:45 +00001684static AttrListPtr StripNest(const AttrListPtr &Attrs) {
Chris Lattner1c8733e2008-03-12 17:45:29 +00001685 for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
Devang Pateld222f862008-09-25 21:00:45 +00001686 if ((Attrs.getSlot(i).Attrs & Attribute::Nest) == 0)
Duncan Sands551ec902008-02-18 17:32:13 +00001687 continue;
1688
Duncan Sands551ec902008-02-18 17:32:13 +00001689 // There can be only one.
Devang Pateld222f862008-09-25 21:00:45 +00001690 return Attrs.removeAttr(Attrs.getSlot(i).Index, Attribute::Nest);
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001691 }
1692
1693 return Attrs;
1694}
1695
1696static void RemoveNestAttribute(Function *F) {
Devang Pateld222f862008-09-25 21:00:45 +00001697 F->setAttributes(StripNest(F->getAttributes()));
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001698 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
Duncan Sands551ec902008-02-18 17:32:13 +00001699 CallSite User(cast<Instruction>(*UI));
Devang Pateld222f862008-09-25 21:00:45 +00001700 User.setAttributes(StripNest(User.getAttributes()));
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001701 }
1702}
1703
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001704bool GlobalOpt::OptimizeFunctions(Module &M) {
1705 bool Changed = false;
1706 // Optimize functions.
1707 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
1708 Function *F = FI++;
1709 F->removeDeadConstantUsers();
1710 if (F->use_empty() && (F->hasInternalLinkage() ||
1711 F->hasLinkOnceLinkage())) {
1712 M.getFunctionList().erase(F);
1713 Changed = true;
1714 ++NumFnDeleted;
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001715 } else if (F->hasInternalLinkage()) {
1716 if (F->getCallingConv() == CallingConv::C && !F->isVarArg() &&
1717 OnlyCalledDirectly(F)) {
1718 // If this function has C calling conventions, is not a varargs
1719 // function, and is only called directly, promote it to use the Fast
1720 // calling convention.
1721 F->setCallingConv(CallingConv::Fast);
1722 ChangeCalleesToFastCall(F);
1723 ++NumFastCallFns;
1724 Changed = true;
1725 }
1726
Devang Pateld222f862008-09-25 21:00:45 +00001727 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001728 OnlyCalledDirectly(F)) {
1729 // The function is not used by a trampoline intrinsic, so it is safe
1730 // to remove the 'nest' attribute.
1731 RemoveNestAttribute(F);
1732 ++NumNestRemoved;
1733 Changed = true;
1734 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001735 }
1736 }
1737 return Changed;
1738}
1739
1740bool GlobalOpt::OptimizeGlobalVars(Module &M) {
1741 bool Changed = false;
1742 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
1743 GVI != E; ) {
1744 GlobalVariable *GV = GVI++;
1745 if (!GV->isConstant() && GV->hasInternalLinkage() &&
1746 GV->hasInitializer())
1747 Changed |= ProcessInternalGlobal(GV, GVI);
1748 }
1749 return Changed;
1750}
1751
1752/// FindGlobalCtors - Find the llvm.globalctors list, verifying that all
1753/// initializers have an init priority of 65535.
1754GlobalVariable *GlobalOpt::FindGlobalCtors(Module &M) {
1755 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1756 I != E; ++I)
1757 if (I->getName() == "llvm.global_ctors") {
1758 // Found it, verify it's an array of { int, void()* }.
1759 const ArrayType *ATy =dyn_cast<ArrayType>(I->getType()->getElementType());
1760 if (!ATy) return 0;
1761 const StructType *STy = dyn_cast<StructType>(ATy->getElementType());
1762 if (!STy || STy->getNumElements() != 2 ||
1763 STy->getElementType(0) != Type::Int32Ty) return 0;
1764 const PointerType *PFTy = dyn_cast<PointerType>(STy->getElementType(1));
1765 if (!PFTy) return 0;
1766 const FunctionType *FTy = dyn_cast<FunctionType>(PFTy->getElementType());
1767 if (!FTy || FTy->getReturnType() != Type::VoidTy || FTy->isVarArg() ||
1768 FTy->getNumParams() != 0)
1769 return 0;
1770
1771 // Verify that the initializer is simple enough for us to handle.
1772 if (!I->hasInitializer()) return 0;
1773 ConstantArray *CA = dyn_cast<ConstantArray>(I->getInitializer());
1774 if (!CA) return 0;
Gabor Greif20f03f52008-05-29 01:59:18 +00001775 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i)
1776 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(*i)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001777 if (isa<ConstantPointerNull>(CS->getOperand(1)))
1778 continue;
1779
1780 // Must have a function or null ptr.
1781 if (!isa<Function>(CS->getOperand(1)))
1782 return 0;
1783
1784 // Init priority must be standard.
1785 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
1786 if (!CI || CI->getZExtValue() != 65535)
1787 return 0;
1788 } else {
1789 return 0;
1790 }
1791
1792 return I;
1793 }
1794 return 0;
1795}
1796
1797/// ParseGlobalCtors - Given a llvm.global_ctors list that we can understand,
1798/// return a list of the functions and null terminator as a vector.
1799static std::vector<Function*> ParseGlobalCtors(GlobalVariable *GV) {
1800 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1801 std::vector<Function*> Result;
1802 Result.reserve(CA->getNumOperands());
Gabor Greif20f03f52008-05-29 01:59:18 +00001803 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i) {
1804 ConstantStruct *CS = cast<ConstantStruct>(*i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001805 Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
1806 }
1807 return Result;
1808}
1809
1810/// InstallGlobalCtors - Given a specified llvm.global_ctors list, install the
1811/// specified array, returning the new global to use.
1812static GlobalVariable *InstallGlobalCtors(GlobalVariable *GCL,
1813 const std::vector<Function*> &Ctors) {
1814 // If we made a change, reassemble the initializer list.
1815 std::vector<Constant*> CSVals;
1816 CSVals.push_back(ConstantInt::get(Type::Int32Ty, 65535));
1817 CSVals.push_back(0);
1818
1819 // Create the new init list.
1820 std::vector<Constant*> CAList;
1821 for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
1822 if (Ctors[i]) {
1823 CSVals[1] = Ctors[i];
1824 } else {
1825 const Type *FTy = FunctionType::get(Type::VoidTy,
1826 std::vector<const Type*>(), false);
Christopher Lambbb2f2222007-12-17 01:12:55 +00001827 const PointerType *PFTy = PointerType::getUnqual(FTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001828 CSVals[1] = Constant::getNullValue(PFTy);
1829 CSVals[0] = ConstantInt::get(Type::Int32Ty, 2147483647);
1830 }
1831 CAList.push_back(ConstantStruct::get(CSVals));
1832 }
1833
1834 // Create the array initializer.
1835 const Type *StructTy =
1836 cast<ArrayType>(GCL->getType()->getElementType())->getElementType();
1837 Constant *CA = ConstantArray::get(ArrayType::get(StructTy, CAList.size()),
1838 CAList);
1839
1840 // If we didn't change the number of elements, don't create a new GV.
1841 if (CA->getType() == GCL->getInitializer()->getType()) {
1842 GCL->setInitializer(CA);
1843 return GCL;
1844 }
1845
1846 // Create the new global and insert it next to the existing list.
1847 GlobalVariable *NGV = new GlobalVariable(CA->getType(), GCL->isConstant(),
1848 GCL->getLinkage(), CA, "",
1849 (Module *)NULL,
1850 GCL->isThreadLocal());
1851 GCL->getParent()->getGlobalList().insert(GCL, NGV);
1852 NGV->takeName(GCL);
1853
1854 // Nuke the old list, replacing any uses with the new one.
1855 if (!GCL->use_empty()) {
1856 Constant *V = NGV;
1857 if (V->getType() != GCL->getType())
1858 V = ConstantExpr::getBitCast(V, GCL->getType());
1859 GCL->replaceAllUsesWith(V);
1860 }
1861 GCL->eraseFromParent();
1862
1863 if (Ctors.size())
1864 return NGV;
1865 else
1866 return 0;
1867}
1868
1869
Chris Lattner4cd08c22008-12-16 07:34:30 +00001870static Constant *getVal(DenseMap<Value*, Constant*> &ComputedValues,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001871 Value *V) {
1872 if (Constant *CV = dyn_cast<Constant>(V)) return CV;
1873 Constant *R = ComputedValues[V];
1874 assert(R && "Reference to an uncomputed value!");
1875 return R;
1876}
1877
1878/// isSimpleEnoughPointerToCommit - Return true if this constant is simple
1879/// enough for us to understand. In particular, if it is a cast of something,
1880/// we punt. We basically just support direct accesses to globals and GEP's of
1881/// globals. This should be kept up to date with CommitValueTo.
1882static bool isSimpleEnoughPointerToCommit(Constant *C) {
1883 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
1884 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
1885 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
1886 return !GV->isDeclaration(); // reject external globals.
1887 }
1888 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
1889 // Handle a constantexpr gep.
1890 if (CE->getOpcode() == Instruction::GetElementPtr &&
1891 isa<GlobalVariable>(CE->getOperand(0))) {
1892 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1893 if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
1894 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
1895 return GV->hasInitializer() &&
1896 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1897 }
1898 return false;
1899}
1900
1901/// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
1902/// initializer. This returns 'Init' modified to reflect 'Val' stored into it.
1903/// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
1904static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
1905 ConstantExpr *Addr, unsigned OpNo) {
1906 // Base case of the recursion.
1907 if (OpNo == Addr->getNumOperands()) {
1908 assert(Val->getType() == Init->getType() && "Type mismatch!");
1909 return Val;
1910 }
1911
1912 if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
1913 std::vector<Constant*> Elts;
1914
1915 // Break up the constant into its elements.
1916 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
Gabor Greif20f03f52008-05-29 01:59:18 +00001917 for (User::op_iterator i = CS->op_begin(), e = CS->op_end(); i != e; ++i)
1918 Elts.push_back(cast<Constant>(*i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001919 } else if (isa<ConstantAggregateZero>(Init)) {
1920 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1921 Elts.push_back(Constant::getNullValue(STy->getElementType(i)));
1922 } else if (isa<UndefValue>(Init)) {
1923 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1924 Elts.push_back(UndefValue::get(STy->getElementType(i)));
1925 } else {
1926 assert(0 && "This code is out of sync with "
1927 " ConstantFoldLoadThroughGEPConstantExpr");
1928 }
1929
1930 // Replace the element that we are supposed to.
1931 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
1932 unsigned Idx = CU->getZExtValue();
1933 assert(Idx < STy->getNumElements() && "Struct index out of range!");
1934 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
1935
1936 // Return the modified struct.
1937 return ConstantStruct::get(&Elts[0], Elts.size(), STy->isPacked());
1938 } else {
1939 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
1940 const ArrayType *ATy = cast<ArrayType>(Init->getType());
1941
1942 // Break up the array into elements.
1943 std::vector<Constant*> Elts;
1944 if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
Gabor Greif20f03f52008-05-29 01:59:18 +00001945 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i)
1946 Elts.push_back(cast<Constant>(*i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001947 } else if (isa<ConstantAggregateZero>(Init)) {
1948 Constant *Elt = Constant::getNullValue(ATy->getElementType());
1949 Elts.assign(ATy->getNumElements(), Elt);
1950 } else if (isa<UndefValue>(Init)) {
1951 Constant *Elt = UndefValue::get(ATy->getElementType());
1952 Elts.assign(ATy->getNumElements(), Elt);
1953 } else {
1954 assert(0 && "This code is out of sync with "
1955 " ConstantFoldLoadThroughGEPConstantExpr");
1956 }
1957
1958 assert(CI->getZExtValue() < ATy->getNumElements());
1959 Elts[CI->getZExtValue()] =
1960 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
1961 return ConstantArray::get(ATy, Elts);
1962 }
1963}
1964
1965/// CommitValueTo - We have decided that Addr (which satisfies the predicate
1966/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
1967static void CommitValueTo(Constant *Val, Constant *Addr) {
1968 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
1969 assert(GV->hasInitializer());
1970 GV->setInitializer(Val);
1971 return;
1972 }
1973
1974 ConstantExpr *CE = cast<ConstantExpr>(Addr);
1975 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1976
1977 Constant *Init = GV->getInitializer();
1978 Init = EvaluateStoreInto(Init, Val, CE, 2);
1979 GV->setInitializer(Init);
1980}
1981
1982/// ComputeLoadResult - Return the value that would be computed by a load from
1983/// P after the stores reflected by 'memory' have been performed. If we can't
1984/// decide, return null.
1985static Constant *ComputeLoadResult(Constant *P,
Chris Lattner4cd08c22008-12-16 07:34:30 +00001986 const DenseMap<Constant*, Constant*> &Memory) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001987 // If this memory location has been recently stored, use the stored value: it
1988 // is the most up-to-date.
Chris Lattner4cd08c22008-12-16 07:34:30 +00001989 DenseMap<Constant*, Constant*>::const_iterator I = Memory.find(P);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001990 if (I != Memory.end()) return I->second;
1991
1992 // Access it.
1993 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
1994 if (GV->hasInitializer())
1995 return GV->getInitializer();
1996 return 0;
1997 }
1998
1999 // Handle a constantexpr getelementptr.
2000 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
2001 if (CE->getOpcode() == Instruction::GetElementPtr &&
2002 isa<GlobalVariable>(CE->getOperand(0))) {
2003 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2004 if (GV->hasInitializer())
2005 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
2006 }
2007
2008 return 0; // don't know how to evaluate.
2009}
2010
2011/// EvaluateFunction - Evaluate a call to function F, returning true if
2012/// successful, false if we can't evaluate it. ActualArgs contains the formal
2013/// arguments for the function.
2014static bool EvaluateFunction(Function *F, Constant *&RetVal,
2015 const std::vector<Constant*> &ActualArgs,
2016 std::vector<Function*> &CallStack,
Chris Lattner4cd08c22008-12-16 07:34:30 +00002017 DenseMap<Constant*, Constant*> &MutatedMemory,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002018 std::vector<GlobalVariable*> &AllocaTmps) {
2019 // Check to see if this function is already executing (recursion). If so,
2020 // bail out. TODO: we might want to accept limited recursion.
2021 if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
2022 return false;
2023
2024 CallStack.push_back(F);
2025
2026 /// Values - As we compute SSA register values, we store their contents here.
Chris Lattner4cd08c22008-12-16 07:34:30 +00002027 DenseMap<Value*, Constant*> Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002028
2029 // Initialize arguments to the incoming values specified.
2030 unsigned ArgNo = 0;
2031 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
2032 ++AI, ++ArgNo)
2033 Values[AI] = ActualArgs[ArgNo];
2034
2035 /// ExecutedBlocks - We only handle non-looping, non-recursive code. As such,
2036 /// we can only evaluate any one basic block at most once. This set keeps
2037 /// track of what we have executed so we can detect recursive cases etc.
Chris Lattner4cd08c22008-12-16 07:34:30 +00002038 SmallPtrSet<BasicBlock*, 32> ExecutedBlocks;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002039
2040 // CurInst - The current instruction we're evaluating.
2041 BasicBlock::iterator CurInst = F->begin()->begin();
2042
2043 // This is the main evaluation loop.
2044 while (1) {
2045 Constant *InstResult = 0;
2046
2047 if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
2048 if (SI->isVolatile()) return false; // no volatile accesses.
2049 Constant *Ptr = getVal(Values, SI->getOperand(1));
2050 if (!isSimpleEnoughPointerToCommit(Ptr))
2051 // If this is too complex for us to commit, reject it.
2052 return false;
2053 Constant *Val = getVal(Values, SI->getOperand(0));
2054 MutatedMemory[Ptr] = Val;
2055 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
2056 InstResult = ConstantExpr::get(BO->getOpcode(),
2057 getVal(Values, BO->getOperand(0)),
2058 getVal(Values, BO->getOperand(1)));
2059 } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
2060 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
2061 getVal(Values, CI->getOperand(0)),
2062 getVal(Values, CI->getOperand(1)));
2063 } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
2064 InstResult = ConstantExpr::getCast(CI->getOpcode(),
2065 getVal(Values, CI->getOperand(0)),
2066 CI->getType());
2067 } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
2068 InstResult = ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)),
2069 getVal(Values, SI->getOperand(1)),
2070 getVal(Values, SI->getOperand(2)));
2071 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
2072 Constant *P = getVal(Values, GEP->getOperand(0));
2073 SmallVector<Constant*, 8> GEPOps;
Gabor Greif20f03f52008-05-29 01:59:18 +00002074 for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end();
2075 i != e; ++i)
2076 GEPOps.push_back(getVal(Values, *i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002077 InstResult = ConstantExpr::getGetElementPtr(P, &GEPOps[0], GEPOps.size());
2078 } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
2079 if (LI->isVolatile()) return false; // no volatile accesses.
2080 InstResult = ComputeLoadResult(getVal(Values, LI->getOperand(0)),
2081 MutatedMemory);
2082 if (InstResult == 0) return false; // Could not evaluate load.
2083 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
2084 if (AI->isArrayAllocation()) return false; // Cannot handle array allocs.
2085 const Type *Ty = AI->getType()->getElementType();
2086 AllocaTmps.push_back(new GlobalVariable(Ty, false,
2087 GlobalValue::InternalLinkage,
2088 UndefValue::get(Ty),
2089 AI->getName()));
2090 InstResult = AllocaTmps.back();
2091 } else if (CallInst *CI = dyn_cast<CallInst>(CurInst)) {
2092 // Cannot handle inline asm.
2093 if (isa<InlineAsm>(CI->getOperand(0))) return false;
2094
2095 // Resolve function pointers.
2096 Function *Callee = dyn_cast<Function>(getVal(Values, CI->getOperand(0)));
2097 if (!Callee) return false; // Cannot resolve.
2098
2099 std::vector<Constant*> Formals;
Gabor Greif20f03f52008-05-29 01:59:18 +00002100 for (User::op_iterator i = CI->op_begin() + 1, e = CI->op_end();
2101 i != e; ++i)
2102 Formals.push_back(getVal(Values, *i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002103
2104 if (Callee->isDeclaration()) {
2105 // If this is a function we can constant fold, do it.
2106 if (Constant *C = ConstantFoldCall(Callee, &Formals[0],
2107 Formals.size())) {
2108 InstResult = C;
2109 } else {
2110 return false;
2111 }
2112 } else {
2113 if (Callee->getFunctionType()->isVarArg())
2114 return false;
2115
2116 Constant *RetVal;
2117
2118 // Execute the call, if successful, use the return value.
2119 if (!EvaluateFunction(Callee, RetVal, Formals, CallStack,
2120 MutatedMemory, AllocaTmps))
2121 return false;
2122 InstResult = RetVal;
2123 }
2124 } else if (isa<TerminatorInst>(CurInst)) {
2125 BasicBlock *NewBB = 0;
2126 if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
2127 if (BI->isUnconditional()) {
2128 NewBB = BI->getSuccessor(0);
2129 } else {
2130 ConstantInt *Cond =
2131 dyn_cast<ConstantInt>(getVal(Values, BI->getCondition()));
2132 if (!Cond) return false; // Cannot determine.
2133
2134 NewBB = BI->getSuccessor(!Cond->getZExtValue());
2135 }
2136 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
2137 ConstantInt *Val =
2138 dyn_cast<ConstantInt>(getVal(Values, SI->getCondition()));
2139 if (!Val) return false; // Cannot determine.
2140 NewBB = SI->getSuccessor(SI->findCaseValue(Val));
2141 } else if (ReturnInst *RI = dyn_cast<ReturnInst>(CurInst)) {
2142 if (RI->getNumOperands())
2143 RetVal = getVal(Values, RI->getOperand(0));
2144
2145 CallStack.pop_back(); // return from fn.
2146 return true; // We succeeded at evaluating this ctor!
2147 } else {
2148 // invoke, unwind, unreachable.
2149 return false; // Cannot handle this terminator.
2150 }
2151
2152 // Okay, we succeeded in evaluating this control flow. See if we have
2153 // executed the new block before. If so, we have a looping function,
2154 // which we cannot evaluate in reasonable time.
Chris Lattner4cd08c22008-12-16 07:34:30 +00002155 if (!ExecutedBlocks.insert(NewBB))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002156 return false; // looped!
2157
2158 // Okay, we have never been in this block before. Check to see if there
2159 // are any PHI nodes. If so, evaluate them with information about where
2160 // we came from.
2161 BasicBlock *OldBB = CurInst->getParent();
2162 CurInst = NewBB->begin();
2163 PHINode *PN;
2164 for (; (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
2165 Values[PN] = getVal(Values, PN->getIncomingValueForBlock(OldBB));
2166
2167 // Do NOT increment CurInst. We know that the terminator had no value.
2168 continue;
2169 } else {
2170 // Did not know how to evaluate this!
2171 return false;
2172 }
2173
2174 if (!CurInst->use_empty())
2175 Values[CurInst] = InstResult;
2176
2177 // Advance program counter.
2178 ++CurInst;
2179 }
2180}
2181
2182/// EvaluateStaticConstructor - Evaluate static constructors in the function, if
2183/// we can. Return true if we can, false otherwise.
2184static bool EvaluateStaticConstructor(Function *F) {
2185 /// MutatedMemory - For each store we execute, we update this map. Loads
2186 /// check this to get the most up-to-date value. If evaluation is successful,
2187 /// this state is committed to the process.
Chris Lattner4cd08c22008-12-16 07:34:30 +00002188 DenseMap<Constant*, Constant*> MutatedMemory;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002189
2190 /// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
2191 /// to represent its body. This vector is needed so we can delete the
2192 /// temporary globals when we are done.
2193 std::vector<GlobalVariable*> AllocaTmps;
2194
2195 /// CallStack - This is used to detect recursion. In pathological situations
2196 /// we could hit exponential behavior, but at least there is nothing
2197 /// unbounded.
2198 std::vector<Function*> CallStack;
2199
2200 // Call the function.
2201 Constant *RetValDummy;
2202 bool EvalSuccess = EvaluateFunction(F, RetValDummy, std::vector<Constant*>(),
2203 CallStack, MutatedMemory, AllocaTmps);
2204 if (EvalSuccess) {
2205 // We succeeded at evaluation: commit the result.
2206 DOUT << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
2207 << F->getName() << "' to " << MutatedMemory.size()
2208 << " stores.\n";
Chris Lattner4cd08c22008-12-16 07:34:30 +00002209 for (DenseMap<Constant*, Constant*>::iterator I = MutatedMemory.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002210 E = MutatedMemory.end(); I != E; ++I)
2211 CommitValueTo(I->second, I->first);
2212 }
2213
2214 // At this point, we are done interpreting. If we created any 'alloca'
2215 // temporaries, release them now.
2216 while (!AllocaTmps.empty()) {
2217 GlobalVariable *Tmp = AllocaTmps.back();
2218 AllocaTmps.pop_back();
2219
2220 // If there are still users of the alloca, the program is doing something
2221 // silly, e.g. storing the address of the alloca somewhere and using it
2222 // later. Since this is undefined, we'll just make it be null.
2223 if (!Tmp->use_empty())
2224 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
2225 delete Tmp;
2226 }
2227
2228 return EvalSuccess;
2229}
2230
2231
2232
2233/// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
2234/// Return true if anything changed.
2235bool GlobalOpt::OptimizeGlobalCtorsList(GlobalVariable *&GCL) {
2236 std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
2237 bool MadeChange = false;
2238 if (Ctors.empty()) return false;
2239
2240 // Loop over global ctors, optimizing them when we can.
2241 for (unsigned i = 0; i != Ctors.size(); ++i) {
2242 Function *F = Ctors[i];
2243 // Found a null terminator in the middle of the list, prune off the rest of
2244 // the list.
2245 if (F == 0) {
2246 if (i != Ctors.size()-1) {
2247 Ctors.resize(i+1);
2248 MadeChange = true;
2249 }
2250 break;
2251 }
2252
2253 // We cannot simplify external ctor functions.
2254 if (F->empty()) continue;
2255
2256 // If we can evaluate the ctor at compile time, do.
2257 if (EvaluateStaticConstructor(F)) {
2258 Ctors.erase(Ctors.begin()+i);
2259 MadeChange = true;
2260 --i;
2261 ++NumCtorsEvaluated;
2262 continue;
2263 }
2264 }
2265
2266 if (!MadeChange) return false;
2267
2268 GCL = InstallGlobalCtors(GCL, Ctors);
2269 return true;
2270}
2271
Anton Korobeynikov76944bd2008-09-09 19:04:59 +00002272bool GlobalOpt::ResolveAliases(Module &M) {
2273 bool Changed = false;
2274
2275 for (Module::alias_iterator I = M.alias_begin(),
2276 E = M.alias_end(); I != E; ++I) {
2277 if (I->use_empty())
2278 continue;
2279
Anton Korobeynikovc7b90912008-09-09 20:05:04 +00002280 if (const GlobalValue *GV = I->resolveAliasedGlobal())
Anton Korobeynikov76944bd2008-09-09 19:04:59 +00002281 if (GV != I) {
2282 I->replaceAllUsesWith(const_cast<GlobalValue*>(GV));
2283 Changed = true;
2284 }
2285 }
2286
2287 return Changed;
2288}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002289
2290bool GlobalOpt::runOnModule(Module &M) {
2291 bool Changed = false;
2292
2293 // Try to find the llvm.globalctors list.
2294 GlobalVariable *GlobalCtors = FindGlobalCtors(M);
2295
2296 bool LocalChange = true;
2297 while (LocalChange) {
2298 LocalChange = false;
2299
2300 // Delete functions that are trivially dead, ccc -> fastcc
2301 LocalChange |= OptimizeFunctions(M);
2302
2303 // Optimize global_ctors list.
2304 if (GlobalCtors)
2305 LocalChange |= OptimizeGlobalCtorsList(GlobalCtors);
2306
2307 // Optimize non-address-taken globals.
2308 LocalChange |= OptimizeGlobalVars(M);
Anton Korobeynikov76944bd2008-09-09 19:04:59 +00002309
2310 // Resolve aliases, when possible.
2311 LocalChange |= ResolveAliases(M);
2312 Changed |= LocalChange;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002313 }
2314
2315 // TODO: Move all global ctors functions to the end of the module for code
2316 // layout.
2317
2318 return Changed;
2319}