blob: 47266bf5920fb9028a8ca6bea7dd8734d496270b [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"
Chris Lattnere7fd5532006-05-08 22:00:52 +000024#include "llvm/Support/MutexGuard.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000025#include "llvm/System/DynamicLibrary.h"
26#include "llvm/Target/TargetData.h"
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000027using namespace llvm;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000028
Chris Lattner36343732006-12-19 22:43:32 +000029STATISTIC(NumInitBytes, "Number of bytes of global vars initialized");
30STATISTIC(NumGlobals , "Number of global vars initialized");
Chris Lattnerbd199fb2002-12-24 00:01:05 +000031
Chris Lattner2fe4bb02006-03-22 06:07:50 +000032ExecutionEngine::EECtorFn ExecutionEngine::JITCtor = 0;
33ExecutionEngine::EECtorFn ExecutionEngine::InterpCtor = 0;
34
Chris Lattnerfe854032006-08-16 01:24:12 +000035ExecutionEngine::ExecutionEngine(ModuleProvider *P) {
Chris Lattner3d6e33d2006-11-09 19:31:15 +000036 LazyCompilationDisabled = false;
Chris Lattnerfe854032006-08-16 01:24:12 +000037 Modules.push_back(P);
Misha Brukman19684162003-10-16 21:18:05 +000038 assert(P && "ModuleProvider is null?");
39}
40
Chris Lattnerfe854032006-08-16 01:24:12 +000041ExecutionEngine::ExecutionEngine(Module *M) {
Chris Lattner3d6e33d2006-11-09 19:31:15 +000042 LazyCompilationDisabled = false;
Misha Brukman05701572003-10-17 18:31:59 +000043 assert(M && "Module is null?");
Chris Lattnerfe854032006-08-16 01:24:12 +000044 Modules.push_back(new ExistingModuleProvider(M));
Misha Brukman19684162003-10-16 21:18:05 +000045}
46
Brian Gaeke8e539482003-09-04 22:57:27 +000047ExecutionEngine::~ExecutionEngine() {
Chris Lattnerfe854032006-08-16 01:24:12 +000048 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
49 delete Modules[i];
Brian Gaeke8e539482003-09-04 22:57:27 +000050}
51
Chris Lattnerfe854032006-08-16 01:24:12 +000052/// FindFunctionNamed - Search all of the active modules to find the one that
53/// defines FnName. This is very slow operation and shouldn't be used for
54/// general code.
55Function *ExecutionEngine::FindFunctionNamed(const char *FnName) {
56 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
Reid Spencer688b0492007-02-05 21:19:13 +000057 if (Function *F = Modules[i]->getModule()->getFunction(FnName))
Chris Lattnerfe854032006-08-16 01:24:12 +000058 return F;
59 }
60 return 0;
61}
62
63
Chris Lattnere7fd5532006-05-08 22:00:52 +000064/// addGlobalMapping - Tell the execution engine that the specified global is
65/// at the specified location. This is used internally as functions are JIT'd
66/// and as global variables are laid out in memory. It can and should also be
67/// used by clients of the EE that want to have an LLVM global overlay
68/// existing data in memory.
69void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) {
70 MutexGuard locked(lock);
71
72 void *&CurVal = state.getGlobalAddressMap(locked)[GV];
73 assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!");
74 CurVal = Addr;
75
76 // If we are using the reverse mapping, add it too
77 if (!state.getGlobalAddressReverseMap(locked).empty()) {
78 const GlobalValue *&V = state.getGlobalAddressReverseMap(locked)[Addr];
79 assert((V == 0 || GV == 0) && "GlobalMapping already established!");
80 V = GV;
81 }
82}
83
84/// clearAllGlobalMappings - Clear all global mappings and start over again
85/// use in dynamic compilation scenarios when you want to move globals
86void ExecutionEngine::clearAllGlobalMappings() {
87 MutexGuard locked(lock);
88
89 state.getGlobalAddressMap(locked).clear();
90 state.getGlobalAddressReverseMap(locked).clear();
91}
92
93/// updateGlobalMapping - Replace an existing mapping for GV with a new
94/// address. This updates both maps as required. If "Addr" is null, the
95/// entry for the global is removed from the mappings.
96void ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) {
97 MutexGuard locked(lock);
98
99 // Deleting from the mapping?
100 if (Addr == 0) {
101 state.getGlobalAddressMap(locked).erase(GV);
102 if (!state.getGlobalAddressReverseMap(locked).empty())
103 state.getGlobalAddressReverseMap(locked).erase(Addr);
104 return;
105 }
106
107 void *&CurVal = state.getGlobalAddressMap(locked)[GV];
108 if (CurVal && !state.getGlobalAddressReverseMap(locked).empty())
109 state.getGlobalAddressReverseMap(locked).erase(CurVal);
110 CurVal = Addr;
111
112 // If we are using the reverse mapping, add it too
113 if (!state.getGlobalAddressReverseMap(locked).empty()) {
114 const GlobalValue *&V = state.getGlobalAddressReverseMap(locked)[Addr];
115 assert((V == 0 || GV == 0) && "GlobalMapping already established!");
116 V = GV;
117 }
118}
119
120/// getPointerToGlobalIfAvailable - This returns the address of the specified
121/// global value if it is has already been codegen'd, otherwise it returns null.
122///
123void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
124 MutexGuard locked(lock);
125
126 std::map<const GlobalValue*, void*>::iterator I =
127 state.getGlobalAddressMap(locked).find(GV);
128 return I != state.getGlobalAddressMap(locked).end() ? I->second : 0;
129}
130
Chris Lattner55d86482003-12-31 20:21:04 +0000131/// getGlobalValueAtAddress - Return the LLVM global value object that starts
132/// at the specified address.
133///
134const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
Reid Spenceree448632005-07-12 15:51:55 +0000135 MutexGuard locked(lock);
136
Chris Lattner55d86482003-12-31 20:21:04 +0000137 // If we haven't computed the reverse mapping yet, do so first.
Reid Spenceree448632005-07-12 15:51:55 +0000138 if (state.getGlobalAddressReverseMap(locked).empty()) {
Chris Lattnere7fd5532006-05-08 22:00:52 +0000139 for (std::map<const GlobalValue*, void *>::iterator
140 I = state.getGlobalAddressMap(locked).begin(),
141 E = state.getGlobalAddressMap(locked).end(); I != E; ++I)
142 state.getGlobalAddressReverseMap(locked).insert(std::make_pair(I->second,
143 I->first));
Chris Lattner55d86482003-12-31 20:21:04 +0000144 }
145
146 std::map<void *, const GlobalValue*>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +0000147 state.getGlobalAddressReverseMap(locked).find(Addr);
148 return I != state.getGlobalAddressReverseMap(locked).end() ? I->second : 0;
Chris Lattner55d86482003-12-31 20:21:04 +0000149}
Chris Lattner87f03102003-12-26 06:50:30 +0000150
151// CreateArgv - Turn a vector of strings into a nice argv style array of
152// pointers to null terminated strings.
153//
154static void *CreateArgv(ExecutionEngine *EE,
155 const std::vector<std::string> &InputArgv) {
Owen Andersona69571c2006-05-03 01:29:57 +0000156 unsigned PtrSize = EE->getTargetData()->getPointerSize();
Chris Lattner87f03102003-12-26 06:50:30 +0000157 char *Result = new char[(InputArgv.size()+1)*PtrSize];
158
Bill Wendling480f0932006-11-27 23:54:50 +0000159 DOUT << "ARGV = " << (void*)Result << "\n";
Reid Spencere49661b2006-12-31 05:51:36 +0000160 const Type *SBytePtr = PointerType::get(Type::Int8Ty);
Chris Lattner87f03102003-12-26 06:50:30 +0000161
162 for (unsigned i = 0; i != InputArgv.size(); ++i) {
163 unsigned Size = InputArgv[i].size()+1;
164 char *Dest = new char[Size];
Bill Wendling480f0932006-11-27 23:54:50 +0000165 DOUT << "ARGV[" << i << "] = " << (void*)Dest << "\n";
Misha Brukmanedf128a2005-04-21 22:36:52 +0000166
Chris Lattner87f03102003-12-26 06:50:30 +0000167 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
168 Dest[Size-1] = 0;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000169
Chris Lattner87f03102003-12-26 06:50:30 +0000170 // Endian safe: Result[i] = (PointerTy)Dest;
171 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i*PtrSize),
172 SBytePtr);
173 }
174
175 // Null terminate it
176 EE->StoreValueToMemory(PTOGV(0),
177 (GenericValue*)(Result+InputArgv.size()*PtrSize),
178 SBytePtr);
179 return Result;
180}
181
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000182
183/// runStaticConstructorsDestructors - This method is used to execute all of
Chris Lattnerfe854032006-08-16 01:24:12 +0000184/// the static constructors or destructors for a program, depending on the
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000185/// value of isDtors.
186void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
187 const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000188
Chris Lattnerfe854032006-08-16 01:24:12 +0000189 // Execute global ctors/dtors for each module in the program.
190 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
191 GlobalVariable *GV = Modules[m]->getModule()->getNamedGlobal(Name);
192
193 // If this global has internal linkage, or if it has a use, then it must be
194 // an old-style (llvmgcc3) static ctor with __main linked in and in use. If
195 // this is the case, don't execute any of the global ctors, __main will do
196 // it.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000197 if (!GV || GV->isDeclaration() || GV->hasInternalLinkage()) continue;
Chris Lattnerfe854032006-08-16 01:24:12 +0000198
199 // Should be an array of '{ int, void ()* }' structs. The first value is
200 // the init priority, which we ignore.
201 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
202 if (!InitList) continue;
203 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
204 if (ConstantStruct *CS =
205 dyn_cast<ConstantStruct>(InitList->getOperand(i))) {
206 if (CS->getNumOperands() != 2) break; // Not array of 2-element structs.
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000207
Chris Lattnerfe854032006-08-16 01:24:12 +0000208 Constant *FP = CS->getOperand(1);
209 if (FP->isNullValue())
210 break; // Found a null terminator, exit.
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000211
Chris Lattnerfe854032006-08-16 01:24:12 +0000212 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +0000213 if (CE->isCast())
Chris Lattnerfe854032006-08-16 01:24:12 +0000214 FP = CE->getOperand(0);
215 if (Function *F = dyn_cast<Function>(FP)) {
216 // Execute the ctor/dtor function!
217 runFunction(F, std::vector<GenericValue>());
218 }
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000219 }
Chris Lattnerfe854032006-08-16 01:24:12 +0000220 }
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000221}
222
Chris Lattner87f03102003-12-26 06:50:30 +0000223/// runFunctionAsMain - This is a helper function which wraps runFunction to
224/// handle the common task of starting up main with the specified argc, argv,
225/// and envp parameters.
226int ExecutionEngine::runFunctionAsMain(Function *Fn,
227 const std::vector<std::string> &argv,
228 const char * const * envp) {
229 std::vector<GenericValue> GVArgs;
230 GenericValue GVArgc;
Reid Spencere49661b2006-12-31 05:51:36 +0000231 GVArgc.Int32Val = argv.size();
Chris Lattnerf24d0992004-08-16 01:05:35 +0000232 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
233 if (NumArgs) {
234 GVArgs.push_back(GVArgc); // Arg #0 = argc.
235 if (NumArgs > 1) {
236 GVArgs.push_back(PTOGV(CreateArgv(this, argv))); // Arg #1 = argv.
237 assert(((char **)GVTOP(GVArgs[1]))[0] &&
238 "argv[0] was null after CreateArgv");
239 if (NumArgs > 2) {
240 std::vector<std::string> EnvVars;
241 for (unsigned i = 0; envp[i]; ++i)
242 EnvVars.push_back(envp[i]);
243 GVArgs.push_back(PTOGV(CreateArgv(this, EnvVars))); // Arg #2 = envp.
244 }
245 }
246 }
Reid Spencere49661b2006-12-31 05:51:36 +0000247 return runFunction(Fn, GVArgs).Int32Val;
Chris Lattner87f03102003-12-26 06:50:30 +0000248}
249
Misha Brukman19684162003-10-16 21:18:05 +0000250/// If possible, create a JIT, unless the caller specifically requests an
251/// Interpreter or there's an error. If even an Interpreter cannot be created,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000252/// NULL is returned.
Misha Brukman4afac182003-10-10 17:45:12 +0000253///
Misha Brukmanedf128a2005-04-21 22:36:52 +0000254ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
Chris Lattner726c1ef2006-03-23 05:22:51 +0000255 bool ForceInterpreter) {
Brian Gaeke82d82772003-09-03 20:34:19 +0000256 ExecutionEngine *EE = 0;
257
Chris Lattner73011782003-12-28 09:44:37 +0000258 // Unless the interpreter was explicitly selected, try making a JIT.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000259 if (!ForceInterpreter && JITCtor)
Chris Lattner726c1ef2006-03-23 05:22:51 +0000260 EE = JITCtor(MP);
Brian Gaeke82d82772003-09-03 20:34:19 +0000261
262 // If we can't make a JIT, make an interpreter instead.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000263 if (EE == 0 && InterpCtor)
Chris Lattner726c1ef2006-03-23 05:22:51 +0000264 EE = InterpCtor(MP);
Chris Lattner73011782003-12-28 09:44:37 +0000265
Chris Lattner726c1ef2006-03-23 05:22:51 +0000266 if (EE) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000267 // Make sure we can resolve symbols in the program as well. The zero arg
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000268 // to the function tells DynamicLibrary to load the program, not a library.
Chris Lattner6f3ada52006-05-14 19:01:55 +0000269 try {
270 sys::DynamicLibrary::LoadLibraryPermanently(0);
271 } catch (...) {
272 }
Chris Lattner726c1ef2006-03-23 05:22:51 +0000273 }
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000274
Brian Gaeke82d82772003-09-03 20:34:19 +0000275 return EE;
276}
277
Misha Brukman4afac182003-10-10 17:45:12 +0000278/// getPointerToGlobal - This returns the address of the specified global
279/// value. This may involve code generation if it's a function.
280///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000281void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000282 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000283 return getPointerToFunction(F);
284
Reid Spenceree448632005-07-12 15:51:55 +0000285 MutexGuard locked(lock);
Jeff Cohen68835dd2006-02-07 05:11:57 +0000286 void *p = state.getGlobalAddressMap(locked)[GV];
287 if (p)
288 return p;
289
290 // Global variable might have been added since interpreter started.
291 if (GlobalVariable *GVar =
292 const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
293 EmitGlobalVariable(GVar);
294 else
Chris Lattner64f150f2007-02-14 06:20:04 +0000295 assert(0 && "Global hasn't had an address allocated yet!");
Reid Spenceree448632005-07-12 15:51:55 +0000296 return state.getGlobalAddressMap(locked)[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000297}
298
Reid Spencera54b7cb2007-01-12 07:05:14 +0000299/// This macro is used to handle a variety of situations involing integer
300/// values where the action should be done to one of the GenericValue members.
301/// THEINTTY is a const Type * for the integer type. ACTION1 comes before
302/// the GenericValue, ACTION2 comes after.
303#define DO_FOR_INTEGER(THEINTTY, ACTION) \
304 { \
305 unsigned BitWidth = cast<IntegerType>(THEINTTY)->getBitWidth(); \
306 if (BitWidth == 1) {\
307 ACTION(Int1Val); \
308 } else if (BitWidth <= 8) {\
309 ACTION(Int8Val); \
310 } else if (BitWidth <= 16) {\
311 ACTION(Int16Val); \
312 } else if (BitWidth <= 32) { \
313 ACTION(Int32Val); \
314 } else if (BitWidth <= 64) { \
315 ACTION(Int64Val); \
316 } else {\
317 assert(0 && "Not implemented: integer types > 64 bits"); \
318 } \
319 }
320
Reid Spencer3da59db2006-11-27 01:05:10 +0000321/// This function converts a Constant* into a GenericValue. The interesting
322/// part is if C is a ConstantExpr.
323/// @brief Get a GenericValue for a Constnat*
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000324GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000325 // Declare the result as garbage.
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000326 GenericValue Result;
Reid Spencer3da59db2006-11-27 01:05:10 +0000327
328 // If its undefined, return the garbage.
Chris Lattner6f335f92004-10-26 05:35:14 +0000329 if (isa<UndefValue>(C)) return Result;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000330
Reid Spencer3da59db2006-11-27 01:05:10 +0000331 // If the value is a ConstantExpr
332 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000333 switch (CE->getOpcode()) {
334 case Instruction::GetElementPtr: {
Reid Spencer3da59db2006-11-27 01:05:10 +0000335 // Compute the index
Chris Lattner9a231222003-05-14 17:51:49 +0000336 Result = getConstantValue(CE->getOperand(0));
Chris Lattner829621c2007-02-10 20:35:22 +0000337 SmallVector<Value*, 8> Indices(CE->op_begin()+1, CE->op_end());
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000338 uint64_t Offset =
Chris Lattner829621c2007-02-10 20:35:22 +0000339 TD->getIndexedOffset(CE->getOperand(0)->getType(),
340 &Indices[0], Indices.size());
Misha Brukmanedf128a2005-04-21 22:36:52 +0000341
Owen Andersona69571c2006-05-03 01:29:57 +0000342 if (getTargetData()->getPointerSize() == 4)
Reid Spencere49661b2006-12-31 05:51:36 +0000343 Result.Int32Val += Offset;
Chris Lattner3db4b622005-10-23 23:54:56 +0000344 else
Reid Spencere49661b2006-12-31 05:51:36 +0000345 Result.Int64Val += Offset;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000346 return Result;
347 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000348 case Instruction::Trunc:
349 case Instruction::ZExt:
350 case Instruction::SExt:
351 case Instruction::FPTrunc:
352 case Instruction::FPExt:
353 case Instruction::UIToFP:
354 case Instruction::SIToFP:
355 case Instruction::FPToUI:
356 case Instruction::FPToSI:
357 break;
358 case Instruction::PtrToInt: {
Chris Lattner9a231222003-05-14 17:51:49 +0000359 Constant *Op = CE->getOperand(0);
Chris Lattner7d1bd332004-03-16 08:38:56 +0000360 GenericValue GV = getConstantValue(Op);
Reid Spencer3da59db2006-11-27 01:05:10 +0000361 return GV;
362 }
363 case Instruction::BitCast: {
364 // Bit casts are no-ops but we can only return the GV of the operand if
365 // they are the same basic type (pointer->pointer, packed->packed, etc.)
366 Constant *Op = CE->getOperand(0);
367 GenericValue GV = getConstantValue(Op);
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000368 if (Op->getType()->getTypeID() == C->getType()->getTypeID())
Chris Lattner7d1bd332004-03-16 08:38:56 +0000369 return GV;
Reid Spencer3da59db2006-11-27 01:05:10 +0000370 break;
371 }
372 case Instruction::IntToPtr: {
373 // IntToPtr casts are just so special. Cast to intptr_t first.
374 Constant *Op = CE->getOperand(0);
375 GenericValue GV = getConstantValue(Op);
Reid Spencera54b7cb2007-01-12 07:05:14 +0000376#define INT_TO_PTR_ACTION(FIELD) \
377 return PTOGV((void*)(uintptr_t)GV.FIELD)
378 DO_FOR_INTEGER(Op->getType(), INT_TO_PTR_ACTION)
379#undef INT_TO_PTR_ACTION
Chris Lattner9a231222003-05-14 17:51:49 +0000380 break;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000381 }
Chris Lattner9a231222003-05-14 17:51:49 +0000382 case Instruction::Add:
Chris Lattner5f90cb82004-07-11 08:01:11 +0000383 switch (CE->getOperand(0)->getType()->getTypeID()) {
384 default: assert(0 && "Bad add type!"); abort();
Reid Spencera54b7cb2007-01-12 07:05:14 +0000385 case Type::IntegerTyID:
386#define ADD_ACTION(FIELD) \
387 Result.FIELD = getConstantValue(CE->getOperand(0)).FIELD + \
388 getConstantValue(CE->getOperand(1)).FIELD;
389 DO_FOR_INTEGER(CE->getOperand(0)->getType(),ADD_ACTION);
390#undef ADD_ACTION
Chris Lattner5f90cb82004-07-11 08:01:11 +0000391 break;
392 case Type::FloatTyID:
393 Result.FloatVal = getConstantValue(CE->getOperand(0)).FloatVal +
394 getConstantValue(CE->getOperand(1)).FloatVal;
395 break;
396 case Type::DoubleTyID:
397 Result.DoubleVal = getConstantValue(CE->getOperand(0)).DoubleVal +
398 getConstantValue(CE->getOperand(1)).DoubleVal;
399 break;
400 }
Chris Lattner9a231222003-05-14 17:51:49 +0000401 return Result;
Chris Lattner9a231222003-05-14 17:51:49 +0000402 default:
403 break;
404 }
Bill Wendlinge8156192006-12-07 01:30:32 +0000405 cerr << "ConstantExpr not handled as global var init: " << *CE << "\n";
Chris Lattner9a231222003-05-14 17:51:49 +0000406 abort();
407 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000408
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000409 switch (C->getType()->getTypeID()) {
Reid Spencerb83eb642006-10-20 07:07:24 +0000410#define GET_CONST_VAL(TY, CTY, CLASS, GETMETH) \
411 case Type::TY##TyID: Result.TY##Val = (CTY)cast<CLASS>(C)->GETMETH(); break
Reid Spencere49661b2006-12-31 05:51:36 +0000412 GET_CONST_VAL(Float , float , ConstantFP, getValue);
413 GET_CONST_VAL(Double, double , ConstantFP, getValue);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000414#undef GET_CONST_VAL
Reid Spencera54b7cb2007-01-12 07:05:14 +0000415 case Type::IntegerTyID: {
416 unsigned BitWidth = cast<IntegerType>(C->getType())->getBitWidth();
417 if (BitWidth == 1)
418 Result.Int1Val = (bool)cast<ConstantInt>(C)->getZExtValue();
419 else if (BitWidth <= 8)
420 Result.Int8Val = (uint8_t )cast<ConstantInt>(C)->getZExtValue();
421 else if (BitWidth <= 16)
422 Result.Int16Val = (uint16_t )cast<ConstantInt>(C)->getZExtValue();
423 else if (BitWidth <= 32)
424 Result.Int32Val = (uint32_t )cast<ConstantInt>(C)->getZExtValue();
425 else if (BitWidth <= 64)
426 Result.Int64Val = (uint64_t )cast<ConstantInt>(C)->getZExtValue();
427 else
Chris Lattner64f150f2007-02-14 06:20:04 +0000428 assert(0 && "Integers with > 64-bits not implemented");
Reid Spencera54b7cb2007-01-12 07:05:14 +0000429 break;
430 }
431
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000432 case Type::PointerTyID:
Reid Spencer40cf2f92004-07-18 00:41:27 +0000433 if (isa<ConstantPointerNull>(C))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000434 Result.PointerVal = 0;
Reid Spencer40cf2f92004-07-18 00:41:27 +0000435 else if (const Function *F = dyn_cast<Function>(C))
436 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
437 else if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
438 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
439 else
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000440 assert(0 && "Unknown constant pointer type!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000441 break;
442 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000443 cerr << "ERROR: Constant unimp for type: " << *C->getType() << "\n";
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000444 abort();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000445 }
446 return Result;
447}
448
Nate Begeman37efe672006-04-22 18:53:45 +0000449/// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr. Ptr
450/// is the address of the memory at which to store Val, cast to GenericValue *.
451/// It is not a pointer to a GenericValue containing the address at which to
452/// store Val.
Misha Brukman4afac182003-10-10 17:45:12 +0000453///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000454void ExecutionEngine::StoreValueToMemory(GenericValue Val, GenericValue *Ptr,
Misha Brukman4afac182003-10-10 17:45:12 +0000455 const Type *Ty) {
Owen Andersona69571c2006-05-03 01:29:57 +0000456 if (getTargetData()->isLittleEndian()) {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000457 switch (Ty->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000458 case Type::IntegerTyID: {
459 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
Reid Spencerc1030572007-01-19 21:13:56 +0000460 uint64_t BitMask = cast<IntegerType>(Ty)->getBitMask();
Reid Spencerf89aec62007-01-18 01:24:02 +0000461 GenericValue TmpVal = Val;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000462 if (BitWidth <= 8)
Reid Spencerf89aec62007-01-18 01:24:02 +0000463 Ptr->Untyped[0] = Val.Int8Val & BitMask;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000464 else if (BitWidth <= 16) {
Reid Spencerf89aec62007-01-18 01:24:02 +0000465 TmpVal.Int16Val &= BitMask;
466 Ptr->Untyped[0] = TmpVal.Int16Val & 255;
467 Ptr->Untyped[1] = (TmpVal.Int16Val >> 8) & 255;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000468 } else if (BitWidth <= 32) {
Reid Spencerf89aec62007-01-18 01:24:02 +0000469 TmpVal.Int32Val &= BitMask;
470 Ptr->Untyped[0] = TmpVal.Int32Val & 255;
471 Ptr->Untyped[1] = (TmpVal.Int32Val >> 8) & 255;
472 Ptr->Untyped[2] = (TmpVal.Int32Val >> 16) & 255;
473 Ptr->Untyped[3] = (TmpVal.Int32Val >> 24) & 255;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000474 } else if (BitWidth <= 64) {
Reid Spencerf89aec62007-01-18 01:24:02 +0000475 TmpVal.Int64Val &= BitMask;
476 Ptr->Untyped[0] = (unsigned char)(TmpVal.Int64Val );
477 Ptr->Untyped[1] = (unsigned char)(TmpVal.Int64Val >> 8);
478 Ptr->Untyped[2] = (unsigned char)(TmpVal.Int64Val >> 16);
479 Ptr->Untyped[3] = (unsigned char)(TmpVal.Int64Val >> 24);
480 Ptr->Untyped[4] = (unsigned char)(TmpVal.Int64Val >> 32);
481 Ptr->Untyped[5] = (unsigned char)(TmpVal.Int64Val >> 40);
482 Ptr->Untyped[6] = (unsigned char)(TmpVal.Int64Val >> 48);
483 Ptr->Untyped[7] = (unsigned char)(TmpVal.Int64Val >> 56);
Reid Spencera54b7cb2007-01-12 07:05:14 +0000484 } else
485 assert(0 && "Integer types > 64 bits not supported");
486 break;
487 }
488Store4BytesLittleEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000489 case Type::FloatTyID:
Reid Spencera54b7cb2007-01-12 07:05:14 +0000490 Ptr->Untyped[0] = Val.Int32Val & 255;
491 Ptr->Untyped[1] = (Val.Int32Val >> 8) & 255;
492 Ptr->Untyped[2] = (Val.Int32Val >> 16) & 255;
493 Ptr->Untyped[3] = (Val.Int32Val >> 24) & 255;
494 break;
495 case Type::PointerTyID:
496 if (getTargetData()->getPointerSize() == 4)
497 goto Store4BytesLittleEndian;
498 /* FALL THROUGH */
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000499 case Type::DoubleTyID:
Reid Spencere49661b2006-12-31 05:51:36 +0000500 Ptr->Untyped[0] = (unsigned char)(Val.Int64Val );
501 Ptr->Untyped[1] = (unsigned char)(Val.Int64Val >> 8);
502 Ptr->Untyped[2] = (unsigned char)(Val.Int64Val >> 16);
503 Ptr->Untyped[3] = (unsigned char)(Val.Int64Val >> 24);
504 Ptr->Untyped[4] = (unsigned char)(Val.Int64Val >> 32);
505 Ptr->Untyped[5] = (unsigned char)(Val.Int64Val >> 40);
506 Ptr->Untyped[6] = (unsigned char)(Val.Int64Val >> 48);
507 Ptr->Untyped[7] = (unsigned char)(Val.Int64Val >> 56);
Chris Lattner813c8152005-01-08 20:13:19 +0000508 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000509 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000510 cerr << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000511 }
512 } else {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000513 switch (Ty->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000514 case Type::IntegerTyID: {
515 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
Reid Spencerc1030572007-01-19 21:13:56 +0000516 uint64_t BitMask = cast<IntegerType>(Ty)->getBitMask();
Reid Spencerf89aec62007-01-18 01:24:02 +0000517 GenericValue TmpVal = Val;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000518 if (BitWidth <= 8)
Reid Spencerf89aec62007-01-18 01:24:02 +0000519 Ptr->Untyped[0] = Val.Int8Val & BitMask;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000520 else if (BitWidth <= 16) {
Reid Spencerf89aec62007-01-18 01:24:02 +0000521 TmpVal.Int16Val &= BitMask;
522 Ptr->Untyped[1] = TmpVal.Int16Val & 255;
523 Ptr->Untyped[0] = (TmpVal.Int16Val >> 8) & 255;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000524 } else if (BitWidth <= 32) {
Reid Spencerf89aec62007-01-18 01:24:02 +0000525 TmpVal.Int32Val &= BitMask;
526 Ptr->Untyped[3] = TmpVal.Int32Val & 255;
527 Ptr->Untyped[2] = (TmpVal.Int32Val >> 8) & 255;
528 Ptr->Untyped[1] = (TmpVal.Int32Val >> 16) & 255;
529 Ptr->Untyped[0] = (TmpVal.Int32Val >> 24) & 255;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000530 } else if (BitWidth <= 64) {
Reid Spencerf89aec62007-01-18 01:24:02 +0000531 TmpVal.Int64Val &= BitMask;
532 Ptr->Untyped[7] = (unsigned char)(TmpVal.Int64Val );
533 Ptr->Untyped[6] = (unsigned char)(TmpVal.Int64Val >> 8);
534 Ptr->Untyped[5] = (unsigned char)(TmpVal.Int64Val >> 16);
535 Ptr->Untyped[4] = (unsigned char)(TmpVal.Int64Val >> 24);
536 Ptr->Untyped[3] = (unsigned char)(TmpVal.Int64Val >> 32);
537 Ptr->Untyped[2] = (unsigned char)(TmpVal.Int64Val >> 40);
538 Ptr->Untyped[1] = (unsigned char)(TmpVal.Int64Val >> 48);
539 Ptr->Untyped[0] = (unsigned char)(TmpVal.Int64Val >> 56);
Reid Spencera54b7cb2007-01-12 07:05:14 +0000540 } else
541 assert(0 && "Integer types > 64 bits not supported");
542 break;
543 }
Chris Lattner2be50792003-04-23 20:41:01 +0000544 Store4BytesBigEndian:
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000545 case Type::FloatTyID:
Reid Spencera54b7cb2007-01-12 07:05:14 +0000546 Ptr->Untyped[3] = Val.Int32Val & 255;
547 Ptr->Untyped[2] = (Val.Int32Val >> 8) & 255;
548 Ptr->Untyped[1] = (Val.Int32Val >> 16) & 255;
549 Ptr->Untyped[0] = (Val.Int32Val >> 24) & 255;
550 break;
551 case Type::PointerTyID:
552 if (getTargetData()->getPointerSize() == 4)
553 goto Store4BytesBigEndian;
554 /* FALL THROUGH */
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000555 case Type::DoubleTyID:
Reid Spencere49661b2006-12-31 05:51:36 +0000556 Ptr->Untyped[7] = (unsigned char)(Val.Int64Val );
557 Ptr->Untyped[6] = (unsigned char)(Val.Int64Val >> 8);
558 Ptr->Untyped[5] = (unsigned char)(Val.Int64Val >> 16);
559 Ptr->Untyped[4] = (unsigned char)(Val.Int64Val >> 24);
560 Ptr->Untyped[3] = (unsigned char)(Val.Int64Val >> 32);
561 Ptr->Untyped[2] = (unsigned char)(Val.Int64Val >> 40);
562 Ptr->Untyped[1] = (unsigned char)(Val.Int64Val >> 48);
563 Ptr->Untyped[0] = (unsigned char)(Val.Int64Val >> 56);
Chris Lattner813c8152005-01-08 20:13:19 +0000564 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000565 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000566 cerr << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000567 }
568 }
569}
570
Misha Brukman4afac182003-10-10 17:45:12 +0000571/// FIXME: document
572///
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000573GenericValue ExecutionEngine::LoadValueFromMemory(GenericValue *Ptr,
574 const Type *Ty) {
575 GenericValue Result;
Owen Andersona69571c2006-05-03 01:29:57 +0000576 if (getTargetData()->isLittleEndian()) {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000577 switch (Ty->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000578 case Type::IntegerTyID: {
579 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
580 if (BitWidth <= 8)
581 Result.Int8Val = Ptr->Untyped[0];
582 else if (BitWidth <= 16) {
583 Result.Int16Val = (unsigned)Ptr->Untyped[0] |
584 ((unsigned)Ptr->Untyped[1] << 8);
585 } else if (BitWidth <= 32) {
586 Result.Int32Val = (unsigned)Ptr->Untyped[0] |
587 ((unsigned)Ptr->Untyped[1] << 8) |
588 ((unsigned)Ptr->Untyped[2] << 16) |
589 ((unsigned)Ptr->Untyped[3] << 24);
590 } else if (BitWidth <= 64) {
591 Result.Int64Val = (uint64_t)Ptr->Untyped[0] |
592 ((uint64_t)Ptr->Untyped[1] << 8) |
593 ((uint64_t)Ptr->Untyped[2] << 16) |
594 ((uint64_t)Ptr->Untyped[3] << 24) |
595 ((uint64_t)Ptr->Untyped[4] << 32) |
596 ((uint64_t)Ptr->Untyped[5] << 40) |
597 ((uint64_t)Ptr->Untyped[6] << 48) |
598 ((uint64_t)Ptr->Untyped[7] << 56);
599 } else
600 assert(0 && "Integer types > 64 bits not supported");
601 break;
602 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000603 Load4BytesLittleEndian:
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000604 case Type::FloatTyID:
Reid Spencera54b7cb2007-01-12 07:05:14 +0000605 Result.Int32Val = (unsigned)Ptr->Untyped[0] |
606 ((unsigned)Ptr->Untyped[1] << 8) |
607 ((unsigned)Ptr->Untyped[2] << 16) |
608 ((unsigned)Ptr->Untyped[3] << 24);
609 break;
610 case Type::PointerTyID:
611 if (getTargetData()->getPointerSize() == 4)
612 goto Load4BytesLittleEndian;
613 /* FALL THROUGH */
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000614 case Type::DoubleTyID:
Reid Spencera54b7cb2007-01-12 07:05:14 +0000615 Result.Int64Val = (uint64_t)Ptr->Untyped[0] |
616 ((uint64_t)Ptr->Untyped[1] << 8) |
617 ((uint64_t)Ptr->Untyped[2] << 16) |
618 ((uint64_t)Ptr->Untyped[3] << 24) |
619 ((uint64_t)Ptr->Untyped[4] << 32) |
620 ((uint64_t)Ptr->Untyped[5] << 40) |
621 ((uint64_t)Ptr->Untyped[6] << 48) |
622 ((uint64_t)Ptr->Untyped[7] << 56);
623 break;
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000624 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000625 cerr << "Cannot load value of type " << *Ty << "!\n";
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000626 abort();
627 }
628 } else {
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000629 switch (Ty->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000630 case Type::IntegerTyID: {
631 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
632 if (BitWidth <= 8)
633 Result.Int8Val = Ptr->Untyped[0];
634 else if (BitWidth <= 16) {
635 Result.Int16Val = (unsigned)Ptr->Untyped[1] |
636 ((unsigned)Ptr->Untyped[0] << 8);
637 } else if (BitWidth <= 32) {
638 Result.Int32Val = (unsigned)Ptr->Untyped[3] |
639 ((unsigned)Ptr->Untyped[2] << 8) |
640 ((unsigned)Ptr->Untyped[1] << 16) |
641 ((unsigned)Ptr->Untyped[0] << 24);
642 } else if (BitWidth <= 64) {
643 Result.Int64Val = (uint64_t)Ptr->Untyped[7] |
644 ((uint64_t)Ptr->Untyped[6] << 8) |
645 ((uint64_t)Ptr->Untyped[5] << 16) |
646 ((uint64_t)Ptr->Untyped[4] << 24) |
647 ((uint64_t)Ptr->Untyped[3] << 32) |
648 ((uint64_t)Ptr->Untyped[2] << 40) |
649 ((uint64_t)Ptr->Untyped[1] << 48) |
650 ((uint64_t)Ptr->Untyped[0] << 56);
651 } else
652 assert(0 && "Integer types > 64 bits not supported");
653 break;
654 }
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000655 Load4BytesBigEndian:
656 case Type::FloatTyID:
Reid Spencera54b7cb2007-01-12 07:05:14 +0000657 Result.Int32Val = (unsigned)Ptr->Untyped[3] |
658 ((unsigned)Ptr->Untyped[2] << 8) |
659 ((unsigned)Ptr->Untyped[1] << 16) |
660 ((unsigned)Ptr->Untyped[0] << 24);
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000661 break;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000662 case Type::PointerTyID:
663 if (getTargetData()->getPointerSize() == 4)
664 goto Load4BytesBigEndian;
665 /* FALL THROUGH */
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000666 case Type::DoubleTyID:
Reid Spencera54b7cb2007-01-12 07:05:14 +0000667 Result.Int64Val = (uint64_t)Ptr->Untyped[7] |
668 ((uint64_t)Ptr->Untyped[6] << 8) |
669 ((uint64_t)Ptr->Untyped[5] << 16) |
670 ((uint64_t)Ptr->Untyped[4] << 24) |
671 ((uint64_t)Ptr->Untyped[3] << 32) |
672 ((uint64_t)Ptr->Untyped[2] << 40) |
673 ((uint64_t)Ptr->Untyped[1] << 48) |
674 ((uint64_t)Ptr->Untyped[0] << 56);
675 break;
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000676 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000677 cerr << "Cannot load value of type " << *Ty << "!\n";
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000678 abort();
679 }
680 }
681 return Result;
682}
683
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000684// InitializeMemory - Recursive function to apply a Constant value into the
685// specified memory location...
686//
687void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000688 if (isa<UndefValue>(Init)) {
689 return;
Reid Spencer9d6565a2007-02-15 02:26:10 +0000690 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000691 unsigned ElementSize =
Owen Andersona69571c2006-05-03 01:29:57 +0000692 getTargetData()->getTypeSize(CP->getType()->getElementType());
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000693 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
694 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
695 return;
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000696 } else if (Init->getType()->isFirstClassType()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000697 GenericValue Val = getConstantValue(Init);
698 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
699 return;
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000700 } else if (isa<ConstantAggregateZero>(Init)) {
Owen Andersona69571c2006-05-03 01:29:57 +0000701 memset(Addr, 0, (size_t)getTargetData()->getTypeSize(Init->getType()));
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000702 return;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000703 }
704
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000705 switch (Init->getType()->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000706 case Type::ArrayTyID: {
707 const ConstantArray *CPA = cast<ConstantArray>(Init);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000708 unsigned ElementSize =
Owen Andersona69571c2006-05-03 01:29:57 +0000709 getTargetData()->getTypeSize(CPA->getType()->getElementType());
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000710 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
711 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000712 return;
713 }
714
715 case Type::StructTyID: {
716 const ConstantStruct *CPS = cast<ConstantStruct>(Init);
717 const StructLayout *SL =
Owen Andersona69571c2006-05-03 01:29:57 +0000718 getTargetData()->getStructLayout(cast<StructType>(CPS->getType()));
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000719 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
Chris Lattnerb1919e22007-02-10 19:55:17 +0000720 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i));
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000721 return;
722 }
723
724 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000725 cerr << "Bad Type: " << *Init->getType() << "\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000726 assert(0 && "Unknown constant type to initialize memory with!");
727 }
728}
729
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000730/// EmitGlobals - Emit all of the global variables to memory, storing their
731/// addresses into GlobalAddress. This must make sure to copy the contents of
732/// their initializers into the memory.
733///
734void ExecutionEngine::emitGlobals() {
Owen Andersona69571c2006-05-03 01:29:57 +0000735 const TargetData *TD = getTargetData();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000736
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000737 // Loop over all of the global variables in the program, allocating the memory
Chris Lattnerfe854032006-08-16 01:24:12 +0000738 // to hold them. If there is more than one module, do a prepass over globals
739 // to figure out how the different modules should link together.
740 //
741 std::map<std::pair<std::string, const Type*>,
742 const GlobalValue*> LinkedGlobalsMap;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000743
Chris Lattnerfe854032006-08-16 01:24:12 +0000744 if (Modules.size() != 1) {
745 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
746 Module &M = *Modules[m]->getModule();
747 for (Module::const_global_iterator I = M.global_begin(),
748 E = M.global_end(); I != E; ++I) {
749 const GlobalValue *GV = I;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000750 if (GV->hasInternalLinkage() || GV->isDeclaration() ||
Chris Lattnerfe854032006-08-16 01:24:12 +0000751 GV->hasAppendingLinkage() || !GV->hasName())
752 continue;// Ignore external globals and globals with internal linkage.
753
754 const GlobalValue *&GVEntry =
755 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
756
757 // If this is the first time we've seen this global, it is the canonical
758 // version.
759 if (!GVEntry) {
760 GVEntry = GV;
761 continue;
762 }
763
764 // If the existing global is strong, never replace it.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000765 if (GVEntry->hasExternalLinkage() ||
766 GVEntry->hasDLLImportLinkage() ||
767 GVEntry->hasDLLExportLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +0000768 continue;
769
770 // Otherwise, we know it's linkonce/weak, replace it if this is a strong
771 // symbol.
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000772 if (GV->hasExternalLinkage() || GVEntry->hasExternalWeakLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +0000773 GVEntry = GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000774 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000775 }
Chris Lattnerfe854032006-08-16 01:24:12 +0000776 }
777
778 std::vector<const GlobalValue*> NonCanonicalGlobals;
779 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
780 Module &M = *Modules[m]->getModule();
781 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
782 I != E; ++I) {
783 // In the multi-module case, see what this global maps to.
784 if (!LinkedGlobalsMap.empty()) {
785 if (const GlobalValue *GVEntry =
786 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())]) {
787 // If something else is the canonical global, ignore this one.
788 if (GVEntry != &*I) {
789 NonCanonicalGlobals.push_back(I);
790 continue;
791 }
792 }
793 }
794
Reid Spencer5cbf9852007-01-30 20:08:39 +0000795 if (!I->isDeclaration()) {
Chris Lattnerfe854032006-08-16 01:24:12 +0000796 // Get the type of the global.
797 const Type *Ty = I->getType()->getElementType();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000798
Chris Lattnerfe854032006-08-16 01:24:12 +0000799 // Allocate some memory for it!
800 unsigned Size = TD->getTypeSize(Ty);
801 addGlobalMapping(I, new char[Size]);
802 } else {
803 // External variable reference. Try to use the dynamic loader to
804 // get a pointer to it.
805 if (void *SymAddr =
806 sys::DynamicLibrary::SearchForAddressOfSymbol(I->getName().c_str()))
807 addGlobalMapping(I, SymAddr);
808 else {
Bill Wendlinge8156192006-12-07 01:30:32 +0000809 cerr << "Could not resolve external global address: "
810 << I->getName() << "\n";
Chris Lattnerfe854032006-08-16 01:24:12 +0000811 abort();
812 }
813 }
814 }
815
816 // If there are multiple modules, map the non-canonical globals to their
817 // canonical location.
818 if (!NonCanonicalGlobals.empty()) {
819 for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) {
820 const GlobalValue *GV = NonCanonicalGlobals[i];
821 const GlobalValue *CGV =
822 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
823 void *Ptr = getPointerToGlobalIfAvailable(CGV);
824 assert(Ptr && "Canonical global wasn't codegen'd!");
825 addGlobalMapping(GV, getPointerToGlobalIfAvailable(CGV));
826 }
827 }
828
Reid Spencera54b7cb2007-01-12 07:05:14 +0000829 // Now that all of the globals are set up in memory, loop through them all
830 // and initialize their contents.
Chris Lattnerfe854032006-08-16 01:24:12 +0000831 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
832 I != E; ++I) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000833 if (!I->isDeclaration()) {
Chris Lattnerfe854032006-08-16 01:24:12 +0000834 if (!LinkedGlobalsMap.empty()) {
835 if (const GlobalValue *GVEntry =
836 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())])
837 if (GVEntry != &*I) // Not the canonical variable.
838 continue;
839 }
840 EmitGlobalVariable(I);
841 }
842 }
843 }
Chris Lattner24b0a182003-12-20 02:45:37 +0000844}
845
846// EmitGlobalVariable - This method emits the specified global variable to the
847// address specified in GlobalAddresses, or allocates new memory if it's not
848// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +0000849void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +0000850 void *GA = getPointerToGlobalIfAvailable(GV);
Bill Wendling480f0932006-11-27 23:54:50 +0000851 DOUT << "Global '" << GV->getName() << "' -> " << GA << "\n";
Chris Lattner23c47242004-02-08 19:33:23 +0000852
Chris Lattnerc07ed132003-12-20 03:36:47 +0000853 const Type *ElTy = GV->getType()->getElementType();
Owen Andersona69571c2006-05-03 01:29:57 +0000854 size_t GVSize = (size_t)getTargetData()->getTypeSize(ElTy);
Chris Lattner24b0a182003-12-20 02:45:37 +0000855 if (GA == 0) {
856 // If it's not already specified, allocate memory for the global.
Chris Lattnera98c5452004-11-19 08:44:07 +0000857 GA = new char[GVSize];
Chris Lattner55d86482003-12-31 20:21:04 +0000858 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +0000859 }
Chris Lattnerc07ed132003-12-20 03:36:47 +0000860
Chris Lattner24b0a182003-12-20 02:45:37 +0000861 InitializeMemory(GV->getInitializer(), GA);
Chris Lattner813c8152005-01-08 20:13:19 +0000862 NumInitBytes += (unsigned)GVSize;
Chris Lattner24b0a182003-12-20 02:45:37 +0000863 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000864}