blob: 02b94cc1fdbb0cf305bfffe87a3e5ce3920c06cc [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"
Jeff Cohen2b7d7b52007-03-12 17:57:00 +000027#include <math.h>
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000028using namespace llvm;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000029
Chris Lattner36343732006-12-19 22:43:32 +000030STATISTIC(NumInitBytes, "Number of bytes of global vars initialized");
31STATISTIC(NumGlobals , "Number of global vars initialized");
Chris Lattnerbd199fb2002-12-24 00:01:05 +000032
Chris Lattner2fe4bb02006-03-22 06:07:50 +000033ExecutionEngine::EECtorFn ExecutionEngine::JITCtor = 0;
34ExecutionEngine::EECtorFn ExecutionEngine::InterpCtor = 0;
35
Chris Lattnerd958a5a2007-10-22 02:50:12 +000036ExecutionEngine::ExecutionEngine(ModuleProvider *P) : LazyFunctionCreator(0) {
Chris Lattner3d6e33d2006-11-09 19:31:15 +000037 LazyCompilationDisabled = false;
Chris Lattnerfe854032006-08-16 01:24:12 +000038 Modules.push_back(P);
Misha Brukman19684162003-10-16 21:18:05 +000039 assert(P && "ModuleProvider is null?");
40}
41
Brian Gaeke8e539482003-09-04 22:57:27 +000042ExecutionEngine::~ExecutionEngine() {
Reid Spencerd4c0e622007-03-03 18:19:18 +000043 clearAllGlobalMappings();
Chris Lattnerfe854032006-08-16 01:24:12 +000044 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
45 delete Modules[i];
Brian Gaeke8e539482003-09-04 22:57:27 +000046}
47
Devang Patel73d0e212007-10-15 19:56:32 +000048/// removeModuleProvider - Remove a ModuleProvider from the list of modules.
49/// Release module from ModuleProvider.
50Module* ExecutionEngine::removeModuleProvider(ModuleProvider *P,
51 std::string *ErrInfo) {
52 for(SmallVector<ModuleProvider *, 1>::iterator I = Modules.begin(),
53 E = Modules.end(); I != E; ++I) {
54 ModuleProvider *MP = *I;
55 if (MP == P) {
56 Modules.erase(I);
57 return MP->releaseModule(ErrInfo);
58 }
59 }
60 return NULL;
61}
62
Chris Lattnerfe854032006-08-16 01:24:12 +000063/// FindFunctionNamed - Search all of the active modules to find the one that
64/// defines FnName. This is very slow operation and shouldn't be used for
65/// general code.
66Function *ExecutionEngine::FindFunctionNamed(const char *FnName) {
67 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
Reid Spencer688b0492007-02-05 21:19:13 +000068 if (Function *F = Modules[i]->getModule()->getFunction(FnName))
Chris Lattnerfe854032006-08-16 01:24:12 +000069 return F;
70 }
71 return 0;
72}
73
74
Chris Lattnere7fd5532006-05-08 22:00:52 +000075/// addGlobalMapping - Tell the execution engine that the specified global is
76/// at the specified location. This is used internally as functions are JIT'd
77/// and as global variables are laid out in memory. It can and should also be
78/// used by clients of the EE that want to have an LLVM global overlay
79/// existing data in memory.
80void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) {
81 MutexGuard locked(lock);
82
83 void *&CurVal = state.getGlobalAddressMap(locked)[GV];
84 assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!");
85 CurVal = Addr;
86
87 // If we are using the reverse mapping, add it too
88 if (!state.getGlobalAddressReverseMap(locked).empty()) {
89 const GlobalValue *&V = state.getGlobalAddressReverseMap(locked)[Addr];
90 assert((V == 0 || GV == 0) && "GlobalMapping already established!");
91 V = GV;
92 }
93}
94
95/// clearAllGlobalMappings - Clear all global mappings and start over again
96/// use in dynamic compilation scenarios when you want to move globals
97void ExecutionEngine::clearAllGlobalMappings() {
98 MutexGuard locked(lock);
99
100 state.getGlobalAddressMap(locked).clear();
101 state.getGlobalAddressReverseMap(locked).clear();
102}
103
104/// updateGlobalMapping - Replace an existing mapping for GV with a new
105/// address. This updates both maps as required. If "Addr" is null, the
106/// entry for the global is removed from the mappings.
107void ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) {
108 MutexGuard locked(lock);
109
110 // Deleting from the mapping?
111 if (Addr == 0) {
112 state.getGlobalAddressMap(locked).erase(GV);
113 if (!state.getGlobalAddressReverseMap(locked).empty())
114 state.getGlobalAddressReverseMap(locked).erase(Addr);
115 return;
116 }
117
118 void *&CurVal = state.getGlobalAddressMap(locked)[GV];
119 if (CurVal && !state.getGlobalAddressReverseMap(locked).empty())
120 state.getGlobalAddressReverseMap(locked).erase(CurVal);
121 CurVal = Addr;
122
123 // If we are using the reverse mapping, add it too
124 if (!state.getGlobalAddressReverseMap(locked).empty()) {
125 const GlobalValue *&V = state.getGlobalAddressReverseMap(locked)[Addr];
126 assert((V == 0 || GV == 0) && "GlobalMapping already established!");
127 V = GV;
128 }
129}
130
131/// getPointerToGlobalIfAvailable - This returns the address of the specified
132/// global value if it is has already been codegen'd, otherwise it returns null.
133///
134void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
135 MutexGuard locked(lock);
136
137 std::map<const GlobalValue*, void*>::iterator I =
138 state.getGlobalAddressMap(locked).find(GV);
139 return I != state.getGlobalAddressMap(locked).end() ? I->second : 0;
140}
141
Chris Lattner55d86482003-12-31 20:21:04 +0000142/// getGlobalValueAtAddress - Return the LLVM global value object that starts
143/// at the specified address.
144///
145const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
Reid Spenceree448632005-07-12 15:51:55 +0000146 MutexGuard locked(lock);
147
Chris Lattner55d86482003-12-31 20:21:04 +0000148 // If we haven't computed the reverse mapping yet, do so first.
Reid Spenceree448632005-07-12 15:51:55 +0000149 if (state.getGlobalAddressReverseMap(locked).empty()) {
Chris Lattnere7fd5532006-05-08 22:00:52 +0000150 for (std::map<const GlobalValue*, void *>::iterator
151 I = state.getGlobalAddressMap(locked).begin(),
152 E = state.getGlobalAddressMap(locked).end(); I != E; ++I)
153 state.getGlobalAddressReverseMap(locked).insert(std::make_pair(I->second,
154 I->first));
Chris Lattner55d86482003-12-31 20:21:04 +0000155 }
156
157 std::map<void *, const GlobalValue*>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +0000158 state.getGlobalAddressReverseMap(locked).find(Addr);
159 return I != state.getGlobalAddressReverseMap(locked).end() ? I->second : 0;
Chris Lattner55d86482003-12-31 20:21:04 +0000160}
Chris Lattner87f03102003-12-26 06:50:30 +0000161
162// CreateArgv - Turn a vector of strings into a nice argv style array of
163// pointers to null terminated strings.
164//
165static void *CreateArgv(ExecutionEngine *EE,
166 const std::vector<std::string> &InputArgv) {
Owen Andersona69571c2006-05-03 01:29:57 +0000167 unsigned PtrSize = EE->getTargetData()->getPointerSize();
Chris Lattner87f03102003-12-26 06:50:30 +0000168 char *Result = new char[(InputArgv.size()+1)*PtrSize];
169
Bill Wendling480f0932006-11-27 23:54:50 +0000170 DOUT << "ARGV = " << (void*)Result << "\n";
Reid Spencere49661b2006-12-31 05:51:36 +0000171 const Type *SBytePtr = PointerType::get(Type::Int8Ty);
Chris Lattner87f03102003-12-26 06:50:30 +0000172
173 for (unsigned i = 0; i != InputArgv.size(); ++i) {
174 unsigned Size = InputArgv[i].size()+1;
175 char *Dest = new char[Size];
Bill Wendling480f0932006-11-27 23:54:50 +0000176 DOUT << "ARGV[" << i << "] = " << (void*)Dest << "\n";
Misha Brukmanedf128a2005-04-21 22:36:52 +0000177
Chris Lattner87f03102003-12-26 06:50:30 +0000178 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
179 Dest[Size-1] = 0;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000180
Chris Lattner87f03102003-12-26 06:50:30 +0000181 // Endian safe: Result[i] = (PointerTy)Dest;
182 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i*PtrSize),
183 SBytePtr);
184 }
185
186 // Null terminate it
187 EE->StoreValueToMemory(PTOGV(0),
188 (GenericValue*)(Result+InputArgv.size()*PtrSize),
189 SBytePtr);
190 return Result;
191}
192
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000193
194/// runStaticConstructorsDestructors - This method is used to execute all of
Chris Lattnerfe854032006-08-16 01:24:12 +0000195/// the static constructors or destructors for a program, depending on the
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000196/// value of isDtors.
197void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
198 const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000199
Chris Lattnerfe854032006-08-16 01:24:12 +0000200 // Execute global ctors/dtors for each module in the program.
201 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
202 GlobalVariable *GV = Modules[m]->getModule()->getNamedGlobal(Name);
203
204 // If this global has internal linkage, or if it has a use, then it must be
205 // an old-style (llvmgcc3) static ctor with __main linked in and in use. If
206 // this is the case, don't execute any of the global ctors, __main will do
207 // it.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000208 if (!GV || GV->isDeclaration() || GV->hasInternalLinkage()) continue;
Chris Lattnerfe854032006-08-16 01:24:12 +0000209
210 // Should be an array of '{ int, void ()* }' structs. The first value is
211 // the init priority, which we ignore.
212 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
213 if (!InitList) continue;
214 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
215 if (ConstantStruct *CS =
216 dyn_cast<ConstantStruct>(InitList->getOperand(i))) {
217 if (CS->getNumOperands() != 2) break; // Not array of 2-element structs.
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000218
Chris Lattnerfe854032006-08-16 01:24:12 +0000219 Constant *FP = CS->getOperand(1);
220 if (FP->isNullValue())
221 break; // Found a null terminator, exit.
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000222
Chris Lattnerfe854032006-08-16 01:24:12 +0000223 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +0000224 if (CE->isCast())
Chris Lattnerfe854032006-08-16 01:24:12 +0000225 FP = CE->getOperand(0);
226 if (Function *F = dyn_cast<Function>(FP)) {
227 // Execute the ctor/dtor function!
228 runFunction(F, std::vector<GenericValue>());
229 }
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000230 }
Chris Lattnerfe854032006-08-16 01:24:12 +0000231 }
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000232}
233
Chris Lattner87f03102003-12-26 06:50:30 +0000234/// runFunctionAsMain - This is a helper function which wraps runFunction to
235/// handle the common task of starting up main with the specified argc, argv,
236/// and envp parameters.
237int ExecutionEngine::runFunctionAsMain(Function *Fn,
238 const std::vector<std::string> &argv,
239 const char * const * envp) {
240 std::vector<GenericValue> GVArgs;
241 GenericValue GVArgc;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000242 GVArgc.IntVal = APInt(32, argv.size());
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000243
244 // Check main() type
Chris Lattnerf24d0992004-08-16 01:05:35 +0000245 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000246 const FunctionType *FTy = Fn->getFunctionType();
247 const Type* PPInt8Ty = PointerType::get(PointerType::get(Type::Int8Ty));
248 switch (NumArgs) {
249 case 3:
250 if (FTy->getParamType(2) != PPInt8Ty) {
251 cerr << "Invalid type for third argument of main() supplied\n";
252 abort();
253 }
Anton Korobeynikovfb450862007-06-03 19:20:49 +0000254 // FALLS THROUGH
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000255 case 2:
256 if (FTy->getParamType(1) != PPInt8Ty) {
257 cerr << "Invalid type for second argument of main() supplied\n";
258 abort();
259 }
Anton Korobeynikovfb450862007-06-03 19:20:49 +0000260 // FALLS THROUGH
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000261 case 1:
262 if (FTy->getParamType(0) != Type::Int32Ty) {
263 cerr << "Invalid type for first argument of main() supplied\n";
264 abort();
265 }
Anton Korobeynikovfb450862007-06-03 19:20:49 +0000266 // FALLS THROUGH
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000267 case 0:
268 if (FTy->getReturnType() != Type::Int32Ty &&
269 FTy->getReturnType() != Type::VoidTy) {
270 cerr << "Invalid return type of main() supplied\n";
271 abort();
272 }
273 break;
274 default:
275 cerr << "Invalid number of arguments of main() supplied\n";
276 abort();
277 }
278
Chris Lattnerf24d0992004-08-16 01:05:35 +0000279 if (NumArgs) {
280 GVArgs.push_back(GVArgc); // Arg #0 = argc.
281 if (NumArgs > 1) {
282 GVArgs.push_back(PTOGV(CreateArgv(this, argv))); // Arg #1 = argv.
283 assert(((char **)GVTOP(GVArgs[1]))[0] &&
284 "argv[0] was null after CreateArgv");
285 if (NumArgs > 2) {
286 std::vector<std::string> EnvVars;
287 for (unsigned i = 0; envp[i]; ++i)
288 EnvVars.push_back(envp[i]);
289 GVArgs.push_back(PTOGV(CreateArgv(this, EnvVars))); // Arg #2 = envp.
290 }
291 }
292 }
Reid Spencer8fb0f192007-03-06 03:04:04 +0000293 return runFunction(Fn, GVArgs).IntVal.getZExtValue();
Chris Lattner87f03102003-12-26 06:50:30 +0000294}
295
Misha Brukman19684162003-10-16 21:18:05 +0000296/// If possible, create a JIT, unless the caller specifically requests an
297/// Interpreter or there's an error. If even an Interpreter cannot be created,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000298/// NULL is returned.
Misha Brukman4afac182003-10-10 17:45:12 +0000299///
Misha Brukmanedf128a2005-04-21 22:36:52 +0000300ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
Reid Spencerd4c0e622007-03-03 18:19:18 +0000301 bool ForceInterpreter,
302 std::string *ErrorStr) {
Brian Gaeke82d82772003-09-03 20:34:19 +0000303 ExecutionEngine *EE = 0;
304
Chris Lattner73011782003-12-28 09:44:37 +0000305 // Unless the interpreter was explicitly selected, try making a JIT.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000306 if (!ForceInterpreter && JITCtor)
Reid Spencerd4c0e622007-03-03 18:19:18 +0000307 EE = JITCtor(MP, ErrorStr);
Brian Gaeke82d82772003-09-03 20:34:19 +0000308
309 // If we can't make a JIT, make an interpreter instead.
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000310 if (EE == 0 && InterpCtor)
Reid Spencerd4c0e622007-03-03 18:19:18 +0000311 EE = InterpCtor(MP, ErrorStr);
Chris Lattner73011782003-12-28 09:44:37 +0000312
Chris Lattner726c1ef2006-03-23 05:22:51 +0000313 if (EE) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000314 // Make sure we can resolve symbols in the program as well. The zero arg
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000315 // to the function tells DynamicLibrary to load the program, not a library.
Chris Lattnerc6185032007-10-21 22:58:11 +0000316 if (sys::DynamicLibrary::LoadLibraryPermanently(0, ErrorStr)) {
317 delete EE;
318 return 0;
Chris Lattner6f3ada52006-05-14 19:01:55 +0000319 }
Chris Lattner726c1ef2006-03-23 05:22:51 +0000320 }
Reid Spencerdf5a37e2004-11-29 14:11:29 +0000321
Brian Gaeke82d82772003-09-03 20:34:19 +0000322 return EE;
323}
324
Chris Lattner8b5295b2007-10-21 22:57:11 +0000325ExecutionEngine *ExecutionEngine::create(Module *M) {
326 return create(new ExistingModuleProvider(M));
327}
328
Misha Brukman4afac182003-10-10 17:45:12 +0000329/// getPointerToGlobal - This returns the address of the specified global
330/// value. This may involve code generation if it's a function.
331///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000332void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000333 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000334 return getPointerToFunction(F);
335
Reid Spenceree448632005-07-12 15:51:55 +0000336 MutexGuard locked(lock);
Jeff Cohen68835dd2006-02-07 05:11:57 +0000337 void *p = state.getGlobalAddressMap(locked)[GV];
338 if (p)
339 return p;
340
341 // Global variable might have been added since interpreter started.
342 if (GlobalVariable *GVar =
343 const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
344 EmitGlobalVariable(GVar);
345 else
Chris Lattner64f150f2007-02-14 06:20:04 +0000346 assert(0 && "Global hasn't had an address allocated yet!");
Reid Spenceree448632005-07-12 15:51:55 +0000347 return state.getGlobalAddressMap(locked)[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000348}
349
Reid Spencer3da59db2006-11-27 01:05:10 +0000350/// This function converts a Constant* into a GenericValue. The interesting
351/// part is if C is a ConstantExpr.
Reid Spencerba28cb92007-08-11 15:57:56 +0000352/// @brief Get a GenericValue for a Constant*
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000353GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000354 // If its undefined, return the garbage.
Reid Spencerbce30f12007-03-06 22:23:15 +0000355 if (isa<UndefValue>(C))
356 return GenericValue();
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000357
Reid Spencer3da59db2006-11-27 01:05:10 +0000358 // If the value is a ConstantExpr
359 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Reid Spencerbce30f12007-03-06 22:23:15 +0000360 Constant *Op0 = CE->getOperand(0);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000361 switch (CE->getOpcode()) {
362 case Instruction::GetElementPtr: {
Reid Spencer3da59db2006-11-27 01:05:10 +0000363 // Compute the index
Reid Spencerbce30f12007-03-06 22:23:15 +0000364 GenericValue Result = getConstantValue(Op0);
Chris Lattner829621c2007-02-10 20:35:22 +0000365 SmallVector<Value*, 8> Indices(CE->op_begin()+1, CE->op_end());
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000366 uint64_t Offset =
Reid Spencerbce30f12007-03-06 22:23:15 +0000367 TD->getIndexedOffset(Op0->getType(), &Indices[0], Indices.size());
Misha Brukmanedf128a2005-04-21 22:36:52 +0000368
Reid Spencer8fb0f192007-03-06 03:04:04 +0000369 char* tmp = (char*) Result.PointerVal;
370 Result = PTOGV(tmp + Offset);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000371 return Result;
372 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000373 case Instruction::Trunc: {
374 GenericValue GV = getConstantValue(Op0);
375 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
376 GV.IntVal = GV.IntVal.trunc(BitWidth);
377 return GV;
378 }
379 case Instruction::ZExt: {
380 GenericValue GV = getConstantValue(Op0);
381 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
382 GV.IntVal = GV.IntVal.zext(BitWidth);
383 return GV;
384 }
385 case Instruction::SExt: {
386 GenericValue GV = getConstantValue(Op0);
387 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
388 GV.IntVal = GV.IntVal.sext(BitWidth);
389 return GV;
390 }
391 case Instruction::FPTrunc: {
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000392 // FIXME long double
Reid Spencerbce30f12007-03-06 22:23:15 +0000393 GenericValue GV = getConstantValue(Op0);
394 GV.FloatVal = float(GV.DoubleVal);
395 return GV;
396 }
397 case Instruction::FPExt:{
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000398 // FIXME long double
Reid Spencerbce30f12007-03-06 22:23:15 +0000399 GenericValue GV = getConstantValue(Op0);
400 GV.DoubleVal = double(GV.FloatVal);
401 return GV;
402 }
403 case Instruction::UIToFP: {
404 GenericValue GV = getConstantValue(Op0);
405 if (CE->getType() == Type::FloatTy)
406 GV.FloatVal = float(GV.IntVal.roundToDouble());
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000407 else if (CE->getType() == Type::DoubleTy)
Reid Spencerbce30f12007-03-06 22:23:15 +0000408 GV.DoubleVal = GV.IntVal.roundToDouble();
Dale Johannesen910993e2007-09-21 22:09:37 +0000409 else if (CE->getType() == Type::X86_FP80Ty) {
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000410 const uint64_t zero[] = {0, 0};
411 APFloat apf = APFloat(APInt(80, 2, zero));
Neil Boothccf596a2007-10-07 11:45:55 +0000412 (void)apf.convertFromZeroExtendedInteger(GV.IntVal.getRawData(),
Dale Johannesen910993e2007-09-21 22:09:37 +0000413 GV.IntVal.getBitWidth(), false,
Dale Johannesen88216af2007-09-30 18:19:03 +0000414 APFloat::rmNearestTiesToEven);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000415 GV.IntVal = apf.convertToAPInt();
416 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000417 return GV;
418 }
419 case Instruction::SIToFP: {
420 GenericValue GV = getConstantValue(Op0);
421 if (CE->getType() == Type::FloatTy)
422 GV.FloatVal = float(GV.IntVal.signedRoundToDouble());
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000423 else if (CE->getType() == Type::DoubleTy)
Reid Spencerbce30f12007-03-06 22:23:15 +0000424 GV.DoubleVal = GV.IntVal.signedRoundToDouble();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000425 else if (CE->getType() == Type::X86_FP80Ty) {
426 const uint64_t zero[] = { 0, 0};
427 APFloat apf = APFloat(APInt(80, 2, zero));
Neil Boothccf596a2007-10-07 11:45:55 +0000428 (void)apf.convertFromZeroExtendedInteger(GV.IntVal.getRawData(),
Dale Johannesen910993e2007-09-21 22:09:37 +0000429 GV.IntVal.getBitWidth(), true,
Dale Johannesen88216af2007-09-30 18:19:03 +0000430 APFloat::rmNearestTiesToEven);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000431 GV.IntVal = apf.convertToAPInt();
432 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000433 return GV;
434 }
435 case Instruction::FPToUI: // double->APInt conversion handles sign
436 case Instruction::FPToSI: {
437 GenericValue GV = getConstantValue(Op0);
438 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
439 if (Op0->getType() == Type::FloatTy)
440 GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000441 else if (Op0->getType() == Type::DoubleTy)
Reid Spencerbce30f12007-03-06 22:23:15 +0000442 GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000443 else if (Op0->getType() == Type::X86_FP80Ty) {
444 APFloat apf = APFloat(GV.IntVal);
445 uint64_t v;
446 (void)apf.convertToInteger(&v, BitWidth,
447 CE->getOpcode()==Instruction::FPToSI,
448 APFloat::rmTowardZero);
449 GV.IntVal = v; // endian?
450 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000451 return GV;
452 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000453 case Instruction::PtrToInt: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000454 GenericValue GV = getConstantValue(Op0);
455 uint32_t PtrWidth = TD->getPointerSizeInBits();
456 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
457 return GV;
458 }
459 case Instruction::IntToPtr: {
460 GenericValue GV = getConstantValue(Op0);
461 uint32_t PtrWidth = TD->getPointerSizeInBits();
462 if (PtrWidth != GV.IntVal.getBitWidth())
463 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
464 assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width");
465 GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue()));
Reid Spencer3da59db2006-11-27 01:05:10 +0000466 return GV;
467 }
468 case Instruction::BitCast: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000469 GenericValue GV = getConstantValue(Op0);
470 const Type* DestTy = CE->getType();
471 switch (Op0->getType()->getTypeID()) {
472 default: assert(0 && "Invalid bitcast operand");
473 case Type::IntegerTyID:
474 assert(DestTy->isFloatingPoint() && "invalid bitcast");
475 if (DestTy == Type::FloatTy)
476 GV.FloatVal = GV.IntVal.bitsToFloat();
477 else if (DestTy == Type::DoubleTy)
478 GV.DoubleVal = GV.IntVal.bitsToDouble();
479 break;
480 case Type::FloatTyID:
481 assert(DestTy == Type::Int32Ty && "Invalid bitcast");
482 GV.IntVal.floatToBits(GV.FloatVal);
483 break;
484 case Type::DoubleTyID:
485 assert(DestTy == Type::Int64Ty && "Invalid bitcast");
486 GV.IntVal.doubleToBits(GV.DoubleVal);
487 break;
488 case Type::PointerTyID:
489 assert(isa<PointerType>(DestTy) && "Invalid bitcast");
490 break; // getConstantValue(Op0) above already converted it
491 }
492 return GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000493 }
Chris Lattner9a231222003-05-14 17:51:49 +0000494 case Instruction::Add:
Reid Spencerbce30f12007-03-06 22:23:15 +0000495 case Instruction::Sub:
496 case Instruction::Mul:
497 case Instruction::UDiv:
498 case Instruction::SDiv:
499 case Instruction::URem:
500 case Instruction::SRem:
501 case Instruction::And:
502 case Instruction::Or:
503 case Instruction::Xor: {
504 GenericValue LHS = getConstantValue(Op0);
505 GenericValue RHS = getConstantValue(CE->getOperand(1));
506 GenericValue GV;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000507 switch (CE->getOperand(0)->getType()->getTypeID()) {
508 default: assert(0 && "Bad add type!"); abort();
Reid Spencera54b7cb2007-01-12 07:05:14 +0000509 case Type::IntegerTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000510 switch (CE->getOpcode()) {
511 default: assert(0 && "Invalid integer opcode");
512 case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
513 case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
514 case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
515 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
516 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
517 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
518 case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
519 case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break;
520 case Instruction::Or: GV.IntVal = LHS.IntVal | RHS.IntVal; break;
521 case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break;
522 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000523 break;
524 case Type::FloatTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000525 switch (CE->getOpcode()) {
526 default: assert(0 && "Invalid float opcode"); abort();
527 case Instruction::Add:
528 GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break;
529 case Instruction::Sub:
530 GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break;
531 case Instruction::Mul:
532 GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break;
533 case Instruction::FDiv:
534 GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break;
535 case Instruction::FRem:
536 GV.FloatVal = ::fmodf(LHS.FloatVal,RHS.FloatVal); break;
537 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000538 break;
539 case Type::DoubleTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000540 switch (CE->getOpcode()) {
541 default: assert(0 && "Invalid double opcode"); abort();
542 case Instruction::Add:
543 GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break;
544 case Instruction::Sub:
545 GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break;
546 case Instruction::Mul:
547 GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break;
548 case Instruction::FDiv:
549 GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break;
550 case Instruction::FRem:
551 GV.DoubleVal = ::fmod(LHS.DoubleVal,RHS.DoubleVal); break;
552 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000553 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000554 case Type::X86_FP80TyID:
555 case Type::PPC_FP128TyID:
556 case Type::FP128TyID: {
557 APFloat apfLHS = APFloat(LHS.IntVal);
558 switch (CE->getOpcode()) {
559 default: assert(0 && "Invalid long double opcode"); abort();
560 case Instruction::Add:
561 apfLHS.add(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
562 GV.IntVal = apfLHS.convertToAPInt();
563 break;
564 case Instruction::Sub:
565 apfLHS.subtract(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
566 GV.IntVal = apfLHS.convertToAPInt();
567 break;
568 case Instruction::Mul:
569 apfLHS.multiply(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
570 GV.IntVal = apfLHS.convertToAPInt();
571 break;
572 case Instruction::FDiv:
573 apfLHS.divide(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
574 GV.IntVal = apfLHS.convertToAPInt();
575 break;
576 case Instruction::FRem:
577 apfLHS.mod(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
578 GV.IntVal = apfLHS.convertToAPInt();
579 break;
580 }
581 }
582 break;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000583 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000584 return GV;
585 }
Chris Lattner9a231222003-05-14 17:51:49 +0000586 default:
587 break;
588 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000589 cerr << "ConstantExpr not handled: " << *CE << "\n";
Chris Lattner9a231222003-05-14 17:51:49 +0000590 abort();
591 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000592
Reid Spencerbce30f12007-03-06 22:23:15 +0000593 GenericValue Result;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000594 switch (C->getType()->getTypeID()) {
Reid Spencer8fb0f192007-03-06 03:04:04 +0000595 case Type::FloatTyID:
Dale Johannesen43421b32007-09-06 18:13:44 +0000596 Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
Reid Spencera54b7cb2007-01-12 07:05:14 +0000597 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000598 case Type::DoubleTyID:
Dale Johannesen43421b32007-09-06 18:13:44 +0000599 Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble();
Reid Spencer8fb0f192007-03-06 03:04:04 +0000600 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000601 case Type::X86_FP80TyID:
602 case Type::FP128TyID:
603 case Type::PPC_FP128TyID:
604 Result.IntVal = cast <ConstantFP>(C)->getValueAPF().convertToAPInt();
605 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000606 case Type::IntegerTyID:
607 Result.IntVal = cast<ConstantInt>(C)->getValue();
608 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000609 case Type::PointerTyID:
Reid Spencer40cf2f92004-07-18 00:41:27 +0000610 if (isa<ConstantPointerNull>(C))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000611 Result.PointerVal = 0;
Reid Spencer40cf2f92004-07-18 00:41:27 +0000612 else if (const Function *F = dyn_cast<Function>(C))
613 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
614 else if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
615 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
616 else
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000617 assert(0 && "Unknown constant pointer type!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000618 break;
619 default:
Reid Spencerbce30f12007-03-06 22:23:15 +0000620 cerr << "ERROR: Constant unimplemented for type: " << *C->getType() << "\n";
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000621 abort();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000622 }
623 return Result;
624}
625
Nate Begeman37efe672006-04-22 18:53:45 +0000626/// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr. Ptr
627/// is the address of the memory at which to store Val, cast to GenericValue *.
628/// It is not a pointer to a GenericValue containing the address at which to
629/// store Val.
Misha Brukman4afac182003-10-10 17:45:12 +0000630///
Reid Spencer415c1f72007-03-06 05:03:16 +0000631void ExecutionEngine::StoreValueToMemory(const GenericValue &Val, GenericValue *Ptr,
Misha Brukman4afac182003-10-10 17:45:12 +0000632 const Type *Ty) {
Reid Spencer8fb0f192007-03-06 03:04:04 +0000633 switch (Ty->getTypeID()) {
634 case Type::IntegerTyID: {
635 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
636 GenericValue TmpVal = Val;
637 if (BitWidth <= 8)
638 *((uint8_t*)Ptr) = uint8_t(Val.IntVal.getZExtValue());
639 else if (BitWidth <= 16) {
640 *((uint16_t*)Ptr) = uint16_t(Val.IntVal.getZExtValue());
641 } else if (BitWidth <= 32) {
642 *((uint32_t*)Ptr) = uint32_t(Val.IntVal.getZExtValue());
643 } else if (BitWidth <= 64) {
Reid Spencer415c1f72007-03-06 05:03:16 +0000644 *((uint64_t*)Ptr) = uint64_t(Val.IntVal.getZExtValue());
Reid Spencer8fb0f192007-03-06 03:04:04 +0000645 } else {
646 uint64_t *Dest = (uint64_t*)Ptr;
647 const uint64_t *Src = Val.IntVal.getRawData();
648 for (uint32_t i = 0; i < Val.IntVal.getNumWords(); ++i)
649 Dest[i] = Src[i];
Reid Spencera54b7cb2007-01-12 07:05:14 +0000650 }
Reid Spencer8fb0f192007-03-06 03:04:04 +0000651 break;
652 }
653 case Type::FloatTyID:
654 *((float*)Ptr) = Val.FloatVal;
655 break;
656 case Type::DoubleTyID:
657 *((double*)Ptr) = Val.DoubleVal;
658 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000659 case Type::X86_FP80TyID: {
660 uint16_t *Dest = (uint16_t*)Ptr;
661 const uint16_t *Src = (uint16_t*)Val.IntVal.getRawData();
662 // This is endian dependent, but it will only work on x86 anyway.
663 Dest[0] = Src[4];
664 Dest[1] = Src[0];
665 Dest[2] = Src[1];
666 Dest[3] = Src[2];
667 Dest[4] = Src[3];
668 break;
669 }
Reid Spencer8fb0f192007-03-06 03:04:04 +0000670 case Type::PointerTyID:
671 *((PointerTy*)Ptr) = Val.PointerVal;
672 break;
673 default:
674 cerr << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000675 }
676}
677
Misha Brukman4afac182003-10-10 17:45:12 +0000678/// FIXME: document
679///
Reid Spencerf0f09a92007-03-03 08:36:29 +0000680void ExecutionEngine::LoadValueFromMemory(GenericValue &Result,
681 GenericValue *Ptr,
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000682 const Type *Ty) {
Reid Spencer8fb0f192007-03-06 03:04:04 +0000683 switch (Ty->getTypeID()) {
684 case Type::IntegerTyID: {
685 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
686 if (BitWidth <= 8)
687 Result.IntVal = APInt(BitWidth, *((uint8_t*)Ptr));
688 else if (BitWidth <= 16) {
689 Result.IntVal = APInt(BitWidth, *((uint16_t*)Ptr));
690 } else if (BitWidth <= 32) {
691 Result.IntVal = APInt(BitWidth, *((uint32_t*)Ptr));
692 } else if (BitWidth <= 64) {
693 Result.IntVal = APInt(BitWidth, *((uint64_t*)Ptr));
694 } else
Zhou Sheng849c5b42007-05-24 15:03:18 +0000695 Result.IntVal = APInt(BitWidth, (BitWidth+63)/64, (uint64_t*)Ptr);
Reid Spencer8fb0f192007-03-06 03:04:04 +0000696 break;
697 }
698 case Type::FloatTyID:
699 Result.FloatVal = *((float*)Ptr);
700 break;
701 case Type::DoubleTyID:
702 Result.DoubleVal = *((double*)Ptr);
703 break;
704 case Type::PointerTyID:
705 Result.PointerVal = *((PointerTy*)Ptr);
706 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000707 case Type::X86_FP80TyID: {
708 // This is endian dependent, but it will only work on x86 anyway.
Duncan Sandsdd65a732007-11-28 10:36:19 +0000709 uint16_t *p = (uint16_t*)Ptr;
710 union {
711 uint16_t x[8];
712 uint64_t y[2];
713 };
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000714 x[0] = p[1];
715 x[1] = p[2];
716 x[2] = p[3];
717 x[3] = p[4];
718 x[4] = p[0];
Duncan Sandsdd65a732007-11-28 10:36:19 +0000719 Result.IntVal = APInt(80, 2, y);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000720 break;
721 }
Reid Spencer8fb0f192007-03-06 03:04:04 +0000722 default:
723 cerr << "Cannot load value of type " << *Ty << "!\n";
724 abort();
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000725 }
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000726}
727
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000728// InitializeMemory - Recursive function to apply a Constant value into the
729// specified memory location...
730//
731void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000732 if (isa<UndefValue>(Init)) {
733 return;
Reid Spencer9d6565a2007-02-15 02:26:10 +0000734 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000735 unsigned ElementSize =
Duncan Sands514ab342007-11-01 20:53:16 +0000736 getTargetData()->getABITypeSize(CP->getType()->getElementType());
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000737 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
738 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
739 return;
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000740 } else if (Init->getType()->isFirstClassType()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000741 GenericValue Val = getConstantValue(Init);
742 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
743 return;
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000744 } else if (isa<ConstantAggregateZero>(Init)) {
Duncan Sands514ab342007-11-01 20:53:16 +0000745 memset(Addr, 0, (size_t)getTargetData()->getABITypeSize(Init->getType()));
Chris Lattnerdd2c82a2004-02-15 05:54:06 +0000746 return;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000747 }
748
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000749 switch (Init->getType()->getTypeID()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000750 case Type::ArrayTyID: {
751 const ConstantArray *CPA = cast<ConstantArray>(Init);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000752 unsigned ElementSize =
Duncan Sands514ab342007-11-01 20:53:16 +0000753 getTargetData()->getABITypeSize(CPA->getType()->getElementType());
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000754 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
755 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000756 return;
757 }
758
759 case Type::StructTyID: {
760 const ConstantStruct *CPS = cast<ConstantStruct>(Init);
761 const StructLayout *SL =
Owen Andersona69571c2006-05-03 01:29:57 +0000762 getTargetData()->getStructLayout(cast<StructType>(CPS->getType()));
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000763 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
Chris Lattnerb1919e22007-02-10 19:55:17 +0000764 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i));
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000765 return;
766 }
767
768 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000769 cerr << "Bad Type: " << *Init->getType() << "\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000770 assert(0 && "Unknown constant type to initialize memory with!");
771 }
772}
773
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000774/// EmitGlobals - Emit all of the global variables to memory, storing their
775/// addresses into GlobalAddress. This must make sure to copy the contents of
776/// their initializers into the memory.
777///
778void ExecutionEngine::emitGlobals() {
Owen Andersona69571c2006-05-03 01:29:57 +0000779 const TargetData *TD = getTargetData();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000780
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000781 // Loop over all of the global variables in the program, allocating the memory
Chris Lattnerfe854032006-08-16 01:24:12 +0000782 // to hold them. If there is more than one module, do a prepass over globals
783 // to figure out how the different modules should link together.
784 //
785 std::map<std::pair<std::string, const Type*>,
786 const GlobalValue*> LinkedGlobalsMap;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000787
Chris Lattnerfe854032006-08-16 01:24:12 +0000788 if (Modules.size() != 1) {
789 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
790 Module &M = *Modules[m]->getModule();
791 for (Module::const_global_iterator I = M.global_begin(),
792 E = M.global_end(); I != E; ++I) {
793 const GlobalValue *GV = I;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000794 if (GV->hasInternalLinkage() || GV->isDeclaration() ||
Chris Lattnerfe854032006-08-16 01:24:12 +0000795 GV->hasAppendingLinkage() || !GV->hasName())
796 continue;// Ignore external globals and globals with internal linkage.
797
798 const GlobalValue *&GVEntry =
799 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
800
801 // If this is the first time we've seen this global, it is the canonical
802 // version.
803 if (!GVEntry) {
804 GVEntry = GV;
805 continue;
806 }
807
808 // If the existing global is strong, never replace it.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000809 if (GVEntry->hasExternalLinkage() ||
810 GVEntry->hasDLLImportLinkage() ||
811 GVEntry->hasDLLExportLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +0000812 continue;
813
814 // Otherwise, we know it's linkonce/weak, replace it if this is a strong
815 // symbol.
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000816 if (GV->hasExternalLinkage() || GVEntry->hasExternalWeakLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +0000817 GVEntry = GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000818 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000819 }
Chris Lattnerfe854032006-08-16 01:24:12 +0000820 }
821
822 std::vector<const GlobalValue*> NonCanonicalGlobals;
823 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
824 Module &M = *Modules[m]->getModule();
825 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
826 I != E; ++I) {
827 // In the multi-module case, see what this global maps to.
828 if (!LinkedGlobalsMap.empty()) {
829 if (const GlobalValue *GVEntry =
830 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())]) {
831 // If something else is the canonical global, ignore this one.
832 if (GVEntry != &*I) {
833 NonCanonicalGlobals.push_back(I);
834 continue;
835 }
836 }
837 }
838
Reid Spencer5cbf9852007-01-30 20:08:39 +0000839 if (!I->isDeclaration()) {
Chris Lattnerfe854032006-08-16 01:24:12 +0000840 // Get the type of the global.
841 const Type *Ty = I->getType()->getElementType();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000842
Chris Lattnerfe854032006-08-16 01:24:12 +0000843 // Allocate some memory for it!
Duncan Sands514ab342007-11-01 20:53:16 +0000844 unsigned Size = TD->getABITypeSize(Ty);
Chris Lattnerfe854032006-08-16 01:24:12 +0000845 addGlobalMapping(I, new char[Size]);
846 } else {
847 // External variable reference. Try to use the dynamic loader to
848 // get a pointer to it.
849 if (void *SymAddr =
850 sys::DynamicLibrary::SearchForAddressOfSymbol(I->getName().c_str()))
851 addGlobalMapping(I, SymAddr);
852 else {
Bill Wendlinge8156192006-12-07 01:30:32 +0000853 cerr << "Could not resolve external global address: "
854 << I->getName() << "\n";
Chris Lattnerfe854032006-08-16 01:24:12 +0000855 abort();
856 }
857 }
858 }
859
860 // If there are multiple modules, map the non-canonical globals to their
861 // canonical location.
862 if (!NonCanonicalGlobals.empty()) {
863 for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) {
864 const GlobalValue *GV = NonCanonicalGlobals[i];
865 const GlobalValue *CGV =
866 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
867 void *Ptr = getPointerToGlobalIfAvailable(CGV);
868 assert(Ptr && "Canonical global wasn't codegen'd!");
869 addGlobalMapping(GV, getPointerToGlobalIfAvailable(CGV));
870 }
871 }
872
Reid Spencera54b7cb2007-01-12 07:05:14 +0000873 // Now that all of the globals are set up in memory, loop through them all
874 // and initialize their contents.
Chris Lattnerfe854032006-08-16 01:24:12 +0000875 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
876 I != E; ++I) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000877 if (!I->isDeclaration()) {
Chris Lattnerfe854032006-08-16 01:24:12 +0000878 if (!LinkedGlobalsMap.empty()) {
879 if (const GlobalValue *GVEntry =
880 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())])
881 if (GVEntry != &*I) // Not the canonical variable.
882 continue;
883 }
884 EmitGlobalVariable(I);
885 }
886 }
887 }
Chris Lattner24b0a182003-12-20 02:45:37 +0000888}
889
890// EmitGlobalVariable - This method emits the specified global variable to the
891// address specified in GlobalAddresses, or allocates new memory if it's not
892// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +0000893void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +0000894 void *GA = getPointerToGlobalIfAvailable(GV);
Bill Wendling480f0932006-11-27 23:54:50 +0000895 DOUT << "Global '" << GV->getName() << "' -> " << GA << "\n";
Chris Lattner23c47242004-02-08 19:33:23 +0000896
Chris Lattnerc07ed132003-12-20 03:36:47 +0000897 const Type *ElTy = GV->getType()->getElementType();
Duncan Sands514ab342007-11-01 20:53:16 +0000898 size_t GVSize = (size_t)getTargetData()->getABITypeSize(ElTy);
Chris Lattner24b0a182003-12-20 02:45:37 +0000899 if (GA == 0) {
900 // If it's not already specified, allocate memory for the global.
Chris Lattnera98c5452004-11-19 08:44:07 +0000901 GA = new char[GVSize];
Chris Lattner55d86482003-12-31 20:21:04 +0000902 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +0000903 }
Chris Lattnerc07ed132003-12-20 03:36:47 +0000904
Chris Lattner24b0a182003-12-20 02:45:37 +0000905 InitializeMemory(GV->getInitializer(), GA);
Chris Lattner813c8152005-01-08 20:13:19 +0000906 NumInitBytes += (unsigned)GVSize;
Chris Lattner24b0a182003-12-20 02:45:37 +0000907 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000908}