blob: 4cce144712fc1642109ec41e9a0e4578b9b837b0 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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"
19#include <map>
20
Brian Gaeked0fde302003-11-11 22:41:34 +000021namespace llvm {
22
Chris Lattner836f6752002-12-24 00:01:22 +000023class Function;
24class GlobalValue;
25class Constant;
26class TargetMachine;
Chris Lattner1e60a912003-12-20 01:22:19 +000027class TargetJITInfo;
Chris Lattner836f6752002-12-24 00:01:22 +000028class MachineCodeEmitter;
29
Reid Spenceree448632005-07-12 15:51:55 +000030class JITState {
31private:
Brian Gaekec227c1f2003-08-13 18:16:50 +000032 FunctionPassManager PM; // Passes to compile a function
Chris Lattner836f6752002-12-24 00:01:22 +000033
Chris Lattnerc07ed132003-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 Spenceree448632005-07-12 15:51:55 +000039public:
40 JITState(ModuleProvider *MP) : PM(MP) {}
41
42 FunctionPassManager& getPM(const MutexGuard& locked) {
43 return PM;
44 }
45
46 std::vector<const GlobalVariable*>& getPendingGlobals(const MutexGuard& locked) {
47 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
57 JITState state;
58
Chris Lattner4d326fa2003-12-20 01:46:27 +000059 JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji);
Chris Lattner836f6752002-12-24 00:01:22 +000060public:
Chris Lattner4d326fa2003-12-20 01:46:27 +000061 ~JIT();
Chris Lattner836f6752002-12-24 00:01:22 +000062
Chris Lattner890b4bd2004-11-20 03:11:07 +000063 /// getJITInfo - Return the target JIT information structure.
64 ///
65 TargetJITInfo &getJITInfo() const { return TJI; }
66
Brian Gaeke82d82772003-09-03 20:34:19 +000067 /// create - Create an return a new JIT compiler if there is one available
Chris Lattner73011782003-12-28 09:44:37 +000068 /// for the current target. Otherwise, return null. If the JIT is created
69 /// successfully, it takes responsibility for deleting the specified
70 /// IntrinsicLowering implementation.
Brian Gaeke82d82772003-09-03 20:34:19 +000071 ///
Chris Lattner73011782003-12-28 09:44:37 +000072 static ExecutionEngine *create(ModuleProvider *MP, IntrinsicLowering *IL = 0);
Brian Gaeke82d82772003-09-03 20:34:19 +000073
Chris Lattner836f6752002-12-24 00:01:22 +000074 /// run - Start execution with the specified function and arguments.
75 ///
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000076 virtual GenericValue runFunction(Function *F,
77 const std::vector<GenericValue> &ArgValues);
Chris Lattner836f6752002-12-24 00:01:22 +000078
Chris Lattner0d448c02003-01-13 01:00:48 +000079 /// getPointerToNamedFunction - This method returns the address of the
80 /// specified function by using the dlsym function call. As such it is only
81 /// useful for resolving library symbols, not code generated symbols.
82 ///
83 void *getPointerToNamedFunction(const std::string &Name);
84
Chris Lattnerc309a762003-05-08 21:34:11 +000085 // CompilationCallback - Invoked the first time that a call site is found,
86 // which causes lazy compilation of the target function.
Misha Brukmanf976c852005-04-21 22:55:34 +000087 //
Chris Lattnerc309a762003-05-08 21:34:11 +000088 static void CompilationCallback();
Chris Lattner22080f92003-05-14 13:53:40 +000089
Chris Lattnerbba1b6d2003-06-01 23:24:36 +000090 /// getPointerToFunction - This returns the address of the specified function,
91 /// compiling it if necessary.
Brian Gaeke55c0f022003-10-17 18:27:12 +000092 ///
Brian Gaekec227c1f2003-08-13 18:16:50 +000093 void *getPointerToFunction(Function *F);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +000094
Chris Lattnerc07ed132003-12-20 03:36:47 +000095 /// getOrEmitGlobalVariable - Return the address of the specified global
96 /// variable, possibly emitting it to memory if needed. This is used by the
97 /// Emitter.
98 void *getOrEmitGlobalVariable(const GlobalVariable *GV);
99
Chris Lattner993bdce2003-12-12 07:12:02 +0000100 /// getPointerToFunctionOrStub - If the specified function has been
101 /// code-gen'd, return a pointer to the function. If not, compile it, or use
102 /// a stub to implement lazy compilation if available.
103 ///
104 void *getPointerToFunctionOrStub(Function *F);
105
Brian Gaeke55c0f022003-10-17 18:27:12 +0000106 /// recompileAndRelinkFunction - This method is used to force a function
107 /// which has already been compiled, to be compiled again, possibly
108 /// after it has been modified. Then the entry to the old copy is overwritten
109 /// with a branch to the new copy. If there was no old copy, this acts
Chris Lattner4d326fa2003-12-20 01:46:27 +0000110 /// just like JIT::getPointerToFunction().
Brian Gaeke55c0f022003-10-17 18:27:12 +0000111 ///
112 void *recompileAndRelinkFunction(Function *F);
113
Misha Brukman895eddf2004-11-07 23:58:46 +0000114 /// freeMachineCodeForFunction - deallocate memory used to code-generate this
115 /// Function.
116 ///
117 void freeMachineCodeForFunction(Function *F);
118
Chris Lattner836f6752002-12-24 00:01:22 +0000119private:
Chris Lattner4d326fa2003-12-20 01:46:27 +0000120 static MachineCodeEmitter *createEmitter(JIT &J);
Brian Gaeke55c0f022003-10-17 18:27:12 +0000121 void runJITOnFunction (Function *F);
Chris Lattner836f6752002-12-24 00:01:22 +0000122};
123
Brian Gaeked0fde302003-11-11 22:41:34 +0000124} // End llvm namespace
125
Chris Lattner836f6752002-12-24 00:01:22 +0000126#endif