Reverting 63765. This broke the build of both clang
[oota-llvm.git] / include / llvm / Module.h
1 //===-- llvm/Module.h - C++ class to represent a VM module ------*- 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 /// @file This file contains the declarations for the Module class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_MODULE_H
15 #define LLVM_MODULE_H
16
17 #include "llvm/Function.h"
18 #include "llvm/GlobalVariable.h"
19 #include "llvm/GlobalAlias.h"
20 #include "llvm/Support/DataTypes.h"
21 #include <vector>
22
23 namespace llvm {
24
25 class GlobalValueRefMap;   // Used by ConstantVals.cpp
26 class FunctionType;
27
28 template<> struct ilist_traits<Function>
29   : public SymbolTableListTraits<Function, Module> {
30   // createSentinel is used to create a node that marks the end of the list.
31   static Function *createSentinel();
32   static void destroySentinel(Function *F) { delete F; }
33   static iplist<Function> &getList(Module *M);
34   static inline ValueSymbolTable *getSymTab(Module *M);
35   static int getListOffset();
36 };
37 template<> struct ilist_traits<GlobalVariable>
38   : public SymbolTableListTraits<GlobalVariable, Module> {
39   // createSentinel is used to create a node that marks the end of the list.
40   static GlobalVariable *createSentinel();
41   static void destroySentinel(GlobalVariable *GV) { delete GV; }
42   static iplist<GlobalVariable> &getList(Module *M);
43   static inline ValueSymbolTable *getSymTab(Module *M);
44   static int getListOffset();
45 };
46 template<> struct ilist_traits<GlobalAlias>
47   : public SymbolTableListTraits<GlobalAlias, Module> {
48   // createSentinel is used to create a node that marks the end of the list.
49   static GlobalAlias *createSentinel();
50   static void destroySentinel(GlobalAlias *GA) { delete GA; }
51   static iplist<GlobalAlias> &getList(Module *M);
52   static inline ValueSymbolTable *getSymTab(Module *M);
53   static int getListOffset();
54 };
55
56 /// A Module instance is used to store all the information related to an
57 /// LLVM module. Modules are the top level container of all other LLVM
58 /// Intermediate Representation (IR) objects. Each module directly contains a
59 /// list of globals variables, a list of functions, a list of libraries (or
60 /// other modules) this module depends on, a symbol table, and various data
61 /// about the target's characteristics.
62 ///
63 /// A module maintains a GlobalValRefMap object that is used to hold all
64 /// constant references to global variables in the module.  When a global
65 /// variable is destroyed, it should have no entries in the GlobalValueRefMap.
66 /// @brief The main container class for the LLVM Intermediate Representation.
67 class Module {
68 /// @name Types And Enumerations
69 /// @{
70 public:
71   /// The type for the list of global variables.
72   typedef iplist<GlobalVariable> GlobalListType;
73   /// The type for the list of functions.
74   typedef iplist<Function> FunctionListType;
75   /// The type for the list of aliases.
76   typedef iplist<GlobalAlias> AliasListType;
77
78   /// The type for the list of dependent libraries.
79   typedef std::vector<std::string> LibraryListType;
80
81   /// The Global Variable iterator.
82   typedef GlobalListType::iterator                     global_iterator;
83   /// The Global Variable constant iterator.
84   typedef GlobalListType::const_iterator         const_global_iterator;
85
86   /// The Function iterators.
87   typedef FunctionListType::iterator                          iterator;
88   /// The Function constant iterator
89   typedef FunctionListType::const_iterator              const_iterator;
90
91   /// The Global Alias iterators.
92   typedef AliasListType::iterator                       alias_iterator;
93   /// The Global Alias constant iterator
94   typedef AliasListType::const_iterator           const_alias_iterator;
95
96   /// The Library list iterator.
97   typedef LibraryListType::const_iterator lib_iterator;
98
99   /// An enumeration for describing the endianess of the target machine.
100   enum Endianness  { AnyEndianness, LittleEndian, BigEndian };
101
102   /// An enumeration for describing the size of a pointer on the target machine.
103   enum PointerSize { AnyPointerSize, Pointer32, Pointer64 };
104
105 /// @}
106 /// @name Member Variables
107 /// @{
108 private:
109   GlobalListType GlobalList;     ///< The Global Variables in the module
110   FunctionListType FunctionList; ///< The Functions in the module
111   AliasListType AliasList;       ///< The Aliases in the module
112   LibraryListType LibraryList;   ///< The Libraries needed by the module
113   std::string GlobalScopeAsm;    ///< Inline Asm at global scope.
114   ValueSymbolTable *ValSymTab;   ///< Symbol table for values
115   TypeSymbolTable *TypeSymTab;   ///< Symbol table for types
116   std::string ModuleID;          ///< Human readable identifier for the module
117   std::string TargetTriple;      ///< Platform target triple Module compiled on
118   std::string DataLayout;        ///< Target data description
119
120   friend class Constant;
121
122 /// @}
123 /// @name Constructors
124 /// @{
125 public:
126   /// The Module constructor. Note that there is no default constructor. You
127   /// must provide a name for the module upon construction.
128   explicit Module(const std::string &ModuleID);
129   /// The module destructor. This will dropAllReferences.
130   ~Module();
131
132 /// @}
133 /// @name Module Level Accessors
134 /// @{
135 public:
136   /// Get the module identifier which is, essentially, the name of the module.
137   /// @returns the module identifier as a string
138   const std::string &getModuleIdentifier() const { return ModuleID; }
139
140   /// Get the data layout string for the module's target platform.  This encodes
141   /// the type sizes and alignments expected by this module.
142   /// @returns the data layout as a string
143   const std::string& getDataLayout() const { return DataLayout; }
144
145   /// Get the target triple which is a string describing the target host.
146   /// @returns a string containing the target triple.
147   const std::string &getTargetTriple() const { return TargetTriple; }
148
149   /// Get the target endian information.
150   /// @returns Endianess - an enumeration for the endianess of the target
151   Endianness getEndianness() const;
152
153   /// Get the target pointer size.
154   /// @returns PointerSize - an enumeration for the size of the target's pointer
155   PointerSize getPointerSize() const;
156
157   /// Get any module-scope inline assembly blocks.
158   /// @returns a string containing the module-scope inline assembly blocks.
159   const std::string &getModuleInlineAsm() const { return GlobalScopeAsm; }
160 /// @}
161 /// @name Module Level Mutators
162 /// @{
163 public:
164
165   /// Set the module identifier.
166   void setModuleIdentifier(const std::string &ID) { ModuleID = ID; }
167
168   /// Set the data layout
169   void setDataLayout(const std::string& DL) { DataLayout = DL; }
170
171   /// Set the target triple.
172   void setTargetTriple(const std::string &T) { TargetTriple = T; }
173
174   /// Set the module-scope inline assembly blocks.
175   void setModuleInlineAsm(const std::string &Asm) { GlobalScopeAsm = Asm; }
176
177   /// Append to the module-scope inline assembly blocks, automatically
178   /// appending a newline to the end.
179   void appendModuleInlineAsm(const std::string &Asm) {
180     GlobalScopeAsm += Asm;
181     GlobalScopeAsm += '\n';
182   }
183
184 /// @}
185 /// @name Function Accessors
186 /// @{
187 public:
188   /// getOrInsertFunction - Look up the specified function in the module symbol
189   /// table.  Four possibilities:
190   ///   1. If it does not exist, add a prototype for the function and return it.
191   ///   2. If it exists, and has a local linkage, the existing function is
192   ///      renamed and a new one is inserted.
193   ///   3. Otherwise, if the existing function has the correct prototype, return
194   ///      the existing function.
195   ///   4. Finally, the function exists but has the wrong prototype: return the
196   ///      function with a constantexpr cast to the right prototype.
197   Constant *getOrInsertFunction(const std::string &Name, const FunctionType *T,
198                                 AttrListPtr AttributeList);
199
200   Constant *getOrInsertFunction(const std::string &Name, const FunctionType *T);
201
202   /// getOrInsertFunction - Look up the specified function in the module symbol
203   /// table.  If it does not exist, add a prototype for the function and return
204   /// it.  This function guarantees to return a constant of pointer to the
205   /// specified function type or a ConstantExpr BitCast of that type if the
206   /// named function has a different type.  This version of the method takes a
207   /// null terminated list of function arguments, which makes it easier for
208   /// clients to use.
209   Constant *getOrInsertFunction(const std::string &Name,
210                                 AttrListPtr AttributeList,
211                                 const Type *RetTy, ...)  END_WITH_NULL;
212
213   Constant *getOrInsertFunction(const std::string &Name, const Type *RetTy, ...)
214     END_WITH_NULL;
215
216   /// getFunction - Look up the specified function in the module symbol table.
217   /// If it does not exist, return null.
218   Function *getFunction(const std::string &Name) const;
219   Function *getFunction(const char *Name) const;
220
221 /// @}
222 /// @name Global Variable Accessors
223 /// @{
224 public:
225   /// getGlobalVariable - Look up the specified global variable in the module
226   /// symbol table.  If it does not exist, return null. If AllowInternal is set
227   /// to true, this function will return types that have InternalLinkage. By
228   /// default, these types are not returned.
229   GlobalVariable *getGlobalVariable(const std::string &Name,
230                                     bool AllowInternal = false) const;
231
232   /// getNamedGlobal - Return the first global variable in the module with the
233   /// specified name, of arbitrary type.  This method returns null if a global
234   /// with the specified name is not found.
235   GlobalVariable *getNamedGlobal(const std::string &Name) const {
236     return getGlobalVariable(Name, true);
237   }
238
239   /// getOrInsertGlobal - Look up the specified global in the module symbol
240   /// table.
241   ///   1. If it does not exist, add a declaration of the global and return it.
242   ///   2. Else, the global exists but has the wrong type: return the function
243   ///      with a constantexpr cast to the right type.
244   ///   3. Finally, if the existing global is the correct delclaration, return
245   ///      the existing global.
246   Constant *getOrInsertGlobal(const std::string &Name, const Type *Ty);
247
248 /// @}
249 /// @name Global Alias Accessors
250 /// @{
251 public:
252   /// getNamedAlias - Return the first global alias in the module with the
253   /// specified name, of arbitrary type.  This method returns null if a global
254   /// with the specified name is not found.
255   GlobalAlias *getNamedAlias(const std::string &Name) const;
256
257 /// @}
258 /// @name Type Accessors
259 /// @{
260 public:
261   /// addTypeName - Insert an entry in the symbol table mapping Str to Type.  If
262   /// there is already an entry for this name, true is returned and the symbol
263   /// table is not modified.
264   bool addTypeName(const std::string &Name, const Type *Ty);
265
266   /// getTypeName - If there is at least one entry in the symbol table for the
267   /// specified type, return it.
268   std::string getTypeName(const Type *Ty) const;
269
270   /// getTypeByName - Return the type with the specified name in this module, or
271   /// null if there is none by that name.
272   const Type *getTypeByName(const std::string &Name) const;
273
274 /// @}
275 /// @name Direct access to the globals list, functions list, and symbol table
276 /// @{
277 public:
278   /// Get the Module's list of global variables (constant).
279   const GlobalListType   &getGlobalList() const       { return GlobalList; }
280   /// Get the Module's list of global variables.
281   GlobalListType         &getGlobalList()             { return GlobalList; }
282   /// Get the Module's list of functions (constant).
283   const FunctionListType &getFunctionList() const     { return FunctionList; }
284   /// Get the Module's list of functions.
285   FunctionListType       &getFunctionList()           { return FunctionList; }
286   /// Get the Module's list of aliases (constant).
287   const AliasListType    &getAliasList() const        { return AliasList; }
288   /// Get the Module's list of aliases.
289   AliasListType          &getAliasList()              { return AliasList; }
290   /// Get the symbol table of global variable and function identifiers
291   const ValueSymbolTable &getValueSymbolTable() const { return *ValSymTab; }
292   /// Get the Module's symbol table of global variable and function identifiers.
293   ValueSymbolTable       &getValueSymbolTable()       { return *ValSymTab; }
294   /// Get the symbol table of types
295   const TypeSymbolTable  &getTypeSymbolTable() const  { return *TypeSymTab; }
296   /// Get the Module's symbol table of types
297   TypeSymbolTable        &getTypeSymbolTable()        { return *TypeSymTab; }
298
299 /// @}
300 /// @name Global Variable Iteration
301 /// @{
302 public:
303   /// Get an iterator to the first global variable
304   global_iterator       global_begin()       { return GlobalList.begin(); }
305   /// Get a constant iterator to the first global variable
306   const_global_iterator global_begin() const { return GlobalList.begin(); }
307   /// Get an iterator to the last global variable
308   global_iterator       global_end  ()       { return GlobalList.end(); }
309   /// Get a constant iterator to the last global variable
310   const_global_iterator global_end  () const { return GlobalList.end(); }
311   /// Determine if the list of globals is empty.
312   bool                  global_empty() const { return GlobalList.empty(); }
313
314 /// @}
315 /// @name Function Iteration
316 /// @{
317 public:
318   /// Get an iterator to the first function.
319   iterator                begin()       { return FunctionList.begin(); }
320   /// Get a constant iterator to the first function.
321   const_iterator          begin() const { return FunctionList.begin(); }
322   /// Get an iterator to the last function.
323   iterator                end  ()       { return FunctionList.end();   }
324   /// Get a constant iterator to the last function.
325   const_iterator          end  () const { return FunctionList.end();   }
326   /// Determine how many functions are in the Module's list of functions.
327   size_t                  size() const  { return FunctionList.size(); }
328   /// Determine if the list of functions is empty.
329   bool                    empty() const { return FunctionList.empty(); }
330
331 /// @}
332 /// @name Dependent Library Iteration
333 /// @{
334 public:
335   /// @brief Get a constant iterator to beginning of dependent library list.
336   inline lib_iterator lib_begin() const { return LibraryList.begin(); }
337   /// @brief Get a constant iterator to end of dependent library list.
338   inline lib_iterator lib_end()   const { return LibraryList.end();   }
339   /// @brief Returns the number of items in the list of libraries.
340   inline size_t       lib_size()  const { return LibraryList.size();  }
341   /// @brief Add a library to the list of dependent libraries
342   void addLibrary(const std::string& Lib);
343   /// @brief Remove a library from the list of dependent libraries
344   void removeLibrary(const std::string& Lib);
345   /// @brief Get all the libraries
346   inline const LibraryListType& getLibraries() const { return LibraryList; }
347
348 /// @}
349 /// @name Alias Iteration
350 /// @{
351 public:
352   /// Get an iterator to the first alias.
353   alias_iterator       alias_begin()            { return AliasList.begin(); }
354   /// Get a constant iterator to the first alias.
355   const_alias_iterator alias_begin() const      { return AliasList.begin(); }
356   /// Get an iterator to the last alias.
357   alias_iterator       alias_end  ()            { return AliasList.end();   }
358   /// Get a constant iterator to the last alias.
359   const_alias_iterator alias_end  () const      { return AliasList.end();   }
360   /// Determine how many functions are in the Module's list of aliases.
361   size_t               alias_size () const      { return AliasList.size();  }
362   /// Determine if the list of aliases is empty.
363   bool                 alias_empty() const      { return AliasList.empty(); }
364
365 /// @}
366 /// @name Utility functions for printing and dumping Module objects
367 /// @{
368 public:
369   /// Print the module to an output stream with AssemblyAnnotationWriter.
370   void print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const;
371   void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
372   
373   /// Dump the module to stderr (for debugging).
374   void dump() const;
375   /// This function causes all the subinstructions to "let go" of all references
376   /// that they are maintaining.  This allows one to 'delete' a whole class at
377   /// a time, even though there may be circular references... first all
378   /// references are dropped, and all use counts go to zero.  Then everything
379   /// is delete'd for real.  Note that no operations are valid on an object
380   /// that has "dropped all references", except operator delete.
381   void dropAllReferences();
382 /// @}
383
384   static unsigned getFunctionListOffset() {
385     Module *Obj = 0;
386     return unsigned(reinterpret_cast<uintptr_t>(&Obj->FunctionList));
387   }
388   static unsigned getGlobalVariableListOffset() {
389     Module *Obj = 0;
390     return unsigned(reinterpret_cast<uintptr_t>(&Obj->GlobalList));
391   }
392   static unsigned getAliasListOffset() {
393     Module *Obj = 0;
394     return unsigned(reinterpret_cast<uintptr_t>(&Obj->AliasList));
395   }
396 };
397
398 /// An iostream inserter for modules.
399 inline std::ostream &operator<<(std::ostream &O, const Module &M) {
400   M.print(O, 0);
401   return O;
402 }
403 inline raw_ostream &operator<<(raw_ostream &O, const Module &M) {
404   M.print(O, 0);
405   return O;
406 }
407   
408
409 inline ValueSymbolTable *
410 ilist_traits<Function>::getSymTab(Module *M) {
411   return M ? &M->getValueSymbolTable() : 0;
412 }
413
414 inline ValueSymbolTable *
415 ilist_traits<GlobalVariable>::getSymTab(Module *M) {
416   return M ? &M->getValueSymbolTable() : 0;
417 }
418
419 inline ValueSymbolTable *
420 ilist_traits<GlobalAlias>::getSymTab(Module *M) {
421   return M ? &M->getValueSymbolTable() : 0;
422 }
423
424 inline int
425 ilist_traits<Function>::getListOffset() {
426   return Module::getFunctionListOffset();
427 }
428
429 inline int
430 ilist_traits<GlobalVariable>::getListOffset() {
431   return Module::getGlobalVariableListOffset();
432 }
433
434 inline int
435 ilist_traits<GlobalAlias>::getListOffset() {
436   return Module::getAliasListOffset();
437 }
438
439 } // End llvm namespace
440
441 #endif