blob: 9a17c967c70c51dda91acedebd4cab151aaf44d3 [file] [log] [blame]
Chris Lattner836f6752002-12-24 00:01:22 +00001//===-- VM.h - Definitions for Virtual Machine ------------------*- 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//
10// This file defines the top-level Virtual Machine data structure.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef VM_H
15#define VM_H
16
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;
27class MachineCodeEmitter;
28
29class VM : public ExecutionEngine {
30 TargetMachine &TM; // The current target we are compiling to
Brian Gaekec227c1f2003-08-13 18:16:50 +000031 FunctionPassManager PM; // Passes to compile a function
Chris Lattner836f6752002-12-24 00:01:22 +000032 MachineCodeEmitter *MCE; // MCE object
33
Chris Lattner836f6752002-12-24 00:01:22 +000034public:
Misha Brukman005e5e92003-10-14 21:37:41 +000035 VM(ModuleProvider *MP, TargetMachine *tm);
Chris Lattner836f6752002-12-24 00:01:22 +000036 ~VM();
37
Brian Gaeke82d82772003-09-03 20:34:19 +000038 /// create - Create an return a new JIT compiler if there is one available
39 /// for the current target. Otherwise, return null.
40 ///
Misha Brukman005e5e92003-10-14 21:37:41 +000041 static ExecutionEngine *create(ModuleProvider *MP);
Brian Gaeke82d82772003-09-03 20:34:19 +000042
Chris Lattner836f6752002-12-24 00:01:22 +000043 /// run - Start execution with the specified function and arguments.
44 ///
Brian Gaeke70975ee2003-09-05 18:42:01 +000045 virtual GenericValue run(Function *F,
46 const std::vector<GenericValue> &ArgValues);
Chris Lattner836f6752002-12-24 00:01:22 +000047
Chris Lattner0d448c02003-01-13 01:00:48 +000048 /// getPointerToNamedFunction - This method returns the address of the
49 /// specified function by using the dlsym function call. As such it is only
50 /// useful for resolving library symbols, not code generated symbols.
51 ///
52 void *getPointerToNamedFunction(const std::string &Name);
53
Chris Lattnerc309a762003-05-08 21:34:11 +000054 // CompilationCallback - Invoked the first time that a call site is found,
55 // which causes lazy compilation of the target function.
56 //
57 static void CompilationCallback();
Chris Lattner22080f92003-05-14 13:53:40 +000058
59 /// runAtExitHandlers - Before exiting the program, at_exit functions must be
60 /// called. This method calls them.
61 ///
62 static void runAtExitHandlers();
63
Chris Lattnerbba1b6d2003-06-01 23:24:36 +000064 /// getPointerToFunction - This returns the address of the specified function,
65 /// compiling it if necessary.
Brian Gaeke55c0f022003-10-17 18:27:12 +000066 ///
Brian Gaekec227c1f2003-08-13 18:16:50 +000067 void *getPointerToFunction(Function *F);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +000068
Brian Gaeke55c0f022003-10-17 18:27:12 +000069 /// recompileAndRelinkFunction - This method is used to force a function
70 /// which has already been compiled, to be compiled again, possibly
71 /// after it has been modified. Then the entry to the old copy is overwritten
72 /// with a branch to the new copy. If there was no old copy, this acts
73 /// just like VM::getPointerToFunction().
74 ///
75 void *recompileAndRelinkFunction(Function *F);
76
Chris Lattner836f6752002-12-24 00:01:22 +000077private:
Misha Brukman906f5fa2003-06-02 03:23:16 +000078 static MachineCodeEmitter *createEmitter(VM &V);
Chris Lattner836f6752002-12-24 00:01:22 +000079 void setupPassManager();
Brian Gaeke55c0f022003-10-17 18:27:12 +000080 void runJITOnFunction (Function *F);
Chris Lattner836f6752002-12-24 00:01:22 +000081};
82
Brian Gaeked0fde302003-11-11 22:41:34 +000083} // End llvm namespace
84
Chris Lattner836f6752002-12-24 00:01:22 +000085#endif