blob: 05134019aa441a42b2b1040b7fd00370f83ddd16 [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"
Chris Lattner61612df2003-12-20 01:45:17 +000017#include "JIT/JIT.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"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000022#include "llvm/ADT/Statistic.h"
Chris Lattner8f7f71b2004-06-20 07:46:18 +000023#include "llvm/CodeGen/IntrinsicLowering.h"
Misha Brukman19684162003-10-16 21:18:05 +000024#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000025#include "llvm/ExecutionEngine/GenericValue.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000026#include "llvm/Support/Debug.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000027#include "llvm/System/DynamicLibrary.h"
28#include "llvm/Target/TargetData.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");
Chris Lattner24b0a182003-12-20 02:45:37 +000033 Statistic<> NumGlobals ("lli", "Number of global vars initialized");
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000034}
Chris Lattnerbd199fb2002-12-24 00:01:05 +000035
Misha Brukman19684162003-10-16 21:18:05 +000036ExecutionEngine::ExecutionEngine(ModuleProvider *P) :
37 CurMod(*P->getModule()), MP(P) {
38 assert(P && "ModuleProvider is null?");
39}
40
41ExecutionEngine::ExecutionEngine(Module *M) : CurMod(*M), MP(0) {
Misha Brukman05701572003-10-17 18:31:59 +000042 assert(M && "Module is null?");
Misha Brukman19684162003-10-16 21:18:05 +000043}
44
Brian Gaeke8e539482003-09-04 22:57:27 +000045ExecutionEngine::~ExecutionEngine() {
Misha Brukman7b2b40f2003-10-14 21:36:31 +000046 delete MP;
Brian Gaeke8e539482003-09-04 22:57:27 +000047}
48
Chris Lattner55d86482003-12-31 20:21:04 +000049/// getGlobalValueAtAddress - Return the LLVM global value object that starts
50/// at the specified address.
51///
52const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
53 // If we haven't computed the reverse mapping yet, do so first.
54 if (GlobalAddressReverseMap.empty()) {
55 for (std::map<const GlobalValue*, void *>::iterator I =
56 GlobalAddressMap.begin(), E = GlobalAddressMap.end(); I != E; ++I)
57 GlobalAddressReverseMap.insert(std::make_pair(I->second, I->first));
58 }
59
60 std::map<void *, const GlobalValue*>::iterator I =
61 GlobalAddressReverseMap.find(Addr);
62 return I != GlobalAddressReverseMap.end() ? I->second : 0;
63}
Chris Lattner87f03102003-12-26 06:50:30 +000064
65// CreateArgv - Turn a vector of strings into a nice argv style array of
66// pointers to null terminated strings.
67//
68static void *CreateArgv(ExecutionEngine *EE,
69 const std::vector<std::string> &InputArgv) {
70 unsigned PtrSize = EE->getTargetData().getPointerSize();
71 char *Result = new char[(InputArgv.size()+1)*PtrSize];
72
73 DEBUG(std::cerr << "ARGV = " << (void*)Result << "\n");
74 const Type *SBytePtr = PointerType::get(Type::SByteTy);
75
76 for (unsigned i = 0; i != InputArgv.size(); ++i) {
77 unsigned Size = InputArgv[i].size()+1;
78 char *Dest = new char[Size];
79 DEBUG(std::cerr << "ARGV[" << i << "] = " << (void*)Dest << "\n");
80
81 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
82 Dest[Size-1] = 0;
83
84 // Endian safe: Result[i] = (PointerTy)Dest;
85 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i*PtrSize),
86 SBytePtr);
87 }
88
89 // Null terminate it
90 EE->StoreValueToMemory(PTOGV(0),
91 (GenericValue*)(Result+InputArgv.size()*PtrSize),
92 SBytePtr);
93 return Result;
94}
95
96/// runFunctionAsMain - This is a helper function which wraps runFunction to
97/// handle the common task of starting up main with the specified argc, argv,
98/// and envp parameters.
99int ExecutionEngine::runFunctionAsMain(Function *Fn,
100 const std::vector<std::string> &argv,
101 const char * const * envp) {
102 std::vector<GenericValue> GVArgs;
103 GenericValue GVArgc;
104 GVArgc.IntVal = argv.size();
Chris Lattnerf24d0992004-08-16 01:05:35 +0000105 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
106 if (NumArgs) {
107 GVArgs.push_back(GVArgc); // Arg #0 = argc.
108 if (NumArgs > 1) {
109 GVArgs.push_back(PTOGV(CreateArgv(this, argv))); // Arg #1 = argv.
110 assert(((char **)GVTOP(GVArgs[1]))[0] &&
111 "argv[0] was null after CreateArgv");
112 if (NumArgs > 2) {
113 std::vector<std::string> EnvVars;
114 for (unsigned i = 0; envp[i]; ++i)
115 EnvVars.push_back(envp[i]);
116 GVArgs.push_back(PTOGV(CreateArgv(this, EnvVars))); // Arg #2 = envp.
117 }
118 }
119 }
Chris Lattner87f03102003-12-26 06:50:30 +0000120 return runFunction(Fn, GVArgs).IntVal;
121}
122
123
124
Misha Brukman19684162003-10-16 21:18:05 +0000125/// If possible, create a JIT, unless the caller specifically requests an
126/// Interpreter or there's an error. If even an Interpreter cannot be created,
127/// NULL is returned.
Misha Brukman4afac182003-10-10 17:45:12 +0000128///
Misha Brukman7b2b40f2003-10-14 21:36:31 +0000129ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
Chris Lattner73011782003-12-28 09:44:37 +0000130 bool ForceInterpreter,
131 IntrinsicLowering *IL) {
Brian Gaeke82d82772003-09-03 20:34:19 +0000132 ExecutionEngine *EE = 0;
133
Chris Lattner73011782003-12-28 09:44:37 +0000134 // Unless the interpreter was explicitly selected, try making a JIT.
Brian Gaeke20a277e2003-10-24 19:58:38 +0000135 if (!ForceInterpreter)
Chris Lattner73011782003-12-28 09:44:37 +0000136 EE = JIT::create(MP, IL);
Brian Gaeke82d82772003-09-03 20:34:19 +0000137
138 // If we can't make a JIT, make an interpreter instead.
Chris Lattner338733f2004-02-01 01:07:25 +0000139 if (EE == 0) {
140 try {
141 Module *M = MP->materializeModule();
142 try {
143 EE = Interpreter::create(M, IL);
144 } catch (...) {
145 std::cerr << "Error creating the interpreter!\n";
146 }
Reid Spencere2947532004-07-07 21:01:38 +0000147 } catch (std::string& errmsg) {
148 std::cerr << "Error reading the bytecode file: " << errmsg << "\n";
Chris Lattner338733f2004-02-01 01:07:25 +0000149 } catch (...) {
150 std::cerr << "Error reading the bytecode file!\n";
151 }
Misha Brukman19684162003-10-16 21:18:05 +0000152 }
Chris Lattner73011782003-12-28 09:44:37 +0000153
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000154 if (EE == 0)
155 delete IL;
156 else
157 // Make sure we can resolve symbols in the program as well. The zero arg
158 // to the function tells DynamicLibrary to load the program, not a library.
159 sys::DynamicLibrary::LoadLibraryPermanently(0);
160
Brian Gaeke82d82772003-09-03 20:34:19 +0000161 return EE;
162}
163
Misha Brukman4afac182003-10-10 17:45:12 +0000164/// getPointerToGlobal - This returns the address of the specified global
165/// value. This may involve code generation if it's a function.
166///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000167void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000168 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000169 return getPointerToFunction(F);
170
Chris Lattner55d86482003-12-31 20:21:04 +0000171 assert(GlobalAddressMap[GV] && "Global hasn't had an address allocated yet?");
172 return GlobalAddressMap[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000173}
174
Misha Brukman4afac182003-10-10 17:45:12 +0000175/// FIXME: document
176///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000177GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
178 GenericValue Result;
Chris Lattner6f335f92004-10-26 05:35:14 +0000179 if (isa<UndefValue>(C)) return Result;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000180
Chris Lattner9a231222003-05-14 17:51:49 +0000181 if (ConstantExpr *CE = const_cast<ConstantExpr*>(dyn_cast<ConstantExpr>(C))) {
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000182 switch (CE->getOpcode()) {
183 case Instruction::GetElementPtr: {
Chris Lattner9a231222003-05-14 17:51:49 +0000184 Result = getConstantValue(CE->getOperand(0));
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000185 std::vector<Value*> Indexes(CE->op_begin()+1, CE->op_end());
186 uint64_t Offset =
187 TD->getIndexedOffset(CE->getOperand(0)->getType(), Indexes);
188
189 Result.LongVal += Offset;
190 return Result;
191 }
Chris Lattner9a231222003-05-14 17:51:49 +0000192 case Instruction::Cast: {
193 // We only need to handle a few cases here. Almost all casts will
194 // automatically fold, just the ones involving pointers won't.
195 //
196 Constant *Op = CE->getOperand(0);
Chris Lattner7d1bd332004-03-16 08:38:56 +0000197 GenericValue GV = getConstantValue(Op);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000198
Chris Lattner9a231222003-05-14 17:51:49 +0000199 // Handle cast of pointer to pointer...
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000200 if (Op->getType()->getTypeID() == C->getType()->getTypeID())
Chris Lattner7d1bd332004-03-16 08:38:56 +0000201 return GV;
Chris Lattner9a231222003-05-14 17:51:49 +0000202
Chris Lattner74cf8192003-08-18 17:23:40 +0000203 // Handle a cast of pointer to any integral type...
Chris Lattnerc88a4ea2003-08-18 17:33:15 +0000204 if (isa<PointerType>(Op->getType()) && C->getType()->isIntegral())
Chris Lattner7d1bd332004-03-16 08:38:56 +0000205 return GV;
Chris Lattner74cf8192003-08-18 17:23:40 +0000206
Chris Lattner7d1bd332004-03-16 08:38:56 +0000207 // Handle cast of integer to a pointer...
208 if (isa<PointerType>(C->getType()) && Op->getType()->isIntegral())
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000209 switch (Op->getType()->getTypeID()) {
Chris Lattner7d1bd332004-03-16 08:38:56 +0000210 case Type::BoolTyID: return PTOGV((void*)(uintptr_t)GV.BoolVal);
211 case Type::SByteTyID: return PTOGV((void*)( intptr_t)GV.SByteVal);
212 case Type::UByteTyID: return PTOGV((void*)(uintptr_t)GV.UByteVal);
213 case Type::ShortTyID: return PTOGV((void*)( intptr_t)GV.ShortVal);
214 case Type::UShortTyID: return PTOGV((void*)(uintptr_t)GV.UShortVal);
215 case Type::IntTyID: return PTOGV((void*)( intptr_t)GV.IntVal);
216 case Type::UIntTyID: return PTOGV((void*)(uintptr_t)GV.UIntVal);
217 case Type::LongTyID: return PTOGV((void*)( intptr_t)GV.LongVal);
218 case Type::ULongTyID: return PTOGV((void*)(uintptr_t)GV.ULongVal);
219 default: assert(0 && "Unknown integral type!");
220 }
Chris Lattner9a231222003-05-14 17:51:49 +0000221 break;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000222 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000223
Chris Lattner9a231222003-05-14 17:51:49 +0000224 case Instruction::Add:
Chris Lattner5f90cb82004-07-11 08:01:11 +0000225 switch (CE->getOperand(0)->getType()->getTypeID()) {
226 default: assert(0 && "Bad add type!"); abort();
227 case Type::LongTyID:
228 case Type::ULongTyID:
Chris Lattner6b2125c2003-05-14 17:53:49 +0000229 Result.LongVal = getConstantValue(CE->getOperand(0)).LongVal +
230 getConstantValue(CE->getOperand(1)).LongVal;
Chris Lattner9a231222003-05-14 17:51:49 +0000231 break;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000232 case Type::IntTyID:
233 case Type::UIntTyID:
234 Result.IntVal = getConstantValue(CE->getOperand(0)).IntVal +
235 getConstantValue(CE->getOperand(1)).IntVal;
236 break;
237 case Type::ShortTyID:
238 case Type::UShortTyID:
239 Result.ShortVal = getConstantValue(CE->getOperand(0)).ShortVal +
240 getConstantValue(CE->getOperand(1)).ShortVal;
241 break;
242 case Type::SByteTyID:
243 case Type::UByteTyID:
244 Result.SByteVal = getConstantValue(CE->getOperand(0)).SByteVal +
245 getConstantValue(CE->getOperand(1)).SByteVal;
246 break;
247 case Type::FloatTyID:
248 Result.FloatVal = getConstantValue(CE->getOperand(0)).FloatVal +
249 getConstantValue(CE->getOperand(1)).FloatVal;
250 break;
251 case Type::DoubleTyID:
252 Result.DoubleVal = getConstantValue(CE->getOperand(0)).DoubleVal +
253 getConstantValue(CE->getOperand(1)).DoubleVal;
254 break;
255 }
Chris Lattner9a231222003-05-14 17:51:49 +0000256 return Result;
Chris Lattner9a231222003-05-14 17:51:49 +0000257 default:
258 break;
259 }
260 std::cerr << "ConstantExpr not handled as global var init: " << *CE << "\n";
261 abort();
262 }
263
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000264 switch (C->getType()->getTypeID()) {
Chris Lattner813c8152005-01-08 20:13:19 +0000265#define GET_CONST_VAL(TY, CTY, CLASS) \
266 case Type::TY##TyID: Result.TY##Val = (CTY)cast<CLASS>(C)->getValue(); break
267 GET_CONST_VAL(Bool , bool , ConstantBool);
268 GET_CONST_VAL(UByte , unsigned char , ConstantUInt);
269 GET_CONST_VAL(SByte , signed char , ConstantSInt);
270 GET_CONST_VAL(UShort , unsigned short, ConstantUInt);
271 GET_CONST_VAL(Short , signed short , ConstantSInt);
272 GET_CONST_VAL(UInt , unsigned int , ConstantUInt);
273 GET_CONST_VAL(Int , signed int , ConstantSInt);
274 GET_CONST_VAL(ULong , unsigned long , ConstantUInt);
275 GET_CONST_VAL(Long , signed long , ConstantSInt);
276 GET_CONST_VAL(Float , float , ConstantFP);
277 GET_CONST_VAL(Double , double , ConstantFP);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000278#undef GET_CONST_VAL
279 case Type::PointerTyID:
Reid Spencer40cf2f92004-07-18 00:41:27 +0000280 if (isa<ConstantPointerNull>(C))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000281 Result.PointerVal = 0;
Reid Spencer40cf2f92004-07-18 00:41:27 +0000282 else if (const Function *F = dyn_cast<Function>(C))
283 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
284 else if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
285 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
286 else
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000287 assert(0 && "Unknown constant pointer type!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000288 break;
289 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000290 std::cout << "ERROR: Constant unimp for type: " << *C->getType() << "\n";
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000291 abort();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000292 }
293 return Result;
294}
295
Misha Brukman4afac182003-10-10 17:45:12 +0000296/// FIXME: document
297///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000298void ExecutionEngine::StoreValueToMemory(GenericValue Val, GenericValue *Ptr,
Misha Brukman4afac182003-10-10 17:45:12 +0000299 const Type *Ty) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000300 if (getTargetData().isLittleEndian()) {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000301 switch (Ty->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000302 case Type::BoolTyID:
303 case Type::UByteTyID:
304 case Type::SByteTyID: Ptr->Untyped[0] = Val.UByteVal; break;
305 case Type::UShortTyID:
306 case Type::ShortTyID: Ptr->Untyped[0] = Val.UShortVal & 255;
307 Ptr->Untyped[1] = (Val.UShortVal >> 8) & 255;
308 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000309 Store4BytesLittleEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000310 case Type::FloatTyID:
311 case Type::UIntTyID:
312 case Type::IntTyID: Ptr->Untyped[0] = Val.UIntVal & 255;
313 Ptr->Untyped[1] = (Val.UIntVal >> 8) & 255;
314 Ptr->Untyped[2] = (Val.UIntVal >> 16) & 255;
315 Ptr->Untyped[3] = (Val.UIntVal >> 24) & 255;
316 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000317 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattner2be50792003-04-23 20:41:01 +0000318 goto Store4BytesLittleEndian;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000319 case Type::DoubleTyID:
320 case Type::ULongTyID:
Chris Lattner813c8152005-01-08 20:13:19 +0000321 case Type::LongTyID:
322 Ptr->Untyped[0] = (unsigned char)(Val.ULongVal );
323 Ptr->Untyped[1] = (unsigned char)(Val.ULongVal >> 8);
324 Ptr->Untyped[2] = (unsigned char)(Val.ULongVal >> 16);
325 Ptr->Untyped[3] = (unsigned char)(Val.ULongVal >> 24);
326 Ptr->Untyped[4] = (unsigned char)(Val.ULongVal >> 32);
327 Ptr->Untyped[5] = (unsigned char)(Val.ULongVal >> 40);
328 Ptr->Untyped[6] = (unsigned char)(Val.ULongVal >> 48);
329 Ptr->Untyped[7] = (unsigned char)(Val.ULongVal >> 56);
330 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000331 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000332 std::cout << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000333 }
334 } else {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000335 switch (Ty->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000336 case Type::BoolTyID:
337 case Type::UByteTyID:
338 case Type::SByteTyID: Ptr->Untyped[0] = Val.UByteVal; break;
339 case Type::UShortTyID:
340 case Type::ShortTyID: Ptr->Untyped[1] = Val.UShortVal & 255;
341 Ptr->Untyped[0] = (Val.UShortVal >> 8) & 255;
342 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000343 Store4BytesBigEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000344 case Type::FloatTyID:
345 case Type::UIntTyID:
346 case Type::IntTyID: Ptr->Untyped[3] = Val.UIntVal & 255;
347 Ptr->Untyped[2] = (Val.UIntVal >> 8) & 255;
348 Ptr->Untyped[1] = (Val.UIntVal >> 16) & 255;
349 Ptr->Untyped[0] = (Val.UIntVal >> 24) & 255;
350 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000351 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattner2be50792003-04-23 20:41:01 +0000352 goto Store4BytesBigEndian;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000353 case Type::DoubleTyID:
354 case Type::ULongTyID:
Chris Lattner813c8152005-01-08 20:13:19 +0000355 case Type::LongTyID:
356 Ptr->Untyped[7] = (unsigned char)(Val.ULongVal );
357 Ptr->Untyped[6] = (unsigned char)(Val.ULongVal >> 8);
358 Ptr->Untyped[5] = (unsigned char)(Val.ULongVal >> 16);
359 Ptr->Untyped[4] = (unsigned char)(Val.ULongVal >> 24);
360 Ptr->Untyped[3] = (unsigned char)(Val.ULongVal >> 32);
361 Ptr->Untyped[2] = (unsigned char)(Val.ULongVal >> 40);
362 Ptr->Untyped[1] = (unsigned char)(Val.ULongVal >> 48);
363 Ptr->Untyped[0] = (unsigned char)(Val.ULongVal >> 56);
364 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000365 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000366 std::cout << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000367 }
368 }
369}
370
Misha Brukman4afac182003-10-10 17:45:12 +0000371/// FIXME: document
372///
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000373GenericValue ExecutionEngine::LoadValueFromMemory(GenericValue *Ptr,
374 const Type *Ty) {
375 GenericValue Result;
376 if (getTargetData().isLittleEndian()) {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000377 switch (Ty->getTypeID()) {
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000378 case Type::BoolTyID:
379 case Type::UByteTyID:
380 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
381 case Type::UShortTyID:
382 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[0] |
383 ((unsigned)Ptr->Untyped[1] << 8);
384 break;
385 Load4BytesLittleEndian:
386 case Type::FloatTyID:
387 case Type::UIntTyID:
388 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[0] |
389 ((unsigned)Ptr->Untyped[1] << 8) |
390 ((unsigned)Ptr->Untyped[2] << 16) |
391 ((unsigned)Ptr->Untyped[3] << 24);
392 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000393 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000394 goto Load4BytesLittleEndian;
395 case Type::DoubleTyID:
396 case Type::ULongTyID:
397 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[0] |
398 ((uint64_t)Ptr->Untyped[1] << 8) |
399 ((uint64_t)Ptr->Untyped[2] << 16) |
400 ((uint64_t)Ptr->Untyped[3] << 24) |
401 ((uint64_t)Ptr->Untyped[4] << 32) |
402 ((uint64_t)Ptr->Untyped[5] << 40) |
403 ((uint64_t)Ptr->Untyped[6] << 48) |
404 ((uint64_t)Ptr->Untyped[7] << 56);
405 break;
406 default:
407 std::cout << "Cannot load value of type " << *Ty << "!\n";
408 abort();
409 }
410 } else {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000411 switch (Ty->getTypeID()) {
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000412 case Type::BoolTyID:
413 case Type::UByteTyID:
414 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
415 case Type::UShortTyID:
416 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[1] |
417 ((unsigned)Ptr->Untyped[0] << 8);
418 break;
419 Load4BytesBigEndian:
420 case Type::FloatTyID:
421 case Type::UIntTyID:
422 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[3] |
423 ((unsigned)Ptr->Untyped[2] << 8) |
424 ((unsigned)Ptr->Untyped[1] << 16) |
425 ((unsigned)Ptr->Untyped[0] << 24);
426 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000427 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000428 goto Load4BytesBigEndian;
429 case Type::DoubleTyID:
430 case Type::ULongTyID:
431 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[7] |
432 ((uint64_t)Ptr->Untyped[6] << 8) |
433 ((uint64_t)Ptr->Untyped[5] << 16) |
434 ((uint64_t)Ptr->Untyped[4] << 24) |
435 ((uint64_t)Ptr->Untyped[3] << 32) |
436 ((uint64_t)Ptr->Untyped[2] << 40) |
437 ((uint64_t)Ptr->Untyped[1] << 48) |
438 ((uint64_t)Ptr->Untyped[0] << 56);
439 break;
440 default:
441 std::cout << "Cannot load value of type " << *Ty << "!\n";
442 abort();
443 }
444 }
445 return Result;
446}
447
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000448// InitializeMemory - Recursive function to apply a Constant value into the
449// specified memory location...
450//
451void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000452 if (isa<UndefValue>(Init)) {
453 return;
454 } else if (Init->getType()->isFirstClassType()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000455 GenericValue Val = getConstantValue(Init);
456 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
457 return;
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000458 } else if (isa<ConstantAggregateZero>(Init)) {
Chris Lattner813c8152005-01-08 20:13:19 +0000459 memset(Addr, 0, (size_t)getTargetData().getTypeSize(Init->getType()));
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000460 return;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000461 }
462
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000463 switch (Init->getType()->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000464 case Type::ArrayTyID: {
465 const ConstantArray *CPA = cast<ConstantArray>(Init);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000466 unsigned ElementSize =
467 getTargetData().getTypeSize(cast<ArrayType>(CPA->getType())->getElementType());
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000468 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
469 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000470 return;
471 }
472
473 case Type::StructTyID: {
474 const ConstantStruct *CPS = cast<ConstantStruct>(Init);
475 const StructLayout *SL =
476 getTargetData().getStructLayout(cast<StructType>(CPS->getType()));
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000477 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
478 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->MemberOffsets[i]);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000479 return;
480 }
481
482 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000483 std::cerr << "Bad Type: " << *Init->getType() << "\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000484 assert(0 && "Unknown constant type to initialize memory with!");
485 }
486}
487
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000488/// EmitGlobals - Emit all of the global variables to memory, storing their
489/// addresses into GlobalAddress. This must make sure to copy the contents of
490/// their initializers into the memory.
491///
492void ExecutionEngine::emitGlobals() {
493 const TargetData &TD = getTargetData();
494
495 // Loop over all of the global variables in the program, allocating the memory
496 // to hold them.
Chris Lattnere4d5c442005-03-15 04:54:21 +0000497 for (Module::const_global_iterator I = getModule().global_begin(), E = getModule().global_end();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000498 I != E; ++I)
499 if (!I->isExternal()) {
500 // Get the type of the global...
501 const Type *Ty = I->getType()->getElementType();
502
503 // Allocate some memory for it!
504 unsigned Size = TD.getTypeSize(Ty);
Chris Lattner24b0a182003-12-20 02:45:37 +0000505 addGlobalMapping(I, new char[Size]);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000506 } else {
Brian Gaeke322cdb22003-10-10 17:02:42 +0000507 // External variable reference. Try to use the dynamic loader to
508 // get a pointer to it.
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000509 if (void *SymAddr = sys::DynamicLibrary::SearchForAddressOfSymbol(
510 I->getName().c_str()))
Chris Lattner55d86482003-12-31 20:21:04 +0000511 addGlobalMapping(I, SymAddr);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000512 else {
513 std::cerr << "Could not resolve external global address: "
514 << I->getName() << "\n";
515 abort();
516 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000517 }
518
519 // Now that all of the globals are set up in memory, loop through them all and
520 // initialize their contents.
Chris Lattnere4d5c442005-03-15 04:54:21 +0000521 for (Module::const_global_iterator I = getModule().global_begin(), E = getModule().global_end();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000522 I != E; ++I)
523 if (!I->isExternal())
Chris Lattner24b0a182003-12-20 02:45:37 +0000524 EmitGlobalVariable(I);
525}
526
527// EmitGlobalVariable - This method emits the specified global variable to the
528// address specified in GlobalAddresses, or allocates new memory if it's not
529// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +0000530void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +0000531 void *GA = getPointerToGlobalIfAvailable(GV);
Chris Lattner23c47242004-02-08 19:33:23 +0000532 DEBUG(std::cerr << "Global '" << GV->getName() << "' -> " << GA << "\n");
533
Chris Lattnerc07ed132003-12-20 03:36:47 +0000534 const Type *ElTy = GV->getType()->getElementType();
Chris Lattner813c8152005-01-08 20:13:19 +0000535 size_t GVSize = (size_t)getTargetData().getTypeSize(ElTy);
Chris Lattner24b0a182003-12-20 02:45:37 +0000536 if (GA == 0) {
537 // If it's not already specified, allocate memory for the global.
Chris Lattnera98c5452004-11-19 08:44:07 +0000538 GA = new char[GVSize];
Chris Lattner55d86482003-12-31 20:21:04 +0000539 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +0000540 }
Chris Lattnerc07ed132003-12-20 03:36:47 +0000541
Chris Lattner24b0a182003-12-20 02:45:37 +0000542 InitializeMemory(GV->getInitializer(), GA);
Chris Lattner813c8152005-01-08 20:13:19 +0000543 NumInitBytes += (unsigned)GVSize;
Chris Lattner24b0a182003-12-20 02:45:37 +0000544 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000545}