Change SRAGlobal to not depend on isNotSuitableForSRA, which makes it very
[oota-llvm.git] / lib / Transforms / IPO / GlobalOpt.cpp
1 //===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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"
27 #include "llvm/Support/Compiler.h"
28 #include "llvm/Support/Debug.h"
29 #include "llvm/ADT/SmallPtrSet.h"
30 #include "llvm/ADT/SmallVector.h"
31 #include "llvm/ADT/Statistic.h"
32 #include "llvm/ADT/StringExtras.h"
33 #include <algorithm>
34 #include <set>
35 using namespace llvm;
36
37 STATISTIC(NumMarked    , "Number of globals marked constant");
38 STATISTIC(NumSRA       , "Number of aggregate globals broken into scalars");
39 STATISTIC(NumHeapSRA   , "Number of heap objects SRA'd");
40 STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
41 STATISTIC(NumDeleted   , "Number of globals deleted");
42 STATISTIC(NumFnDeleted , "Number of functions deleted");
43 STATISTIC(NumGlobUses  , "Number of global uses devirtualized");
44 STATISTIC(NumLocalized , "Number of globals localized");
45 STATISTIC(NumShrunkToBool  , "Number of global vars shrunk to booleans");
46 STATISTIC(NumFastCallFns   , "Number of functions converted to fastcc");
47 STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
48
49 namespace {
50   struct VISIBILITY_HIDDEN GlobalOpt : public ModulePass {
51     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
52       AU.addRequired<TargetData>();
53     }
54     static char ID; // Pass identification, replacement for typeid
55     GlobalOpt() : ModulePass((intptr_t)&ID) {}
56
57     bool runOnModule(Module &M);
58
59   private:
60     GlobalVariable *FindGlobalCtors(Module &M);
61     bool OptimizeFunctions(Module &M);
62     bool OptimizeGlobalVars(Module &M);
63     bool OptimizeGlobalCtorsList(GlobalVariable *&GCL);
64     bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
65   };
66
67   char GlobalOpt::ID = 0;
68   RegisterPass<GlobalOpt> X("globalopt", "Global Variable Optimizer");
69 }
70
71 ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
72
73 /// GlobalStatus - As we analyze each global, keep track of some information
74 /// about it.  If we find out that the address of the global is taken, none of
75 /// this info will be accurate.
76 struct VISIBILITY_HIDDEN GlobalStatus {
77   /// isLoaded - True if the global is ever loaded.  If the global isn't ever
78   /// loaded it can be deleted.
79   bool isLoaded;
80
81   /// StoredType - Keep track of what stores to the global look like.
82   ///
83   enum StoredType {
84     /// NotStored - There is no store to this global.  It can thus be marked
85     /// constant.
86     NotStored,
87
88     /// isInitializerStored - This global is stored to, but the only thing
89     /// stored is the constant it was initialized with.  This is only tracked
90     /// for scalar globals.
91     isInitializerStored,
92
93     /// isStoredOnce - This global is stored to, but only its initializer and
94     /// one other value is ever stored to it.  If this global isStoredOnce, we
95     /// track the value stored to it in StoredOnceValue below.  This is only
96     /// tracked for scalar globals.
97     isStoredOnce,
98
99     /// isStored - This global is stored to by multiple values or something else
100     /// that we cannot track.
101     isStored
102   } StoredType;
103
104   /// StoredOnceValue - If only one value (besides the initializer constant) is
105   /// ever stored to this global, keep track of what value it is.
106   Value *StoredOnceValue;
107
108   /// AccessingFunction/HasMultipleAccessingFunctions - These start out
109   /// null/false.  When the first accessing function is noticed, it is recorded.
110   /// When a second different accessing function is noticed,
111   /// HasMultipleAccessingFunctions is set to true.
112   Function *AccessingFunction;
113   bool HasMultipleAccessingFunctions;
114
115   /// HasNonInstructionUser - Set to true if this global has a user that is not
116   /// an instruction (e.g. a constant expr or GV initializer).
117   bool HasNonInstructionUser;
118
119   /// HasPHIUser - Set to true if this global has a user that is a PHI node.
120   bool HasPHIUser;
121   
122   /// isNotSuitableForSRA - Keep track of whether any SRA preventing users of
123   /// the global exist.  Such users include GEP instruction with variable
124   /// indexes, and non-gep/load/store users like constant expr casts.
125   bool isNotSuitableForSRA;
126
127   GlobalStatus() : isLoaded(false), StoredType(NotStored), StoredOnceValue(0),
128                    AccessingFunction(0), HasMultipleAccessingFunctions(false),
129                    HasNonInstructionUser(false), HasPHIUser(false),
130                    isNotSuitableForSRA(false) {}
131 };
132
133
134
135 /// ConstantIsDead - Return true if the specified constant is (transitively)
136 /// dead.  The constant may be used by other constants (e.g. constant arrays and
137 /// constant exprs) as long as they are dead, but it cannot be used by anything
138 /// else.
139 static bool ConstantIsDead(Constant *C) {
140   if (isa<GlobalValue>(C)) return false;
141
142   for (Value::use_iterator UI = C->use_begin(), E = C->use_end(); UI != E; ++UI)
143     if (Constant *CU = dyn_cast<Constant>(*UI)) {
144       if (!ConstantIsDead(CU)) return false;
145     } else
146       return false;
147   return true;
148 }
149
150
151 /// AnalyzeGlobal - Look at all uses of the global and fill in the GlobalStatus
152 /// structure.  If the global has its address taken, return true to indicate we
153 /// can't do anything with it.
154 ///
155 static bool AnalyzeGlobal(Value *V, GlobalStatus &GS,
156                           std::set<PHINode*> &PHIUsers) {
157   for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
158     if (ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) {
159       GS.HasNonInstructionUser = true;
160
161       if (AnalyzeGlobal(CE, GS, PHIUsers)) return true;
162       if (CE->getOpcode() != Instruction::GetElementPtr)
163         GS.isNotSuitableForSRA = true;
164       else if (!GS.isNotSuitableForSRA) {
165         // Check to see if this ConstantExpr GEP is SRA'able.  In particular, we
166         // don't like < 3 operand CE's, and we don't like non-constant integer
167         // indices.
168         if (CE->getNumOperands() < 3 || !CE->getOperand(1)->isNullValue())
169           GS.isNotSuitableForSRA = true;
170         else {
171           for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
172             if (!isa<ConstantInt>(CE->getOperand(i))) {
173               GS.isNotSuitableForSRA = true;
174               break;
175             }
176         }
177       }
178
179     } else if (Instruction *I = dyn_cast<Instruction>(*UI)) {
180       if (!GS.HasMultipleAccessingFunctions) {
181         Function *F = I->getParent()->getParent();
182         if (GS.AccessingFunction == 0)
183           GS.AccessingFunction = F;
184         else if (GS.AccessingFunction != F)
185           GS.HasMultipleAccessingFunctions = true;
186       }
187       if (isa<LoadInst>(I)) {
188         GS.isLoaded = true;
189       } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
190         // Don't allow a store OF the address, only stores TO the address.
191         if (SI->getOperand(0) == V) return true;
192
193         // If this is a direct store to the global (i.e., the global is a scalar
194         // value, not an aggregate), keep more specific information about
195         // stores.
196         if (GS.StoredType != GlobalStatus::isStored)
197           if (GlobalVariable *GV = dyn_cast<GlobalVariable>(SI->getOperand(1))){
198             Value *StoredVal = SI->getOperand(0);
199             if (StoredVal == GV->getInitializer()) {
200               if (GS.StoredType < GlobalStatus::isInitializerStored)
201                 GS.StoredType = GlobalStatus::isInitializerStored;
202             } else if (isa<LoadInst>(StoredVal) &&
203                        cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
204               // G = G
205               if (GS.StoredType < GlobalStatus::isInitializerStored)
206                 GS.StoredType = GlobalStatus::isInitializerStored;
207             } else if (GS.StoredType < GlobalStatus::isStoredOnce) {
208               GS.StoredType = GlobalStatus::isStoredOnce;
209               GS.StoredOnceValue = StoredVal;
210             } else if (GS.StoredType == GlobalStatus::isStoredOnce &&
211                        GS.StoredOnceValue == StoredVal) {
212               // noop.
213             } else {
214               GS.StoredType = GlobalStatus::isStored;
215             }
216           } else {
217             GS.StoredType = GlobalStatus::isStored;
218           }
219       } else if (isa<GetElementPtrInst>(I)) {
220         if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
221
222         // If the first two indices are constants, this can be SRA'd.
223         if (isa<GlobalVariable>(I->getOperand(0))) {
224           if (I->getNumOperands() < 3 || !isa<Constant>(I->getOperand(1)) ||
225               !cast<Constant>(I->getOperand(1))->isNullValue() ||
226               !isa<ConstantInt>(I->getOperand(2)))
227             GS.isNotSuitableForSRA = true;
228         } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(I->getOperand(0))){
229           if (CE->getOpcode() != Instruction::GetElementPtr ||
230               CE->getNumOperands() < 3 || I->getNumOperands() < 2 ||
231               !isa<Constant>(I->getOperand(0)) ||
232               !cast<Constant>(I->getOperand(0))->isNullValue())
233             GS.isNotSuitableForSRA = true;
234         } else {
235           GS.isNotSuitableForSRA = true;
236         }
237       } else if (isa<SelectInst>(I)) {
238         if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
239         GS.isNotSuitableForSRA = true;
240       } else if (PHINode *PN = dyn_cast<PHINode>(I)) {
241         // PHI nodes we can check just like select or GEP instructions, but we
242         // have to be careful about infinite recursion.
243         if (PHIUsers.insert(PN).second)  // Not already visited.
244           if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
245         GS.isNotSuitableForSRA = true;
246         GS.HasPHIUser = true;
247       } else if (isa<CmpInst>(I)) {
248         GS.isNotSuitableForSRA = true;
249       } else if (isa<MemCpyInst>(I) || isa<MemMoveInst>(I)) {
250         if (I->getOperand(1) == V)
251           GS.StoredType = GlobalStatus::isStored;
252         if (I->getOperand(2) == V)
253           GS.isLoaded = true;
254         GS.isNotSuitableForSRA = true;
255       } else if (isa<MemSetInst>(I)) {
256         assert(I->getOperand(1) == V && "Memset only takes one pointer!");
257         GS.StoredType = GlobalStatus::isStored;
258         GS.isNotSuitableForSRA = true;
259       } else {
260         return true;  // Any other non-load instruction might take address!
261       }
262     } else if (Constant *C = dyn_cast<Constant>(*UI)) {
263       GS.HasNonInstructionUser = true;
264       // We might have a dead and dangling constant hanging off of here.
265       if (!ConstantIsDead(C))
266         return true;
267     } else {
268       GS.HasNonInstructionUser = true;
269       // Otherwise must be some other user.
270       return true;
271     }
272
273   return false;
274 }
275
276 static Constant *getAggregateConstantElement(Constant *Agg, Constant *Idx) {
277   ConstantInt *CI = dyn_cast<ConstantInt>(Idx);
278   if (!CI) return 0;
279   unsigned IdxV = CI->getZExtValue();
280
281   if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Agg)) {
282     if (IdxV < CS->getNumOperands()) return CS->getOperand(IdxV);
283   } else if (ConstantArray *CA = dyn_cast<ConstantArray>(Agg)) {
284     if (IdxV < CA->getNumOperands()) return CA->getOperand(IdxV);
285   } else if (ConstantVector *CP = dyn_cast<ConstantVector>(Agg)) {
286     if (IdxV < CP->getNumOperands()) return CP->getOperand(IdxV);
287   } else if (isa<ConstantAggregateZero>(Agg)) {
288     if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
289       if (IdxV < STy->getNumElements())
290         return Constant::getNullValue(STy->getElementType(IdxV));
291     } else if (const SequentialType *STy =
292                dyn_cast<SequentialType>(Agg->getType())) {
293       return Constant::getNullValue(STy->getElementType());
294     }
295   } else if (isa<UndefValue>(Agg)) {
296     if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
297       if (IdxV < STy->getNumElements())
298         return UndefValue::get(STy->getElementType(IdxV));
299     } else if (const SequentialType *STy =
300                dyn_cast<SequentialType>(Agg->getType())) {
301       return UndefValue::get(STy->getElementType());
302     }
303   }
304   return 0;
305 }
306
307
308 /// CleanupConstantGlobalUsers - We just marked GV constant.  Loop over all
309 /// users of the global, cleaning up the obvious ones.  This is largely just a
310 /// quick scan over the use list to clean up the easy and obvious cruft.  This
311 /// returns true if it made a change.
312 static bool CleanupConstantGlobalUsers(Value *V, Constant *Init) {
313   bool Changed = false;
314   for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;) {
315     User *U = *UI++;
316
317     if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
318       if (Init) {
319         // Replace the load with the initializer.
320         LI->replaceAllUsesWith(Init);
321         LI->eraseFromParent();
322         Changed = true;
323       }
324     } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
325       // Store must be unreachable or storing Init into the global.
326       SI->eraseFromParent();
327       Changed = true;
328     } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
329       if (CE->getOpcode() == Instruction::GetElementPtr) {
330         Constant *SubInit = 0;
331         if (Init)
332           SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
333         Changed |= CleanupConstantGlobalUsers(CE, SubInit);
334       } else if (CE->getOpcode() == Instruction::BitCast && 
335                  isa<PointerType>(CE->getType())) {
336         // Pointer cast, delete any stores and memsets to the global.
337         Changed |= CleanupConstantGlobalUsers(CE, 0);
338       }
339
340       if (CE->use_empty()) {
341         CE->destroyConstant();
342         Changed = true;
343       }
344     } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
345       // Do not transform "gepinst (gep constexpr (GV))" here, because forming
346       // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
347       // and will invalidate our notion of what Init is.
348       Constant *SubInit = 0;
349       if (!isa<ConstantExpr>(GEP->getOperand(0))) {
350         ConstantExpr *CE = 
351           dyn_cast_or_null<ConstantExpr>(ConstantFoldInstruction(GEP));
352         if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
353           SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
354       }
355       Changed |= CleanupConstantGlobalUsers(GEP, SubInit);
356
357       if (GEP->use_empty()) {
358         GEP->eraseFromParent();
359         Changed = true;
360       }
361     } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
362       if (MI->getRawDest() == V) {
363         MI->eraseFromParent();
364         Changed = true;
365       }
366
367     } else if (Constant *C = dyn_cast<Constant>(U)) {
368       // If we have a chain of dead constantexprs or other things dangling from
369       // us, and if they are all dead, nuke them without remorse.
370       if (ConstantIsDead(C)) {
371         C->destroyConstant();
372         // This could have invalidated UI, start over from scratch.
373         CleanupConstantGlobalUsers(V, Init);
374         return true;
375       }
376     }
377   }
378   return Changed;
379 }
380
381
382 /// UsersSafeToSRA - Look at all uses of the global and decide whether it is
383 /// safe for us to perform this transformation.
384 ///
385 static bool UsersSafeToSRA(Value *V) {
386   for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
387     if (ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) {
388       if (CE->getOpcode() != Instruction::GetElementPtr)
389         return false;
390
391       // Check to see if this ConstantExpr GEP is SRA'able.  In particular, we
392       // don't like < 3 operand CE's, and we don't like non-constant integer
393       // indices.
394       if (CE->getNumOperands() < 3 || !CE->getOperand(1)->isNullValue())
395         return false;
396       
397       for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
398         if (!isa<ConstantInt>(CE->getOperand(i)))
399           return false;
400       
401       if (!UsersSafeToSRA(CE)) return false;
402       continue;
403     }
404     
405     if (Instruction *I = dyn_cast<Instruction>(*UI)) {
406       if (isa<LoadInst>(I)) continue;
407       
408       if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
409         // Don't allow a store OF the address, only stores TO the address.
410         if (SI->getOperand(0) == V) return false;
411         continue;
412       }
413       
414       if (isa<GetElementPtrInst>(I)) {
415         if (!UsersSafeToSRA(I)) return false;
416         
417         // If the first two indices are constants, this can be SRA'd.
418         if (isa<GlobalVariable>(I->getOperand(0))) {
419           if (I->getNumOperands() < 3 || !isa<Constant>(I->getOperand(1)) ||
420               !cast<Constant>(I->getOperand(1))->isNullValue() ||
421               !isa<ConstantInt>(I->getOperand(2)))
422             return false;
423           continue;
424         }
425         
426         if (ConstantExpr *CE = dyn_cast<ConstantExpr>(I->getOperand(0))){
427           if (CE->getOpcode() != Instruction::GetElementPtr ||
428               CE->getNumOperands() < 3 || I->getNumOperands() < 2 ||
429               !isa<Constant>(I->getOperand(0)) ||
430               !cast<Constant>(I->getOperand(0))->isNullValue())
431             return false;
432           continue;
433         }
434         return false;
435       }
436       return false;  // Any other instruction is not safe.
437     }
438     if (Constant *C = dyn_cast<Constant>(*UI)) {
439       // We might have a dead and dangling constant hanging off of here.
440       if (!ConstantIsDead(C))
441         return false;
442       continue;
443     }
444     // Otherwise must be some other user.
445     return false;
446   }
447   
448   return true;
449 }
450
451 /// SRAGlobal - Perform scalar replacement of aggregates on the specified global
452 /// variable.  This opens the door for other optimizations by exposing the
453 /// behavior of the program in a more fine-grained way.  We have determined that
454 /// this transformation is safe already.  We return the first global variable we
455 /// insert so that the caller can reprocess it.
456 static GlobalVariable *SRAGlobal(GlobalVariable *GV) {
457   // Make sure this global only has simple uses that we can SRA.
458   if (!UsersSafeToSRA(GV))
459     return 0;
460   
461   assert(GV->hasInternalLinkage() && !GV->isConstant());
462   Constant *Init = GV->getInitializer();
463   const Type *Ty = Init->getType();
464
465   std::vector<GlobalVariable*> NewGlobals;
466   Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
467
468   if (const StructType *STy = dyn_cast<StructType>(Ty)) {
469     NewGlobals.reserve(STy->getNumElements());
470     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
471       Constant *In = getAggregateConstantElement(Init,
472                                             ConstantInt::get(Type::Int32Ty, i));
473       assert(In && "Couldn't get element of initializer?");
474       GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
475                                                GlobalVariable::InternalLinkage,
476                                                In, GV->getName()+"."+utostr(i),
477                                                (Module *)NULL,
478                                                GV->isThreadLocal());
479       Globals.insert(GV, NGV);
480       NewGlobals.push_back(NGV);
481     }
482   } else if (const SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
483     unsigned NumElements = 0;
484     if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
485       NumElements = ATy->getNumElements();
486     else if (const VectorType *PTy = dyn_cast<VectorType>(STy))
487       NumElements = PTy->getNumElements();
488     else
489       assert(0 && "Unknown aggregate sequential type!");
490
491     if (NumElements > 16 && GV->hasNUsesOrMore(16))
492       return 0; // It's not worth it.
493     NewGlobals.reserve(NumElements);
494     for (unsigned i = 0, e = NumElements; i != e; ++i) {
495       Constant *In = getAggregateConstantElement(Init,
496                                             ConstantInt::get(Type::Int32Ty, i));
497       assert(In && "Couldn't get element of initializer?");
498
499       GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
500                                                GlobalVariable::InternalLinkage,
501                                                In, GV->getName()+"."+utostr(i),
502                                                (Module *)NULL,
503                                                GV->isThreadLocal());
504       Globals.insert(GV, NGV);
505       NewGlobals.push_back(NGV);
506     }
507   }
508
509   if (NewGlobals.empty())
510     return 0;
511
512   DOUT << "PERFORMING GLOBAL SRA ON: " << *GV;
513
514   Constant *NullInt = Constant::getNullValue(Type::Int32Ty);
515
516   // Loop over all of the uses of the global, replacing the constantexpr geps,
517   // with smaller constantexpr geps or direct references.
518   while (!GV->use_empty()) {
519     User *GEP = GV->use_back();
520     assert(((isa<ConstantExpr>(GEP) &&
521              cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
522             isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
523
524     // Ignore the 1th operand, which has to be zero or else the program is quite
525     // broken (undefined).  Get the 2nd operand, which is the structure or array
526     // index.
527     unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
528     if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
529
530     Value *NewPtr = NewGlobals[Val];
531
532     // Form a shorter GEP if needed.
533     if (GEP->getNumOperands() > 3)
534       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
535         SmallVector<Constant*, 8> Idxs;
536         Idxs.push_back(NullInt);
537         for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
538           Idxs.push_back(CE->getOperand(i));
539         NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr),
540                                                 &Idxs[0], Idxs.size());
541       } else {
542         GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
543         SmallVector<Value*, 8> Idxs;
544         Idxs.push_back(NullInt);
545         for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
546           Idxs.push_back(GEPI->getOperand(i));
547         NewPtr = new GetElementPtrInst(NewPtr, Idxs.begin(), Idxs.end(),
548                                        GEPI->getName()+"."+utostr(Val), GEPI);
549       }
550     GEP->replaceAllUsesWith(NewPtr);
551
552     if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
553       GEPI->eraseFromParent();
554     else
555       cast<ConstantExpr>(GEP)->destroyConstant();
556   }
557
558   // Delete the old global, now that it is dead.
559   Globals.erase(GV);
560   ++NumSRA;
561
562   // Loop over the new globals array deleting any globals that are obviously
563   // dead.  This can arise due to scalarization of a structure or an array that
564   // has elements that are dead.
565   unsigned FirstGlobal = 0;
566   for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
567     if (NewGlobals[i]->use_empty()) {
568       Globals.erase(NewGlobals[i]);
569       if (FirstGlobal == i) ++FirstGlobal;
570     }
571
572   return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : 0;
573 }
574
575 /// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
576 /// value will trap if the value is dynamically null.  PHIs keeps track of any 
577 /// phi nodes we've seen to avoid reprocessing them.
578 static bool AllUsesOfValueWillTrapIfNull(Value *V,
579                                          SmallPtrSet<PHINode*, 8> &PHIs) {
580   for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
581     if (isa<LoadInst>(*UI)) {
582       // Will trap.
583     } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
584       if (SI->getOperand(0) == V) {
585         //cerr << "NONTRAPPING USE: " << **UI;
586         return false;  // Storing the value.
587       }
588     } else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
589       if (CI->getOperand(0) != V) {
590         //cerr << "NONTRAPPING USE: " << **UI;
591         return false;  // Not calling the ptr
592       }
593     } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
594       if (II->getOperand(0) != V) {
595         //cerr << "NONTRAPPING USE: " << **UI;
596         return false;  // Not calling the ptr
597       }
598     } else if (BitCastInst *CI = dyn_cast<BitCastInst>(*UI)) {
599       if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
600     } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
601       if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
602     } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
603       // If we've already seen this phi node, ignore it, it has already been
604       // checked.
605       if (PHIs.insert(PN))
606         return AllUsesOfValueWillTrapIfNull(PN, PHIs);
607     } else if (isa<ICmpInst>(*UI) &&
608                isa<ConstantPointerNull>(UI->getOperand(1))) {
609       // Ignore setcc X, null
610     } else {
611       //cerr << "NONTRAPPING USE: " << **UI;
612       return false;
613     }
614   return true;
615 }
616
617 /// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
618 /// from GV will trap if the loaded value is null.  Note that this also permits
619 /// comparisons of the loaded value against null, as a special case.
620 static bool AllUsesOfLoadedValueWillTrapIfNull(GlobalVariable *GV) {
621   for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI!=E; ++UI)
622     if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
623       SmallPtrSet<PHINode*, 8> PHIs;
624       if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
625         return false;
626     } else if (isa<StoreInst>(*UI)) {
627       // Ignore stores to the global.
628     } else {
629       // We don't know or understand this user, bail out.
630       //cerr << "UNKNOWN USER OF GLOBAL!: " << **UI;
631       return false;
632     }
633
634   return true;
635 }
636
637 static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
638   bool Changed = false;
639   for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
640     Instruction *I = cast<Instruction>(*UI++);
641     if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
642       LI->setOperand(0, NewV);
643       Changed = true;
644     } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
645       if (SI->getOperand(1) == V) {
646         SI->setOperand(1, NewV);
647         Changed = true;
648       }
649     } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
650       if (I->getOperand(0) == V) {
651         // Calling through the pointer!  Turn into a direct call, but be careful
652         // that the pointer is not also being passed as an argument.
653         I->setOperand(0, NewV);
654         Changed = true;
655         bool PassedAsArg = false;
656         for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i)
657           if (I->getOperand(i) == V) {
658             PassedAsArg = true;
659             I->setOperand(i, NewV);
660           }
661
662         if (PassedAsArg) {
663           // Being passed as an argument also.  Be careful to not invalidate UI!
664           UI = V->use_begin();
665         }
666       }
667     } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
668       Changed |= OptimizeAwayTrappingUsesOfValue(CI,
669                                 ConstantExpr::getCast(CI->getOpcode(),
670                                                       NewV, CI->getType()));
671       if (CI->use_empty()) {
672         Changed = true;
673         CI->eraseFromParent();
674       }
675     } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
676       // Should handle GEP here.
677       SmallVector<Constant*, 8> Idxs;
678       Idxs.reserve(GEPI->getNumOperands()-1);
679       for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
680         if (Constant *C = dyn_cast<Constant>(GEPI->getOperand(i)))
681           Idxs.push_back(C);
682         else
683           break;
684       if (Idxs.size() == GEPI->getNumOperands()-1)
685         Changed |= OptimizeAwayTrappingUsesOfValue(GEPI,
686                                 ConstantExpr::getGetElementPtr(NewV, &Idxs[0],
687                                                                Idxs.size()));
688       if (GEPI->use_empty()) {
689         Changed = true;
690         GEPI->eraseFromParent();
691       }
692     }
693   }
694
695   return Changed;
696 }
697
698
699 /// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
700 /// value stored into it.  If there are uses of the loaded value that would trap
701 /// if the loaded value is dynamically null, then we know that they cannot be
702 /// reachable with a null optimize away the load.
703 static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV) {
704   std::vector<LoadInst*> Loads;
705   bool Changed = false;
706
707   // Replace all uses of loads with uses of uses of the stored value.
708   for (Value::use_iterator GUI = GV->use_begin(), E = GV->use_end();
709        GUI != E; ++GUI)
710     if (LoadInst *LI = dyn_cast<LoadInst>(*GUI)) {
711       Loads.push_back(LI);
712       Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
713     } else {
714       // If we get here we could have stores, selects, or phi nodes whose values
715       // are loaded.
716       assert((isa<StoreInst>(*GUI) || isa<PHINode>(*GUI) ||
717               isa<SelectInst>(*GUI) || isa<ConstantExpr>(*GUI)) &&
718              "Only expect load and stores!");
719     }
720
721   if (Changed) {
722     DOUT << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV;
723     ++NumGlobUses;
724   }
725
726   // Delete all of the loads we can, keeping track of whether we nuked them all!
727   bool AllLoadsGone = true;
728   while (!Loads.empty()) {
729     LoadInst *L = Loads.back();
730     if (L->use_empty()) {
731       L->eraseFromParent();
732       Changed = true;
733     } else {
734       AllLoadsGone = false;
735     }
736     Loads.pop_back();
737   }
738
739   // If we nuked all of the loads, then none of the stores are needed either,
740   // nor is the global.
741   if (AllLoadsGone) {
742     DOUT << "  *** GLOBAL NOW DEAD!\n";
743     CleanupConstantGlobalUsers(GV, 0);
744     if (GV->use_empty()) {
745       GV->eraseFromParent();
746       ++NumDeleted;
747     }
748     Changed = true;
749   }
750   return Changed;
751 }
752
753 /// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
754 /// instructions that are foldable.
755 static void ConstantPropUsersOf(Value *V) {
756   for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
757     if (Instruction *I = dyn_cast<Instruction>(*UI++))
758       if (Constant *NewC = ConstantFoldInstruction(I)) {
759         I->replaceAllUsesWith(NewC);
760
761         // Advance UI to the next non-I use to avoid invalidating it!
762         // Instructions could multiply use V.
763         while (UI != E && *UI == I)
764           ++UI;
765         I->eraseFromParent();
766       }
767 }
768
769 /// OptimizeGlobalAddressOfMalloc - This function takes the specified global
770 /// variable, and transforms the program as if it always contained the result of
771 /// the specified malloc.  Because it is always the result of the specified
772 /// malloc, there is no reason to actually DO the malloc.  Instead, turn the
773 /// malloc into a global, and any loads of GV as uses of the new global.
774 static GlobalVariable *OptimizeGlobalAddressOfMalloc(GlobalVariable *GV,
775                                                      MallocInst *MI) {
776   DOUT << "PROMOTING MALLOC GLOBAL: " << *GV << "  MALLOC = " << *MI;
777   ConstantInt *NElements = cast<ConstantInt>(MI->getArraySize());
778
779   if (NElements->getZExtValue() != 1) {
780     // If we have an array allocation, transform it to a single element
781     // allocation to make the code below simpler.
782     Type *NewTy = ArrayType::get(MI->getAllocatedType(),
783                                  NElements->getZExtValue());
784     MallocInst *NewMI =
785       new MallocInst(NewTy, Constant::getNullValue(Type::Int32Ty),
786                      MI->getAlignment(), MI->getName(), MI);
787     Value* Indices[2];
788     Indices[0] = Indices[1] = Constant::getNullValue(Type::Int32Ty);
789     Value *NewGEP = new GetElementPtrInst(NewMI, Indices, Indices + 2,
790                                           NewMI->getName()+".el0", MI);
791     MI->replaceAllUsesWith(NewGEP);
792     MI->eraseFromParent();
793     MI = NewMI;
794   }
795
796   // Create the new global variable.  The contents of the malloc'd memory is
797   // undefined, so initialize with an undef value.
798   Constant *Init = UndefValue::get(MI->getAllocatedType());
799   GlobalVariable *NewGV = new GlobalVariable(MI->getAllocatedType(), false,
800                                              GlobalValue::InternalLinkage, Init,
801                                              GV->getName()+".body",
802                                              (Module *)NULL,
803                                              GV->isThreadLocal());
804   GV->getParent()->getGlobalList().insert(GV, NewGV);
805
806   // Anything that used the malloc now uses the global directly.
807   MI->replaceAllUsesWith(NewGV);
808
809   Constant *RepValue = NewGV;
810   if (NewGV->getType() != GV->getType()->getElementType())
811     RepValue = ConstantExpr::getBitCast(RepValue, 
812                                         GV->getType()->getElementType());
813
814   // If there is a comparison against null, we will insert a global bool to
815   // keep track of whether the global was initialized yet or not.
816   GlobalVariable *InitBool =
817     new GlobalVariable(Type::Int1Ty, false, GlobalValue::InternalLinkage,
818                        ConstantInt::getFalse(), GV->getName()+".init",
819                        (Module *)NULL, GV->isThreadLocal());
820   bool InitBoolUsed = false;
821
822   // Loop over all uses of GV, processing them in turn.
823   std::vector<StoreInst*> Stores;
824   while (!GV->use_empty())
825     if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
826       while (!LI->use_empty()) {
827         Use &LoadUse = LI->use_begin().getUse();
828         if (!isa<ICmpInst>(LoadUse.getUser()))
829           LoadUse = RepValue;
830         else {
831           ICmpInst *CI = cast<ICmpInst>(LoadUse.getUser());
832           // Replace the cmp X, 0 with a use of the bool value.
833           Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", CI);
834           InitBoolUsed = true;
835           switch (CI->getPredicate()) {
836           default: assert(0 && "Unknown ICmp Predicate!");
837           case ICmpInst::ICMP_ULT:
838           case ICmpInst::ICMP_SLT:
839             LV = ConstantInt::getFalse();   // X < null -> always false
840             break;
841           case ICmpInst::ICMP_ULE:
842           case ICmpInst::ICMP_SLE:
843           case ICmpInst::ICMP_EQ:
844             LV = BinaryOperator::createNot(LV, "notinit", CI);
845             break;
846           case ICmpInst::ICMP_NE:
847           case ICmpInst::ICMP_UGE:
848           case ICmpInst::ICMP_SGE:
849           case ICmpInst::ICMP_UGT:
850           case ICmpInst::ICMP_SGT:
851             break;  // no change.
852           }
853           CI->replaceAllUsesWith(LV);
854           CI->eraseFromParent();
855         }
856       }
857       LI->eraseFromParent();
858     } else {
859       StoreInst *SI = cast<StoreInst>(GV->use_back());
860       // The global is initialized when the store to it occurs.
861       new StoreInst(ConstantInt::getTrue(), InitBool, SI);
862       SI->eraseFromParent();
863     }
864
865   // If the initialization boolean was used, insert it, otherwise delete it.
866   if (!InitBoolUsed) {
867     while (!InitBool->use_empty())  // Delete initializations
868       cast<Instruction>(InitBool->use_back())->eraseFromParent();
869     delete InitBool;
870   } else
871     GV->getParent()->getGlobalList().insert(GV, InitBool);
872
873
874   // Now the GV is dead, nuke it and the malloc.
875   GV->eraseFromParent();
876   MI->eraseFromParent();
877
878   // To further other optimizations, loop over all users of NewGV and try to
879   // constant prop them.  This will promote GEP instructions with constant
880   // indices into GEP constant-exprs, which will allow global-opt to hack on it.
881   ConstantPropUsersOf(NewGV);
882   if (RepValue != NewGV)
883     ConstantPropUsersOf(RepValue);
884
885   return NewGV;
886 }
887
888 /// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
889 /// to make sure that there are no complex uses of V.  We permit simple things
890 /// like dereferencing the pointer, but not storing through the address, unless
891 /// it is to the specified global.
892 static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Instruction *V,
893                                                       GlobalVariable *GV,
894                                               SmallPtrSet<PHINode*, 8> &PHIs) {
895   for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
896     if (isa<LoadInst>(*UI) || isa<CmpInst>(*UI)) {
897       // Fine, ignore.
898     } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
899       if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
900         return false;  // Storing the pointer itself... bad.
901       // Otherwise, storing through it, or storing into GV... fine.
902     } else if (isa<GetElementPtrInst>(*UI)) {
903       if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(cast<Instruction>(*UI),
904                                                      GV, PHIs))
905         return false;
906     } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
907       // PHIs are ok if all uses are ok.  Don't infinitely recurse through PHI
908       // cycles.
909       if (PHIs.insert(PN))
910         if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
911           return false;
912     } else {
913       return false;
914     }
915   return true;
916 }
917
918 /// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
919 /// somewhere.  Transform all uses of the allocation into loads from the
920 /// global and uses of the resultant pointer.  Further, delete the store into
921 /// GV.  This assumes that these value pass the 
922 /// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
923 static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc, 
924                                           GlobalVariable *GV) {
925   while (!Alloc->use_empty()) {
926     Instruction *U = cast<Instruction>(*Alloc->use_begin());
927     Instruction *InsertPt = U;
928     if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
929       // If this is the store of the allocation into the global, remove it.
930       if (SI->getOperand(1) == GV) {
931         SI->eraseFromParent();
932         continue;
933       }
934     } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
935       // Insert the load in the corresponding predecessor, not right before the
936       // PHI.
937       unsigned PredNo = Alloc->use_begin().getOperandNo()/2;
938       InsertPt = PN->getIncomingBlock(PredNo)->getTerminator();
939     }
940     
941     // Insert a load from the global, and use it instead of the malloc.
942     Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
943     U->replaceUsesOfWith(Alloc, NL);
944   }
945 }
946
947 /// GlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
948 /// GV are simple enough to perform HeapSRA, return true.
949 static bool GlobalLoadUsesSimpleEnoughForHeapSRA(GlobalVariable *GV,
950                                                  MallocInst *MI) {
951   for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E; 
952        ++UI)
953     if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
954       // We permit two users of the load: setcc comparing against the null
955       // pointer, and a getelementptr of a specific form.
956       for (Value::use_iterator UI = LI->use_begin(), E = LI->use_end(); UI != E; 
957            ++UI) {
958         // Comparison against null is ok.
959         if (ICmpInst *ICI = dyn_cast<ICmpInst>(*UI)) {
960           if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
961             return false;
962           continue;
963         }
964         
965         // getelementptr is also ok, but only a simple form.
966         if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
967           // Must index into the array and into the struct.
968           if (GEPI->getNumOperands() < 3)
969             return false;
970           
971           // Otherwise the GEP is ok.
972           continue;
973         }
974         
975         if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
976           // We have a phi of a load from the global.  We can only handle this
977           // if the other PHI'd values are actually the same.  In this case,
978           // the rewriter will just drop the phi entirely.
979           for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
980             Value *IV = PN->getIncomingValue(i);
981             if (IV == LI) continue;  // Trivial the same.
982             
983             // If the phi'd value is from the malloc that initializes the value,
984             // we can xform it.
985             if (IV == MI) continue;
986             
987             // Otherwise, we don't know what it is.
988             return false;
989           }
990           return true;
991         }
992         
993         // Otherwise we don't know what this is, not ok.
994         return false;
995       }
996     }
997   return true;
998 }
999
1000 /// GetHeapSROALoad - Return the load for the specified field of the HeapSROA'd
1001 /// value, lazily creating it on demand.
1002 static Value *GetHeapSROALoad(Instruction *Load, unsigned FieldNo,
1003                               const std::vector<GlobalVariable*> &FieldGlobals,
1004                               std::vector<Value *> &InsertedLoadsForPtr) {
1005   if (InsertedLoadsForPtr.size() <= FieldNo)
1006     InsertedLoadsForPtr.resize(FieldNo+1);
1007   if (InsertedLoadsForPtr[FieldNo] == 0)
1008     InsertedLoadsForPtr[FieldNo] = new LoadInst(FieldGlobals[FieldNo],
1009                                                 Load->getName()+".f" + 
1010                                                 utostr(FieldNo), Load);
1011   return InsertedLoadsForPtr[FieldNo];
1012 }
1013
1014 /// RewriteHeapSROALoadUser - Given a load instruction and a value derived from
1015 /// the load, rewrite the derived value to use the HeapSRoA'd load.
1016 static void RewriteHeapSROALoadUser(LoadInst *Load, Instruction *LoadUser, 
1017                                const std::vector<GlobalVariable*> &FieldGlobals,
1018                                     std::vector<Value *> &InsertedLoadsForPtr) {
1019   // If this is a comparison against null, handle it.
1020   if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1021     assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1022     // If we have a setcc of the loaded pointer, we can use a setcc of any
1023     // field.
1024     Value *NPtr;
1025     if (InsertedLoadsForPtr.empty()) {
1026       NPtr = GetHeapSROALoad(Load, 0, FieldGlobals, InsertedLoadsForPtr);
1027     } else {
1028       NPtr = InsertedLoadsForPtr.back();
1029     }
1030     
1031     Value *New = new ICmpInst(SCI->getPredicate(), NPtr,
1032                               Constant::getNullValue(NPtr->getType()),
1033                               SCI->getName(), SCI);
1034     SCI->replaceAllUsesWith(New);
1035     SCI->eraseFromParent();
1036     return;
1037   }
1038   
1039   // Handle 'getelementptr Ptr, Idx, uint FieldNo ...'
1040   if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1041     assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1042            && "Unexpected GEPI!");
1043   
1044     // Load the pointer for this field.
1045     unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
1046     Value *NewPtr = GetHeapSROALoad(Load, FieldNo,
1047                                     FieldGlobals, InsertedLoadsForPtr);
1048     
1049     // Create the new GEP idx vector.
1050     SmallVector<Value*, 8> GEPIdx;
1051     GEPIdx.push_back(GEPI->getOperand(1));
1052     GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
1053     
1054     Value *NGEPI = new GetElementPtrInst(NewPtr, GEPIdx.begin(), GEPIdx.end(),
1055                                          GEPI->getName(), GEPI);
1056     GEPI->replaceAllUsesWith(NGEPI);
1057     GEPI->eraseFromParent();
1058     return;
1059   }
1060   
1061   // Handle PHI nodes.  PHI nodes must be merging in the same values, plus
1062   // potentially the original malloc.  Insert phi nodes for each field, then
1063   // process uses of the PHI.
1064   PHINode *PN = cast<PHINode>(LoadUser);
1065   std::vector<Value *> PHIsForField;
1066   PHIsForField.resize(FieldGlobals.size());
1067   for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1068     Value *LoadV = GetHeapSROALoad(Load, i, FieldGlobals, InsertedLoadsForPtr);
1069
1070     PHINode *FieldPN = new PHINode(LoadV->getType(),
1071                                    PN->getName()+"."+utostr(i), PN);
1072     // Fill in the predecessor values.
1073     for (unsigned pred = 0, e = PN->getNumIncomingValues(); pred != e; ++pred) {
1074       // Each predecessor either uses the load or the original malloc.
1075       Value *InVal = PN->getIncomingValue(pred);
1076       BasicBlock *BB = PN->getIncomingBlock(pred);
1077       Value *NewVal;
1078       if (isa<MallocInst>(InVal)) {
1079         // Insert a reload from the global in the predecessor.
1080         NewVal = GetHeapSROALoad(BB->getTerminator(), i, FieldGlobals,
1081                                  PHIsForField);
1082       } else {
1083         NewVal = InsertedLoadsForPtr[i];
1084       }
1085       FieldPN->addIncoming(NewVal, BB);
1086     }
1087     PHIsForField[i] = FieldPN;
1088   }
1089   
1090   // Since PHIsForField specifies a phi for every input value, the lazy inserter
1091   // will never insert a load.
1092   while (!PN->use_empty())
1093     RewriteHeapSROALoadUser(Load, PN->use_back(), FieldGlobals, PHIsForField);
1094   PN->eraseFromParent();
1095 }
1096
1097 /// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global.  Ptr
1098 /// is a value loaded from the global.  Eliminate all uses of Ptr, making them
1099 /// use FieldGlobals instead.  All uses of loaded values satisfy
1100 /// GlobalLoadUsesSimpleEnoughForHeapSRA.
1101 static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load, 
1102                              const std::vector<GlobalVariable*> &FieldGlobals) {
1103   std::vector<Value *> InsertedLoadsForPtr;
1104   //InsertedLoadsForPtr.resize(FieldGlobals.size());
1105   while (!Load->use_empty())
1106     RewriteHeapSROALoadUser(Load, Load->use_back(), 
1107                             FieldGlobals, InsertedLoadsForPtr);
1108 }
1109
1110 /// PerformHeapAllocSRoA - MI is an allocation of an array of structures.  Break
1111 /// it up into multiple allocations of arrays of the fields.
1112 static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, MallocInst *MI){
1113   DOUT << "SROA HEAP ALLOC: " << *GV << "  MALLOC = " << *MI;
1114   const StructType *STy = cast<StructType>(MI->getAllocatedType());
1115
1116   // There is guaranteed to be at least one use of the malloc (storing
1117   // it into GV).  If there are other uses, change them to be uses of
1118   // the global to simplify later code.  This also deletes the store
1119   // into GV.
1120   ReplaceUsesOfMallocWithGlobal(MI, GV);
1121   
1122   // Okay, at this point, there are no users of the malloc.  Insert N
1123   // new mallocs at the same place as MI, and N globals.
1124   std::vector<GlobalVariable*> FieldGlobals;
1125   std::vector<MallocInst*> FieldMallocs;
1126   
1127   for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
1128     const Type *FieldTy = STy->getElementType(FieldNo);
1129     const Type *PFieldTy = PointerType::getUnqual(FieldTy);
1130     
1131     GlobalVariable *NGV =
1132       new GlobalVariable(PFieldTy, false, GlobalValue::InternalLinkage,
1133                          Constant::getNullValue(PFieldTy),
1134                          GV->getName() + ".f" + utostr(FieldNo), GV,
1135                          GV->isThreadLocal());
1136     FieldGlobals.push_back(NGV);
1137     
1138     MallocInst *NMI = new MallocInst(FieldTy, MI->getArraySize(),
1139                                      MI->getName() + ".f" + utostr(FieldNo),MI);
1140     FieldMallocs.push_back(NMI);
1141     new StoreInst(NMI, NGV, MI);
1142   }
1143   
1144   // The tricky aspect of this transformation is handling the case when malloc
1145   // fails.  In the original code, malloc failing would set the result pointer
1146   // of malloc to null.  In this case, some mallocs could succeed and others
1147   // could fail.  As such, we emit code that looks like this:
1148   //    F0 = malloc(field0)
1149   //    F1 = malloc(field1)
1150   //    F2 = malloc(field2)
1151   //    if (F0 == 0 || F1 == 0 || F2 == 0) {
1152   //      if (F0) { free(F0); F0 = 0; }
1153   //      if (F1) { free(F1); F1 = 0; }
1154   //      if (F2) { free(F2); F2 = 0; }
1155   //    }
1156   Value *RunningOr = 0;
1157   for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
1158     Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, FieldMallocs[i],
1159                              Constant::getNullValue(FieldMallocs[i]->getType()),
1160                                   "isnull", MI);
1161     if (!RunningOr)
1162       RunningOr = Cond;   // First seteq
1163     else
1164       RunningOr = BinaryOperator::createOr(RunningOr, Cond, "tmp", MI);
1165   }
1166
1167   // Split the basic block at the old malloc.
1168   BasicBlock *OrigBB = MI->getParent();
1169   BasicBlock *ContBB = OrigBB->splitBasicBlock(MI, "malloc_cont");
1170   
1171   // Create the block to check the first condition.  Put all these blocks at the
1172   // end of the function as they are unlikely to be executed.
1173   BasicBlock *NullPtrBlock = new BasicBlock("malloc_ret_null",
1174                                             OrigBB->getParent());
1175   
1176   // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1177   // branch on RunningOr.
1178   OrigBB->getTerminator()->eraseFromParent();
1179   new BranchInst(NullPtrBlock, ContBB, RunningOr, OrigBB);
1180   
1181   // Within the NullPtrBlock, we need to emit a comparison and branch for each
1182   // pointer, because some may be null while others are not.
1183   for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1184     Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
1185     Value *Cmp = new ICmpInst(ICmpInst::ICMP_NE, GVVal, 
1186                               Constant::getNullValue(GVVal->getType()),
1187                               "tmp", NullPtrBlock);
1188     BasicBlock *FreeBlock = new BasicBlock("free_it", OrigBB->getParent());
1189     BasicBlock *NextBlock = new BasicBlock("next", OrigBB->getParent());
1190     new BranchInst(FreeBlock, NextBlock, Cmp, NullPtrBlock);
1191
1192     // Fill in FreeBlock.
1193     new FreeInst(GVVal, FreeBlock);
1194     new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1195                   FreeBlock);
1196     new BranchInst(NextBlock, FreeBlock);
1197     
1198     NullPtrBlock = NextBlock;
1199   }
1200   
1201   new BranchInst(ContBB, NullPtrBlock);
1202   
1203   
1204   // MI is no longer needed, remove it.
1205   MI->eraseFromParent();
1206
1207   
1208   // Okay, the malloc site is completely handled.  All of the uses of GV are now
1209   // loads, and all uses of those loads are simple.  Rewrite them to use loads
1210   // of the per-field globals instead.
1211   while (!GV->use_empty()) {
1212     if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
1213       RewriteUsesOfLoadForHeapSRoA(LI, FieldGlobals);
1214       LI->eraseFromParent();
1215     } else {
1216       // Must be a store of null.
1217       StoreInst *SI = cast<StoreInst>(GV->use_back());
1218       assert(isa<Constant>(SI->getOperand(0)) &&
1219              cast<Constant>(SI->getOperand(0))->isNullValue() &&
1220              "Unexpected heap-sra user!");
1221       
1222       // Insert a store of null into each global.
1223       for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1224         Constant *Null = 
1225           Constant::getNullValue(FieldGlobals[i]->getType()->getElementType());
1226         new StoreInst(Null, FieldGlobals[i], SI);
1227       }
1228       // Erase the original store.
1229       SI->eraseFromParent();
1230     }
1231   }
1232
1233   // The old global is now dead, remove it.
1234   GV->eraseFromParent();
1235
1236   ++NumHeapSRA;
1237   return FieldGlobals[0];
1238 }
1239
1240
1241 // OptimizeOnceStoredGlobal - Try to optimize globals based on the knowledge
1242 // that only one value (besides its initializer) is ever stored to the global.
1243 static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
1244                                      Module::global_iterator &GVI,
1245                                      TargetData &TD) {
1246   if (CastInst *CI = dyn_cast<CastInst>(StoredOnceVal))
1247     StoredOnceVal = CI->getOperand(0);
1248   else if (GetElementPtrInst *GEPI =dyn_cast<GetElementPtrInst>(StoredOnceVal)){
1249     // "getelementptr Ptr, 0, 0, 0" is really just a cast.
1250     bool IsJustACast = true;
1251     for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
1252       if (!isa<Constant>(GEPI->getOperand(i)) ||
1253           !cast<Constant>(GEPI->getOperand(i))->isNullValue()) {
1254         IsJustACast = false;
1255         break;
1256       }
1257     if (IsJustACast)
1258       StoredOnceVal = GEPI->getOperand(0);
1259   }
1260
1261   // If we are dealing with a pointer global that is initialized to null and
1262   // only has one (non-null) value stored into it, then we can optimize any
1263   // users of the loaded value (often calls and loads) that would trap if the
1264   // value was null.
1265   if (isa<PointerType>(GV->getInitializer()->getType()) &&
1266       GV->getInitializer()->isNullValue()) {
1267     if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1268       if (GV->getInitializer()->getType() != SOVC->getType())
1269         SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
1270
1271       // Optimize away any trapping uses of the loaded value.
1272       if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC))
1273         return true;
1274     } else if (MallocInst *MI = dyn_cast<MallocInst>(StoredOnceVal)) {
1275       // If this is a malloc of an abstract type, don't touch it.
1276       if (!MI->getAllocatedType()->isSized())
1277         return false;
1278       
1279       // We can't optimize this global unless all uses of it are *known* to be
1280       // of the malloc value, not of the null initializer value (consider a use
1281       // that compares the global's value against zero to see if the malloc has
1282       // been reached).  To do this, we check to see if all uses of the global
1283       // would trap if the global were null: this proves that they must all
1284       // happen after the malloc.
1285       if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1286         return false;
1287
1288       // We can't optimize this if the malloc itself is used in a complex way,
1289       // for example, being stored into multiple globals.  This allows the
1290       // malloc to be stored into the specified global, loaded setcc'd, and
1291       // GEP'd.  These are all things we could transform to using the global
1292       // for.
1293       {
1294         SmallPtrSet<PHINode*, 8> PHIs;
1295         if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(MI, GV, PHIs))
1296           return false;
1297       }
1298
1299       
1300       // If we have a global that is only initialized with a fixed size malloc,
1301       // transform the program to use global memory instead of malloc'd memory.
1302       // This eliminates dynamic allocation, avoids an indirection accessing the
1303       // data, and exposes the resultant global to further GlobalOpt.
1304       if (ConstantInt *NElements = dyn_cast<ConstantInt>(MI->getArraySize())) {
1305         // Restrict this transformation to only working on small allocations
1306         // (2048 bytes currently), as we don't want to introduce a 16M global or
1307         // something.
1308         if (NElements->getZExtValue()*
1309                      TD.getABITypeSize(MI->getAllocatedType()) < 2048) {
1310           GVI = OptimizeGlobalAddressOfMalloc(GV, MI);
1311           return true;
1312         }
1313       }
1314
1315       // If the allocation is an array of structures, consider transforming this
1316       // into multiple malloc'd arrays, one for each field.  This is basically
1317       // SRoA for malloc'd memory.
1318       if (const StructType *AllocTy = 
1319                   dyn_cast<StructType>(MI->getAllocatedType())) {
1320         // This the structure has an unreasonable number of fields, leave it
1321         // alone.
1322         if (AllocTy->getNumElements() <= 16 && AllocTy->getNumElements() > 0 &&
1323             GlobalLoadUsesSimpleEnoughForHeapSRA(GV, MI)) {
1324           GVI = PerformHeapAllocSRoA(GV, MI);
1325           return true;
1326         }
1327       }
1328     }
1329   }
1330
1331   return false;
1332 }
1333
1334 /// TryToShrinkGlobalToBoolean - At this point, we have learned that the only
1335 /// two values ever stored into GV are its initializer and OtherVal.  See if we
1336 /// can shrink the global into a boolean and select between the two values
1337 /// whenever it is used.  This exposes the values to other scalar optimizations.
1338 static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1339   const Type *GVElType = GV->getType()->getElementType();
1340   
1341   // If GVElType is already i1, it is already shrunk.  If the type of the GV is
1342   // an FP value or vector, don't do this optimization because a select between
1343   // them is very expensive and unlikely to lead to later simplification.
1344   if (GVElType == Type::Int1Ty || GVElType->isFloatingPoint() ||
1345       isa<VectorType>(GVElType))
1346     return false;
1347   
1348   // Walk the use list of the global seeing if all the uses are load or store.
1349   // If there is anything else, bail out.
1350   for (Value::use_iterator I = GV->use_begin(), E = GV->use_end(); I != E; ++I)
1351     if (!isa<LoadInst>(I) && !isa<StoreInst>(I))
1352       return false;
1353   
1354   DOUT << "   *** SHRINKING TO BOOL: " << *GV;
1355   
1356   // Create the new global, initializing it to false.
1357   GlobalVariable *NewGV = new GlobalVariable(Type::Int1Ty, false,
1358          GlobalValue::InternalLinkage, ConstantInt::getFalse(),
1359                                              GV->getName()+".b",
1360                                              (Module *)NULL,
1361                                              GV->isThreadLocal());
1362   GV->getParent()->getGlobalList().insert(GV, NewGV);
1363
1364   Constant *InitVal = GV->getInitializer();
1365   assert(InitVal->getType() != Type::Int1Ty && "No reason to shrink to bool!");
1366
1367   // If initialized to zero and storing one into the global, we can use a cast
1368   // instead of a select to synthesize the desired value.
1369   bool IsOneZero = false;
1370   if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1371     IsOneZero = InitVal->isNullValue() && CI->isOne();
1372
1373   while (!GV->use_empty()) {
1374     Instruction *UI = cast<Instruction>(GV->use_back());
1375     if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1376       // Change the store into a boolean store.
1377       bool StoringOther = SI->getOperand(0) == OtherVal;
1378       // Only do this if we weren't storing a loaded value.
1379       Value *StoreVal;
1380       if (StoringOther || SI->getOperand(0) == InitVal)
1381         StoreVal = ConstantInt::get(Type::Int1Ty, StoringOther);
1382       else {
1383         // Otherwise, we are storing a previously loaded copy.  To do this,
1384         // change the copy from copying the original value to just copying the
1385         // bool.
1386         Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1387
1388         // If we're already replaced the input, StoredVal will be a cast or
1389         // select instruction.  If not, it will be a load of the original
1390         // global.
1391         if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1392           assert(LI->getOperand(0) == GV && "Not a copy!");
1393           // Insert a new load, to preserve the saved value.
1394           StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI);
1395         } else {
1396           assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1397                  "This is not a form that we understand!");
1398           StoreVal = StoredVal->getOperand(0);
1399           assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1400         }
1401       }
1402       new StoreInst(StoreVal, NewGV, SI);
1403     } else {
1404       // Change the load into a load of bool then a select.
1405       LoadInst *LI = cast<LoadInst>(UI);
1406       LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", LI);
1407       Value *NSI;
1408       if (IsOneZero)
1409         NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1410       else
1411         NSI = new SelectInst(NLI, OtherVal, InitVal, "", LI);
1412       NSI->takeName(LI);
1413       LI->replaceAllUsesWith(NSI);
1414     }
1415     UI->eraseFromParent();
1416   }
1417
1418   GV->eraseFromParent();
1419   return true;
1420 }
1421
1422
1423 /// ProcessInternalGlobal - Analyze the specified global variable and optimize
1424 /// it if possible.  If we make a change, return true.
1425 bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
1426                                       Module::global_iterator &GVI) {
1427   std::set<PHINode*> PHIUsers;
1428   GlobalStatus GS;
1429   GV->removeDeadConstantUsers();
1430
1431   if (GV->use_empty()) {
1432     DOUT << "GLOBAL DEAD: " << *GV;
1433     GV->eraseFromParent();
1434     ++NumDeleted;
1435     return true;
1436   }
1437
1438   if (!AnalyzeGlobal(GV, GS, PHIUsers)) {
1439 #if 0
1440     cerr << "Global: " << *GV;
1441     cerr << "  isLoaded = " << GS.isLoaded << "\n";
1442     cerr << "  StoredType = ";
1443     switch (GS.StoredType) {
1444     case GlobalStatus::NotStored: cerr << "NEVER STORED\n"; break;
1445     case GlobalStatus::isInitializerStored: cerr << "INIT STORED\n"; break;
1446     case GlobalStatus::isStoredOnce: cerr << "STORED ONCE\n"; break;
1447     case GlobalStatus::isStored: cerr << "stored\n"; break;
1448     }
1449     if (GS.StoredType == GlobalStatus::isStoredOnce && GS.StoredOnceValue)
1450       cerr << "  StoredOnceValue = " << *GS.StoredOnceValue << "\n";
1451     if (GS.AccessingFunction && !GS.HasMultipleAccessingFunctions)
1452       cerr << "  AccessingFunction = " << GS.AccessingFunction->getName()
1453                 << "\n";
1454     cerr << "  HasMultipleAccessingFunctions =  "
1455               << GS.HasMultipleAccessingFunctions << "\n";
1456     cerr << "  HasNonInstructionUser = " << GS.HasNonInstructionUser<<"\n";
1457     cerr << "  isNotSuitableForSRA = " << GS.isNotSuitableForSRA << "\n";
1458     cerr << "\n";
1459 #endif
1460     
1461     // If this is a first class global and has only one accessing function
1462     // and this function is main (which we know is not recursive we can make
1463     // this global a local variable) we replace the global with a local alloca
1464     // in this function.
1465     //
1466     // NOTE: It doesn't make sense to promote non first class types since we
1467     // are just replacing static memory to stack memory.
1468     if (!GS.HasMultipleAccessingFunctions &&
1469         GS.AccessingFunction && !GS.HasNonInstructionUser &&
1470         GV->getType()->getElementType()->isFirstClassType() &&
1471         GS.AccessingFunction->getName() == "main" &&
1472         GS.AccessingFunction->hasExternalLinkage()) {
1473       DOUT << "LOCALIZING GLOBAL: " << *GV;
1474       Instruction* FirstI = GS.AccessingFunction->getEntryBlock().begin();
1475       const Type* ElemTy = GV->getType()->getElementType();
1476       // FIXME: Pass Global's alignment when globals have alignment
1477       AllocaInst* Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), FirstI);
1478       if (!isa<UndefValue>(GV->getInitializer()))
1479         new StoreInst(GV->getInitializer(), Alloca, FirstI);
1480
1481       GV->replaceAllUsesWith(Alloca);
1482       GV->eraseFromParent();
1483       ++NumLocalized;
1484       return true;
1485     }
1486     
1487     // If the global is never loaded (but may be stored to), it is dead.
1488     // Delete it now.
1489     if (!GS.isLoaded) {
1490       DOUT << "GLOBAL NEVER LOADED: " << *GV;
1491
1492       // Delete any stores we can find to the global.  We may not be able to
1493       // make it completely dead though.
1494       bool Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer());
1495
1496       // If the global is dead now, delete it.
1497       if (GV->use_empty()) {
1498         GV->eraseFromParent();
1499         ++NumDeleted;
1500         Changed = true;
1501       }
1502       return Changed;
1503
1504     } else if (GS.StoredType <= GlobalStatus::isInitializerStored) {
1505       DOUT << "MARKING CONSTANT: " << *GV;
1506       GV->setConstant(true);
1507
1508       // Clean up any obviously simplifiable users now.
1509       CleanupConstantGlobalUsers(GV, GV->getInitializer());
1510
1511       // If the global is dead now, just nuke it.
1512       if (GV->use_empty()) {
1513         DOUT << "   *** Marking constant allowed us to simplify "
1514              << "all users and delete global!\n";
1515         GV->eraseFromParent();
1516         ++NumDeleted;
1517       }
1518
1519       ++NumMarked;
1520       return true;
1521     } else if (!GV->getInitializer()->getType()->isFirstClassType()) {
1522       if (GlobalVariable *FirstNewGV = SRAGlobal(GV)) {
1523         GVI = FirstNewGV;  // Don't skip the newly produced globals!
1524         return true;
1525       }
1526     } else if (GS.StoredType == GlobalStatus::isStoredOnce) {
1527       // If the initial value for the global was an undef value, and if only
1528       // one other value was stored into it, we can just change the
1529       // initializer to be an undef value, then delete all stores to the
1530       // global.  This allows us to mark it constant.
1531       if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1532         if (isa<UndefValue>(GV->getInitializer())) {
1533           // Change the initial value here.
1534           GV->setInitializer(SOVConstant);
1535
1536           // Clean up any obviously simplifiable users now.
1537           CleanupConstantGlobalUsers(GV, GV->getInitializer());
1538
1539           if (GV->use_empty()) {
1540             DOUT << "   *** Substituting initializer allowed us to "
1541                  << "simplify all users and delete global!\n";
1542             GV->eraseFromParent();
1543             ++NumDeleted;
1544           } else {
1545             GVI = GV;
1546           }
1547           ++NumSubstitute;
1548           return true;
1549         }
1550
1551       // Try to optimize globals based on the knowledge that only one value
1552       // (besides its initializer) is ever stored to the global.
1553       if (OptimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GVI,
1554                                    getAnalysis<TargetData>()))
1555         return true;
1556
1557       // Otherwise, if the global was not a boolean, we can shrink it to be a
1558       // boolean.
1559       if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1560         if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
1561           ++NumShrunkToBool;
1562           return true;
1563         }
1564     }
1565   }
1566   return false;
1567 }
1568
1569 /// OnlyCalledDirectly - Return true if the specified function is only called
1570 /// directly.  In other words, its address is never taken.
1571 static bool OnlyCalledDirectly(Function *F) {
1572   for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1573     Instruction *User = dyn_cast<Instruction>(*UI);
1574     if (!User) return false;
1575     if (!isa<CallInst>(User) && !isa<InvokeInst>(User)) return false;
1576
1577     // See if the function address is passed as an argument.
1578     for (unsigned i = 1, e = User->getNumOperands(); i != e; ++i)
1579       if (User->getOperand(i) == F) return false;
1580   }
1581   return true;
1582 }
1583
1584 /// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
1585 /// function, changing them to FastCC.
1586 static void ChangeCalleesToFastCall(Function *F) {
1587   for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1588     Instruction *User = cast<Instruction>(*UI);
1589     if (CallInst *CI = dyn_cast<CallInst>(User))
1590       CI->setCallingConv(CallingConv::Fast);
1591     else
1592       cast<InvokeInst>(User)->setCallingConv(CallingConv::Fast);
1593   }
1594 }
1595
1596 bool GlobalOpt::OptimizeFunctions(Module &M) {
1597   bool Changed = false;
1598   // Optimize functions.
1599   for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
1600     Function *F = FI++;
1601     F->removeDeadConstantUsers();
1602     if (F->use_empty() && (F->hasInternalLinkage() ||
1603                            F->hasLinkOnceLinkage())) {
1604       M.getFunctionList().erase(F);
1605       Changed = true;
1606       ++NumFnDeleted;
1607     } else if (F->hasInternalLinkage() &&
1608                F->getCallingConv() == CallingConv::C &&  !F->isVarArg() &&
1609                OnlyCalledDirectly(F)) {
1610       // If this function has C calling conventions, is not a varargs
1611       // function, and is only called directly, promote it to use the Fast
1612       // calling convention.
1613       F->setCallingConv(CallingConv::Fast);
1614       ChangeCalleesToFastCall(F);
1615       ++NumFastCallFns;
1616       Changed = true;
1617     }
1618   }
1619   return Changed;
1620 }
1621
1622 bool GlobalOpt::OptimizeGlobalVars(Module &M) {
1623   bool Changed = false;
1624   for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
1625        GVI != E; ) {
1626     GlobalVariable *GV = GVI++;
1627     if (!GV->isConstant() && GV->hasInternalLinkage() &&
1628         GV->hasInitializer())
1629       Changed |= ProcessInternalGlobal(GV, GVI);
1630   }
1631   return Changed;
1632 }
1633
1634 /// FindGlobalCtors - Find the llvm.globalctors list, verifying that all
1635 /// initializers have an init priority of 65535.
1636 GlobalVariable *GlobalOpt::FindGlobalCtors(Module &M) {
1637   for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1638        I != E; ++I)
1639     if (I->getName() == "llvm.global_ctors") {
1640       // Found it, verify it's an array of { int, void()* }.
1641       const ArrayType *ATy =dyn_cast<ArrayType>(I->getType()->getElementType());
1642       if (!ATy) return 0;
1643       const StructType *STy = dyn_cast<StructType>(ATy->getElementType());
1644       if (!STy || STy->getNumElements() != 2 ||
1645           STy->getElementType(0) != Type::Int32Ty) return 0;
1646       const PointerType *PFTy = dyn_cast<PointerType>(STy->getElementType(1));
1647       if (!PFTy) return 0;
1648       const FunctionType *FTy = dyn_cast<FunctionType>(PFTy->getElementType());
1649       if (!FTy || FTy->getReturnType() != Type::VoidTy || FTy->isVarArg() ||
1650           FTy->getNumParams() != 0)
1651         return 0;
1652       
1653       // Verify that the initializer is simple enough for us to handle.
1654       if (!I->hasInitializer()) return 0;
1655       ConstantArray *CA = dyn_cast<ConstantArray>(I->getInitializer());
1656       if (!CA) return 0;
1657       for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1658         if (ConstantStruct *CS = dyn_cast<ConstantStruct>(CA->getOperand(i))) {
1659           if (isa<ConstantPointerNull>(CS->getOperand(1)))
1660             continue;
1661
1662           // Must have a function or null ptr.
1663           if (!isa<Function>(CS->getOperand(1)))
1664             return 0;
1665           
1666           // Init priority must be standard.
1667           ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
1668           if (!CI || CI->getZExtValue() != 65535)
1669             return 0;
1670         } else {
1671           return 0;
1672         }
1673       
1674       return I;
1675     }
1676   return 0;
1677 }
1678
1679 /// ParseGlobalCtors - Given a llvm.global_ctors list that we can understand,
1680 /// return a list of the functions and null terminator as a vector.
1681 static std::vector<Function*> ParseGlobalCtors(GlobalVariable *GV) {
1682   ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1683   std::vector<Function*> Result;
1684   Result.reserve(CA->getNumOperands());
1685   for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) {
1686     ConstantStruct *CS = cast<ConstantStruct>(CA->getOperand(i));
1687     Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
1688   }
1689   return Result;
1690 }
1691
1692 /// InstallGlobalCtors - Given a specified llvm.global_ctors list, install the
1693 /// specified array, returning the new global to use.
1694 static GlobalVariable *InstallGlobalCtors(GlobalVariable *GCL, 
1695                                           const std::vector<Function*> &Ctors) {
1696   // If we made a change, reassemble the initializer list.
1697   std::vector<Constant*> CSVals;
1698   CSVals.push_back(ConstantInt::get(Type::Int32Ty, 65535));
1699   CSVals.push_back(0);
1700   
1701   // Create the new init list.
1702   std::vector<Constant*> CAList;
1703   for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
1704     if (Ctors[i]) {
1705       CSVals[1] = Ctors[i];
1706     } else {
1707       const Type *FTy = FunctionType::get(Type::VoidTy,
1708                                           std::vector<const Type*>(), false);
1709       const PointerType *PFTy = PointerType::getUnqual(FTy);
1710       CSVals[1] = Constant::getNullValue(PFTy);
1711       CSVals[0] = ConstantInt::get(Type::Int32Ty, 2147483647);
1712     }
1713     CAList.push_back(ConstantStruct::get(CSVals));
1714   }
1715   
1716   // Create the array initializer.
1717   const Type *StructTy =
1718     cast<ArrayType>(GCL->getType()->getElementType())->getElementType();
1719   Constant *CA = ConstantArray::get(ArrayType::get(StructTy, CAList.size()),
1720                                     CAList);
1721   
1722   // If we didn't change the number of elements, don't create a new GV.
1723   if (CA->getType() == GCL->getInitializer()->getType()) {
1724     GCL->setInitializer(CA);
1725     return GCL;
1726   }
1727   
1728   // Create the new global and insert it next to the existing list.
1729   GlobalVariable *NGV = new GlobalVariable(CA->getType(), GCL->isConstant(),
1730                                            GCL->getLinkage(), CA, "",
1731                                            (Module *)NULL,
1732                                            GCL->isThreadLocal());
1733   GCL->getParent()->getGlobalList().insert(GCL, NGV);
1734   NGV->takeName(GCL);
1735   
1736   // Nuke the old list, replacing any uses with the new one.
1737   if (!GCL->use_empty()) {
1738     Constant *V = NGV;
1739     if (V->getType() != GCL->getType())
1740       V = ConstantExpr::getBitCast(V, GCL->getType());
1741     GCL->replaceAllUsesWith(V);
1742   }
1743   GCL->eraseFromParent();
1744   
1745   if (Ctors.size())
1746     return NGV;
1747   else
1748     return 0;
1749 }
1750
1751
1752 static Constant *getVal(std::map<Value*, Constant*> &ComputedValues,
1753                         Value *V) {
1754   if (Constant *CV = dyn_cast<Constant>(V)) return CV;
1755   Constant *R = ComputedValues[V];
1756   assert(R && "Reference to an uncomputed value!");
1757   return R;
1758 }
1759
1760 /// isSimpleEnoughPointerToCommit - Return true if this constant is simple
1761 /// enough for us to understand.  In particular, if it is a cast of something,
1762 /// we punt.  We basically just support direct accesses to globals and GEP's of
1763 /// globals.  This should be kept up to date with CommitValueTo.
1764 static bool isSimpleEnoughPointerToCommit(Constant *C) {
1765   if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
1766     if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
1767       return false;  // do not allow weak/linkonce/dllimport/dllexport linkage.
1768     return !GV->isDeclaration();  // reject external globals.
1769   }
1770   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
1771     // Handle a constantexpr gep.
1772     if (CE->getOpcode() == Instruction::GetElementPtr &&
1773         isa<GlobalVariable>(CE->getOperand(0))) {
1774       GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1775       if (!GV->hasExternalLinkage() && !GV->hasInternalLinkage())
1776         return false;  // do not allow weak/linkonce/dllimport/dllexport linkage.
1777       return GV->hasInitializer() &&
1778              ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1779     }
1780   return false;
1781 }
1782
1783 /// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
1784 /// initializer.  This returns 'Init' modified to reflect 'Val' stored into it.
1785 /// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
1786 static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
1787                                    ConstantExpr *Addr, unsigned OpNo) {
1788   // Base case of the recursion.
1789   if (OpNo == Addr->getNumOperands()) {
1790     assert(Val->getType() == Init->getType() && "Type mismatch!");
1791     return Val;
1792   }
1793   
1794   if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
1795     std::vector<Constant*> Elts;
1796
1797     // Break up the constant into its elements.
1798     if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
1799       for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
1800         Elts.push_back(CS->getOperand(i));
1801     } else if (isa<ConstantAggregateZero>(Init)) {
1802       for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1803         Elts.push_back(Constant::getNullValue(STy->getElementType(i)));
1804     } else if (isa<UndefValue>(Init)) {
1805       for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1806         Elts.push_back(UndefValue::get(STy->getElementType(i)));
1807     } else {
1808       assert(0 && "This code is out of sync with "
1809              " ConstantFoldLoadThroughGEPConstantExpr");
1810     }
1811     
1812     // Replace the element that we are supposed to.
1813     ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
1814     unsigned Idx = CU->getZExtValue();
1815     assert(Idx < STy->getNumElements() && "Struct index out of range!");
1816     Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
1817     
1818     // Return the modified struct.
1819     return ConstantStruct::get(&Elts[0], Elts.size(), STy->isPacked());
1820   } else {
1821     ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
1822     const ArrayType *ATy = cast<ArrayType>(Init->getType());
1823
1824     // Break up the array into elements.
1825     std::vector<Constant*> Elts;
1826     if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
1827       for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1828         Elts.push_back(CA->getOperand(i));
1829     } else if (isa<ConstantAggregateZero>(Init)) {
1830       Constant *Elt = Constant::getNullValue(ATy->getElementType());
1831       Elts.assign(ATy->getNumElements(), Elt);
1832     } else if (isa<UndefValue>(Init)) {
1833       Constant *Elt = UndefValue::get(ATy->getElementType());
1834       Elts.assign(ATy->getNumElements(), Elt);
1835     } else {
1836       assert(0 && "This code is out of sync with "
1837              " ConstantFoldLoadThroughGEPConstantExpr");
1838     }
1839     
1840     assert(CI->getZExtValue() < ATy->getNumElements());
1841     Elts[CI->getZExtValue()] =
1842       EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
1843     return ConstantArray::get(ATy, Elts);
1844   }    
1845 }
1846
1847 /// CommitValueTo - We have decided that Addr (which satisfies the predicate
1848 /// isSimpleEnoughPointerToCommit) should get Val as its value.  Make it happen.
1849 static void CommitValueTo(Constant *Val, Constant *Addr) {
1850   if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
1851     assert(GV->hasInitializer());
1852     GV->setInitializer(Val);
1853     return;
1854   }
1855   
1856   ConstantExpr *CE = cast<ConstantExpr>(Addr);
1857   GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1858   
1859   Constant *Init = GV->getInitializer();
1860   Init = EvaluateStoreInto(Init, Val, CE, 2);
1861   GV->setInitializer(Init);
1862 }
1863
1864 /// ComputeLoadResult - Return the value that would be computed by a load from
1865 /// P after the stores reflected by 'memory' have been performed.  If we can't
1866 /// decide, return null.
1867 static Constant *ComputeLoadResult(Constant *P,
1868                                 const std::map<Constant*, Constant*> &Memory) {
1869   // If this memory location has been recently stored, use the stored value: it
1870   // is the most up-to-date.
1871   std::map<Constant*, Constant*>::const_iterator I = Memory.find(P);
1872   if (I != Memory.end()) return I->second;
1873  
1874   // Access it.
1875   if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
1876     if (GV->hasInitializer())
1877       return GV->getInitializer();
1878     return 0;
1879   }
1880   
1881   // Handle a constantexpr getelementptr.
1882   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
1883     if (CE->getOpcode() == Instruction::GetElementPtr &&
1884         isa<GlobalVariable>(CE->getOperand(0))) {
1885       GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
1886       if (GV->hasInitializer())
1887         return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
1888     }
1889
1890   return 0;  // don't know how to evaluate.
1891 }
1892
1893 /// EvaluateFunction - Evaluate a call to function F, returning true if
1894 /// successful, false if we can't evaluate it.  ActualArgs contains the formal
1895 /// arguments for the function.
1896 static bool EvaluateFunction(Function *F, Constant *&RetVal,
1897                              const std::vector<Constant*> &ActualArgs,
1898                              std::vector<Function*> &CallStack,
1899                              std::map<Constant*, Constant*> &MutatedMemory,
1900                              std::vector<GlobalVariable*> &AllocaTmps) {
1901   // Check to see if this function is already executing (recursion).  If so,
1902   // bail out.  TODO: we might want to accept limited recursion.
1903   if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
1904     return false;
1905   
1906   CallStack.push_back(F);
1907   
1908   /// Values - As we compute SSA register values, we store their contents here.
1909   std::map<Value*, Constant*> Values;
1910   
1911   // Initialize arguments to the incoming values specified.
1912   unsigned ArgNo = 0;
1913   for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
1914        ++AI, ++ArgNo)
1915     Values[AI] = ActualArgs[ArgNo];
1916
1917   /// ExecutedBlocks - We only handle non-looping, non-recursive code.  As such,
1918   /// we can only evaluate any one basic block at most once.  This set keeps
1919   /// track of what we have executed so we can detect recursive cases etc.
1920   std::set<BasicBlock*> ExecutedBlocks;
1921   
1922   // CurInst - The current instruction we're evaluating.
1923   BasicBlock::iterator CurInst = F->begin()->begin();
1924   
1925   // This is the main evaluation loop.
1926   while (1) {
1927     Constant *InstResult = 0;
1928     
1929     if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
1930       if (SI->isVolatile()) return false;  // no volatile accesses.
1931       Constant *Ptr = getVal(Values, SI->getOperand(1));
1932       if (!isSimpleEnoughPointerToCommit(Ptr))
1933         // If this is too complex for us to commit, reject it.
1934         return false;
1935       Constant *Val = getVal(Values, SI->getOperand(0));
1936       MutatedMemory[Ptr] = Val;
1937     } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
1938       InstResult = ConstantExpr::get(BO->getOpcode(),
1939                                      getVal(Values, BO->getOperand(0)),
1940                                      getVal(Values, BO->getOperand(1)));
1941     } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
1942       InstResult = ConstantExpr::getCompare(CI->getPredicate(),
1943                                             getVal(Values, CI->getOperand(0)),
1944                                             getVal(Values, CI->getOperand(1)));
1945     } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
1946       InstResult = ConstantExpr::getCast(CI->getOpcode(),
1947                                          getVal(Values, CI->getOperand(0)),
1948                                          CI->getType());
1949     } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
1950       InstResult = ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)),
1951                                            getVal(Values, SI->getOperand(1)),
1952                                            getVal(Values, SI->getOperand(2)));
1953     } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
1954       Constant *P = getVal(Values, GEP->getOperand(0));
1955       SmallVector<Constant*, 8> GEPOps;
1956       for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
1957         GEPOps.push_back(getVal(Values, GEP->getOperand(i)));
1958       InstResult = ConstantExpr::getGetElementPtr(P, &GEPOps[0], GEPOps.size());
1959     } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
1960       if (LI->isVolatile()) return false;  // no volatile accesses.
1961       InstResult = ComputeLoadResult(getVal(Values, LI->getOperand(0)),
1962                                      MutatedMemory);
1963       if (InstResult == 0) return false; // Could not evaluate load.
1964     } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
1965       if (AI->isArrayAllocation()) return false;  // Cannot handle array allocs.
1966       const Type *Ty = AI->getType()->getElementType();
1967       AllocaTmps.push_back(new GlobalVariable(Ty, false,
1968                                               GlobalValue::InternalLinkage,
1969                                               UndefValue::get(Ty),
1970                                               AI->getName()));
1971       InstResult = AllocaTmps.back();     
1972     } else if (CallInst *CI = dyn_cast<CallInst>(CurInst)) {
1973       // Cannot handle inline asm.
1974       if (isa<InlineAsm>(CI->getOperand(0))) return false;
1975
1976       // Resolve function pointers.
1977       Function *Callee = dyn_cast<Function>(getVal(Values, CI->getOperand(0)));
1978       if (!Callee) return false;  // Cannot resolve.
1979
1980       std::vector<Constant*> Formals;
1981       for (unsigned i = 1, e = CI->getNumOperands(); i != e; ++i)
1982         Formals.push_back(getVal(Values, CI->getOperand(i)));
1983       
1984       if (Callee->isDeclaration()) {
1985         // If this is a function we can constant fold, do it.
1986         if (Constant *C = ConstantFoldCall(Callee, &Formals[0],
1987                                            Formals.size())) {
1988           InstResult = C;
1989         } else {
1990           return false;
1991         }
1992       } else {
1993         if (Callee->getFunctionType()->isVarArg())
1994           return false;
1995         
1996         Constant *RetVal;
1997         
1998         // Execute the call, if successful, use the return value.
1999         if (!EvaluateFunction(Callee, RetVal, Formals, CallStack,
2000                               MutatedMemory, AllocaTmps))
2001           return false;
2002         InstResult = RetVal;
2003       }
2004     } else if (isa<TerminatorInst>(CurInst)) {
2005       BasicBlock *NewBB = 0;
2006       if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
2007         if (BI->isUnconditional()) {
2008           NewBB = BI->getSuccessor(0);
2009         } else {
2010           ConstantInt *Cond =
2011             dyn_cast<ConstantInt>(getVal(Values, BI->getCondition()));
2012           if (!Cond) return false;  // Cannot determine.
2013
2014           NewBB = BI->getSuccessor(!Cond->getZExtValue());          
2015         }
2016       } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
2017         ConstantInt *Val =
2018           dyn_cast<ConstantInt>(getVal(Values, SI->getCondition()));
2019         if (!Val) return false;  // Cannot determine.
2020         NewBB = SI->getSuccessor(SI->findCaseValue(Val));
2021       } else if (ReturnInst *RI = dyn_cast<ReturnInst>(CurInst)) {
2022         if (RI->getNumOperands())
2023           RetVal = getVal(Values, RI->getOperand(0));
2024         
2025         CallStack.pop_back();  // return from fn.
2026         return true;  // We succeeded at evaluating this ctor!
2027       } else {
2028         // invoke, unwind, unreachable.
2029         return false;  // Cannot handle this terminator.
2030       }
2031       
2032       // Okay, we succeeded in evaluating this control flow.  See if we have
2033       // executed the new block before.  If so, we have a looping function,
2034       // which we cannot evaluate in reasonable time.
2035       if (!ExecutedBlocks.insert(NewBB).second)
2036         return false;  // looped!
2037       
2038       // Okay, we have never been in this block before.  Check to see if there
2039       // are any PHI nodes.  If so, evaluate them with information about where
2040       // we came from.
2041       BasicBlock *OldBB = CurInst->getParent();
2042       CurInst = NewBB->begin();
2043       PHINode *PN;
2044       for (; (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
2045         Values[PN] = getVal(Values, PN->getIncomingValueForBlock(OldBB));
2046
2047       // Do NOT increment CurInst.  We know that the terminator had no value.
2048       continue;
2049     } else {
2050       // Did not know how to evaluate this!
2051       return false;
2052     }
2053     
2054     if (!CurInst->use_empty())
2055       Values[CurInst] = InstResult;
2056     
2057     // Advance program counter.
2058     ++CurInst;
2059   }
2060 }
2061
2062 /// EvaluateStaticConstructor - Evaluate static constructors in the function, if
2063 /// we can.  Return true if we can, false otherwise.
2064 static bool EvaluateStaticConstructor(Function *F) {
2065   /// MutatedMemory - For each store we execute, we update this map.  Loads
2066   /// check this to get the most up-to-date value.  If evaluation is successful,
2067   /// this state is committed to the process.
2068   std::map<Constant*, Constant*> MutatedMemory;
2069
2070   /// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
2071   /// to represent its body.  This vector is needed so we can delete the
2072   /// temporary globals when we are done.
2073   std::vector<GlobalVariable*> AllocaTmps;
2074   
2075   /// CallStack - This is used to detect recursion.  In pathological situations
2076   /// we could hit exponential behavior, but at least there is nothing
2077   /// unbounded.
2078   std::vector<Function*> CallStack;
2079
2080   // Call the function.
2081   Constant *RetValDummy;
2082   bool EvalSuccess = EvaluateFunction(F, RetValDummy, std::vector<Constant*>(),
2083                                        CallStack, MutatedMemory, AllocaTmps);
2084   if (EvalSuccess) {
2085     // We succeeded at evaluation: commit the result.
2086     DOUT << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
2087          << F->getName() << "' to " << MutatedMemory.size()
2088          << " stores.\n";
2089     for (std::map<Constant*, Constant*>::iterator I = MutatedMemory.begin(),
2090          E = MutatedMemory.end(); I != E; ++I)
2091       CommitValueTo(I->second, I->first);
2092   }
2093   
2094   // At this point, we are done interpreting.  If we created any 'alloca'
2095   // temporaries, release them now.
2096   while (!AllocaTmps.empty()) {
2097     GlobalVariable *Tmp = AllocaTmps.back();
2098     AllocaTmps.pop_back();
2099     
2100     // If there are still users of the alloca, the program is doing something
2101     // silly, e.g. storing the address of the alloca somewhere and using it
2102     // later.  Since this is undefined, we'll just make it be null.
2103     if (!Tmp->use_empty())
2104       Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
2105     delete Tmp;
2106   }
2107   
2108   return EvalSuccess;
2109 }
2110
2111
2112
2113 /// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
2114 /// Return true if anything changed.
2115 bool GlobalOpt::OptimizeGlobalCtorsList(GlobalVariable *&GCL) {
2116   std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
2117   bool MadeChange = false;
2118   if (Ctors.empty()) return false;
2119   
2120   // Loop over global ctors, optimizing them when we can.
2121   for (unsigned i = 0; i != Ctors.size(); ++i) {
2122     Function *F = Ctors[i];
2123     // Found a null terminator in the middle of the list, prune off the rest of
2124     // the list.
2125     if (F == 0) {
2126       if (i != Ctors.size()-1) {
2127         Ctors.resize(i+1);
2128         MadeChange = true;
2129       }
2130       break;
2131     }
2132     
2133     // We cannot simplify external ctor functions.
2134     if (F->empty()) continue;
2135     
2136     // If we can evaluate the ctor at compile time, do.
2137     if (EvaluateStaticConstructor(F)) {
2138       Ctors.erase(Ctors.begin()+i);
2139       MadeChange = true;
2140       --i;
2141       ++NumCtorsEvaluated;
2142       continue;
2143     }
2144   }
2145   
2146   if (!MadeChange) return false;
2147   
2148   GCL = InstallGlobalCtors(GCL, Ctors);
2149   return true;
2150 }
2151
2152
2153 bool GlobalOpt::runOnModule(Module &M) {
2154   bool Changed = false;
2155   
2156   // Try to find the llvm.globalctors list.
2157   GlobalVariable *GlobalCtors = FindGlobalCtors(M);
2158
2159   bool LocalChange = true;
2160   while (LocalChange) {
2161     LocalChange = false;
2162     
2163     // Delete functions that are trivially dead, ccc -> fastcc
2164     LocalChange |= OptimizeFunctions(M);
2165     
2166     // Optimize global_ctors list.
2167     if (GlobalCtors)
2168       LocalChange |= OptimizeGlobalCtorsList(GlobalCtors);
2169     
2170     // Optimize non-address-taken globals.
2171     LocalChange |= OptimizeGlobalVars(M);
2172     Changed |= LocalChange;
2173   }
2174   
2175   // TODO: Move all global ctors functions to the end of the module for code
2176   // layout.
2177   
2178   return Changed;
2179 }