blob: 66417a71b2c8e712241c506526f85c124efac3e0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019
20namespace llvm {
21
22class Function;
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +000023class JITEvent_EmittedFunctionDetails;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024class MachineCodeEmitter;
Argiris Kirtzidis6841c1a2009-05-18 21:06:40 +000025class MachineCodeInfo;
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +000026class TargetJITInfo;
27class TargetMachine;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028
29class JITState {
30private:
31 FunctionPassManager PM; // Passes to compile a function
Nate Begeman7b1a8472009-02-18 08:31:02 +000032 ModuleProvider *MP; // ModuleProvider used to create the PM
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033
Nate Begeman7b1a8472009-02-18 08:31:02 +000034 /// PendingFunctions - Functions which have not been code generated yet, but
35 /// were called from a function being code generated.
36 std::vector<Function*> PendingFunctions;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037
38public:
Nate Begeman7b1a8472009-02-18 08:31:02 +000039 explicit JITState(ModuleProvider *MP) : PM(MP), MP(MP) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040
41 FunctionPassManager &getPM(const MutexGuard &L) {
42 return PM;
43 }
Nate Begeman7b1a8472009-02-18 08:31:02 +000044
45 ModuleProvider *getMP() const { return MP; }
46 std::vector<Function*> &getPendingFunctions(const MutexGuard &L) {
47 return PendingFunctions;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048 }
49};
50
51
52class JIT : public ExecutionEngine {
53 TargetMachine &TM; // The current target we are compiling to
54 TargetJITInfo &TJI; // The JITInfo for the target we are compiling to
Bruno Cardoso Lopes8e2537b2009-06-01 19:57:37 +000055 JITCodeEmitter *JCE; // JCE object
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +000056 std::vector<JITEventListener*> EventListeners;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000057
Nate Begemanf7113d92008-05-21 16:34:48 +000058 JITState *jitstate;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059
Chris Lattner4db98aa2007-12-06 01:34:04 +000060 JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000061 JITMemoryManager *JMM, CodeGenOpt::Level OptLevel);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062public:
63 ~JIT();
64
65 static void Register() {
66 JITCtor = create;
67 }
68
69 /// getJITInfo - Return the target JIT information structure.
70 ///
71 TargetJITInfo &getJITInfo() const { return TJI; }
72
73 /// create - Create an return a new JIT compiler if there is one available
74 /// for the current target. Otherwise, return null.
75 ///
Evan Chenga6394fc2008-08-08 08:11:34 +000076 static ExecutionEngine *create(ModuleProvider *MP, std::string *Err,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000077 CodeGenOpt::Level OptLevel =
78 CodeGenOpt::Default) {
Bill Wendling277d7272009-04-29 00:32:19 +000079 return createJIT(MP, Err, 0, OptLevel);
Chris Lattner4db98aa2007-12-06 01:34:04 +000080 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081
Nate Begemanf7113d92008-05-21 16:34:48 +000082 virtual void addModuleProvider(ModuleProvider *MP);
Nate Begemanb34045e2009-01-23 19:27:28 +000083
84 /// removeModuleProvider - Remove a ModuleProvider from the list of modules.
85 /// Relases the Module from the ModuleProvider, materializing it in the
86 /// process, and returns the materialized Module.
Nate Begemanf7113d92008-05-21 16:34:48 +000087 virtual Module *removeModuleProvider(ModuleProvider *MP,
88 std::string *ErrInfo = 0);
89
Nate Begemanb34045e2009-01-23 19:27:28 +000090 /// deleteModuleProvider - Remove a ModuleProvider from the list of modules,
91 /// and deletes the ModuleProvider and owned Module. Avoids materializing
92 /// the underlying module.
93 virtual void deleteModuleProvider(ModuleProvider *P,std::string *ErrInfo = 0);
94
Dan Gohmana7440122008-07-03 00:51:05 +000095 /// runFunction - Start execution with the specified function and arguments.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096 ///
97 virtual GenericValue runFunction(Function *F,
98 const std::vector<GenericValue> &ArgValues);
99
100 /// getPointerToNamedFunction - This method returns the address of the
101 /// specified function by using the dlsym function call. As such it is only
102 /// useful for resolving library symbols, not code generated symbols.
103 ///
Dan Gohman0ae39622009-01-05 05:32:42 +0000104 /// If AbortOnFailure is false and no function with the given name is
105 /// found, this function silently returns a null pointer. Otherwise,
106 /// it prints a message to stderr and aborts.
107 ///
108 void *getPointerToNamedFunction(const std::string &Name,
109 bool AbortOnFailure = true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110
111 // CompilationCallback - Invoked the first time that a call site is found,
112 // which causes lazy compilation of the target function.
113 //
114 static void CompilationCallback();
115
116 /// getPointerToFunction - This returns the address of the specified function,
117 /// compiling it if necessary.
118 ///
119 void *getPointerToFunction(Function *F);
120
121 /// getOrEmitGlobalVariable - Return the address of the specified global
122 /// variable, possibly emitting it to memory if needed. This is used by the
123 /// Emitter.
124 void *getOrEmitGlobalVariable(const GlobalVariable *GV);
125
126 /// getPointerToFunctionOrStub - If the specified function has been
127 /// code-gen'd, return a pointer to the function. If not, compile it, or use
128 /// a stub to implement lazy compilation if available.
129 ///
130 void *getPointerToFunctionOrStub(Function *F);
131
132 /// recompileAndRelinkFunction - This method is used to force a function
133 /// which has already been compiled, to be compiled again, possibly
134 /// after it has been modified. Then the entry to the old copy is overwritten
135 /// with a branch to the new copy. If there was no old copy, this acts
136 /// just like JIT::getPointerToFunction().
137 ///
138 void *recompileAndRelinkFunction(Function *F);
139
140 /// freeMachineCodeForFunction - deallocate memory used to code-generate this
141 /// Function.
142 ///
143 void freeMachineCodeForFunction(Function *F);
144
Nate Begeman7b1a8472009-02-18 08:31:02 +0000145 /// addPendingFunction - while jitting non-lazily, a called but non-codegen'd
146 /// function was encountered. Add it to a pending list to be processed after
147 /// the current function.
148 ///
149 void addPendingFunction(Function *F);
150
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000151 /// getCodeEmitter - Return the code emitter this JIT is emitting into.
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +0000152 JITCodeEmitter *getCodeEmitter() const { return JCE; }
Chris Lattner4db98aa2007-12-06 01:34:04 +0000153
154 static ExecutionEngine *createJIT(ModuleProvider *MP, std::string *Err,
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000155 JITMemoryManager *JMM,
156 CodeGenOpt::Level OptLevel);
Argiris Kirtzidis6841c1a2009-05-18 21:06:40 +0000157
158
159 // Run the JIT on F and return information about the generated code
160 void runJITOnFunction(Function *F, MachineCodeInfo *MCI = 0);
161
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +0000162 virtual void RegisterJITEventListener(JITEventListener *L);
163 virtual void UnregisterJITEventListener(JITEventListener *L);
164 /// These functions correspond to the methods on JITEventListener. They
165 /// iterate over the registered listeners and call the corresponding method on
166 /// each.
167 void NotifyFunctionEmitted(
168 const Function &F, void *Code, size_t Size,
169 const JITEvent_EmittedFunctionDetails &Details);
170 void NotifyFreeingMachineCode(const Function &F, void *OldPtr);
171
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172private:
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +0000173 static JITCodeEmitter *createEmitter(JIT &J, JITMemoryManager *JMM);
Dan Gohman2970af12009-02-06 21:25:08 +0000174 void runJITOnFunctionUnlocked(Function *F, const MutexGuard &locked);
Nate Begeman7b1a8472009-02-18 08:31:02 +0000175 void updateFunctionStub(Function *F);
176 void updateDlsymStubTable();
Argiris Kirtzidis6841c1a2009-05-18 21:06:40 +0000177
Nicolas Geoffray46fa1532008-10-25 15:41:43 +0000178protected:
179
180 /// getMemoryforGV - Allocate memory for a global variable.
181 virtual char* getMemoryForGV(const GlobalVariable* GV);
182
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183};
184
185} // End llvm namespace
186
187#endif