blob: 414d1c6e6832ebffec18d716699be11482afc32f [file] [log] [blame]
Chris Lattner9bcae072003-12-20 01:46:27 +00001//===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===//
John Criswell29265fe2003-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 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
Chris Lattner9bcae072003-12-20 01:46:27 +000030class JIT : public ExecutionEngine {
Chris Lattnere6761db2002-12-24 00:01:22 +000031 TargetMachine &TM; // The current target we are compiling to
Chris Lattner833c3c22003-12-20 01:22:19 +000032 TargetJITInfo &TJI; // The JITInfo for the target we are compiling to
33
Brian Gaeke2b804a22003-08-13 18:16:50 +000034 FunctionPassManager PM; // Passes to compile a function
Chris Lattnere6761db2002-12-24 00:01:22 +000035 MachineCodeEmitter *MCE; // MCE object
36
Chris Lattnerfbcc0aa2003-12-20 03:36:47 +000037 /// PendingGlobals - Global variables which have had memory allocated for them
38 /// while a function was code generated, but which have not been initialized
39 /// yet.
40 std::vector<const GlobalVariable*> PendingGlobals;
41
Chris Lattner9bcae072003-12-20 01:46:27 +000042 JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji);
Chris Lattnere6761db2002-12-24 00:01:22 +000043public:
Chris Lattner9bcae072003-12-20 01:46:27 +000044 ~JIT();
Chris Lattnere6761db2002-12-24 00:01:22 +000045
Brian Gaeke4bd3bd52003-09-03 20:34:19 +000046 /// create - Create an return a new JIT compiler if there is one available
Chris Lattnerc8c6c032003-12-28 09:44:37 +000047 /// for the current target. Otherwise, return null. If the JIT is created
48 /// successfully, it takes responsibility for deleting the specified
49 /// IntrinsicLowering implementation.
Brian Gaeke4bd3bd52003-09-03 20:34:19 +000050 ///
Chris Lattnerc8c6c032003-12-28 09:44:37 +000051 static ExecutionEngine *create(ModuleProvider *MP, IntrinsicLowering *IL = 0);
Brian Gaeke4bd3bd52003-09-03 20:34:19 +000052
Chris Lattnere6761db2002-12-24 00:01:22 +000053 /// run - Start execution with the specified function and arguments.
54 ///
Chris Lattner385a90a2003-12-26 06:13:47 +000055 virtual GenericValue runFunction(Function *F,
56 const std::vector<GenericValue> &ArgValues);
Chris Lattnere6761db2002-12-24 00:01:22 +000057
Chris Lattner4bc4b672003-01-13 01:00:48 +000058 /// getPointerToNamedFunction - This method returns the address of the
59 /// specified function by using the dlsym function call. As such it is only
60 /// useful for resolving library symbols, not code generated symbols.
61 ///
62 void *getPointerToNamedFunction(const std::string &Name);
63
Chris Lattnerd340dbd2003-05-08 21:34:11 +000064 // CompilationCallback - Invoked the first time that a call site is found,
65 // which causes lazy compilation of the target function.
66 //
67 static void CompilationCallback();
Chris Lattner2537ca32003-05-14 13:53:40 +000068
Chris Lattner6b689e32003-06-01 23:24:36 +000069 /// getPointerToFunction - This returns the address of the specified function,
70 /// compiling it if necessary.
Brian Gaeked2bc5ac2003-10-17 18:27:12 +000071 ///
Brian Gaeke2b804a22003-08-13 18:16:50 +000072 void *getPointerToFunction(Function *F);
Chris Lattner6b689e32003-06-01 23:24:36 +000073
Chris Lattnerfbcc0aa2003-12-20 03:36:47 +000074 /// getOrEmitGlobalVariable - Return the address of the specified global
75 /// variable, possibly emitting it to memory if needed. This is used by the
76 /// Emitter.
77 void *getOrEmitGlobalVariable(const GlobalVariable *GV);
78
Chris Lattner89af2d52003-12-12 07:12:02 +000079 /// getPointerToFunctionOrStub - If the specified function has been
80 /// code-gen'd, return a pointer to the function. If not, compile it, or use
81 /// a stub to implement lazy compilation if available.
82 ///
83 void *getPointerToFunctionOrStub(Function *F);
84
Brian Gaeked2bc5ac2003-10-17 18:27:12 +000085 /// recompileAndRelinkFunction - This method is used to force a function
86 /// which has already been compiled, to be compiled again, possibly
87 /// after it has been modified. Then the entry to the old copy is overwritten
88 /// with a branch to the new copy. If there was no old copy, this acts
Chris Lattner9bcae072003-12-20 01:46:27 +000089 /// just like JIT::getPointerToFunction().
Brian Gaeked2bc5ac2003-10-17 18:27:12 +000090 ///
91 void *recompileAndRelinkFunction(Function *F);
92
Chris Lattnere6761db2002-12-24 00:01:22 +000093private:
Chris Lattner9bcae072003-12-20 01:46:27 +000094 static MachineCodeEmitter *createEmitter(JIT &J);
Brian Gaeked2bc5ac2003-10-17 18:27:12 +000095 void runJITOnFunction (Function *F);
Chris Lattnere6761db2002-12-24 00:01:22 +000096};
97
Brian Gaeke960707c2003-11-11 22:41:34 +000098} // End llvm namespace
99
Chris Lattnere6761db2002-12-24 00:01:22 +0000100#endif