8b969f3354c3e8e122982708d36496bedd1e9a52
[oota-llvm.git] / include / llvm / GlobalValue.h
1 //===-- llvm/GlobalValue.h - Class to represent a global value --*- C++ -*-===//
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 is a common base class of all globally definable objects.  As such,
11 // it is subclassed by GlobalVariable, GlobalAlias and by Function.  This is
12 // used because you can do certain things with these global objects that you
13 // can't do to anything else.  For example, use the address of one as a
14 // constant.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #ifndef LLVM_GLOBALVALUE_H
19 #define LLVM_GLOBALVALUE_H
20
21 #include "llvm/Constant.h"
22
23 namespace llvm {
24
25 class PointerType;
26 class Module;
27
28 class GlobalValue : public Constant {
29   GlobalValue(const GlobalValue &);             // do not implement
30 public:
31   /// @brief An enumeration for the kinds of linkage for global values.
32   enum LinkageTypes {
33     ExternalLinkage = 0,///< Externally visible function
34     AvailableExternallyLinkage, ///< Available for inspection, not emission.
35     LinkOnceAnyLinkage, ///< Keep one copy of function when linking (inline)
36     LinkOnceODRLinkage, ///< Same, but only replaced by something equivalent.
37     WeakAnyLinkage,     ///< Keep one copy of named function when linking (weak)
38     WeakODRLinkage,     ///< Same, but only replaced by something equivalent.
39     AppendingLinkage,   ///< Special purpose, only applies to global arrays
40     InternalLinkage,    ///< Rename collisions when linking (static functions).
41     PrivateLinkage,     ///< Like Internal, but omit from symbol table.
42     LinkerPrivateLinkage, ///< Like Private, but linker removes.
43     LinkerPrivateWeakLinkage, ///< Like LinkerPrivate, but weak.
44     LinkerPrivateWeakDefAutoLinkage, ///< Like LinkerPrivateWeak, but possibly
45                                      ///  hidden.
46     DLLImportLinkage,   ///< Function to be imported from DLL
47     DLLExportLinkage,   ///< Function to be accessible from DLL.
48     ExternalWeakLinkage,///< ExternalWeak linkage description.
49     CommonLinkage       ///< Tentative definitions.
50   };
51
52   /// @brief An enumeration for the kinds of visibility of global values.
53   enum VisibilityTypes {
54     DefaultVisibility = 0,  ///< The GV is visible
55     HiddenVisibility,       ///< The GV is hidden
56     ProtectedVisibility     ///< The GV is protected
57   };
58
59 protected:
60   GlobalValue(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps,
61               LinkageTypes linkage, const Twine &Name)
62     : Constant(ty, vty, Ops, NumOps), Linkage(linkage),
63       Visibility(DefaultVisibility), Alignment(0), UnnamedAddr(0), Parent(0) {
64     setName(Name);
65   }
66
67   // Note: VC++ treats enums as signed, so an extra bit is required to prevent
68   // Linkage and Visibility from turning into negative values.
69   LinkageTypes Linkage : 5;   // The linkage of this global
70   unsigned Visibility : 2;    // The visibility style of this global
71   unsigned Alignment : 16;    // Alignment of this symbol, must be power of two
72   unsigned UnnamedAddr : 1;   // This value's address is not significant
73   Module *Parent;             // The containing module.
74   std::string Section;        // Section to emit this into, empty mean default
75 public:
76   ~GlobalValue() {
77     removeDeadConstantUsers();   // remove any dead constants using this.
78   }
79
80   unsigned getAlignment() const {
81     return (1u << Alignment) >> 1;
82   }
83   void setAlignment(unsigned Align);
84
85   bool hasUnnamedAddr() const { return UnnamedAddr; }
86   void setUnnamedAddr(bool Val) { UnnamedAddr = Val; }
87
88   VisibilityTypes getVisibility() const { return VisibilityTypes(Visibility); }
89   bool hasDefaultVisibility() const { return Visibility == DefaultVisibility; }
90   bool hasHiddenVisibility() const { return Visibility == HiddenVisibility; }
91   bool hasProtectedVisibility() const {
92     return Visibility == ProtectedVisibility;
93   }
94   void setVisibility(VisibilityTypes V) { Visibility = V; }
95   
96   bool hasSection() const { return !Section.empty(); }
97   const std::string &getSection() const { return Section; }
98   void setSection(StringRef S) { Section = S; }
99   
100   /// If the usage is empty (except transitively dead constants), then this
101   /// global value can be safely deleted since the destructor will
102   /// delete the dead constants as well.
103   /// @brief Determine if the usage of this global value is empty except
104   /// for transitively dead constants.
105   bool use_empty_except_constants();
106
107   /// getType - Global values are always pointers.
108   inline PointerType *getType() const {
109     return reinterpret_cast<PointerType*>(User::getType());
110   }
111
112   static LinkageTypes getLinkOnceLinkage(bool ODR) {
113     return ODR ? LinkOnceODRLinkage : LinkOnceAnyLinkage;
114   }
115   static LinkageTypes getWeakLinkage(bool ODR) {
116     return ODR ? WeakODRLinkage : WeakAnyLinkage;
117   }
118
119   static bool isExternalLinkage(LinkageTypes Linkage) {
120     return Linkage == ExternalLinkage;
121   }
122   static bool isAvailableExternallyLinkage(LinkageTypes Linkage) {
123     return Linkage == AvailableExternallyLinkage;
124   }
125   static bool isLinkOnceLinkage(LinkageTypes Linkage) {
126     return Linkage == LinkOnceAnyLinkage || Linkage == LinkOnceODRLinkage;
127   }
128   static bool isWeakLinkage(LinkageTypes Linkage) {
129     return Linkage == WeakAnyLinkage || Linkage == WeakODRLinkage;
130   }
131   static bool isAppendingLinkage(LinkageTypes Linkage) {
132     return Linkage == AppendingLinkage;
133   }
134   static bool isInternalLinkage(LinkageTypes Linkage) {
135     return Linkage == InternalLinkage;
136   }
137   static bool isPrivateLinkage(LinkageTypes Linkage) {
138     return Linkage == PrivateLinkage;
139   }
140   static bool isLinkerPrivateLinkage(LinkageTypes Linkage) {
141     return Linkage == LinkerPrivateLinkage;
142   }
143   static bool isLinkerPrivateWeakLinkage(LinkageTypes Linkage) {
144     return Linkage == LinkerPrivateWeakLinkage;
145   }
146   static bool isLinkerPrivateWeakDefAutoLinkage(LinkageTypes Linkage) {
147     return Linkage == LinkerPrivateWeakDefAutoLinkage;
148   }
149   static bool isLocalLinkage(LinkageTypes Linkage) {
150     return isInternalLinkage(Linkage) || isPrivateLinkage(Linkage) ||
151       isLinkerPrivateLinkage(Linkage) || isLinkerPrivateWeakLinkage(Linkage) ||
152       isLinkerPrivateWeakDefAutoLinkage(Linkage);
153   }
154   static bool isDLLImportLinkage(LinkageTypes Linkage) {
155     return Linkage == DLLImportLinkage;
156   }
157   static bool isDLLExportLinkage(LinkageTypes Linkage) {
158     return Linkage == DLLExportLinkage;
159   }
160   static bool isExternalWeakLinkage(LinkageTypes Linkage) {
161     return Linkage == ExternalWeakLinkage;
162   }
163   static bool isCommonLinkage(LinkageTypes Linkage) {
164     return Linkage == CommonLinkage;
165   }
166
167   /// isDiscardableIfUnused - Whether the definition of this global may be
168   /// discarded if it is not used in its compilation unit.
169   static bool isDiscardableIfUnused(LinkageTypes Linkage) {
170     return isLinkOnceLinkage(Linkage) || isLocalLinkage(Linkage);
171   }
172
173   /// mayBeOverridden - Whether the definition of this global may be replaced
174   /// by something non-equivalent at link time.  For example, if a function has
175   /// weak linkage then the code defining it may be replaced by different code.
176   static bool mayBeOverridden(LinkageTypes Linkage) {
177     return Linkage == WeakAnyLinkage ||
178            Linkage == LinkOnceAnyLinkage ||
179            Linkage == CommonLinkage ||
180            Linkage == ExternalWeakLinkage ||
181            Linkage == LinkerPrivateWeakLinkage ||
182            Linkage == LinkerPrivateWeakDefAutoLinkage;
183   }
184
185   /// isWeakForLinker - Whether the definition of this global may be replaced at
186   /// link time.  NB: Using this method outside of the code generators is almost
187   /// always a mistake: when working at the IR level use mayBeOverridden instead
188   /// as it knows about ODR semantics.
189   static bool isWeakForLinker(LinkageTypes Linkage)  {
190     return Linkage == AvailableExternallyLinkage ||
191            Linkage == WeakAnyLinkage ||
192            Linkage == WeakODRLinkage ||
193            Linkage == LinkOnceAnyLinkage ||
194            Linkage == LinkOnceODRLinkage ||
195            Linkage == CommonLinkage ||
196            Linkage == ExternalWeakLinkage ||
197            Linkage == LinkerPrivateWeakLinkage ||
198            Linkage == LinkerPrivateWeakDefAutoLinkage;
199   }
200
201   bool hasExternalLinkage() const { return isExternalLinkage(Linkage); }
202   bool hasAvailableExternallyLinkage() const {
203     return isAvailableExternallyLinkage(Linkage);
204   }
205   bool hasLinkOnceLinkage() const {
206     return isLinkOnceLinkage(Linkage);
207   }
208   bool hasWeakLinkage() const {
209     return isWeakLinkage(Linkage);
210   }
211   bool hasAppendingLinkage() const { return isAppendingLinkage(Linkage); }
212   bool hasInternalLinkage() const { return isInternalLinkage(Linkage); }
213   bool hasPrivateLinkage() const { return isPrivateLinkage(Linkage); }
214   bool hasLinkerPrivateLinkage() const { return isLinkerPrivateLinkage(Linkage); }
215   bool hasLinkerPrivateWeakLinkage() const {
216     return isLinkerPrivateWeakLinkage(Linkage);
217   }
218   bool hasLinkerPrivateWeakDefAutoLinkage() const {
219     return isLinkerPrivateWeakDefAutoLinkage(Linkage);
220   }
221   bool hasLocalLinkage() const { return isLocalLinkage(Linkage); }
222   bool hasDLLImportLinkage() const { return isDLLImportLinkage(Linkage); }
223   bool hasDLLExportLinkage() const { return isDLLExportLinkage(Linkage); }
224   bool hasExternalWeakLinkage() const { return isExternalWeakLinkage(Linkage); }
225   bool hasCommonLinkage() const { return isCommonLinkage(Linkage); }
226
227   void setLinkage(LinkageTypes LT) { Linkage = LT; }
228   LinkageTypes getLinkage() const { return Linkage; }
229
230   bool isDiscardableIfUnused() const {
231     return isDiscardableIfUnused(Linkage);
232   }
233
234   bool mayBeOverridden() const { return mayBeOverridden(Linkage); }
235
236   bool isWeakForLinker() const { return isWeakForLinker(Linkage); }
237
238   /// copyAttributesFrom - copy all additional attributes (those not needed to
239   /// create a GlobalValue) from the GlobalValue Src to this one.
240   virtual void copyAttributesFrom(const GlobalValue *Src);
241
242 /// @name Materialization
243 /// Materialization is used to construct functions only as they're needed. This
244 /// is useful to reduce memory usage in LLVM or parsing work done by the
245 /// BitcodeReader to load the Module.
246 /// @{
247
248   /// isMaterializable - If this function's Module is being lazily streamed in
249   /// functions from disk or some other source, this method can be used to check
250   /// to see if the function has been read in yet or not.
251   bool isMaterializable() const;
252
253   /// isDematerializable - Returns true if this function was loaded from a
254   /// GVMaterializer that's still attached to its Module and that knows how to
255   /// dematerialize the function.
256   bool isDematerializable() const;
257
258   /// Materialize - make sure this GlobalValue is fully read.  If the module is
259   /// corrupt, this returns true and fills in the optional string with
260   /// information about the problem.  If successful, this returns false.
261   bool Materialize(std::string *ErrInfo = 0);
262
263   /// Dematerialize - If this GlobalValue is read in, and if the GVMaterializer
264   /// supports it, release the memory for the function, and set it up to be
265   /// materialized lazily.  If !isDematerializable(), this method is a noop.
266   void Dematerialize();
267
268 /// @}
269
270   /// Override from Constant class.
271   virtual void destroyConstant();
272
273   /// isDeclaration - Return true if the primary definition of this global 
274   /// value is outside of the current translation unit.
275   bool isDeclaration() const;
276
277   /// removeFromParent - This method unlinks 'this' from the containing module,
278   /// but does not delete it.
279   virtual void removeFromParent() = 0;
280
281   /// eraseFromParent - This method unlinks 'this' from the containing module
282   /// and deletes it.
283   virtual void eraseFromParent() = 0;
284
285   /// getParent - Get the module that this global value is contained inside
286   /// of...
287   inline Module *getParent() { return Parent; }
288   inline const Module *getParent() const { return Parent; }
289
290   // Methods for support type inquiry through isa, cast, and dyn_cast:
291   static inline bool classof(const GlobalValue *) { return true; }
292   static inline bool classof(const Value *V) {
293     return V->getValueID() == Value::FunctionVal ||
294            V->getValueID() == Value::GlobalVariableVal ||
295            V->getValueID() == Value::GlobalAliasVal;
296   }
297 };
298
299 } // End llvm namespace
300
301 #endif