blob: 0252595926ecd59ba395b0d8f9c72bc313d737fd [file] [log] [blame]
Misha Brukman4afac182003-10-10 17:45:12 +00001//===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===//
Chris Lattnerbd199fb2002-12-24 00:01:05 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// 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//===----------------------------------------------------------------------===//
9//
Chris Lattnerbd199fb2002-12-24 00:01:05 +000010// This file defines the common interface used by the various execution engine
11// subclasses.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner3785fad2003-08-05 17:00:32 +000015#define DEBUG_TYPE "jit"
Chris Lattnerfd131292003-09-05 20:08:15 +000016#include "Interpreter/Interpreter.h"
Misha Brukman19684162003-10-16 21:18:05 +000017#include "JIT/VM.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000018#include "llvm/Constants.h"
Misha Brukman19684162003-10-16 21:18:05 +000019#include "llvm/DerivedTypes.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000020#include "llvm/Module.h"
Misha Brukman19684162003-10-16 21:18:05 +000021#include "llvm/ModuleProvider.h"
22#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000023#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000024#include "llvm/Target/TargetData.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000025#include "Support/Debug.h"
26#include "Support/Statistic.h"
Brian Gaeke322cdb22003-10-10 17:02:42 +000027#include "Support/DynamicLinker.h"
John Criswell7a73b802003-06-30 21:59:07 +000028#include "Config/dlfcn.h"
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000029using namespace llvm;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000030
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000031namespace {
32 Statistic<> NumInitBytes("lli", "Number of bytes of global vars initialized");
33}
Chris Lattnerbd199fb2002-12-24 00:01:05 +000034
Misha Brukman19684162003-10-16 21:18:05 +000035ExecutionEngine::ExecutionEngine(ModuleProvider *P) :
36 CurMod(*P->getModule()), MP(P) {
37 assert(P && "ModuleProvider is null?");
38}
39
40ExecutionEngine::ExecutionEngine(Module *M) : CurMod(*M), MP(0) {
Misha Brukman05701572003-10-17 18:31:59 +000041 assert(M && "Module is null?");
Misha Brukman19684162003-10-16 21:18:05 +000042}
43
Brian Gaeke8e539482003-09-04 22:57:27 +000044ExecutionEngine::~ExecutionEngine() {
Misha Brukman7b2b40f2003-10-14 21:36:31 +000045 delete MP;
Brian Gaeke8e539482003-09-04 22:57:27 +000046}
47
Misha Brukman19684162003-10-16 21:18:05 +000048/// If possible, create a JIT, unless the caller specifically requests an
49/// Interpreter or there's an error. If even an Interpreter cannot be created,
50/// NULL is returned.
Misha Brukman4afac182003-10-10 17:45:12 +000051///
Misha Brukman7b2b40f2003-10-14 21:36:31 +000052ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
Brian Gaeke20a277e2003-10-24 19:58:38 +000053 bool ForceInterpreter) {
Brian Gaeke82d82772003-09-03 20:34:19 +000054 ExecutionEngine *EE = 0;
55
Brian Gaeke20a277e2003-10-24 19:58:38 +000056 // Unless the interpreter was explicitly selected, make a JIT.
57 if (!ForceInterpreter)
Misha Brukman7b2b40f2003-10-14 21:36:31 +000058 EE = VM::create(MP);
Brian Gaeke82d82772003-09-03 20:34:19 +000059
60 // If we can't make a JIT, make an interpreter instead.
Misha Brukman19684162003-10-16 21:18:05 +000061 try {
62 if (EE == 0)
Brian Gaeke20a277e2003-10-24 19:58:38 +000063 EE = Interpreter::create(MP->materializeModule());
Misha Brukman19684162003-10-16 21:18:05 +000064 } catch (...) {
65 EE = 0;
66 }
Brian Gaeke82d82772003-09-03 20:34:19 +000067 return EE;
68}
69
Misha Brukman4afac182003-10-10 17:45:12 +000070/// getPointerToGlobal - This returns the address of the specified global
71/// value. This may involve code generation if it's a function.
72///
Chris Lattnerbd199fb2002-12-24 00:01:05 +000073void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +000074 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +000075 return getPointerToFunction(F);
76
77 assert(GlobalAddress[GV] && "Global hasn't had an address allocated yet?");
78 return GlobalAddress[GV];
79}
80
Misha Brukman4afac182003-10-10 17:45:12 +000081/// FIXME: document
82///
Chris Lattnerbd199fb2002-12-24 00:01:05 +000083GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
84 GenericValue Result;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +000085
Chris Lattner9a231222003-05-14 17:51:49 +000086 if (ConstantExpr *CE = const_cast<ConstantExpr*>(dyn_cast<ConstantExpr>(C))) {
Chris Lattnerd8c03bf2003-04-23 19:01:49 +000087 switch (CE->getOpcode()) {
88 case Instruction::GetElementPtr: {
Chris Lattner9a231222003-05-14 17:51:49 +000089 Result = getConstantValue(CE->getOperand(0));
Chris Lattnerd8c03bf2003-04-23 19:01:49 +000090 std::vector<Value*> Indexes(CE->op_begin()+1, CE->op_end());
91 uint64_t Offset =
92 TD->getIndexedOffset(CE->getOperand(0)->getType(), Indexes);
93
94 Result.LongVal += Offset;
95 return Result;
96 }
Chris Lattner9a231222003-05-14 17:51:49 +000097 case Instruction::Cast: {
98 // We only need to handle a few cases here. Almost all casts will
99 // automatically fold, just the ones involving pointers won't.
100 //
101 Constant *Op = CE->getOperand(0);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000102
Chris Lattner9a231222003-05-14 17:51:49 +0000103 // Handle cast of pointer to pointer...
104 if (Op->getType()->getPrimitiveID() == C->getType()->getPrimitiveID())
105 return getConstantValue(Op);
106
Chris Lattner74cf8192003-08-18 17:23:40 +0000107 // Handle a cast of pointer to any integral type...
Chris Lattnerc88a4ea2003-08-18 17:33:15 +0000108 if (isa<PointerType>(Op->getType()) && C->getType()->isIntegral())
Chris Lattner9a231222003-05-14 17:51:49 +0000109 return getConstantValue(Op);
Chris Lattner74cf8192003-08-18 17:23:40 +0000110
111 // Handle cast of long to pointer...
112 if (isa<PointerType>(C->getType()) && (Op->getType() == Type::LongTy ||
113 Op->getType() == Type::ULongTy))
114 return getConstantValue(Op);
Chris Lattner9a231222003-05-14 17:51:49 +0000115 break;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000116 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000117
Chris Lattner9a231222003-05-14 17:51:49 +0000118 case Instruction::Add:
Chris Lattner6b2125c2003-05-14 17:53:49 +0000119 if (CE->getOperand(0)->getType() == Type::LongTy ||
120 CE->getOperand(0)->getType() == Type::ULongTy)
121 Result.LongVal = getConstantValue(CE->getOperand(0)).LongVal +
122 getConstantValue(CE->getOperand(1)).LongVal;
Chris Lattner9a231222003-05-14 17:51:49 +0000123 else
124 break;
125 return Result;
126
127 default:
128 break;
129 }
130 std::cerr << "ConstantExpr not handled as global var init: " << *CE << "\n";
131 abort();
132 }
133
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000134 switch (C->getType()->getPrimitiveID()) {
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000135#define GET_CONST_VAL(TY, CLASS) \
136 case Type::TY##TyID: Result.TY##Val = cast<CLASS>(C)->getValue(); break
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000137 GET_CONST_VAL(Bool , ConstantBool);
138 GET_CONST_VAL(UByte , ConstantUInt);
139 GET_CONST_VAL(SByte , ConstantSInt);
140 GET_CONST_VAL(UShort , ConstantUInt);
141 GET_CONST_VAL(Short , ConstantSInt);
142 GET_CONST_VAL(UInt , ConstantUInt);
143 GET_CONST_VAL(Int , ConstantSInt);
144 GET_CONST_VAL(ULong , ConstantUInt);
145 GET_CONST_VAL(Long , ConstantSInt);
146 GET_CONST_VAL(Float , ConstantFP);
147 GET_CONST_VAL(Double , ConstantFP);
148#undef GET_CONST_VAL
149 case Type::PointerTyID:
150 if (isa<ConstantPointerNull>(C)) {
151 Result.PointerVal = 0;
152 } else if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C)){
Chris Lattner38f0eba2003-12-08 08:22:48 +0000153 if (Function *F =
154 const_cast<Function*>(dyn_cast<Function>(CPR->getValue())))
155 Result = PTOGV(getPointerToFunctionOrStub(F));
156 else
157 Result = PTOGV(getPointerToGlobal(CPR->getValue()));
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000158
159 } else {
160 assert(0 && "Unknown constant pointer type!");
161 }
162 break;
163 default:
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000164 std::cout << "ERROR: Constant unimp for type: " << C->getType() << "\n";
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000165 abort();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000166 }
167 return Result;
168}
169
Misha Brukman4afac182003-10-10 17:45:12 +0000170/// FIXME: document
171///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000172void ExecutionEngine::StoreValueToMemory(GenericValue Val, GenericValue *Ptr,
Misha Brukman4afac182003-10-10 17:45:12 +0000173 const Type *Ty) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000174 if (getTargetData().isLittleEndian()) {
175 switch (Ty->getPrimitiveID()) {
176 case Type::BoolTyID:
177 case Type::UByteTyID:
178 case Type::SByteTyID: Ptr->Untyped[0] = Val.UByteVal; break;
179 case Type::UShortTyID:
180 case Type::ShortTyID: Ptr->Untyped[0] = Val.UShortVal & 255;
181 Ptr->Untyped[1] = (Val.UShortVal >> 8) & 255;
182 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000183 Store4BytesLittleEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000184 case Type::FloatTyID:
185 case Type::UIntTyID:
186 case Type::IntTyID: Ptr->Untyped[0] = Val.UIntVal & 255;
187 Ptr->Untyped[1] = (Val.UIntVal >> 8) & 255;
188 Ptr->Untyped[2] = (Val.UIntVal >> 16) & 255;
189 Ptr->Untyped[3] = (Val.UIntVal >> 24) & 255;
190 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000191 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattner2be50792003-04-23 20:41:01 +0000192 goto Store4BytesLittleEndian;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000193 case Type::DoubleTyID:
194 case Type::ULongTyID:
Chris Lattner2be50792003-04-23 20:41:01 +0000195 case Type::LongTyID: Ptr->Untyped[0] = Val.ULongVal & 255;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000196 Ptr->Untyped[1] = (Val.ULongVal >> 8) & 255;
197 Ptr->Untyped[2] = (Val.ULongVal >> 16) & 255;
198 Ptr->Untyped[3] = (Val.ULongVal >> 24) & 255;
199 Ptr->Untyped[4] = (Val.ULongVal >> 32) & 255;
200 Ptr->Untyped[5] = (Val.ULongVal >> 40) & 255;
201 Ptr->Untyped[6] = (Val.ULongVal >> 48) & 255;
202 Ptr->Untyped[7] = (Val.ULongVal >> 56) & 255;
203 break;
204 default:
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000205 std::cout << "Cannot store value of type " << Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000206 }
207 } else {
208 switch (Ty->getPrimitiveID()) {
209 case Type::BoolTyID:
210 case Type::UByteTyID:
211 case Type::SByteTyID: Ptr->Untyped[0] = Val.UByteVal; break;
212 case Type::UShortTyID:
213 case Type::ShortTyID: Ptr->Untyped[1] = Val.UShortVal & 255;
214 Ptr->Untyped[0] = (Val.UShortVal >> 8) & 255;
215 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000216 Store4BytesBigEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000217 case Type::FloatTyID:
218 case Type::UIntTyID:
219 case Type::IntTyID: Ptr->Untyped[3] = Val.UIntVal & 255;
220 Ptr->Untyped[2] = (Val.UIntVal >> 8) & 255;
221 Ptr->Untyped[1] = (Val.UIntVal >> 16) & 255;
222 Ptr->Untyped[0] = (Val.UIntVal >> 24) & 255;
223 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000224 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattner2be50792003-04-23 20:41:01 +0000225 goto Store4BytesBigEndian;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000226 case Type::DoubleTyID:
227 case Type::ULongTyID:
Chris Lattner2be50792003-04-23 20:41:01 +0000228 case Type::LongTyID: Ptr->Untyped[7] = Val.ULongVal & 255;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000229 Ptr->Untyped[6] = (Val.ULongVal >> 8) & 255;
230 Ptr->Untyped[5] = (Val.ULongVal >> 16) & 255;
231 Ptr->Untyped[4] = (Val.ULongVal >> 24) & 255;
232 Ptr->Untyped[3] = (Val.ULongVal >> 32) & 255;
233 Ptr->Untyped[2] = (Val.ULongVal >> 40) & 255;
234 Ptr->Untyped[1] = (Val.ULongVal >> 48) & 255;
235 Ptr->Untyped[0] = (Val.ULongVal >> 56) & 255;
236 break;
237 default:
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000238 std::cout << "Cannot store value of type " << Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000239 }
240 }
241}
242
Misha Brukman4afac182003-10-10 17:45:12 +0000243/// FIXME: document
244///
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000245GenericValue ExecutionEngine::LoadValueFromMemory(GenericValue *Ptr,
246 const Type *Ty) {
247 GenericValue Result;
248 if (getTargetData().isLittleEndian()) {
249 switch (Ty->getPrimitiveID()) {
250 case Type::BoolTyID:
251 case Type::UByteTyID:
252 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
253 case Type::UShortTyID:
254 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[0] |
255 ((unsigned)Ptr->Untyped[1] << 8);
256 break;
257 Load4BytesLittleEndian:
258 case Type::FloatTyID:
259 case Type::UIntTyID:
260 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[0] |
261 ((unsigned)Ptr->Untyped[1] << 8) |
262 ((unsigned)Ptr->Untyped[2] << 16) |
263 ((unsigned)Ptr->Untyped[3] << 24);
264 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000265 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000266 goto Load4BytesLittleEndian;
267 case Type::DoubleTyID:
268 case Type::ULongTyID:
269 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[0] |
270 ((uint64_t)Ptr->Untyped[1] << 8) |
271 ((uint64_t)Ptr->Untyped[2] << 16) |
272 ((uint64_t)Ptr->Untyped[3] << 24) |
273 ((uint64_t)Ptr->Untyped[4] << 32) |
274 ((uint64_t)Ptr->Untyped[5] << 40) |
275 ((uint64_t)Ptr->Untyped[6] << 48) |
276 ((uint64_t)Ptr->Untyped[7] << 56);
277 break;
278 default:
279 std::cout << "Cannot load value of type " << *Ty << "!\n";
280 abort();
281 }
282 } else {
283 switch (Ty->getPrimitiveID()) {
284 case Type::BoolTyID:
285 case Type::UByteTyID:
286 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
287 case Type::UShortTyID:
288 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[1] |
289 ((unsigned)Ptr->Untyped[0] << 8);
290 break;
291 Load4BytesBigEndian:
292 case Type::FloatTyID:
293 case Type::UIntTyID:
294 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[3] |
295 ((unsigned)Ptr->Untyped[2] << 8) |
296 ((unsigned)Ptr->Untyped[1] << 16) |
297 ((unsigned)Ptr->Untyped[0] << 24);
298 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000299 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000300 goto Load4BytesBigEndian;
301 case Type::DoubleTyID:
302 case Type::ULongTyID:
303 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[7] |
304 ((uint64_t)Ptr->Untyped[6] << 8) |
305 ((uint64_t)Ptr->Untyped[5] << 16) |
306 ((uint64_t)Ptr->Untyped[4] << 24) |
307 ((uint64_t)Ptr->Untyped[3] << 32) |
308 ((uint64_t)Ptr->Untyped[2] << 40) |
309 ((uint64_t)Ptr->Untyped[1] << 48) |
310 ((uint64_t)Ptr->Untyped[0] << 56);
311 break;
312 default:
313 std::cout << "Cannot load value of type " << *Ty << "!\n";
314 abort();
315 }
316 }
317 return Result;
318}
319
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000320// InitializeMemory - Recursive function to apply a Constant value into the
321// specified memory location...
322//
323void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
324 if (Init->getType()->isFirstClassType()) {
325 GenericValue Val = getConstantValue(Init);
326 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
327 return;
328 }
329
330 switch (Init->getType()->getPrimitiveID()) {
331 case Type::ArrayTyID: {
332 const ConstantArray *CPA = cast<ConstantArray>(Init);
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000333 const std::vector<Use> &Val = CPA->getValues();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000334 unsigned ElementSize =
335 getTargetData().getTypeSize(cast<ArrayType>(CPA->getType())->getElementType());
336 for (unsigned i = 0; i < Val.size(); ++i)
337 InitializeMemory(cast<Constant>(Val[i].get()), (char*)Addr+i*ElementSize);
338 return;
339 }
340
341 case Type::StructTyID: {
342 const ConstantStruct *CPS = cast<ConstantStruct>(Init);
343 const StructLayout *SL =
344 getTargetData().getStructLayout(cast<StructType>(CPS->getType()));
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000345 const std::vector<Use> &Val = CPS->getValues();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000346 for (unsigned i = 0; i < Val.size(); ++i)
347 InitializeMemory(cast<Constant>(Val[i].get()),
348 (char*)Addr+SL->MemberOffsets[i]);
349 return;
350 }
351
352 default:
353 std::cerr << "Bad Type: " << Init->getType() << "\n";
354 assert(0 && "Unknown constant type to initialize memory with!");
355 }
356}
357
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000358/// EmitGlobals - Emit all of the global variables to memory, storing their
359/// addresses into GlobalAddress. This must make sure to copy the contents of
360/// their initializers into the memory.
361///
362void ExecutionEngine::emitGlobals() {
363 const TargetData &TD = getTargetData();
364
365 // Loop over all of the global variables in the program, allocating the memory
366 // to hold them.
367 for (Module::giterator I = getModule().gbegin(), E = getModule().gend();
368 I != E; ++I)
369 if (!I->isExternal()) {
370 // Get the type of the global...
371 const Type *Ty = I->getType()->getElementType();
372
373 // Allocate some memory for it!
374 unsigned Size = TD.getTypeSize(Ty);
375 GlobalAddress[I] = new char[Size];
376 NumInitBytes += Size;
377
378 DEBUG(std::cerr << "Global '" << I->getName() << "' -> "
Misha Brukman4afac182003-10-10 17:45:12 +0000379 << (void*)GlobalAddress[I] << "\n");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000380 } else {
Brian Gaeke322cdb22003-10-10 17:02:42 +0000381 // External variable reference. Try to use the dynamic loader to
382 // get a pointer to it.
383 if (void *SymAddr = GetAddressOfSymbol(I->getName().c_str()))
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000384 GlobalAddress[I] = SymAddr;
385 else {
386 std::cerr << "Could not resolve external global address: "
387 << I->getName() << "\n";
388 abort();
389 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000390 }
391
392 // Now that all of the globals are set up in memory, loop through them all and
393 // initialize their contents.
394 for (Module::giterator I = getModule().gbegin(), E = getModule().gend();
395 I != E; ++I)
396 if (!I->isExternal())
397 InitializeMemory(I->getInitializer(), GlobalAddress[I]);
398}