blob: 69e301bf6d04bdb8fb08e0c1c1cd33f6d645b211 [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"
19#include <map>
20
Brian Gaeke960707c2003-11-11 22:41:34 +000021namespace llvm {
22
Chris Lattnere6761db2002-12-24 00:01:22 +000023class Function;
24class GlobalValue;
25class Constant;
26class TargetMachine;
Chris Lattner833c3c22003-12-20 01:22:19 +000027class TargetJITInfo;
Chris Lattnere6761db2002-12-24 00:01:22 +000028class MachineCodeEmitter;
29
Reid Spencer79876f52005-07-12 15:51:55 +000030class JITState {
31private:
Brian Gaeke2b804a22003-08-13 18:16:50 +000032 FunctionPassManager PM; // Passes to compile a function
Chris Lattnere6761db2002-12-24 00:01:22 +000033
Chris Lattnerfbcc0aa2003-12-20 03:36:47 +000034 /// PendingGlobals - Global variables which have had memory allocated for them
35 /// while a function was code generated, but which have not been initialized
36 /// yet.
37 std::vector<const GlobalVariable*> PendingGlobals;
38
Reid Spencer79876f52005-07-12 15:51:55 +000039public:
Dan Gohmanc60c67f2008-03-25 22:06:05 +000040 explicit JITState(ModuleProvider *MP) : PM(MP) {}
Reid Spencer79876f52005-07-12 15:51:55 +000041
Chris Lattner1e999c42007-04-20 22:40:40 +000042 FunctionPassManager &getPM(const MutexGuard &L) {
Reid Spencer79876f52005-07-12 15:51:55 +000043 return PM;
44 }
45
Chris Lattner1e999c42007-04-20 22:40:40 +000046 std::vector<const GlobalVariable*> &getPendingGlobals(const MutexGuard &L) {
Reid Spencer79876f52005-07-12 15:51:55 +000047 return PendingGlobals;
48 }
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
55 MachineCodeEmitter *MCE; // MCE object
56
Chris Lattner6a309842007-04-20 22:40:05 +000057 JITState jitstate;
Reid Spencer79876f52005-07-12 15:51:55 +000058
Chris Lattner7f3587e2007-12-06 01:34:04 +000059 JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji,
60 JITMemoryManager *JMM);
Chris Lattnere6761db2002-12-24 00:01:22 +000061public:
Chris Lattner9bcae072003-12-20 01:46:27 +000062 ~JIT();
Chris Lattnere6761db2002-12-24 00:01:22 +000063
Chris Lattner2d52c1b2006-03-22 06:07:50 +000064 static void Register() {
65 JITCtor = create;
66 }
67
Chris Lattnerb7b78502004-11-20 03:11:07 +000068 /// getJITInfo - Return the target JIT information structure.
69 ///
70 TargetJITInfo &getJITInfo() const { return TJI; }
71
Brian Gaeke4bd3bd52003-09-03 20:34:19 +000072 /// create - Create an return a new JIT compiler if there is one available
Chris Lattner0b2de9f2006-03-23 05:22:51 +000073 /// for the current target. Otherwise, return null.
Brian Gaeke4bd3bd52003-09-03 20:34:19 +000074 ///
Chris Lattner7f3587e2007-12-06 01:34:04 +000075 static ExecutionEngine *create(ModuleProvider *MP, std::string *Err) {
76 return createJIT(MP, Err, 0);
77 }
Brian Gaeke4bd3bd52003-09-03 20:34:19 +000078
Chris Lattnere6761db2002-12-24 00:01:22 +000079 /// run - Start execution with the specified function and arguments.
80 ///
Chris Lattner385a90a2003-12-26 06:13:47 +000081 virtual GenericValue runFunction(Function *F,
82 const std::vector<GenericValue> &ArgValues);
Chris Lattnere6761db2002-12-24 00:01:22 +000083
Chris Lattner4bc4b672003-01-13 01:00:48 +000084 /// getPointerToNamedFunction - This method returns the address of the
85 /// specified function by using the dlsym function call. As such it is only
86 /// useful for resolving library symbols, not code generated symbols.
87 ///
88 void *getPointerToNamedFunction(const std::string &Name);
89
Chris Lattnerd340dbd2003-05-08 21:34:11 +000090 // CompilationCallback - Invoked the first time that a call site is found,
91 // which causes lazy compilation of the target function.
Misha Brukman10468d82005-04-21 22:55:34 +000092 //
Chris Lattnerd340dbd2003-05-08 21:34:11 +000093 static void CompilationCallback();
Chris Lattner2537ca32003-05-14 13:53:40 +000094
Chris Lattner6b689e32003-06-01 23:24:36 +000095 /// getPointerToFunction - This returns the address of the specified function,
96 /// compiling it if necessary.
Brian Gaeked2bc5ac2003-10-17 18:27:12 +000097 ///
Brian Gaeke2b804a22003-08-13 18:16:50 +000098 void *getPointerToFunction(Function *F);
Chris Lattner6b689e32003-06-01 23:24:36 +000099
Chris Lattnerfbcc0aa2003-12-20 03:36:47 +0000100 /// getOrEmitGlobalVariable - Return the address of the specified global
101 /// variable, possibly emitting it to memory if needed. This is used by the
102 /// Emitter.
103 void *getOrEmitGlobalVariable(const GlobalVariable *GV);
104
Chris Lattner89af2d52003-12-12 07:12:02 +0000105 /// getPointerToFunctionOrStub - If the specified function has been
106 /// code-gen'd, return a pointer to the function. If not, compile it, or use
107 /// a stub to implement lazy compilation if available.
108 ///
109 void *getPointerToFunctionOrStub(Function *F);
110
Brian Gaeked2bc5ac2003-10-17 18:27:12 +0000111 /// recompileAndRelinkFunction - This method is used to force a function
112 /// which has already been compiled, to be compiled again, possibly
113 /// after it has been modified. Then the entry to the old copy is overwritten
114 /// with a branch to the new copy. If there was no old copy, this acts
Chris Lattner9bcae072003-12-20 01:46:27 +0000115 /// just like JIT::getPointerToFunction().
Brian Gaeked2bc5ac2003-10-17 18:27:12 +0000116 ///
117 void *recompileAndRelinkFunction(Function *F);
118
Misha Brukman624685d2004-11-07 23:58:46 +0000119 /// freeMachineCodeForFunction - deallocate memory used to code-generate this
120 /// Function.
121 ///
122 void freeMachineCodeForFunction(Function *F);
123
Chris Lattner05858a92007-02-24 02:57:03 +0000124 /// getCodeEmitter - Return the code emitter this JIT is emitting into.
125 MachineCodeEmitter *getCodeEmitter() const { return MCE; }
Chris Lattner7f3587e2007-12-06 01:34:04 +0000126
127 static ExecutionEngine *createJIT(ModuleProvider *MP, std::string *Err,
128 JITMemoryManager *JMM);
129
Chris Lattnere6761db2002-12-24 00:01:22 +0000130private:
Chris Lattnerdc351b92007-12-06 01:08:09 +0000131 static MachineCodeEmitter *createEmitter(JIT &J, JITMemoryManager *JMM);
Brian Gaeked2bc5ac2003-10-17 18:27:12 +0000132 void runJITOnFunction (Function *F);
Chris Lattnere6761db2002-12-24 00:01:22 +0000133};
134
Brian Gaeke960707c2003-11-11 22:41:34 +0000135} // End llvm namespace
136
Chris Lattnere6761db2002-12-24 00:01:22 +0000137#endif