blob: 97a0b4ee5ac94d034d97327c5b9e58a286021f29 [file] [log] [blame]
Rafael Espindola3d7fc252013-10-21 17:14:55 +00001//===-- GlobalStatus.cpp - Compute status info for globals -----------------==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/ADT/SmallPtrSet.h"
11#include "llvm/IR/BasicBlock.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000012#include "llvm/IR/CallSite.h"
Rafael Espindola3d7fc252013-10-21 17:14:55 +000013#include "llvm/IR/GlobalVariable.h"
14#include "llvm/IR/IntrinsicInst.h"
15#include "llvm/Transforms/Utils/GlobalStatus.h"
16
17using namespace llvm;
18
19/// Return the stronger of the two ordering. If the two orderings are acquire
20/// and release, then return AcquireRelease.
21///
22static AtomicOrdering strongerOrdering(AtomicOrdering X, AtomicOrdering Y) {
23 if (X == Acquire && Y == Release)
24 return AcquireRelease;
25 if (Y == Acquire && X == Release)
26 return AcquireRelease;
27 return (AtomicOrdering)std::max(X, Y);
28}
29
30/// It is safe to destroy a constant iff it is only used by constants itself.
31/// Note that constants cannot be cyclic, so this test is pretty easy to
32/// implement recursively.
33///
34bool llvm::isSafeToDestroyConstant(const Constant *C) {
35 if (isa<GlobalValue>(C))
36 return false;
37
Bruno Cardoso Lopese2a1fa32014-08-25 17:51:14 +000038 if (isa<ConstantInt>(C) || isa<ConstantFP>(C))
39 return false;
40
Chandler Carruthcdf47882014-03-09 03:16:01 +000041 for (const User *U : C->users())
42 if (const Constant *CU = dyn_cast<Constant>(U)) {
Rafael Espindola3d7fc252013-10-21 17:14:55 +000043 if (!isSafeToDestroyConstant(CU))
44 return false;
45 } else
46 return false;
47 return true;
48}
49
50static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS,
Craig Topper71b7b682014-08-21 05:55:13 +000051 SmallPtrSetImpl<const PHINode *> &PhiUsers) {
Chandler Carruthcdf47882014-03-09 03:16:01 +000052 for (const Use &U : V->uses()) {
53 const User *UR = U.getUser();
54 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(UR)) {
Rafael Espindola3d7fc252013-10-21 17:14:55 +000055 GS.HasNonInstructionUser = true;
56
57 // If the result of the constantexpr isn't pointer type, then we won't
58 // know to expect it in various places. Just reject early.
59 if (!isa<PointerType>(CE->getType()))
60 return true;
61
62 if (analyzeGlobalAux(CE, GS, PhiUsers))
63 return true;
Chandler Carruthcdf47882014-03-09 03:16:01 +000064 } else if (const Instruction *I = dyn_cast<Instruction>(UR)) {
Rafael Espindola3d7fc252013-10-21 17:14:55 +000065 if (!GS.HasMultipleAccessingFunctions) {
66 const Function *F = I->getParent()->getParent();
Craig Topperf40110f2014-04-25 05:29:35 +000067 if (!GS.AccessingFunction)
Rafael Espindola3d7fc252013-10-21 17:14:55 +000068 GS.AccessingFunction = F;
69 else if (GS.AccessingFunction != F)
70 GS.HasMultipleAccessingFunctions = true;
71 }
72 if (const LoadInst *LI = dyn_cast<LoadInst>(I)) {
73 GS.IsLoaded = true;
74 // Don't hack on volatile loads.
75 if (LI->isVolatile())
76 return true;
77 GS.Ordering = strongerOrdering(GS.Ordering, LI->getOrdering());
78 } else if (const StoreInst *SI = dyn_cast<StoreInst>(I)) {
79 // Don't allow a store OF the address, only stores TO the address.
80 if (SI->getOperand(0) == V)
81 return true;
82
83 // Don't hack on volatile stores.
84 if (SI->isVolatile())
85 return true;
86
87 GS.Ordering = strongerOrdering(GS.Ordering, SI->getOrdering());
88
89 // If this is a direct store to the global (i.e., the global is a scalar
90 // value, not an aggregate), keep more specific information about
91 // stores.
92 if (GS.StoredType != GlobalStatus::Stored) {
93 if (const GlobalVariable *GV =
94 dyn_cast<GlobalVariable>(SI->getOperand(1))) {
95 Value *StoredVal = SI->getOperand(0);
96
97 if (Constant *C = dyn_cast<Constant>(StoredVal)) {
98 if (C->isThreadDependent()) {
99 // The stored value changes between threads; don't track it.
100 return true;
101 }
102 }
103
104 if (StoredVal == GV->getInitializer()) {
105 if (GS.StoredType < GlobalStatus::InitializerStored)
106 GS.StoredType = GlobalStatus::InitializerStored;
107 } else if (isa<LoadInst>(StoredVal) &&
108 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
109 if (GS.StoredType < GlobalStatus::InitializerStored)
110 GS.StoredType = GlobalStatus::InitializerStored;
111 } else if (GS.StoredType < GlobalStatus::StoredOnce) {
112 GS.StoredType = GlobalStatus::StoredOnce;
113 GS.StoredOnceValue = StoredVal;
114 } else if (GS.StoredType == GlobalStatus::StoredOnce &&
115 GS.StoredOnceValue == StoredVal) {
116 // noop.
117 } else {
118 GS.StoredType = GlobalStatus::Stored;
119 }
120 } else {
121 GS.StoredType = GlobalStatus::Stored;
122 }
123 }
124 } else if (isa<BitCastInst>(I)) {
125 if (analyzeGlobalAux(I, GS, PhiUsers))
126 return true;
127 } else if (isa<GetElementPtrInst>(I)) {
128 if (analyzeGlobalAux(I, GS, PhiUsers))
129 return true;
130 } else if (isa<SelectInst>(I)) {
131 if (analyzeGlobalAux(I, GS, PhiUsers))
132 return true;
133 } else if (const PHINode *PN = dyn_cast<PHINode>(I)) {
134 // PHI nodes we can check just like select or GEP instructions, but we
135 // have to be careful about infinite recursion.
136 if (PhiUsers.insert(PN)) // Not already visited.
137 if (analyzeGlobalAux(I, GS, PhiUsers))
138 return true;
139 } else if (isa<CmpInst>(I)) {
140 GS.IsCompared = true;
141 } else if (const MemTransferInst *MTI = dyn_cast<MemTransferInst>(I)) {
142 if (MTI->isVolatile())
143 return true;
144 if (MTI->getArgOperand(0) == V)
145 GS.StoredType = GlobalStatus::Stored;
146 if (MTI->getArgOperand(1) == V)
147 GS.IsLoaded = true;
148 } else if (const MemSetInst *MSI = dyn_cast<MemSetInst>(I)) {
149 assert(MSI->getArgOperand(0) == V && "Memset only takes one pointer!");
150 if (MSI->isVolatile())
151 return true;
152 GS.StoredType = GlobalStatus::Stored;
Rafael Espindola7749d7c2013-10-25 21:29:52 +0000153 } else if (ImmutableCallSite C = I) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000154 if (!C.isCallee(&U))
Rafael Espindola7749d7c2013-10-25 21:29:52 +0000155 return true;
156 GS.IsLoaded = true;
Rafael Espindola3d7fc252013-10-21 17:14:55 +0000157 } else {
158 return true; // Any other non-load instruction might take address!
159 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000160 } else if (const Constant *C = dyn_cast<Constant>(UR)) {
Rafael Espindola3d7fc252013-10-21 17:14:55 +0000161 GS.HasNonInstructionUser = true;
162 // We might have a dead and dangling constant hanging off of here.
163 if (!isSafeToDestroyConstant(C))
164 return true;
165 } else {
166 GS.HasNonInstructionUser = true;
167 // Otherwise must be some other user.
168 return true;
169 }
170 }
171
172 return false;
173}
174
175bool GlobalStatus::analyzeGlobal(const Value *V, GlobalStatus &GS) {
176 SmallPtrSet<const PHINode *, 16> PhiUsers;
177 return analyzeGlobalAux(V, GS, PhiUsers);
178}
179
180GlobalStatus::GlobalStatus()
181 : IsCompared(false), IsLoaded(false), StoredType(NotStored),
Craig Topperf40110f2014-04-25 05:29:35 +0000182 StoredOnceValue(nullptr), AccessingFunction(nullptr),
Rafael Espindola3d7fc252013-10-21 17:14:55 +0000183 HasMultipleAccessingFunctions(false), HasNonInstructionUser(false),
184 Ordering(NotAtomic) {}