Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp.
[oota-llvm.git] / lib / ExecutionEngine / JIT / JIT.h
1 //===-- JIT.h - Class definition for the JIT --------------------*- 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 defines the top-level JIT data structure.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef JIT_H
15 #define JIT_H
16
17 #include "llvm/ExecutionEngine/ExecutionEngine.h"
18 #include "llvm/PassManager.h"
19 #include "llvm/Support/ValueHandle.h"
20
21 namespace llvm {
22
23 class Function;
24 struct JITEvent_EmittedFunctionDetails;
25 class MachineCodeEmitter;
26 class MachineCodeInfo;
27 class TargetJITInfo;
28 class TargetMachine;
29
30 class JITState {
31 private:
32   FunctionPassManager PM;  // Passes to compile a function
33   Module *M;               // Module used to create the PM
34
35   /// PendingFunctions - Functions which have not been code generated yet, but
36   /// were called from a function being code generated.
37   std::vector<AssertingVH<Function> > PendingFunctions;
38
39 public:
40   explicit JITState(Module *M) : PM(M), M(M) {}
41
42   FunctionPassManager &getPM(const MutexGuard &L) {
43     return PM;
44   }
45   
46   Module *getModule() const { return M; }
47   std::vector<AssertingVH<Function> > &getPendingFunctions(const MutexGuard &L){
48     return PendingFunctions;
49   }
50 };
51
52
53 class JIT : public ExecutionEngine {
54   TargetMachine &TM;       // The current target we are compiling to
55   TargetJITInfo &TJI;      // The JITInfo for the target we are compiling to
56   JITCodeEmitter *JCE;     // JCE object
57   std::vector<JITEventListener*> EventListeners;
58
59   /// AllocateGVsWithCode - Some applications require that global variables and
60   /// code be allocated into the same region of memory, in which case this flag
61   /// should be set to true.  Doing so breaks freeMachineCodeForFunction.
62   bool AllocateGVsWithCode;
63
64   JITState *jitstate;
65
66   JIT(Module *M, TargetMachine &tm, TargetJITInfo &tji,
67       JITMemoryManager *JMM, CodeGenOpt::Level OptLevel,
68       bool AllocateGVsWithCode);
69 public:
70   ~JIT();
71
72   static void Register() {
73     JITCtor = createJIT;
74   }
75   
76   /// getJITInfo - Return the target JIT information structure.
77   ///
78   TargetJITInfo &getJITInfo() const { return TJI; }
79
80   /// create - Create an return a new JIT compiler if there is one available
81   /// for the current target.  Otherwise, return null.
82   ///
83   static ExecutionEngine *create(Module *M,
84                                  std::string *Err,
85                                  JITMemoryManager *JMM,
86                                  CodeGenOpt::Level OptLevel =
87                                    CodeGenOpt::Default,
88                                  bool GVsWithCode = true,
89                                  CodeModel::Model CMM = CodeModel::Default) {
90     return ExecutionEngine::createJIT(M, Err, JMM, OptLevel, GVsWithCode,
91                                       CMM);
92   }
93
94   virtual void addModule(Module *M);
95   
96   /// removeModule - Remove a Module from the list of modules.  Returns true if
97   /// M is found.
98   virtual bool removeModule(Module *M);
99
100   /// runFunction - Start execution with the specified function and arguments.
101   ///
102   virtual GenericValue runFunction(Function *F,
103                                    const std::vector<GenericValue> &ArgValues);
104
105   /// getPointerToNamedFunction - This method returns the address of the
106   /// specified function by using the dlsym function call.  As such it is only
107   /// useful for resolving library symbols, not code generated symbols.
108   ///
109   /// If AbortOnFailure is false and no function with the given name is
110   /// found, this function silently returns a null pointer. Otherwise,
111   /// it prints a message to stderr and aborts.
112   ///
113   void *getPointerToNamedFunction(const std::string &Name,
114                                   bool AbortOnFailure = true);
115
116   // CompilationCallback - Invoked the first time that a call site is found,
117   // which causes lazy compilation of the target function.
118   //
119   static void CompilationCallback();
120
121   /// getPointerToFunction - This returns the address of the specified function,
122   /// compiling it if necessary.
123   ///
124   void *getPointerToFunction(Function *F);
125
126   void *getPointerToBasicBlock(BasicBlock *BB) {
127     assert(0 && "JIT does not support address-of-label yet!");
128     return 0;
129   }
130   
131   /// getOrEmitGlobalVariable - Return the address of the specified global
132   /// variable, possibly emitting it to memory if needed.  This is used by the
133   /// Emitter.
134   void *getOrEmitGlobalVariable(const GlobalVariable *GV);
135
136   /// getPointerToFunctionOrStub - If the specified function has been
137   /// code-gen'd, return a pointer to the function.  If not, compile it, or use
138   /// a stub to implement lazy compilation if available.
139   ///
140   void *getPointerToFunctionOrStub(Function *F);
141
142   /// recompileAndRelinkFunction - This method is used to force a function
143   /// which has already been compiled, to be compiled again, possibly
144   /// after it has been modified. Then the entry to the old copy is overwritten
145   /// with a branch to the new copy. If there was no old copy, this acts
146   /// just like JIT::getPointerToFunction().
147   ///
148   void *recompileAndRelinkFunction(Function *F);
149
150   /// freeMachineCodeForFunction - deallocate memory used to code-generate this
151   /// Function.
152   ///
153   void freeMachineCodeForFunction(Function *F);
154
155   /// addPendingFunction - while jitting non-lazily, a called but non-codegen'd
156   /// function was encountered.  Add it to a pending list to be processed after 
157   /// the current function.
158   ///
159   void addPendingFunction(Function *F);
160
161   /// getCodeEmitter - Return the code emitter this JIT is emitting into.
162   ///
163   JITCodeEmitter *getCodeEmitter() const { return JCE; }
164
165   /// selectTarget - Pick a target either via -march or by guessing the native
166   /// arch.  Add any CPU features specified via -mcpu or -mattr.
167   static TargetMachine *selectTarget(Module *M,
168                                      StringRef MArch,
169                                      StringRef MCPU,
170                                      const SmallVectorImpl<std::string>& MAttrs,
171                                      std::string *Err);
172
173   static ExecutionEngine *createJIT(Module *M,
174                                     std::string *ErrorStr,
175                                     JITMemoryManager *JMM,
176                                     CodeGenOpt::Level OptLevel,
177                                     bool GVsWithCode,
178                                     CodeModel::Model CMM,
179                                     StringRef MArch,
180                                     StringRef MCPU,
181                                     const SmallVectorImpl<std::string>& MAttrs);
182
183   // Run the JIT on F and return information about the generated code
184   void runJITOnFunction(Function *F, MachineCodeInfo *MCI = 0);
185
186   virtual void RegisterJITEventListener(JITEventListener *L);
187   virtual void UnregisterJITEventListener(JITEventListener *L);
188   /// These functions correspond to the methods on JITEventListener.  They
189   /// iterate over the registered listeners and call the corresponding method on
190   /// each.
191   void NotifyFunctionEmitted(
192       const Function &F, void *Code, size_t Size,
193       const JITEvent_EmittedFunctionDetails &Details);
194   void NotifyFreeingMachineCode(void *OldPtr);
195
196 private:
197   static JITCodeEmitter *createEmitter(JIT &J, JITMemoryManager *JMM,
198                                        TargetMachine &tm);
199   void runJITOnFunctionUnlocked(Function *F, const MutexGuard &locked);
200   void updateFunctionStub(Function *F);
201
202 protected:
203
204   /// getMemoryforGV - Allocate memory for a global variable.
205   virtual char* getMemoryForGV(const GlobalVariable* GV);
206
207 };
208
209 } // End llvm namespace
210
211 #endif