blob: adf4e46e7798c42da5f74a48b1754b767e8c3b5c [file] [log] [blame]
Chris Lattner4d326fa2003-12-20 01:46:27 +00001//===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===//
John Criswell856ba762003-10-21 15:17:13 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
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
Chris Lattner4d326fa2003-12-20 01:46:27 +000030class JIT : public ExecutionEngine {
Chris Lattner836f6752002-12-24 00:01:22 +000031 TargetMachine &TM; // The current target we are compiling to
Chris Lattner1e60a912003-12-20 01:22:19 +000032 TargetJITInfo &TJI; // The JITInfo for the target we are compiling to
33
Brian Gaekec227c1f2003-08-13 18:16:50 +000034 FunctionPassManager PM; // Passes to compile a function
Chris Lattner836f6752002-12-24 00:01:22 +000035 MachineCodeEmitter *MCE; // MCE object
36
Chris Lattner4d326fa2003-12-20 01:46:27 +000037 JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji);
Chris Lattner836f6752002-12-24 00:01:22 +000038public:
Chris Lattner4d326fa2003-12-20 01:46:27 +000039 ~JIT();
Chris Lattner836f6752002-12-24 00:01:22 +000040
Brian Gaeke82d82772003-09-03 20:34:19 +000041 /// create - Create an return a new JIT compiler if there is one available
42 /// for the current target. Otherwise, return null.
43 ///
Misha Brukman005e5e92003-10-14 21:37:41 +000044 static ExecutionEngine *create(ModuleProvider *MP);
Brian Gaeke82d82772003-09-03 20:34:19 +000045
Chris Lattner836f6752002-12-24 00:01:22 +000046 /// run - Start execution with the specified function and arguments.
47 ///
Brian Gaeke70975ee2003-09-05 18:42:01 +000048 virtual GenericValue run(Function *F,
49 const std::vector<GenericValue> &ArgValues);
Chris Lattner836f6752002-12-24 00:01:22 +000050
Chris Lattner0d448c02003-01-13 01:00:48 +000051 /// getPointerToNamedFunction - This method returns the address of the
52 /// specified function by using the dlsym function call. As such it is only
53 /// useful for resolving library symbols, not code generated symbols.
54 ///
55 void *getPointerToNamedFunction(const std::string &Name);
56
Chris Lattnerc309a762003-05-08 21:34:11 +000057 // CompilationCallback - Invoked the first time that a call site is found,
58 // which causes lazy compilation of the target function.
59 //
60 static void CompilationCallback();
Chris Lattner22080f92003-05-14 13:53:40 +000061
62 /// runAtExitHandlers - Before exiting the program, at_exit functions must be
63 /// called. This method calls them.
64 ///
65 static void runAtExitHandlers();
66
Chris Lattnerbba1b6d2003-06-01 23:24:36 +000067 /// getPointerToFunction - This returns the address of the specified function,
68 /// compiling it if necessary.
Brian Gaeke55c0f022003-10-17 18:27:12 +000069 ///
Brian Gaekec227c1f2003-08-13 18:16:50 +000070 void *getPointerToFunction(Function *F);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +000071
Chris Lattner993bdce2003-12-12 07:12:02 +000072 /// getPointerToFunctionOrStub - If the specified function has been
73 /// code-gen'd, return a pointer to the function. If not, compile it, or use
74 /// a stub to implement lazy compilation if available.
75 ///
76 void *getPointerToFunctionOrStub(Function *F);
77
Brian Gaeke55c0f022003-10-17 18:27:12 +000078 /// recompileAndRelinkFunction - This method is used to force a function
79 /// which has already been compiled, to be compiled again, possibly
80 /// after it has been modified. Then the entry to the old copy is overwritten
81 /// with a branch to the new copy. If there was no old copy, this acts
Chris Lattner4d326fa2003-12-20 01:46:27 +000082 /// just like JIT::getPointerToFunction().
Brian Gaeke55c0f022003-10-17 18:27:12 +000083 ///
84 void *recompileAndRelinkFunction(Function *F);
85
Chris Lattner836f6752002-12-24 00:01:22 +000086private:
Chris Lattner4d326fa2003-12-20 01:46:27 +000087 static MachineCodeEmitter *createEmitter(JIT &J);
Brian Gaeke55c0f022003-10-17 18:27:12 +000088 void runJITOnFunction (Function *F);
Chris Lattner836f6752002-12-24 00:01:22 +000089};
90
Brian Gaeked0fde302003-11-11 22:41:34 +000091} // End llvm namespace
92
Chris Lattner836f6752002-12-24 00:01:22 +000093#endif