StringRef'ize EmitSourceFileHeader().
[oota-llvm.git] / include / llvm / LLVMContext.h
1 //===-- llvm/LLVMContext.h - Class for managing "global" state --*- 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 declares LLVMContext, a container of "global" state in LLVM, such
11 // as the global type and constant uniquing tables.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_LLVMCONTEXT_H
16 #define LLVM_LLVMCONTEXT_H
17
18 namespace llvm {
19
20 class LLVMContextImpl;
21 class StringRef;
22 class Twine;
23 class Instruction;
24 class Module;
25 class SMDiagnostic;
26 template <typename T> class SmallVectorImpl;
27
28 /// This is an important class for using LLVM in a threaded context.  It
29 /// (opaquely) owns and manages the core "global" data of LLVM's core 
30 /// infrastructure, including the type and constant uniquing tables.
31 /// LLVMContext itself provides no locking guarantees, so you should be careful
32 /// to have one context per thread.
33 class LLVMContext {
34 public:
35   LLVMContextImpl *const pImpl;
36   LLVMContext();
37   ~LLVMContext();
38   
39   // Pinned metadata names, which always have the same value.  This is a
40   // compile-time performance optimization, not a correctness optimization.
41   enum {
42     MD_dbg = 0,  // "dbg"
43     MD_tbaa = 1, // "tbaa"
44     MD_prof = 2,  // "prof"
45     MD_fpaccuracy = 3  // "fpaccuracy"
46   };
47   
48   /// getMDKindID - Return a unique non-zero ID for the specified metadata kind.
49   /// This ID is uniqued across modules in the current LLVMContext.
50   unsigned getMDKindID(StringRef Name) const;
51   
52   /// getMDKindNames - Populate client supplied SmallVector with the name for
53   /// custom metadata IDs registered in this LLVMContext.
54   void getMDKindNames(SmallVectorImpl<StringRef> &Result) const;
55   
56   
57   typedef void (*InlineAsmDiagHandlerTy)(const SMDiagnostic&, void *Context,
58                                          unsigned LocCookie);
59   
60   /// setInlineAsmDiagnosticHandler - This method sets a handler that is invoked
61   /// when problems with inline asm are detected by the backend.  The first
62   /// argument is a function pointer and the second is a context pointer that
63   /// gets passed into the DiagHandler.
64   ///
65   /// LLVMContext doesn't take ownership or interpret either of these
66   /// pointers.
67   void setInlineAsmDiagnosticHandler(InlineAsmDiagHandlerTy DiagHandler,
68                                      void *DiagContext = 0);
69
70   /// getInlineAsmDiagnosticHandler - Return the diagnostic handler set by
71   /// setInlineAsmDiagnosticHandler.
72   InlineAsmDiagHandlerTy getInlineAsmDiagnosticHandler() const;
73
74   /// getInlineAsmDiagnosticContext - Return the diagnostic context set by
75   /// setInlineAsmDiagnosticHandler.
76   void *getInlineAsmDiagnosticContext() const;
77   
78   
79   /// emitError - Emit an error message to the currently installed error handler
80   /// with optional location information.  This function returns, so code should
81   /// be prepared to drop the erroneous construct on the floor and "not crash".
82   /// The generated code need not be correct.  The error message will be
83   /// implicitly prefixed with "error: " and should not end with a ".".
84   void emitError(unsigned LocCookie, const Twine &ErrorStr);
85   void emitError(const Instruction *I, const Twine &ErrorStr);
86   void emitError(const Twine &ErrorStr);
87
88 private:
89   // DO NOT IMPLEMENT
90   LLVMContext(LLVMContext&);
91   void operator=(LLVMContext&);
92
93   /// addModule - Register a module as being instantiated in this context.  If
94   /// the context is deleted, the module will be deleted as well.
95   void addModule(Module*);
96   
97   /// removeModule - Unregister a module from this context.
98   void removeModule(Module*);
99   
100   // Module needs access to the add/removeModule methods.
101   friend class Module;
102 };
103
104 /// getGlobalContext - Returns a global context.  This is for LLVM clients that
105 /// only care about operating on a single thread.
106 extern LLVMContext &getGlobalContext();
107
108 }
109
110 #endif