blob: 6a067fd0542e9e5acb2dc1359a447861db8bfb71 [file] [log] [blame]
Chris Lattner4d326fa2003-12-20 01:46:27 +00001//===-- JIT.cpp - LLVM Just in Time Compiler ------------------------------===//
John Criswellb576c942003-10-20 19:43:21 +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 Lattnerbd199fb2002-12-24 00:01:05 +00009//
Chris Lattner4d326fa2003-12-20 01:46:27 +000010// This tool implements a just-in-time compiler for LLVM, allowing direct
11// execution of LLVM bytecode in an efficient manner.
Chris Lattnerbd199fb2002-12-24 00:01:05 +000012//
13//===----------------------------------------------------------------------===//
14
Chris Lattner4d326fa2003-12-20 01:46:27 +000015#include "JIT.h"
Chris Lattnerc07ed132003-12-20 03:36:47 +000016#include "llvm/DerivedTypes.h"
Chris Lattner4d326fa2003-12-20 01:46:27 +000017#include "llvm/Function.h"
Chris Lattnerc07ed132003-12-20 03:36:47 +000018#include "llvm/GlobalVariable.h"
Misha Brukman0f4f7d92003-10-16 21:19:34 +000019#include "llvm/ModuleProvider.h"
Chris Lattner4d326fa2003-12-20 01:46:27 +000020#include "llvm/CodeGen/MachineCodeEmitter.h"
21#include "llvm/CodeGen/MachineFunction.h"
Brian Gaeke97222942003-09-05 19:39:22 +000022#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000023#include "llvm/Target/TargetMachine.h"
Chris Lattner4d326fa2003-12-20 01:46:27 +000024#include "llvm/Target/TargetJITInfo.h"
Chris Lattnerc07ed132003-12-20 03:36:47 +000025#include "Support/DynamicLinker.h"
Chris Lattnerc19aade2003-12-08 08:06:28 +000026using namespace llvm;
Misha Brukmanabb027c2003-05-27 21:40:39 +000027
Chris Lattner4d326fa2003-12-20 01:46:27 +000028JIT::JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji)
Chris Lattner1e60a912003-12-20 01:22:19 +000029 : ExecutionEngine(MP), TM(tm), TJI(tji), PM(MP) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +000030 setTargetData(TM.getTargetData());
Misha Brukmanabb027c2003-05-27 21:40:39 +000031
32 // Initialize MCE
Misha Brukman906f5fa2003-06-02 03:23:16 +000033 MCE = createEmitter(*this);
Chris Lattner1e60a912003-12-20 01:22:19 +000034
Chris Lattner4d326fa2003-12-20 01:46:27 +000035 // Compile LLVM Code down to machine code in the intermediate representation
36 TJI.addPassesToJITCompile(PM);
37
38 // Turn the machine code intermediate representation into bytes in memory that
39 // may be executed.
40 if (TM.addPassesToEmitMachineCode(PM, *MCE)) {
41 std::cerr << "lli: target '" << TM.getName()
42 << "' doesn't support machine code emission!\n";
43 abort();
44 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +000045}
46
Chris Lattner4d326fa2003-12-20 01:46:27 +000047JIT::~JIT() {
48 delete MCE;
49 delete &TM;
50}
51
Brian Gaeke70975ee2003-09-05 18:42:01 +000052/// run - Start execution with the specified function and arguments.
Chris Lattner05a1a302003-08-21 21:32:12 +000053///
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000054GenericValue JIT::runFunction(Function *F,
55 const std::vector<GenericValue> &ArgValues) {
Brian Gaeke70975ee2003-09-05 18:42:01 +000056 assert (F && "Function *F was null at entry to run()");
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000057 GenericValue rv;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000058
Chris Lattnerff0f1bb2003-12-26 06:13:47 +000059 if (ArgValues.size() == 3) {
60 int (*PF)(int, char **, const char **) =
61 (int(*)(int, char **, const char **))getPointerToFunction(F);
62 assert(PF && "Pointer to fn's code was null after getPointerToFunction");
63
64 // Call the function.
65 int ExitCode = PF(ArgValues[0].IntVal, (char **) GVTOP (ArgValues[1]),
66 (const char **) GVTOP (ArgValues[2]));
67
68 rv.IntVal = ExitCode;
69 } else {
70 // FIXME: This code should handle a couple of common cases efficiently, but
71 // it should also implement the general case by code-gening a new anonymous
72 // nullary function to call.
73 assert(ArgValues.size() == 1);
74 void (*PF)(int) = (void(*)(int))getPointerToFunction(F);
75 assert(PF && "Pointer to fn's code was null after getPointerToFunction");
76 PF(ArgValues[0].IntVal);
77 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +000078
Brian Gaeke70975ee2003-09-05 18:42:01 +000079 return rv;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000080}
Chris Lattner4d326fa2003-12-20 01:46:27 +000081
82/// runJITOnFunction - Run the FunctionPassManager full of
83/// just-in-time compilation passes on F, hopefully filling in
84/// GlobalAddress[F] with the address of F's machine code.
85///
86void JIT::runJITOnFunction(Function *F) {
87 static bool isAlreadyCodeGenerating = false;
88 assert(!isAlreadyCodeGenerating && "Error: Recursive compilation detected!");
89
90 // JIT the function
91 isAlreadyCodeGenerating = true;
92 PM.run(*F);
93 isAlreadyCodeGenerating = false;
Chris Lattnerc07ed132003-12-20 03:36:47 +000094
95 // If the function referred to a global variable that had not yet been
96 // emitted, it allocates memory for the global, but doesn't emit it yet. Emit
97 // all of these globals now.
98 while (!PendingGlobals.empty()) {
99 const GlobalVariable *GV = PendingGlobals.back();
100 PendingGlobals.pop_back();
101 EmitGlobalVariable(GV);
102 }
Chris Lattner4d326fa2003-12-20 01:46:27 +0000103}
104
105/// getPointerToFunction - This method is used to get the address of the
106/// specified function, compiling it if neccesary.
107///
108void *JIT::getPointerToFunction(Function *F) {
Chris Lattnerc07ed132003-12-20 03:36:47 +0000109 if (void *Addr = getPointerToGlobalIfAvailable(F))
110 return Addr; // Check if function already code gen'd
Chris Lattner4d326fa2003-12-20 01:46:27 +0000111
112 // Make sure we read in the function if it exists in this Module
113 MP->materializeFunction(F);
114
Chris Lattnerc07ed132003-12-20 03:36:47 +0000115 if (F->isExternal()) {
116 void *Addr = getPointerToNamedFunction(F->getName());
117 addGlobalMapping(F, Addr);
118 return Addr;
119 }
Chris Lattner4d326fa2003-12-20 01:46:27 +0000120
121 runJITOnFunction(F);
Chris Lattnerc07ed132003-12-20 03:36:47 +0000122
123 void *Addr = getPointerToGlobalIfAvailable(F);
Chris Lattner4d326fa2003-12-20 01:46:27 +0000124 assert(Addr && "Code generation didn't add function to GlobalAddress table!");
125 return Addr;
126}
127
128// getPointerToFunctionOrStub - If the specified function has been
129// code-gen'd, return a pointer to the function. If not, compile it, or use
130// a stub to implement lazy compilation if available.
131//
132void *JIT::getPointerToFunctionOrStub(Function *F) {
133 // If we have already code generated the function, just return the address.
Chris Lattnerc07ed132003-12-20 03:36:47 +0000134 if (void *Addr = getPointerToGlobalIfAvailable(F))
135 return Addr;
Chris Lattner4d326fa2003-12-20 01:46:27 +0000136
137 // If the target supports "stubs" for functions, get a stub now.
138 if (void *Ptr = TJI.getJITStubForFunction(F, *MCE))
139 return Ptr;
140
141 // Otherwise, if the target doesn't support it, just codegen the function.
142 return getPointerToFunction(F);
143}
144
Chris Lattnerc07ed132003-12-20 03:36:47 +0000145/// getOrEmitGlobalVariable - Return the address of the specified global
146/// variable, possibly emitting it to memory if needed. This is used by the
147/// Emitter.
148void *JIT::getOrEmitGlobalVariable(const GlobalVariable *GV) {
149 void *Ptr = getPointerToGlobalIfAvailable(GV);
150 if (Ptr) return Ptr;
151
152 // If the global is external, just remember the address.
153 if (GV->isExternal()) {
154 Ptr = GetAddressOfSymbol(GV->getName().c_str());
155 if (Ptr == 0) {
156 std::cerr << "Could not resolve external global address: "
157 << GV->getName() << "\n";
158 abort();
159 }
160 } else {
161 // If the global hasn't been emitted to memory yet, allocate space. We will
162 // actually initialize the global after current function has finished
163 // compilation.
164 Ptr =new char[getTargetData().getTypeSize(GV->getType()->getElementType())];
165 PendingGlobals.push_back(GV);
166 }
167 addGlobalMapping(GV, Ptr);
168 return Ptr;
169}
170
171
Chris Lattner4d326fa2003-12-20 01:46:27 +0000172/// recompileAndRelinkFunction - This method is used to force a function
173/// which has already been compiled, to be compiled again, possibly
174/// after it has been modified. Then the entry to the old copy is overwritten
175/// with a branch to the new copy. If there was no old copy, this acts
176/// just like JIT::getPointerToFunction().
177///
178void *JIT::recompileAndRelinkFunction(Function *F) {
Chris Lattnerc07ed132003-12-20 03:36:47 +0000179 void *OldAddr = getPointerToGlobalIfAvailable(F);
Chris Lattner4d326fa2003-12-20 01:46:27 +0000180
Chris Lattnerc07ed132003-12-20 03:36:47 +0000181 // If it's not already compiled there is no reason to patch it up.
182 if (OldAddr == 0) { return getPointerToFunction(F); }
Chris Lattner4d326fa2003-12-20 01:46:27 +0000183
Chris Lattnerc07ed132003-12-20 03:36:47 +0000184 // Delete the old function mapping.
185 addGlobalMapping(F, 0);
186
Chris Lattnerc07ed132003-12-20 03:36:47 +0000187 // Recodegen the function
Chris Lattner4d326fa2003-12-20 01:46:27 +0000188 runJITOnFunction(F);
Chris Lattnerc07ed132003-12-20 03:36:47 +0000189
190 // Update state, forward the old function to the new function.
191 void *Addr = getPointerToGlobalIfAvailable(F);
Chris Lattner4d326fa2003-12-20 01:46:27 +0000192 assert(Addr && "Code generation didn't add function to GlobalAddress table!");
193 TJI.replaceMachineCodeForFunction(OldAddr, Addr);
194 return Addr;
195}