blob: 76ba2284306414437452b62e3c93395a4a09b112 [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 Lattner73011782003-12-28 09:44:37 +000020#include "llvm/IntrinsicLowering.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000021#include "llvm/Module.h"
Misha Brukman19684162003-10-16 21:18:05 +000022#include "llvm/ModuleProvider.h"
23#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000024#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000025#include "llvm/Target/TargetData.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000026#include "Support/Debug.h"
27#include "Support/Statistic.h"
Brian Gaeke322cdb22003-10-10 17:02:42 +000028#include "Support/DynamicLinker.h"
John Criswell7a73b802003-06-30 21:59:07 +000029#include "Config/dlfcn.h"
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000030using namespace llvm;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000031
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000032namespace {
33 Statistic<> NumInitBytes("lli", "Number of bytes of global vars initialized");
Chris Lattner24b0a182003-12-20 02:45:37 +000034 Statistic<> NumGlobals ("lli", "Number of global vars initialized");
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000035}
Chris Lattnerbd199fb2002-12-24 00:01:05 +000036
Misha Brukman19684162003-10-16 21:18:05 +000037ExecutionEngine::ExecutionEngine(ModuleProvider *P) :
38 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) {
54 // If we haven't computed the reverse mapping yet, do so first.
55 if (GlobalAddressReverseMap.empty()) {
56 for (std::map<const GlobalValue*, void *>::iterator I =
57 GlobalAddressMap.begin(), E = GlobalAddressMap.end(); I != E; ++I)
58 GlobalAddressReverseMap.insert(std::make_pair(I->second, I->first));
59 }
60
61 std::map<void *, const GlobalValue*>::iterator I =
62 GlobalAddressReverseMap.find(Addr);
63 return I != GlobalAddressReverseMap.end() ? I->second : 0;
64}
Chris Lattner87f03102003-12-26 06:50:30 +000065
66// CreateArgv - Turn a vector of strings into a nice argv style array of
67// pointers to null terminated strings.
68//
69static void *CreateArgv(ExecutionEngine *EE,
70 const std::vector<std::string> &InputArgv) {
71 unsigned PtrSize = EE->getTargetData().getPointerSize();
72 char *Result = new char[(InputArgv.size()+1)*PtrSize];
73
74 DEBUG(std::cerr << "ARGV = " << (void*)Result << "\n");
75 const Type *SBytePtr = PointerType::get(Type::SByteTy);
76
77 for (unsigned i = 0; i != InputArgv.size(); ++i) {
78 unsigned Size = InputArgv[i].size()+1;
79 char *Dest = new char[Size];
80 DEBUG(std::cerr << "ARGV[" << i << "] = " << (void*)Dest << "\n");
81
82 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
83 Dest[Size-1] = 0;
84
85 // Endian safe: Result[i] = (PointerTy)Dest;
86 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i*PtrSize),
87 SBytePtr);
88 }
89
90 // Null terminate it
91 EE->StoreValueToMemory(PTOGV(0),
92 (GenericValue*)(Result+InputArgv.size()*PtrSize),
93 SBytePtr);
94 return Result;
95}
96
97/// runFunctionAsMain - This is a helper function which wraps runFunction to
98/// handle the common task of starting up main with the specified argc, argv,
99/// and envp parameters.
100int ExecutionEngine::runFunctionAsMain(Function *Fn,
101 const std::vector<std::string> &argv,
102 const char * const * envp) {
103 std::vector<GenericValue> GVArgs;
104 GenericValue GVArgc;
105 GVArgc.IntVal = argv.size();
106 GVArgs.push_back(GVArgc); // Arg #0 = argc.
107 GVArgs.push_back(PTOGV(CreateArgv(this, argv))); // Arg #1 = argv.
108 assert(((char **)GVTOP(GVArgs[1]))[0] && "argv[0] was null after CreateArgv");
109
110 std::vector<std::string> EnvVars;
111 for (unsigned i = 0; envp[i]; ++i)
112 EnvVars.push_back(envp[i]);
113 GVArgs.push_back(PTOGV(CreateArgv(this, EnvVars))); // Arg #2 = envp.
114 return runFunction(Fn, GVArgs).IntVal;
115}
116
117
118
Misha Brukman19684162003-10-16 21:18:05 +0000119/// If possible, create a JIT, unless the caller specifically requests an
120/// Interpreter or there's an error. If even an Interpreter cannot be created,
121/// NULL is returned.
Misha Brukman4afac182003-10-10 17:45:12 +0000122///
Misha Brukman7b2b40f2003-10-14 21:36:31 +0000123ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
Chris Lattner73011782003-12-28 09:44:37 +0000124 bool ForceInterpreter,
125 IntrinsicLowering *IL) {
Brian Gaeke82d82772003-09-03 20:34:19 +0000126 ExecutionEngine *EE = 0;
127
Chris Lattner73011782003-12-28 09:44:37 +0000128 // Unless the interpreter was explicitly selected, try making a JIT.
Brian Gaeke20a277e2003-10-24 19:58:38 +0000129 if (!ForceInterpreter)
Chris Lattner73011782003-12-28 09:44:37 +0000130 EE = JIT::create(MP, IL);
Brian Gaeke82d82772003-09-03 20:34:19 +0000131
132 // If we can't make a JIT, make an interpreter instead.
Misha Brukman19684162003-10-16 21:18:05 +0000133 try {
134 if (EE == 0)
Chris Lattner73011782003-12-28 09:44:37 +0000135 EE = Interpreter::create(MP->materializeModule(), IL);
Misha Brukman19684162003-10-16 21:18:05 +0000136 } catch (...) {
137 EE = 0;
138 }
Chris Lattner73011782003-12-28 09:44:37 +0000139
140 if (EE == 0) delete IL;
Brian Gaeke82d82772003-09-03 20:34:19 +0000141 return EE;
142}
143
Misha Brukman4afac182003-10-10 17:45:12 +0000144/// getPointerToGlobal - This returns the address of the specified global
145/// value. This may involve code generation if it's a function.
146///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000147void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000148 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000149 return getPointerToFunction(F);
150
Chris Lattner55d86482003-12-31 20:21:04 +0000151 assert(GlobalAddressMap[GV] && "Global hasn't had an address allocated yet?");
152 return GlobalAddressMap[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000153}
154
Misha Brukman4afac182003-10-10 17:45:12 +0000155/// FIXME: document
156///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000157GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
158 GenericValue Result;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000159
Chris Lattner9a231222003-05-14 17:51:49 +0000160 if (ConstantExpr *CE = const_cast<ConstantExpr*>(dyn_cast<ConstantExpr>(C))) {
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000161 switch (CE->getOpcode()) {
162 case Instruction::GetElementPtr: {
Chris Lattner9a231222003-05-14 17:51:49 +0000163 Result = getConstantValue(CE->getOperand(0));
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000164 std::vector<Value*> Indexes(CE->op_begin()+1, CE->op_end());
165 uint64_t Offset =
166 TD->getIndexedOffset(CE->getOperand(0)->getType(), Indexes);
167
168 Result.LongVal += Offset;
169 return Result;
170 }
Chris Lattner9a231222003-05-14 17:51:49 +0000171 case Instruction::Cast: {
172 // We only need to handle a few cases here. Almost all casts will
173 // automatically fold, just the ones involving pointers won't.
174 //
175 Constant *Op = CE->getOperand(0);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000176
Chris Lattner9a231222003-05-14 17:51:49 +0000177 // Handle cast of pointer to pointer...
178 if (Op->getType()->getPrimitiveID() == C->getType()->getPrimitiveID())
179 return getConstantValue(Op);
180
Chris Lattner74cf8192003-08-18 17:23:40 +0000181 // Handle a cast of pointer to any integral type...
Chris Lattnerc88a4ea2003-08-18 17:33:15 +0000182 if (isa<PointerType>(Op->getType()) && C->getType()->isIntegral())
Chris Lattner9a231222003-05-14 17:51:49 +0000183 return getConstantValue(Op);
Chris Lattner74cf8192003-08-18 17:23:40 +0000184
185 // Handle cast of long to pointer...
186 if (isa<PointerType>(C->getType()) && (Op->getType() == Type::LongTy ||
187 Op->getType() == Type::ULongTy))
188 return getConstantValue(Op);
Chris Lattner9a231222003-05-14 17:51:49 +0000189 break;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000190 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000191
Chris Lattner9a231222003-05-14 17:51:49 +0000192 case Instruction::Add:
Chris Lattner6b2125c2003-05-14 17:53:49 +0000193 if (CE->getOperand(0)->getType() == Type::LongTy ||
194 CE->getOperand(0)->getType() == Type::ULongTy)
195 Result.LongVal = getConstantValue(CE->getOperand(0)).LongVal +
196 getConstantValue(CE->getOperand(1)).LongVal;
Chris Lattner9a231222003-05-14 17:51:49 +0000197 else
198 break;
199 return Result;
200
201 default:
202 break;
203 }
204 std::cerr << "ConstantExpr not handled as global var init: " << *CE << "\n";
205 abort();
206 }
207
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000208 switch (C->getType()->getPrimitiveID()) {
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000209#define GET_CONST_VAL(TY, CLASS) \
210 case Type::TY##TyID: Result.TY##Val = cast<CLASS>(C)->getValue(); break
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000211 GET_CONST_VAL(Bool , ConstantBool);
212 GET_CONST_VAL(UByte , ConstantUInt);
213 GET_CONST_VAL(SByte , ConstantSInt);
214 GET_CONST_VAL(UShort , ConstantUInt);
215 GET_CONST_VAL(Short , ConstantSInt);
216 GET_CONST_VAL(UInt , ConstantUInt);
217 GET_CONST_VAL(Int , ConstantSInt);
218 GET_CONST_VAL(ULong , ConstantUInt);
219 GET_CONST_VAL(Long , ConstantSInt);
220 GET_CONST_VAL(Float , ConstantFP);
221 GET_CONST_VAL(Double , ConstantFP);
222#undef GET_CONST_VAL
223 case Type::PointerTyID:
224 if (isa<ConstantPointerNull>(C)) {
225 Result.PointerVal = 0;
226 } else if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C)){
Chris Lattner38f0eba2003-12-08 08:22:48 +0000227 if (Function *F =
228 const_cast<Function*>(dyn_cast<Function>(CPR->getValue())))
229 Result = PTOGV(getPointerToFunctionOrStub(F));
230 else
Chris Lattnerc07ed132003-12-20 03:36:47 +0000231 Result = PTOGV(getOrEmitGlobalVariable(
232 cast<GlobalVariable>(CPR->getValue())));
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000233
234 } else {
235 assert(0 && "Unknown constant pointer type!");
236 }
237 break;
238 default:
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000239 std::cout << "ERROR: Constant unimp for type: " << C->getType() << "\n";
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000240 abort();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000241 }
242 return Result;
243}
244
Misha Brukman4afac182003-10-10 17:45:12 +0000245/// FIXME: document
246///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000247void ExecutionEngine::StoreValueToMemory(GenericValue Val, GenericValue *Ptr,
Misha Brukman4afac182003-10-10 17:45:12 +0000248 const Type *Ty) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000249 if (getTargetData().isLittleEndian()) {
250 switch (Ty->getPrimitiveID()) {
251 case Type::BoolTyID:
252 case Type::UByteTyID:
253 case Type::SByteTyID: Ptr->Untyped[0] = Val.UByteVal; break;
254 case Type::UShortTyID:
255 case Type::ShortTyID: Ptr->Untyped[0] = Val.UShortVal & 255;
256 Ptr->Untyped[1] = (Val.UShortVal >> 8) & 255;
257 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000258 Store4BytesLittleEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000259 case Type::FloatTyID:
260 case Type::UIntTyID:
261 case Type::IntTyID: Ptr->Untyped[0] = Val.UIntVal & 255;
262 Ptr->Untyped[1] = (Val.UIntVal >> 8) & 255;
263 Ptr->Untyped[2] = (Val.UIntVal >> 16) & 255;
264 Ptr->Untyped[3] = (Val.UIntVal >> 24) & 255;
265 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000266 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattner2be50792003-04-23 20:41:01 +0000267 goto Store4BytesLittleEndian;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000268 case Type::DoubleTyID:
269 case Type::ULongTyID:
Chris Lattner2be50792003-04-23 20:41:01 +0000270 case Type::LongTyID: Ptr->Untyped[0] = Val.ULongVal & 255;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000271 Ptr->Untyped[1] = (Val.ULongVal >> 8) & 255;
272 Ptr->Untyped[2] = (Val.ULongVal >> 16) & 255;
273 Ptr->Untyped[3] = (Val.ULongVal >> 24) & 255;
274 Ptr->Untyped[4] = (Val.ULongVal >> 32) & 255;
275 Ptr->Untyped[5] = (Val.ULongVal >> 40) & 255;
276 Ptr->Untyped[6] = (Val.ULongVal >> 48) & 255;
277 Ptr->Untyped[7] = (Val.ULongVal >> 56) & 255;
278 break;
279 default:
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000280 std::cout << "Cannot store value of type " << Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000281 }
282 } else {
283 switch (Ty->getPrimitiveID()) {
284 case Type::BoolTyID:
285 case Type::UByteTyID:
286 case Type::SByteTyID: Ptr->Untyped[0] = Val.UByteVal; break;
287 case Type::UShortTyID:
288 case Type::ShortTyID: Ptr->Untyped[1] = Val.UShortVal & 255;
289 Ptr->Untyped[0] = (Val.UShortVal >> 8) & 255;
290 break;
Chris Lattner2be50792003-04-23 20:41:01 +0000291 Store4BytesBigEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000292 case Type::FloatTyID:
293 case Type::UIntTyID:
294 case Type::IntTyID: Ptr->Untyped[3] = Val.UIntVal & 255;
295 Ptr->Untyped[2] = (Val.UIntVal >> 8) & 255;
296 Ptr->Untyped[1] = (Val.UIntVal >> 16) & 255;
297 Ptr->Untyped[0] = (Val.UIntVal >> 24) & 255;
298 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000299 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattner2be50792003-04-23 20:41:01 +0000300 goto Store4BytesBigEndian;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000301 case Type::DoubleTyID:
302 case Type::ULongTyID:
Chris Lattner2be50792003-04-23 20:41:01 +0000303 case Type::LongTyID: Ptr->Untyped[7] = Val.ULongVal & 255;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000304 Ptr->Untyped[6] = (Val.ULongVal >> 8) & 255;
305 Ptr->Untyped[5] = (Val.ULongVal >> 16) & 255;
306 Ptr->Untyped[4] = (Val.ULongVal >> 24) & 255;
307 Ptr->Untyped[3] = (Val.ULongVal >> 32) & 255;
308 Ptr->Untyped[2] = (Val.ULongVal >> 40) & 255;
309 Ptr->Untyped[1] = (Val.ULongVal >> 48) & 255;
310 Ptr->Untyped[0] = (Val.ULongVal >> 56) & 255;
311 break;
312 default:
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000313 std::cout << "Cannot store value of type " << Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000314 }
315 }
316}
317
Misha Brukman4afac182003-10-10 17:45:12 +0000318/// FIXME: document
319///
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000320GenericValue ExecutionEngine::LoadValueFromMemory(GenericValue *Ptr,
321 const Type *Ty) {
322 GenericValue Result;
323 if (getTargetData().isLittleEndian()) {
324 switch (Ty->getPrimitiveID()) {
325 case Type::BoolTyID:
326 case Type::UByteTyID:
327 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
328 case Type::UShortTyID:
329 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[0] |
330 ((unsigned)Ptr->Untyped[1] << 8);
331 break;
332 Load4BytesLittleEndian:
333 case Type::FloatTyID:
334 case Type::UIntTyID:
335 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[0] |
336 ((unsigned)Ptr->Untyped[1] << 8) |
337 ((unsigned)Ptr->Untyped[2] << 16) |
338 ((unsigned)Ptr->Untyped[3] << 24);
339 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000340 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000341 goto Load4BytesLittleEndian;
342 case Type::DoubleTyID:
343 case Type::ULongTyID:
344 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[0] |
345 ((uint64_t)Ptr->Untyped[1] << 8) |
346 ((uint64_t)Ptr->Untyped[2] << 16) |
347 ((uint64_t)Ptr->Untyped[3] << 24) |
348 ((uint64_t)Ptr->Untyped[4] << 32) |
349 ((uint64_t)Ptr->Untyped[5] << 40) |
350 ((uint64_t)Ptr->Untyped[6] << 48) |
351 ((uint64_t)Ptr->Untyped[7] << 56);
352 break;
353 default:
354 std::cout << "Cannot load value of type " << *Ty << "!\n";
355 abort();
356 }
357 } else {
358 switch (Ty->getPrimitiveID()) {
359 case Type::BoolTyID:
360 case Type::UByteTyID:
361 case Type::SByteTyID: Result.UByteVal = Ptr->Untyped[0]; break;
362 case Type::UShortTyID:
363 case Type::ShortTyID: Result.UShortVal = (unsigned)Ptr->Untyped[1] |
364 ((unsigned)Ptr->Untyped[0] << 8);
365 break;
366 Load4BytesBigEndian:
367 case Type::FloatTyID:
368 case Type::UIntTyID:
369 case Type::IntTyID: Result.UIntVal = (unsigned)Ptr->Untyped[3] |
370 ((unsigned)Ptr->Untyped[2] << 8) |
371 ((unsigned)Ptr->Untyped[1] << 16) |
372 ((unsigned)Ptr->Untyped[0] << 24);
373 break;
Chris Lattnerc879e8f2003-08-24 19:55:26 +0000374 case Type::PointerTyID: if (getTargetData().getPointerSize() == 4)
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000375 goto Load4BytesBigEndian;
376 case Type::DoubleTyID:
377 case Type::ULongTyID:
378 case Type::LongTyID: Result.ULongVal = (uint64_t)Ptr->Untyped[7] |
379 ((uint64_t)Ptr->Untyped[6] << 8) |
380 ((uint64_t)Ptr->Untyped[5] << 16) |
381 ((uint64_t)Ptr->Untyped[4] << 24) |
382 ((uint64_t)Ptr->Untyped[3] << 32) |
383 ((uint64_t)Ptr->Untyped[2] << 40) |
384 ((uint64_t)Ptr->Untyped[1] << 48) |
385 ((uint64_t)Ptr->Untyped[0] << 56);
386 break;
387 default:
388 std::cout << "Cannot load value of type " << *Ty << "!\n";
389 abort();
390 }
391 }
392 return Result;
393}
394
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000395// InitializeMemory - Recursive function to apply a Constant value into the
396// specified memory location...
397//
398void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
399 if (Init->getType()->isFirstClassType()) {
400 GenericValue Val = getConstantValue(Init);
401 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
402 return;
403 }
404
405 switch (Init->getType()->getPrimitiveID()) {
406 case Type::ArrayTyID: {
407 const ConstantArray *CPA = cast<ConstantArray>(Init);
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000408 const std::vector<Use> &Val = CPA->getValues();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000409 unsigned ElementSize =
410 getTargetData().getTypeSize(cast<ArrayType>(CPA->getType())->getElementType());
411 for (unsigned i = 0; i < Val.size(); ++i)
412 InitializeMemory(cast<Constant>(Val[i].get()), (char*)Addr+i*ElementSize);
413 return;
414 }
415
416 case Type::StructTyID: {
417 const ConstantStruct *CPS = cast<ConstantStruct>(Init);
418 const StructLayout *SL =
419 getTargetData().getStructLayout(cast<StructType>(CPS->getType()));
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000420 const std::vector<Use> &Val = CPS->getValues();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000421 for (unsigned i = 0; i < Val.size(); ++i)
422 InitializeMemory(cast<Constant>(Val[i].get()),
423 (char*)Addr+SL->MemberOffsets[i]);
424 return;
425 }
426
427 default:
428 std::cerr << "Bad Type: " << Init->getType() << "\n";
429 assert(0 && "Unknown constant type to initialize memory with!");
430 }
431}
432
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000433/// EmitGlobals - Emit all of the global variables to memory, storing their
434/// addresses into GlobalAddress. This must make sure to copy the contents of
435/// their initializers into the memory.
436///
437void ExecutionEngine::emitGlobals() {
438 const TargetData &TD = getTargetData();
439
440 // Loop over all of the global variables in the program, allocating the memory
441 // to hold them.
442 for (Module::giterator I = getModule().gbegin(), E = getModule().gend();
443 I != E; ++I)
444 if (!I->isExternal()) {
445 // Get the type of the global...
446 const Type *Ty = I->getType()->getElementType();
447
448 // Allocate some memory for it!
449 unsigned Size = TD.getTypeSize(Ty);
Chris Lattner24b0a182003-12-20 02:45:37 +0000450 addGlobalMapping(I, new char[Size]);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000451
452 DEBUG(std::cerr << "Global '" << I->getName() << "' -> "
Chris Lattner55d86482003-12-31 20:21:04 +0000453 << getPointerToGlobal(I) << "\n");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000454 } else {
Brian Gaeke322cdb22003-10-10 17:02:42 +0000455 // External variable reference. Try to use the dynamic loader to
456 // get a pointer to it.
457 if (void *SymAddr = GetAddressOfSymbol(I->getName().c_str()))
Chris Lattner55d86482003-12-31 20:21:04 +0000458 addGlobalMapping(I, SymAddr);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000459 else {
460 std::cerr << "Could not resolve external global address: "
461 << I->getName() << "\n";
462 abort();
463 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000464 }
465
466 // Now that all of the globals are set up in memory, loop through them all and
467 // initialize their contents.
468 for (Module::giterator I = getModule().gbegin(), E = getModule().gend();
469 I != E; ++I)
470 if (!I->isExternal())
Chris Lattner24b0a182003-12-20 02:45:37 +0000471 EmitGlobalVariable(I);
472}
473
474// EmitGlobalVariable - This method emits the specified global variable to the
475// address specified in GlobalAddresses, or allocates new memory if it's not
476// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +0000477void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +0000478 void *GA = getPointerToGlobalIfAvailable(GV);
Chris Lattnerc07ed132003-12-20 03:36:47 +0000479 const Type *ElTy = GV->getType()->getElementType();
Chris Lattner24b0a182003-12-20 02:45:37 +0000480 if (GA == 0) {
481 // If it's not already specified, allocate memory for the global.
Chris Lattnerc07ed132003-12-20 03:36:47 +0000482 GA = new char[getTargetData().getTypeSize(ElTy)];
Chris Lattner55d86482003-12-31 20:21:04 +0000483 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +0000484 }
Chris Lattnerc07ed132003-12-20 03:36:47 +0000485
Chris Lattner24b0a182003-12-20 02:45:37 +0000486 InitializeMemory(GV->getInitializer(), GA);
Chris Lattnerc07ed132003-12-20 03:36:47 +0000487 NumInitBytes += getTargetData().getTypeSize(ElTy);
Chris Lattner24b0a182003-12-20 02:45:37 +0000488 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000489}