blob: b99497fd88be6adf1473729bcc6febb15f4c669f [file] [log] [blame]
Misha Brukman4afac182003-10-10 17:45:12 +00001//===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +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.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00009//
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 Lattnerbd199fb2002-12-24 00:01:05 +000016#include "llvm/Constants.h"
Misha Brukman19684162003-10-16 21:18:05 +000017#include "llvm/DerivedTypes.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000018#include "llvm/Module.h"
Misha Brukman19684162003-10-16 21:18:05 +000019#include "llvm/ModuleProvider.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000020#include "llvm/ADT/Statistic.h"
Misha Brukman19684162003-10-16 21:18:05 +000021#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000022#include "llvm/ExecutionEngine/GenericValue.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/Debug.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000024#include "llvm/System/DynamicLibrary.h"
25#include "llvm/Target/TargetData.h"
Chris Lattner2fe4bb02006-03-22 06:07:50 +000026#include <iostream>
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000027using namespace llvm;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000028
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000029namespace {
30 Statistic<> NumInitBytes("lli", "Number of bytes of global vars initialized");
Chris Lattner24b0a182003-12-20 02:45:37 +000031 Statistic<> NumGlobals ("lli", "Number of global vars initialized");
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000032}
Chris Lattnerbd199fb2002-12-24 00:01:05 +000033
Chris Lattner2fe4bb02006-03-22 06:07:50 +000034ExecutionEngine::EECtorFn ExecutionEngine::JITCtor = 0;
35ExecutionEngine::EECtorFn ExecutionEngine::InterpCtor = 0;
36
Misha Brukmanedf128a2005-04-21 22:36:52 +000037ExecutionEngine::ExecutionEngine(ModuleProvider *P) :
Misha Brukman19684162003-10-16 21:18:05 +000038 CurMod(*P->getModule()), MP(P) {
39 assert(P && "ModuleProvider is null?");
40}
41
42ExecutionEngine::ExecutionEngine(Module *M) : CurMod(*M), MP(0) {
Misha Brukman05701572003-10-17 18:31:59 +000043 assert(M && "Module is null?");
Misha Brukman19684162003-10-16 21:18:05 +000044}
45
Brian Gaeke8e539482003-09-04 22:57:27 +000046ExecutionEngine::~ExecutionEngine() {
Misha Brukman7b2b40f2003-10-14 21:36:31 +000047 delete MP;
Brian Gaeke8e539482003-09-04 22:57:27 +000048}
49
Chris Lattner55d86482003-12-31 20:21:04 +000050/// getGlobalValueAtAddress - Return the LLVM global value object that starts
51/// at the specified address.
52///
53const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
Reid Spenceree448632005-07-12 15:51:55 +000054 MutexGuard locked(lock);
55
Chris Lattner55d86482003-12-31 20:21:04 +000056 // If we haven't computed the reverse mapping yet, do so first.
Reid Spenceree448632005-07-12 15:51:55 +000057 if (state.getGlobalAddressReverseMap(locked).empty()) {
Misha Brukmanedf128a2005-04-21 22:36:52 +000058 for (std::map<const GlobalValue*, void *>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +000059 state.getGlobalAddressMap(locked).begin(), E = state.getGlobalAddressMap(locked).end(); I != E; ++I)
60 state.getGlobalAddressReverseMap(locked).insert(std::make_pair(I->second, I->first));
Chris Lattner55d86482003-12-31 20:21:04 +000061 }
62
63 std::map<void *, const GlobalValue*>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +000064 state.getGlobalAddressReverseMap(locked).find(Addr);
65 return I != state.getGlobalAddressReverseMap(locked).end() ? I->second : 0;
Chris Lattner55d86482003-12-31 20:21:04 +000066}
Chris Lattner87f03102003-12-26 06:50:30 +000067
68// CreateArgv - Turn a vector of strings into a nice argv style array of
69// pointers to null terminated strings.
70//
71static void *CreateArgv(ExecutionEngine *EE,
72 const std::vector<std::string> &InputArgv) {
73 unsigned PtrSize = EE->getTargetData().getPointerSize();
74 char *Result = new char[(InputArgv.size()+1)*PtrSize];
75
76 DEBUG(std::cerr << "ARGV = " << (void*)Result << "\n");
77 const Type *SBytePtr = PointerType::get(Type::SByteTy);
78
79 for (unsigned i = 0; i != InputArgv.size(); ++i) {
80 unsigned Size = InputArgv[i].size()+1;
81 char *Dest = new char[Size];
82 DEBUG(std::cerr << "ARGV[" << i << "] = " << (void*)Dest << "\n");
Misha Brukmanedf128a2005-04-21 22:36:52 +000083
Chris Lattner87f03102003-12-26 06:50:30 +000084 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
85 Dest[Size-1] = 0;
Misha Brukmanedf128a2005-04-21 22:36:52 +000086
Chris Lattner87f03102003-12-26 06:50:30 +000087 // Endian safe: Result[i] = (PointerTy)Dest;
88 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i*PtrSize),
89 SBytePtr);
90 }
91
92 // Null terminate it
93 EE->StoreValueToMemory(PTOGV(0),
94 (GenericValue*)(Result+InputArgv.size()*PtrSize),
95 SBytePtr);
96 return Result;
97}
98
Chris Lattner9ca6cda2006-03-08 18:42:46 +000099
100/// runStaticConstructorsDestructors - This method is used to execute all of
101/// the static constructors or destructors for a module, depending on the
102/// value of isDtors.
103void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
104 const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
105 GlobalVariable *GV = CurMod.getNamedGlobal(Name);
Chris Lattnerb003d762006-04-22 05:02:46 +0000106
107 // If this global has internal linkage, or if it has a use, then it must be
108 // an old-style (llvmgcc3) static ctor with __main linked in and in use. If
109 // this is the case, don't execute any of the global ctors, __main will do it.
110 if (!GV || GV->isExternal() || GV->hasInternalLinkage()) return;
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000111
112 // Should be an array of '{ int, void ()* }' structs. The first value is the
113 // init priority, which we ignore.
114 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
115 if (!InitList) return;
116 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
117 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
118 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
119
120 Constant *FP = CS->getOperand(1);
121 if (FP->isNullValue())
122 return; // Found a null terminator, exit.
123
124 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
125 if (CE->getOpcode() == Instruction::Cast)
126 FP = CE->getOperand(0);
127 if (Function *F = dyn_cast<Function>(FP)) {
128 // Execute the ctor/dtor function!
129 runFunction(F, std::vector<GenericValue>());
130 }
131 }
132}
133
Chris Lattner87f03102003-12-26 06:50:30 +0000134/// runFunctionAsMain - This is a helper function which wraps runFunction to
135/// handle the common task of starting up main with the specified argc, argv,
136/// and envp parameters.
137int ExecutionEngine::runFunctionAsMain(Function *Fn,
138 const std::vector<std::string> &argv,
139 const char * const * envp) {
140 std::vector<GenericValue> GVArgs;
141 GenericValue GVArgc;
142 GVArgc.IntVal = argv.size();
Chris Lattnerf24d0992004-08-16 01:05:35 +0000143 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
144 if (NumArgs) {
145 GVArgs.push_back(GVArgc); // Arg #0 = argc.
146 if (NumArgs > 1) {
147 GVArgs.push_back(PTOGV(CreateArgv(this, argv))); // Arg #1 = argv.
148 assert(((char **)GVTOP(GVArgs[1]))[0] &&
149 "argv[0] was null after CreateArgv");
150 if (NumArgs > 2) {
151 std::vector<std::string> EnvVars;
152 for (unsigned i = 0; envp[i]; ++i)
153 EnvVars.push_back(envp[i]);
154 GVArgs.push_back(PTOGV(CreateArgv(this, EnvVars))); // Arg #2 = envp.
155 }
156 }
157 }
Chris Lattner87f03102003-12-26 06:50:30 +0000158 return runFunction(Fn, GVArgs).IntVal;
159}
160
Misha Brukman19684162003-10-16 21:18:05 +0000161/// If possible, create a JIT, unless the caller specifically requests an
162/// Interpreter or there's an error. If even an Interpreter cannot be created,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000163/// NULL is returned.
Misha Brukman4afac182003-10-10 17:45:12 +0000164///
Misha Brukmanedf128a2005-04-21 22:36:52 +0000165ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
Chris Lattner726c1ef2006-03-23 05:22:51 +0000166 bool ForceInterpreter) {
Brian Gaeke82d82772003-09-03 20:34:19 +0000167 ExecutionEngine *EE = 0;
168
Chris Lattner73011782003-12-28 09:44:37 +0000169 // Unless the interpreter was explicitly selected, try making a JIT.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000170 if (!ForceInterpreter && JITCtor)
Chris Lattner726c1ef2006-03-23 05:22:51 +0000171 EE = JITCtor(MP);
Brian Gaeke82d82772003-09-03 20:34:19 +0000172
173 // If we can't make a JIT, make an interpreter instead.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000174 if (EE == 0 && InterpCtor)
Chris Lattner726c1ef2006-03-23 05:22:51 +0000175 EE = InterpCtor(MP);
Chris Lattner73011782003-12-28 09:44:37 +0000176
Chris Lattner726c1ef2006-03-23 05:22:51 +0000177 if (EE) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000178 // Make sure we can resolve symbols in the program as well. The zero arg
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000179 // to the function tells DynamicLibrary to load the program, not a library.
180 sys::DynamicLibrary::LoadLibraryPermanently(0);
Chris Lattner726c1ef2006-03-23 05:22:51 +0000181 }
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000182
Brian Gaeke82d82772003-09-03 20:34:19 +0000183 return EE;
184}
185
Misha Brukman4afac182003-10-10 17:45:12 +0000186/// getPointerToGlobal - This returns the address of the specified global
187/// value. This may involve code generation if it's a function.
188///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000189void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000190 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000191 return getPointerToFunction(F);
192
Reid Spenceree448632005-07-12 15:51:55 +0000193 MutexGuard locked(lock);
Jeff Cohen68835dd2006-02-07 05:11:57 +0000194 void *p = state.getGlobalAddressMap(locked)[GV];
195 if (p)
196 return p;
197
198 // Global variable might have been added since interpreter started.
199 if (GlobalVariable *GVar =
200 const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
201 EmitGlobalVariable(GVar);
202 else
203 assert("Global hasn't had an address allocated yet!");
Reid Spenceree448632005-07-12 15:51:55 +0000204 return state.getGlobalAddressMap(locked)[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000205}
206
Misha Brukman4afac182003-10-10 17:45:12 +0000207/// FIXME: document
Misha Brukmanedf128a2005-04-21 22:36:52 +0000208///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000209GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
210 GenericValue Result;
Chris Lattner6f335f92004-10-26 05:35:14 +0000211 if (isa<UndefValue>(C)) return Result;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000212
Chris Lattner9a231222003-05-14 17:51:49 +0000213 if (ConstantExpr *CE = const_cast<ConstantExpr*>(dyn_cast<ConstantExpr>(C))) {
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000214 switch (CE->getOpcode()) {
215 case Instruction::GetElementPtr: {
Chris Lattner9a231222003-05-14 17:51:49 +0000216 Result = getConstantValue(CE->getOperand(0));
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000217 std::vector<Value*> Indexes(CE->op_begin()+1, CE->op_end());
218 uint64_t Offset =
219 TD->getIndexedOffset(CE->getOperand(0)->getType(), Indexes);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000220
Chris Lattner3db4b622005-10-23 23:54:56 +0000221 if (getTargetData().getPointerSize() == 4)
222 Result.IntVal += Offset;
223 else
224 Result.LongVal += Offset;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000225 return Result;
226 }
Chris Lattner9a231222003-05-14 17:51:49 +0000227 case Instruction::Cast: {
228 // We only need to handle a few cases here. Almost all casts will
229 // automatically fold, just the ones involving pointers won't.
230 //
231 Constant *Op = CE->getOperand(0);
Chris Lattner7d1bd332004-03-16 08:38:56 +0000232 GenericValue GV = getConstantValue(Op);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000233
Chris Lattner9a231222003-05-14 17:51:49 +0000234 // Handle cast of pointer to pointer...
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000235 if (Op->getType()->getTypeID() == C->getType()->getTypeID())
Chris Lattner7d1bd332004-03-16 08:38:56 +0000236 return GV;
Chris Lattner9a231222003-05-14 17:51:49 +0000237
Chris Lattner74cf8192003-08-18 17:23:40 +0000238 // Handle a cast of pointer to any integral type...
Chris Lattnerc88a4ea2003-08-18 17:33:15 +0000239 if (isa<PointerType>(Op->getType()) && C->getType()->isIntegral())
Chris Lattner7d1bd332004-03-16 08:38:56 +0000240 return GV;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000241
Chris Lattner7d1bd332004-03-16 08:38:56 +0000242 // Handle cast of integer to a pointer...
243 if (isa<PointerType>(C->getType()) && Op->getType()->isIntegral())
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000244 switch (Op->getType()->getTypeID()) {
Chris Lattner7d1bd332004-03-16 08:38:56 +0000245 case Type::BoolTyID: return PTOGV((void*)(uintptr_t)GV.BoolVal);
246 case Type::SByteTyID: return PTOGV((void*)( intptr_t)GV.SByteVal);
247 case Type::UByteTyID: return PTOGV((void*)(uintptr_t)GV.UByteVal);
248 case Type::ShortTyID: return PTOGV((void*)( intptr_t)GV.ShortVal);
249 case Type::UShortTyID: return PTOGV((void*)(uintptr_t)GV.UShortVal);
250 case Type::IntTyID: return PTOGV((void*)( intptr_t)GV.IntVal);
251 case Type::UIntTyID: return PTOGV((void*)(uintptr_t)GV.UIntVal);
252 case Type::LongTyID: return PTOGV((void*)( intptr_t)GV.LongVal);
253 case Type::ULongTyID: return PTOGV((void*)(uintptr_t)GV.ULongVal);
254 default: assert(0 && "Unknown integral type!");
255 }
Chris Lattner9a231222003-05-14 17:51:49 +0000256 break;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000257 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000258
Chris Lattner9a231222003-05-14 17:51:49 +0000259 case Instruction::Add:
Chris Lattner5f90cb82004-07-11 08:01:11 +0000260 switch (CE->getOperand(0)->getType()->getTypeID()) {
261 default: assert(0 && "Bad add type!"); abort();
262 case Type::LongTyID:
263 case Type::ULongTyID:
Chris Lattner6b2125c2003-05-14 17:53:49 +0000264 Result.LongVal = getConstantValue(CE->getOperand(0)).LongVal +
265 getConstantValue(CE->getOperand(1)).LongVal;
Chris Lattner9a231222003-05-14 17:51:49 +0000266 break;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000267 case Type::IntTyID:
268 case Type::UIntTyID:
269 Result.IntVal = getConstantValue(CE->getOperand(0)).IntVal +
270 getConstantValue(CE->getOperand(1)).IntVal;
271 break;
272 case Type::ShortTyID:
273 case Type::UShortTyID:
274 Result.ShortVal = getConstantValue(CE->getOperand(0)).ShortVal +
275 getConstantValue(CE->getOperand(1)).ShortVal;
276 break;
277 case Type::SByteTyID:
278 case Type::UByteTyID:
279 Result.SByteVal = getConstantValue(CE->getOperand(0)).SByteVal +
280 getConstantValue(CE->getOperand(1)).SByteVal;
281 break;
282 case Type::FloatTyID:
283 Result.FloatVal = getConstantValue(CE->getOperand(0)).FloatVal +
284 getConstantValue(CE->getOperand(1)).FloatVal;
285 break;
286 case Type::DoubleTyID:
287 Result.DoubleVal = getConstantValue(CE->getOperand(0)).DoubleVal +
288 getConstantValue(CE->getOperand(1)).DoubleVal;
289 break;
290 }
Chris Lattner9a231222003-05-14 17:51:49 +0000291 return Result;
Chris Lattner9a231222003-05-14 17:51:49 +0000292 default:
293 break;
294 }
295 std::cerr << "ConstantExpr not handled as global var init: " << *CE << "\n";
296 abort();
297 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000298
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000299 switch (C->getType()->getTypeID()) {
Chris Lattner813c8152005-01-08 20:13:19 +0000300#define GET_CONST_VAL(TY, CTY, CLASS) \
301 case Type::TY##TyID: Result.TY##Val = (CTY)cast<CLASS>(C)->getValue(); break
302 GET_CONST_VAL(Bool , bool , ConstantBool);
303 GET_CONST_VAL(UByte , unsigned char , ConstantUInt);
304 GET_CONST_VAL(SByte , signed char , ConstantSInt);
305 GET_CONST_VAL(UShort , unsigned short, ConstantUInt);
306 GET_CONST_VAL(Short , signed short , ConstantSInt);
307 GET_CONST_VAL(UInt , unsigned int , ConstantUInt);
308 GET_CONST_VAL(Int , signed int , ConstantSInt);
Chris Lattner4b3141d2005-05-12 06:01:28 +0000309 GET_CONST_VAL(ULong , uint64_t , ConstantUInt);
310 GET_CONST_VAL(Long , int64_t , ConstantSInt);
Chris Lattner813c8152005-01-08 20:13:19 +0000311 GET_CONST_VAL(Float , float , ConstantFP);
312 GET_CONST_VAL(Double , double , ConstantFP);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000313#undef GET_CONST_VAL
314 case Type::PointerTyID:
Reid Spencer40cf2f92004-07-18 00:41:27 +0000315 if (isa<ConstantPointerNull>(C))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000316 Result.PointerVal = 0;
Reid Spencer40cf2f92004-07-18 00:41:27 +0000317 else if (const Function *F = dyn_cast<Function>(C))
318 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
319 else if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
320 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
321 else
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000322 assert(0 && "Unknown constant pointer type!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000323 break;
324 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000325 std::cout << "ERROR: Constant unimp for type: " << *C->getType() << "\n";
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000326 abort();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000327 }
328 return Result;
329}
330
Nate Begeman37efe672006-04-22 18:53:45 +0000331/// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr. Ptr
332/// is the address of the memory at which to store Val, cast to GenericValue *.
333/// It is not a pointer to a GenericValue containing the address at which to
334/// store Val.
Misha Brukman4afac182003-10-10 17:45:12 +0000335///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000336void ExecutionEngine::StoreValueToMemory(GenericValue Val, GenericValue *Ptr,
Misha Brukman4afac182003-10-10 17:45:12 +0000337 const Type *Ty) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000338 if (getTargetData().isLittleEndian()) {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000339 switch (Ty->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000340 case Type::BoolTyID:
341 case Type::UByteTyID:
342 case Type::SByteTyID: Ptr->Untyped[0] = Val.UByteVal; break;
343 case Type::UShortTyID:
344 case Type::ShortTyID: Ptr->Untyped[0] = Val.UShortVal & 255;
345 Ptr->Untyped[1] = (Val.UShortVal >> 8) & 255;
346 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000347 Store4BytesLittleEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000348 case Type::FloatTyID:
349 case Type::UIntTyID:
350 case Type::IntTyID: Ptr->Untyped[0] = Val.UIntVal & 255;
351 Ptr->Untyped[1] = (Val.UIntVal >> 8) & 255;
352 Ptr->Untyped[2] = (Val.UIntVal >> 16) & 255;
353 Ptr->Untyped[3] = (Val.UIntVal >> 24) & 255;
354 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000355 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattner2be50792003-04-23 20:41:01 +0000356 goto Store4BytesLittleEndian;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000357 case Type::DoubleTyID:
358 case Type::ULongTyID:
Chris Lattner813c8152005-01-08 20:13:19 +0000359 case Type::LongTyID:
360 Ptr->Untyped[0] = (unsigned char)(Val.ULongVal );
361 Ptr->Untyped[1] = (unsigned char)(Val.ULongVal >> 8);
362 Ptr->Untyped[2] = (unsigned char)(Val.ULongVal >> 16);
363 Ptr->Untyped[3] = (unsigned char)(Val.ULongVal >> 24);
364 Ptr->Untyped[4] = (unsigned char)(Val.ULongVal >> 32);
365 Ptr->Untyped[5] = (unsigned char)(Val.ULongVal >> 40);
366 Ptr->Untyped[6] = (unsigned char)(Val.ULongVal >> 48);
367 Ptr->Untyped[7] = (unsigned char)(Val.ULongVal >> 56);
368 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000369 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000370 std::cout << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000371 }
372 } else {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000373 switch (Ty->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000374 case Type::BoolTyID:
375 case Type::UByteTyID:
376 case Type::SByteTyID: Ptr->Untyped[0] = Val.UByteVal; break;
377 case Type::UShortTyID:
378 case Type::ShortTyID: Ptr->Untyped[1] = Val.UShortVal & 255;
379 Ptr->Untyped[0] = (Val.UShortVal >> 8) & 255;
380 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000381 Store4BytesBigEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000382 case Type::FloatTyID:
383 case Type::UIntTyID:
384 case Type::IntTyID: Ptr->Untyped[3] = Val.UIntVal & 255;
385 Ptr->Untyped[2] = (Val.UIntVal >> 8) & 255;
386 Ptr->Untyped[1] = (Val.UIntVal >> 16) & 255;
387 Ptr->Untyped[0] = (Val.UIntVal >> 24) & 255;
388 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000389 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattner2be50792003-04-23 20:41:01 +0000390 goto Store4BytesBigEndian;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000391 case Type::DoubleTyID:
392 case Type::ULongTyID:
Chris Lattner813c8152005-01-08 20:13:19 +0000393 case Type::LongTyID:
Misha Brukmanedf128a2005-04-21 22:36:52 +0000394 Ptr->Untyped[7] = (unsigned char)(Val.ULongVal );
Chris Lattner813c8152005-01-08 20:13:19 +0000395 Ptr->Untyped[6] = (unsigned char)(Val.ULongVal >> 8);
396 Ptr->Untyped[5] = (unsigned char)(Val.ULongVal >> 16);
397 Ptr->Untyped[4] = (unsigned char)(Val.ULongVal >> 24);
398 Ptr->Untyped[3] = (unsigned char)(Val.ULongVal >> 32);
399 Ptr->Untyped[2] = (unsigned char)(Val.ULongVal >> 40);
400 Ptr->Untyped[1] = (unsigned char)(Val.ULongVal >> 48);
401 Ptr->Untyped[0] = (unsigned char)(Val.ULongVal >> 56);
402 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000403 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000404 std::cout << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000405 }
406 }
407}
408
Misha Brukman4afac182003-10-10 17:45:12 +0000409/// FIXME: document
410///
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000411GenericValue ExecutionEngine::LoadValueFromMemory(GenericValue *Ptr,
412 const Type *Ty) {
413 GenericValue Result;
414 if (getTargetData().isLittleEndian()) {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000415 switch (Ty->getTypeID()) {
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000416 case Type::BoolTyID:
417 case Type::UByteTyID:
418 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
419 case Type::UShortTyID:
420 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[0] |
421 ((unsigned)Ptr->Untyped[1] << 8);
422 break;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000423 Load4BytesLittleEndian:
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000424 case Type::FloatTyID:
425 case Type::UIntTyID:
426 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[0] |
427 ((unsigned)Ptr->Untyped[1] << 8) |
428 ((unsigned)Ptr->Untyped[2] << 16) |
429 ((unsigned)Ptr->Untyped[3] << 24);
430 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000431 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000432 goto Load4BytesLittleEndian;
433 case Type::DoubleTyID:
434 case Type::ULongTyID:
435 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[0] |
436 ((uint64_t)Ptr->Untyped[1] << 8) |
437 ((uint64_t)Ptr->Untyped[2] << 16) |
438 ((uint64_t)Ptr->Untyped[3] << 24) |
439 ((uint64_t)Ptr->Untyped[4] << 32) |
440 ((uint64_t)Ptr->Untyped[5] << 40) |
441 ((uint64_t)Ptr->Untyped[6] << 48) |
442 ((uint64_t)Ptr->Untyped[7] << 56);
443 break;
444 default:
445 std::cout << "Cannot load value of type " << *Ty << "!\n";
446 abort();
447 }
448 } else {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000449 switch (Ty->getTypeID()) {
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000450 case Type::BoolTyID:
451 case Type::UByteTyID:
452 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
453 case Type::UShortTyID:
454 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[1] |
455 ((unsigned)Ptr->Untyped[0] << 8);
456 break;
457 Load4BytesBigEndian:
458 case Type::FloatTyID:
459 case Type::UIntTyID:
460 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[3] |
461 ((unsigned)Ptr->Untyped[2] << 8) |
462 ((unsigned)Ptr->Untyped[1] << 16) |
463 ((unsigned)Ptr->Untyped[0] << 24);
464 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000465 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000466 goto Load4BytesBigEndian;
467 case Type::DoubleTyID:
468 case Type::ULongTyID:
469 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[7] |
470 ((uint64_t)Ptr->Untyped[6] << 8) |
471 ((uint64_t)Ptr->Untyped[5] << 16) |
472 ((uint64_t)Ptr->Untyped[4] << 24) |
473 ((uint64_t)Ptr->Untyped[3] << 32) |
474 ((uint64_t)Ptr->Untyped[2] << 40) |
475 ((uint64_t)Ptr->Untyped[1] << 48) |
476 ((uint64_t)Ptr->Untyped[0] << 56);
477 break;
478 default:
479 std::cout << "Cannot load value of type " << *Ty << "!\n";
480 abort();
481 }
482 }
483 return Result;
484}
485
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000486// InitializeMemory - Recursive function to apply a Constant value into the
487// specified memory location...
488//
489void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000490 if (isa<UndefValue>(Init)) {
491 return;
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000492 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(Init)) {
493 unsigned ElementSize =
494 getTargetData().getTypeSize(CP->getType()->getElementType());
495 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
496 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
497 return;
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000498 } else if (Init->getType()->isFirstClassType()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000499 GenericValue Val = getConstantValue(Init);
500 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
501 return;
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000502 } else if (isa<ConstantAggregateZero>(Init)) {
Chris Lattner813c8152005-01-08 20:13:19 +0000503 memset(Addr, 0, (size_t)getTargetData().getTypeSize(Init->getType()));
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000504 return;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000505 }
506
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000507 switch (Init->getType()->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000508 case Type::ArrayTyID: {
509 const ConstantArray *CPA = cast<ConstantArray>(Init);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000510 unsigned ElementSize =
Chris Lattner6e630882005-07-11 02:49:16 +0000511 getTargetData().getTypeSize(CPA->getType()->getElementType());
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000512 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
513 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000514 return;
515 }
516
517 case Type::StructTyID: {
518 const ConstantStruct *CPS = cast<ConstantStruct>(Init);
519 const StructLayout *SL =
520 getTargetData().getStructLayout(cast<StructType>(CPS->getType()));
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000521 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
522 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->MemberOffsets[i]);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000523 return;
524 }
525
526 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000527 std::cerr << "Bad Type: " << *Init->getType() << "\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000528 assert(0 && "Unknown constant type to initialize memory with!");
529 }
530}
531
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000532/// EmitGlobals - Emit all of the global variables to memory, storing their
533/// addresses into GlobalAddress. This must make sure to copy the contents of
534/// their initializers into the memory.
535///
536void ExecutionEngine::emitGlobals() {
537 const TargetData &TD = getTargetData();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000538
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000539 // Loop over all of the global variables in the program, allocating the memory
540 // to hold them.
Chris Lattner6e630882005-07-11 02:49:16 +0000541 Module &M = getModule();
542 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000543 I != E; ++I)
544 if (!I->isExternal()) {
545 // Get the type of the global...
546 const Type *Ty = I->getType()->getElementType();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000547
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000548 // Allocate some memory for it!
549 unsigned Size = TD.getTypeSize(Ty);
Chris Lattner24b0a182003-12-20 02:45:37 +0000550 addGlobalMapping(I, new char[Size]);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000551 } else {
Brian Gaeke322cdb22003-10-10 17:02:42 +0000552 // External variable reference. Try to use the dynamic loader to
553 // get a pointer to it.
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000554 if (void *SymAddr = sys::DynamicLibrary::SearchForAddressOfSymbol(
555 I->getName().c_str()))
Chris Lattner55d86482003-12-31 20:21:04 +0000556 addGlobalMapping(I, SymAddr);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000557 else {
558 std::cerr << "Could not resolve external global address: "
559 << I->getName() << "\n";
560 abort();
561 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000562 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000563
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000564 // Now that all of the globals are set up in memory, loop through them all and
565 // initialize their contents.
Chris Lattner6e630882005-07-11 02:49:16 +0000566 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000567 I != E; ++I)
568 if (!I->isExternal())
Chris Lattner24b0a182003-12-20 02:45:37 +0000569 EmitGlobalVariable(I);
570}
571
572// EmitGlobalVariable - This method emits the specified global variable to the
573// address specified in GlobalAddresses, or allocates new memory if it's not
574// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +0000575void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +0000576 void *GA = getPointerToGlobalIfAvailable(GV);
Chris Lattner23c47242004-02-08 19:33:23 +0000577 DEBUG(std::cerr << "Global '" << GV->getName() << "' -> " << GA << "\n");
578
Chris Lattnerc07ed132003-12-20 03:36:47 +0000579 const Type *ElTy = GV->getType()->getElementType();
Chris Lattner813c8152005-01-08 20:13:19 +0000580 size_t GVSize = (size_t)getTargetData().getTypeSize(ElTy);
Chris Lattner24b0a182003-12-20 02:45:37 +0000581 if (GA == 0) {
582 // If it's not already specified, allocate memory for the global.
Chris Lattnera98c5452004-11-19 08:44:07 +0000583 GA = new char[GVSize];
Chris Lattner55d86482003-12-31 20:21:04 +0000584 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +0000585 }
Chris Lattnerc07ed132003-12-20 03:36:47 +0000586
Chris Lattner24b0a182003-12-20 02:45:37 +0000587 InitializeMemory(GV->getInitializer(), GA);
Chris Lattner813c8152005-01-08 20:13:19 +0000588 NumInitBytes += (unsigned)GVSize;
Chris Lattner24b0a182003-12-20 02:45:37 +0000589 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000590}