blob: ba1ecdf31a04d22cb36766fec212076b6d576b69 [file] [log] [blame]
Chris Lattner6701a862003-05-14 13:26:47 +00001//===-- VM.cpp - LLVM Just in Time Compiler -------------------------------===//
Chris Lattnerbd199fb2002-12-24 00:01:05 +00002//
3// This tool implements a just-in-time compiler for LLVM, allowing direct
4// execution of LLVM bytecode in an efficient manner.
5//
6//===----------------------------------------------------------------------===//
7
8#include "VM.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +00009#include "llvm/Function.h"
Misha Brukman0f4f7d92003-10-16 21:19:34 +000010#include "llvm/ModuleProvider.h"
11#include "llvm/CodeGen/MachineCodeEmitter.h"
12#include "llvm/Target/TargetMachine.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000013
14VM::~VM() {
15 delete MCE;
16 delete &TM;
17}
18
19/// setupPassManager - Initialize the VM PassManager object with all of the
20/// passes needed for the target to generate code.
21///
22void VM::setupPassManager() {
23 // Compile LLVM Code down to machine code in the intermediate representation
24 if (TM.addPassesToJITCompile(PM)) {
25 std::cerr << "lli: target '" << TM.getName()
26 << "' doesn't support JIT compilation!\n";
27 abort();
28 }
29
30 // Turn the machine code intermediate representation into bytes in memory that
31 // may be executed.
32 //
33 if (TM.addPassesToEmitMachineCode(PM, *MCE)) {
34 std::cerr << "lli: target '" << TM.getName()
35 << "' doesn't support machine code emission!\n";
36 abort();
37 }
38}
39
Brian Gaekecd64ddf2003-10-17 18:27:00 +000040/// runJITOnFunction - Run the FunctionPassManager full of
41/// just-in-time compilation passes on F, hopefully filling in
42/// GlobalAddress[F] with the address of F's machine code.
43///
44void VM::runJITOnFunction (Function *F) {
45 static bool isAlreadyCodeGenerating = false;
46 assert(!isAlreadyCodeGenerating && "ERROR: RECURSIVE COMPILATION DETECTED!");
47
48 // JIT the function
49 isAlreadyCodeGenerating = true;
50 PM.run(*F);
51 isAlreadyCodeGenerating = false;
52}
53
Chris Lattnerbd199fb2002-12-24 00:01:05 +000054/// getPointerToFunction - This method is used to get the address of the
55/// specified function, compiling it if neccesary.
56///
Brian Gaeke71d84782003-08-13 18:16:34 +000057void *VM::getPointerToFunction(Function *F) {
Brian Gaekecd64ddf2003-10-17 18:27:00 +000058 void *&Addr = GlobalAddress[F]; // Check if function already code gen'd
Chris Lattnerbd199fb2002-12-24 00:01:05 +000059 if (Addr) return Addr;
60
Misha Brukman005e5e92003-10-14 21:37:41 +000061 // Make sure we read in the function if it exists in this Module
62 MP->materializeFunction(F);
63
Chris Lattner0d448c02003-01-13 01:00:48 +000064 if (F->isExternal())
65 return Addr = getPointerToNamedFunction(F->getName());
Chris Lattnerbd199fb2002-12-24 00:01:05 +000066
Brian Gaekecd64ddf2003-10-17 18:27:00 +000067 runJITOnFunction (F);
Chris Lattnerbd199fb2002-12-24 00:01:05 +000068 assert(Addr && "Code generation didn't add function to GlobalAddress table!");
69 return Addr;
70}
Brian Gaekecd64ddf2003-10-17 18:27:00 +000071
72/// recompileAndRelinkFunction - This method is used to force a function
73/// which has already been compiled, to be compiled again, possibly
74/// after it has been modified. Then the entry to the old copy is overwritten
75/// with a branch to the new copy. If there was no old copy, this acts
76/// just like VM::getPointerToFunction().
77///
78void *VM::recompileAndRelinkFunction(Function *F) {
79 void *&Addr = GlobalAddress[F]; // Check if function already code gen'd
80
81 // If it's not already compiled (this is kind of weird) there is no
82 // reason to patch it up.
83 if (!Addr) { return getPointerToFunction (F); }
84
85 void *OldAddr = Addr;
86 Addr = 0;
87 runJITOnFunction (F);
88 assert(Addr && "Code generation didn't add function to GlobalAddress table!");
89 TM.replaceMachineCodeForFunction (OldAddr, Addr);
90 return Addr;
91}