Implement changes from Chris's feedback.
[oota-llvm.git] / lib / VMCore / Globals.cpp
1 //===-- Globals.cpp - Implement the GlobalValue & GlobalVariable class ----===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the GlobalValue & GlobalVariable classes for the VMCore
11 // library.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Constants.h"
16 #include "llvm/GlobalVariable.h"
17 #include "llvm/GlobalAlias.h"
18 #include "llvm/DerivedTypes.h"
19 #include "llvm/LLVMContext.h"
20 #include "llvm/Module.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/Support/ErrorHandling.h"
23 #include "llvm/Support/LeakDetector.h"
24 #include "llvm/Support/Streams.h"
25 using namespace llvm;
26
27 //===----------------------------------------------------------------------===//
28 //                            GlobalValue Class
29 //===----------------------------------------------------------------------===//
30
31 /// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
32 /// it.  This involves recursively eliminating any dead users of the
33 /// constantexpr.
34 static bool removeDeadUsersOfConstant(const Constant *C) {
35   if (isa<GlobalValue>(C)) return false; // Cannot remove this
36
37   while (!C->use_empty()) {
38     const Constant *User = dyn_cast<Constant>(C->use_back());
39     if (!User) return false; // Non-constant usage;
40     if (!removeDeadUsersOfConstant(User))
41       return false; // Constant wasn't dead
42   }
43
44   const_cast<Constant*>(C)->destroyConstant();
45   return true;
46 }
47
48 /// removeDeadConstantUsers - If there are any dead constant users dangling
49 /// off of this global value, remove them.  This method is useful for clients
50 /// that want to check to see if a global is unused, but don't want to deal
51 /// with potentially dead constants hanging off of the globals.
52 void GlobalValue::removeDeadConstantUsers() const {
53   Value::use_const_iterator I = use_begin(), E = use_end();
54   Value::use_const_iterator LastNonDeadUser = E;
55   while (I != E) {
56     if (const Constant *User = dyn_cast<Constant>(*I)) {
57       if (!removeDeadUsersOfConstant(User)) {
58         // If the constant wasn't dead, remember that this was the last live use
59         // and move on to the next constant.
60         LastNonDeadUser = I;
61         ++I;
62       } else {
63         // If the constant was dead, then the iterator is invalidated.
64         if (LastNonDeadUser == E) {
65           I = use_begin();
66           if (I == E) break;
67         } else {
68           I = LastNonDeadUser;
69           ++I;
70         }
71       }
72     } else {
73       LastNonDeadUser = I;
74       ++I;
75     }
76   }
77 }
78
79 /// Override destroyConstant to make sure it doesn't get called on
80 /// GlobalValue's because they shouldn't be treated like other constants.
81 void GlobalValue::destroyConstant() {
82   LLVM_UNREACHABLE("You can't GV->destroyConstant()!");
83 }
84
85 /// copyAttributesFrom - copy all additional attributes (those not needed to
86 /// create a GlobalValue) from the GlobalValue Src to this one.
87 void GlobalValue::copyAttributesFrom(const GlobalValue *Src) {
88   setAlignment(Src->getAlignment());
89   setSection(Src->getSection());
90   setVisibility(Src->getVisibility());
91 }
92
93
94 //===----------------------------------------------------------------------===//
95 // GlobalVariable Implementation
96 //===----------------------------------------------------------------------===//
97
98 GlobalVariable::GlobalVariable(LLVMContext &Context, const Type *Ty,
99                                bool constant, LinkageTypes Link,
100                                Constant *InitVal, const std::string &Name,
101                                bool ThreadLocal, unsigned AddressSpace)
102   : GlobalValue(Context.getPointerType(Ty, AddressSpace), 
103                 Value::GlobalVariableVal,
104                 OperandTraits<GlobalVariable>::op_begin(this),
105                 InitVal != 0, Link, Name),
106     isConstantGlobal(constant), isThreadLocalSymbol(ThreadLocal) {
107   if (InitVal) {
108     assert(InitVal->getType() == Ty &&
109            "Initializer should be the same type as the GlobalVariable!");
110     Op<0>() = InitVal;
111   }
112
113   LeakDetector::addGarbageObject(this);
114 }
115
116 GlobalVariable::GlobalVariable(Module &M, const Type *Ty, bool constant,
117                                LinkageTypes Link, Constant *InitVal,
118                                const std::string &Name,
119                                GlobalVariable *Before, bool ThreadLocal,
120                                unsigned AddressSpace)
121   : GlobalValue(PointerType::get(Ty, AddressSpace), Value::GlobalVariableVal,
122                 OperandTraits<GlobalVariable>::op_begin(this),
123                 InitVal != 0, Link, Name),
124     isConstantGlobal(constant), isThreadLocalSymbol(ThreadLocal) {
125   if (InitVal) {
126     assert(InitVal->getType() == Ty &&
127            "Initializer should be the same type as the GlobalVariable!");
128     Op<0>() = InitVal;
129   }
130   
131   LeakDetector::addGarbageObject(this);
132   
133   if (Before)
134     Before->getParent()->getGlobalList().insert(Before, this);
135   else
136     M.getGlobalList().push_back(this);
137 }
138
139 void GlobalVariable::setParent(Module *parent) {
140   if (getParent())
141     LeakDetector::addGarbageObject(this);
142   Parent = parent;
143   if (getParent())
144     LeakDetector::removeGarbageObject(this);
145 }
146
147 void GlobalVariable::removeFromParent() {
148   getParent()->getGlobalList().remove(this);
149 }
150
151 void GlobalVariable::eraseFromParent() {
152   getParent()->getGlobalList().erase(this);
153 }
154
155 void GlobalVariable::replaceUsesOfWithOnConstant(Value *From, Value *To,
156                                                  Use *U) {
157   // If you call this, then you better know this GVar has a constant
158   // initializer worth replacing. Enforce that here.
159   assert(getNumOperands() == 1 &&
160          "Attempt to replace uses of Constants on a GVar with no initializer");
161
162   // And, since you know it has an initializer, the From value better be
163   // the initializer :)
164   assert(getOperand(0) == From &&
165          "Attempt to replace wrong constant initializer in GVar");
166
167   // And, you better have a constant for the replacement value
168   assert(isa<Constant>(To) &&
169          "Attempt to replace GVar initializer with non-constant");
170
171   // Okay, preconditions out of the way, replace the constant initializer.
172   this->setOperand(0, cast<Constant>(To));
173 }
174
175 /// copyAttributesFrom - copy all additional attributes (those not needed to
176 /// create a GlobalVariable) from the GlobalVariable Src to this one.
177 void GlobalVariable::copyAttributesFrom(const GlobalValue *Src) {
178   assert(isa<GlobalVariable>(Src) && "Expected a GlobalVariable!");
179   GlobalValue::copyAttributesFrom(Src);
180   const GlobalVariable *SrcVar = cast<GlobalVariable>(Src);
181   setThreadLocal(SrcVar->isThreadLocal());
182 }
183
184
185 //===----------------------------------------------------------------------===//
186 // GlobalAlias Implementation
187 //===----------------------------------------------------------------------===//
188
189 GlobalAlias::GlobalAlias(const Type *Ty, LinkageTypes Link,
190                          const std::string &Name, Constant* aliasee,
191                          Module *ParentModule)
192   : GlobalValue(Ty, Value::GlobalAliasVal, &Op<0>(), 1, Link, Name) {
193   LeakDetector::addGarbageObject(this);
194
195   if (aliasee)
196     assert(aliasee->getType() == Ty && "Alias and aliasee types should match!");
197   Op<0>() = aliasee;
198
199   if (ParentModule)
200     ParentModule->getAliasList().push_back(this);
201 }
202
203 void GlobalAlias::setParent(Module *parent) {
204   if (getParent())
205     LeakDetector::addGarbageObject(this);
206   Parent = parent;
207   if (getParent())
208     LeakDetector::removeGarbageObject(this);
209 }
210
211 void GlobalAlias::removeFromParent() {
212   getParent()->getAliasList().remove(this);
213 }
214
215 void GlobalAlias::eraseFromParent() {
216   getParent()->getAliasList().erase(this);
217 }
218
219 bool GlobalAlias::isDeclaration() const {
220   const GlobalValue* AV = getAliasedGlobal();
221   if (AV)
222     return AV->isDeclaration();
223   else
224     return false;
225 }
226
227 void GlobalAlias::setAliasee(Constant *Aliasee) 
228 {
229   if (Aliasee)
230     assert(Aliasee->getType() == getType() &&
231            "Alias and aliasee types should match!");
232   
233   setOperand(0, Aliasee);
234 }
235
236 const GlobalValue *GlobalAlias::getAliasedGlobal() const {
237   const Constant *C = getAliasee();
238   if (C) {
239     if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
240       return GV;
241     else {
242       const ConstantExpr *CE = 0;
243       if ((CE = dyn_cast<ConstantExpr>(C)) &&
244           (CE->getOpcode() == Instruction::BitCast || 
245            CE->getOpcode() == Instruction::GetElementPtr))
246         return dyn_cast<GlobalValue>(CE->getOperand(0));
247       else
248         LLVM_UNREACHABLE("Unsupported aliasee");
249     }
250   }
251   return 0;
252 }
253
254 const GlobalValue *GlobalAlias::resolveAliasedGlobal(bool stopOnWeak) const {
255   SmallPtrSet<const GlobalValue*, 3> Visited;
256
257   // Check if we need to stop early.
258   if (stopOnWeak && mayBeOverridden())
259     return this;
260
261   const GlobalValue *GV = getAliasedGlobal();
262   Visited.insert(GV);
263
264   // Iterate over aliasing chain, stopping on weak alias if necessary.
265   while (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV)) {
266     if (stopOnWeak && GA->mayBeOverridden())
267       break;
268
269     GV = GA->getAliasedGlobal();
270
271     if (!Visited.insert(GV))
272       return NULL;
273   }
274
275   return GV;
276 }