ab9d30da4737b4ecd55034fd73b7806de76aeab4
[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/ADT/DenseMap.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/ADT/SmallPtrSet.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/Statistic.h"
23 #include "llvm/Analysis/ConstantFolding.h"
24 #include "llvm/Analysis/MemoryBuiltins.h"
25 #include "llvm/IR/CallingConv.h"
26 #include "llvm/IR/Constants.h"
27 #include "llvm/IR/DataLayout.h"
28 #include "llvm/IR/DerivedTypes.h"
29 #include "llvm/IR/Instructions.h"
30 #include "llvm/IR/IntrinsicInst.h"
31 #include "llvm/IR/Module.h"
32 #include "llvm/IR/Operator.h"
33 #include "llvm/Pass.h"
34 #include "llvm/Support/CallSite.h"
35 #include "llvm/Support/Debug.h"
36 #include "llvm/Support/ErrorHandling.h"
37 #include "llvm/Support/GetElementPtrTypeIterator.h"
38 #include "llvm/Support/MathExtras.h"
39 #include "llvm/Support/raw_ostream.h"
40 #include "llvm/Target/TargetLibraryInfo.h"
41 #include "llvm/Transforms/Utils/ModuleUtils.h"
42 #include <algorithm>
43 using namespace llvm;
44
45 STATISTIC(NumMarked    , "Number of globals marked constant");
46 STATISTIC(NumUnnamed   , "Number of globals marked unnamed_addr");
47 STATISTIC(NumSRA       , "Number of aggregate globals broken into scalars");
48 STATISTIC(NumHeapSRA   , "Number of heap objects SRA'd");
49 STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
50 STATISTIC(NumDeleted   , "Number of globals deleted");
51 STATISTIC(NumFnDeleted , "Number of functions deleted");
52 STATISTIC(NumGlobUses  , "Number of global uses devirtualized");
53 STATISTIC(NumLocalized , "Number of globals localized");
54 STATISTIC(NumShrunkToBool  , "Number of global vars shrunk to booleans");
55 STATISTIC(NumFastCallFns   , "Number of functions converted to fastcc");
56 STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
57 STATISTIC(NumNestRemoved   , "Number of nest attributes removed");
58 STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
59 STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
60 STATISTIC(NumCXXDtorsRemoved, "Number of global C++ destructors removed");
61
62 namespace {
63   struct GlobalStatus;
64   struct GlobalOpt : public ModulePass {
65     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
66       AU.addRequired<TargetLibraryInfo>();
67     }
68     static char ID; // Pass identification, replacement for typeid
69     GlobalOpt() : ModulePass(ID) {
70       initializeGlobalOptPass(*PassRegistry::getPassRegistry());
71     }
72
73     bool runOnModule(Module &M);
74
75   private:
76     GlobalVariable *FindGlobalCtors(Module &M);
77     bool OptimizeFunctions(Module &M);
78     bool OptimizeGlobalVars(Module &M);
79     bool OptimizeGlobalAliases(Module &M);
80     bool OptimizeGlobalCtorsList(GlobalVariable *&GCL);
81     bool ProcessGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
82     bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI,
83                                const SmallPtrSet<const PHINode*, 16> &PHIUsers,
84                                const GlobalStatus &GS);
85     bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn);
86
87     DataLayout *TD;
88     TargetLibraryInfo *TLI;
89   };
90 }
91
92 char GlobalOpt::ID = 0;
93 INITIALIZE_PASS_BEGIN(GlobalOpt, "globalopt",
94                 "Global Variable Optimizer", false, false)
95 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
96 INITIALIZE_PASS_END(GlobalOpt, "globalopt",
97                 "Global Variable Optimizer", false, false)
98
99 ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
100
101 namespace {
102
103 /// GlobalStatus - As we analyze each global, keep track of some information
104 /// about it.  If we find out that the address of the global is taken, none of
105 /// this info will be accurate.
106 struct GlobalStatus {
107   /// isCompared - True if the global's address is used in a comparison.
108   bool isCompared;
109
110   /// isLoaded - True if the global is ever loaded.  If the global isn't ever
111   /// loaded it can be deleted.
112   bool isLoaded;
113
114   /// StoredType - Keep track of what stores to the global look like.
115   ///
116   enum StoredType {
117     /// NotStored - There is no store to this global.  It can thus be marked
118     /// constant.
119     NotStored,
120
121     /// isInitializerStored - This global is stored to, but the only thing
122     /// stored is the constant it was initialized with.  This is only tracked
123     /// for scalar globals.
124     isInitializerStored,
125
126     /// isStoredOnce - This global is stored to, but only its initializer and
127     /// one other value is ever stored to it.  If this global isStoredOnce, we
128     /// track the value stored to it in StoredOnceValue below.  This is only
129     /// tracked for scalar globals.
130     isStoredOnce,
131
132     /// isStored - This global is stored to by multiple values or something else
133     /// that we cannot track.
134     isStored
135   } StoredType;
136
137   /// StoredOnceValue - If only one value (besides the initializer constant) is
138   /// ever stored to this global, keep track of what value it is.
139   Value *StoredOnceValue;
140
141   /// AccessingFunction/HasMultipleAccessingFunctions - These start out
142   /// null/false.  When the first accessing function is noticed, it is recorded.
143   /// When a second different accessing function is noticed,
144   /// HasMultipleAccessingFunctions is set to true.
145   const Function *AccessingFunction;
146   bool HasMultipleAccessingFunctions;
147
148   /// HasNonInstructionUser - Set to true if this global has a user that is not
149   /// an instruction (e.g. a constant expr or GV initializer).
150   bool HasNonInstructionUser;
151
152   /// AtomicOrdering - Set to the strongest atomic ordering requirement.
153   AtomicOrdering Ordering;
154
155   GlobalStatus() : isCompared(false), isLoaded(false), StoredType(NotStored),
156                    StoredOnceValue(0), AccessingFunction(0),
157                    HasMultipleAccessingFunctions(false),
158                    HasNonInstructionUser(false), Ordering(NotAtomic) {}
159 };
160
161 }
162
163 /// StrongerOrdering - Return the stronger of the two ordering. If the two
164 /// orderings are acquire and release, then return AcquireRelease.
165 ///
166 static AtomicOrdering StrongerOrdering(AtomicOrdering X, AtomicOrdering Y) {
167   if (X == Acquire && Y == Release) return AcquireRelease;
168   if (Y == Acquire && X == Release) return AcquireRelease;
169   return (AtomicOrdering)std::max(X, Y);
170 }
171
172 /// SafeToDestroyConstant - It is safe to destroy a constant iff it is only used
173 /// by constants itself.  Note that constants cannot be cyclic, so this test is
174 /// pretty easy to implement recursively.
175 ///
176 static bool SafeToDestroyConstant(const Constant *C) {
177   if (isa<GlobalValue>(C)) return false;
178
179   for (Value::const_use_iterator UI = C->use_begin(), E = C->use_end(); UI != E;
180        ++UI)
181     if (const Constant *CU = dyn_cast<Constant>(*UI)) {
182       if (!SafeToDestroyConstant(CU)) return false;
183     } else
184       return false;
185   return true;
186 }
187
188
189 /// AnalyzeGlobal - Look at all uses of the global and fill in the GlobalStatus
190 /// structure.  If the global has its address taken, return true to indicate we
191 /// can't do anything with it.
192 ///
193 static bool AnalyzeGlobal(const Value *V, GlobalStatus &GS,
194                           SmallPtrSet<const PHINode*, 16> &PHIUsers) {
195   for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;
196        ++UI) {
197     const User *U = *UI;
198     if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
199       GS.HasNonInstructionUser = true;
200
201       // If the result of the constantexpr isn't pointer type, then we won't
202       // know to expect it in various places.  Just reject early.
203       if (!isa<PointerType>(CE->getType())) return true;
204
205       if (AnalyzeGlobal(CE, GS, PHIUsers)) return true;
206     } else if (const Instruction *I = dyn_cast<Instruction>(U)) {
207       if (!GS.HasMultipleAccessingFunctions) {
208         const Function *F = I->getParent()->getParent();
209         if (GS.AccessingFunction == 0)
210           GS.AccessingFunction = F;
211         else if (GS.AccessingFunction != F)
212           GS.HasMultipleAccessingFunctions = true;
213       }
214       if (const LoadInst *LI = dyn_cast<LoadInst>(I)) {
215         GS.isLoaded = true;
216         // Don't hack on volatile loads.
217         if (LI->isVolatile()) return true;
218         GS.Ordering = StrongerOrdering(GS.Ordering, LI->getOrdering());
219       } else if (const StoreInst *SI = dyn_cast<StoreInst>(I)) {
220         // Don't allow a store OF the address, only stores TO the address.
221         if (SI->getOperand(0) == V) return true;
222
223         // Don't hack on volatile stores.
224         if (SI->isVolatile()) return true;
225
226         GS.Ordering = StrongerOrdering(GS.Ordering, SI->getOrdering());
227
228         // If this is a direct store to the global (i.e., the global is a scalar
229         // value, not an aggregate), keep more specific information about
230         // stores.
231         if (GS.StoredType != GlobalStatus::isStored) {
232           if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(
233                                                            SI->getOperand(1))) {
234             Value *StoredVal = SI->getOperand(0);
235
236             if (Constant *C = dyn_cast<Constant>(StoredVal)) {
237               if (C->isThreadDependent()) {
238                 // The stored value changes between threads; don't track it.
239                 return true;
240               }
241             }
242
243             if (StoredVal == GV->getInitializer()) {
244               if (GS.StoredType < GlobalStatus::isInitializerStored)
245                 GS.StoredType = GlobalStatus::isInitializerStored;
246             } else if (isa<LoadInst>(StoredVal) &&
247                        cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
248               if (GS.StoredType < GlobalStatus::isInitializerStored)
249                 GS.StoredType = GlobalStatus::isInitializerStored;
250             } else if (GS.StoredType < GlobalStatus::isStoredOnce) {
251               GS.StoredType = GlobalStatus::isStoredOnce;
252               GS.StoredOnceValue = StoredVal;
253             } else if (GS.StoredType == GlobalStatus::isStoredOnce &&
254                        GS.StoredOnceValue == StoredVal) {
255               // noop.
256             } else {
257               GS.StoredType = GlobalStatus::isStored;
258             }
259           } else {
260             GS.StoredType = GlobalStatus::isStored;
261           }
262         }
263       } else if (isa<BitCastInst>(I)) {
264         if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
265       } else if (isa<GetElementPtrInst>(I)) {
266         if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
267       } else if (isa<SelectInst>(I)) {
268         if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
269       } else if (const PHINode *PN = dyn_cast<PHINode>(I)) {
270         // PHI nodes we can check just like select or GEP instructions, but we
271         // have to be careful about infinite recursion.
272         if (PHIUsers.insert(PN))  // Not already visited.
273           if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
274       } else if (isa<CmpInst>(I)) {
275         GS.isCompared = true;
276       } else if (const MemTransferInst *MTI = dyn_cast<MemTransferInst>(I)) {
277         if (MTI->isVolatile()) return true;
278         if (MTI->getArgOperand(0) == V)
279           GS.StoredType = GlobalStatus::isStored;
280         if (MTI->getArgOperand(1) == V)
281           GS.isLoaded = true;
282       } else if (const MemSetInst *MSI = dyn_cast<MemSetInst>(I)) {
283         assert(MSI->getArgOperand(0) == V && "Memset only takes one pointer!");
284         if (MSI->isVolatile()) return true;
285         GS.StoredType = GlobalStatus::isStored;
286       } else {
287         return true;  // Any other non-load instruction might take address!
288       }
289     } else if (const Constant *C = dyn_cast<Constant>(U)) {
290       GS.HasNonInstructionUser = true;
291       // We might have a dead and dangling constant hanging off of here.
292       if (!SafeToDestroyConstant(C))
293         return true;
294     } else {
295       GS.HasNonInstructionUser = true;
296       // Otherwise must be some other user.
297       return true;
298     }
299   }
300
301   return false;
302 }
303
304 /// isLeakCheckerRoot - Is this global variable possibly used by a leak checker
305 /// as a root?  If so, we might not really want to eliminate the stores to it.
306 static bool isLeakCheckerRoot(GlobalVariable *GV) {
307   // A global variable is a root if it is a pointer, or could plausibly contain
308   // a pointer.  There are two challenges; one is that we could have a struct
309   // the has an inner member which is a pointer.  We recurse through the type to
310   // detect these (up to a point).  The other is that we may actually be a union
311   // of a pointer and another type, and so our LLVM type is an integer which
312   // gets converted into a pointer, or our type is an [i8 x #] with a pointer
313   // potentially contained here.
314
315   if (GV->hasPrivateLinkage())
316     return false;
317
318   SmallVector<Type *, 4> Types;
319   Types.push_back(cast<PointerType>(GV->getType())->getElementType());
320
321   unsigned Limit = 20;
322   do {
323     Type *Ty = Types.pop_back_val();
324     switch (Ty->getTypeID()) {
325       default: break;
326       case Type::PointerTyID: return true;
327       case Type::ArrayTyID:
328       case Type::VectorTyID: {
329         SequentialType *STy = cast<SequentialType>(Ty);
330         Types.push_back(STy->getElementType());
331         break;
332       }
333       case Type::StructTyID: {
334         StructType *STy = cast<StructType>(Ty);
335         if (STy->isOpaque()) return true;
336         for (StructType::element_iterator I = STy->element_begin(),
337                  E = STy->element_end(); I != E; ++I) {
338           Type *InnerTy = *I;
339           if (isa<PointerType>(InnerTy)) return true;
340           if (isa<CompositeType>(InnerTy))
341             Types.push_back(InnerTy);
342         }
343         break;
344       }
345     }
346     if (--Limit == 0) return true;
347   } while (!Types.empty());
348   return false;
349 }
350
351 /// Given a value that is stored to a global but never read, determine whether
352 /// it's safe to remove the store and the chain of computation that feeds the
353 /// store.
354 static bool IsSafeComputationToRemove(Value *V, const TargetLibraryInfo *TLI) {
355   do {
356     if (isa<Constant>(V))
357       return true;
358     if (!V->hasOneUse())
359       return false;
360     if (isa<LoadInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V) ||
361         isa<GlobalValue>(V))
362       return false;
363     if (isAllocationFn(V, TLI))
364       return true;
365
366     Instruction *I = cast<Instruction>(V);
367     if (I->mayHaveSideEffects())
368       return false;
369     if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
370       if (!GEP->hasAllConstantIndices())
371         return false;
372     } else if (I->getNumOperands() != 1) {
373       return false;
374     }
375
376     V = I->getOperand(0);
377   } while (1);
378 }
379
380 /// CleanupPointerRootUsers - This GV is a pointer root.  Loop over all users
381 /// of the global and clean up any that obviously don't assign the global a
382 /// value that isn't dynamically allocated.
383 ///
384 static bool CleanupPointerRootUsers(GlobalVariable *GV,
385                                     const TargetLibraryInfo *TLI) {
386   // A brief explanation of leak checkers.  The goal is to find bugs where
387   // pointers are forgotten, causing an accumulating growth in memory
388   // usage over time.  The common strategy for leak checkers is to whitelist the
389   // memory pointed to by globals at exit.  This is popular because it also
390   // solves another problem where the main thread of a C++ program may shut down
391   // before other threads that are still expecting to use those globals.  To
392   // handle that case, we expect the program may create a singleton and never
393   // destroy it.
394
395   bool Changed = false;
396
397   // If Dead[n].first is the only use of a malloc result, we can delete its
398   // chain of computation and the store to the global in Dead[n].second.
399   SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead;
400
401   // Constants can't be pointers to dynamically allocated memory.
402   for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
403        UI != E;) {
404     User *U = *UI++;
405     if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
406       Value *V = SI->getValueOperand();
407       if (isa<Constant>(V)) {
408         Changed = true;
409         SI->eraseFromParent();
410       } else if (Instruction *I = dyn_cast<Instruction>(V)) {
411         if (I->hasOneUse())
412           Dead.push_back(std::make_pair(I, SI));
413       }
414     } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
415       if (isa<Constant>(MSI->getValue())) {
416         Changed = true;
417         MSI->eraseFromParent();
418       } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
419         if (I->hasOneUse())
420           Dead.push_back(std::make_pair(I, MSI));
421       }
422     } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(U)) {
423       GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource());
424       if (MemSrc && MemSrc->isConstant()) {
425         Changed = true;
426         MTI->eraseFromParent();
427       } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) {
428         if (I->hasOneUse())
429           Dead.push_back(std::make_pair(I, MTI));
430       }
431     } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
432       if (CE->use_empty()) {
433         CE->destroyConstant();
434         Changed = true;
435       }
436     } else if (Constant *C = dyn_cast<Constant>(U)) {
437       if (SafeToDestroyConstant(C)) {
438         C->destroyConstant();
439         // This could have invalidated UI, start over from scratch.
440         Dead.clear();
441         CleanupPointerRootUsers(GV, TLI);
442         return true;
443       }
444     }
445   }
446
447   for (int i = 0, e = Dead.size(); i != e; ++i) {
448     if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
449       Dead[i].second->eraseFromParent();
450       Instruction *I = Dead[i].first;
451       do {
452         if (isAllocationFn(I, TLI))
453           break;
454         Instruction *J = dyn_cast<Instruction>(I->getOperand(0));
455         if (!J)
456           break;
457         I->eraseFromParent();
458         I = J;
459       } while (1);
460       I->eraseFromParent();
461     }
462   }
463
464   return Changed;
465 }
466
467 /// CleanupConstantGlobalUsers - We just marked GV constant.  Loop over all
468 /// users of the global, cleaning up the obvious ones.  This is largely just a
469 /// quick scan over the use list to clean up the easy and obvious cruft.  This
470 /// returns true if it made a change.
471 static bool CleanupConstantGlobalUsers(Value *V, Constant *Init,
472                                        DataLayout *TD, TargetLibraryInfo *TLI) {
473   bool Changed = false;
474   SmallVector<User*, 8> WorkList(V->use_begin(), V->use_end());
475   while (!WorkList.empty()) {
476     User *U = WorkList.pop_back_val();
477
478     if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
479       if (Init) {
480         // Replace the load with the initializer.
481         LI->replaceAllUsesWith(Init);
482         LI->eraseFromParent();
483         Changed = true;
484       }
485     } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
486       // Store must be unreachable or storing Init into the global.
487       SI->eraseFromParent();
488       Changed = true;
489     } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
490       if (CE->getOpcode() == Instruction::GetElementPtr) {
491         Constant *SubInit = 0;
492         if (Init)
493           SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
494         Changed |= CleanupConstantGlobalUsers(CE, SubInit, TD, TLI);
495       } else if (CE->getOpcode() == Instruction::BitCast &&
496                  CE->getType()->isPointerTy()) {
497         // Pointer cast, delete any stores and memsets to the global.
498         Changed |= CleanupConstantGlobalUsers(CE, 0, TD, TLI);
499       }
500
501       if (CE->use_empty()) {
502         CE->destroyConstant();
503         Changed = true;
504       }
505     } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
506       // Do not transform "gepinst (gep constexpr (GV))" here, because forming
507       // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
508       // and will invalidate our notion of what Init is.
509       Constant *SubInit = 0;
510       if (!isa<ConstantExpr>(GEP->getOperand(0))) {
511         ConstantExpr *CE =
512           dyn_cast_or_null<ConstantExpr>(ConstantFoldInstruction(GEP, TD, TLI));
513         if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
514           SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
515
516         // If the initializer is an all-null value and we have an inbounds GEP,
517         // we already know what the result of any load from that GEP is.
518         // TODO: Handle splats.
519         if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
520           SubInit = Constant::getNullValue(GEP->getType()->getElementType());
521       }
522       Changed |= CleanupConstantGlobalUsers(GEP, SubInit, TD, TLI);
523
524       if (GEP->use_empty()) {
525         GEP->eraseFromParent();
526         Changed = true;
527       }
528     } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
529       if (MI->getRawDest() == V) {
530         MI->eraseFromParent();
531         Changed = true;
532       }
533
534     } else if (Constant *C = dyn_cast<Constant>(U)) {
535       // If we have a chain of dead constantexprs or other things dangling from
536       // us, and if they are all dead, nuke them without remorse.
537       if (SafeToDestroyConstant(C)) {
538         C->destroyConstant();
539         CleanupConstantGlobalUsers(V, Init, TD, TLI);
540         return true;
541       }
542     }
543   }
544   return Changed;
545 }
546
547 /// isSafeSROAElementUse - Return true if the specified instruction is a safe
548 /// user of a derived expression from a global that we want to SROA.
549 static bool isSafeSROAElementUse(Value *V) {
550   // We might have a dead and dangling constant hanging off of here.
551   if (Constant *C = dyn_cast<Constant>(V))
552     return SafeToDestroyConstant(C);
553
554   Instruction *I = dyn_cast<Instruction>(V);
555   if (!I) return false;
556
557   // Loads are ok.
558   if (isa<LoadInst>(I)) return true;
559
560   // Stores *to* the pointer are ok.
561   if (StoreInst *SI = dyn_cast<StoreInst>(I))
562     return SI->getOperand(0) != V;
563
564   // Otherwise, it must be a GEP.
565   GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
566   if (GEPI == 0) return false;
567
568   if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
569       !cast<Constant>(GEPI->getOperand(1))->isNullValue())
570     return false;
571
572   for (Value::use_iterator I = GEPI->use_begin(), E = GEPI->use_end();
573        I != E; ++I)
574     if (!isSafeSROAElementUse(*I))
575       return false;
576   return true;
577 }
578
579
580 /// IsUserOfGlobalSafeForSRA - U is a direct user of the specified global value.
581 /// Look at it and its uses and decide whether it is safe to SROA this global.
582 ///
583 static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
584   // The user of the global must be a GEP Inst or a ConstantExpr GEP.
585   if (!isa<GetElementPtrInst>(U) &&
586       (!isa<ConstantExpr>(U) ||
587        cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
588     return false;
589
590   // Check to see if this ConstantExpr GEP is SRA'able.  In particular, we
591   // don't like < 3 operand CE's, and we don't like non-constant integer
592   // indices.  This enforces that all uses are 'gep GV, 0, C, ...' for some
593   // value of C.
594   if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
595       !cast<Constant>(U->getOperand(1))->isNullValue() ||
596       !isa<ConstantInt>(U->getOperand(2)))
597     return false;
598
599   gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
600   ++GEPI;  // Skip over the pointer index.
601
602   // If this is a use of an array allocation, do a bit more checking for sanity.
603   if (ArrayType *AT = dyn_cast<ArrayType>(*GEPI)) {
604     uint64_t NumElements = AT->getNumElements();
605     ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
606
607     // Check to make sure that index falls within the array.  If not,
608     // something funny is going on, so we won't do the optimization.
609     //
610     if (Idx->getZExtValue() >= NumElements)
611       return false;
612
613     // We cannot scalar repl this level of the array unless any array
614     // sub-indices are in-range constants.  In particular, consider:
615     // A[0][i].  We cannot know that the user isn't doing invalid things like
616     // allowing i to index an out-of-range subscript that accesses A[1].
617     //
618     // Scalar replacing *just* the outer index of the array is probably not
619     // going to be a win anyway, so just give up.
620     for (++GEPI; // Skip array index.
621          GEPI != E;
622          ++GEPI) {
623       uint64_t NumElements;
624       if (ArrayType *SubArrayTy = dyn_cast<ArrayType>(*GEPI))
625         NumElements = SubArrayTy->getNumElements();
626       else if (VectorType *SubVectorTy = dyn_cast<VectorType>(*GEPI))
627         NumElements = SubVectorTy->getNumElements();
628       else {
629         assert((*GEPI)->isStructTy() &&
630                "Indexed GEP type is not array, vector, or struct!");
631         continue;
632       }
633
634       ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
635       if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
636         return false;
637     }
638   }
639
640   for (Value::use_iterator I = U->use_begin(), E = U->use_end(); I != E; ++I)
641     if (!isSafeSROAElementUse(*I))
642       return false;
643   return true;
644 }
645
646 /// GlobalUsersSafeToSRA - Look at all uses of the global and decide whether it
647 /// is safe for us to perform this transformation.
648 ///
649 static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
650   for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
651        UI != E; ++UI) {
652     if (!IsUserOfGlobalSafeForSRA(*UI, GV))
653       return false;
654   }
655   return true;
656 }
657
658
659 /// SRAGlobal - Perform scalar replacement of aggregates on the specified global
660 /// variable.  This opens the door for other optimizations by exposing the
661 /// behavior of the program in a more fine-grained way.  We have determined that
662 /// this transformation is safe already.  We return the first global variable we
663 /// insert so that the caller can reprocess it.
664 static GlobalVariable *SRAGlobal(GlobalVariable *GV, const DataLayout &TD) {
665   // Make sure this global only has simple uses that we can SRA.
666   if (!GlobalUsersSafeToSRA(GV))
667     return 0;
668
669   assert(GV->hasLocalLinkage() && !GV->isConstant());
670   Constant *Init = GV->getInitializer();
671   Type *Ty = Init->getType();
672
673   std::vector<GlobalVariable*> NewGlobals;
674   Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
675
676   // Get the alignment of the global, either explicit or target-specific.
677   unsigned StartAlignment = GV->getAlignment();
678   if (StartAlignment == 0)
679     StartAlignment = TD.getABITypeAlignment(GV->getType());
680
681   if (StructType *STy = dyn_cast<StructType>(Ty)) {
682     NewGlobals.reserve(STy->getNumElements());
683     const StructLayout &Layout = *TD.getStructLayout(STy);
684     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
685       Constant *In = Init->getAggregateElement(i);
686       assert(In && "Couldn't get element of initializer?");
687       GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
688                                                GlobalVariable::InternalLinkage,
689                                                In, GV->getName()+"."+Twine(i),
690                                                GV->getThreadLocalMode(),
691                                               GV->getType()->getAddressSpace());
692       Globals.insert(GV, NGV);
693       NewGlobals.push_back(NGV);
694
695       // Calculate the known alignment of the field.  If the original aggregate
696       // had 256 byte alignment for example, something might depend on that:
697       // propagate info to each field.
698       uint64_t FieldOffset = Layout.getElementOffset(i);
699       unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
700       if (NewAlign > TD.getABITypeAlignment(STy->getElementType(i)))
701         NGV->setAlignment(NewAlign);
702     }
703   } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
704     unsigned NumElements = 0;
705     if (ArrayType *ATy = dyn_cast<ArrayType>(STy))
706       NumElements = ATy->getNumElements();
707     else
708       NumElements = cast<VectorType>(STy)->getNumElements();
709
710     if (NumElements > 16 && GV->hasNUsesOrMore(16))
711       return 0; // It's not worth it.
712     NewGlobals.reserve(NumElements);
713
714     uint64_t EltSize = TD.getTypeAllocSize(STy->getElementType());
715     unsigned EltAlign = TD.getABITypeAlignment(STy->getElementType());
716     for (unsigned i = 0, e = NumElements; i != e; ++i) {
717       Constant *In = Init->getAggregateElement(i);
718       assert(In && "Couldn't get element of initializer?");
719
720       GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
721                                                GlobalVariable::InternalLinkage,
722                                                In, GV->getName()+"."+Twine(i),
723                                                GV->getThreadLocalMode(),
724                                               GV->getType()->getAddressSpace());
725       Globals.insert(GV, NGV);
726       NewGlobals.push_back(NGV);
727
728       // Calculate the known alignment of the field.  If the original aggregate
729       // had 256 byte alignment for example, something might depend on that:
730       // propagate info to each field.
731       unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
732       if (NewAlign > EltAlign)
733         NGV->setAlignment(NewAlign);
734     }
735   }
736
737   if (NewGlobals.empty())
738     return 0;
739
740   DEBUG(dbgs() << "PERFORMING GLOBAL SRA ON: " << *GV);
741
742   Constant *NullInt =Constant::getNullValue(Type::getInt32Ty(GV->getContext()));
743
744   // Loop over all of the uses of the global, replacing the constantexpr geps,
745   // with smaller constantexpr geps or direct references.
746   while (!GV->use_empty()) {
747     User *GEP = GV->use_back();
748     assert(((isa<ConstantExpr>(GEP) &&
749              cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
750             isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
751
752     // Ignore the 1th operand, which has to be zero or else the program is quite
753     // broken (undefined).  Get the 2nd operand, which is the structure or array
754     // index.
755     unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
756     if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
757
758     Value *NewPtr = NewGlobals[Val];
759
760     // Form a shorter GEP if needed.
761     if (GEP->getNumOperands() > 3) {
762       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
763         SmallVector<Constant*, 8> Idxs;
764         Idxs.push_back(NullInt);
765         for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
766           Idxs.push_back(CE->getOperand(i));
767         NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr), Idxs);
768       } else {
769         GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
770         SmallVector<Value*, 8> Idxs;
771         Idxs.push_back(NullInt);
772         for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
773           Idxs.push_back(GEPI->getOperand(i));
774         NewPtr = GetElementPtrInst::Create(NewPtr, Idxs,
775                                            GEPI->getName()+"."+Twine(Val),GEPI);
776       }
777     }
778     GEP->replaceAllUsesWith(NewPtr);
779
780     if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
781       GEPI->eraseFromParent();
782     else
783       cast<ConstantExpr>(GEP)->destroyConstant();
784   }
785
786   // Delete the old global, now that it is dead.
787   Globals.erase(GV);
788   ++NumSRA;
789
790   // Loop over the new globals array deleting any globals that are obviously
791   // dead.  This can arise due to scalarization of a structure or an array that
792   // has elements that are dead.
793   unsigned FirstGlobal = 0;
794   for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
795     if (NewGlobals[i]->use_empty()) {
796       Globals.erase(NewGlobals[i]);
797       if (FirstGlobal == i) ++FirstGlobal;
798     }
799
800   return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : 0;
801 }
802
803 /// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
804 /// value will trap if the value is dynamically null.  PHIs keeps track of any
805 /// phi nodes we've seen to avoid reprocessing them.
806 static bool AllUsesOfValueWillTrapIfNull(const Value *V,
807                                          SmallPtrSet<const PHINode*, 8> &PHIs) {
808   for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;
809        ++UI) {
810     const User *U = *UI;
811
812     if (isa<LoadInst>(U)) {
813       // Will trap.
814     } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
815       if (SI->getOperand(0) == V) {
816         //cerr << "NONTRAPPING USE: " << *U;
817         return false;  // Storing the value.
818       }
819     } else if (const CallInst *CI = dyn_cast<CallInst>(U)) {
820       if (CI->getCalledValue() != V) {
821         //cerr << "NONTRAPPING USE: " << *U;
822         return false;  // Not calling the ptr
823       }
824     } else if (const InvokeInst *II = dyn_cast<InvokeInst>(U)) {
825       if (II->getCalledValue() != V) {
826         //cerr << "NONTRAPPING USE: " << *U;
827         return false;  // Not calling the ptr
828       }
829     } else if (const BitCastInst *CI = dyn_cast<BitCastInst>(U)) {
830       if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
831     } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
832       if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
833     } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
834       // If we've already seen this phi node, ignore it, it has already been
835       // checked.
836       if (PHIs.insert(PN) && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
837         return false;
838     } else if (isa<ICmpInst>(U) &&
839                isa<ConstantPointerNull>(UI->getOperand(1))) {
840       // Ignore icmp X, null
841     } else {
842       //cerr << "NONTRAPPING USE: " << *U;
843       return false;
844     }
845   }
846   return true;
847 }
848
849 /// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
850 /// from GV will trap if the loaded value is null.  Note that this also permits
851 /// comparisons of the loaded value against null, as a special case.
852 static bool AllUsesOfLoadedValueWillTrapIfNull(const GlobalVariable *GV) {
853   for (Value::const_use_iterator UI = GV->use_begin(), E = GV->use_end();
854        UI != E; ++UI) {
855     const User *U = *UI;
856
857     if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
858       SmallPtrSet<const PHINode*, 8> PHIs;
859       if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
860         return false;
861     } else if (isa<StoreInst>(U)) {
862       // Ignore stores to the global.
863     } else {
864       // We don't know or understand this user, bail out.
865       //cerr << "UNKNOWN USER OF GLOBAL!: " << *U;
866       return false;
867     }
868   }
869   return true;
870 }
871
872 static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
873   bool Changed = false;
874   for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
875     Instruction *I = cast<Instruction>(*UI++);
876     if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
877       LI->setOperand(0, NewV);
878       Changed = true;
879     } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
880       if (SI->getOperand(1) == V) {
881         SI->setOperand(1, NewV);
882         Changed = true;
883       }
884     } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
885       CallSite CS(I);
886       if (CS.getCalledValue() == V) {
887         // Calling through the pointer!  Turn into a direct call, but be careful
888         // that the pointer is not also being passed as an argument.
889         CS.setCalledFunction(NewV);
890         Changed = true;
891         bool PassedAsArg = false;
892         for (unsigned i = 0, e = CS.arg_size(); i != e; ++i)
893           if (CS.getArgument(i) == V) {
894             PassedAsArg = true;
895             CS.setArgument(i, NewV);
896           }
897
898         if (PassedAsArg) {
899           // Being passed as an argument also.  Be careful to not invalidate UI!
900           UI = V->use_begin();
901         }
902       }
903     } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
904       Changed |= OptimizeAwayTrappingUsesOfValue(CI,
905                                 ConstantExpr::getCast(CI->getOpcode(),
906                                                       NewV, CI->getType()));
907       if (CI->use_empty()) {
908         Changed = true;
909         CI->eraseFromParent();
910       }
911     } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
912       // Should handle GEP here.
913       SmallVector<Constant*, 8> Idxs;
914       Idxs.reserve(GEPI->getNumOperands()-1);
915       for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
916            i != e; ++i)
917         if (Constant *C = dyn_cast<Constant>(*i))
918           Idxs.push_back(C);
919         else
920           break;
921       if (Idxs.size() == GEPI->getNumOperands()-1)
922         Changed |= OptimizeAwayTrappingUsesOfValue(GEPI,
923                           ConstantExpr::getGetElementPtr(NewV, Idxs));
924       if (GEPI->use_empty()) {
925         Changed = true;
926         GEPI->eraseFromParent();
927       }
928     }
929   }
930
931   return Changed;
932 }
933
934
935 /// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
936 /// value stored into it.  If there are uses of the loaded value that would trap
937 /// if the loaded value is dynamically null, then we know that they cannot be
938 /// reachable with a null optimize away the load.
939 static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV,
940                                             DataLayout *TD,
941                                             TargetLibraryInfo *TLI) {
942   bool Changed = false;
943
944   // Keep track of whether we are able to remove all the uses of the global
945   // other than the store that defines it.
946   bool AllNonStoreUsesGone = true;
947
948   // Replace all uses of loads with uses of uses of the stored value.
949   for (Value::use_iterator GUI = GV->use_begin(), E = GV->use_end(); GUI != E;){
950     User *GlobalUser = *GUI++;
951     if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
952       Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
953       // If we were able to delete all uses of the loads
954       if (LI->use_empty()) {
955         LI->eraseFromParent();
956         Changed = true;
957       } else {
958         AllNonStoreUsesGone = false;
959       }
960     } else if (isa<StoreInst>(GlobalUser)) {
961       // Ignore the store that stores "LV" to the global.
962       assert(GlobalUser->getOperand(1) == GV &&
963              "Must be storing *to* the global");
964     } else {
965       AllNonStoreUsesGone = false;
966
967       // If we get here we could have other crazy uses that are transitively
968       // loaded.
969       assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
970               isa<ConstantExpr>(GlobalUser) || isa<CmpInst>(GlobalUser) ||
971               isa<BitCastInst>(GlobalUser) ||
972               isa<GetElementPtrInst>(GlobalUser)) &&
973              "Only expect load and stores!");
974     }
975   }
976
977   if (Changed) {
978     DEBUG(dbgs() << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV);
979     ++NumGlobUses;
980   }
981
982   // If we nuked all of the loads, then none of the stores are needed either,
983   // nor is the global.
984   if (AllNonStoreUsesGone) {
985     if (isLeakCheckerRoot(GV)) {
986       Changed |= CleanupPointerRootUsers(GV, TLI);
987     } else {
988       Changed = true;
989       CleanupConstantGlobalUsers(GV, 0, TD, TLI);
990     }
991     if (GV->use_empty()) {
992       DEBUG(dbgs() << "  *** GLOBAL NOW DEAD!\n");
993       Changed = true;
994       GV->eraseFromParent();
995       ++NumDeleted;
996     }
997   }
998   return Changed;
999 }
1000
1001 /// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
1002 /// instructions that are foldable.
1003 static void ConstantPropUsersOf(Value *V,
1004                                 DataLayout *TD, TargetLibraryInfo *TLI) {
1005   for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
1006     if (Instruction *I = dyn_cast<Instruction>(*UI++))
1007       if (Constant *NewC = ConstantFoldInstruction(I, TD, TLI)) {
1008         I->replaceAllUsesWith(NewC);
1009
1010         // Advance UI to the next non-I use to avoid invalidating it!
1011         // Instructions could multiply use V.
1012         while (UI != E && *UI == I)
1013           ++UI;
1014         I->eraseFromParent();
1015       }
1016 }
1017
1018 /// OptimizeGlobalAddressOfMalloc - This function takes the specified global
1019 /// variable, and transforms the program as if it always contained the result of
1020 /// the specified malloc.  Because it is always the result of the specified
1021 /// malloc, there is no reason to actually DO the malloc.  Instead, turn the
1022 /// malloc into a global, and any loads of GV as uses of the new global.
1023 static GlobalVariable *OptimizeGlobalAddressOfMalloc(GlobalVariable *GV,
1024                                                      CallInst *CI,
1025                                                      Type *AllocTy,
1026                                                      ConstantInt *NElements,
1027                                                      DataLayout *TD,
1028                                                      TargetLibraryInfo *TLI) {
1029   DEBUG(errs() << "PROMOTING GLOBAL: " << *GV << "  CALL = " << *CI << '\n');
1030
1031   Type *GlobalType;
1032   if (NElements->getZExtValue() == 1)
1033     GlobalType = AllocTy;
1034   else
1035     // If we have an array allocation, the global variable is of an array.
1036     GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
1037
1038   // Create the new global variable.  The contents of the malloc'd memory is
1039   // undefined, so initialize with an undef value.
1040   GlobalVariable *NewGV = new GlobalVariable(*GV->getParent(),
1041                                              GlobalType, false,
1042                                              GlobalValue::InternalLinkage,
1043                                              UndefValue::get(GlobalType),
1044                                              GV->getName()+".body",
1045                                              GV,
1046                                              GV->getThreadLocalMode());
1047
1048   // If there are bitcast users of the malloc (which is typical, usually we have
1049   // a malloc + bitcast) then replace them with uses of the new global.  Update
1050   // other users to use the global as well.
1051   BitCastInst *TheBC = 0;
1052   while (!CI->use_empty()) {
1053     Instruction *User = cast<Instruction>(CI->use_back());
1054     if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
1055       if (BCI->getType() == NewGV->getType()) {
1056         BCI->replaceAllUsesWith(NewGV);
1057         BCI->eraseFromParent();
1058       } else {
1059         BCI->setOperand(0, NewGV);
1060       }
1061     } else {
1062       if (TheBC == 0)
1063         TheBC = new BitCastInst(NewGV, CI->getType(), "newgv", CI);
1064       User->replaceUsesOfWith(CI, TheBC);
1065     }
1066   }
1067
1068   Constant *RepValue = NewGV;
1069   if (NewGV->getType() != GV->getType()->getElementType())
1070     RepValue = ConstantExpr::getBitCast(RepValue,
1071                                         GV->getType()->getElementType());
1072
1073   // If there is a comparison against null, we will insert a global bool to
1074   // keep track of whether the global was initialized yet or not.
1075   GlobalVariable *InitBool =
1076     new GlobalVariable(Type::getInt1Ty(GV->getContext()), false,
1077                        GlobalValue::InternalLinkage,
1078                        ConstantInt::getFalse(GV->getContext()),
1079                        GV->getName()+".init", GV->getThreadLocalMode());
1080   bool InitBoolUsed = false;
1081
1082   // Loop over all uses of GV, processing them in turn.
1083   while (!GV->use_empty()) {
1084     if (StoreInst *SI = dyn_cast<StoreInst>(GV->use_back())) {
1085       // The global is initialized when the store to it occurs.
1086       new StoreInst(ConstantInt::getTrue(GV->getContext()), InitBool, false, 0,
1087                     SI->getOrdering(), SI->getSynchScope(), SI);
1088       SI->eraseFromParent();
1089       continue;
1090     }
1091
1092     LoadInst *LI = cast<LoadInst>(GV->use_back());
1093     while (!LI->use_empty()) {
1094       Use &LoadUse = LI->use_begin().getUse();
1095       if (!isa<ICmpInst>(LoadUse.getUser())) {
1096         LoadUse = RepValue;
1097         continue;
1098       }
1099
1100       ICmpInst *ICI = cast<ICmpInst>(LoadUse.getUser());
1101       // Replace the cmp X, 0 with a use of the bool value.
1102       // Sink the load to where the compare was, if atomic rules allow us to.
1103       Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0,
1104                                LI->getOrdering(), LI->getSynchScope(),
1105                                LI->isUnordered() ? (Instruction*)ICI : LI);
1106       InitBoolUsed = true;
1107       switch (ICI->getPredicate()) {
1108       default: llvm_unreachable("Unknown ICmp Predicate!");
1109       case ICmpInst::ICMP_ULT:
1110       case ICmpInst::ICMP_SLT:   // X < null -> always false
1111         LV = ConstantInt::getFalse(GV->getContext());
1112         break;
1113       case ICmpInst::ICMP_ULE:
1114       case ICmpInst::ICMP_SLE:
1115       case ICmpInst::ICMP_EQ:
1116         LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
1117         break;
1118       case ICmpInst::ICMP_NE:
1119       case ICmpInst::ICMP_UGE:
1120       case ICmpInst::ICMP_SGE:
1121       case ICmpInst::ICMP_UGT:
1122       case ICmpInst::ICMP_SGT:
1123         break;  // no change.
1124       }
1125       ICI->replaceAllUsesWith(LV);
1126       ICI->eraseFromParent();
1127     }
1128     LI->eraseFromParent();
1129   }
1130
1131   // If the initialization boolean was used, insert it, otherwise delete it.
1132   if (!InitBoolUsed) {
1133     while (!InitBool->use_empty())  // Delete initializations
1134       cast<StoreInst>(InitBool->use_back())->eraseFromParent();
1135     delete InitBool;
1136   } else
1137     GV->getParent()->getGlobalList().insert(GV, InitBool);
1138
1139   // Now the GV is dead, nuke it and the malloc..
1140   GV->eraseFromParent();
1141   CI->eraseFromParent();
1142
1143   // To further other optimizations, loop over all users of NewGV and try to
1144   // constant prop them.  This will promote GEP instructions with constant
1145   // indices into GEP constant-exprs, which will allow global-opt to hack on it.
1146   ConstantPropUsersOf(NewGV, TD, TLI);
1147   if (RepValue != NewGV)
1148     ConstantPropUsersOf(RepValue, TD, TLI);
1149
1150   return NewGV;
1151 }
1152
1153 /// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
1154 /// to make sure that there are no complex uses of V.  We permit simple things
1155 /// like dereferencing the pointer, but not storing through the address, unless
1156 /// it is to the specified global.
1157 static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(const Instruction *V,
1158                                                       const GlobalVariable *GV,
1159                                          SmallPtrSet<const PHINode*, 8> &PHIs) {
1160   for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end();
1161        UI != E; ++UI) {
1162     const Instruction *Inst = cast<Instruction>(*UI);
1163
1164     if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
1165       continue; // Fine, ignore.
1166     }
1167
1168     if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1169       if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
1170         return false;  // Storing the pointer itself... bad.
1171       continue; // Otherwise, storing through it, or storing into GV... fine.
1172     }
1173
1174     // Must index into the array and into the struct.
1175     if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
1176       if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
1177         return false;
1178       continue;
1179     }
1180
1181     if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
1182       // PHIs are ok if all uses are ok.  Don't infinitely recurse through PHI
1183       // cycles.
1184       if (PHIs.insert(PN))
1185         if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
1186           return false;
1187       continue;
1188     }
1189
1190     if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
1191       if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
1192         return false;
1193       continue;
1194     }
1195
1196     return false;
1197   }
1198   return true;
1199 }
1200
1201 /// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
1202 /// somewhere.  Transform all uses of the allocation into loads from the
1203 /// global and uses of the resultant pointer.  Further, delete the store into
1204 /// GV.  This assumes that these value pass the
1205 /// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
1206 static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
1207                                           GlobalVariable *GV) {
1208   while (!Alloc->use_empty()) {
1209     Instruction *U = cast<Instruction>(*Alloc->use_begin());
1210     Instruction *InsertPt = U;
1211     if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
1212       // If this is the store of the allocation into the global, remove it.
1213       if (SI->getOperand(1) == GV) {
1214         SI->eraseFromParent();
1215         continue;
1216       }
1217     } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
1218       // Insert the load in the corresponding predecessor, not right before the
1219       // PHI.
1220       InsertPt = PN->getIncomingBlock(Alloc->use_begin())->getTerminator();
1221     } else if (isa<BitCastInst>(U)) {
1222       // Must be bitcast between the malloc and store to initialize the global.
1223       ReplaceUsesOfMallocWithGlobal(U, GV);
1224       U->eraseFromParent();
1225       continue;
1226     } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
1227       // If this is a "GEP bitcast" and the user is a store to the global, then
1228       // just process it as a bitcast.
1229       if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
1230         if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->use_back()))
1231           if (SI->getOperand(1) == GV) {
1232             // Must be bitcast GEP between the malloc and store to initialize
1233             // the global.
1234             ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1235             GEPI->eraseFromParent();
1236             continue;
1237           }
1238     }
1239
1240     // Insert a load from the global, and use it instead of the malloc.
1241     Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
1242     U->replaceUsesOfWith(Alloc, NL);
1243   }
1244 }
1245
1246 /// LoadUsesSimpleEnoughForHeapSRA - Verify that all uses of V (a load, or a phi
1247 /// of a load) are simple enough to perform heap SRA on.  This permits GEP's
1248 /// that index through the array and struct field, icmps of null, and PHIs.
1249 static bool LoadUsesSimpleEnoughForHeapSRA(const Value *V,
1250                         SmallPtrSet<const PHINode*, 32> &LoadUsingPHIs,
1251                         SmallPtrSet<const PHINode*, 32> &LoadUsingPHIsPerLoad) {
1252   // We permit two users of the load: setcc comparing against the null
1253   // pointer, and a getelementptr of a specific form.
1254   for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;
1255        ++UI) {
1256     const Instruction *User = cast<Instruction>(*UI);
1257
1258     // Comparison against null is ok.
1259     if (const ICmpInst *ICI = dyn_cast<ICmpInst>(User)) {
1260       if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1261         return false;
1262       continue;
1263     }
1264
1265     // getelementptr is also ok, but only a simple form.
1266     if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(User)) {
1267       // Must index into the array and into the struct.
1268       if (GEPI->getNumOperands() < 3)
1269         return false;
1270
1271       // Otherwise the GEP is ok.
1272       continue;
1273     }
1274
1275     if (const PHINode *PN = dyn_cast<PHINode>(User)) {
1276       if (!LoadUsingPHIsPerLoad.insert(PN))
1277         // This means some phi nodes are dependent on each other.
1278         // Avoid infinite looping!
1279         return false;
1280       if (!LoadUsingPHIs.insert(PN))
1281         // If we have already analyzed this PHI, then it is safe.
1282         continue;
1283
1284       // Make sure all uses of the PHI are simple enough to transform.
1285       if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1286                                           LoadUsingPHIs, LoadUsingPHIsPerLoad))
1287         return false;
1288
1289       continue;
1290     }
1291
1292     // Otherwise we don't know what this is, not ok.
1293     return false;
1294   }
1295
1296   return true;
1297 }
1298
1299
1300 /// AllGlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
1301 /// GV are simple enough to perform HeapSRA, return true.
1302 static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(const GlobalVariable *GV,
1303                                                     Instruction *StoredVal) {
1304   SmallPtrSet<const PHINode*, 32> LoadUsingPHIs;
1305   SmallPtrSet<const PHINode*, 32> LoadUsingPHIsPerLoad;
1306   for (Value::const_use_iterator UI = GV->use_begin(), E = GV->use_end();
1307        UI != E; ++UI)
1308     if (const LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
1309       if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1310                                           LoadUsingPHIsPerLoad))
1311         return false;
1312       LoadUsingPHIsPerLoad.clear();
1313     }
1314
1315   // If we reach here, we know that all uses of the loads and transitive uses
1316   // (through PHI nodes) are simple enough to transform.  However, we don't know
1317   // that all inputs the to the PHI nodes are in the same equivalence sets.
1318   // Check to verify that all operands of the PHIs are either PHIS that can be
1319   // transformed, loads from GV, or MI itself.
1320   for (SmallPtrSet<const PHINode*, 32>::const_iterator I = LoadUsingPHIs.begin()
1321        , E = LoadUsingPHIs.end(); I != E; ++I) {
1322     const PHINode *PN = *I;
1323     for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1324       Value *InVal = PN->getIncomingValue(op);
1325
1326       // PHI of the stored value itself is ok.
1327       if (InVal == StoredVal) continue;
1328
1329       if (const PHINode *InPN = dyn_cast<PHINode>(InVal)) {
1330         // One of the PHIs in our set is (optimistically) ok.
1331         if (LoadUsingPHIs.count(InPN))
1332           continue;
1333         return false;
1334       }
1335
1336       // Load from GV is ok.
1337       if (const LoadInst *LI = dyn_cast<LoadInst>(InVal))
1338         if (LI->getOperand(0) == GV)
1339           continue;
1340
1341       // UNDEF? NULL?
1342
1343       // Anything else is rejected.
1344       return false;
1345     }
1346   }
1347
1348   return true;
1349 }
1350
1351 static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1352                DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
1353                    std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
1354   std::vector<Value*> &FieldVals = InsertedScalarizedValues[V];
1355
1356   if (FieldNo >= FieldVals.size())
1357     FieldVals.resize(FieldNo+1);
1358
1359   // If we already have this value, just reuse the previously scalarized
1360   // version.
1361   if (Value *FieldVal = FieldVals[FieldNo])
1362     return FieldVal;
1363
1364   // Depending on what instruction this is, we have several cases.
1365   Value *Result;
1366   if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1367     // This is a scalarized version of the load from the global.  Just create
1368     // a new Load of the scalarized global.
1369     Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1370                                            InsertedScalarizedValues,
1371                                            PHIsToRewrite),
1372                           LI->getName()+".f"+Twine(FieldNo), LI);
1373   } else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1374     // PN's type is pointer to struct.  Make a new PHI of pointer to struct
1375     // field.
1376     StructType *ST =
1377       cast<StructType>(cast<PointerType>(PN->getType())->getElementType());
1378
1379     PHINode *NewPN =
1380      PHINode::Create(PointerType::getUnqual(ST->getElementType(FieldNo)),
1381                      PN->getNumIncomingValues(),
1382                      PN->getName()+".f"+Twine(FieldNo), PN);
1383     Result = NewPN;
1384     PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
1385   } else {
1386     llvm_unreachable("Unknown usable value");
1387   }
1388
1389   return FieldVals[FieldNo] = Result;
1390 }
1391
1392 /// RewriteHeapSROALoadUser - Given a load instruction and a value derived from
1393 /// the load, rewrite the derived value to use the HeapSRoA'd load.
1394 static void RewriteHeapSROALoadUser(Instruction *LoadUser,
1395              DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
1396                    std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
1397   // If this is a comparison against null, handle it.
1398   if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1399     assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1400     // If we have a setcc of the loaded pointer, we can use a setcc of any
1401     // field.
1402     Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
1403                                    InsertedScalarizedValues, PHIsToRewrite);
1404
1405     Value *New = new ICmpInst(SCI, SCI->getPredicate(), NPtr,
1406                               Constant::getNullValue(NPtr->getType()),
1407                               SCI->getName());
1408     SCI->replaceAllUsesWith(New);
1409     SCI->eraseFromParent();
1410     return;
1411   }
1412
1413   // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
1414   if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1415     assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1416            && "Unexpected GEPI!");
1417
1418     // Load the pointer for this field.
1419     unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
1420     Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
1421                                      InsertedScalarizedValues, PHIsToRewrite);
1422
1423     // Create the new GEP idx vector.
1424     SmallVector<Value*, 8> GEPIdx;
1425     GEPIdx.push_back(GEPI->getOperand(1));
1426     GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
1427
1428     Value *NGEPI = GetElementPtrInst::Create(NewPtr, GEPIdx,
1429                                              GEPI->getName(), GEPI);
1430     GEPI->replaceAllUsesWith(NGEPI);
1431     GEPI->eraseFromParent();
1432     return;
1433   }
1434
1435   // Recursively transform the users of PHI nodes.  This will lazily create the
1436   // PHIs that are needed for individual elements.  Keep track of what PHIs we
1437   // see in InsertedScalarizedValues so that we don't get infinite loops (very
1438   // antisocial).  If the PHI is already in InsertedScalarizedValues, it has
1439   // already been seen first by another load, so its uses have already been
1440   // processed.
1441   PHINode *PN = cast<PHINode>(LoadUser);
1442   if (!InsertedScalarizedValues.insert(std::make_pair(PN,
1443                                               std::vector<Value*>())).second)
1444     return;
1445
1446   // If this is the first time we've seen this PHI, recursively process all
1447   // users.
1448   for (Value::use_iterator UI = PN->use_begin(), E = PN->use_end(); UI != E; ) {
1449     Instruction *User = cast<Instruction>(*UI++);
1450     RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
1451   }
1452 }
1453
1454 /// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global.  Ptr
1455 /// is a value loaded from the global.  Eliminate all uses of Ptr, making them
1456 /// use FieldGlobals instead.  All uses of loaded values satisfy
1457 /// AllGlobalLoadUsesSimpleEnoughForHeapSRA.
1458 static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
1459                DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
1460                    std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
1461   for (Value::use_iterator UI = Load->use_begin(), E = Load->use_end();
1462        UI != E; ) {
1463     Instruction *User = cast<Instruction>(*UI++);
1464     RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
1465   }
1466
1467   if (Load->use_empty()) {
1468     Load->eraseFromParent();
1469     InsertedScalarizedValues.erase(Load);
1470   }
1471 }
1472
1473 /// PerformHeapAllocSRoA - CI is an allocation of an array of structures.  Break
1474 /// it up into multiple allocations of arrays of the fields.
1475 static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, CallInst *CI,
1476                                             Value *NElems, DataLayout *TD,
1477                                             const TargetLibraryInfo *TLI) {
1478   DEBUG(dbgs() << "SROA HEAP ALLOC: " << *GV << "  MALLOC = " << *CI << '\n');
1479   Type *MAT = getMallocAllocatedType(CI, TLI);
1480   StructType *STy = cast<StructType>(MAT);
1481
1482   // There is guaranteed to be at least one use of the malloc (storing
1483   // it into GV).  If there are other uses, change them to be uses of
1484   // the global to simplify later code.  This also deletes the store
1485   // into GV.
1486   ReplaceUsesOfMallocWithGlobal(CI, GV);
1487
1488   // Okay, at this point, there are no users of the malloc.  Insert N
1489   // new mallocs at the same place as CI, and N globals.
1490   std::vector<Value*> FieldGlobals;
1491   std::vector<Value*> FieldMallocs;
1492
1493   for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
1494     Type *FieldTy = STy->getElementType(FieldNo);
1495     PointerType *PFieldTy = PointerType::getUnqual(FieldTy);
1496
1497     GlobalVariable *NGV =
1498       new GlobalVariable(*GV->getParent(),
1499                          PFieldTy, false, GlobalValue::InternalLinkage,
1500                          Constant::getNullValue(PFieldTy),
1501                          GV->getName() + ".f" + Twine(FieldNo), GV,
1502                          GV->getThreadLocalMode());
1503     FieldGlobals.push_back(NGV);
1504
1505     unsigned TypeSize = TD->getTypeAllocSize(FieldTy);
1506     if (StructType *ST = dyn_cast<StructType>(FieldTy))
1507       TypeSize = TD->getStructLayout(ST)->getSizeInBytes();
1508     Type *IntPtrTy = TD->getIntPtrType(CI->getContext());
1509     Value *NMI = CallInst::CreateMalloc(CI, IntPtrTy, FieldTy,
1510                                         ConstantInt::get(IntPtrTy, TypeSize),
1511                                         NElems, 0,
1512                                         CI->getName() + ".f" + Twine(FieldNo));
1513     FieldMallocs.push_back(NMI);
1514     new StoreInst(NMI, NGV, CI);
1515   }
1516
1517   // The tricky aspect of this transformation is handling the case when malloc
1518   // fails.  In the original code, malloc failing would set the result pointer
1519   // of malloc to null.  In this case, some mallocs could succeed and others
1520   // could fail.  As such, we emit code that looks like this:
1521   //    F0 = malloc(field0)
1522   //    F1 = malloc(field1)
1523   //    F2 = malloc(field2)
1524   //    if (F0 == 0 || F1 == 0 || F2 == 0) {
1525   //      if (F0) { free(F0); F0 = 0; }
1526   //      if (F1) { free(F1); F1 = 0; }
1527   //      if (F2) { free(F2); F2 = 0; }
1528   //    }
1529   // The malloc can also fail if its argument is too large.
1530   Constant *ConstantZero = ConstantInt::get(CI->getArgOperand(0)->getType(), 0);
1531   Value *RunningOr = new ICmpInst(CI, ICmpInst::ICMP_SLT, CI->getArgOperand(0),
1532                                   ConstantZero, "isneg");
1533   for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
1534     Value *Cond = new ICmpInst(CI, ICmpInst::ICMP_EQ, FieldMallocs[i],
1535                              Constant::getNullValue(FieldMallocs[i]->getType()),
1536                                "isnull");
1537     RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", CI);
1538   }
1539
1540   // Split the basic block at the old malloc.
1541   BasicBlock *OrigBB = CI->getParent();
1542   BasicBlock *ContBB = OrigBB->splitBasicBlock(CI, "malloc_cont");
1543
1544   // Create the block to check the first condition.  Put all these blocks at the
1545   // end of the function as they are unlikely to be executed.
1546   BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1547                                                 "malloc_ret_null",
1548                                                 OrigBB->getParent());
1549
1550   // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1551   // branch on RunningOr.
1552   OrigBB->getTerminator()->eraseFromParent();
1553   BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
1554
1555   // Within the NullPtrBlock, we need to emit a comparison and branch for each
1556   // pointer, because some may be null while others are not.
1557   for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1558     Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
1559     Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
1560                               Constant::getNullValue(GVVal->getType()));
1561     BasicBlock *FreeBlock = BasicBlock::Create(Cmp->getContext(), "free_it",
1562                                                OrigBB->getParent());
1563     BasicBlock *NextBlock = BasicBlock::Create(Cmp->getContext(), "next",
1564                                                OrigBB->getParent());
1565     Instruction *BI = BranchInst::Create(FreeBlock, NextBlock,
1566                                          Cmp, NullPtrBlock);
1567
1568     // Fill in FreeBlock.
1569     CallInst::CreateFree(GVVal, BI);
1570     new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1571                   FreeBlock);
1572     BranchInst::Create(NextBlock, FreeBlock);
1573
1574     NullPtrBlock = NextBlock;
1575   }
1576
1577   BranchInst::Create(ContBB, NullPtrBlock);
1578
1579   // CI is no longer needed, remove it.
1580   CI->eraseFromParent();
1581
1582   /// InsertedScalarizedLoads - As we process loads, if we can't immediately
1583   /// update all uses of the load, keep track of what scalarized loads are
1584   /// inserted for a given load.
1585   DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1586   InsertedScalarizedValues[GV] = FieldGlobals;
1587
1588   std::vector<std::pair<PHINode*, unsigned> > PHIsToRewrite;
1589
1590   // Okay, the malloc site is completely handled.  All of the uses of GV are now
1591   // loads, and all uses of those loads are simple.  Rewrite them to use loads
1592   // of the per-field globals instead.
1593   for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;) {
1594     Instruction *User = cast<Instruction>(*UI++);
1595
1596     if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
1597       RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
1598       continue;
1599     }
1600
1601     // Must be a store of null.
1602     StoreInst *SI = cast<StoreInst>(User);
1603     assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1604            "Unexpected heap-sra user!");
1605
1606     // Insert a store of null into each global.
1607     for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1608       PointerType *PT = cast<PointerType>(FieldGlobals[i]->getType());
1609       Constant *Null = Constant::getNullValue(PT->getElementType());
1610       new StoreInst(Null, FieldGlobals[i], SI);
1611     }
1612     // Erase the original store.
1613     SI->eraseFromParent();
1614   }
1615
1616   // While we have PHIs that are interesting to rewrite, do it.
1617   while (!PHIsToRewrite.empty()) {
1618     PHINode *PN = PHIsToRewrite.back().first;
1619     unsigned FieldNo = PHIsToRewrite.back().second;
1620     PHIsToRewrite.pop_back();
1621     PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1622     assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1623
1624     // Add all the incoming values.  This can materialize more phis.
1625     for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1626       Value *InVal = PN->getIncomingValue(i);
1627       InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
1628                                PHIsToRewrite);
1629       FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1630     }
1631   }
1632
1633   // Drop all inter-phi links and any loads that made it this far.
1634   for (DenseMap<Value*, std::vector<Value*> >::iterator
1635        I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1636        I != E; ++I) {
1637     if (PHINode *PN = dyn_cast<PHINode>(I->first))
1638       PN->dropAllReferences();
1639     else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1640       LI->dropAllReferences();
1641   }
1642
1643   // Delete all the phis and loads now that inter-references are dead.
1644   for (DenseMap<Value*, std::vector<Value*> >::iterator
1645        I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1646        I != E; ++I) {
1647     if (PHINode *PN = dyn_cast<PHINode>(I->first))
1648       PN->eraseFromParent();
1649     else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1650       LI->eraseFromParent();
1651   }
1652
1653   // The old global is now dead, remove it.
1654   GV->eraseFromParent();
1655
1656   ++NumHeapSRA;
1657   return cast<GlobalVariable>(FieldGlobals[0]);
1658 }
1659
1660 /// TryToOptimizeStoreOfMallocToGlobal - This function is called when we see a
1661 /// pointer global variable with a single value stored it that is a malloc or
1662 /// cast of malloc.
1663 static bool TryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV,
1664                                                CallInst *CI,
1665                                                Type *AllocTy,
1666                                                AtomicOrdering Ordering,
1667                                                Module::global_iterator &GVI,
1668                                                DataLayout *TD,
1669                                                TargetLibraryInfo *TLI) {
1670   if (!TD)
1671     return false;
1672
1673   // If this is a malloc of an abstract type, don't touch it.
1674   if (!AllocTy->isSized())
1675     return false;
1676
1677   // We can't optimize this global unless all uses of it are *known* to be
1678   // of the malloc value, not of the null initializer value (consider a use
1679   // that compares the global's value against zero to see if the malloc has
1680   // been reached).  To do this, we check to see if all uses of the global
1681   // would trap if the global were null: this proves that they must all
1682   // happen after the malloc.
1683   if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1684     return false;
1685
1686   // We can't optimize this if the malloc itself is used in a complex way,
1687   // for example, being stored into multiple globals.  This allows the
1688   // malloc to be stored into the specified global, loaded icmp'd, and
1689   // GEP'd.  These are all things we could transform to using the global
1690   // for.
1691   SmallPtrSet<const PHINode*, 8> PHIs;
1692   if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(CI, GV, PHIs))
1693     return false;
1694
1695   // If we have a global that is only initialized with a fixed size malloc,
1696   // transform the program to use global memory instead of malloc'd memory.
1697   // This eliminates dynamic allocation, avoids an indirection accessing the
1698   // data, and exposes the resultant global to further GlobalOpt.
1699   // We cannot optimize the malloc if we cannot determine malloc array size.
1700   Value *NElems = getMallocArraySize(CI, TD, TLI, true);
1701   if (!NElems)
1702     return false;
1703
1704   if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
1705     // Restrict this transformation to only working on small allocations
1706     // (2048 bytes currently), as we don't want to introduce a 16M global or
1707     // something.
1708     if (NElements->getZExtValue() * TD->getTypeAllocSize(AllocTy) < 2048) {
1709       GVI = OptimizeGlobalAddressOfMalloc(GV, CI, AllocTy, NElements, TD, TLI);
1710       return true;
1711     }
1712
1713   // If the allocation is an array of structures, consider transforming this
1714   // into multiple malloc'd arrays, one for each field.  This is basically
1715   // SRoA for malloc'd memory.
1716
1717   if (Ordering != NotAtomic)
1718     return false;
1719
1720   // If this is an allocation of a fixed size array of structs, analyze as a
1721   // variable size array.  malloc [100 x struct],1 -> malloc struct, 100
1722   if (NElems == ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
1723     if (ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
1724       AllocTy = AT->getElementType();
1725
1726   StructType *AllocSTy = dyn_cast<StructType>(AllocTy);
1727   if (!AllocSTy)
1728     return false;
1729
1730   // This the structure has an unreasonable number of fields, leave it
1731   // alone.
1732   if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
1733       AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, CI)) {
1734
1735     // If this is a fixed size array, transform the Malloc to be an alloc of
1736     // structs.  malloc [100 x struct],1 -> malloc struct, 100
1737     if (ArrayType *AT = dyn_cast<ArrayType>(getMallocAllocatedType(CI, TLI))) {
1738       Type *IntPtrTy = TD->getIntPtrType(CI->getContext());
1739       unsigned TypeSize = TD->getStructLayout(AllocSTy)->getSizeInBytes();
1740       Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize);
1741       Value *NumElements = ConstantInt::get(IntPtrTy, AT->getNumElements());
1742       Instruction *Malloc = CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy,
1743                                                    AllocSize, NumElements,
1744                                                    0, CI->getName());
1745       Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1746       CI->replaceAllUsesWith(Cast);
1747       CI->eraseFromParent();
1748       if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1749         CI = cast<CallInst>(BCI->getOperand(0));
1750       else
1751         CI = cast<CallInst>(Malloc);
1752     }
1753
1754     GVI = PerformHeapAllocSRoA(GV, CI, getMallocArraySize(CI, TD, TLI, true),
1755                                TD, TLI);
1756     return true;
1757   }
1758
1759   return false;
1760 }
1761
1762 // OptimizeOnceStoredGlobal - Try to optimize globals based on the knowledge
1763 // that only one value (besides its initializer) is ever stored to the global.
1764 static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
1765                                      AtomicOrdering Ordering,
1766                                      Module::global_iterator &GVI,
1767                                      DataLayout *TD, TargetLibraryInfo *TLI) {
1768   // Ignore no-op GEPs and bitcasts.
1769   StoredOnceVal = StoredOnceVal->stripPointerCasts();
1770
1771   // If we are dealing with a pointer global that is initialized to null and
1772   // only has one (non-null) value stored into it, then we can optimize any
1773   // users of the loaded value (often calls and loads) that would trap if the
1774   // value was null.
1775   if (GV->getInitializer()->getType()->isPointerTy() &&
1776       GV->getInitializer()->isNullValue()) {
1777     if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1778       if (GV->getInitializer()->getType() != SOVC->getType())
1779         SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
1780
1781       // Optimize away any trapping uses of the loaded value.
1782       if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC, TD, TLI))
1783         return true;
1784     } else if (CallInst *CI = extractMallocCall(StoredOnceVal, TLI)) {
1785       Type *MallocType = getMallocAllocatedType(CI, TLI);
1786       if (MallocType &&
1787           TryToOptimizeStoreOfMallocToGlobal(GV, CI, MallocType, Ordering, GVI,
1788                                              TD, TLI))
1789         return true;
1790     }
1791   }
1792
1793   return false;
1794 }
1795
1796 /// TryToShrinkGlobalToBoolean - At this point, we have learned that the only
1797 /// two values ever stored into GV are its initializer and OtherVal.  See if we
1798 /// can shrink the global into a boolean and select between the two values
1799 /// whenever it is used.  This exposes the values to other scalar optimizations.
1800 static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1801   Type *GVElType = GV->getType()->getElementType();
1802
1803   // If GVElType is already i1, it is already shrunk.  If the type of the GV is
1804   // an FP value, pointer or vector, don't do this optimization because a select
1805   // between them is very expensive and unlikely to lead to later
1806   // simplification.  In these cases, we typically end up with "cond ? v1 : v2"
1807   // where v1 and v2 both require constant pool loads, a big loss.
1808   if (GVElType == Type::getInt1Ty(GV->getContext()) ||
1809       GVElType->isFloatingPointTy() ||
1810       GVElType->isPointerTy() || GVElType->isVectorTy())
1811     return false;
1812
1813   // Walk the use list of the global seeing if all the uses are load or store.
1814   // If there is anything else, bail out.
1815   for (Value::use_iterator I = GV->use_begin(), E = GV->use_end(); I != E; ++I){
1816     User *U = *I;
1817     if (!isa<LoadInst>(U) && !isa<StoreInst>(U))
1818       return false;
1819   }
1820
1821   DEBUG(dbgs() << "   *** SHRINKING TO BOOL: " << *GV);
1822
1823   // Create the new global, initializing it to false.
1824   GlobalVariable *NewGV = new GlobalVariable(Type::getInt1Ty(GV->getContext()),
1825                                              false,
1826                                              GlobalValue::InternalLinkage,
1827                                         ConstantInt::getFalse(GV->getContext()),
1828                                              GV->getName()+".b",
1829                                              GV->getThreadLocalMode(),
1830                                              GV->getType()->getAddressSpace());
1831   GV->getParent()->getGlobalList().insert(GV, NewGV);
1832
1833   Constant *InitVal = GV->getInitializer();
1834   assert(InitVal->getType() != Type::getInt1Ty(GV->getContext()) &&
1835          "No reason to shrink to bool!");
1836
1837   // If initialized to zero and storing one into the global, we can use a cast
1838   // instead of a select to synthesize the desired value.
1839   bool IsOneZero = false;
1840   if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1841     IsOneZero = InitVal->isNullValue() && CI->isOne();
1842
1843   while (!GV->use_empty()) {
1844     Instruction *UI = cast<Instruction>(GV->use_back());
1845     if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1846       // Change the store into a boolean store.
1847       bool StoringOther = SI->getOperand(0) == OtherVal;
1848       // Only do this if we weren't storing a loaded value.
1849       Value *StoreVal;
1850       if (StoringOther || SI->getOperand(0) == InitVal) {
1851         StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1852                                     StoringOther);
1853       } else {
1854         // Otherwise, we are storing a previously loaded copy.  To do this,
1855         // change the copy from copying the original value to just copying the
1856         // bool.
1857         Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1858
1859         // If we've already replaced the input, StoredVal will be a cast or
1860         // select instruction.  If not, it will be a load of the original
1861         // global.
1862         if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1863           assert(LI->getOperand(0) == GV && "Not a copy!");
1864           // Insert a new load, to preserve the saved value.
1865           StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1866                                   LI->getOrdering(), LI->getSynchScope(), LI);
1867         } else {
1868           assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1869                  "This is not a form that we understand!");
1870           StoreVal = StoredVal->getOperand(0);
1871           assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1872         }
1873       }
1874       new StoreInst(StoreVal, NewGV, false, 0,
1875                     SI->getOrdering(), SI->getSynchScope(), SI);
1876     } else {
1877       // Change the load into a load of bool then a select.
1878       LoadInst *LI = cast<LoadInst>(UI);
1879       LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1880                                    LI->getOrdering(), LI->getSynchScope(), LI);
1881       Value *NSI;
1882       if (IsOneZero)
1883         NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1884       else
1885         NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
1886       NSI->takeName(LI);
1887       LI->replaceAllUsesWith(NSI);
1888     }
1889     UI->eraseFromParent();
1890   }
1891
1892   // Retain the name of the old global variable. People who are debugging their
1893   // programs may expect these variables to be named the same.
1894   NewGV->takeName(GV);
1895   GV->eraseFromParent();
1896   return true;
1897 }
1898
1899
1900 /// ProcessGlobal - Analyze the specified global variable and optimize it if
1901 /// possible.  If we make a change, return true.
1902 bool GlobalOpt::ProcessGlobal(GlobalVariable *GV,
1903                               Module::global_iterator &GVI) {
1904   if (!GV->isDiscardableIfUnused())
1905     return false;
1906
1907   // Do more involved optimizations if the global is internal.
1908   GV->removeDeadConstantUsers();
1909
1910   if (GV->use_empty()) {
1911     DEBUG(dbgs() << "GLOBAL DEAD: " << *GV);
1912     GV->eraseFromParent();
1913     ++NumDeleted;
1914     return true;
1915   }
1916
1917   if (GV->hasLinkOnceODRLinkage() && GV->hasUnnamedAddr() && GV->isConstant() &&
1918       GV->getVisibility() != GlobalValue::HiddenVisibility) {
1919     GV->setVisibility(GlobalValue::HiddenVisibility);
1920     return true;
1921   }
1922
1923   if (!GV->hasLocalLinkage())
1924     return false;
1925
1926   SmallPtrSet<const PHINode*, 16> PHIUsers;
1927   GlobalStatus GS;
1928
1929   if (AnalyzeGlobal(GV, GS, PHIUsers))
1930     return false;
1931
1932   if (!GS.isCompared && !GV->hasUnnamedAddr()) {
1933     GV->setUnnamedAddr(true);
1934     NumUnnamed++;
1935     return true;
1936   }
1937
1938   if (GV->isConstant() || !GV->hasInitializer())
1939     return false;
1940
1941   return ProcessInternalGlobal(GV, GVI, PHIUsers, GS);
1942 }
1943
1944 /// ProcessInternalGlobal - Analyze the specified global variable and optimize
1945 /// it if possible.  If we make a change, return true.
1946 bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
1947                                       Module::global_iterator &GVI,
1948                                 const SmallPtrSet<const PHINode*, 16> &PHIUsers,
1949                                       const GlobalStatus &GS) {
1950   // If this is a first class global and has only one accessing function
1951   // and this function is main (which we know is not recursive), we replace
1952   // the global with a local alloca in this function.
1953   //
1954   // NOTE: It doesn't make sense to promote non single-value types since we
1955   // are just replacing static memory to stack memory.
1956   //
1957   // If the global is in different address space, don't bring it to stack.
1958   if (!GS.HasMultipleAccessingFunctions &&
1959       GS.AccessingFunction && !GS.HasNonInstructionUser &&
1960       GV->getType()->getElementType()->isSingleValueType() &&
1961       GS.AccessingFunction->getName() == "main" &&
1962       GS.AccessingFunction->hasExternalLinkage() &&
1963       GV->getType()->getAddressSpace() == 0) {
1964     DEBUG(dbgs() << "LOCALIZING GLOBAL: " << *GV);
1965     Instruction &FirstI = const_cast<Instruction&>(*GS.AccessingFunction
1966                                                    ->getEntryBlock().begin());
1967     Type *ElemTy = GV->getType()->getElementType();
1968     // FIXME: Pass Global's alignment when globals have alignment
1969     AllocaInst *Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), &FirstI);
1970     if (!isa<UndefValue>(GV->getInitializer()))
1971       new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1972
1973     GV->replaceAllUsesWith(Alloca);
1974     GV->eraseFromParent();
1975     ++NumLocalized;
1976     return true;
1977   }
1978
1979   // If the global is never loaded (but may be stored to), it is dead.
1980   // Delete it now.
1981   if (!GS.isLoaded) {
1982     DEBUG(dbgs() << "GLOBAL NEVER LOADED: " << *GV);
1983
1984     bool Changed;
1985     if (isLeakCheckerRoot(GV)) {
1986       // Delete any constant stores to the global.
1987       Changed = CleanupPointerRootUsers(GV, TLI);
1988     } else {
1989       // Delete any stores we can find to the global.  We may not be able to
1990       // make it completely dead though.
1991       Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer(), TD, TLI);
1992     }
1993
1994     // If the global is dead now, delete it.
1995     if (GV->use_empty()) {
1996       GV->eraseFromParent();
1997       ++NumDeleted;
1998       Changed = true;
1999     }
2000     return Changed;
2001
2002   } else if (GS.StoredType <= GlobalStatus::isInitializerStored) {
2003     DEBUG(dbgs() << "MARKING CONSTANT: " << *GV << "\n");
2004     GV->setConstant(true);
2005
2006     // Clean up any obviously simplifiable users now.
2007     CleanupConstantGlobalUsers(GV, GV->getInitializer(), TD, TLI);
2008
2009     // If the global is dead now, just nuke it.
2010     if (GV->use_empty()) {
2011       DEBUG(dbgs() << "   *** Marking constant allowed us to simplify "
2012             << "all users and delete global!\n");
2013       GV->eraseFromParent();
2014       ++NumDeleted;
2015     }
2016
2017     ++NumMarked;
2018     return true;
2019   } else if (!GV->getInitializer()->getType()->isSingleValueType()) {
2020     if (DataLayout *TD = getAnalysisIfAvailable<DataLayout>())
2021       if (GlobalVariable *FirstNewGV = SRAGlobal(GV, *TD)) {
2022         GVI = FirstNewGV;  // Don't skip the newly produced globals!
2023         return true;
2024       }
2025   } else if (GS.StoredType == GlobalStatus::isStoredOnce) {
2026     // If the initial value for the global was an undef value, and if only
2027     // one other value was stored into it, we can just change the
2028     // initializer to be the stored value, then delete all stores to the
2029     // global.  This allows us to mark it constant.
2030     if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
2031       if (isa<UndefValue>(GV->getInitializer())) {
2032         // Change the initial value here.
2033         GV->setInitializer(SOVConstant);
2034
2035         // Clean up any obviously simplifiable users now.
2036         CleanupConstantGlobalUsers(GV, GV->getInitializer(), TD, TLI);
2037
2038         if (GV->use_empty()) {
2039           DEBUG(dbgs() << "   *** Substituting initializer allowed us to "
2040                        << "simplify all users and delete global!\n");
2041           GV->eraseFromParent();
2042           ++NumDeleted;
2043         } else {
2044           GVI = GV;
2045         }
2046         ++NumSubstitute;
2047         return true;
2048       }
2049
2050     // Try to optimize globals based on the knowledge that only one value
2051     // (besides its initializer) is ever stored to the global.
2052     if (OptimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GS.Ordering, GVI,
2053                                  TD, TLI))
2054       return true;
2055
2056     // Otherwise, if the global was not a boolean, we can shrink it to be a
2057     // boolean.
2058     if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
2059       if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
2060         ++NumShrunkToBool;
2061         return true;
2062       }
2063   }
2064
2065   return false;
2066 }
2067
2068 /// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
2069 /// function, changing them to FastCC.
2070 static void ChangeCalleesToFastCall(Function *F) {
2071   for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
2072     if (isa<BlockAddress>(*UI))
2073       continue;
2074     CallSite User(cast<Instruction>(*UI));
2075     User.setCallingConv(CallingConv::Fast);
2076   }
2077 }
2078
2079 static AttributeSet StripNest(LLVMContext &C, const AttributeSet &Attrs) {
2080   for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
2081     unsigned Index = Attrs.getSlotIndex(i);
2082     if (!Attrs.getSlotAttributes(i).hasAttribute(Index, Attribute::Nest))
2083       continue;
2084
2085     // There can be only one.
2086     return Attrs.removeAttribute(C, Index, Attribute::Nest);
2087   }
2088
2089   return Attrs;
2090 }
2091
2092 static void RemoveNestAttribute(Function *F) {
2093   F->setAttributes(StripNest(F->getContext(), F->getAttributes()));
2094   for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
2095     if (isa<BlockAddress>(*UI))
2096       continue;
2097     CallSite User(cast<Instruction>(*UI));
2098     User.setAttributes(StripNest(F->getContext(), User.getAttributes()));
2099   }
2100 }
2101
2102 bool GlobalOpt::OptimizeFunctions(Module &M) {
2103   bool Changed = false;
2104   // Optimize functions.
2105   for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
2106     Function *F = FI++;
2107     // Functions without names cannot be referenced outside this module.
2108     if (!F->hasName() && !F->isDeclaration())
2109       F->setLinkage(GlobalValue::InternalLinkage);
2110     F->removeDeadConstantUsers();
2111     if (F->isDefTriviallyDead()) {
2112       F->eraseFromParent();
2113       Changed = true;
2114       ++NumFnDeleted;
2115     } else if (F->hasLinkOnceODRLinkage() && F->hasUnnamedAddr() &&
2116                F->getVisibility() != GlobalValue::HiddenVisibility) {
2117       F->setVisibility(GlobalValue::HiddenVisibility);
2118       Changed = true;
2119     } else if (F->hasLocalLinkage()) {
2120       if (F->getCallingConv() == CallingConv::C && !F->isVarArg() &&
2121           !F->hasAddressTaken()) {
2122         // If this function has C calling conventions, is not a varargs
2123         // function, and is only called directly, promote it to use the Fast
2124         // calling convention.
2125         F->setCallingConv(CallingConv::Fast);
2126         ChangeCalleesToFastCall(F);
2127         ++NumFastCallFns;
2128         Changed = true;
2129       }
2130
2131       if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
2132           !F->hasAddressTaken()) {
2133         // The function is not used by a trampoline intrinsic, so it is safe
2134         // to remove the 'nest' attribute.
2135         RemoveNestAttribute(F);
2136         ++NumNestRemoved;
2137         Changed = true;
2138       }
2139     }
2140   }
2141   return Changed;
2142 }
2143
2144 bool GlobalOpt::OptimizeGlobalVars(Module &M) {
2145   bool Changed = false;
2146   for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
2147        GVI != E; ) {
2148     GlobalVariable *GV = GVI++;
2149     // Global variables without names cannot be referenced outside this module.
2150     if (!GV->hasName() && !GV->isDeclaration())
2151       GV->setLinkage(GlobalValue::InternalLinkage);
2152     // Simplify the initializer.
2153     if (GV->hasInitializer())
2154       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GV->getInitializer())) {
2155         Constant *New = ConstantFoldConstantExpression(CE, TD, TLI);
2156         if (New && New != CE)
2157           GV->setInitializer(New);
2158       }
2159
2160     Changed |= ProcessGlobal(GV, GVI);
2161   }
2162   return Changed;
2163 }
2164
2165 /// FindGlobalCtors - Find the llvm.global_ctors list, verifying that all
2166 /// initializers have an init priority of 65535.
2167 GlobalVariable *GlobalOpt::FindGlobalCtors(Module &M) {
2168   GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
2169   if (GV == 0) return 0;
2170
2171   // Verify that the initializer is simple enough for us to handle. We are
2172   // only allowed to optimize the initializer if it is unique.
2173   if (!GV->hasUniqueInitializer()) return 0;
2174
2175   if (isa<ConstantAggregateZero>(GV->getInitializer()))
2176     return GV;
2177   ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
2178
2179   for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i) {
2180     if (isa<ConstantAggregateZero>(*i))
2181       continue;
2182     ConstantStruct *CS = cast<ConstantStruct>(*i);
2183     if (isa<ConstantPointerNull>(CS->getOperand(1)))
2184       continue;
2185
2186     // Must have a function or null ptr.
2187     if (!isa<Function>(CS->getOperand(1)))
2188       return 0;
2189
2190     // Init priority must be standard.
2191     ConstantInt *CI = cast<ConstantInt>(CS->getOperand(0));
2192     if (CI->getZExtValue() != 65535)
2193       return 0;
2194   }
2195
2196   return GV;
2197 }
2198
2199 /// ParseGlobalCtors - Given a llvm.global_ctors list that we can understand,
2200 /// return a list of the functions and null terminator as a vector.
2201 static std::vector<Function*> ParseGlobalCtors(GlobalVariable *GV) {
2202   if (GV->getInitializer()->isNullValue())
2203     return std::vector<Function*>();
2204   ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
2205   std::vector<Function*> Result;
2206   Result.reserve(CA->getNumOperands());
2207   for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i) {
2208     ConstantStruct *CS = cast<ConstantStruct>(*i);
2209     Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
2210   }
2211   return Result;
2212 }
2213
2214 /// InstallGlobalCtors - Given a specified llvm.global_ctors list, install the
2215 /// specified array, returning the new global to use.
2216 static GlobalVariable *InstallGlobalCtors(GlobalVariable *GCL,
2217                                           const std::vector<Function*> &Ctors) {
2218   // If we made a change, reassemble the initializer list.
2219   Constant *CSVals[2];
2220   CSVals[0] = ConstantInt::get(Type::getInt32Ty(GCL->getContext()), 65535);
2221   CSVals[1] = 0;
2222
2223   StructType *StructTy =
2224     cast <StructType>(
2225     cast<ArrayType>(GCL->getType()->getElementType())->getElementType());
2226
2227   // Create the new init list.
2228   std::vector<Constant*> CAList;
2229   for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
2230     if (Ctors[i]) {
2231       CSVals[1] = Ctors[i];
2232     } else {
2233       Type *FTy = FunctionType::get(Type::getVoidTy(GCL->getContext()),
2234                                           false);
2235       PointerType *PFTy = PointerType::getUnqual(FTy);
2236       CSVals[1] = Constant::getNullValue(PFTy);
2237       CSVals[0] = ConstantInt::get(Type::getInt32Ty(GCL->getContext()),
2238                                    0x7fffffff);
2239     }
2240     CAList.push_back(ConstantStruct::get(StructTy, CSVals));
2241   }
2242
2243   // Create the array initializer.
2244   Constant *CA = ConstantArray::get(ArrayType::get(StructTy,
2245                                                    CAList.size()), CAList);
2246
2247   // If we didn't change the number of elements, don't create a new GV.
2248   if (CA->getType() == GCL->getInitializer()->getType()) {
2249     GCL->setInitializer(CA);
2250     return GCL;
2251   }
2252
2253   // Create the new global and insert it next to the existing list.
2254   GlobalVariable *NGV = new GlobalVariable(CA->getType(), GCL->isConstant(),
2255                                            GCL->getLinkage(), CA, "",
2256                                            GCL->getThreadLocalMode());
2257   GCL->getParent()->getGlobalList().insert(GCL, NGV);
2258   NGV->takeName(GCL);
2259
2260   // Nuke the old list, replacing any uses with the new one.
2261   if (!GCL->use_empty()) {
2262     Constant *V = NGV;
2263     if (V->getType() != GCL->getType())
2264       V = ConstantExpr::getBitCast(V, GCL->getType());
2265     GCL->replaceAllUsesWith(V);
2266   }
2267   GCL->eraseFromParent();
2268
2269   if (Ctors.size())
2270     return NGV;
2271   else
2272     return 0;
2273 }
2274
2275
2276 static inline bool
2277 isSimpleEnoughValueToCommit(Constant *C,
2278                             SmallPtrSet<Constant*, 8> &SimpleConstants,
2279                             const DataLayout *TD);
2280
2281
2282 /// isSimpleEnoughValueToCommit - Return true if the specified constant can be
2283 /// handled by the code generator.  We don't want to generate something like:
2284 ///   void *X = &X/42;
2285 /// because the code generator doesn't have a relocation that can handle that.
2286 ///
2287 /// This function should be called if C was not found (but just got inserted)
2288 /// in SimpleConstants to avoid having to rescan the same constants all the
2289 /// time.
2290 static bool isSimpleEnoughValueToCommitHelper(Constant *C,
2291                                    SmallPtrSet<Constant*, 8> &SimpleConstants,
2292                                    const DataLayout *TD) {
2293   // Simple integer, undef, constant aggregate zero, global addresses, etc are
2294   // all supported.
2295   if (C->getNumOperands() == 0 || isa<BlockAddress>(C) ||
2296       isa<GlobalValue>(C))
2297     return true;
2298
2299   // Aggregate values are safe if all their elements are.
2300   if (isa<ConstantArray>(C) || isa<ConstantStruct>(C) ||
2301       isa<ConstantVector>(C)) {
2302     for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
2303       Constant *Op = cast<Constant>(C->getOperand(i));
2304       if (!isSimpleEnoughValueToCommit(Op, SimpleConstants, TD))
2305         return false;
2306     }
2307     return true;
2308   }
2309
2310   // We don't know exactly what relocations are allowed in constant expressions,
2311   // so we allow &global+constantoffset, which is safe and uniformly supported
2312   // across targets.
2313   ConstantExpr *CE = cast<ConstantExpr>(C);
2314   switch (CE->getOpcode()) {
2315   case Instruction::BitCast:
2316     // Bitcast is fine if the casted value is fine.
2317     return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, TD);
2318
2319   case Instruction::IntToPtr:
2320   case Instruction::PtrToInt:
2321     // int <=> ptr is fine if the int type is the same size as the
2322     // pointer type.
2323     if (!TD || TD->getTypeSizeInBits(CE->getType()) !=
2324                TD->getTypeSizeInBits(CE->getOperand(0)->getType()))
2325       return false;
2326     return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, TD);
2327
2328   // GEP is fine if it is simple + constant offset.
2329   case Instruction::GetElementPtr:
2330     for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
2331       if (!isa<ConstantInt>(CE->getOperand(i)))
2332         return false;
2333     return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, TD);
2334
2335   case Instruction::Add:
2336     // We allow simple+cst.
2337     if (!isa<ConstantInt>(CE->getOperand(1)))
2338       return false;
2339     return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, TD);
2340   }
2341   return false;
2342 }
2343
2344 static inline bool
2345 isSimpleEnoughValueToCommit(Constant *C,
2346                             SmallPtrSet<Constant*, 8> &SimpleConstants,
2347                             const DataLayout *TD) {
2348   // If we already checked this constant, we win.
2349   if (!SimpleConstants.insert(C)) return true;
2350   // Check the constant.
2351   return isSimpleEnoughValueToCommitHelper(C, SimpleConstants, TD);
2352 }
2353
2354
2355 /// isSimpleEnoughPointerToCommit - Return true if this constant is simple
2356 /// enough for us to understand.  In particular, if it is a cast to anything
2357 /// other than from one pointer type to another pointer type, we punt.
2358 /// We basically just support direct accesses to globals and GEP's of
2359 /// globals.  This should be kept up to date with CommitValueTo.
2360 static bool isSimpleEnoughPointerToCommit(Constant *C) {
2361   // Conservatively, avoid aggregate types. This is because we don't
2362   // want to worry about them partially overlapping other stores.
2363   if (!cast<PointerType>(C->getType())->getElementType()->isSingleValueType())
2364     return false;
2365
2366   if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
2367     // Do not allow weak/*_odr/linkonce/dllimport/dllexport linkage or
2368     // external globals.
2369     return GV->hasUniqueInitializer();
2370
2371   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
2372     // Handle a constantexpr gep.
2373     if (CE->getOpcode() == Instruction::GetElementPtr &&
2374         isa<GlobalVariable>(CE->getOperand(0)) &&
2375         cast<GEPOperator>(CE)->isInBounds()) {
2376       GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2377       // Do not allow weak/*_odr/linkonce/dllimport/dllexport linkage or
2378       // external globals.
2379       if (!GV->hasUniqueInitializer())
2380         return false;
2381
2382       // The first index must be zero.
2383       ConstantInt *CI = dyn_cast<ConstantInt>(*llvm::next(CE->op_begin()));
2384       if (!CI || !CI->isZero()) return false;
2385
2386       // The remaining indices must be compile-time known integers within the
2387       // notional bounds of the corresponding static array types.
2388       if (!CE->isGEPWithNoNotionalOverIndexing())
2389         return false;
2390
2391       return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
2392
2393     // A constantexpr bitcast from a pointer to another pointer is a no-op,
2394     // and we know how to evaluate it by moving the bitcast from the pointer
2395     // operand to the value operand.
2396     } else if (CE->getOpcode() == Instruction::BitCast &&
2397                isa<GlobalVariable>(CE->getOperand(0))) {
2398       // Do not allow weak/*_odr/linkonce/dllimport/dllexport linkage or
2399       // external globals.
2400       return cast<GlobalVariable>(CE->getOperand(0))->hasUniqueInitializer();
2401     }
2402   }
2403
2404   return false;
2405 }
2406
2407 /// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
2408 /// initializer.  This returns 'Init' modified to reflect 'Val' stored into it.
2409 /// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
2410 static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2411                                    ConstantExpr *Addr, unsigned OpNo) {
2412   // Base case of the recursion.
2413   if (OpNo == Addr->getNumOperands()) {
2414     assert(Val->getType() == Init->getType() && "Type mismatch!");
2415     return Val;
2416   }
2417
2418   SmallVector<Constant*, 32> Elts;
2419   if (StructType *STy = dyn_cast<StructType>(Init->getType())) {
2420     // Break up the constant into its elements.
2421     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2422       Elts.push_back(Init->getAggregateElement(i));
2423
2424     // Replace the element that we are supposed to.
2425     ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2426     unsigned Idx = CU->getZExtValue();
2427     assert(Idx < STy->getNumElements() && "Struct index out of range!");
2428     Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2429
2430     // Return the modified struct.
2431     return ConstantStruct::get(STy, Elts);
2432   }
2433
2434   ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2435   SequentialType *InitTy = cast<SequentialType>(Init->getType());
2436
2437   uint64_t NumElts;
2438   if (ArrayType *ATy = dyn_cast<ArrayType>(InitTy))
2439     NumElts = ATy->getNumElements();
2440   else
2441     NumElts = InitTy->getVectorNumElements();
2442
2443   // Break up the array into elements.
2444   for (uint64_t i = 0, e = NumElts; i != e; ++i)
2445     Elts.push_back(Init->getAggregateElement(i));
2446
2447   assert(CI->getZExtValue() < NumElts);
2448   Elts[CI->getZExtValue()] =
2449     EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2450
2451   if (Init->getType()->isArrayTy())
2452     return ConstantArray::get(cast<ArrayType>(InitTy), Elts);
2453   return ConstantVector::get(Elts);
2454 }
2455
2456 /// CommitValueTo - We have decided that Addr (which satisfies the predicate
2457 /// isSimpleEnoughPointerToCommit) should get Val as its value.  Make it happen.
2458 static void CommitValueTo(Constant *Val, Constant *Addr) {
2459   if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2460     assert(GV->hasInitializer());
2461     GV->setInitializer(Val);
2462     return;
2463   }
2464
2465   ConstantExpr *CE = cast<ConstantExpr>(Addr);
2466   GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2467   GV->setInitializer(EvaluateStoreInto(GV->getInitializer(), Val, CE, 2));
2468 }
2469
2470 namespace {
2471
2472 /// Evaluator - This class evaluates LLVM IR, producing the Constant
2473 /// representing each SSA instruction.  Changes to global variables are stored
2474 /// in a mapping that can be iterated over after the evaluation is complete.
2475 /// Once an evaluation call fails, the evaluation object should not be reused.
2476 class Evaluator {
2477 public:
2478   Evaluator(const DataLayout *TD, const TargetLibraryInfo *TLI)
2479     : TD(TD), TLI(TLI) {
2480     ValueStack.push_back(new DenseMap<Value*, Constant*>);
2481   }
2482
2483   ~Evaluator() {
2484     DeleteContainerPointers(ValueStack);
2485     while (!AllocaTmps.empty()) {
2486       GlobalVariable *Tmp = AllocaTmps.back();
2487       AllocaTmps.pop_back();
2488
2489       // If there are still users of the alloca, the program is doing something
2490       // silly, e.g. storing the address of the alloca somewhere and using it
2491       // later.  Since this is undefined, we'll just make it be null.
2492       if (!Tmp->use_empty())
2493         Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
2494       delete Tmp;
2495     }
2496   }
2497
2498   /// EvaluateFunction - Evaluate a call to function F, returning true if
2499   /// successful, false if we can't evaluate it.  ActualArgs contains the formal
2500   /// arguments for the function.
2501   bool EvaluateFunction(Function *F, Constant *&RetVal,
2502                         const SmallVectorImpl<Constant*> &ActualArgs);
2503
2504   /// EvaluateBlock - Evaluate all instructions in block BB, returning true if
2505   /// successful, false if we can't evaluate it.  NewBB returns the next BB that
2506   /// control flows into, or null upon return.
2507   bool EvaluateBlock(BasicBlock::iterator CurInst, BasicBlock *&NextBB);
2508
2509   Constant *getVal(Value *V) {
2510     if (Constant *CV = dyn_cast<Constant>(V)) return CV;
2511     Constant *R = ValueStack.back()->lookup(V);
2512     assert(R && "Reference to an uncomputed value!");
2513     return R;
2514   }
2515
2516   void setVal(Value *V, Constant *C) {
2517     ValueStack.back()->operator[](V) = C;
2518   }
2519
2520   const DenseMap<Constant*, Constant*> &getMutatedMemory() const {
2521     return MutatedMemory;
2522   }
2523
2524   const SmallPtrSet<GlobalVariable*, 8> &getInvariants() const {
2525     return Invariants;
2526   }
2527
2528 private:
2529   Constant *ComputeLoadResult(Constant *P);
2530
2531   /// ValueStack - As we compute SSA register values, we store their contents
2532   /// here. The back of the vector contains the current function and the stack
2533   /// contains the values in the calling frames.
2534   SmallVector<DenseMap<Value*, Constant*>*, 4> ValueStack;
2535
2536   /// CallStack - This is used to detect recursion.  In pathological situations
2537   /// we could hit exponential behavior, but at least there is nothing
2538   /// unbounded.
2539   SmallVector<Function*, 4> CallStack;
2540
2541   /// MutatedMemory - For each store we execute, we update this map.  Loads
2542   /// check this to get the most up-to-date value.  If evaluation is successful,
2543   /// this state is committed to the process.
2544   DenseMap<Constant*, Constant*> MutatedMemory;
2545
2546   /// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
2547   /// to represent its body.  This vector is needed so we can delete the
2548   /// temporary globals when we are done.
2549   SmallVector<GlobalVariable*, 32> AllocaTmps;
2550
2551   /// Invariants - These global variables have been marked invariant by the
2552   /// static constructor.
2553   SmallPtrSet<GlobalVariable*, 8> Invariants;
2554
2555   /// SimpleConstants - These are constants we have checked and know to be
2556   /// simple enough to live in a static initializer of a global.
2557   SmallPtrSet<Constant*, 8> SimpleConstants;
2558
2559   const DataLayout *TD;
2560   const TargetLibraryInfo *TLI;
2561 };
2562
2563 }  // anonymous namespace
2564
2565 /// ComputeLoadResult - Return the value that would be computed by a load from
2566 /// P after the stores reflected by 'memory' have been performed.  If we can't
2567 /// decide, return null.
2568 Constant *Evaluator::ComputeLoadResult(Constant *P) {
2569   // If this memory location has been recently stored, use the stored value: it
2570   // is the most up-to-date.
2571   DenseMap<Constant*, Constant*>::const_iterator I = MutatedMemory.find(P);
2572   if (I != MutatedMemory.end()) return I->second;
2573
2574   // Access it.
2575   if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
2576     if (GV->hasDefinitiveInitializer())
2577       return GV->getInitializer();
2578     return 0;
2579   }
2580
2581   // Handle a constantexpr getelementptr.
2582   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
2583     if (CE->getOpcode() == Instruction::GetElementPtr &&
2584         isa<GlobalVariable>(CE->getOperand(0))) {
2585       GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2586       if (GV->hasDefinitiveInitializer())
2587         return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
2588     }
2589
2590   return 0;  // don't know how to evaluate.
2591 }
2592
2593 /// EvaluateBlock - Evaluate all instructions in block BB, returning true if
2594 /// successful, false if we can't evaluate it.  NewBB returns the next BB that
2595 /// control flows into, or null upon return.
2596 bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst,
2597                               BasicBlock *&NextBB) {
2598   // This is the main evaluation loop.
2599   while (1) {
2600     Constant *InstResult = 0;
2601
2602     DEBUG(dbgs() << "Evaluating Instruction: " << *CurInst << "\n");
2603
2604     if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
2605       if (!SI->isSimple()) {
2606         DEBUG(dbgs() << "Store is not simple! Can not evaluate.\n");
2607         return false;  // no volatile/atomic accesses.
2608       }
2609       Constant *Ptr = getVal(SI->getOperand(1));
2610       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
2611         DEBUG(dbgs() << "Folding constant ptr expression: " << *Ptr);
2612         Ptr = ConstantFoldConstantExpression(CE, TD, TLI);
2613         DEBUG(dbgs() << "; To: " << *Ptr << "\n");
2614       }
2615       if (!isSimpleEnoughPointerToCommit(Ptr)) {
2616         // If this is too complex for us to commit, reject it.
2617         DEBUG(dbgs() << "Pointer is too complex for us to evaluate store.");
2618         return false;
2619       }
2620
2621       Constant *Val = getVal(SI->getOperand(0));
2622
2623       // If this might be too difficult for the backend to handle (e.g. the addr
2624       // of one global variable divided by another) then we can't commit it.
2625       if (!isSimpleEnoughValueToCommit(Val, SimpleConstants, TD)) {
2626         DEBUG(dbgs() << "Store value is too complex to evaluate store. " << *Val
2627               << "\n");
2628         return false;
2629       }
2630
2631       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
2632         if (CE->getOpcode() == Instruction::BitCast) {
2633           DEBUG(dbgs() << "Attempting to resolve bitcast on constant ptr.\n");
2634           // If we're evaluating a store through a bitcast, then we need
2635           // to pull the bitcast off the pointer type and push it onto the
2636           // stored value.
2637           Ptr = CE->getOperand(0);
2638
2639           Type *NewTy = cast<PointerType>(Ptr->getType())->getElementType();
2640
2641           // In order to push the bitcast onto the stored value, a bitcast
2642           // from NewTy to Val's type must be legal.  If it's not, we can try
2643           // introspecting NewTy to find a legal conversion.
2644           while (!Val->getType()->canLosslesslyBitCastTo(NewTy)) {
2645             // If NewTy is a struct, we can convert the pointer to the struct
2646             // into a pointer to its first member.
2647             // FIXME: This could be extended to support arrays as well.
2648             if (StructType *STy = dyn_cast<StructType>(NewTy)) {
2649               NewTy = STy->getTypeAtIndex(0U);
2650
2651               IntegerType *IdxTy = IntegerType::get(NewTy->getContext(), 32);
2652               Constant *IdxZero = ConstantInt::get(IdxTy, 0, false);
2653               Constant * const IdxList[] = {IdxZero, IdxZero};
2654
2655               Ptr = ConstantExpr::getGetElementPtr(Ptr, IdxList);
2656               if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
2657                 Ptr = ConstantFoldConstantExpression(CE, TD, TLI);
2658
2659             // If we can't improve the situation by introspecting NewTy,
2660             // we have to give up.
2661             } else {
2662               DEBUG(dbgs() << "Failed to bitcast constant ptr, can not "
2663                     "evaluate.\n");
2664               return false;
2665             }
2666           }
2667
2668           // If we found compatible types, go ahead and push the bitcast
2669           // onto the stored value.
2670           Val = ConstantExpr::getBitCast(Val, NewTy);
2671
2672           DEBUG(dbgs() << "Evaluated bitcast: " << *Val << "\n");
2673         }
2674       }
2675
2676       MutatedMemory[Ptr] = Val;
2677     } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
2678       InstResult = ConstantExpr::get(BO->getOpcode(),
2679                                      getVal(BO->getOperand(0)),
2680                                      getVal(BO->getOperand(1)));
2681       DEBUG(dbgs() << "Found a BinaryOperator! Simplifying: " << *InstResult
2682             << "\n");
2683     } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
2684       InstResult = ConstantExpr::getCompare(CI->getPredicate(),
2685                                             getVal(CI->getOperand(0)),
2686                                             getVal(CI->getOperand(1)));
2687       DEBUG(dbgs() << "Found a CmpInst! Simplifying: " << *InstResult
2688             << "\n");
2689     } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
2690       InstResult = ConstantExpr::getCast(CI->getOpcode(),
2691                                          getVal(CI->getOperand(0)),
2692                                          CI->getType());
2693       DEBUG(dbgs() << "Found a Cast! Simplifying: " << *InstResult
2694             << "\n");
2695     } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
2696       InstResult = ConstantExpr::getSelect(getVal(SI->getOperand(0)),
2697                                            getVal(SI->getOperand(1)),
2698                                            getVal(SI->getOperand(2)));
2699       DEBUG(dbgs() << "Found a Select! Simplifying: " << *InstResult
2700             << "\n");
2701     } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
2702       Constant *P = getVal(GEP->getOperand(0));
2703       SmallVector<Constant*, 8> GEPOps;
2704       for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end();
2705            i != e; ++i)
2706         GEPOps.push_back(getVal(*i));
2707       InstResult =
2708         ConstantExpr::getGetElementPtr(P, GEPOps,
2709                                        cast<GEPOperator>(GEP)->isInBounds());
2710       DEBUG(dbgs() << "Found a GEP! Simplifying: " << *InstResult
2711             << "\n");
2712     } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
2713
2714       if (!LI->isSimple()) {
2715         DEBUG(dbgs() << "Found a Load! Not a simple load, can not evaluate.\n");
2716         return false;  // no volatile/atomic accesses.
2717       }
2718
2719       Constant *Ptr = getVal(LI->getOperand(0));
2720       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
2721         Ptr = ConstantFoldConstantExpression(CE, TD, TLI);
2722         DEBUG(dbgs() << "Found a constant pointer expression, constant "
2723               "folding: " << *Ptr << "\n");
2724       }
2725       InstResult = ComputeLoadResult(Ptr);
2726       if (InstResult == 0) {
2727         DEBUG(dbgs() << "Failed to compute load result. Can not evaluate load."
2728               "\n");
2729         return false; // Could not evaluate load.
2730       }
2731
2732       DEBUG(dbgs() << "Evaluated load: " << *InstResult << "\n");
2733     } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
2734       if (AI->isArrayAllocation()) {
2735         DEBUG(dbgs() << "Found an array alloca. Can not evaluate.\n");
2736         return false;  // Cannot handle array allocs.
2737       }
2738       Type *Ty = AI->getType()->getElementType();
2739       AllocaTmps.push_back(new GlobalVariable(Ty, false,
2740                                               GlobalValue::InternalLinkage,
2741                                               UndefValue::get(Ty),
2742                                               AI->getName()));
2743       InstResult = AllocaTmps.back();
2744       DEBUG(dbgs() << "Found an alloca. Result: " << *InstResult << "\n");
2745     } else if (isa<CallInst>(CurInst) || isa<InvokeInst>(CurInst)) {
2746       CallSite CS(CurInst);
2747
2748       // Debug info can safely be ignored here.
2749       if (isa<DbgInfoIntrinsic>(CS.getInstruction())) {
2750         DEBUG(dbgs() << "Ignoring debug info.\n");
2751         ++CurInst;
2752         continue;
2753       }
2754
2755       // Cannot handle inline asm.
2756       if (isa<InlineAsm>(CS.getCalledValue())) {
2757         DEBUG(dbgs() << "Found inline asm, can not evaluate.\n");
2758         return false;
2759       }
2760
2761       if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction())) {
2762         if (MemSetInst *MSI = dyn_cast<MemSetInst>(II)) {
2763           if (MSI->isVolatile()) {
2764             DEBUG(dbgs() << "Can not optimize a volatile memset " <<
2765                   "intrinsic.\n");
2766             return false;
2767           }
2768           Constant *Ptr = getVal(MSI->getDest());
2769           Constant *Val = getVal(MSI->getValue());
2770           Constant *DestVal = ComputeLoadResult(getVal(Ptr));
2771           if (Val->isNullValue() && DestVal && DestVal->isNullValue()) {
2772             // This memset is a no-op.
2773             DEBUG(dbgs() << "Ignoring no-op memset.\n");
2774             ++CurInst;
2775             continue;
2776           }
2777         }
2778
2779         if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
2780             II->getIntrinsicID() == Intrinsic::lifetime_end) {
2781           DEBUG(dbgs() << "Ignoring lifetime intrinsic.\n");
2782           ++CurInst;
2783           continue;
2784         }
2785
2786         if (II->getIntrinsicID() == Intrinsic::invariant_start) {
2787           // We don't insert an entry into Values, as it doesn't have a
2788           // meaningful return value.
2789           if (!II->use_empty()) {
2790             DEBUG(dbgs() << "Found unused invariant_start. Cant evaluate.\n");
2791             return false;
2792           }
2793           ConstantInt *Size = cast<ConstantInt>(II->getArgOperand(0));
2794           Value *PtrArg = getVal(II->getArgOperand(1));
2795           Value *Ptr = PtrArg->stripPointerCasts();
2796           if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Ptr)) {
2797             Type *ElemTy = cast<PointerType>(GV->getType())->getElementType();
2798             if (TD && !Size->isAllOnesValue() &&
2799                 Size->getValue().getLimitedValue() >=
2800                 TD->getTypeStoreSize(ElemTy)) {
2801               Invariants.insert(GV);
2802               DEBUG(dbgs() << "Found a global var that is an invariant: " << *GV
2803                     << "\n");
2804             } else {
2805               DEBUG(dbgs() << "Found a global var, but can not treat it as an "
2806                     "invariant.\n");
2807             }
2808           }
2809           // Continue even if we do nothing.
2810           ++CurInst;
2811           continue;
2812         }
2813
2814         DEBUG(dbgs() << "Unknown intrinsic. Can not evaluate.\n");
2815         return false;
2816       }
2817
2818       // Resolve function pointers.
2819       Function *Callee = dyn_cast<Function>(getVal(CS.getCalledValue()));
2820       if (!Callee || Callee->mayBeOverridden()) {
2821         DEBUG(dbgs() << "Can not resolve function pointer.\n");
2822         return false;  // Cannot resolve.
2823       }
2824
2825       SmallVector<Constant*, 8> Formals;
2826       for (User::op_iterator i = CS.arg_begin(), e = CS.arg_end(); i != e; ++i)
2827         Formals.push_back(getVal(*i));
2828
2829       if (Callee->isDeclaration()) {
2830         // If this is a function we can constant fold, do it.
2831         if (Constant *C = ConstantFoldCall(Callee, Formals, TLI)) {
2832           InstResult = C;
2833           DEBUG(dbgs() << "Constant folded function call. Result: " <<
2834                 *InstResult << "\n");
2835         } else {
2836           DEBUG(dbgs() << "Can not constant fold function call.\n");
2837           return false;
2838         }
2839       } else {
2840         if (Callee->getFunctionType()->isVarArg()) {
2841           DEBUG(dbgs() << "Can not constant fold vararg function call.\n");
2842           return false;
2843         }
2844
2845         Constant *RetVal = 0;
2846         // Execute the call, if successful, use the return value.
2847         ValueStack.push_back(new DenseMap<Value*, Constant*>);
2848         if (!EvaluateFunction(Callee, RetVal, Formals)) {
2849           DEBUG(dbgs() << "Failed to evaluate function.\n");
2850           return false;
2851         }
2852         delete ValueStack.pop_back_val();
2853         InstResult = RetVal;
2854
2855         if (InstResult != NULL) {
2856           DEBUG(dbgs() << "Successfully evaluated function. Result: " <<
2857                 InstResult << "\n\n");
2858         } else {
2859           DEBUG(dbgs() << "Successfully evaluated function. Result: 0\n\n");
2860         }
2861       }
2862     } else if (isa<TerminatorInst>(CurInst)) {
2863       DEBUG(dbgs() << "Found a terminator instruction.\n");
2864
2865       if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
2866         if (BI->isUnconditional()) {
2867           NextBB = BI->getSuccessor(0);
2868         } else {
2869           ConstantInt *Cond =
2870             dyn_cast<ConstantInt>(getVal(BI->getCondition()));
2871           if (!Cond) return false;  // Cannot determine.
2872
2873           NextBB = BI->getSuccessor(!Cond->getZExtValue());
2874         }
2875       } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
2876         ConstantInt *Val =
2877           dyn_cast<ConstantInt>(getVal(SI->getCondition()));
2878         if (!Val) return false;  // Cannot determine.
2879         NextBB = SI->findCaseValue(Val).getCaseSuccessor();
2880       } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(CurInst)) {
2881         Value *Val = getVal(IBI->getAddress())->stripPointerCasts();
2882         if (BlockAddress *BA = dyn_cast<BlockAddress>(Val))
2883           NextBB = BA->getBasicBlock();
2884         else
2885           return false;  // Cannot determine.
2886       } else if (isa<ReturnInst>(CurInst)) {
2887         NextBB = 0;
2888       } else {
2889         // invoke, unwind, resume, unreachable.
2890         DEBUG(dbgs() << "Can not handle terminator.");
2891         return false;  // Cannot handle this terminator.
2892       }
2893
2894       // We succeeded at evaluating this block!
2895       DEBUG(dbgs() << "Successfully evaluated block.\n");
2896       return true;
2897     } else {
2898       // Did not know how to evaluate this!
2899       DEBUG(dbgs() << "Failed to evaluate block due to unhandled instruction."
2900             "\n");
2901       return false;
2902     }
2903
2904     if (!CurInst->use_empty()) {
2905       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(InstResult))
2906         InstResult = ConstantFoldConstantExpression(CE, TD, TLI);
2907
2908       setVal(CurInst, InstResult);
2909     }
2910
2911     // If we just processed an invoke, we finished evaluating the block.
2912     if (InvokeInst *II = dyn_cast<InvokeInst>(CurInst)) {
2913       NextBB = II->getNormalDest();
2914       DEBUG(dbgs() << "Found an invoke instruction. Finished Block.\n\n");
2915       return true;
2916     }
2917
2918     // Advance program counter.
2919     ++CurInst;
2920   }
2921 }
2922
2923 /// EvaluateFunction - Evaluate a call to function F, returning true if
2924 /// successful, false if we can't evaluate it.  ActualArgs contains the formal
2925 /// arguments for the function.
2926 bool Evaluator::EvaluateFunction(Function *F, Constant *&RetVal,
2927                                  const SmallVectorImpl<Constant*> &ActualArgs) {
2928   // Check to see if this function is already executing (recursion).  If so,
2929   // bail out.  TODO: we might want to accept limited recursion.
2930   if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
2931     return false;
2932
2933   CallStack.push_back(F);
2934
2935   // Initialize arguments to the incoming values specified.
2936   unsigned ArgNo = 0;
2937   for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
2938        ++AI, ++ArgNo)
2939     setVal(AI, ActualArgs[ArgNo]);
2940
2941   // ExecutedBlocks - We only handle non-looping, non-recursive code.  As such,
2942   // we can only evaluate any one basic block at most once.  This set keeps
2943   // track of what we have executed so we can detect recursive cases etc.
2944   SmallPtrSet<BasicBlock*, 32> ExecutedBlocks;
2945
2946   // CurBB - The current basic block we're evaluating.
2947   BasicBlock *CurBB = F->begin();
2948
2949   BasicBlock::iterator CurInst = CurBB->begin();
2950
2951   while (1) {
2952     BasicBlock *NextBB = 0; // Initialized to avoid compiler warnings.
2953     DEBUG(dbgs() << "Trying to evaluate BB: " << *CurBB << "\n");
2954
2955     if (!EvaluateBlock(CurInst, NextBB))
2956       return false;
2957
2958     if (NextBB == 0) {
2959       // Successfully running until there's no next block means that we found
2960       // the return.  Fill it the return value and pop the call stack.
2961       ReturnInst *RI = cast<ReturnInst>(CurBB->getTerminator());
2962       if (RI->getNumOperands())
2963         RetVal = getVal(RI->getOperand(0));
2964       CallStack.pop_back();
2965       return true;
2966     }
2967
2968     // Okay, we succeeded in evaluating this control flow.  See if we have
2969     // executed the new block before.  If so, we have a looping function,
2970     // which we cannot evaluate in reasonable time.
2971     if (!ExecutedBlocks.insert(NextBB))
2972       return false;  // looped!
2973
2974     // Okay, we have never been in this block before.  Check to see if there
2975     // are any PHI nodes.  If so, evaluate them with information about where
2976     // we came from.
2977     PHINode *PN = 0;
2978     for (CurInst = NextBB->begin();
2979          (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
2980       setVal(PN, getVal(PN->getIncomingValueForBlock(CurBB)));
2981
2982     // Advance to the next block.
2983     CurBB = NextBB;
2984   }
2985 }
2986
2987 /// EvaluateStaticConstructor - Evaluate static constructors in the function, if
2988 /// we can.  Return true if we can, false otherwise.
2989 static bool EvaluateStaticConstructor(Function *F, const DataLayout *TD,
2990                                       const TargetLibraryInfo *TLI) {
2991   // Call the function.
2992   Evaluator Eval(TD, TLI);
2993   Constant *RetValDummy;
2994   bool EvalSuccess = Eval.EvaluateFunction(F, RetValDummy,
2995                                            SmallVector<Constant*, 0>());
2996
2997   if (EvalSuccess) {
2998     // We succeeded at evaluation: commit the result.
2999     DEBUG(dbgs() << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
3000           << F->getName() << "' to " << Eval.getMutatedMemory().size()
3001           << " stores.\n");
3002     for (DenseMap<Constant*, Constant*>::const_iterator I =
3003            Eval.getMutatedMemory().begin(), E = Eval.getMutatedMemory().end();
3004          I != E; ++I)
3005       CommitValueTo(I->second, I->first);
3006     for (SmallPtrSet<GlobalVariable*, 8>::const_iterator I =
3007            Eval.getInvariants().begin(), E = Eval.getInvariants().end();
3008          I != E; ++I)
3009       (*I)->setConstant(true);
3010   }
3011
3012   return EvalSuccess;
3013 }
3014
3015 /// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
3016 /// Return true if anything changed.
3017 bool GlobalOpt::OptimizeGlobalCtorsList(GlobalVariable *&GCL) {
3018   std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
3019   bool MadeChange = false;
3020   if (Ctors.empty()) return false;
3021
3022   // Loop over global ctors, optimizing them when we can.
3023   for (unsigned i = 0; i != Ctors.size(); ++i) {
3024     Function *F = Ctors[i];
3025     // Found a null terminator in the middle of the list, prune off the rest of
3026     // the list.
3027     if (F == 0) {
3028       if (i != Ctors.size()-1) {
3029         Ctors.resize(i+1);
3030         MadeChange = true;
3031       }
3032       break;
3033     }
3034     DEBUG(dbgs() << "Optimizing Global Constructor: " << *F << "\n");
3035
3036     // We cannot simplify external ctor functions.
3037     if (F->empty()) continue;
3038
3039     // If we can evaluate the ctor at compile time, do.
3040     if (EvaluateStaticConstructor(F, TD, TLI)) {
3041       Ctors.erase(Ctors.begin()+i);
3042       MadeChange = true;
3043       --i;
3044       ++NumCtorsEvaluated;
3045       continue;
3046     }
3047   }
3048
3049   if (!MadeChange) return false;
3050
3051   GCL = InstallGlobalCtors(GCL, Ctors);
3052   return true;
3053 }
3054
3055 static int compareNames(const void *A, const void *B) {
3056   const GlobalValue *VA = *reinterpret_cast<GlobalValue* const*>(A);
3057   const GlobalValue *VB = *reinterpret_cast<GlobalValue* const*>(B);
3058   if (VA->getName() < VB->getName())
3059     return -1;
3060   if (VB->getName() < VA->getName())
3061     return 1;
3062   return 0;
3063 }
3064
3065 static void setUsedInitializer(GlobalVariable &V,
3066                                SmallPtrSet<GlobalValue *, 8> Init) {
3067   if (Init.empty()) {
3068     V.eraseFromParent();
3069     return;
3070   }
3071
3072   SmallVector<llvm::Constant *, 8> UsedArray;
3073   PointerType *Int8PtrTy = Type::getInt8PtrTy(V.getContext());
3074
3075   for (SmallPtrSet<GlobalValue *, 8>::iterator I = Init.begin(), E = Init.end();
3076        I != E; ++I) {
3077     Constant *Cast = llvm::ConstantExpr::getBitCast(*I, Int8PtrTy);
3078     UsedArray.push_back(Cast);
3079   }
3080   // Sort to get deterministic order.
3081   array_pod_sort(UsedArray.begin(), UsedArray.end(), compareNames);
3082   ArrayType *ATy = ArrayType::get(Int8PtrTy, UsedArray.size());
3083
3084   Module *M = V.getParent();
3085   V.removeFromParent();
3086   GlobalVariable *NV =
3087       new GlobalVariable(*M, ATy, false, llvm::GlobalValue::AppendingLinkage,
3088                          llvm::ConstantArray::get(ATy, UsedArray), "");
3089   NV->takeName(&V);
3090   NV->setSection("llvm.metadata");
3091   delete &V;
3092 }
3093
3094 namespace {
3095 /// \brief An easy to access representation of llvm.used and llvm.compiler.used.
3096 class LLVMUsed {
3097   SmallPtrSet<GlobalValue *, 8> Used;
3098   SmallPtrSet<GlobalValue *, 8> CompilerUsed;
3099   GlobalVariable *UsedV;
3100   GlobalVariable *CompilerUsedV;
3101
3102 public:
3103   LLVMUsed(Module &M) {
3104     UsedV = collectUsedGlobalVariables(M, Used, false);
3105     CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true);
3106   }
3107   typedef SmallPtrSet<GlobalValue *, 8>::iterator iterator;
3108   iterator usedBegin() { return Used.begin(); }
3109   iterator usedEnd() { return Used.end(); }
3110   iterator compilerUsedBegin() { return CompilerUsed.begin(); }
3111   iterator compilerUsedEnd() { return CompilerUsed.end(); }
3112   bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
3113   bool compilerUsedCount(GlobalValue *GV) const {
3114     return CompilerUsed.count(GV);
3115   }
3116   bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
3117   bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); }
3118   bool usedInsert(GlobalValue *GV) { return Used.insert(GV); }
3119   bool compilerUsedInsert(GlobalValue *GV) { return CompilerUsed.insert(GV); }
3120
3121   void syncVariablesAndSets() {
3122     if (UsedV)
3123       setUsedInitializer(*UsedV, Used);
3124     if (CompilerUsedV)
3125       setUsedInitializer(*CompilerUsedV, CompilerUsed);
3126   }
3127 };
3128 }
3129
3130 static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) {
3131   if (GA.use_empty()) // No use at all.
3132     return false;
3133
3134   assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) &&
3135          "We should have removed the duplicated "
3136          "element from llvm.compiler.used");
3137   if (!GA.hasOneUse())
3138     // Strictly more than one use. So at least one is not in llvm.used and
3139     // llvm.compiler.used.
3140     return true;
3141
3142   // Exactly one use. Check if it is in llvm.used or llvm.compiler.used.
3143   return !U.usedCount(&GA) && !U.compilerUsedCount(&GA);
3144 }
3145
3146 static bool hasMoreThanOneUseOtherThanLLVMUsed(GlobalValue &V,
3147                                                const LLVMUsed &U) {
3148   unsigned N = 2;
3149   assert((!U.usedCount(&V) || !U.compilerUsedCount(&V)) &&
3150          "We should have removed the duplicated "
3151          "element from llvm.compiler.used");
3152   if (U.usedCount(&V) || U.compilerUsedCount(&V))
3153     ++N;
3154   return V.hasNUsesOrMore(N);
3155 }
3156
3157 static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) {
3158   if (!GA.hasLocalLinkage())
3159     return true;
3160
3161   return U.usedCount(&GA) || U.compilerUsedCount(&GA);
3162 }
3163
3164 static bool hasUsesToReplace(GlobalAlias &GA, LLVMUsed &U, bool &RenameTarget) {
3165   RenameTarget = false;
3166   bool Ret = false;
3167   if (hasUseOtherThanLLVMUsed(GA, U))
3168     Ret = true;
3169
3170   // If the alias is externally visible, we may still be able to simplify it.
3171   if (!mayHaveOtherReferences(GA, U))
3172     return Ret;
3173
3174   // If the aliasee has internal linkage, give it the name and linkage
3175   // of the alias, and delete the alias.  This turns:
3176   //   define internal ... @f(...)
3177   //   @a = alias ... @f
3178   // into:
3179   //   define ... @a(...)
3180   Constant *Aliasee = GA.getAliasee();
3181   GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
3182   if (!Target->hasLocalLinkage())
3183     return Ret;
3184
3185   // Do not perform the transform if multiple aliases potentially target the
3186   // aliasee. This check also ensures that it is safe to replace the section
3187   // and other attributes of the aliasee with those of the alias.
3188   if (hasMoreThanOneUseOtherThanLLVMUsed(*Target, U))
3189     return Ret;
3190
3191   RenameTarget = true;
3192   return true;
3193 }
3194
3195 bool GlobalOpt::OptimizeGlobalAliases(Module &M) {
3196   bool Changed = false;
3197   LLVMUsed Used(M);
3198
3199   for (SmallPtrSet<GlobalValue *, 8>::iterator I = Used.usedBegin(),
3200                                                E = Used.usedEnd();
3201        I != E; ++I)
3202     Used.compilerUsedErase(*I);
3203
3204   for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
3205        I != E;) {
3206     Module::alias_iterator J = I++;
3207     // Aliases without names cannot be referenced outside this module.
3208     if (!J->hasName() && !J->isDeclaration())
3209       J->setLinkage(GlobalValue::InternalLinkage);
3210     // If the aliasee may change at link time, nothing can be done - bail out.
3211     if (J->mayBeOverridden())
3212       continue;
3213
3214     Constant *Aliasee = J->getAliasee();
3215     GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
3216     Target->removeDeadConstantUsers();
3217
3218     // Make all users of the alias use the aliasee instead.
3219     bool RenameTarget;
3220     if (!hasUsesToReplace(*J, Used, RenameTarget))
3221       continue;
3222
3223     J->replaceAllUsesWith(Aliasee);
3224     ++NumAliasesResolved;
3225     Changed = true;
3226
3227     if (RenameTarget) {
3228       // Give the aliasee the name, linkage and other attributes of the alias.
3229       Target->takeName(J);
3230       Target->setLinkage(J->getLinkage());
3231       Target->GlobalValue::copyAttributesFrom(J);
3232
3233       if (Used.usedErase(J))
3234         Used.usedInsert(Target);
3235
3236       if (Used.compilerUsedErase(J))
3237         Used.compilerUsedInsert(Target);
3238     } else if (mayHaveOtherReferences(*J, Used))
3239       continue;
3240
3241     // Delete the alias.
3242     M.getAliasList().erase(J);
3243     ++NumAliasesRemoved;
3244     Changed = true;
3245   }
3246
3247   Used.syncVariablesAndSets();
3248
3249   return Changed;
3250 }
3251
3252 static Function *FindCXAAtExit(Module &M, TargetLibraryInfo *TLI) {
3253   if (!TLI->has(LibFunc::cxa_atexit))
3254     return 0;
3255
3256   Function *Fn = M.getFunction(TLI->getName(LibFunc::cxa_atexit));
3257
3258   if (!Fn)
3259     return 0;
3260
3261   FunctionType *FTy = Fn->getFunctionType();
3262
3263   // Checking that the function has the right return type, the right number of
3264   // parameters and that they all have pointer types should be enough.
3265   if (!FTy->getReturnType()->isIntegerTy() ||
3266       FTy->getNumParams() != 3 ||
3267       !FTy->getParamType(0)->isPointerTy() ||
3268       !FTy->getParamType(1)->isPointerTy() ||
3269       !FTy->getParamType(2)->isPointerTy())
3270     return 0;
3271
3272   return Fn;
3273 }
3274
3275 /// cxxDtorIsEmpty - Returns whether the given function is an empty C++
3276 /// destructor and can therefore be eliminated.
3277 /// Note that we assume that other optimization passes have already simplified
3278 /// the code so we only look for a function with a single basic block, where
3279 /// the only allowed instructions are 'ret', 'call' to an empty C++ dtor and
3280 /// other side-effect free instructions.
3281 static bool cxxDtorIsEmpty(const Function &Fn,
3282                            SmallPtrSet<const Function *, 8> &CalledFunctions) {
3283   // FIXME: We could eliminate C++ destructors if they're readonly/readnone and
3284   // nounwind, but that doesn't seem worth doing.
3285   if (Fn.isDeclaration())
3286     return false;
3287
3288   if (++Fn.begin() != Fn.end())
3289     return false;
3290
3291   const BasicBlock &EntryBlock = Fn.getEntryBlock();
3292   for (BasicBlock::const_iterator I = EntryBlock.begin(), E = EntryBlock.end();
3293        I != E; ++I) {
3294     if (const CallInst *CI = dyn_cast<CallInst>(I)) {
3295       // Ignore debug intrinsics.
3296       if (isa<DbgInfoIntrinsic>(CI))
3297         continue;
3298
3299       const Function *CalledFn = CI->getCalledFunction();
3300
3301       if (!CalledFn)
3302         return false;
3303
3304       SmallPtrSet<const Function *, 8> NewCalledFunctions(CalledFunctions);
3305
3306       // Don't treat recursive functions as empty.
3307       if (!NewCalledFunctions.insert(CalledFn))
3308         return false;
3309
3310       if (!cxxDtorIsEmpty(*CalledFn, NewCalledFunctions))
3311         return false;
3312     } else if (isa<ReturnInst>(*I))
3313       return true; // We're done.
3314     else if (I->mayHaveSideEffects())
3315       return false; // Destructor with side effects, bail.
3316   }
3317
3318   return false;
3319 }
3320
3321 bool GlobalOpt::OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn) {
3322   /// Itanium C++ ABI p3.3.5:
3323   ///
3324   ///   After constructing a global (or local static) object, that will require
3325   ///   destruction on exit, a termination function is registered as follows:
3326   ///
3327   ///   extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
3328   ///
3329   ///   This registration, e.g. __cxa_atexit(f,p,d), is intended to cause the
3330   ///   call f(p) when DSO d is unloaded, before all such termination calls
3331   ///   registered before this one. It returns zero if registration is
3332   ///   successful, nonzero on failure.
3333
3334   // This pass will look for calls to __cxa_atexit where the function is trivial
3335   // and remove them.
3336   bool Changed = false;
3337
3338   for (Function::use_iterator I = CXAAtExitFn->use_begin(),
3339        E = CXAAtExitFn->use_end(); I != E;) {
3340     // We're only interested in calls. Theoretically, we could handle invoke
3341     // instructions as well, but neither llvm-gcc nor clang generate invokes
3342     // to __cxa_atexit.
3343     CallInst *CI = dyn_cast<CallInst>(*I++);
3344     if (!CI)
3345       continue;
3346
3347     Function *DtorFn =
3348       dyn_cast<Function>(CI->getArgOperand(0)->stripPointerCasts());
3349     if (!DtorFn)
3350       continue;
3351
3352     SmallPtrSet<const Function *, 8> CalledFunctions;
3353     if (!cxxDtorIsEmpty(*DtorFn, CalledFunctions))
3354       continue;
3355
3356     // Just remove the call.
3357     CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
3358     CI->eraseFromParent();
3359
3360     ++NumCXXDtorsRemoved;
3361
3362     Changed |= true;
3363   }
3364
3365   return Changed;
3366 }
3367
3368 bool GlobalOpt::runOnModule(Module &M) {
3369   bool Changed = false;
3370
3371   TD = getAnalysisIfAvailable<DataLayout>();
3372   TLI = &getAnalysis<TargetLibraryInfo>();
3373
3374   // Try to find the llvm.globalctors list.
3375   GlobalVariable *GlobalCtors = FindGlobalCtors(M);
3376
3377   bool LocalChange = true;
3378   while (LocalChange) {
3379     LocalChange = false;
3380
3381     // Delete functions that are trivially dead, ccc -> fastcc
3382     LocalChange |= OptimizeFunctions(M);
3383
3384     // Optimize global_ctors list.
3385     if (GlobalCtors)
3386       LocalChange |= OptimizeGlobalCtorsList(GlobalCtors);
3387
3388     // Optimize non-address-taken globals.
3389     LocalChange |= OptimizeGlobalVars(M);
3390
3391     // Resolve aliases, when possible.
3392     LocalChange |= OptimizeGlobalAliases(M);
3393
3394     // Try to remove trivial global destructors if they are not removed
3395     // already.
3396     Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
3397     if (CXAAtExitFn)
3398       LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
3399
3400     Changed |= LocalChange;
3401   }
3402
3403   // TODO: Move all global ctors functions to the end of the module for code
3404   // layout.
3405
3406   return Changed;
3407 }