blob: 6e6b8c2befef11ca0ba75db7e1a160cea3d86ac5 [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;
23class GlobalValue;
24class Constant;
25class TargetMachine;
26class TargetJITInfo;
27class MachineCodeEmitter;
28
29class JITState {
30private:
31 FunctionPassManager PM; // Passes to compile a function
32
33 /// PendingGlobals - Global variables which have had memory allocated for them
34 /// while a function was code generated, but which have not been initialized
35 /// yet.
36 std::vector<const GlobalVariable*> PendingGlobals;
37
38public:
Dan Gohman40bd38e2008-03-25 22:06:05 +000039 explicit JITState(ModuleProvider *MP) : PM(MP) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040
41 FunctionPassManager &getPM(const MutexGuard &L) {
42 return PM;
43 }
44
45 std::vector<const GlobalVariable*> &getPendingGlobals(const MutexGuard &L) {
46 return PendingGlobals;
47 }
48};
49
50
51class JIT : public ExecutionEngine {
52 TargetMachine &TM; // The current target we are compiling to
53 TargetJITInfo &TJI; // The JITInfo for the target we are compiling to
54 MachineCodeEmitter *MCE; // MCE object
55
Nate Begemanf7113d92008-05-21 16:34:48 +000056 JITState *jitstate;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000057
Chris Lattner4db98aa2007-12-06 01:34:04 +000058 JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji,
59 JITMemoryManager *JMM);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060public:
61 ~JIT();
62
63 static void Register() {
64 JITCtor = create;
65 }
66
67 /// getJITInfo - Return the target JIT information structure.
68 ///
69 TargetJITInfo &getJITInfo() const { return TJI; }
70
71 /// create - Create an return a new JIT compiler if there is one available
72 /// for the current target. Otherwise, return null.
73 ///
Chris Lattner4db98aa2007-12-06 01:34:04 +000074 static ExecutionEngine *create(ModuleProvider *MP, std::string *Err) {
75 return createJIT(MP, Err, 0);
76 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077
Nate Begemanf7113d92008-05-21 16:34:48 +000078 virtual void addModuleProvider(ModuleProvider *MP);
79 virtual Module *removeModuleProvider(ModuleProvider *MP,
80 std::string *ErrInfo = 0);
81
Dan Gohmana7440122008-07-03 00:51:05 +000082 /// runFunction - Start execution with the specified function and arguments.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083 ///
84 virtual GenericValue runFunction(Function *F,
85 const std::vector<GenericValue> &ArgValues);
86
87 /// getPointerToNamedFunction - This method returns the address of the
88 /// specified function by using the dlsym function call. As such it is only
89 /// useful for resolving library symbols, not code generated symbols.
90 ///
91 void *getPointerToNamedFunction(const std::string &Name);
92
93 // CompilationCallback - Invoked the first time that a call site is found,
94 // which causes lazy compilation of the target function.
95 //
96 static void CompilationCallback();
97
98 /// getPointerToFunction - This returns the address of the specified function,
99 /// compiling it if necessary.
100 ///
101 void *getPointerToFunction(Function *F);
102
103 /// getOrEmitGlobalVariable - Return the address of the specified global
104 /// variable, possibly emitting it to memory if needed. This is used by the
105 /// Emitter.
106 void *getOrEmitGlobalVariable(const GlobalVariable *GV);
107
108 /// getPointerToFunctionOrStub - If the specified function has been
109 /// code-gen'd, return a pointer to the function. If not, compile it, or use
110 /// a stub to implement lazy compilation if available.
111 ///
112 void *getPointerToFunctionOrStub(Function *F);
113
114 /// recompileAndRelinkFunction - This method is used to force a function
115 /// which has already been compiled, to be compiled again, possibly
116 /// after it has been modified. Then the entry to the old copy is overwritten
117 /// with a branch to the new copy. If there was no old copy, this acts
118 /// just like JIT::getPointerToFunction().
119 ///
120 void *recompileAndRelinkFunction(Function *F);
121
122 /// freeMachineCodeForFunction - deallocate memory used to code-generate this
123 /// Function.
124 ///
125 void freeMachineCodeForFunction(Function *F);
126
127 /// getCodeEmitter - Return the code emitter this JIT is emitting into.
128 MachineCodeEmitter *getCodeEmitter() const { return MCE; }
Chris Lattner4db98aa2007-12-06 01:34:04 +0000129
130 static ExecutionEngine *createJIT(ModuleProvider *MP, std::string *Err,
131 JITMemoryManager *JMM);
132
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133private:
Chris Lattnere44be002007-12-06 01:08:09 +0000134 static MachineCodeEmitter *createEmitter(JIT &J, JITMemoryManager *JMM);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 void runJITOnFunction (Function *F);
136};
137
138} // End llvm namespace
139
140#endif