blob: 7fe097c7c5763505fee9d4cf6bc31c26828aac0a [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- GlobalOpt.cpp - Optimize Global Variables --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass transforms simple global variables that never have their address
11// taken. If obviously true, it marks read/write globals as constant, deletes
12// variables only stored to, etc.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "globalopt"
17#include "llvm/Transforms/IPO.h"
18#include "llvm/CallingConv.h"
19#include "llvm/Constants.h"
20#include "llvm/DerivedTypes.h"
21#include "llvm/Instructions.h"
22#include "llvm/IntrinsicInst.h"
23#include "llvm/Module.h"
24#include "llvm/Pass.h"
25#include "llvm/Analysis/ConstantFolding.h"
26#include "llvm/Target/TargetData.h"
Duncan Sands551ec902008-02-18 17:32:13 +000027#include "llvm/Support/CallSite.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/Support/Compiler.h"
29#include "llvm/Support/Debug.h"
Chris Lattner7bd79da2008-01-14 02:09:12 +000030#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner20846272008-04-26 07:40:11 +000031#include "llvm/Support/MathExtras.h"
Chris Lattner4cd08c22008-12-16 07:34:30 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerbdf77462007-09-13 16:30:19 +000033#include "llvm/ADT/SmallPtrSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include "llvm/ADT/SmallVector.h"
35#include "llvm/ADT/Statistic.h"
36#include "llvm/ADT/StringExtras.h"
Chris Lattner8a2d32e2008-12-17 05:28:49 +000037#include "llvm/ADT/STLExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038#include <algorithm>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039using namespace llvm;
40
41STATISTIC(NumMarked , "Number of globals marked constant");
42STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
43STATISTIC(NumHeapSRA , "Number of heap objects SRA'd");
44STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
45STATISTIC(NumDeleted , "Number of globals deleted");
46STATISTIC(NumFnDeleted , "Number of functions deleted");
47STATISTIC(NumGlobUses , "Number of global uses devirtualized");
48STATISTIC(NumLocalized , "Number of globals localized");
49STATISTIC(NumShrunkToBool , "Number of global vars shrunk to booleans");
50STATISTIC(NumFastCallFns , "Number of functions converted to fastcc");
51STATISTIC(NumCtorsEvaluated, "Number of static ctors evaluated");
Duncan Sandsafa10bf2008-02-16 20:56:04 +000052STATISTIC(NumNestRemoved , "Number of nest attributes removed");
Duncan Sandse7f431f2009-02-15 09:56:08 +000053STATISTIC(NumAliasesResolved, "Number of global aliases resolved");
54STATISTIC(NumAliasesRemoved, "Number of global aliases eliminated");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055
56namespace {
57 struct VISIBILITY_HIDDEN GlobalOpt : public ModulePass {
58 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
59 AU.addRequired<TargetData>();
60 }
61 static char ID; // Pass identification, replacement for typeid
Dan Gohman26f8c272008-09-04 17:05:41 +000062 GlobalOpt() : ModulePass(&ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063
64 bool runOnModule(Module &M);
65
66 private:
67 GlobalVariable *FindGlobalCtors(Module &M);
68 bool OptimizeFunctions(Module &M);
69 bool OptimizeGlobalVars(Module &M);
Duncan Sands0c7b6332009-03-06 10:21:56 +000070 bool OptimizeGlobalAliases(Module &M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071 bool OptimizeGlobalCtorsList(GlobalVariable *&GCL);
72 bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
73 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074}
75
Dan Gohman089efff2008-05-13 00:00:25 +000076char GlobalOpt::ID = 0;
77static RegisterPass<GlobalOpt> X("globalopt", "Global Variable Optimizer");
78
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079ModulePass *llvm::createGlobalOptimizerPass() { return new GlobalOpt(); }
80
Dan Gohman089efff2008-05-13 00:00:25 +000081namespace {
82
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083/// GlobalStatus - As we analyze each global, keep track of some information
84/// about it. If we find out that the address of the global is taken, none of
85/// this info will be accurate.
86struct VISIBILITY_HIDDEN GlobalStatus {
87 /// isLoaded - True if the global is ever loaded. If the global isn't ever
88 /// loaded it can be deleted.
89 bool isLoaded;
90
91 /// StoredType - Keep track of what stores to the global look like.
92 ///
93 enum StoredType {
94 /// NotStored - There is no store to this global. It can thus be marked
95 /// constant.
96 NotStored,
97
98 /// isInitializerStored - This global is stored to, but the only thing
99 /// stored is the constant it was initialized with. This is only tracked
100 /// for scalar globals.
101 isInitializerStored,
102
103 /// isStoredOnce - This global is stored to, but only its initializer and
104 /// one other value is ever stored to it. If this global isStoredOnce, we
105 /// track the value stored to it in StoredOnceValue below. This is only
106 /// tracked for scalar globals.
107 isStoredOnce,
108
109 /// isStored - This global is stored to by multiple values or something else
110 /// that we cannot track.
111 isStored
112 } StoredType;
113
114 /// StoredOnceValue - If only one value (besides the initializer constant) is
115 /// ever stored to this global, keep track of what value it is.
116 Value *StoredOnceValue;
117
118 /// AccessingFunction/HasMultipleAccessingFunctions - These start out
119 /// null/false. When the first accessing function is noticed, it is recorded.
120 /// When a second different accessing function is noticed,
121 /// HasMultipleAccessingFunctions is set to true.
122 Function *AccessingFunction;
123 bool HasMultipleAccessingFunctions;
124
125 /// HasNonInstructionUser - Set to true if this global has a user that is not
126 /// an instruction (e.g. a constant expr or GV initializer).
127 bool HasNonInstructionUser;
128
129 /// HasPHIUser - Set to true if this global has a user that is a PHI node.
130 bool HasPHIUser;
131
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 GlobalStatus() : isLoaded(false), StoredType(NotStored), StoredOnceValue(0),
133 AccessingFunction(0), HasMultipleAccessingFunctions(false),
Chris Lattnercad76212008-01-14 01:32:52 +0000134 HasNonInstructionUser(false), HasPHIUser(false) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135};
136
Dan Gohman089efff2008-05-13 00:00:25 +0000137}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138
Jay Foade4914352009-06-09 21:37:11 +0000139// SafeToDestroyConstant - It is safe to destroy a constant iff it is only used
140// by constants itself. Note that constants cannot be cyclic, so this test is
141// pretty easy to implement recursively.
142//
143static bool SafeToDestroyConstant(Constant *C) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000144 if (isa<GlobalValue>(C)) return false;
145
Devang Patel3b6b19e2009-03-06 01:37:41 +0000146 for (Value::use_iterator UI = C->use_begin(), E = C->use_end(); UI != E; ++UI)
147 if (Constant *CU = dyn_cast<Constant>(*UI)) {
Jay Foade4914352009-06-09 21:37:11 +0000148 if (!SafeToDestroyConstant(CU)) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000149 } else
150 return false;
151 return true;
152}
153
154
155/// AnalyzeGlobal - Look at all uses of the global and fill in the GlobalStatus
156/// structure. If the global has its address taken, return true to indicate we
157/// can't do anything with it.
158///
159static bool AnalyzeGlobal(Value *V, GlobalStatus &GS,
Chris Lattner4cd08c22008-12-16 07:34:30 +0000160 SmallPtrSet<PHINode*, 16> &PHIUsers) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
162 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(*UI)) {
163 GS.HasNonInstructionUser = true;
164
165 if (AnalyzeGlobal(CE, GS, PHIUsers)) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166
167 } else if (Instruction *I = dyn_cast<Instruction>(*UI)) {
168 if (!GS.HasMultipleAccessingFunctions) {
169 Function *F = I->getParent()->getParent();
170 if (GS.AccessingFunction == 0)
171 GS.AccessingFunction = F;
172 else if (GS.AccessingFunction != F)
173 GS.HasMultipleAccessingFunctions = true;
174 }
Chris Lattner75a2db82008-01-29 19:01:37 +0000175 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000176 GS.isLoaded = true;
Chris Lattner75a2db82008-01-29 19:01:37 +0000177 if (LI->isVolatile()) return true; // Don't hack on volatile loads.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
179 // Don't allow a store OF the address, only stores TO the address.
180 if (SI->getOperand(0) == V) return true;
181
Chris Lattner75a2db82008-01-29 19:01:37 +0000182 if (SI->isVolatile()) return true; // Don't hack on volatile stores.
183
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 // If this is a direct store to the global (i.e., the global is a scalar
185 // value, not an aggregate), keep more specific information about
186 // stores.
Anton Korobeynikov8522e1c2008-02-20 11:26:25 +0000187 if (GS.StoredType != GlobalStatus::isStored) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(SI->getOperand(1))){
189 Value *StoredVal = SI->getOperand(0);
190 if (StoredVal == GV->getInitializer()) {
191 if (GS.StoredType < GlobalStatus::isInitializerStored)
192 GS.StoredType = GlobalStatus::isInitializerStored;
193 } else if (isa<LoadInst>(StoredVal) &&
194 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
195 // G = G
196 if (GS.StoredType < GlobalStatus::isInitializerStored)
197 GS.StoredType = GlobalStatus::isInitializerStored;
198 } else if (GS.StoredType < GlobalStatus::isStoredOnce) {
199 GS.StoredType = GlobalStatus::isStoredOnce;
200 GS.StoredOnceValue = StoredVal;
201 } else if (GS.StoredType == GlobalStatus::isStoredOnce &&
202 GS.StoredOnceValue == StoredVal) {
203 // noop.
204 } else {
205 GS.StoredType = GlobalStatus::isStored;
206 }
207 } else {
208 GS.StoredType = GlobalStatus::isStored;
209 }
Anton Korobeynikov8522e1c2008-02-20 11:26:25 +0000210 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211 } else if (isa<GetElementPtrInst>(I)) {
212 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000213 } else if (isa<SelectInst>(I)) {
214 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215 } else if (PHINode *PN = dyn_cast<PHINode>(I)) {
216 // PHI nodes we can check just like select or GEP instructions, but we
217 // have to be careful about infinite recursion.
Chris Lattner4cd08c22008-12-16 07:34:30 +0000218 if (PHIUsers.insert(PN)) // Not already visited.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 if (AnalyzeGlobal(I, GS, PHIUsers)) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220 GS.HasPHIUser = true;
221 } else if (isa<CmpInst>(I)) {
Chris Lattnerb914b952009-03-08 03:37:35 +0000222 } else if (isa<MemTransferInst>(I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 if (I->getOperand(1) == V)
224 GS.StoredType = GlobalStatus::isStored;
225 if (I->getOperand(2) == V)
226 GS.isLoaded = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 } else if (isa<MemSetInst>(I)) {
228 assert(I->getOperand(1) == V && "Memset only takes one pointer!");
229 GS.StoredType = GlobalStatus::isStored;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 } else {
231 return true; // Any other non-load instruction might take address!
232 }
233 } else if (Constant *C = dyn_cast<Constant>(*UI)) {
234 GS.HasNonInstructionUser = true;
235 // We might have a dead and dangling constant hanging off of here.
Jay Foade4914352009-06-09 21:37:11 +0000236 if (!SafeToDestroyConstant(C))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 return true;
238 } else {
239 GS.HasNonInstructionUser = true;
240 // Otherwise must be some other user.
241 return true;
242 }
243
244 return false;
245}
246
247static Constant *getAggregateConstantElement(Constant *Agg, Constant *Idx) {
248 ConstantInt *CI = dyn_cast<ConstantInt>(Idx);
249 if (!CI) return 0;
250 unsigned IdxV = CI->getZExtValue();
251
252 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Agg)) {
253 if (IdxV < CS->getNumOperands()) return CS->getOperand(IdxV);
254 } else if (ConstantArray *CA = dyn_cast<ConstantArray>(Agg)) {
255 if (IdxV < CA->getNumOperands()) return CA->getOperand(IdxV);
256 } else if (ConstantVector *CP = dyn_cast<ConstantVector>(Agg)) {
257 if (IdxV < CP->getNumOperands()) return CP->getOperand(IdxV);
258 } else if (isa<ConstantAggregateZero>(Agg)) {
259 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
260 if (IdxV < STy->getNumElements())
261 return Constant::getNullValue(STy->getElementType(IdxV));
262 } else if (const SequentialType *STy =
263 dyn_cast<SequentialType>(Agg->getType())) {
264 return Constant::getNullValue(STy->getElementType());
265 }
266 } else if (isa<UndefValue>(Agg)) {
267 if (const StructType *STy = dyn_cast<StructType>(Agg->getType())) {
268 if (IdxV < STy->getNumElements())
269 return UndefValue::get(STy->getElementType(IdxV));
270 } else if (const SequentialType *STy =
271 dyn_cast<SequentialType>(Agg->getType())) {
272 return UndefValue::get(STy->getElementType());
273 }
274 }
275 return 0;
276}
277
278
279/// CleanupConstantGlobalUsers - We just marked GV constant. Loop over all
280/// users of the global, cleaning up the obvious ones. This is largely just a
281/// quick scan over the use list to clean up the easy and obvious cruft. This
282/// returns true if it made a change.
283static bool CleanupConstantGlobalUsers(Value *V, Constant *Init) {
284 bool Changed = false;
285 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;) {
286 User *U = *UI++;
287
288 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
289 if (Init) {
290 // Replace the load with the initializer.
291 LI->replaceAllUsesWith(Init);
292 LI->eraseFromParent();
293 Changed = true;
294 }
295 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
296 // Store must be unreachable or storing Init into the global.
297 SI->eraseFromParent();
298 Changed = true;
299 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
300 if (CE->getOpcode() == Instruction::GetElementPtr) {
301 Constant *SubInit = 0;
302 if (Init)
303 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
304 Changed |= CleanupConstantGlobalUsers(CE, SubInit);
305 } else if (CE->getOpcode() == Instruction::BitCast &&
306 isa<PointerType>(CE->getType())) {
307 // Pointer cast, delete any stores and memsets to the global.
308 Changed |= CleanupConstantGlobalUsers(CE, 0);
309 }
310
311 if (CE->use_empty()) {
312 CE->destroyConstant();
313 Changed = true;
314 }
315 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
Chris Lattner7ebafca2007-11-09 17:33:02 +0000316 // Do not transform "gepinst (gep constexpr (GV))" here, because forming
317 // "gepconstexpr (gep constexpr (GV))" will cause the two gep's to fold
318 // and will invalidate our notion of what Init is.
Chris Lattner2dd9c042007-11-13 21:46:23 +0000319 Constant *SubInit = 0;
Chris Lattner7ebafca2007-11-09 17:33:02 +0000320 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
321 ConstantExpr *CE =
322 dyn_cast_or_null<ConstantExpr>(ConstantFoldInstruction(GEP));
323 if (Init && CE && CE->getOpcode() == Instruction::GetElementPtr)
Chris Lattner2dd9c042007-11-13 21:46:23 +0000324 SubInit = ConstantFoldLoadThroughGEPConstantExpr(Init, CE);
Chris Lattner7ebafca2007-11-09 17:33:02 +0000325 }
Chris Lattner2dd9c042007-11-13 21:46:23 +0000326 Changed |= CleanupConstantGlobalUsers(GEP, SubInit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000327
328 if (GEP->use_empty()) {
329 GEP->eraseFromParent();
330 Changed = true;
331 }
332 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U)) { // memset/cpy/mv
333 if (MI->getRawDest() == V) {
334 MI->eraseFromParent();
335 Changed = true;
336 }
337
338 } else if (Constant *C = dyn_cast<Constant>(U)) {
339 // If we have a chain of dead constantexprs or other things dangling from
340 // us, and if they are all dead, nuke them without remorse.
Jay Foade4914352009-06-09 21:37:11 +0000341 if (SafeToDestroyConstant(C)) {
Devang Patel3b6b19e2009-03-06 01:37:41 +0000342 C->destroyConstant();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343 // This could have invalidated UI, start over from scratch.
344 CleanupConstantGlobalUsers(V, Init);
345 return true;
346 }
347 }
348 }
349 return Changed;
350}
351
Chris Lattner7bd79da2008-01-14 02:09:12 +0000352/// isSafeSROAElementUse - Return true if the specified instruction is a safe
353/// user of a derived expression from a global that we want to SROA.
354static bool isSafeSROAElementUse(Value *V) {
355 // We might have a dead and dangling constant hanging off of here.
356 if (Constant *C = dyn_cast<Constant>(V))
Jay Foade4914352009-06-09 21:37:11 +0000357 return SafeToDestroyConstant(C);
Chris Lattner7329c662008-01-14 01:31:05 +0000358
Chris Lattner7bd79da2008-01-14 02:09:12 +0000359 Instruction *I = dyn_cast<Instruction>(V);
360 if (!I) return false;
361
362 // Loads are ok.
363 if (isa<LoadInst>(I)) return true;
364
365 // Stores *to* the pointer are ok.
366 if (StoreInst *SI = dyn_cast<StoreInst>(I))
367 return SI->getOperand(0) != V;
368
369 // Otherwise, it must be a GEP.
370 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I);
371 if (GEPI == 0) return false;
372
373 if (GEPI->getNumOperands() < 3 || !isa<Constant>(GEPI->getOperand(1)) ||
374 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
375 return false;
376
377 for (Value::use_iterator I = GEPI->use_begin(), E = GEPI->use_end();
378 I != E; ++I)
379 if (!isSafeSROAElementUse(*I))
380 return false;
Chris Lattner7329c662008-01-14 01:31:05 +0000381 return true;
382}
383
Chris Lattner7bd79da2008-01-14 02:09:12 +0000384
385/// IsUserOfGlobalSafeForSRA - U is a direct user of the specified global value.
386/// Look at it and its uses and decide whether it is safe to SROA this global.
387///
388static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) {
389 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
390 if (!isa<GetElementPtrInst>(U) &&
391 (!isa<ConstantExpr>(U) ||
392 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
393 return false;
394
395 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
396 // don't like < 3 operand CE's, and we don't like non-constant integer
397 // indices. This enforces that all uses are 'gep GV, 0, C, ...' for some
398 // value of C.
399 if (U->getNumOperands() < 3 || !isa<Constant>(U->getOperand(1)) ||
400 !cast<Constant>(U->getOperand(1))->isNullValue() ||
401 !isa<ConstantInt>(U->getOperand(2)))
402 return false;
403
404 gep_type_iterator GEPI = gep_type_begin(U), E = gep_type_end(U);
405 ++GEPI; // Skip over the pointer index.
406
407 // If this is a use of an array allocation, do a bit more checking for sanity.
408 if (const ArrayType *AT = dyn_cast<ArrayType>(*GEPI)) {
409 uint64_t NumElements = AT->getNumElements();
410 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
411
412 // Check to make sure that index falls within the array. If not,
413 // something funny is going on, so we won't do the optimization.
414 //
415 if (Idx->getZExtValue() >= NumElements)
416 return false;
417
418 // We cannot scalar repl this level of the array unless any array
419 // sub-indices are in-range constants. In particular, consider:
420 // A[0][i]. We cannot know that the user isn't doing invalid things like
421 // allowing i to index an out-of-range subscript that accesses A[1].
422 //
423 // Scalar replacing *just* the outer index of the array is probably not
424 // going to be a win anyway, so just give up.
425 for (++GEPI; // Skip array index.
426 GEPI != E && (isa<ArrayType>(*GEPI) || isa<VectorType>(*GEPI));
427 ++GEPI) {
428 uint64_t NumElements;
429 if (const ArrayType *SubArrayTy = dyn_cast<ArrayType>(*GEPI))
430 NumElements = SubArrayTy->getNumElements();
431 else
432 NumElements = cast<VectorType>(*GEPI)->getNumElements();
433
434 ConstantInt *IdxVal = dyn_cast<ConstantInt>(GEPI.getOperand());
435 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
436 return false;
437 }
438 }
439
440 for (Value::use_iterator I = U->use_begin(), E = U->use_end(); I != E; ++I)
441 if (!isSafeSROAElementUse(*I))
442 return false;
443 return true;
444}
445
446/// GlobalUsersSafeToSRA - Look at all uses of the global and decide whether it
447/// is safe for us to perform this transformation.
448///
449static bool GlobalUsersSafeToSRA(GlobalValue *GV) {
450 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
451 UI != E; ++UI) {
452 if (!IsUserOfGlobalSafeForSRA(*UI, GV))
453 return false;
454 }
455 return true;
456}
457
458
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459/// SRAGlobal - Perform scalar replacement of aggregates on the specified global
460/// variable. This opens the door for other optimizations by exposing the
461/// behavior of the program in a more fine-grained way. We have determined that
462/// this transformation is safe already. We return the first global variable we
463/// insert so that the caller can reprocess it.
Chris Lattner20846272008-04-26 07:40:11 +0000464static GlobalVariable *SRAGlobal(GlobalVariable *GV, const TargetData &TD) {
Chris Lattner7329c662008-01-14 01:31:05 +0000465 // Make sure this global only has simple uses that we can SRA.
Chris Lattner7bd79da2008-01-14 02:09:12 +0000466 if (!GlobalUsersSafeToSRA(GV))
Chris Lattner7329c662008-01-14 01:31:05 +0000467 return 0;
468
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000469 assert(GV->hasLocalLinkage() && !GV->isConstant());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000470 Constant *Init = GV->getInitializer();
471 const Type *Ty = Init->getType();
472
473 std::vector<GlobalVariable*> NewGlobals;
474 Module::GlobalListType &Globals = GV->getParent()->getGlobalList();
475
Chris Lattner20846272008-04-26 07:40:11 +0000476 // Get the alignment of the global, either explicit or target-specific.
477 unsigned StartAlignment = GV->getAlignment();
478 if (StartAlignment == 0)
479 StartAlignment = TD.getABITypeAlignment(GV->getType());
480
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
482 NewGlobals.reserve(STy->getNumElements());
Chris Lattner20846272008-04-26 07:40:11 +0000483 const StructLayout &Layout = *TD.getStructLayout(STy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
485 Constant *In = getAggregateConstantElement(Init,
486 ConstantInt::get(Type::Int32Ty, i));
487 assert(In && "Couldn't get element of initializer?");
488 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(i), false,
489 GlobalVariable::InternalLinkage,
490 In, GV->getName()+"."+utostr(i),
491 (Module *)NULL,
Matthijs Kooijman36693bb2008-07-17 11:59:53 +0000492 GV->isThreadLocal(),
493 GV->getType()->getAddressSpace());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494 Globals.insert(GV, NGV);
495 NewGlobals.push_back(NGV);
Chris Lattner20846272008-04-26 07:40:11 +0000496
497 // Calculate the known alignment of the field. If the original aggregate
498 // had 256 byte alignment for example, something might depend on that:
499 // propagate info to each field.
500 uint64_t FieldOffset = Layout.getElementOffset(i);
501 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, FieldOffset);
502 if (NewAlign > TD.getABITypeAlignment(STy->getElementType(i)))
503 NGV->setAlignment(NewAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504 }
505 } else if (const SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
506 unsigned NumElements = 0;
507 if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
508 NumElements = ATy->getNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509 else
Chris Lattner20846272008-04-26 07:40:11 +0000510 NumElements = cast<VectorType>(STy)->getNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511
512 if (NumElements > 16 && GV->hasNUsesOrMore(16))
513 return 0; // It's not worth it.
514 NewGlobals.reserve(NumElements);
Chris Lattner20846272008-04-26 07:40:11 +0000515
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000516 uint64_t EltSize = TD.getTypeAllocSize(STy->getElementType());
Chris Lattner20846272008-04-26 07:40:11 +0000517 unsigned EltAlign = TD.getABITypeAlignment(STy->getElementType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 for (unsigned i = 0, e = NumElements; i != e; ++i) {
519 Constant *In = getAggregateConstantElement(Init,
520 ConstantInt::get(Type::Int32Ty, i));
521 assert(In && "Couldn't get element of initializer?");
522
523 GlobalVariable *NGV = new GlobalVariable(STy->getElementType(), false,
524 GlobalVariable::InternalLinkage,
525 In, GV->getName()+"."+utostr(i),
526 (Module *)NULL,
Matthijs Kooijman36693bb2008-07-17 11:59:53 +0000527 GV->isThreadLocal(),
528 GV->getType()->getAddressSpace());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 Globals.insert(GV, NGV);
530 NewGlobals.push_back(NGV);
Chris Lattner20846272008-04-26 07:40:11 +0000531
532 // Calculate the known alignment of the field. If the original aggregate
533 // had 256 byte alignment for example, something might depend on that:
534 // propagate info to each field.
535 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
536 if (NewAlign > EltAlign)
537 NGV->setAlignment(NewAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000538 }
539 }
540
541 if (NewGlobals.empty())
542 return 0;
543
544 DOUT << "PERFORMING GLOBAL SRA ON: " << *GV;
545
546 Constant *NullInt = Constant::getNullValue(Type::Int32Ty);
547
548 // Loop over all of the uses of the global, replacing the constantexpr geps,
549 // with smaller constantexpr geps or direct references.
550 while (!GV->use_empty()) {
551 User *GEP = GV->use_back();
552 assert(((isa<ConstantExpr>(GEP) &&
553 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
554 isa<GetElementPtrInst>(GEP)) && "NonGEP CE's are not SRAable!");
555
556 // Ignore the 1th operand, which has to be zero or else the program is quite
557 // broken (undefined). Get the 2nd operand, which is the structure or array
558 // index.
559 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
560 if (Val >= NewGlobals.size()) Val = 0; // Out of bound array access.
561
562 Value *NewPtr = NewGlobals[Val];
563
564 // Form a shorter GEP if needed.
Anton Korobeynikov8522e1c2008-02-20 11:26:25 +0000565 if (GEP->getNumOperands() > 3) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(GEP)) {
567 SmallVector<Constant*, 8> Idxs;
568 Idxs.push_back(NullInt);
569 for (unsigned i = 3, e = CE->getNumOperands(); i != e; ++i)
570 Idxs.push_back(CE->getOperand(i));
571 NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr),
572 &Idxs[0], Idxs.size());
573 } else {
574 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(GEP);
575 SmallVector<Value*, 8> Idxs;
576 Idxs.push_back(NullInt);
577 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i)
578 Idxs.push_back(GEPI->getOperand(i));
Gabor Greifd6da1d02008-04-06 20:25:17 +0000579 NewPtr = GetElementPtrInst::Create(NewPtr, Idxs.begin(), Idxs.end(),
580 GEPI->getName()+"."+utostr(Val), GEPI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 }
Anton Korobeynikov8522e1c2008-02-20 11:26:25 +0000582 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 GEP->replaceAllUsesWith(NewPtr);
584
585 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(GEP))
586 GEPI->eraseFromParent();
587 else
588 cast<ConstantExpr>(GEP)->destroyConstant();
589 }
590
591 // Delete the old global, now that it is dead.
592 Globals.erase(GV);
593 ++NumSRA;
594
595 // Loop over the new globals array deleting any globals that are obviously
596 // dead. This can arise due to scalarization of a structure or an array that
597 // has elements that are dead.
598 unsigned FirstGlobal = 0;
599 for (unsigned i = 0, e = NewGlobals.size(); i != e; ++i)
600 if (NewGlobals[i]->use_empty()) {
601 Globals.erase(NewGlobals[i]);
602 if (FirstGlobal == i) ++FirstGlobal;
603 }
604
605 return FirstGlobal != NewGlobals.size() ? NewGlobals[FirstGlobal] : 0;
606}
607
608/// AllUsesOfValueWillTrapIfNull - Return true if all users of the specified
Chris Lattnerbdf77462007-09-13 16:30:19 +0000609/// value will trap if the value is dynamically null. PHIs keeps track of any
610/// phi nodes we've seen to avoid reprocessing them.
611static bool AllUsesOfValueWillTrapIfNull(Value *V,
612 SmallPtrSet<PHINode*, 8> &PHIs) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
614 if (isa<LoadInst>(*UI)) {
615 // Will trap.
616 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
617 if (SI->getOperand(0) == V) {
618 //cerr << "NONTRAPPING USE: " << **UI;
619 return false; // Storing the value.
620 }
621 } else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
622 if (CI->getOperand(0) != V) {
623 //cerr << "NONTRAPPING USE: " << **UI;
624 return false; // Not calling the ptr
625 }
626 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
627 if (II->getOperand(0) != V) {
628 //cerr << "NONTRAPPING USE: " << **UI;
629 return false; // Not calling the ptr
630 }
Chris Lattnerbdf77462007-09-13 16:30:19 +0000631 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(*UI)) {
632 if (!AllUsesOfValueWillTrapIfNull(CI, PHIs)) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000633 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI)) {
Chris Lattnerbdf77462007-09-13 16:30:19 +0000634 if (!AllUsesOfValueWillTrapIfNull(GEPI, PHIs)) return false;
635 } else if (PHINode *PN = dyn_cast<PHINode>(*UI)) {
636 // If we've already seen this phi node, ignore it, it has already been
637 // checked.
638 if (PHIs.insert(PN))
639 return AllUsesOfValueWillTrapIfNull(PN, PHIs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000640 } else if (isa<ICmpInst>(*UI) &&
641 isa<ConstantPointerNull>(UI->getOperand(1))) {
642 // Ignore setcc X, null
643 } else {
644 //cerr << "NONTRAPPING USE: " << **UI;
645 return false;
646 }
647 return true;
648}
649
650/// AllUsesOfLoadedValueWillTrapIfNull - Return true if all uses of any loads
651/// from GV will trap if the loaded value is null. Note that this also permits
652/// comparisons of the loaded value against null, as a special case.
653static bool AllUsesOfLoadedValueWillTrapIfNull(GlobalVariable *GV) {
654 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI!=E; ++UI)
655 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
Chris Lattnerbdf77462007-09-13 16:30:19 +0000656 SmallPtrSet<PHINode*, 8> PHIs;
657 if (!AllUsesOfValueWillTrapIfNull(LI, PHIs))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000658 return false;
659 } else if (isa<StoreInst>(*UI)) {
660 // Ignore stores to the global.
661 } else {
662 // We don't know or understand this user, bail out.
663 //cerr << "UNKNOWN USER OF GLOBAL!: " << **UI;
664 return false;
665 }
666
667 return true;
668}
669
670static bool OptimizeAwayTrappingUsesOfValue(Value *V, Constant *NewV) {
671 bool Changed = false;
672 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
673 Instruction *I = cast<Instruction>(*UI++);
674 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
675 LI->setOperand(0, NewV);
676 Changed = true;
677 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
678 if (SI->getOperand(1) == V) {
679 SI->setOperand(1, NewV);
680 Changed = true;
681 }
682 } else if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
683 if (I->getOperand(0) == V) {
684 // Calling through the pointer! Turn into a direct call, but be careful
685 // that the pointer is not also being passed as an argument.
686 I->setOperand(0, NewV);
687 Changed = true;
688 bool PassedAsArg = false;
689 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i)
690 if (I->getOperand(i) == V) {
691 PassedAsArg = true;
692 I->setOperand(i, NewV);
693 }
694
695 if (PassedAsArg) {
696 // Being passed as an argument also. Be careful to not invalidate UI!
697 UI = V->use_begin();
698 }
699 }
700 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
701 Changed |= OptimizeAwayTrappingUsesOfValue(CI,
702 ConstantExpr::getCast(CI->getOpcode(),
703 NewV, CI->getType()));
704 if (CI->use_empty()) {
705 Changed = true;
706 CI->eraseFromParent();
707 }
708 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
709 // Should handle GEP here.
710 SmallVector<Constant*, 8> Idxs;
711 Idxs.reserve(GEPI->getNumOperands()-1);
Gabor Greif20f03f52008-05-29 01:59:18 +0000712 for (User::op_iterator i = GEPI->op_begin() + 1, e = GEPI->op_end();
713 i != e; ++i)
714 if (Constant *C = dyn_cast<Constant>(*i))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000715 Idxs.push_back(C);
716 else
717 break;
718 if (Idxs.size() == GEPI->getNumOperands()-1)
719 Changed |= OptimizeAwayTrappingUsesOfValue(GEPI,
720 ConstantExpr::getGetElementPtr(NewV, &Idxs[0],
721 Idxs.size()));
722 if (GEPI->use_empty()) {
723 Changed = true;
724 GEPI->eraseFromParent();
725 }
726 }
727 }
728
729 return Changed;
730}
731
732
733/// OptimizeAwayTrappingUsesOfLoads - The specified global has only one non-null
734/// value stored into it. If there are uses of the loaded value that would trap
735/// if the loaded value is dynamically null, then we know that they cannot be
736/// reachable with a null optimize away the load.
737static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000738 bool Changed = false;
739
Chris Lattner9806cc12009-01-14 00:12:58 +0000740 // Keep track of whether we are able to remove all the uses of the global
741 // other than the store that defines it.
742 bool AllNonStoreUsesGone = true;
743
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000744 // Replace all uses of loads with uses of uses of the stored value.
Chris Lattner9806cc12009-01-14 00:12:58 +0000745 for (Value::use_iterator GUI = GV->use_begin(), E = GV->use_end(); GUI != E;){
746 User *GlobalUser = *GUI++;
747 if (LoadInst *LI = dyn_cast<LoadInst>(GlobalUser)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000748 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
Chris Lattner9806cc12009-01-14 00:12:58 +0000749 // If we were able to delete all uses of the loads
750 if (LI->use_empty()) {
751 LI->eraseFromParent();
752 Changed = true;
753 } else {
754 AllNonStoreUsesGone = false;
755 }
756 } else if (isa<StoreInst>(GlobalUser)) {
757 // Ignore the store that stores "LV" to the global.
758 assert(GlobalUser->getOperand(1) == GV &&
759 "Must be storing *to* the global");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000760 } else {
Chris Lattner9806cc12009-01-14 00:12:58 +0000761 AllNonStoreUsesGone = false;
762
763 // If we get here we could have other crazy uses that are transitively
764 // loaded.
765 assert((isa<PHINode>(GlobalUser) || isa<SelectInst>(GlobalUser) ||
766 isa<ConstantExpr>(GlobalUser)) && "Only expect load and stores!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000767 }
Chris Lattner9806cc12009-01-14 00:12:58 +0000768 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769
770 if (Changed) {
771 DOUT << "OPTIMIZED LOADS FROM STORED ONCE POINTER: " << *GV;
772 ++NumGlobUses;
773 }
774
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000775 // If we nuked all of the loads, then none of the stores are needed either,
776 // nor is the global.
Chris Lattner9806cc12009-01-14 00:12:58 +0000777 if (AllNonStoreUsesGone) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 DOUT << " *** GLOBAL NOW DEAD!\n";
779 CleanupConstantGlobalUsers(GV, 0);
780 if (GV->use_empty()) {
781 GV->eraseFromParent();
782 ++NumDeleted;
783 }
784 Changed = true;
785 }
786 return Changed;
787}
788
789/// ConstantPropUsersOf - Walk the use list of V, constant folding all of the
790/// instructions that are foldable.
791static void ConstantPropUsersOf(Value *V) {
792 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
793 if (Instruction *I = dyn_cast<Instruction>(*UI++))
794 if (Constant *NewC = ConstantFoldInstruction(I)) {
795 I->replaceAllUsesWith(NewC);
796
797 // Advance UI to the next non-I use to avoid invalidating it!
798 // Instructions could multiply use V.
799 while (UI != E && *UI == I)
800 ++UI;
801 I->eraseFromParent();
802 }
803}
804
805/// OptimizeGlobalAddressOfMalloc - This function takes the specified global
806/// variable, and transforms the program as if it always contained the result of
807/// the specified malloc. Because it is always the result of the specified
808/// malloc, there is no reason to actually DO the malloc. Instead, turn the
809/// malloc into a global, and any loads of GV as uses of the new global.
810static GlobalVariable *OptimizeGlobalAddressOfMalloc(GlobalVariable *GV,
811 MallocInst *MI) {
812 DOUT << "PROMOTING MALLOC GLOBAL: " << *GV << " MALLOC = " << *MI;
813 ConstantInt *NElements = cast<ConstantInt>(MI->getArraySize());
814
815 if (NElements->getZExtValue() != 1) {
816 // If we have an array allocation, transform it to a single element
817 // allocation to make the code below simpler.
818 Type *NewTy = ArrayType::get(MI->getAllocatedType(),
819 NElements->getZExtValue());
820 MallocInst *NewMI =
821 new MallocInst(NewTy, Constant::getNullValue(Type::Int32Ty),
822 MI->getAlignment(), MI->getName(), MI);
823 Value* Indices[2];
824 Indices[0] = Indices[1] = Constant::getNullValue(Type::Int32Ty);
Gabor Greifd6da1d02008-04-06 20:25:17 +0000825 Value *NewGEP = GetElementPtrInst::Create(NewMI, Indices, Indices + 2,
826 NewMI->getName()+".el0", MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827 MI->replaceAllUsesWith(NewGEP);
828 MI->eraseFromParent();
829 MI = NewMI;
830 }
831
832 // Create the new global variable. The contents of the malloc'd memory is
833 // undefined, so initialize with an undef value.
834 Constant *Init = UndefValue::get(MI->getAllocatedType());
835 GlobalVariable *NewGV = new GlobalVariable(MI->getAllocatedType(), false,
836 GlobalValue::InternalLinkage, Init,
837 GV->getName()+".body",
838 (Module *)NULL,
839 GV->isThreadLocal());
Chris Lattner20846272008-04-26 07:40:11 +0000840 // FIXME: This new global should have the alignment returned by malloc. Code
841 // could depend on malloc returning large alignment (on the mac, 16 bytes) but
842 // this would only guarantee some lower alignment.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843 GV->getParent()->getGlobalList().insert(GV, NewGV);
844
845 // Anything that used the malloc now uses the global directly.
846 MI->replaceAllUsesWith(NewGV);
847
848 Constant *RepValue = NewGV;
849 if (NewGV->getType() != GV->getType()->getElementType())
850 RepValue = ConstantExpr::getBitCast(RepValue,
851 GV->getType()->getElementType());
852
853 // If there is a comparison against null, we will insert a global bool to
854 // keep track of whether the global was initialized yet or not.
855 GlobalVariable *InitBool =
856 new GlobalVariable(Type::Int1Ty, false, GlobalValue::InternalLinkage,
857 ConstantInt::getFalse(), GV->getName()+".init",
858 (Module *)NULL, GV->isThreadLocal());
859 bool InitBoolUsed = false;
860
861 // Loop over all uses of GV, processing them in turn.
862 std::vector<StoreInst*> Stores;
863 while (!GV->use_empty())
864 if (LoadInst *LI = dyn_cast<LoadInst>(GV->use_back())) {
865 while (!LI->use_empty()) {
866 Use &LoadUse = LI->use_begin().getUse();
867 if (!isa<ICmpInst>(LoadUse.getUser()))
868 LoadUse = RepValue;
869 else {
870 ICmpInst *CI = cast<ICmpInst>(LoadUse.getUser());
871 // Replace the cmp X, 0 with a use of the bool value.
872 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", CI);
873 InitBoolUsed = true;
874 switch (CI->getPredicate()) {
875 default: assert(0 && "Unknown ICmp Predicate!");
876 case ICmpInst::ICMP_ULT:
877 case ICmpInst::ICMP_SLT:
878 LV = ConstantInt::getFalse(); // X < null -> always false
879 break;
880 case ICmpInst::ICMP_ULE:
881 case ICmpInst::ICMP_SLE:
882 case ICmpInst::ICMP_EQ:
Gabor Greifa645dd32008-05-16 19:29:10 +0000883 LV = BinaryOperator::CreateNot(LV, "notinit", CI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884 break;
885 case ICmpInst::ICMP_NE:
886 case ICmpInst::ICMP_UGE:
887 case ICmpInst::ICMP_SGE:
888 case ICmpInst::ICMP_UGT:
889 case ICmpInst::ICMP_SGT:
890 break; // no change.
891 }
892 CI->replaceAllUsesWith(LV);
893 CI->eraseFromParent();
894 }
895 }
896 LI->eraseFromParent();
897 } else {
898 StoreInst *SI = cast<StoreInst>(GV->use_back());
899 // The global is initialized when the store to it occurs.
900 new StoreInst(ConstantInt::getTrue(), InitBool, SI);
901 SI->eraseFromParent();
902 }
903
904 // If the initialization boolean was used, insert it, otherwise delete it.
905 if (!InitBoolUsed) {
906 while (!InitBool->use_empty()) // Delete initializations
907 cast<Instruction>(InitBool->use_back())->eraseFromParent();
908 delete InitBool;
909 } else
910 GV->getParent()->getGlobalList().insert(GV, InitBool);
911
912
913 // Now the GV is dead, nuke it and the malloc.
914 GV->eraseFromParent();
915 MI->eraseFromParent();
916
917 // To further other optimizations, loop over all users of NewGV and try to
918 // constant prop them. This will promote GEP instructions with constant
919 // indices into GEP constant-exprs, which will allow global-opt to hack on it.
920 ConstantPropUsersOf(NewGV);
921 if (RepValue != NewGV)
922 ConstantPropUsersOf(RepValue);
923
924 return NewGV;
925}
926
927/// ValueIsOnlyUsedLocallyOrStoredToOneGlobal - Scan the use-list of V checking
928/// to make sure that there are no complex uses of V. We permit simple things
929/// like dereferencing the pointer, but not storing through the address, unless
930/// it is to the specified global.
931static bool ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Instruction *V,
Chris Lattnere7606f42007-09-13 16:37:20 +0000932 GlobalVariable *GV,
933 SmallPtrSet<PHINode*, 8> &PHIs) {
Chris Lattner183b0cf2008-12-15 21:08:54 +0000934 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
Jay Foadd1d6a142009-06-06 17:49:35 +0000935 Instruction *Inst = cast<Instruction>(*UI);
Chris Lattner183b0cf2008-12-15 21:08:54 +0000936
937 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
938 continue; // Fine, ignore.
939 }
940
941 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000942 if (SI->getOperand(0) == V && SI->getOperand(1) != GV)
943 return false; // Storing the pointer itself... bad.
Chris Lattner183b0cf2008-12-15 21:08:54 +0000944 continue; // Otherwise, storing through it, or storing into GV... fine.
945 }
946
947 if (isa<GetElementPtrInst>(Inst)) {
948 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949 return false;
Chris Lattner183b0cf2008-12-15 21:08:54 +0000950 continue;
951 }
952
953 if (PHINode *PN = dyn_cast<PHINode>(Inst)) {
Chris Lattnere7606f42007-09-13 16:37:20 +0000954 // PHIs are ok if all uses are ok. Don't infinitely recurse through PHI
955 // cycles.
956 if (PHIs.insert(PN))
Chris Lattner4bde3c42007-09-14 03:41:21 +0000957 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(PN, GV, PHIs))
958 return false;
Chris Lattner183b0cf2008-12-15 21:08:54 +0000959 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960 }
Chris Lattner183b0cf2008-12-15 21:08:54 +0000961
962 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
963 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
964 return false;
965 continue;
966 }
967
968 return false;
969 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000970 return true;
971}
972
973/// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
974/// somewhere. Transform all uses of the allocation into loads from the
975/// global and uses of the resultant pointer. Further, delete the store into
976/// GV. This assumes that these value pass the
977/// 'ValueIsOnlyUsedLocallyOrStoredToOneGlobal' predicate.
978static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc,
979 GlobalVariable *GV) {
980 while (!Alloc->use_empty()) {
Chris Lattner20eef0f2007-09-13 18:00:31 +0000981 Instruction *U = cast<Instruction>(*Alloc->use_begin());
982 Instruction *InsertPt = U;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000983 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
984 // If this is the store of the allocation into the global, remove it.
985 if (SI->getOperand(1) == GV) {
986 SI->eraseFromParent();
987 continue;
988 }
Chris Lattner20eef0f2007-09-13 18:00:31 +0000989 } else if (PHINode *PN = dyn_cast<PHINode>(U)) {
990 // Insert the load in the corresponding predecessor, not right before the
991 // PHI.
Gabor Greif261734d2009-01-23 19:40:15 +0000992 InsertPt = PN->getIncomingBlock(Alloc->use_begin())->getTerminator();
Chris Lattner27ef89e2008-12-15 21:44:34 +0000993 } else if (isa<BitCastInst>(U)) {
994 // Must be bitcast between the malloc and store to initialize the global.
995 ReplaceUsesOfMallocWithGlobal(U, GV);
996 U->eraseFromParent();
997 continue;
998 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
999 // If this is a "GEP bitcast" and the user is a store to the global, then
1000 // just process it as a bitcast.
1001 if (GEPI->hasAllZeroIndices() && GEPI->hasOneUse())
1002 if (StoreInst *SI = dyn_cast<StoreInst>(GEPI->use_back()))
1003 if (SI->getOperand(1) == GV) {
1004 // Must be bitcast GEP between the malloc and store to initialize
1005 // the global.
1006 ReplaceUsesOfMallocWithGlobal(GEPI, GV);
1007 GEPI->eraseFromParent();
1008 continue;
1009 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010 }
Chris Lattner27ef89e2008-12-15 21:44:34 +00001011
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012 // Insert a load from the global, and use it instead of the malloc.
Chris Lattner20eef0f2007-09-13 18:00:31 +00001013 Value *NL = new LoadInst(GV, GV->getName()+".val", InsertPt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 U->replaceUsesOfWith(Alloc, NL);
1015 }
1016}
1017
Chris Lattner7f252db2008-12-16 21:24:51 +00001018/// LoadUsesSimpleEnoughForHeapSRA - Verify that all uses of V (a load, or a phi
1019/// of a load) are simple enough to perform heap SRA on. This permits GEP's
1020/// that index through the array and struct field, icmps of null, and PHIs.
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001021static bool LoadUsesSimpleEnoughForHeapSRA(Value *V,
Evan Chengb00d9282009-06-02 00:56:07 +00001022 SmallPtrSet<PHINode*, 32> &LoadUsingPHIs,
1023 SmallPtrSet<PHINode*, 32> &LoadUsingPHIsPerLoad) {
Chris Lattner7f252db2008-12-16 21:24:51 +00001024 // We permit two users of the load: setcc comparing against the null
1025 // pointer, and a getelementptr of a specific form.
1026 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
1027 Instruction *User = cast<Instruction>(*UI);
1028
1029 // Comparison against null is ok.
1030 if (ICmpInst *ICI = dyn_cast<ICmpInst>(User)) {
1031 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
1032 return false;
1033 continue;
1034 }
1035
1036 // getelementptr is also ok, but only a simple form.
1037 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(User)) {
1038 // Must index into the array and into the struct.
1039 if (GEPI->getNumOperands() < 3)
1040 return false;
1041
1042 // Otherwise the GEP is ok.
1043 continue;
1044 }
1045
1046 if (PHINode *PN = dyn_cast<PHINode>(User)) {
Evan Chengb00d9282009-06-02 00:56:07 +00001047 if (!LoadUsingPHIsPerLoad.insert(PN))
1048 // This means some phi nodes are dependent on each other.
1049 // Avoid infinite looping!
1050 return false;
1051 if (!LoadUsingPHIs.insert(PN))
1052 // If we have already analyzed this PHI, then it is safe.
Chris Lattner7f252db2008-12-16 21:24:51 +00001053 continue;
1054
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001055 // Make sure all uses of the PHI are simple enough to transform.
Evan Chengb00d9282009-06-02 00:56:07 +00001056 if (!LoadUsesSimpleEnoughForHeapSRA(PN,
1057 LoadUsingPHIs, LoadUsingPHIsPerLoad))
Chris Lattner7f252db2008-12-16 21:24:51 +00001058 return false;
1059
1060 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001061 }
Chris Lattner7f252db2008-12-16 21:24:51 +00001062
1063 // Otherwise we don't know what this is, not ok.
1064 return false;
1065 }
1066
1067 return true;
1068}
1069
1070
1071/// AllGlobalLoadUsesSimpleEnoughForHeapSRA - If all users of values loaded from
1072/// GV are simple enough to perform HeapSRA, return true.
1073static bool AllGlobalLoadUsesSimpleEnoughForHeapSRA(GlobalVariable *GV,
1074 MallocInst *MI) {
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001075 SmallPtrSet<PHINode*, 32> LoadUsingPHIs;
Evan Chengb00d9282009-06-02 00:56:07 +00001076 SmallPtrSet<PHINode*, 32> LoadUsingPHIsPerLoad;
Chris Lattner7f252db2008-12-16 21:24:51 +00001077 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;
1078 ++UI)
Evan Chengb00d9282009-06-02 00:56:07 +00001079 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
1080 if (!LoadUsesSimpleEnoughForHeapSRA(LI, LoadUsingPHIs,
1081 LoadUsingPHIsPerLoad))
Chris Lattner7f252db2008-12-16 21:24:51 +00001082 return false;
Evan Chengb00d9282009-06-02 00:56:07 +00001083 LoadUsingPHIsPerLoad.clear();
1084 }
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001085
1086 // If we reach here, we know that all uses of the loads and transitive uses
1087 // (through PHI nodes) are simple enough to transform. However, we don't know
1088 // that all inputs the to the PHI nodes are in the same equivalence sets.
1089 // Check to verify that all operands of the PHIs are either PHIS that can be
1090 // transformed, loads from GV, or MI itself.
1091 for (SmallPtrSet<PHINode*, 32>::iterator I = LoadUsingPHIs.begin(),
1092 E = LoadUsingPHIs.end(); I != E; ++I) {
1093 PHINode *PN = *I;
1094 for (unsigned op = 0, e = PN->getNumIncomingValues(); op != e; ++op) {
1095 Value *InVal = PN->getIncomingValue(op);
1096
1097 // PHI of the stored value itself is ok.
1098 if (InVal == MI) continue;
1099
1100 if (PHINode *InPN = dyn_cast<PHINode>(InVal)) {
1101 // One of the PHIs in our set is (optimistically) ok.
1102 if (LoadUsingPHIs.count(InPN))
1103 continue;
1104 return false;
1105 }
1106
1107 // Load from GV is ok.
1108 if (LoadInst *LI = dyn_cast<LoadInst>(InVal))
1109 if (LI->getOperand(0) == GV)
1110 continue;
1111
1112 // UNDEF? NULL?
1113
1114 // Anything else is rejected.
1115 return false;
1116 }
1117 }
1118
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119 return true;
1120}
1121
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001122static Value *GetHeapSROAValue(Value *V, unsigned FieldNo,
1123 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
1124 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
1125 std::vector<Value*> &FieldVals = InsertedScalarizedValues[V];
1126
1127 if (FieldNo >= FieldVals.size())
1128 FieldVals.resize(FieldNo+1);
1129
1130 // If we already have this value, just reuse the previously scalarized
1131 // version.
1132 if (Value *FieldVal = FieldVals[FieldNo])
1133 return FieldVal;
1134
1135 // Depending on what instruction this is, we have several cases.
1136 Value *Result;
1137 if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
1138 // This is a scalarized version of the load from the global. Just create
1139 // a new Load of the scalarized global.
1140 Result = new LoadInst(GetHeapSROAValue(LI->getOperand(0), FieldNo,
1141 InsertedScalarizedValues,
1142 PHIsToRewrite),
1143 LI->getName()+".f" + utostr(FieldNo), LI);
1144 } else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1145 // PN's type is pointer to struct. Make a new PHI of pointer to struct
1146 // field.
1147 const StructType *ST =
1148 cast<StructType>(cast<PointerType>(PN->getType())->getElementType());
1149
1150 Result =PHINode::Create(PointerType::getUnqual(ST->getElementType(FieldNo)),
1151 PN->getName()+".f"+utostr(FieldNo), PN);
1152 PHIsToRewrite.push_back(std::make_pair(PN, FieldNo));
1153 } else {
1154 assert(0 && "Unknown usable value");
1155 Result = 0;
1156 }
1157
1158 return FieldVals[FieldNo] = Result;
Chris Lattner20eef0f2007-09-13 18:00:31 +00001159}
1160
Chris Lattneraf82fb82007-09-13 17:29:05 +00001161/// RewriteHeapSROALoadUser - Given a load instruction and a value derived from
1162/// the load, rewrite the derived value to use the HeapSRoA'd load.
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001163static void RewriteHeapSROALoadUser(Instruction *LoadUser,
1164 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
1165 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
Chris Lattneraf82fb82007-09-13 17:29:05 +00001166 // If this is a comparison against null, handle it.
1167 if (ICmpInst *SCI = dyn_cast<ICmpInst>(LoadUser)) {
1168 assert(isa<ConstantPointerNull>(SCI->getOperand(1)));
1169 // If we have a setcc of the loaded pointer, we can use a setcc of any
1170 // field.
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001171 Value *NPtr = GetHeapSROAValue(SCI->getOperand(0), 0,
1172 InsertedScalarizedValues, PHIsToRewrite);
Chris Lattneraf82fb82007-09-13 17:29:05 +00001173
1174 Value *New = new ICmpInst(SCI->getPredicate(), NPtr,
1175 Constant::getNullValue(NPtr->getType()),
1176 SCI->getName(), SCI);
1177 SCI->replaceAllUsesWith(New);
1178 SCI->eraseFromParent();
1179 return;
1180 }
1181
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001182 // Handle 'getelementptr Ptr, Idx, i32 FieldNo ...'
Chris Lattner20eef0f2007-09-13 18:00:31 +00001183 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(LoadUser)) {
1184 assert(GEPI->getNumOperands() >= 3 && isa<ConstantInt>(GEPI->getOperand(2))
1185 && "Unexpected GEPI!");
Chris Lattneraf82fb82007-09-13 17:29:05 +00001186
Chris Lattner20eef0f2007-09-13 18:00:31 +00001187 // Load the pointer for this field.
1188 unsigned FieldNo = cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001189 Value *NewPtr = GetHeapSROAValue(GEPI->getOperand(0), FieldNo,
1190 InsertedScalarizedValues, PHIsToRewrite);
Chris Lattner20eef0f2007-09-13 18:00:31 +00001191
1192 // Create the new GEP idx vector.
1193 SmallVector<Value*, 8> GEPIdx;
1194 GEPIdx.push_back(GEPI->getOperand(1));
1195 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end());
1196
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001197 Value *NGEPI = GetElementPtrInst::Create(NewPtr,
1198 GEPIdx.begin(), GEPIdx.end(),
Gabor Greifd6da1d02008-04-06 20:25:17 +00001199 GEPI->getName(), GEPI);
Chris Lattner20eef0f2007-09-13 18:00:31 +00001200 GEPI->replaceAllUsesWith(NGEPI);
1201 GEPI->eraseFromParent();
1202 return;
1203 }
Chris Lattnereefff982007-09-13 21:31:36 +00001204
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001205 // Recursively transform the users of PHI nodes. This will lazily create the
1206 // PHIs that are needed for individual elements. Keep track of what PHIs we
1207 // see in InsertedScalarizedValues so that we don't get infinite loops (very
1208 // antisocial). If the PHI is already in InsertedScalarizedValues, it has
1209 // already been seen first by another load, so its uses have already been
1210 // processed.
1211 PHINode *PN = cast<PHINode>(LoadUser);
1212 bool Inserted;
1213 DenseMap<Value*, std::vector<Value*> >::iterator InsertPos;
1214 tie(InsertPos, Inserted) =
1215 InsertedScalarizedValues.insert(std::make_pair(PN, std::vector<Value*>()));
1216 if (!Inserted) return;
Chris Lattnereefff982007-09-13 21:31:36 +00001217
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001218 // If this is the first time we've seen this PHI, recursively process all
1219 // users.
Chris Lattnera5e124b2008-12-17 05:42:08 +00001220 for (Value::use_iterator UI = PN->use_begin(), E = PN->use_end(); UI != E; ) {
1221 Instruction *User = cast<Instruction>(*UI++);
1222 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
1223 }
Chris Lattneraf82fb82007-09-13 17:29:05 +00001224}
1225
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001226/// RewriteUsesOfLoadForHeapSRoA - We are performing Heap SRoA on a global. Ptr
1227/// is a value loaded from the global. Eliminate all uses of Ptr, making them
1228/// use FieldGlobals instead. All uses of loaded values satisfy
Chris Lattner7f252db2008-12-16 21:24:51 +00001229/// AllGlobalLoadUsesSimpleEnoughForHeapSRA.
Chris Lattneraf82fb82007-09-13 17:29:05 +00001230static void RewriteUsesOfLoadForHeapSRoA(LoadInst *Load,
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001231 DenseMap<Value*, std::vector<Value*> > &InsertedScalarizedValues,
1232 std::vector<std::pair<PHINode*, unsigned> > &PHIsToRewrite) {
1233 for (Value::use_iterator UI = Load->use_begin(), E = Load->use_end();
Chris Lattnera5e124b2008-12-17 05:42:08 +00001234 UI != E; ) {
1235 Instruction *User = cast<Instruction>(*UI++);
1236 RewriteHeapSROALoadUser(User, InsertedScalarizedValues, PHIsToRewrite);
1237 }
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001238
1239 if (Load->use_empty()) {
1240 Load->eraseFromParent();
1241 InsertedScalarizedValues.erase(Load);
1242 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001243}
1244
1245/// PerformHeapAllocSRoA - MI is an allocation of an array of structures. Break
1246/// it up into multiple allocations of arrays of the fields.
1247static GlobalVariable *PerformHeapAllocSRoA(GlobalVariable *GV, MallocInst *MI){
1248 DOUT << "SROA HEAP ALLOC: " << *GV << " MALLOC = " << *MI;
1249 const StructType *STy = cast<StructType>(MI->getAllocatedType());
1250
1251 // There is guaranteed to be at least one use of the malloc (storing
1252 // it into GV). If there are other uses, change them to be uses of
1253 // the global to simplify later code. This also deletes the store
1254 // into GV.
1255 ReplaceUsesOfMallocWithGlobal(MI, GV);
1256
1257 // Okay, at this point, there are no users of the malloc. Insert N
1258 // new mallocs at the same place as MI, and N globals.
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001259 std::vector<Value*> FieldGlobals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001260 std::vector<MallocInst*> FieldMallocs;
1261
1262 for (unsigned FieldNo = 0, e = STy->getNumElements(); FieldNo != e;++FieldNo){
1263 const Type *FieldTy = STy->getElementType(FieldNo);
Christopher Lambbb2f2222007-12-17 01:12:55 +00001264 const Type *PFieldTy = PointerType::getUnqual(FieldTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001265
1266 GlobalVariable *NGV =
1267 new GlobalVariable(PFieldTy, false, GlobalValue::InternalLinkage,
1268 Constant::getNullValue(PFieldTy),
1269 GV->getName() + ".f" + utostr(FieldNo), GV,
1270 GV->isThreadLocal());
1271 FieldGlobals.push_back(NGV);
1272
1273 MallocInst *NMI = new MallocInst(FieldTy, MI->getArraySize(),
1274 MI->getName() + ".f" + utostr(FieldNo),MI);
1275 FieldMallocs.push_back(NMI);
1276 new StoreInst(NMI, NGV, MI);
1277 }
1278
1279 // The tricky aspect of this transformation is handling the case when malloc
1280 // fails. In the original code, malloc failing would set the result pointer
1281 // of malloc to null. In this case, some mallocs could succeed and others
1282 // could fail. As such, we emit code that looks like this:
1283 // F0 = malloc(field0)
1284 // F1 = malloc(field1)
1285 // F2 = malloc(field2)
1286 // if (F0 == 0 || F1 == 0 || F2 == 0) {
1287 // if (F0) { free(F0); F0 = 0; }
1288 // if (F1) { free(F1); F1 = 0; }
1289 // if (F2) { free(F2); F2 = 0; }
1290 // }
1291 Value *RunningOr = 0;
1292 for (unsigned i = 0, e = FieldMallocs.size(); i != e; ++i) {
1293 Value *Cond = new ICmpInst(ICmpInst::ICMP_EQ, FieldMallocs[i],
1294 Constant::getNullValue(FieldMallocs[i]->getType()),
1295 "isnull", MI);
1296 if (!RunningOr)
1297 RunningOr = Cond; // First seteq
1298 else
Gabor Greifa645dd32008-05-16 19:29:10 +00001299 RunningOr = BinaryOperator::CreateOr(RunningOr, Cond, "tmp", MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001300 }
1301
1302 // Split the basic block at the old malloc.
1303 BasicBlock *OrigBB = MI->getParent();
1304 BasicBlock *ContBB = OrigBB->splitBasicBlock(MI, "malloc_cont");
1305
1306 // Create the block to check the first condition. Put all these blocks at the
1307 // end of the function as they are unlikely to be executed.
Gabor Greifd6da1d02008-04-06 20:25:17 +00001308 BasicBlock *NullPtrBlock = BasicBlock::Create("malloc_ret_null",
1309 OrigBB->getParent());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001310
1311 // Remove the uncond branch from OrigBB to ContBB, turning it into a cond
1312 // branch on RunningOr.
1313 OrigBB->getTerminator()->eraseFromParent();
Gabor Greifd6da1d02008-04-06 20:25:17 +00001314 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001315
1316 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1317 // pointer, because some may be null while others are not.
1318 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1319 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
1320 Value *Cmp = new ICmpInst(ICmpInst::ICMP_NE, GVVal,
1321 Constant::getNullValue(GVVal->getType()),
1322 "tmp", NullPtrBlock);
Gabor Greifd6da1d02008-04-06 20:25:17 +00001323 BasicBlock *FreeBlock = BasicBlock::Create("free_it", OrigBB->getParent());
1324 BasicBlock *NextBlock = BasicBlock::Create("next", OrigBB->getParent());
1325 BranchInst::Create(FreeBlock, NextBlock, Cmp, NullPtrBlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001326
1327 // Fill in FreeBlock.
1328 new FreeInst(GVVal, FreeBlock);
1329 new StoreInst(Constant::getNullValue(GVVal->getType()), FieldGlobals[i],
1330 FreeBlock);
Gabor Greifd6da1d02008-04-06 20:25:17 +00001331 BranchInst::Create(NextBlock, FreeBlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001332
1333 NullPtrBlock = NextBlock;
1334 }
1335
Gabor Greifd6da1d02008-04-06 20:25:17 +00001336 BranchInst::Create(ContBB, NullPtrBlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001337
1338 // MI is no longer needed, remove it.
1339 MI->eraseFromParent();
1340
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001341 /// InsertedScalarizedLoads - As we process loads, if we can't immediately
1342 /// update all uses of the load, keep track of what scalarized loads are
1343 /// inserted for a given load.
1344 DenseMap<Value*, std::vector<Value*> > InsertedScalarizedValues;
1345 InsertedScalarizedValues[GV] = FieldGlobals;
1346
1347 std::vector<std::pair<PHINode*, unsigned> > PHIsToRewrite;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001348
1349 // Okay, the malloc site is completely handled. All of the uses of GV are now
1350 // loads, and all uses of those loads are simple. Rewrite them to use loads
1351 // of the per-field globals instead.
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001352 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;) {
1353 Instruction *User = cast<Instruction>(*UI++);
1354
1355 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
1356 RewriteUsesOfLoadForHeapSRoA(LI, InsertedScalarizedValues, PHIsToRewrite);
1357 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001358 }
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001359
1360 // Must be a store of null.
1361 StoreInst *SI = cast<StoreInst>(User);
1362 assert(isa<ConstantPointerNull>(SI->getOperand(0)) &&
1363 "Unexpected heap-sra user!");
1364
1365 // Insert a store of null into each global.
1366 for (unsigned i = 0, e = FieldGlobals.size(); i != e; ++i) {
1367 const PointerType *PT = cast<PointerType>(FieldGlobals[i]->getType());
1368 Constant *Null = Constant::getNullValue(PT->getElementType());
1369 new StoreInst(Null, FieldGlobals[i], SI);
1370 }
1371 // Erase the original store.
1372 SI->eraseFromParent();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001373 }
1374
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001375 // While we have PHIs that are interesting to rewrite, do it.
1376 while (!PHIsToRewrite.empty()) {
1377 PHINode *PN = PHIsToRewrite.back().first;
1378 unsigned FieldNo = PHIsToRewrite.back().second;
1379 PHIsToRewrite.pop_back();
1380 PHINode *FieldPN = cast<PHINode>(InsertedScalarizedValues[PN][FieldNo]);
1381 assert(FieldPN->getNumIncomingValues() == 0 &&"Already processed this phi");
1382
1383 // Add all the incoming values. This can materialize more phis.
1384 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1385 Value *InVal = PN->getIncomingValue(i);
1386 InVal = GetHeapSROAValue(InVal, FieldNo, InsertedScalarizedValues,
1387 PHIsToRewrite);
1388 FieldPN->addIncoming(InVal, PN->getIncomingBlock(i));
1389 }
1390 }
1391
1392 // Drop all inter-phi links and any loads that made it this far.
1393 for (DenseMap<Value*, std::vector<Value*> >::iterator
1394 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1395 I != E; ++I) {
1396 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1397 PN->dropAllReferences();
1398 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1399 LI->dropAllReferences();
1400 }
1401
1402 // Delete all the phis and loads now that inter-references are dead.
1403 for (DenseMap<Value*, std::vector<Value*> >::iterator
1404 I = InsertedScalarizedValues.begin(), E = InsertedScalarizedValues.end();
1405 I != E; ++I) {
1406 if (PHINode *PN = dyn_cast<PHINode>(I->first))
1407 PN->eraseFromParent();
1408 else if (LoadInst *LI = dyn_cast<LoadInst>(I->first))
1409 LI->eraseFromParent();
1410 }
1411
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001412 // The old global is now dead, remove it.
1413 GV->eraseFromParent();
1414
1415 ++NumHeapSRA;
Chris Lattner8a2d32e2008-12-17 05:28:49 +00001416 return cast<GlobalVariable>(FieldGlobals[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001417}
1418
Chris Lattner78e568b2008-12-15 21:02:25 +00001419/// TryToOptimizeStoreOfMallocToGlobal - This function is called when we see a
1420/// pointer global variable with a single value stored it that is a malloc or
1421/// cast of malloc.
1422static bool TryToOptimizeStoreOfMallocToGlobal(GlobalVariable *GV,
1423 MallocInst *MI,
1424 Module::global_iterator &GVI,
1425 TargetData &TD) {
1426 // If this is a malloc of an abstract type, don't touch it.
1427 if (!MI->getAllocatedType()->isSized())
1428 return false;
1429
1430 // We can't optimize this global unless all uses of it are *known* to be
1431 // of the malloc value, not of the null initializer value (consider a use
1432 // that compares the global's value against zero to see if the malloc has
1433 // been reached). To do this, we check to see if all uses of the global
1434 // would trap if the global were null: this proves that they must all
1435 // happen after the malloc.
1436 if (!AllUsesOfLoadedValueWillTrapIfNull(GV))
1437 return false;
1438
1439 // We can't optimize this if the malloc itself is used in a complex way,
1440 // for example, being stored into multiple globals. This allows the
1441 // malloc to be stored into the specified global, loaded setcc'd, and
1442 // GEP'd. These are all things we could transform to using the global
1443 // for.
1444 {
1445 SmallPtrSet<PHINode*, 8> PHIs;
1446 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(MI, GV, PHIs))
1447 return false;
1448 }
1449
1450
1451 // If we have a global that is only initialized with a fixed size malloc,
1452 // transform the program to use global memory instead of malloc'd memory.
1453 // This eliminates dynamic allocation, avoids an indirection accessing the
1454 // data, and exposes the resultant global to further GlobalOpt.
1455 if (ConstantInt *NElements = dyn_cast<ConstantInt>(MI->getArraySize())) {
1456 // Restrict this transformation to only working on small allocations
1457 // (2048 bytes currently), as we don't want to introduce a 16M global or
1458 // something.
1459 if (NElements->getZExtValue()*
Duncan Sandsec4f97d2009-05-09 07:06:46 +00001460 TD.getTypeAllocSize(MI->getAllocatedType()) < 2048) {
Chris Lattner78e568b2008-12-15 21:02:25 +00001461 GVI = OptimizeGlobalAddressOfMalloc(GV, MI);
1462 return true;
1463 }
1464 }
1465
1466 // If the allocation is an array of structures, consider transforming this
1467 // into multiple malloc'd arrays, one for each field. This is basically
1468 // SRoA for malloc'd memory.
Chris Lattner27ef89e2008-12-15 21:44:34 +00001469 const Type *AllocTy = MI->getAllocatedType();
1470
1471 // If this is an allocation of a fixed size array of structs, analyze as a
1472 // variable size array. malloc [100 x struct],1 -> malloc struct, 100
1473 if (!MI->isArrayAllocation())
1474 if (const ArrayType *AT = dyn_cast<ArrayType>(AllocTy))
1475 AllocTy = AT->getElementType();
1476
1477 if (const StructType *AllocSTy = dyn_cast<StructType>(AllocTy)) {
Chris Lattner78e568b2008-12-15 21:02:25 +00001478 // This the structure has an unreasonable number of fields, leave it
1479 // alone.
Chris Lattner27ef89e2008-12-15 21:44:34 +00001480 if (AllocSTy->getNumElements() <= 16 && AllocSTy->getNumElements() != 0 &&
Chris Lattner7f252db2008-12-16 21:24:51 +00001481 AllGlobalLoadUsesSimpleEnoughForHeapSRA(GV, MI)) {
Chris Lattner27ef89e2008-12-15 21:44:34 +00001482
1483 // If this is a fixed size array, transform the Malloc to be an alloc of
1484 // structs. malloc [100 x struct],1 -> malloc struct, 100
1485 if (const ArrayType *AT = dyn_cast<ArrayType>(MI->getAllocatedType())) {
1486 MallocInst *NewMI =
1487 new MallocInst(AllocSTy,
1488 ConstantInt::get(Type::Int32Ty, AT->getNumElements()),
1489 "", MI);
1490 NewMI->takeName(MI);
1491 Value *Cast = new BitCastInst(NewMI, MI->getType(), "tmp", MI);
1492 MI->replaceAllUsesWith(Cast);
1493 MI->eraseFromParent();
1494 MI = NewMI;
1495 }
1496
Chris Lattner78e568b2008-12-15 21:02:25 +00001497 GVI = PerformHeapAllocSRoA(GV, MI);
1498 return true;
1499 }
1500 }
1501
1502 return false;
1503}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001504
1505// OptimizeOnceStoredGlobal - Try to optimize globals based on the knowledge
1506// that only one value (besides its initializer) is ever stored to the global.
1507static bool OptimizeOnceStoredGlobal(GlobalVariable *GV, Value *StoredOnceVal,
1508 Module::global_iterator &GVI,
1509 TargetData &TD) {
Chris Lattner2e729112008-12-15 21:20:32 +00001510 // Ignore no-op GEPs and bitcasts.
1511 StoredOnceVal = StoredOnceVal->stripPointerCasts();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001512
1513 // If we are dealing with a pointer global that is initialized to null and
1514 // only has one (non-null) value stored into it, then we can optimize any
1515 // users of the loaded value (often calls and loads) that would trap if the
1516 // value was null.
1517 if (isa<PointerType>(GV->getInitializer()->getType()) &&
1518 GV->getInitializer()->isNullValue()) {
1519 if (Constant *SOVC = dyn_cast<Constant>(StoredOnceVal)) {
1520 if (GV->getInitializer()->getType() != SOVC->getType())
1521 SOVC = ConstantExpr::getBitCast(SOVC, GV->getInitializer()->getType());
1522
1523 // Optimize away any trapping uses of the loaded value.
1524 if (OptimizeAwayTrappingUsesOfLoads(GV, SOVC))
1525 return true;
1526 } else if (MallocInst *MI = dyn_cast<MallocInst>(StoredOnceVal)) {
Chris Lattner78e568b2008-12-15 21:02:25 +00001527 if (TryToOptimizeStoreOfMallocToGlobal(GV, MI, GVI, TD))
1528 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001529 }
1530 }
1531
1532 return false;
1533}
1534
Chris Lattnerece46db2008-01-14 01:17:44 +00001535/// TryToShrinkGlobalToBoolean - At this point, we have learned that the only
1536/// two values ever stored into GV are its initializer and OtherVal. See if we
1537/// can shrink the global into a boolean and select between the two values
1538/// whenever it is used. This exposes the values to other scalar optimizations.
1539static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
1540 const Type *GVElType = GV->getType()->getElementType();
1541
1542 // If GVElType is already i1, it is already shrunk. If the type of the GV is
Chris Lattnere1d0fa12009-03-07 23:32:02 +00001543 // an FP value, pointer or vector, don't do this optimization because a select
1544 // between them is very expensive and unlikely to lead to later
1545 // simplification. In these cases, we typically end up with "cond ? v1 : v2"
1546 // where v1 and v2 both require constant pool loads, a big loss.
Chris Lattnerece46db2008-01-14 01:17:44 +00001547 if (GVElType == Type::Int1Ty || GVElType->isFloatingPoint() ||
Chris Lattnere1d0fa12009-03-07 23:32:02 +00001548 isa<PointerType>(GVElType) || isa<VectorType>(GVElType))
Chris Lattnerece46db2008-01-14 01:17:44 +00001549 return false;
1550
1551 // Walk the use list of the global seeing if all the uses are load or store.
1552 // If there is anything else, bail out.
1553 for (Value::use_iterator I = GV->use_begin(), E = GV->use_end(); I != E; ++I)
Devang Patel9b951552009-03-06 01:39:36 +00001554 if (!isa<LoadInst>(I) && !isa<StoreInst>(I))
Chris Lattnerece46db2008-01-14 01:17:44 +00001555 return false;
1556
1557 DOUT << " *** SHRINKING TO BOOL: " << *GV;
1558
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001559 // Create the new global, initializing it to false.
1560 GlobalVariable *NewGV = new GlobalVariable(Type::Int1Ty, false,
Nick Lewycky74e96b72009-05-03 03:49:08 +00001561 GlobalValue::InternalLinkage, ConstantInt::getFalse(),
1562 GV->getName()+".b",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001563 (Module *)NULL,
1564 GV->isThreadLocal());
1565 GV->getParent()->getGlobalList().insert(GV, NewGV);
1566
1567 Constant *InitVal = GV->getInitializer();
1568 assert(InitVal->getType() != Type::Int1Ty && "No reason to shrink to bool!");
1569
1570 // If initialized to zero and storing one into the global, we can use a cast
1571 // instead of a select to synthesize the desired value.
1572 bool IsOneZero = false;
1573 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1574 IsOneZero = InitVal->isNullValue() && CI->isOne();
1575
1576 while (!GV->use_empty()) {
Devang Patel9b951552009-03-06 01:39:36 +00001577 Instruction *UI = cast<Instruction>(GV->use_back());
1578 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001579 // Change the store into a boolean store.
1580 bool StoringOther = SI->getOperand(0) == OtherVal;
1581 // Only do this if we weren't storing a loaded value.
1582 Value *StoreVal;
1583 if (StoringOther || SI->getOperand(0) == InitVal)
1584 StoreVal = ConstantInt::get(Type::Int1Ty, StoringOther);
1585 else {
1586 // Otherwise, we are storing a previously loaded copy. To do this,
1587 // change the copy from copying the original value to just copying the
1588 // bool.
1589 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1590
1591 // If we're already replaced the input, StoredVal will be a cast or
1592 // select instruction. If not, it will be a load of the original
1593 // global.
1594 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1595 assert(LI->getOperand(0) == GV && "Not a copy!");
1596 // Insert a new load, to preserve the saved value.
1597 StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI);
1598 } else {
1599 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1600 "This is not a form that we understand!");
1601 StoreVal = StoredVal->getOperand(0);
1602 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1603 }
1604 }
1605 new StoreInst(StoreVal, NewGV, SI);
Devang Patel9b951552009-03-06 01:39:36 +00001606 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001607 // Change the load into a load of bool then a select.
Devang Patel9b951552009-03-06 01:39:36 +00001608 LoadInst *LI = cast<LoadInst>(UI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001609 LoadInst *NLI = new LoadInst(NewGV, LI->getName()+".b", LI);
1610 Value *NSI;
1611 if (IsOneZero)
1612 NSI = new ZExtInst(NLI, LI->getType(), "", LI);
1613 else
Gabor Greifd6da1d02008-04-06 20:25:17 +00001614 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001615 NSI->takeName(LI);
1616 LI->replaceAllUsesWith(NSI);
Devang Patel9b951552009-03-06 01:39:36 +00001617 }
1618 UI->eraseFromParent();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001619 }
1620
1621 GV->eraseFromParent();
Chris Lattnerece46db2008-01-14 01:17:44 +00001622 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001623}
1624
1625
1626/// ProcessInternalGlobal - Analyze the specified global variable and optimize
1627/// it if possible. If we make a change, return true.
1628bool GlobalOpt::ProcessInternalGlobal(GlobalVariable *GV,
1629 Module::global_iterator &GVI) {
Chris Lattner4cd08c22008-12-16 07:34:30 +00001630 SmallPtrSet<PHINode*, 16> PHIUsers;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001631 GlobalStatus GS;
1632 GV->removeDeadConstantUsers();
1633
1634 if (GV->use_empty()) {
1635 DOUT << "GLOBAL DEAD: " << *GV;
1636 GV->eraseFromParent();
1637 ++NumDeleted;
1638 return true;
1639 }
1640
1641 if (!AnalyzeGlobal(GV, GS, PHIUsers)) {
1642#if 0
1643 cerr << "Global: " << *GV;
1644 cerr << " isLoaded = " << GS.isLoaded << "\n";
1645 cerr << " StoredType = ";
1646 switch (GS.StoredType) {
1647 case GlobalStatus::NotStored: cerr << "NEVER STORED\n"; break;
1648 case GlobalStatus::isInitializerStored: cerr << "INIT STORED\n"; break;
1649 case GlobalStatus::isStoredOnce: cerr << "STORED ONCE\n"; break;
1650 case GlobalStatus::isStored: cerr << "stored\n"; break;
1651 }
1652 if (GS.StoredType == GlobalStatus::isStoredOnce && GS.StoredOnceValue)
1653 cerr << " StoredOnceValue = " << *GS.StoredOnceValue << "\n";
1654 if (GS.AccessingFunction && !GS.HasMultipleAccessingFunctions)
1655 cerr << " AccessingFunction = " << GS.AccessingFunction->getName()
1656 << "\n";
1657 cerr << " HasMultipleAccessingFunctions = "
1658 << GS.HasMultipleAccessingFunctions << "\n";
1659 cerr << " HasNonInstructionUser = " << GS.HasNonInstructionUser<<"\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001660 cerr << "\n";
1661#endif
1662
1663 // If this is a first class global and has only one accessing function
1664 // and this function is main (which we know is not recursive we can make
1665 // this global a local variable) we replace the global with a local alloca
1666 // in this function.
1667 //
Dan Gohman5e8fbc22008-05-23 00:17:26 +00001668 // NOTE: It doesn't make sense to promote non single-value types since we
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001669 // are just replacing static memory to stack memory.
Sanjiv Gupta961b5d22009-06-17 06:47:15 +00001670 //
1671 // If the global is in different address space, don't bring it to stack.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001672 if (!GS.HasMultipleAccessingFunctions &&
1673 GS.AccessingFunction && !GS.HasNonInstructionUser &&
Dan Gohman5e8fbc22008-05-23 00:17:26 +00001674 GV->getType()->getElementType()->isSingleValueType() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001675 GS.AccessingFunction->getName() == "main" &&
Sanjiv Gupta961b5d22009-06-17 06:47:15 +00001676 GS.AccessingFunction->hasExternalLinkage() &&
1677 GV->getType()->getAddressSpace() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001678 DOUT << "LOCALIZING GLOBAL: " << *GV;
1679 Instruction* FirstI = GS.AccessingFunction->getEntryBlock().begin();
1680 const Type* ElemTy = GV->getType()->getElementType();
1681 // FIXME: Pass Global's alignment when globals have alignment
1682 AllocaInst* Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), FirstI);
1683 if (!isa<UndefValue>(GV->getInitializer()))
1684 new StoreInst(GV->getInitializer(), Alloca, FirstI);
1685
1686 GV->replaceAllUsesWith(Alloca);
1687 GV->eraseFromParent();
1688 ++NumLocalized;
1689 return true;
1690 }
1691
1692 // If the global is never loaded (but may be stored to), it is dead.
1693 // Delete it now.
1694 if (!GS.isLoaded) {
1695 DOUT << "GLOBAL NEVER LOADED: " << *GV;
1696
1697 // Delete any stores we can find to the global. We may not be able to
1698 // make it completely dead though.
1699 bool Changed = CleanupConstantGlobalUsers(GV, GV->getInitializer());
1700
1701 // If the global is dead now, delete it.
1702 if (GV->use_empty()) {
1703 GV->eraseFromParent();
1704 ++NumDeleted;
1705 Changed = true;
1706 }
1707 return Changed;
1708
1709 } else if (GS.StoredType <= GlobalStatus::isInitializerStored) {
1710 DOUT << "MARKING CONSTANT: " << *GV;
1711 GV->setConstant(true);
1712
1713 // Clean up any obviously simplifiable users now.
1714 CleanupConstantGlobalUsers(GV, GV->getInitializer());
1715
1716 // If the global is dead now, just nuke it.
1717 if (GV->use_empty()) {
1718 DOUT << " *** Marking constant allowed us to simplify "
1719 << "all users and delete global!\n";
1720 GV->eraseFromParent();
1721 ++NumDeleted;
1722 }
1723
1724 ++NumMarked;
1725 return true;
Dan Gohman5e8fbc22008-05-23 00:17:26 +00001726 } else if (!GV->getInitializer()->getType()->isSingleValueType()) {
Chris Lattner20846272008-04-26 07:40:11 +00001727 if (GlobalVariable *FirstNewGV = SRAGlobal(GV,
1728 getAnalysis<TargetData>())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001729 GVI = FirstNewGV; // Don't skip the newly produced globals!
1730 return true;
1731 }
1732 } else if (GS.StoredType == GlobalStatus::isStoredOnce) {
1733 // If the initial value for the global was an undef value, and if only
1734 // one other value was stored into it, we can just change the
Duncan Sands25464152009-01-13 13:48:44 +00001735 // initializer to be the stored value, then delete all stores to the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001736 // global. This allows us to mark it constant.
1737 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
1738 if (isa<UndefValue>(GV->getInitializer())) {
1739 // Change the initial value here.
1740 GV->setInitializer(SOVConstant);
1741
1742 // Clean up any obviously simplifiable users now.
1743 CleanupConstantGlobalUsers(GV, GV->getInitializer());
1744
1745 if (GV->use_empty()) {
1746 DOUT << " *** Substituting initializer allowed us to "
1747 << "simplify all users and delete global!\n";
1748 GV->eraseFromParent();
1749 ++NumDeleted;
1750 } else {
1751 GVI = GV;
1752 }
1753 ++NumSubstitute;
1754 return true;
1755 }
1756
1757 // Try to optimize globals based on the knowledge that only one value
1758 // (besides its initializer) is ever stored to the global.
1759 if (OptimizeOnceStoredGlobal(GV, GS.StoredOnceValue, GVI,
1760 getAnalysis<TargetData>()))
1761 return true;
1762
1763 // Otherwise, if the global was not a boolean, we can shrink it to be a
1764 // boolean.
1765 if (Constant *SOVConstant = dyn_cast<Constant>(GS.StoredOnceValue))
Chris Lattnerece46db2008-01-14 01:17:44 +00001766 if (TryToShrinkGlobalToBoolean(GV, SOVConstant)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001767 ++NumShrunkToBool;
1768 return true;
1769 }
1770 }
1771 }
1772 return false;
1773}
1774
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001775/// ChangeCalleesToFastCall - Walk all of the direct calls of the specified
1776/// function, changing them to FastCC.
1777static void ChangeCalleesToFastCall(Function *F) {
1778 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
Duncan Sands551ec902008-02-18 17:32:13 +00001779 CallSite User(cast<Instruction>(*UI));
1780 User.setCallingConv(CallingConv::Fast);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001781 }
1782}
1783
Devang Pateld222f862008-09-25 21:00:45 +00001784static AttrListPtr StripNest(const AttrListPtr &Attrs) {
Chris Lattner1c8733e2008-03-12 17:45:29 +00001785 for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
Devang Pateld222f862008-09-25 21:00:45 +00001786 if ((Attrs.getSlot(i).Attrs & Attribute::Nest) == 0)
Duncan Sands551ec902008-02-18 17:32:13 +00001787 continue;
1788
Duncan Sands551ec902008-02-18 17:32:13 +00001789 // There can be only one.
Devang Pateld222f862008-09-25 21:00:45 +00001790 return Attrs.removeAttr(Attrs.getSlot(i).Index, Attribute::Nest);
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001791 }
1792
1793 return Attrs;
1794}
1795
1796static void RemoveNestAttribute(Function *F) {
Devang Pateld222f862008-09-25 21:00:45 +00001797 F->setAttributes(StripNest(F->getAttributes()));
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001798 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
Duncan Sands551ec902008-02-18 17:32:13 +00001799 CallSite User(cast<Instruction>(*UI));
Devang Pateld222f862008-09-25 21:00:45 +00001800 User.setAttributes(StripNest(User.getAttributes()));
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001801 }
1802}
1803
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001804bool GlobalOpt::OptimizeFunctions(Module &M) {
1805 bool Changed = false;
1806 // Optimize functions.
1807 for (Module::iterator FI = M.begin(), E = M.end(); FI != E; ) {
1808 Function *F = FI++;
Duncan Sands0c7b6332009-03-06 10:21:56 +00001809 // Functions without names cannot be referenced outside this module.
1810 if (!F->hasName() && !F->isDeclaration())
1811 F->setLinkage(GlobalValue::InternalLinkage);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001812 F->removeDeadConstantUsers();
Rafael Espindolaa168fc92009-01-15 20:18:42 +00001813 if (F->use_empty() && (F->hasLocalLinkage() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001814 F->hasLinkOnceLinkage())) {
1815 M.getFunctionList().erase(F);
1816 Changed = true;
1817 ++NumFnDeleted;
Rafael Espindolaa168fc92009-01-15 20:18:42 +00001818 } else if (F->hasLocalLinkage()) {
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001819 if (F->getCallingConv() == CallingConv::C && !F->isVarArg() &&
Jay Foad1379d592009-06-10 08:41:11 +00001820 !F->hasAddressTaken()) {
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001821 // If this function has C calling conventions, is not a varargs
1822 // function, and is only called directly, promote it to use the Fast
1823 // calling convention.
1824 F->setCallingConv(CallingConv::Fast);
1825 ChangeCalleesToFastCall(F);
1826 ++NumFastCallFns;
1827 Changed = true;
1828 }
1829
Devang Pateld222f862008-09-25 21:00:45 +00001830 if (F->getAttributes().hasAttrSomewhere(Attribute::Nest) &&
Jay Foad1379d592009-06-10 08:41:11 +00001831 !F->hasAddressTaken()) {
Duncan Sandsafa10bf2008-02-16 20:56:04 +00001832 // The function is not used by a trampoline intrinsic, so it is safe
1833 // to remove the 'nest' attribute.
1834 RemoveNestAttribute(F);
1835 ++NumNestRemoved;
1836 Changed = true;
1837 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001838 }
1839 }
1840 return Changed;
1841}
1842
1843bool GlobalOpt::OptimizeGlobalVars(Module &M) {
1844 bool Changed = false;
1845 for (Module::global_iterator GVI = M.global_begin(), E = M.global_end();
1846 GVI != E; ) {
1847 GlobalVariable *GV = GVI++;
Duncan Sands0c7b6332009-03-06 10:21:56 +00001848 // Global variables without names cannot be referenced outside this module.
1849 if (!GV->hasName() && !GV->isDeclaration())
1850 GV->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindolaa168fc92009-01-15 20:18:42 +00001851 if (!GV->isConstant() && GV->hasLocalLinkage() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001852 GV->hasInitializer())
1853 Changed |= ProcessInternalGlobal(GV, GVI);
1854 }
1855 return Changed;
1856}
1857
1858/// FindGlobalCtors - Find the llvm.globalctors list, verifying that all
1859/// initializers have an init priority of 65535.
1860GlobalVariable *GlobalOpt::FindGlobalCtors(Module &M) {
1861 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1862 I != E; ++I)
1863 if (I->getName() == "llvm.global_ctors") {
1864 // Found it, verify it's an array of { int, void()* }.
1865 const ArrayType *ATy =dyn_cast<ArrayType>(I->getType()->getElementType());
1866 if (!ATy) return 0;
1867 const StructType *STy = dyn_cast<StructType>(ATy->getElementType());
1868 if (!STy || STy->getNumElements() != 2 ||
1869 STy->getElementType(0) != Type::Int32Ty) return 0;
1870 const PointerType *PFTy = dyn_cast<PointerType>(STy->getElementType(1));
1871 if (!PFTy) return 0;
1872 const FunctionType *FTy = dyn_cast<FunctionType>(PFTy->getElementType());
1873 if (!FTy || FTy->getReturnType() != Type::VoidTy || FTy->isVarArg() ||
1874 FTy->getNumParams() != 0)
1875 return 0;
1876
1877 // Verify that the initializer is simple enough for us to handle.
1878 if (!I->hasInitializer()) return 0;
1879 ConstantArray *CA = dyn_cast<ConstantArray>(I->getInitializer());
1880 if (!CA) return 0;
Gabor Greif20f03f52008-05-29 01:59:18 +00001881 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i)
1882 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(*i)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001883 if (isa<ConstantPointerNull>(CS->getOperand(1)))
1884 continue;
1885
1886 // Must have a function or null ptr.
1887 if (!isa<Function>(CS->getOperand(1)))
1888 return 0;
1889
1890 // Init priority must be standard.
1891 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
1892 if (!CI || CI->getZExtValue() != 65535)
1893 return 0;
1894 } else {
1895 return 0;
1896 }
1897
1898 return I;
1899 }
1900 return 0;
1901}
1902
1903/// ParseGlobalCtors - Given a llvm.global_ctors list that we can understand,
1904/// return a list of the functions and null terminator as a vector.
1905static std::vector<Function*> ParseGlobalCtors(GlobalVariable *GV) {
1906 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1907 std::vector<Function*> Result;
1908 Result.reserve(CA->getNumOperands());
Gabor Greif20f03f52008-05-29 01:59:18 +00001909 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i) {
1910 ConstantStruct *CS = cast<ConstantStruct>(*i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001911 Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
1912 }
1913 return Result;
1914}
1915
1916/// InstallGlobalCtors - Given a specified llvm.global_ctors list, install the
1917/// specified array, returning the new global to use.
1918static GlobalVariable *InstallGlobalCtors(GlobalVariable *GCL,
1919 const std::vector<Function*> &Ctors) {
1920 // If we made a change, reassemble the initializer list.
1921 std::vector<Constant*> CSVals;
1922 CSVals.push_back(ConstantInt::get(Type::Int32Ty, 65535));
1923 CSVals.push_back(0);
1924
1925 // Create the new init list.
1926 std::vector<Constant*> CAList;
1927 for (unsigned i = 0, e = Ctors.size(); i != e; ++i) {
1928 if (Ctors[i]) {
1929 CSVals[1] = Ctors[i];
1930 } else {
Chris Lattner3fd51c02009-07-01 04:13:31 +00001931 const Type *FTy = FunctionType::get(Type::VoidTy, false);
Christopher Lambbb2f2222007-12-17 01:12:55 +00001932 const PointerType *PFTy = PointerType::getUnqual(FTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001933 CSVals[1] = Constant::getNullValue(PFTy);
1934 CSVals[0] = ConstantInt::get(Type::Int32Ty, 2147483647);
1935 }
1936 CAList.push_back(ConstantStruct::get(CSVals));
1937 }
1938
1939 // Create the array initializer.
1940 const Type *StructTy =
1941 cast<ArrayType>(GCL->getType()->getElementType())->getElementType();
1942 Constant *CA = ConstantArray::get(ArrayType::get(StructTy, CAList.size()),
1943 CAList);
1944
1945 // If we didn't change the number of elements, don't create a new GV.
1946 if (CA->getType() == GCL->getInitializer()->getType()) {
1947 GCL->setInitializer(CA);
1948 return GCL;
1949 }
1950
1951 // Create the new global and insert it next to the existing list.
1952 GlobalVariable *NGV = new GlobalVariable(CA->getType(), GCL->isConstant(),
1953 GCL->getLinkage(), CA, "",
1954 (Module *)NULL,
1955 GCL->isThreadLocal());
1956 GCL->getParent()->getGlobalList().insert(GCL, NGV);
1957 NGV->takeName(GCL);
1958
1959 // Nuke the old list, replacing any uses with the new one.
1960 if (!GCL->use_empty()) {
1961 Constant *V = NGV;
1962 if (V->getType() != GCL->getType())
1963 V = ConstantExpr::getBitCast(V, GCL->getType());
1964 GCL->replaceAllUsesWith(V);
1965 }
1966 GCL->eraseFromParent();
1967
1968 if (Ctors.size())
1969 return NGV;
1970 else
1971 return 0;
1972}
1973
1974
Chris Lattner4cd08c22008-12-16 07:34:30 +00001975static Constant *getVal(DenseMap<Value*, Constant*> &ComputedValues,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001976 Value *V) {
1977 if (Constant *CV = dyn_cast<Constant>(V)) return CV;
1978 Constant *R = ComputedValues[V];
1979 assert(R && "Reference to an uncomputed value!");
1980 return R;
1981}
1982
1983/// isSimpleEnoughPointerToCommit - Return true if this constant is simple
1984/// enough for us to understand. In particular, if it is a cast of something,
1985/// we punt. We basically just support direct accesses to globals and GEP's of
1986/// globals. This should be kept up to date with CommitValueTo.
1987static bool isSimpleEnoughPointerToCommit(Constant *C) {
1988 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
Rafael Espindolaa168fc92009-01-15 20:18:42 +00001989 if (!GV->hasExternalLinkage() && !GV->hasLocalLinkage())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001990 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
1991 return !GV->isDeclaration(); // reject external globals.
1992 }
1993 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
1994 // Handle a constantexpr gep.
1995 if (CE->getOpcode() == Instruction::GetElementPtr &&
1996 isa<GlobalVariable>(CE->getOperand(0))) {
1997 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
Rafael Espindolaa168fc92009-01-15 20:18:42 +00001998 if (!GV->hasExternalLinkage() && !GV->hasLocalLinkage())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001999 return false; // do not allow weak/linkonce/dllimport/dllexport linkage.
2000 return GV->hasInitializer() &&
2001 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
2002 }
2003 return false;
2004}
2005
2006/// EvaluateStoreInto - Evaluate a piece of a constantexpr store into a global
2007/// initializer. This returns 'Init' modified to reflect 'Val' stored into it.
2008/// At this point, the GEP operands of Addr [0, OpNo) have been stepped into.
2009static Constant *EvaluateStoreInto(Constant *Init, Constant *Val,
2010 ConstantExpr *Addr, unsigned OpNo) {
2011 // Base case of the recursion.
2012 if (OpNo == Addr->getNumOperands()) {
2013 assert(Val->getType() == Init->getType() && "Type mismatch!");
2014 return Val;
2015 }
2016
2017 if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
2018 std::vector<Constant*> Elts;
2019
2020 // Break up the constant into its elements.
2021 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
Gabor Greif20f03f52008-05-29 01:59:18 +00002022 for (User::op_iterator i = CS->op_begin(), e = CS->op_end(); i != e; ++i)
2023 Elts.push_back(cast<Constant>(*i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002024 } else if (isa<ConstantAggregateZero>(Init)) {
2025 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2026 Elts.push_back(Constant::getNullValue(STy->getElementType(i)));
2027 } else if (isa<UndefValue>(Init)) {
2028 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
2029 Elts.push_back(UndefValue::get(STy->getElementType(i)));
2030 } else {
2031 assert(0 && "This code is out of sync with "
2032 " ConstantFoldLoadThroughGEPConstantExpr");
2033 }
2034
2035 // Replace the element that we are supposed to.
2036 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo));
2037 unsigned Idx = CU->getZExtValue();
2038 assert(Idx < STy->getNumElements() && "Struct index out of range!");
2039 Elts[Idx] = EvaluateStoreInto(Elts[Idx], Val, Addr, OpNo+1);
2040
2041 // Return the modified struct.
2042 return ConstantStruct::get(&Elts[0], Elts.size(), STy->isPacked());
2043 } else {
2044 ConstantInt *CI = cast<ConstantInt>(Addr->getOperand(OpNo));
2045 const ArrayType *ATy = cast<ArrayType>(Init->getType());
2046
2047 // Break up the array into elements.
2048 std::vector<Constant*> Elts;
2049 if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
Gabor Greif20f03f52008-05-29 01:59:18 +00002050 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i)
2051 Elts.push_back(cast<Constant>(*i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002052 } else if (isa<ConstantAggregateZero>(Init)) {
2053 Constant *Elt = Constant::getNullValue(ATy->getElementType());
2054 Elts.assign(ATy->getNumElements(), Elt);
2055 } else if (isa<UndefValue>(Init)) {
2056 Constant *Elt = UndefValue::get(ATy->getElementType());
2057 Elts.assign(ATy->getNumElements(), Elt);
2058 } else {
2059 assert(0 && "This code is out of sync with "
2060 " ConstantFoldLoadThroughGEPConstantExpr");
2061 }
2062
2063 assert(CI->getZExtValue() < ATy->getNumElements());
2064 Elts[CI->getZExtValue()] =
2065 EvaluateStoreInto(Elts[CI->getZExtValue()], Val, Addr, OpNo+1);
2066 return ConstantArray::get(ATy, Elts);
2067 }
2068}
2069
2070/// CommitValueTo - We have decided that Addr (which satisfies the predicate
2071/// isSimpleEnoughPointerToCommit) should get Val as its value. Make it happen.
2072static void CommitValueTo(Constant *Val, Constant *Addr) {
2073 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
2074 assert(GV->hasInitializer());
2075 GV->setInitializer(Val);
2076 return;
2077 }
2078
2079 ConstantExpr *CE = cast<ConstantExpr>(Addr);
2080 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2081
2082 Constant *Init = GV->getInitializer();
2083 Init = EvaluateStoreInto(Init, Val, CE, 2);
2084 GV->setInitializer(Init);
2085}
2086
2087/// ComputeLoadResult - Return the value that would be computed by a load from
2088/// P after the stores reflected by 'memory' have been performed. If we can't
2089/// decide, return null.
2090static Constant *ComputeLoadResult(Constant *P,
Chris Lattner4cd08c22008-12-16 07:34:30 +00002091 const DenseMap<Constant*, Constant*> &Memory) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002092 // If this memory location has been recently stored, use the stored value: it
2093 // is the most up-to-date.
Chris Lattner4cd08c22008-12-16 07:34:30 +00002094 DenseMap<Constant*, Constant*>::const_iterator I = Memory.find(P);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002095 if (I != Memory.end()) return I->second;
2096
2097 // Access it.
2098 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
2099 if (GV->hasInitializer())
2100 return GV->getInitializer();
2101 return 0;
2102 }
2103
2104 // Handle a constantexpr getelementptr.
2105 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P))
2106 if (CE->getOpcode() == Instruction::GetElementPtr &&
2107 isa<GlobalVariable>(CE->getOperand(0))) {
2108 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
2109 if (GV->hasInitializer())
2110 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
2111 }
2112
2113 return 0; // don't know how to evaluate.
2114}
2115
2116/// EvaluateFunction - Evaluate a call to function F, returning true if
2117/// successful, false if we can't evaluate it. ActualArgs contains the formal
2118/// arguments for the function.
2119static bool EvaluateFunction(Function *F, Constant *&RetVal,
2120 const std::vector<Constant*> &ActualArgs,
2121 std::vector<Function*> &CallStack,
Chris Lattner4cd08c22008-12-16 07:34:30 +00002122 DenseMap<Constant*, Constant*> &MutatedMemory,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002123 std::vector<GlobalVariable*> &AllocaTmps) {
2124 // Check to see if this function is already executing (recursion). If so,
2125 // bail out. TODO: we might want to accept limited recursion.
2126 if (std::find(CallStack.begin(), CallStack.end(), F) != CallStack.end())
2127 return false;
2128
2129 CallStack.push_back(F);
2130
2131 /// Values - As we compute SSA register values, we store their contents here.
Chris Lattner4cd08c22008-12-16 07:34:30 +00002132 DenseMap<Value*, Constant*> Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002133
2134 // Initialize arguments to the incoming values specified.
2135 unsigned ArgNo = 0;
2136 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
2137 ++AI, ++ArgNo)
2138 Values[AI] = ActualArgs[ArgNo];
2139
2140 /// ExecutedBlocks - We only handle non-looping, non-recursive code. As such,
2141 /// we can only evaluate any one basic block at most once. This set keeps
2142 /// track of what we have executed so we can detect recursive cases etc.
Chris Lattner4cd08c22008-12-16 07:34:30 +00002143 SmallPtrSet<BasicBlock*, 32> ExecutedBlocks;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002144
2145 // CurInst - The current instruction we're evaluating.
2146 BasicBlock::iterator CurInst = F->begin()->begin();
2147
2148 // This is the main evaluation loop.
2149 while (1) {
2150 Constant *InstResult = 0;
2151
2152 if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
2153 if (SI->isVolatile()) return false; // no volatile accesses.
2154 Constant *Ptr = getVal(Values, SI->getOperand(1));
2155 if (!isSimpleEnoughPointerToCommit(Ptr))
2156 // If this is too complex for us to commit, reject it.
2157 return false;
2158 Constant *Val = getVal(Values, SI->getOperand(0));
2159 MutatedMemory[Ptr] = Val;
2160 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
2161 InstResult = ConstantExpr::get(BO->getOpcode(),
2162 getVal(Values, BO->getOperand(0)),
2163 getVal(Values, BO->getOperand(1)));
2164 } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
2165 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
2166 getVal(Values, CI->getOperand(0)),
2167 getVal(Values, CI->getOperand(1)));
2168 } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
2169 InstResult = ConstantExpr::getCast(CI->getOpcode(),
2170 getVal(Values, CI->getOperand(0)),
2171 CI->getType());
2172 } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
2173 InstResult = ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)),
2174 getVal(Values, SI->getOperand(1)),
2175 getVal(Values, SI->getOperand(2)));
2176 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
2177 Constant *P = getVal(Values, GEP->getOperand(0));
2178 SmallVector<Constant*, 8> GEPOps;
Gabor Greif20f03f52008-05-29 01:59:18 +00002179 for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end();
2180 i != e; ++i)
2181 GEPOps.push_back(getVal(Values, *i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002182 InstResult = ConstantExpr::getGetElementPtr(P, &GEPOps[0], GEPOps.size());
2183 } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
2184 if (LI->isVolatile()) return false; // no volatile accesses.
2185 InstResult = ComputeLoadResult(getVal(Values, LI->getOperand(0)),
2186 MutatedMemory);
2187 if (InstResult == 0) return false; // Could not evaluate load.
2188 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
2189 if (AI->isArrayAllocation()) return false; // Cannot handle array allocs.
2190 const Type *Ty = AI->getType()->getElementType();
2191 AllocaTmps.push_back(new GlobalVariable(Ty, false,
2192 GlobalValue::InternalLinkage,
2193 UndefValue::get(Ty),
2194 AI->getName()));
2195 InstResult = AllocaTmps.back();
2196 } else if (CallInst *CI = dyn_cast<CallInst>(CurInst)) {
Devang Patel5b1082b2009-03-09 23:04:12 +00002197
2198 // Debug info can safely be ignored here.
2199 if (isa<DbgInfoIntrinsic>(CI)) {
2200 ++CurInst;
2201 continue;
2202 }
2203
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002204 // Cannot handle inline asm.
2205 if (isa<InlineAsm>(CI->getOperand(0))) return false;
2206
2207 // Resolve function pointers.
2208 Function *Callee = dyn_cast<Function>(getVal(Values, CI->getOperand(0)));
2209 if (!Callee) return false; // Cannot resolve.
2210
2211 std::vector<Constant*> Formals;
Gabor Greif20f03f52008-05-29 01:59:18 +00002212 for (User::op_iterator i = CI->op_begin() + 1, e = CI->op_end();
2213 i != e; ++i)
2214 Formals.push_back(getVal(Values, *i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002215
2216 if (Callee->isDeclaration()) {
2217 // If this is a function we can constant fold, do it.
2218 if (Constant *C = ConstantFoldCall(Callee, &Formals[0],
2219 Formals.size())) {
2220 InstResult = C;
2221 } else {
2222 return false;
2223 }
2224 } else {
2225 if (Callee->getFunctionType()->isVarArg())
2226 return false;
2227
2228 Constant *RetVal;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002229 // Execute the call, if successful, use the return value.
2230 if (!EvaluateFunction(Callee, RetVal, Formals, CallStack,
2231 MutatedMemory, AllocaTmps))
2232 return false;
2233 InstResult = RetVal;
2234 }
2235 } else if (isa<TerminatorInst>(CurInst)) {
2236 BasicBlock *NewBB = 0;
2237 if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
2238 if (BI->isUnconditional()) {
2239 NewBB = BI->getSuccessor(0);
2240 } else {
2241 ConstantInt *Cond =
2242 dyn_cast<ConstantInt>(getVal(Values, BI->getCondition()));
2243 if (!Cond) return false; // Cannot determine.
2244
2245 NewBB = BI->getSuccessor(!Cond->getZExtValue());
2246 }
2247 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
2248 ConstantInt *Val =
2249 dyn_cast<ConstantInt>(getVal(Values, SI->getCondition()));
2250 if (!Val) return false; // Cannot determine.
2251 NewBB = SI->getSuccessor(SI->findCaseValue(Val));
2252 } else if (ReturnInst *RI = dyn_cast<ReturnInst>(CurInst)) {
2253 if (RI->getNumOperands())
2254 RetVal = getVal(Values, RI->getOperand(0));
2255
2256 CallStack.pop_back(); // return from fn.
2257 return true; // We succeeded at evaluating this ctor!
2258 } else {
2259 // invoke, unwind, unreachable.
2260 return false; // Cannot handle this terminator.
2261 }
2262
2263 // Okay, we succeeded in evaluating this control flow. See if we have
2264 // executed the new block before. If so, we have a looping function,
2265 // which we cannot evaluate in reasonable time.
Chris Lattner4cd08c22008-12-16 07:34:30 +00002266 if (!ExecutedBlocks.insert(NewBB))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002267 return false; // looped!
2268
2269 // Okay, we have never been in this block before. Check to see if there
2270 // are any PHI nodes. If so, evaluate them with information about where
2271 // we came from.
2272 BasicBlock *OldBB = CurInst->getParent();
2273 CurInst = NewBB->begin();
2274 PHINode *PN;
2275 for (; (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
2276 Values[PN] = getVal(Values, PN->getIncomingValueForBlock(OldBB));
2277
2278 // Do NOT increment CurInst. We know that the terminator had no value.
2279 continue;
2280 } else {
2281 // Did not know how to evaluate this!
2282 return false;
2283 }
2284
2285 if (!CurInst->use_empty())
2286 Values[CurInst] = InstResult;
2287
2288 // Advance program counter.
2289 ++CurInst;
2290 }
2291}
2292
2293/// EvaluateStaticConstructor - Evaluate static constructors in the function, if
2294/// we can. Return true if we can, false otherwise.
2295static bool EvaluateStaticConstructor(Function *F) {
2296 /// MutatedMemory - For each store we execute, we update this map. Loads
2297 /// check this to get the most up-to-date value. If evaluation is successful,
2298 /// this state is committed to the process.
Chris Lattner4cd08c22008-12-16 07:34:30 +00002299 DenseMap<Constant*, Constant*> MutatedMemory;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002300
2301 /// AllocaTmps - To 'execute' an alloca, we create a temporary global variable
2302 /// to represent its body. This vector is needed so we can delete the
2303 /// temporary globals when we are done.
2304 std::vector<GlobalVariable*> AllocaTmps;
2305
2306 /// CallStack - This is used to detect recursion. In pathological situations
2307 /// we could hit exponential behavior, but at least there is nothing
2308 /// unbounded.
2309 std::vector<Function*> CallStack;
2310
2311 // Call the function.
2312 Constant *RetValDummy;
2313 bool EvalSuccess = EvaluateFunction(F, RetValDummy, std::vector<Constant*>(),
2314 CallStack, MutatedMemory, AllocaTmps);
2315 if (EvalSuccess) {
2316 // We succeeded at evaluation: commit the result.
2317 DOUT << "FULLY EVALUATED GLOBAL CTOR FUNCTION '"
2318 << F->getName() << "' to " << MutatedMemory.size()
2319 << " stores.\n";
Chris Lattner4cd08c22008-12-16 07:34:30 +00002320 for (DenseMap<Constant*, Constant*>::iterator I = MutatedMemory.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002321 E = MutatedMemory.end(); I != E; ++I)
2322 CommitValueTo(I->second, I->first);
2323 }
2324
2325 // At this point, we are done interpreting. If we created any 'alloca'
2326 // temporaries, release them now.
2327 while (!AllocaTmps.empty()) {
2328 GlobalVariable *Tmp = AllocaTmps.back();
2329 AllocaTmps.pop_back();
2330
2331 // If there are still users of the alloca, the program is doing something
2332 // silly, e.g. storing the address of the alloca somewhere and using it
2333 // later. Since this is undefined, we'll just make it be null.
2334 if (!Tmp->use_empty())
2335 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
2336 delete Tmp;
2337 }
2338
2339 return EvalSuccess;
2340}
2341
2342
2343
2344/// OptimizeGlobalCtorsList - Simplify and evaluation global ctors if possible.
2345/// Return true if anything changed.
2346bool GlobalOpt::OptimizeGlobalCtorsList(GlobalVariable *&GCL) {
2347 std::vector<Function*> Ctors = ParseGlobalCtors(GCL);
2348 bool MadeChange = false;
2349 if (Ctors.empty()) return false;
2350
2351 // Loop over global ctors, optimizing them when we can.
2352 for (unsigned i = 0; i != Ctors.size(); ++i) {
2353 Function *F = Ctors[i];
2354 // Found a null terminator in the middle of the list, prune off the rest of
2355 // the list.
2356 if (F == 0) {
2357 if (i != Ctors.size()-1) {
2358 Ctors.resize(i+1);
2359 MadeChange = true;
2360 }
2361 break;
2362 }
2363
2364 // We cannot simplify external ctor functions.
2365 if (F->empty()) continue;
2366
2367 // If we can evaluate the ctor at compile time, do.
2368 if (EvaluateStaticConstructor(F)) {
2369 Ctors.erase(Ctors.begin()+i);
2370 MadeChange = true;
2371 --i;
2372 ++NumCtorsEvaluated;
2373 continue;
2374 }
2375 }
2376
2377 if (!MadeChange) return false;
2378
2379 GCL = InstallGlobalCtors(GCL, Ctors);
2380 return true;
2381}
2382
Duncan Sands0c7b6332009-03-06 10:21:56 +00002383bool GlobalOpt::OptimizeGlobalAliases(Module &M) {
Anton Korobeynikov76944bd2008-09-09 19:04:59 +00002384 bool Changed = false;
2385
Duncan Sands0f064b92009-01-07 20:01:06 +00002386 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
Duncan Sandse7f431f2009-02-15 09:56:08 +00002387 I != E;) {
2388 Module::alias_iterator J = I++;
Duncan Sands0c7b6332009-03-06 10:21:56 +00002389 // Aliases without names cannot be referenced outside this module.
2390 if (!J->hasName() && !J->isDeclaration())
2391 J->setLinkage(GlobalValue::InternalLinkage);
Duncan Sandse7f431f2009-02-15 09:56:08 +00002392 // If the aliasee may change at link time, nothing can be done - bail out.
2393 if (J->mayBeOverridden())
Anton Korobeynikov76944bd2008-09-09 19:04:59 +00002394 continue;
2395
Duncan Sandse7f431f2009-02-15 09:56:08 +00002396 Constant *Aliasee = J->getAliasee();
2397 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
Duncan Sands7531ad62009-02-18 17:55:38 +00002398 Target->removeDeadConstantUsers();
Duncan Sandse7f431f2009-02-15 09:56:08 +00002399 bool hasOneUse = Target->hasOneUse() && Aliasee->hasOneUse();
2400
2401 // Make all users of the alias use the aliasee instead.
2402 if (!J->use_empty()) {
2403 J->replaceAllUsesWith(Aliasee);
2404 ++NumAliasesResolved;
2405 Changed = true;
2406 }
2407
2408 // If the aliasee has internal linkage, give it the name and linkage
2409 // of the alias, and delete the alias. This turns:
2410 // define internal ... @f(...)
2411 // @a = alias ... @f
2412 // into:
2413 // define ... @a(...)
Duncan Sands8f723612009-02-17 17:50:04 +00002414 if (!Target->hasLocalLinkage())
Duncan Sandse7f431f2009-02-15 09:56:08 +00002415 continue;
2416
2417 // The transform is only useful if the alias does not have internal linkage.
Duncan Sands8f723612009-02-17 17:50:04 +00002418 if (J->hasLocalLinkage())
Duncan Sandse7f431f2009-02-15 09:56:08 +00002419 continue;
2420
Duncan Sandse10858a2009-02-15 11:54:49 +00002421 // Do not perform the transform if multiple aliases potentially target the
2422 // aliasee. This check also ensures that it is safe to replace the section
2423 // and other attributes of the aliasee with those of the alias.
Duncan Sandse7f431f2009-02-15 09:56:08 +00002424 if (!hasOneUse)
2425 continue;
2426
Duncan Sandse10858a2009-02-15 11:54:49 +00002427 // Give the aliasee the name, linkage and other attributes of the alias.
Duncan Sandse7f431f2009-02-15 09:56:08 +00002428 Target->takeName(J);
2429 Target->setLinkage(J->getLinkage());
Duncan Sandse10858a2009-02-15 11:54:49 +00002430 Target->GlobalValue::copyAttributesFrom(J);
Duncan Sandse7f431f2009-02-15 09:56:08 +00002431
2432 // Delete the alias.
2433 M.getAliasList().erase(J);
2434 ++NumAliasesRemoved;
2435 Changed = true;
Anton Korobeynikov76944bd2008-09-09 19:04:59 +00002436 }
2437
2438 return Changed;
2439}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002440
2441bool GlobalOpt::runOnModule(Module &M) {
2442 bool Changed = false;
2443
2444 // Try to find the llvm.globalctors list.
2445 GlobalVariable *GlobalCtors = FindGlobalCtors(M);
2446
2447 bool LocalChange = true;
2448 while (LocalChange) {
2449 LocalChange = false;
2450
2451 // Delete functions that are trivially dead, ccc -> fastcc
2452 LocalChange |= OptimizeFunctions(M);
2453
2454 // Optimize global_ctors list.
2455 if (GlobalCtors)
2456 LocalChange |= OptimizeGlobalCtorsList(GlobalCtors);
2457
2458 // Optimize non-address-taken globals.
2459 LocalChange |= OptimizeGlobalVars(M);
Anton Korobeynikov76944bd2008-09-09 19:04:59 +00002460
2461 // Resolve aliases, when possible.
Duncan Sands0c7b6332009-03-06 10:21:56 +00002462 LocalChange |= OptimizeGlobalAliases(M);
Anton Korobeynikov76944bd2008-09-09 19:04:59 +00002463 Changed |= LocalChange;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002464 }
2465
2466 // TODO: Move all global ctors functions to the end of the module for code
2467 // layout.
2468
2469 return Changed;
2470}