blob: b920898230c3c098acc7094b20a59caf416845e5 [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"
Chris Lattner8f7f71b2004-06-20 07:46:18 +000021#include "llvm/CodeGen/IntrinsicLowering.h"
Misha Brukman19684162003-10-16 21:18:05 +000022#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000023#include "llvm/ExecutionEngine/GenericValue.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000024#include "llvm/Support/Debug.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000025#include "llvm/System/DynamicLibrary.h"
26#include "llvm/Target/TargetData.h"
Chris Lattner2fe4bb02006-03-22 06:07:50 +000027#include <iostream>
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000028using namespace llvm;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000029
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000030namespace {
31 Statistic<> NumInitBytes("lli", "Number of bytes of global vars initialized");
Chris Lattner24b0a182003-12-20 02:45:37 +000032 Statistic<> NumGlobals ("lli", "Number of global vars initialized");
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000033}
Chris Lattnerbd199fb2002-12-24 00:01:05 +000034
Chris Lattner2fe4bb02006-03-22 06:07:50 +000035ExecutionEngine::EECtorFn ExecutionEngine::JITCtor = 0;
36ExecutionEngine::EECtorFn ExecutionEngine::InterpCtor = 0;
37
Misha Brukmanedf128a2005-04-21 22:36:52 +000038ExecutionEngine::ExecutionEngine(ModuleProvider *P) :
Misha Brukman19684162003-10-16 21:18:05 +000039 CurMod(*P->getModule()), MP(P) {
40 assert(P && "ModuleProvider is null?");
41}
42
43ExecutionEngine::ExecutionEngine(Module *M) : CurMod(*M), MP(0) {
Misha Brukman05701572003-10-17 18:31:59 +000044 assert(M && "Module is null?");
Misha Brukman19684162003-10-16 21:18:05 +000045}
46
Brian Gaeke8e539482003-09-04 22:57:27 +000047ExecutionEngine::~ExecutionEngine() {
Misha Brukman7b2b40f2003-10-14 21:36:31 +000048 delete MP;
Brian Gaeke8e539482003-09-04 22:57:27 +000049}
50
Chris Lattner55d86482003-12-31 20:21:04 +000051/// getGlobalValueAtAddress - Return the LLVM global value object that starts
52/// at the specified address.
53///
54const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
Reid Spenceree448632005-07-12 15:51:55 +000055 MutexGuard locked(lock);
56
Chris Lattner55d86482003-12-31 20:21:04 +000057 // If we haven't computed the reverse mapping yet, do so first.
Reid Spenceree448632005-07-12 15:51:55 +000058 if (state.getGlobalAddressReverseMap(locked).empty()) {
Misha Brukmanedf128a2005-04-21 22:36:52 +000059 for (std::map<const GlobalValue*, void *>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +000060 state.getGlobalAddressMap(locked).begin(), E = state.getGlobalAddressMap(locked).end(); I != E; ++I)
61 state.getGlobalAddressReverseMap(locked).insert(std::make_pair(I->second, I->first));
Chris Lattner55d86482003-12-31 20:21:04 +000062 }
63
64 std::map<void *, const GlobalValue*>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +000065 state.getGlobalAddressReverseMap(locked).find(Addr);
66 return I != state.getGlobalAddressReverseMap(locked).end() ? I->second : 0;
Chris Lattner55d86482003-12-31 20:21:04 +000067}
Chris Lattner87f03102003-12-26 06:50:30 +000068
69// CreateArgv - Turn a vector of strings into a nice argv style array of
70// pointers to null terminated strings.
71//
72static void *CreateArgv(ExecutionEngine *EE,
73 const std::vector<std::string> &InputArgv) {
74 unsigned PtrSize = EE->getTargetData().getPointerSize();
75 char *Result = new char[(InputArgv.size()+1)*PtrSize];
76
77 DEBUG(std::cerr << "ARGV = " << (void*)Result << "\n");
78 const Type *SBytePtr = PointerType::get(Type::SByteTy);
79
80 for (unsigned i = 0; i != InputArgv.size(); ++i) {
81 unsigned Size = InputArgv[i].size()+1;
82 char *Dest = new char[Size];
83 DEBUG(std::cerr << "ARGV[" << i << "] = " << (void*)Dest << "\n");
Misha Brukmanedf128a2005-04-21 22:36:52 +000084
Chris Lattner87f03102003-12-26 06:50:30 +000085 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
86 Dest[Size-1] = 0;
Misha Brukmanedf128a2005-04-21 22:36:52 +000087
Chris Lattner87f03102003-12-26 06:50:30 +000088 // Endian safe: Result[i] = (PointerTy)Dest;
89 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i*PtrSize),
90 SBytePtr);
91 }
92
93 // Null terminate it
94 EE->StoreValueToMemory(PTOGV(0),
95 (GenericValue*)(Result+InputArgv.size()*PtrSize),
96 SBytePtr);
97 return Result;
98}
99
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000100
101/// runStaticConstructorsDestructors - This method is used to execute all of
102/// the static constructors or destructors for a module, depending on the
103/// value of isDtors.
104void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
105 const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
106 GlobalVariable *GV = CurMod.getNamedGlobal(Name);
107 if (!GV || GV->isExternal() || !GV->hasInternalLinkage()) return;
108
109 // Should be an array of '{ int, void ()* }' structs. The first value is the
110 // init priority, which we ignore.
111 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
112 if (!InitList) return;
113 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
114 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
115 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
116
117 Constant *FP = CS->getOperand(1);
118 if (FP->isNullValue())
119 return; // Found a null terminator, exit.
120
121 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
122 if (CE->getOpcode() == Instruction::Cast)
123 FP = CE->getOperand(0);
124 if (Function *F = dyn_cast<Function>(FP)) {
125 // Execute the ctor/dtor function!
126 runFunction(F, std::vector<GenericValue>());
127 }
128 }
129}
130
Chris Lattner87f03102003-12-26 06:50:30 +0000131/// runFunctionAsMain - This is a helper function which wraps runFunction to
132/// handle the common task of starting up main with the specified argc, argv,
133/// and envp parameters.
134int ExecutionEngine::runFunctionAsMain(Function *Fn,
135 const std::vector<std::string> &argv,
136 const char * const * envp) {
137 std::vector<GenericValue> GVArgs;
138 GenericValue GVArgc;
139 GVArgc.IntVal = argv.size();
Chris Lattnerf24d0992004-08-16 01:05:35 +0000140 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
141 if (NumArgs) {
142 GVArgs.push_back(GVArgc); // Arg #0 = argc.
143 if (NumArgs > 1) {
144 GVArgs.push_back(PTOGV(CreateArgv(this, argv))); // Arg #1 = argv.
145 assert(((char **)GVTOP(GVArgs[1]))[0] &&
146 "argv[0] was null after CreateArgv");
147 if (NumArgs > 2) {
148 std::vector<std::string> EnvVars;
149 for (unsigned i = 0; envp[i]; ++i)
150 EnvVars.push_back(envp[i]);
151 GVArgs.push_back(PTOGV(CreateArgv(this, EnvVars))); // Arg #2 = envp.
152 }
153 }
154 }
Chris Lattner87f03102003-12-26 06:50:30 +0000155 return runFunction(Fn, GVArgs).IntVal;
156}
157
Misha Brukman19684162003-10-16 21:18:05 +0000158/// If possible, create a JIT, unless the caller specifically requests an
159/// Interpreter or there's an error. If even an Interpreter cannot be created,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000160/// NULL is returned.
Misha Brukman4afac182003-10-10 17:45:12 +0000161///
Misha Brukmanedf128a2005-04-21 22:36:52 +0000162ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
Chris Lattner73011782003-12-28 09:44:37 +0000163 bool ForceInterpreter,
164 IntrinsicLowering *IL) {
Brian Gaeke82d82772003-09-03 20:34:19 +0000165 ExecutionEngine *EE = 0;
166
Chris Lattner73011782003-12-28 09:44:37 +0000167 // Unless the interpreter was explicitly selected, try making a JIT.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000168 if (!ForceInterpreter && JITCtor)
169 EE = JITCtor(MP, IL);
Brian Gaeke82d82772003-09-03 20:34:19 +0000170
171 // If we can't make a JIT, make an interpreter instead.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000172 if (EE == 0 && InterpCtor)
173 EE = InterpCtor(MP, IL);
Chris Lattner73011782003-12-28 09:44:37 +0000174
Misha Brukmanedf128a2005-04-21 22:36:52 +0000175 if (EE == 0)
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000176 delete IL;
177 else
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);
181
Brian Gaeke82d82772003-09-03 20:34:19 +0000182 return EE;
183}
184
Misha Brukman4afac182003-10-10 17:45:12 +0000185/// getPointerToGlobal - This returns the address of the specified global
186/// value. This may involve code generation if it's a function.
187///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000188void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000189 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000190 return getPointerToFunction(F);
191
Reid Spenceree448632005-07-12 15:51:55 +0000192 MutexGuard locked(lock);
Jeff Cohen68835dd2006-02-07 05:11:57 +0000193 void *p = state.getGlobalAddressMap(locked)[GV];
194 if (p)
195 return p;
196
197 // Global variable might have been added since interpreter started.
198 if (GlobalVariable *GVar =
199 const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
200 EmitGlobalVariable(GVar);
201 else
202 assert("Global hasn't had an address allocated yet!");
Reid Spenceree448632005-07-12 15:51:55 +0000203 return state.getGlobalAddressMap(locked)[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000204}
205
Misha Brukman4afac182003-10-10 17:45:12 +0000206/// FIXME: document
Misha Brukmanedf128a2005-04-21 22:36:52 +0000207///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000208GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
209 GenericValue Result;
Chris Lattner6f335f92004-10-26 05:35:14 +0000210 if (isa<UndefValue>(C)) return Result;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000211
Chris Lattner9a231222003-05-14 17:51:49 +0000212 if (ConstantExpr *CE = const_cast<ConstantExpr*>(dyn_cast<ConstantExpr>(C))) {
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000213 switch (CE->getOpcode()) {
214 case Instruction::GetElementPtr: {
Chris Lattner9a231222003-05-14 17:51:49 +0000215 Result = getConstantValue(CE->getOperand(0));
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000216 std::vector<Value*> Indexes(CE->op_begin()+1, CE->op_end());
217 uint64_t Offset =
218 TD->getIndexedOffset(CE->getOperand(0)->getType(), Indexes);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000219
Chris Lattner3db4b622005-10-23 23:54:56 +0000220 if (getTargetData().getPointerSize() == 4)
221 Result.IntVal += Offset;
222 else
223 Result.LongVal += Offset;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000224 return Result;
225 }
Chris Lattner9a231222003-05-14 17:51:49 +0000226 case Instruction::Cast: {
227 // We only need to handle a few cases here. Almost all casts will
228 // automatically fold, just the ones involving pointers won't.
229 //
230 Constant *Op = CE->getOperand(0);
Chris Lattner7d1bd332004-03-16 08:38:56 +0000231 GenericValue GV = getConstantValue(Op);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000232
Chris Lattner9a231222003-05-14 17:51:49 +0000233 // Handle cast of pointer to pointer...
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000234 if (Op->getType()->getTypeID() == C->getType()->getTypeID())
Chris Lattner7d1bd332004-03-16 08:38:56 +0000235 return GV;
Chris Lattner9a231222003-05-14 17:51:49 +0000236
Chris Lattner74cf8192003-08-18 17:23:40 +0000237 // Handle a cast of pointer to any integral type...
Chris Lattnerc88a4ea2003-08-18 17:33:15 +0000238 if (isa<PointerType>(Op->getType()) && C->getType()->isIntegral())
Chris Lattner7d1bd332004-03-16 08:38:56 +0000239 return GV;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000240
Chris Lattner7d1bd332004-03-16 08:38:56 +0000241 // Handle cast of integer to a pointer...
242 if (isa<PointerType>(C->getType()) && Op->getType()->isIntegral())
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000243 switch (Op->getType()->getTypeID()) {
Chris Lattner7d1bd332004-03-16 08:38:56 +0000244 case Type::BoolTyID: return PTOGV((void*)(uintptr_t)GV.BoolVal);
245 case Type::SByteTyID: return PTOGV((void*)( intptr_t)GV.SByteVal);
246 case Type::UByteTyID: return PTOGV((void*)(uintptr_t)GV.UByteVal);
247 case Type::ShortTyID: return PTOGV((void*)( intptr_t)GV.ShortVal);
248 case Type::UShortTyID: return PTOGV((void*)(uintptr_t)GV.UShortVal);
249 case Type::IntTyID: return PTOGV((void*)( intptr_t)GV.IntVal);
250 case Type::UIntTyID: return PTOGV((void*)(uintptr_t)GV.UIntVal);
251 case Type::LongTyID: return PTOGV((void*)( intptr_t)GV.LongVal);
252 case Type::ULongTyID: return PTOGV((void*)(uintptr_t)GV.ULongVal);
253 default: assert(0 && "Unknown integral type!");
254 }
Chris Lattner9a231222003-05-14 17:51:49 +0000255 break;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000256 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000257
Chris Lattner9a231222003-05-14 17:51:49 +0000258 case Instruction::Add:
Chris Lattner5f90cb82004-07-11 08:01:11 +0000259 switch (CE->getOperand(0)->getType()->getTypeID()) {
260 default: assert(0 && "Bad add type!"); abort();
261 case Type::LongTyID:
262 case Type::ULongTyID:
Chris Lattner6b2125c2003-05-14 17:53:49 +0000263 Result.LongVal = getConstantValue(CE->getOperand(0)).LongVal +
264 getConstantValue(CE->getOperand(1)).LongVal;
Chris Lattner9a231222003-05-14 17:51:49 +0000265 break;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000266 case Type::IntTyID:
267 case Type::UIntTyID:
268 Result.IntVal = getConstantValue(CE->getOperand(0)).IntVal +
269 getConstantValue(CE->getOperand(1)).IntVal;
270 break;
271 case Type::ShortTyID:
272 case Type::UShortTyID:
273 Result.ShortVal = getConstantValue(CE->getOperand(0)).ShortVal +
274 getConstantValue(CE->getOperand(1)).ShortVal;
275 break;
276 case Type::SByteTyID:
277 case Type::UByteTyID:
278 Result.SByteVal = getConstantValue(CE->getOperand(0)).SByteVal +
279 getConstantValue(CE->getOperand(1)).SByteVal;
280 break;
281 case Type::FloatTyID:
282 Result.FloatVal = getConstantValue(CE->getOperand(0)).FloatVal +
283 getConstantValue(CE->getOperand(1)).FloatVal;
284 break;
285 case Type::DoubleTyID:
286 Result.DoubleVal = getConstantValue(CE->getOperand(0)).DoubleVal +
287 getConstantValue(CE->getOperand(1)).DoubleVal;
288 break;
289 }
Chris Lattner9a231222003-05-14 17:51:49 +0000290 return Result;
Chris Lattner9a231222003-05-14 17:51:49 +0000291 default:
292 break;
293 }
294 std::cerr << "ConstantExpr not handled as global var init: " << *CE << "\n";
295 abort();
296 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000297
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000298 switch (C->getType()->getTypeID()) {
Chris Lattner813c8152005-01-08 20:13:19 +0000299#define GET_CONST_VAL(TY, CTY, CLASS) \
300 case Type::TY##TyID: Result.TY##Val = (CTY)cast<CLASS>(C)->getValue(); break
301 GET_CONST_VAL(Bool , bool , ConstantBool);
302 GET_CONST_VAL(UByte , unsigned char , ConstantUInt);
303 GET_CONST_VAL(SByte , signed char , ConstantSInt);
304 GET_CONST_VAL(UShort , unsigned short, ConstantUInt);
305 GET_CONST_VAL(Short , signed short , ConstantSInt);
306 GET_CONST_VAL(UInt , unsigned int , ConstantUInt);
307 GET_CONST_VAL(Int , signed int , ConstantSInt);
Chris Lattner4b3141d2005-05-12 06:01:28 +0000308 GET_CONST_VAL(ULong , uint64_t , ConstantUInt);
309 GET_CONST_VAL(Long , int64_t , ConstantSInt);
Chris Lattner813c8152005-01-08 20:13:19 +0000310 GET_CONST_VAL(Float , float , ConstantFP);
311 GET_CONST_VAL(Double , double , ConstantFP);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000312#undef GET_CONST_VAL
313 case Type::PointerTyID:
Reid Spencer40cf2f92004-07-18 00:41:27 +0000314 if (isa<ConstantPointerNull>(C))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000315 Result.PointerVal = 0;
Reid Spencer40cf2f92004-07-18 00:41:27 +0000316 else if (const Function *F = dyn_cast<Function>(C))
317 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
318 else if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
319 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
320 else
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000321 assert(0 && "Unknown constant pointer type!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000322 break;
323 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000324 std::cout << "ERROR: Constant unimp for type: " << *C->getType() << "\n";
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000325 abort();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000326 }
327 return Result;
328}
329
Misha Brukman4afac182003-10-10 17:45:12 +0000330/// FIXME: document
331///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000332void ExecutionEngine::StoreValueToMemory(GenericValue Val, GenericValue *Ptr,
Misha Brukman4afac182003-10-10 17:45:12 +0000333 const Type *Ty) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000334 if (getTargetData().isLittleEndian()) {
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[0] = Val.UShortVal & 255;
341 Ptr->Untyped[1] = (Val.UShortVal >> 8) & 255;
342 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000343 Store4BytesLittleEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000344 case Type::FloatTyID:
345 case Type::UIntTyID:
346 case Type::IntTyID: Ptr->Untyped[0] = Val.UIntVal & 255;
347 Ptr->Untyped[1] = (Val.UIntVal >> 8) & 255;
348 Ptr->Untyped[2] = (Val.UIntVal >> 16) & 255;
349 Ptr->Untyped[3] = (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 Store4BytesLittleEndian;
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[0] = (unsigned char)(Val.ULongVal );
357 Ptr->Untyped[1] = (unsigned char)(Val.ULongVal >> 8);
358 Ptr->Untyped[2] = (unsigned char)(Val.ULongVal >> 16);
359 Ptr->Untyped[3] = (unsigned char)(Val.ULongVal >> 24);
360 Ptr->Untyped[4] = (unsigned char)(Val.ULongVal >> 32);
361 Ptr->Untyped[5] = (unsigned char)(Val.ULongVal >> 40);
362 Ptr->Untyped[6] = (unsigned char)(Val.ULongVal >> 48);
363 Ptr->Untyped[7] = (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 } else {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000369 switch (Ty->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000370 case Type::BoolTyID:
371 case Type::UByteTyID:
372 case Type::SByteTyID: Ptr->Untyped[0] = Val.UByteVal; break;
373 case Type::UShortTyID:
374 case Type::ShortTyID: Ptr->Untyped[1] = Val.UShortVal & 255;
375 Ptr->Untyped[0] = (Val.UShortVal >> 8) & 255;
376 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000377 Store4BytesBigEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000378 case Type::FloatTyID:
379 case Type::UIntTyID:
380 case Type::IntTyID: Ptr->Untyped[3] = Val.UIntVal & 255;
381 Ptr->Untyped[2] = (Val.UIntVal >> 8) & 255;
382 Ptr->Untyped[1] = (Val.UIntVal >> 16) & 255;
383 Ptr->Untyped[0] = (Val.UIntVal >> 24) & 255;
384 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000385 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattner2be50792003-04-23 20:41:01 +0000386 goto Store4BytesBigEndian;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000387 case Type::DoubleTyID:
388 case Type::ULongTyID:
Chris Lattner813c8152005-01-08 20:13:19 +0000389 case Type::LongTyID:
Misha Brukmanedf128a2005-04-21 22:36:52 +0000390 Ptr->Untyped[7] = (unsigned char)(Val.ULongVal );
Chris Lattner813c8152005-01-08 20:13:19 +0000391 Ptr->Untyped[6] = (unsigned char)(Val.ULongVal >> 8);
392 Ptr->Untyped[5] = (unsigned char)(Val.ULongVal >> 16);
393 Ptr->Untyped[4] = (unsigned char)(Val.ULongVal >> 24);
394 Ptr->Untyped[3] = (unsigned char)(Val.ULongVal >> 32);
395 Ptr->Untyped[2] = (unsigned char)(Val.ULongVal >> 40);
396 Ptr->Untyped[1] = (unsigned char)(Val.ULongVal >> 48);
397 Ptr->Untyped[0] = (unsigned char)(Val.ULongVal >> 56);
398 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000399 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000400 std::cout << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000401 }
402 }
403}
404
Misha Brukman4afac182003-10-10 17:45:12 +0000405/// FIXME: document
406///
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000407GenericValue ExecutionEngine::LoadValueFromMemory(GenericValue *Ptr,
408 const Type *Ty) {
409 GenericValue Result;
410 if (getTargetData().isLittleEndian()) {
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[0] |
417 ((unsigned)Ptr->Untyped[1] << 8);
418 break;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000419 Load4BytesLittleEndian:
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000420 case Type::FloatTyID:
421 case Type::UIntTyID:
422 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[0] |
423 ((unsigned)Ptr->Untyped[1] << 8) |
424 ((unsigned)Ptr->Untyped[2] << 16) |
425 ((unsigned)Ptr->Untyped[3] << 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 Load4BytesLittleEndian;
429 case Type::DoubleTyID:
430 case Type::ULongTyID:
431 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[0] |
432 ((uint64_t)Ptr->Untyped[1] << 8) |
433 ((uint64_t)Ptr->Untyped[2] << 16) |
434 ((uint64_t)Ptr->Untyped[3] << 24) |
435 ((uint64_t)Ptr->Untyped[4] << 32) |
436 ((uint64_t)Ptr->Untyped[5] << 40) |
437 ((uint64_t)Ptr->Untyped[6] << 48) |
438 ((uint64_t)Ptr->Untyped[7] << 56);
439 break;
440 default:
441 std::cout << "Cannot load value of type " << *Ty << "!\n";
442 abort();
443 }
444 } else {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000445 switch (Ty->getTypeID()) {
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000446 case Type::BoolTyID:
447 case Type::UByteTyID:
448 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
449 case Type::UShortTyID:
450 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[1] |
451 ((unsigned)Ptr->Untyped[0] << 8);
452 break;
453 Load4BytesBigEndian:
454 case Type::FloatTyID:
455 case Type::UIntTyID:
456 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[3] |
457 ((unsigned)Ptr->Untyped[2] << 8) |
458 ((unsigned)Ptr->Untyped[1] << 16) |
459 ((unsigned)Ptr->Untyped[0] << 24);
460 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000461 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000462 goto Load4BytesBigEndian;
463 case Type::DoubleTyID:
464 case Type::ULongTyID:
465 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[7] |
466 ((uint64_t)Ptr->Untyped[6] << 8) |
467 ((uint64_t)Ptr->Untyped[5] << 16) |
468 ((uint64_t)Ptr->Untyped[4] << 24) |
469 ((uint64_t)Ptr->Untyped[3] << 32) |
470 ((uint64_t)Ptr->Untyped[2] << 40) |
471 ((uint64_t)Ptr->Untyped[1] << 48) |
472 ((uint64_t)Ptr->Untyped[0] << 56);
473 break;
474 default:
475 std::cout << "Cannot load value of type " << *Ty << "!\n";
476 abort();
477 }
478 }
479 return Result;
480}
481
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000482// InitializeMemory - Recursive function to apply a Constant value into the
483// specified memory location...
484//
485void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000486 if (isa<UndefValue>(Init)) {
487 return;
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000488 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(Init)) {
489 unsigned ElementSize =
490 getTargetData().getTypeSize(CP->getType()->getElementType());
491 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
492 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
493 return;
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000494 } else if (Init->getType()->isFirstClassType()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000495 GenericValue Val = getConstantValue(Init);
496 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
497 return;
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000498 } else if (isa<ConstantAggregateZero>(Init)) {
Chris Lattner813c8152005-01-08 20:13:19 +0000499 memset(Addr, 0, (size_t)getTargetData().getTypeSize(Init->getType()));
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000500 return;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000501 }
502
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000503 switch (Init->getType()->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000504 case Type::ArrayTyID: {
505 const ConstantArray *CPA = cast<ConstantArray>(Init);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000506 unsigned ElementSize =
Chris Lattner6e630882005-07-11 02:49:16 +0000507 getTargetData().getTypeSize(CPA->getType()->getElementType());
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000508 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
509 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000510 return;
511 }
512
513 case Type::StructTyID: {
514 const ConstantStruct *CPS = cast<ConstantStruct>(Init);
515 const StructLayout *SL =
516 getTargetData().getStructLayout(cast<StructType>(CPS->getType()));
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000517 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
518 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->MemberOffsets[i]);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000519 return;
520 }
521
522 default:
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000523 std::cerr << "Bad Type: " << *Init->getType() << "\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000524 assert(0 && "Unknown constant type to initialize memory with!");
525 }
526}
527
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000528/// EmitGlobals - Emit all of the global variables to memory, storing their
529/// addresses into GlobalAddress. This must make sure to copy the contents of
530/// their initializers into the memory.
531///
532void ExecutionEngine::emitGlobals() {
533 const TargetData &TD = getTargetData();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000534
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000535 // Loop over all of the global variables in the program, allocating the memory
536 // to hold them.
Chris Lattner6e630882005-07-11 02:49:16 +0000537 Module &M = getModule();
538 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000539 I != E; ++I)
540 if (!I->isExternal()) {
541 // Get the type of the global...
542 const Type *Ty = I->getType()->getElementType();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000543
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000544 // Allocate some memory for it!
545 unsigned Size = TD.getTypeSize(Ty);
Chris Lattner24b0a182003-12-20 02:45:37 +0000546 addGlobalMapping(I, new char[Size]);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000547 } else {
Brian Gaeke322cdb22003-10-10 17:02:42 +0000548 // External variable reference. Try to use the dynamic loader to
549 // get a pointer to it.
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000550 if (void *SymAddr = sys::DynamicLibrary::SearchForAddressOfSymbol(
551 I->getName().c_str()))
Chris Lattner55d86482003-12-31 20:21:04 +0000552 addGlobalMapping(I, SymAddr);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000553 else {
554 std::cerr << "Could not resolve external global address: "
555 << I->getName() << "\n";
556 abort();
557 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000558 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000559
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000560 // Now that all of the globals are set up in memory, loop through them all and
561 // initialize their contents.
Chris Lattner6e630882005-07-11 02:49:16 +0000562 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000563 I != E; ++I)
564 if (!I->isExternal())
Chris Lattner24b0a182003-12-20 02:45:37 +0000565 EmitGlobalVariable(I);
566}
567
568// EmitGlobalVariable - This method emits the specified global variable to the
569// address specified in GlobalAddresses, or allocates new memory if it's not
570// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +0000571void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +0000572 void *GA = getPointerToGlobalIfAvailable(GV);
Chris Lattner23c47242004-02-08 19:33:23 +0000573 DEBUG(std::cerr << "Global '" << GV->getName() << "' -> " << GA << "\n");
574
Chris Lattnerc07ed132003-12-20 03:36:47 +0000575 const Type *ElTy = GV->getType()->getElementType();
Chris Lattner813c8152005-01-08 20:13:19 +0000576 size_t GVSize = (size_t)getTargetData().getTypeSize(ElTy);
Chris Lattner24b0a182003-12-20 02:45:37 +0000577 if (GA == 0) {
578 // If it's not already specified, allocate memory for the global.
Chris Lattnera98c5452004-11-19 08:44:07 +0000579 GA = new char[GVSize];
Chris Lattner55d86482003-12-31 20:21:04 +0000580 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +0000581 }
Chris Lattnerc07ed132003-12-20 03:36:47 +0000582
Chris Lattner24b0a182003-12-20 02:45:37 +0000583 InitializeMemory(GV->getInitializer(), GA);
Chris Lattner813c8152005-01-08 20:13:19 +0000584 NumInitBytes += (unsigned)GVSize;
Chris Lattner24b0a182003-12-20 02:45:37 +0000585 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000586}