Reduce abuse of default values in the GlobalAlias constructor.
[oota-llvm.git] / include / llvm / IR / 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
11 /// Module.h This file contains the declarations for the Module class.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_IR_MODULE_H
16 #define LLVM_IR_MODULE_H
17
18 #include "llvm/ADT/iterator_range.h"
19 #include "llvm/IR/DataLayout.h"
20 #include "llvm/IR/Function.h"
21 #include "llvm/IR/GlobalAlias.h"
22 #include "llvm/IR/GlobalVariable.h"
23 #include "llvm/IR/Metadata.h"
24 #include "llvm/Support/CBindingWrapping.h"
25 #include "llvm/Support/DataTypes.h"
26 #include "llvm/Support/system_error.h"
27
28 namespace llvm {
29
30 class FunctionType;
31 class GVMaterializer;
32 class LLVMContext;
33 class StructType;
34 template<typename T> struct DenseMapInfo;
35 template<typename KeyT, typename ValueT, typename KeyInfoT> class DenseMap;
36
37 template<> struct ilist_traits<Function>
38   : public SymbolTableListTraits<Function, Module> {
39
40   // createSentinel is used to get hold of the node that marks the end of the
41   // list... (same trick used here as in ilist_traits<Instruction>)
42   Function *createSentinel() const {
43     return static_cast<Function*>(&Sentinel);
44   }
45   static void destroySentinel(Function*) {}
46
47   Function *provideInitialHead() const { return createSentinel(); }
48   Function *ensureHead(Function*) const { return createSentinel(); }
49   static void noteHead(Function*, Function*) {}
50
51 private:
52   mutable ilist_node<Function> Sentinel;
53 };
54
55 template<> struct ilist_traits<GlobalVariable>
56   : public SymbolTableListTraits<GlobalVariable, Module> {
57   // createSentinel is used to create a node that marks the end of the list.
58   GlobalVariable *createSentinel() const {
59     return static_cast<GlobalVariable*>(&Sentinel);
60   }
61   static void destroySentinel(GlobalVariable*) {}
62
63   GlobalVariable *provideInitialHead() const { return createSentinel(); }
64   GlobalVariable *ensureHead(GlobalVariable*) const { return createSentinel(); }
65   static void noteHead(GlobalVariable*, GlobalVariable*) {}
66 private:
67   mutable ilist_node<GlobalVariable> Sentinel;
68 };
69
70 template<> struct ilist_traits<GlobalAlias>
71   : public SymbolTableListTraits<GlobalAlias, Module> {
72   // createSentinel is used to create a node that marks the end of the list.
73   GlobalAlias *createSentinel() const {
74     return static_cast<GlobalAlias*>(&Sentinel);
75   }
76   static void destroySentinel(GlobalAlias*) {}
77
78   GlobalAlias *provideInitialHead() const { return createSentinel(); }
79   GlobalAlias *ensureHead(GlobalAlias*) const { return createSentinel(); }
80   static void noteHead(GlobalAlias*, GlobalAlias*) {}
81 private:
82   mutable ilist_node<GlobalAlias> Sentinel;
83 };
84
85 template<> struct ilist_traits<NamedMDNode>
86   : public ilist_default_traits<NamedMDNode> {
87   // createSentinel is used to get hold of a node that marks the end of
88   // the list...
89   NamedMDNode *createSentinel() const {
90     return static_cast<NamedMDNode*>(&Sentinel);
91   }
92   static void destroySentinel(NamedMDNode*) {}
93
94   NamedMDNode *provideInitialHead() const { return createSentinel(); }
95   NamedMDNode *ensureHead(NamedMDNode*) const { return createSentinel(); }
96   static void noteHead(NamedMDNode*, NamedMDNode*) {}
97   void addNodeToList(NamedMDNode *) {}
98   void removeNodeFromList(NamedMDNode *) {}
99 private:
100   mutable ilist_node<NamedMDNode> Sentinel;
101 };
102
103 /// A Module instance is used to store all the information related to an
104 /// LLVM module. Modules are the top level container of all other LLVM
105 /// Intermediate Representation (IR) objects. Each module directly contains a
106 /// list of globals variables, a list of functions, a list of libraries (or
107 /// other modules) this module depends on, a symbol table, and various data
108 /// about the target's characteristics.
109 ///
110 /// A module maintains a GlobalValRefMap object that is used to hold all
111 /// constant references to global variables in the module.  When a global
112 /// variable is destroyed, it should have no entries in the GlobalValueRefMap.
113 /// @brief The main container class for the LLVM Intermediate Representation.
114 class Module {
115 /// @name Types And Enumerations
116 /// @{
117 public:
118   /// The type for the list of global variables.
119   typedef iplist<GlobalVariable> GlobalListType;
120   /// The type for the list of functions.
121   typedef iplist<Function> FunctionListType;
122   /// The type for the list of aliases.
123   typedef iplist<GlobalAlias> AliasListType;
124   /// The type for the list of named metadata.
125   typedef ilist<NamedMDNode> NamedMDListType;
126
127   /// The Global Variable iterator.
128   typedef GlobalListType::iterator                      global_iterator;
129   /// The Global Variable constant iterator.
130   typedef GlobalListType::const_iterator          const_global_iterator;
131
132   /// The Function iterators.
133   typedef FunctionListType::iterator                           iterator;
134   /// The Function constant iterator
135   typedef FunctionListType::const_iterator               const_iterator;
136
137   /// The Global Alias iterators.
138   typedef AliasListType::iterator                        alias_iterator;
139   /// The Global Alias constant iterator
140   typedef AliasListType::const_iterator            const_alias_iterator;
141
142   /// The named metadata iterators.
143   typedef NamedMDListType::iterator             named_metadata_iterator;
144   /// The named metadata constant interators.
145   typedef NamedMDListType::const_iterator const_named_metadata_iterator;
146
147   /// This enumeration defines the supported behaviors of module flags.
148   enum ModFlagBehavior {
149     /// Emits an error if two values disagree, otherwise the resulting value is
150     /// that of the operands.
151     Error = 1,
152
153     /// Emits a warning if two values disagree. The result value will be the
154     /// operand for the flag from the first module being linked.
155     Warning = 2,
156
157     /// Adds a requirement that another module flag be present and have a
158     /// specified value after linking is performed. The value must be a metadata
159     /// pair, where the first element of the pair is the ID of the module flag
160     /// to be restricted, and the second element of the pair is the value the
161     /// module flag should be restricted to. This behavior can be used to
162     /// restrict the allowable results (via triggering of an error) of linking
163     /// IDs with the **Override** behavior.
164     Require = 3,
165
166     /// Uses the specified value, regardless of the behavior or value of the
167     /// other module. If both modules specify **Override**, but the values
168     /// differ, an error will be emitted.
169     Override = 4,
170
171     /// Appends the two values, which are required to be metadata nodes.
172     Append = 5,
173
174     /// Appends the two values, which are required to be metadata
175     /// nodes. However, duplicate entries in the second list are dropped
176     /// during the append operation.
177     AppendUnique = 6
178   };
179
180   struct ModuleFlagEntry {
181     ModFlagBehavior Behavior;
182     MDString *Key;
183     Value *Val;
184     ModuleFlagEntry(ModFlagBehavior B, MDString *K, Value *V)
185       : Behavior(B), Key(K), Val(V) {}
186   };
187
188 /// @}
189 /// @name Member Variables
190 /// @{
191 private:
192   LLVMContext &Context;           ///< The LLVMContext from which types and
193                                   ///< constants are allocated.
194   GlobalListType GlobalList;      ///< The Global Variables in the module
195   FunctionListType FunctionList;  ///< The Functions in the module
196   AliasListType AliasList;        ///< The Aliases in the module
197   NamedMDListType NamedMDList;    ///< The named metadata in the module
198   std::string GlobalScopeAsm;     ///< Inline Asm at global scope.
199   ValueSymbolTable *ValSymTab;    ///< Symbol table for values
200   std::unique_ptr<GVMaterializer>
201   Materializer;                   ///< Used to materialize GlobalValues
202   std::string ModuleID;           ///< Human readable identifier for the module
203   std::string TargetTriple;       ///< Platform target triple Module compiled on
204   void *NamedMDSymTab;            ///< NamedMDNode names.
205
206   // We need to keep the string because the C API expects us to own the string
207   // representation.
208   // Since we have it, we also use an empty string to represent a module without
209   // a DataLayout. If it has a DataLayout, these variables are in sync and the
210   // string is just a cache of getDataLayout()->getStringRepresentation().
211   std::string DataLayoutStr;
212   DataLayout DL;
213
214   friend class Constant;
215
216 /// @}
217 /// @name Constructors
218 /// @{
219 public:
220   /// The Module constructor. Note that there is no default constructor. You
221   /// must provide a name for the module upon construction.
222   explicit Module(StringRef ModuleID, LLVMContext& C);
223   /// The module destructor. This will dropAllReferences.
224   ~Module();
225
226 /// @}
227 /// @name Module Level Accessors
228 /// @{
229
230   /// Get the module identifier which is, essentially, the name of the module.
231   /// @returns the module identifier as a string
232   const std::string &getModuleIdentifier() const { return ModuleID; }
233
234   /// Get the data layout string for the module's target platform. This is
235   /// equivalent to getDataLayout()->getStringRepresentation().
236   const std::string &getDataLayoutStr() const { return DataLayoutStr; }
237
238   /// Get the data layout for the module's target platform.
239   const DataLayout *getDataLayout() const;
240
241   /// Get the target triple which is a string describing the target host.
242   /// @returns a string containing the target triple.
243   const std::string &getTargetTriple() const { return TargetTriple; }
244
245   /// Get the global data context.
246   /// @returns LLVMContext - a container for LLVM's global information
247   LLVMContext &getContext() const { return Context; }
248
249   /// Get any module-scope inline assembly blocks.
250   /// @returns a string containing the module-scope inline assembly blocks.
251   const std::string &getModuleInlineAsm() const { return GlobalScopeAsm; }
252
253 /// @}
254 /// @name Module Level Mutators
255 /// @{
256
257   /// Set the module identifier.
258   void setModuleIdentifier(StringRef ID) { ModuleID = ID; }
259
260   /// Set the data layout
261   void setDataLayout(StringRef Desc);
262   void setDataLayout(const DataLayout *Other);
263
264   /// Set the target triple.
265   void setTargetTriple(StringRef T) { TargetTriple = T; }
266
267   /// Set the module-scope inline assembly blocks.
268   void setModuleInlineAsm(StringRef Asm) {
269     GlobalScopeAsm = Asm;
270     if (!GlobalScopeAsm.empty() &&
271         GlobalScopeAsm[GlobalScopeAsm.size()-1] != '\n')
272       GlobalScopeAsm += '\n';
273   }
274
275   /// Append to the module-scope inline assembly blocks, automatically inserting
276   /// a separating newline if necessary.
277   void appendModuleInlineAsm(StringRef Asm) {
278     GlobalScopeAsm += Asm;
279     if (!GlobalScopeAsm.empty() &&
280         GlobalScopeAsm[GlobalScopeAsm.size()-1] != '\n')
281       GlobalScopeAsm += '\n';
282   }
283
284 /// @}
285 /// @name Generic Value Accessors
286 /// @{
287
288   /// Return the global value in the module with the specified name, of
289   /// arbitrary type. This method returns null if a global with the specified
290   /// name is not found.
291   GlobalValue *getNamedValue(StringRef Name) const;
292
293   /// Return a unique non-zero ID for the specified metadata kind. This ID is
294   /// uniqued across modules in the current LLVMContext.
295   unsigned getMDKindID(StringRef Name) const;
296
297   /// Populate client supplied SmallVector with the name for custom metadata IDs
298   /// registered in this LLVMContext.
299   void getMDKindNames(SmallVectorImpl<StringRef> &Result) const;
300
301
302   typedef DenseMap<StructType*, unsigned, DenseMapInfo<StructType*> >
303                    NumeredTypesMapTy;
304
305   /// Return the type with the specified name, or null if there is none by that
306   /// name.
307   StructType *getTypeByName(StringRef Name) const;
308
309 /// @}
310 /// @name Function Accessors
311 /// @{
312
313   /// Look up the specified function in the module symbol table. Four
314   /// possibilities:
315   ///   1. If it does not exist, add a prototype for the function and return it.
316   ///   2. If it exists, and has a local linkage, the existing function is
317   ///      renamed and a new one is inserted.
318   ///   3. Otherwise, if the existing function has the correct prototype, return
319   ///      the existing function.
320   ///   4. Finally, the function exists but has the wrong prototype: return the
321   ///      function with a constantexpr cast to the right prototype.
322   Constant *getOrInsertFunction(StringRef Name, FunctionType *T,
323                                 AttributeSet AttributeList);
324
325   Constant *getOrInsertFunction(StringRef Name, FunctionType *T);
326
327   /// Look up the specified function in the module symbol table. If it does not
328   /// exist, add a prototype for the function and return it. This function
329   /// guarantees to return a constant of pointer to the specified function type
330   /// or a ConstantExpr BitCast of that type if the named function has a
331   /// different type. This version of the method takes a null terminated list of
332   /// function arguments, which makes it easier for clients to use.
333   Constant *getOrInsertFunction(StringRef Name,
334                                 AttributeSet AttributeList,
335                                 Type *RetTy, ...)  END_WITH_NULL;
336
337   /// Same as above, but without the attributes.
338   Constant *getOrInsertFunction(StringRef Name, Type *RetTy, ...)
339     END_WITH_NULL;
340
341   /// Look up the specified function in the module symbol table. If it does not
342   /// exist, return null.
343   Function *getFunction(StringRef Name) const;
344
345 /// @}
346 /// @name Global Variable Accessors
347 /// @{
348
349   /// Look up the specified global variable in the module symbol table. If it
350   /// does not exist, return null. If AllowInternal is set to true, this
351   /// function will return types that have InternalLinkage. By default, these
352   /// types are not returned.
353   const GlobalVariable *getGlobalVariable(StringRef Name,
354                                           bool AllowInternal = false) const {
355     return const_cast<Module *>(this)->getGlobalVariable(Name, AllowInternal);
356   }
357
358   GlobalVariable *getGlobalVariable(StringRef Name, bool AllowInternal = false);
359
360   /// Return the global variable in the module with the specified name, of
361   /// arbitrary type. This method returns null if a global with the specified
362   /// name is not found.
363   GlobalVariable *getNamedGlobal(StringRef Name) {
364     return getGlobalVariable(Name, true);
365   }
366   const GlobalVariable *getNamedGlobal(StringRef Name) const {
367     return const_cast<Module *>(this)->getNamedGlobal(Name);
368   }
369
370   /// Look up the specified global in the module symbol table.
371   ///   1. If it does not exist, add a declaration of the global and return it.
372   ///   2. Else, the global exists but has the wrong type: return the function
373   ///      with a constantexpr cast to the right type.
374   ///   3. Finally, if the existing global is the correct declaration, return
375   ///      the existing global.
376   Constant *getOrInsertGlobal(StringRef Name, Type *Ty);
377
378 /// @}
379 /// @name Global Alias Accessors
380 /// @{
381
382   /// Return the global alias in the module with the specified name, of
383   /// arbitrary type. This method returns null if a global with the specified
384   /// name is not found.
385   GlobalAlias *getNamedAlias(StringRef Name) const;
386
387 /// @}
388 /// @name Named Metadata Accessors
389 /// @{
390
391   /// Return the first NamedMDNode in the module with the specified name. This
392   /// method returns null if a NamedMDNode with the specified name is not found.
393   NamedMDNode *getNamedMetadata(const Twine &Name) const;
394
395   /// Return the named MDNode in the module with the specified name. This method
396   /// returns a new NamedMDNode if a NamedMDNode with the specified name is not
397   /// found.
398   NamedMDNode *getOrInsertNamedMetadata(StringRef Name);
399
400   /// Remove the given NamedMDNode from this module and delete it.
401   void eraseNamedMetadata(NamedMDNode *NMD);
402
403 /// @}
404 /// @name Module Flags Accessors
405 /// @{
406
407   /// Returns the module flags in the provided vector.
408   void getModuleFlagsMetadata(SmallVectorImpl<ModuleFlagEntry> &Flags) const;
409
410   /// Return the corresponding value if Key appears in module flags, otherwise
411   /// return null.
412   Value *getModuleFlag(StringRef Key) const;
413
414   /// Returns the NamedMDNode in the module that represents module-level flags.
415   /// This method returns null if there are no module-level flags.
416   NamedMDNode *getModuleFlagsMetadata() const;
417
418   /// Returns the NamedMDNode in the module that represents module-level flags.
419   /// If module-level flags aren't found, it creates the named metadata that
420   /// contains them.
421   NamedMDNode *getOrInsertModuleFlagsMetadata();
422
423   /// Add a module-level flag to the module-level flags metadata. It will create
424   /// the module-level flags named metadata if it doesn't already exist.
425   void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Value *Val);
426   void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
427   void addModuleFlag(MDNode *Node);
428
429 /// @}
430 /// @name Materialization
431 /// @{
432
433   /// Sets the GVMaterializer to GVM. This module must not yet have a
434   /// Materializer. To reset the materializer for a module that already has one,
435   /// call MaterializeAllPermanently first. Destroying this module will destroy
436   /// its materializer without materializing any more GlobalValues. Without
437   /// destroying the Module, there is no way to detach or destroy a materializer
438   /// without materializing all the GVs it controls, to avoid leaving orphan
439   /// unmaterialized GVs.
440   void setMaterializer(GVMaterializer *GVM);
441   /// Retrieves the GVMaterializer, if any, for this Module.
442   GVMaterializer *getMaterializer() const { return Materializer.get(); }
443
444   /// True if the definition of GV has yet to be materializedfrom the
445   /// GVMaterializer.
446   bool isMaterializable(const GlobalValue *GV) const;
447   /// Returns true if this GV was loaded from this Module's GVMaterializer and
448   /// the GVMaterializer knows how to dematerialize the GV.
449   bool isDematerializable(const GlobalValue *GV) const;
450
451   /// Make sure the GlobalValue is fully read. If the module is corrupt, this
452   /// returns true and fills in the optional string with information about the
453   /// problem. If successful, this returns false.
454   bool Materialize(GlobalValue *GV, std::string *ErrInfo = nullptr);
455   /// If the GlobalValue is read in, and if the GVMaterializer supports it,
456   /// release the memory for the function, and set it up to be materialized
457   /// lazily. If !isDematerializable(), this method is a noop.
458   void Dematerialize(GlobalValue *GV);
459
460   /// Make sure all GlobalValues in this Module are fully read.
461   error_code materializeAll();
462
463   /// Make sure all GlobalValues in this Module are fully read and clear the
464   /// Materializer. If the module is corrupt, this DOES NOT clear the old
465   /// Materializer.
466   error_code materializeAllPermanently();
467
468 /// @}
469 /// @name Direct access to the globals list, functions list, and symbol table
470 /// @{
471
472   /// Get the Module's list of global variables (constant).
473   const GlobalListType   &getGlobalList() const       { return GlobalList; }
474   /// Get the Module's list of global variables.
475   GlobalListType         &getGlobalList()             { return GlobalList; }
476   static iplist<GlobalVariable> Module::*getSublistAccess(GlobalVariable*) {
477     return &Module::GlobalList;
478   }
479   /// Get the Module's list of functions (constant).
480   const FunctionListType &getFunctionList() const     { return FunctionList; }
481   /// Get the Module's list of functions.
482   FunctionListType       &getFunctionList()           { return FunctionList; }
483   static iplist<Function> Module::*getSublistAccess(Function*) {
484     return &Module::FunctionList;
485   }
486   /// Get the Module's list of aliases (constant).
487   const AliasListType    &getAliasList() const        { return AliasList; }
488   /// Get the Module's list of aliases.
489   AliasListType          &getAliasList()              { return AliasList; }
490   static iplist<GlobalAlias> Module::*getSublistAccess(GlobalAlias*) {
491     return &Module::AliasList;
492   }
493   /// Get the Module's list of named metadata (constant).
494   const NamedMDListType  &getNamedMDList() const      { return NamedMDList; }
495   /// Get the Module's list of named metadata.
496   NamedMDListType        &getNamedMDList()            { return NamedMDList; }
497   static ilist<NamedMDNode> Module::*getSublistAccess(NamedMDNode*) {
498     return &Module::NamedMDList;
499   }
500   /// Get the symbol table of global variable and function identifiers
501   const ValueSymbolTable &getValueSymbolTable() const { return *ValSymTab; }
502   /// Get the Module's symbol table of global variable and function identifiers.
503   ValueSymbolTable       &getValueSymbolTable()       { return *ValSymTab; }
504
505 /// @}
506 /// @name Global Variable Iteration
507 /// @{
508
509   global_iterator       global_begin()       { return GlobalList.begin(); }
510   const_global_iterator global_begin() const { return GlobalList.begin(); }
511   global_iterator       global_end  ()       { return GlobalList.end(); }
512   const_global_iterator global_end  () const { return GlobalList.end(); }
513   bool                  global_empty() const { return GlobalList.empty(); }
514
515   iterator_range<global_iterator> globals() {
516     return iterator_range<global_iterator>(global_begin(), global_end());
517   }
518   iterator_range<const_global_iterator> globals() const {
519     return iterator_range<const_global_iterator>(global_begin(), global_end());
520   }
521
522 /// @}
523 /// @name Function Iteration
524 /// @{
525
526   iterator                begin()       { return FunctionList.begin(); }
527   const_iterator          begin() const { return FunctionList.begin(); }
528   iterator                end  ()       { return FunctionList.end();   }
529   const_iterator          end  () const { return FunctionList.end();   }
530   size_t                  size() const  { return FunctionList.size(); }
531   bool                    empty() const { return FunctionList.empty(); }
532
533 /// @}
534 /// @name Alias Iteration
535 /// @{
536
537   alias_iterator       alias_begin()            { return AliasList.begin(); }
538   const_alias_iterator alias_begin() const      { return AliasList.begin(); }
539   alias_iterator       alias_end  ()            { return AliasList.end();   }
540   const_alias_iterator alias_end  () const      { return AliasList.end();   }
541   size_t               alias_size () const      { return AliasList.size();  }
542   bool                 alias_empty() const      { return AliasList.empty(); }
543
544   iterator_range<alias_iterator> aliases() {
545     return iterator_range<alias_iterator>(alias_begin(), alias_end());
546   }
547   iterator_range<const_alias_iterator> aliases() const {
548     return iterator_range<const_alias_iterator>(alias_begin(), alias_end());
549   }
550
551 /// @}
552 /// @name Named Metadata Iteration
553 /// @{
554
555   named_metadata_iterator named_metadata_begin() { return NamedMDList.begin(); }
556   const_named_metadata_iterator named_metadata_begin() const {
557     return NamedMDList.begin();
558   }
559
560   named_metadata_iterator named_metadata_end() { return NamedMDList.end(); }
561   const_named_metadata_iterator named_metadata_end() const {
562     return NamedMDList.end();
563   }
564
565   size_t named_metadata_size() const { return NamedMDList.size();  }
566   bool named_metadata_empty() const { return NamedMDList.empty(); }
567
568   iterator_range<named_metadata_iterator> named_metadata() {
569     return iterator_range<named_metadata_iterator>(named_metadata_begin(),
570                                                    named_metadata_end());
571   }
572   iterator_range<const_named_metadata_iterator> named_metadata() const {
573     return iterator_range<const_named_metadata_iterator>(named_metadata_begin(),
574                                                          named_metadata_end());
575   }
576
577 /// @}
578 /// @name Utility functions for printing and dumping Module objects
579 /// @{
580
581   /// Print the module to an output stream with an optional
582   /// AssemblyAnnotationWriter.
583   void print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const;
584
585   /// Dump the module to stderr (for debugging).
586   void dump() const;
587   
588   /// This function causes all the subinstructions to "let go" of all references
589   /// that they are maintaining.  This allows one to 'delete' a whole class at
590   /// a time, even though there may be circular references... first all
591   /// references are dropped, and all use counts go to zero.  Then everything
592   /// is delete'd for real.  Note that no operations are valid on an object
593   /// that has "dropped all references", except operator delete.
594   void dropAllReferences();
595
596 /// @}
597 /// @name Utility functions for querying Debug information.
598 /// @{
599
600   /// \brief Returns the Dwarf Version by checking module flags.
601   unsigned getDwarfVersion() const;
602
603 /// @}
604 };
605
606 /// An raw_ostream inserter for modules.
607 inline raw_ostream &operator<<(raw_ostream &O, const Module &M) {
608   M.print(O, nullptr);
609   return O;
610 }
611
612 // Create wrappers for C Binding types (see CBindingWrapping.h).
613 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(Module, LLVMModuleRef)
614
615 /* LLVMModuleProviderRef exists for historical reasons, but now just holds a
616  * Module.
617  */
618 inline Module *unwrap(LLVMModuleProviderRef MP) {
619   return reinterpret_cast<Module*>(MP);
620 }
621   
622 } // End llvm namespace
623
624 #endif