blob: dfeffb516e1db5fb9ec43a62fb0a591a6d8b8ce7 [file] [log] [blame]
Chris Lattner9bcae072003-12-20 01:46:27 +00001//===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===//
Misha Brukman10468d82005-04-21 22:55:34 +00002//
John Criswell29265fe2003-10-21 15:17:13 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman10468d82005-04-21 22:55:34 +00007//
John Criswell29265fe2003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Chris Lattnere6761db2002-12-24 00:01:22 +00009//
Chris Lattner9bcae072003-12-20 01:46:27 +000010// This file defines the top-level JIT data structure.
Chris Lattnere6761db2002-12-24 00:01:22 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner9bcae072003-12-20 01:46:27 +000014#ifndef JIT_H
15#define JIT_H
Chris Lattnere6761db2002-12-24 00:01:22 +000016
Brian Gaekef3a300d2003-09-05 19:39:22 +000017#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chris Lattnere6761db2002-12-24 00:01:22 +000018#include "llvm/PassManager.h"
Chris Lattnere6761db2002-12-24 00:01:22 +000019
Brian Gaeke960707c2003-11-11 22:41:34 +000020namespace llvm {
21
Chris Lattnere6761db2002-12-24 00:01:22 +000022class Function;
Daniel Dunbar65553d42009-07-12 23:50:34 +000023struct JITEvent_EmittedFunctionDetails;
Chris Lattnere6761db2002-12-24 00:01:22 +000024class MachineCodeEmitter;
Argyrios Kyrtzidisc65c5252009-05-18 21:06:40 +000025class MachineCodeInfo;
Jeffrey Yasskin0b08f3d2009-06-25 02:04:04 +000026class TargetJITInfo;
27class TargetMachine;
Chris Lattnere6761db2002-12-24 00:01:22 +000028
Reid Spencer79876f52005-07-12 15:51:55 +000029class JITState {
30private:
Brian Gaeke2b804a22003-08-13 18:16:50 +000031 FunctionPassManager PM; // Passes to compile a function
Nate Begeman18d85e72009-02-18 08:31:02 +000032 ModuleProvider *MP; // ModuleProvider used to create the PM
Chris Lattnere6761db2002-12-24 00:01:22 +000033
Nate Begeman18d85e72009-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;
Chris Lattnerfbcc0aa2003-12-20 03:36:47 +000037
Reid Spencer79876f52005-07-12 15:51:55 +000038public:
Nate Begeman18d85e72009-02-18 08:31:02 +000039 explicit JITState(ModuleProvider *MP) : PM(MP), MP(MP) {}
Reid Spencer79876f52005-07-12 15:51:55 +000040
Chris Lattner1e999c42007-04-20 22:40:40 +000041 FunctionPassManager &getPM(const MutexGuard &L) {
Reid Spencer79876f52005-07-12 15:51:55 +000042 return PM;
43 }
Nate Begeman18d85e72009-02-18 08:31:02 +000044
45 ModuleProvider *getMP() const { return MP; }
46 std::vector<Function*> &getPendingFunctions(const MutexGuard &L) {
47 return PendingFunctions;
Reid Spencer79876f52005-07-12 15:51:55 +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 Lopes9fd794b2009-06-01 19:57:37 +000055 JITCodeEmitter *JCE; // JCE object
Jeffrey Yasskin0b08f3d2009-06-25 02:04:04 +000056 std::vector<JITEventListener*> EventListeners;
Reid Spencer79876f52005-07-12 15:51:55 +000057
Jeffrey Yasskin70415d92009-07-08 21:59:57 +000058 /// AllocateGVsWithCode - Some applications require that global variables and
59 /// code be allocated into the same region of memory, in which case this flag
60 /// should be set to true. Doing so breaks freeMachineCodeForFunction.
61 bool AllocateGVsWithCode;
62
Nate Begeman8f83fc42008-05-21 16:34:48 +000063 JITState *jitstate;
Reid Spencer79876f52005-07-12 15:51:55 +000064
Jeffrey Yasskin70415d92009-07-08 21:59:57 +000065 JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji,
66 JITMemoryManager *JMM, CodeGenOpt::Level OptLevel,
67 bool AllocateGVsWithCode);
Chris Lattnere6761db2002-12-24 00:01:22 +000068public:
Chris Lattner9bcae072003-12-20 01:46:27 +000069 ~JIT();
Chris Lattnere6761db2002-12-24 00:01:22 +000070
Chris Lattner2d52c1b2006-03-22 06:07:50 +000071 static void Register() {
72 JITCtor = create;
73 }
74
Chris Lattnerb7b78502004-11-20 03:11:07 +000075 /// getJITInfo - Return the target JIT information structure.
76 ///
77 TargetJITInfo &getJITInfo() const { return TJI; }
78
Brian Gaeke4bd3bd52003-09-03 20:34:19 +000079 /// create - Create an return a new JIT compiler if there is one available
Chris Lattner0b2de9f2006-03-23 05:22:51 +000080 /// for the current target. Otherwise, return null.
Brian Gaeke4bd3bd52003-09-03 20:34:19 +000081 ///
Reid Klecknerfc8a2d52009-07-18 00:42:18 +000082 static ExecutionEngine *create(ModuleProvider *MP,
83 std::string *Err,
84 JITMemoryManager *JMM,
Bill Wendling026e5d72009-04-29 23:29:43 +000085 CodeGenOpt::Level OptLevel =
Jeffrey Yasskin70415d92009-07-08 21:59:57 +000086 CodeGenOpt::Default,
Reid Klecknerfc8a2d52009-07-18 00:42:18 +000087 bool GVsWithCode = true) {
88 return ExecutionEngine::createJIT(MP, Err, JMM, OptLevel, GVsWithCode);
Chris Lattner7f3587e2007-12-06 01:34:04 +000089 }
Brian Gaeke4bd3bd52003-09-03 20:34:19 +000090
Nate Begeman8f83fc42008-05-21 16:34:48 +000091 virtual void addModuleProvider(ModuleProvider *MP);
Nate Begeman617001d2009-01-23 19:27:28 +000092
93 /// removeModuleProvider - Remove a ModuleProvider from the list of modules.
94 /// Relases the Module from the ModuleProvider, materializing it in the
95 /// process, and returns the materialized Module.
Nate Begeman8f83fc42008-05-21 16:34:48 +000096 virtual Module *removeModuleProvider(ModuleProvider *MP,
97 std::string *ErrInfo = 0);
98
Nate Begeman617001d2009-01-23 19:27:28 +000099 /// deleteModuleProvider - Remove a ModuleProvider from the list of modules,
100 /// and deletes the ModuleProvider and owned Module. Avoids materializing
101 /// the underlying module.
102 virtual void deleteModuleProvider(ModuleProvider *P,std::string *ErrInfo = 0);
103
Dan Gohman4c6db532008-07-03 00:51:05 +0000104 /// runFunction - Start execution with the specified function and arguments.
Chris Lattnere6761db2002-12-24 00:01:22 +0000105 ///
Chris Lattner385a90a2003-12-26 06:13:47 +0000106 virtual GenericValue runFunction(Function *F,
107 const std::vector<GenericValue> &ArgValues);
Chris Lattnere6761db2002-12-24 00:01:22 +0000108
Chris Lattner4bc4b672003-01-13 01:00:48 +0000109 /// getPointerToNamedFunction - This method returns the address of the
110 /// specified function by using the dlsym function call. As such it is only
111 /// useful for resolving library symbols, not code generated symbols.
112 ///
Dan Gohmand32ec012009-01-05 05:32:42 +0000113 /// If AbortOnFailure is false and no function with the given name is
114 /// found, this function silently returns a null pointer. Otherwise,
115 /// it prints a message to stderr and aborts.
116 ///
117 void *getPointerToNamedFunction(const std::string &Name,
118 bool AbortOnFailure = true);
Chris Lattner4bc4b672003-01-13 01:00:48 +0000119
Chris Lattnerd340dbd2003-05-08 21:34:11 +0000120 // CompilationCallback - Invoked the first time that a call site is found,
121 // which causes lazy compilation of the target function.
Misha Brukman10468d82005-04-21 22:55:34 +0000122 //
Chris Lattnerd340dbd2003-05-08 21:34:11 +0000123 static void CompilationCallback();
Chris Lattner2537ca32003-05-14 13:53:40 +0000124
Chris Lattner6b689e32003-06-01 23:24:36 +0000125 /// getPointerToFunction - This returns the address of the specified function,
126 /// compiling it if necessary.
Brian Gaeked2bc5ac2003-10-17 18:27:12 +0000127 ///
Brian Gaeke2b804a22003-08-13 18:16:50 +0000128 void *getPointerToFunction(Function *F);
Chris Lattner6b689e32003-06-01 23:24:36 +0000129
Chris Lattnerfbcc0aa2003-12-20 03:36:47 +0000130 /// getOrEmitGlobalVariable - Return the address of the specified global
131 /// variable, possibly emitting it to memory if needed. This is used by the
132 /// Emitter.
133 void *getOrEmitGlobalVariable(const GlobalVariable *GV);
134
Chris Lattner89af2d52003-12-12 07:12:02 +0000135 /// getPointerToFunctionOrStub - If the specified function has been
136 /// code-gen'd, return a pointer to the function. If not, compile it, or use
137 /// a stub to implement lazy compilation if available.
138 ///
139 void *getPointerToFunctionOrStub(Function *F);
140
Brian Gaeked2bc5ac2003-10-17 18:27:12 +0000141 /// recompileAndRelinkFunction - This method is used to force a function
142 /// which has already been compiled, to be compiled again, possibly
143 /// after it has been modified. Then the entry to the old copy is overwritten
144 /// with a branch to the new copy. If there was no old copy, this acts
Chris Lattner9bcae072003-12-20 01:46:27 +0000145 /// just like JIT::getPointerToFunction().
Brian Gaeked2bc5ac2003-10-17 18:27:12 +0000146 ///
147 void *recompileAndRelinkFunction(Function *F);
148
Misha Brukman624685d2004-11-07 23:58:46 +0000149 /// freeMachineCodeForFunction - deallocate memory used to code-generate this
150 /// Function.
151 ///
152 void freeMachineCodeForFunction(Function *F);
153
Nate Begeman18d85e72009-02-18 08:31:02 +0000154 /// addPendingFunction - while jitting non-lazily, a called but non-codegen'd
155 /// function was encountered. Add it to a pending list to be processed after
156 /// the current function.
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000157 ///
Nate Begeman18d85e72009-02-18 08:31:02 +0000158 void addPendingFunction(Function *F);
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000159
Chris Lattner05858a92007-02-24 02:57:03 +0000160 /// getCodeEmitter - Return the code emitter this JIT is emitting into.
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000161 ///
Bruno Cardoso Lopesa194c3a2009-05-30 20:51:52 +0000162 JITCodeEmitter *getCodeEmitter() const { return JCE; }
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000163
164 /// selectTarget - Pick a target either via -march or by guessing the native
165 /// arch. Add any CPU features specified via -mcpu or -mattr.
166 static TargetMachine *selectTarget(ModuleProvider *MP, std::string *Err);
167
Jeffrey Yasskin70415d92009-07-08 21:59:57 +0000168 static ExecutionEngine *createJIT(ModuleProvider *MP,
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000169 std::string *ErrorStr,
Bill Wendling026e5d72009-04-29 23:29:43 +0000170 JITMemoryManager *JMM,
Jeffrey Yasskin70415d92009-07-08 21:59:57 +0000171 CodeGenOpt::Level OptLevel,
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000172 bool GVsWithCode);
Argyrios Kyrtzidisc65c5252009-05-18 21:06:40 +0000173
174 // Run the JIT on F and return information about the generated code
175 void runJITOnFunction(Function *F, MachineCodeInfo *MCI = 0);
176
Jeffrey Yasskin0b08f3d2009-06-25 02:04:04 +0000177 virtual void RegisterJITEventListener(JITEventListener *L);
178 virtual void UnregisterJITEventListener(JITEventListener *L);
179 /// These functions correspond to the methods on JITEventListener. They
180 /// iterate over the registered listeners and call the corresponding method on
181 /// each.
182 void NotifyFunctionEmitted(
183 const Function &F, void *Code, size_t Size,
184 const JITEvent_EmittedFunctionDetails &Details);
185 void NotifyFreeingMachineCode(const Function &F, void *OldPtr);
186
Chris Lattnere6761db2002-12-24 00:01:22 +0000187private:
Reid Kleckner9a10db82009-09-20 23:52:43 +0000188 static JITCodeEmitter *createEmitter(JIT &J, JITMemoryManager *JMM,
189 TargetMachine &tm);
Dan Gohman21cb4112009-02-06 21:25:08 +0000190 void runJITOnFunctionUnlocked(Function *F, const MutexGuard &locked);
Nate Begeman18d85e72009-02-18 08:31:02 +0000191 void updateFunctionStub(Function *F);
192 void updateDlsymStubTable();
Argyrios Kyrtzidisc65c5252009-05-18 21:06:40 +0000193
Nicolas Geoffray5457ce92008-10-25 15:41:43 +0000194protected:
195
196 /// getMemoryforGV - Allocate memory for a global variable.
197 virtual char* getMemoryForGV(const GlobalVariable* GV);
198
Chris Lattnere6761db2002-12-24 00:01:22 +0000199};
200
Brian Gaeke960707c2003-11-11 22:41:34 +0000201} // End llvm namespace
202
Chris Lattnere6761db2002-12-24 00:01:22 +0000203#endif