blob: 1ad54f37807cf8a6fe22c368e7e9805f47f96587 [file] [log] [blame]
Chris Lattner4d326fa2003-12-20 01:46:27 +00001//===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswell856ba762003-10-21 15:17:13 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswell856ba762003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Chris Lattner836f6752002-12-24 00:01:22 +00009//
Chris Lattner4d326fa2003-12-20 01:46:27 +000010// This file defines the top-level JIT data structure.
Chris Lattner836f6752002-12-24 00:01:22 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner4d326fa2003-12-20 01:46:27 +000014#ifndef JIT_H
15#define JIT_H
Chris Lattner836f6752002-12-24 00:01:22 +000016
Brian Gaeke97222942003-09-05 19:39:22 +000017#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chris Lattner836f6752002-12-24 00:01:22 +000018#include "llvm/PassManager.h"
Chris Lattner836f6752002-12-24 00:01:22 +000019
Brian Gaeked0fde302003-11-11 22:41:34 +000020namespace llvm {
21
Chris Lattner836f6752002-12-24 00:01:22 +000022class Function;
Daniel Dunbardeb052a2009-07-12 23:50:34 +000023struct JITEvent_EmittedFunctionDetails;
Chris Lattner836f6752002-12-24 00:01:22 +000024class MachineCodeEmitter;
Argyrios Kyrtzidisb3a847d2009-05-18 21:06:40 +000025class MachineCodeInfo;
Jeffrey Yasskindf5a7da2009-06-25 02:04:04 +000026class TargetJITInfo;
27class TargetMachine;
Chris Lattner836f6752002-12-24 00:01:22 +000028
Reid Spenceree448632005-07-12 15:51:55 +000029class JITState {
30private:
Brian Gaekec227c1f2003-08-13 18:16:50 +000031 FunctionPassManager PM; // Passes to compile a function
Nate Begemand6b7a242009-02-18 08:31:02 +000032 ModuleProvider *MP; // ModuleProvider used to create the PM
Chris Lattner836f6752002-12-24 00:01:22 +000033
Nate Begemand6b7a242009-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 Lattnerc07ed132003-12-20 03:36:47 +000037
Reid Spenceree448632005-07-12 15:51:55 +000038public:
Nate Begemand6b7a242009-02-18 08:31:02 +000039 explicit JITState(ModuleProvider *MP) : PM(MP), MP(MP) {}
Reid Spenceree448632005-07-12 15:51:55 +000040
Chris Lattnerf7e968a2007-04-20 22:40:40 +000041 FunctionPassManager &getPM(const MutexGuard &L) {
Reid Spenceree448632005-07-12 15:51:55 +000042 return PM;
43 }
Nate Begemand6b7a242009-02-18 08:31:02 +000044
45 ModuleProvider *getMP() const { return MP; }
46 std::vector<Function*> &getPendingFunctions(const MutexGuard &L) {
47 return PendingFunctions;
Reid Spenceree448632005-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 Lopes434dd4f2009-06-01 19:57:37 +000055 JITCodeEmitter *JCE; // JCE object
Jeffrey Yasskindf5a7da2009-06-25 02:04:04 +000056 std::vector<JITEventListener*> EventListeners;
Reid Spenceree448632005-07-12 15:51:55 +000057
Jeffrey Yasskin489393d2009-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 Begemanf049e072008-05-21 16:34:48 +000063 JITState *jitstate;
Reid Spenceree448632005-07-12 15:51:55 +000064
Jeffrey Yasskin489393d2009-07-08 21:59:57 +000065 JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji,
66 JITMemoryManager *JMM, CodeGenOpt::Level OptLevel,
67 bool AllocateGVsWithCode);
Chris Lattner836f6752002-12-24 00:01:22 +000068public:
Chris Lattner4d326fa2003-12-20 01:46:27 +000069 ~JIT();
Chris Lattner836f6752002-12-24 00:01:22 +000070
Chris Lattner2fe4bb02006-03-22 06:07:50 +000071 static void Register() {
72 JITCtor = create;
73 }
74
Chris Lattner890b4bd2004-11-20 03:11:07 +000075 /// getJITInfo - Return the target JIT information structure.
76 ///
77 TargetJITInfo &getJITInfo() const { return TJI; }
78
Brian Gaeke82d82772003-09-03 20:34:19 +000079 /// create - Create an return a new JIT compiler if there is one available
Chris Lattner726c1ef2006-03-23 05:22:51 +000080 /// for the current target. Otherwise, return null.
Brian Gaeke82d82772003-09-03 20:34:19 +000081 ///
Evan Cheng502f20b2008-08-08 08:11:34 +000082 static ExecutionEngine *create(ModuleProvider *MP, std::string *Err,
Bill Wendling98a366d2009-04-29 23:29:43 +000083 CodeGenOpt::Level OptLevel =
Jeffrey Yasskin489393d2009-07-08 21:59:57 +000084 CodeGenOpt::Default,
85 bool AllocateGVsWithCode = true) {
86 return createJIT(MP, Err, 0, OptLevel, AllocateGVsWithCode);
Chris Lattner34c94332007-12-06 01:34:04 +000087 }
Brian Gaeke82d82772003-09-03 20:34:19 +000088
Nate Begemanf049e072008-05-21 16:34:48 +000089 virtual void addModuleProvider(ModuleProvider *MP);
Nate Begeman60789e42009-01-23 19:27:28 +000090
91 /// removeModuleProvider - Remove a ModuleProvider from the list of modules.
92 /// Relases the Module from the ModuleProvider, materializing it in the
93 /// process, and returns the materialized Module.
Nate Begemanf049e072008-05-21 16:34:48 +000094 virtual Module *removeModuleProvider(ModuleProvider *MP,
95 std::string *ErrInfo = 0);
96
Nate Begeman60789e42009-01-23 19:27:28 +000097 /// deleteModuleProvider - Remove a ModuleProvider from the list of modules,
98 /// and deletes the ModuleProvider and owned Module. Avoids materializing
99 /// the underlying module.
100 virtual void deleteModuleProvider(ModuleProvider *P,std::string *ErrInfo = 0);
101
Dan Gohmance3c4132008-07-03 00:51:05 +0000102 /// runFunction - Start execution with the specified function and arguments.
Chris Lattner836f6752002-12-24 00:01:22 +0000103 ///
Chris Lattnerff0f1bb2003-12-26 06:13:47 +0000104 virtual GenericValue runFunction(Function *F,
105 const std::vector<GenericValue> &ArgValues);
Chris Lattner836f6752002-12-24 00:01:22 +0000106
Chris Lattner0d448c02003-01-13 01:00:48 +0000107 /// getPointerToNamedFunction - This method returns the address of the
108 /// specified function by using the dlsym function call. As such it is only
109 /// useful for resolving library symbols, not code generated symbols.
110 ///
Dan Gohman69f93782009-01-05 05:32:42 +0000111 /// If AbortOnFailure is false and no function with the given name is
112 /// found, this function silently returns a null pointer. Otherwise,
113 /// it prints a message to stderr and aborts.
114 ///
115 void *getPointerToNamedFunction(const std::string &Name,
116 bool AbortOnFailure = true);
Chris Lattner0d448c02003-01-13 01:00:48 +0000117
Chris Lattnerc309a762003-05-08 21:34:11 +0000118 // CompilationCallback - Invoked the first time that a call site is found,
119 // which causes lazy compilation of the target function.
Misha Brukmanf976c852005-04-21 22:55:34 +0000120 //
Chris Lattnerc309a762003-05-08 21:34:11 +0000121 static void CompilationCallback();
Chris Lattner22080f92003-05-14 13:53:40 +0000122
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000123 /// getPointerToFunction - This returns the address of the specified function,
124 /// compiling it if necessary.
Brian Gaeke55c0f022003-10-17 18:27:12 +0000125 ///
Brian Gaekec227c1f2003-08-13 18:16:50 +0000126 void *getPointerToFunction(Function *F);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000127
Chris Lattnerc07ed132003-12-20 03:36:47 +0000128 /// getOrEmitGlobalVariable - Return the address of the specified global
129 /// variable, possibly emitting it to memory if needed. This is used by the
130 /// Emitter.
131 void *getOrEmitGlobalVariable(const GlobalVariable *GV);
132
Chris Lattner993bdce2003-12-12 07:12:02 +0000133 /// getPointerToFunctionOrStub - If the specified function has been
134 /// code-gen'd, return a pointer to the function. If not, compile it, or use
135 /// a stub to implement lazy compilation if available.
136 ///
137 void *getPointerToFunctionOrStub(Function *F);
138
Brian Gaeke55c0f022003-10-17 18:27:12 +0000139 /// recompileAndRelinkFunction - This method is used to force a function
140 /// which has already been compiled, to be compiled again, possibly
141 /// after it has been modified. Then the entry to the old copy is overwritten
142 /// with a branch to the new copy. If there was no old copy, this acts
Chris Lattner4d326fa2003-12-20 01:46:27 +0000143 /// just like JIT::getPointerToFunction().
Brian Gaeke55c0f022003-10-17 18:27:12 +0000144 ///
145 void *recompileAndRelinkFunction(Function *F);
146
Misha Brukman895eddf2004-11-07 23:58:46 +0000147 /// freeMachineCodeForFunction - deallocate memory used to code-generate this
148 /// Function.
149 ///
150 void freeMachineCodeForFunction(Function *F);
151
Nate Begemand6b7a242009-02-18 08:31:02 +0000152 /// addPendingFunction - while jitting non-lazily, a called but non-codegen'd
153 /// function was encountered. Add it to a pending list to be processed after
154 /// the current function.
155 ///
156 void addPendingFunction(Function *F);
157
Chris Lattnere7484012007-02-24 02:57:03 +0000158 /// getCodeEmitter - Return the code emitter this JIT is emitting into.
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000159 JITCodeEmitter *getCodeEmitter() const { return JCE; }
Chris Lattner34c94332007-12-06 01:34:04 +0000160
Jeffrey Yasskin489393d2009-07-08 21:59:57 +0000161 static ExecutionEngine *createJIT(ModuleProvider *MP,
162 std::string *Err,
Bill Wendling98a366d2009-04-29 23:29:43 +0000163 JITMemoryManager *JMM,
Jeffrey Yasskin489393d2009-07-08 21:59:57 +0000164 CodeGenOpt::Level OptLevel,
165 bool AllocateGVsWithCode);
Argyrios Kyrtzidisb3a847d2009-05-18 21:06:40 +0000166
167
168 // Run the JIT on F and return information about the generated code
169 void runJITOnFunction(Function *F, MachineCodeInfo *MCI = 0);
170
Jeffrey Yasskindf5a7da2009-06-25 02:04:04 +0000171 virtual void RegisterJITEventListener(JITEventListener *L);
172 virtual void UnregisterJITEventListener(JITEventListener *L);
173 /// These functions correspond to the methods on JITEventListener. They
174 /// iterate over the registered listeners and call the corresponding method on
175 /// each.
176 void NotifyFunctionEmitted(
177 const Function &F, void *Code, size_t Size,
178 const JITEvent_EmittedFunctionDetails &Details);
179 void NotifyFreeingMachineCode(const Function &F, void *OldPtr);
180
Chris Lattner836f6752002-12-24 00:01:22 +0000181private:
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000182 static JITCodeEmitter *createEmitter(JIT &J, JITMemoryManager *JMM);
Dan Gohman21afcda2009-02-06 21:25:08 +0000183 void runJITOnFunctionUnlocked(Function *F, const MutexGuard &locked);
Nate Begemand6b7a242009-02-18 08:31:02 +0000184 void updateFunctionStub(Function *F);
185 void updateDlsymStubTable();
Argyrios Kyrtzidisb3a847d2009-05-18 21:06:40 +0000186
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000187protected:
188
189 /// getMemoryforGV - Allocate memory for a global variable.
190 virtual char* getMemoryForGV(const GlobalVariable* GV);
191
Chris Lattner836f6752002-12-24 00:01:22 +0000192};
193
Brian Gaeked0fde302003-11-11 22:41:34 +0000194} // End llvm namespace
195
Chris Lattner836f6752002-12-24 00:01:22 +0000196#endif