blob: da21c2de9aa47bbddd60bfbf27140f4d02f9d064 [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//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// 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"
Jeffrey Yasskin0d5bd592009-08-07 19:54:29 +000016#include "llvm/ExecutionEngine/ExecutionEngine.h"
17
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 Lattnerbd199fb2002-12-24 00:01:05 +000020#include "llvm/Module.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000021#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattner9f3ff922009-08-23 22:49:13 +000022#include "llvm/ADT/Statistic.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/Debug.h"
Torok Edwin31e24662009-07-07 17:32:34 +000024#include "llvm/Support/ErrorHandling.h"
Chris Lattnere7fd5532006-05-08 22:00:52 +000025#include "llvm/Support/MutexGuard.h"
Jeffrey Yasskin0d5bd592009-08-07 19:54:29 +000026#include "llvm/Support/ValueHandle.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000027#include "llvm/Support/raw_ostream.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000028#include "llvm/System/DynamicLibrary.h"
Duncan Sands67f1c492007-12-12 23:03:45 +000029#include "llvm/System/Host.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000030#include "llvm/Target/TargetData.h"
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000031#include <cmath>
32#include <cstring>
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000033using namespace llvm;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000034
Chris Lattner36343732006-12-19 22:43:32 +000035STATISTIC(NumInitBytes, "Number of bytes of global vars initialized");
36STATISTIC(NumGlobals , "Number of global vars initialized");
Chris Lattnerbd199fb2002-12-24 00:01:05 +000037
Jeffrey Yasskin46882612010-02-05 16:19:36 +000038ExecutionEngine *(*ExecutionEngine::JITCtor)(
39 Module *M,
40 std::string *ErrorStr,
41 JITMemoryManager *JMM,
42 CodeGenOpt::Level OptLevel,
43 bool GVsWithCode,
44 CodeModel::Model CMM,
45 StringRef MArch,
46 StringRef MCPU,
47 const SmallVectorImpl<std::string>& MAttrs) = 0;
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +000048ExecutionEngine *(*ExecutionEngine::InterpCtor)(Module *M,
Reid Kleckner4b1511b2009-07-18 00:42:18 +000049 std::string *ErrorStr) = 0;
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +000050ExecutionEngine::EERegisterFn ExecutionEngine::ExceptionTableRegister = 0;
51
Chris Lattner2fe4bb02006-03-22 06:07:50 +000052
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +000053ExecutionEngine::ExecutionEngine(Module *M)
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +000054 : EEState(*this),
55 LazyFunctionCreator(0) {
Jeffrey Yasskindc857242009-10-27 20:30:28 +000056 CompilingLazily = false;
Evan Cheng446531e2008-09-24 16:25:55 +000057 GVCompilationDisabled = false;
Evan Cheng1b088f32008-06-17 16:49:02 +000058 SymbolSearchingDisabled = false;
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +000059 Modules.push_back(M);
60 assert(M && "Module is null?");
Misha Brukman19684162003-10-16 21:18:05 +000061}
62
Brian Gaeke8e539482003-09-04 22:57:27 +000063ExecutionEngine::~ExecutionEngine() {
Reid Spencerd4c0e622007-03-03 18:19:18 +000064 clearAllGlobalMappings();
Chris Lattnerfe854032006-08-16 01:24:12 +000065 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
66 delete Modules[i];
Brian Gaeke8e539482003-09-04 22:57:27 +000067}
68
Jeffrey Yasskin47b71122010-03-27 04:53:56 +000069namespace {
70// This class automatically deletes the memory block when the GlobalVariable is
71// destroyed.
72class GVMemoryBlock : public CallbackVH {
73 GVMemoryBlock(const GlobalVariable *GV)
74 : CallbackVH(const_cast<GlobalVariable*>(GV)) {}
75
76public:
77 // Returns the address the GlobalVariable should be written into. The
78 // GVMemoryBlock object prefixes that.
79 static char *Create(const GlobalVariable *GV, const TargetData& TD) {
80 const Type *ElTy = GV->getType()->getElementType();
81 size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy);
82 void *RawMemory = ::operator new(
83 TargetData::RoundUpAlignment(sizeof(GVMemoryBlock),
84 TD.getPreferredAlignment(GV))
85 + GVSize);
86 new(RawMemory) GVMemoryBlock(GV);
87 return static_cast<char*>(RawMemory) + sizeof(GVMemoryBlock);
88 }
89
90 virtual void deleted() {
91 // We allocated with operator new and with some extra memory hanging off the
92 // end, so don't just delete this. I'm not sure if this is actually
93 // required.
94 this->~GVMemoryBlock();
95 ::operator delete(this);
96 }
97};
98} // anonymous namespace
99
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000100char* ExecutionEngine::getMemoryForGV(const GlobalVariable* GV) {
Jeffrey Yasskin47b71122010-03-27 04:53:56 +0000101 return GVMemoryBlock::Create(GV, *getTargetData());
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000102}
103
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000104/// removeModule - Remove a Module from the list of modules.
105bool ExecutionEngine::removeModule(Module *M) {
106 for(SmallVector<Module *, 1>::iterator I = Modules.begin(),
Devang Patel73d0e212007-10-15 19:56:32 +0000107 E = Modules.end(); I != E; ++I) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000108 Module *Found = *I;
109 if (Found == M) {
Devang Patel73d0e212007-10-15 19:56:32 +0000110 Modules.erase(I);
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000111 clearGlobalMappingsFromModule(M);
112 return true;
Devang Patel73d0e212007-10-15 19:56:32 +0000113 }
114 }
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000115 return false;
Nate Begeman60789e42009-01-23 19:27:28 +0000116}
117
Chris Lattnerfe854032006-08-16 01:24:12 +0000118/// FindFunctionNamed - Search all of the active modules to find the one that
119/// defines FnName. This is very slow operation and shouldn't be used for
120/// general code.
121Function *ExecutionEngine::FindFunctionNamed(const char *FnName) {
122 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000123 if (Function *F = Modules[i]->getFunction(FnName))
Chris Lattnerfe854032006-08-16 01:24:12 +0000124 return F;
125 }
126 return 0;
127}
128
129
Jeffrey Yasskinc89d27a2009-10-09 22:10:27 +0000130void *ExecutionEngineState::RemoveMapping(
131 const MutexGuard &, const GlobalValue *ToUnmap) {
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000132 GlobalAddressMapTy::iterator I = GlobalAddressMap.find(ToUnmap);
Jeffrey Yasskinc89d27a2009-10-09 22:10:27 +0000133 void *OldVal;
134 if (I == GlobalAddressMap.end())
135 OldVal = 0;
136 else {
137 OldVal = I->second;
138 GlobalAddressMap.erase(I);
139 }
140
141 GlobalAddressReverseMap.erase(OldVal);
142 return OldVal;
143}
144
Chris Lattnere7fd5532006-05-08 22:00:52 +0000145/// addGlobalMapping - Tell the execution engine that the specified global is
146/// at the specified location. This is used internally as functions are JIT'd
147/// and as global variables are laid out in memory. It can and should also be
148/// used by clients of the EE that want to have an LLVM global overlay
149/// existing data in memory.
150void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) {
151 MutexGuard locked(lock);
Evan Chengbc4707a2008-09-18 07:54:21 +0000152
David Greeneae7c59a2010-01-05 01:27:39 +0000153 DEBUG(dbgs() << "JIT: Map \'" << GV->getName()
Daniel Dunbar93b67e42009-07-26 07:49:05 +0000154 << "\' to [" << Addr << "]\n";);
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000155 void *&CurVal = EEState.getGlobalAddressMap(locked)[GV];
Chris Lattnere7fd5532006-05-08 22:00:52 +0000156 assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!");
157 CurVal = Addr;
158
159 // If we are using the reverse mapping, add it too
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000160 if (!EEState.getGlobalAddressReverseMap(locked).empty()) {
Jeffrey Yasskin0d5bd592009-08-07 19:54:29 +0000161 AssertingVH<const GlobalValue> &V =
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000162 EEState.getGlobalAddressReverseMap(locked)[Addr];
Chris Lattnere7fd5532006-05-08 22:00:52 +0000163 assert((V == 0 || GV == 0) && "GlobalMapping already established!");
164 V = GV;
165 }
166}
167
168/// clearAllGlobalMappings - Clear all global mappings and start over again
169/// use in dynamic compilation scenarios when you want to move globals
170void ExecutionEngine::clearAllGlobalMappings() {
171 MutexGuard locked(lock);
172
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000173 EEState.getGlobalAddressMap(locked).clear();
174 EEState.getGlobalAddressReverseMap(locked).clear();
Chris Lattnere7fd5532006-05-08 22:00:52 +0000175}
176
Nate Begemanf049e072008-05-21 16:34:48 +0000177/// clearGlobalMappingsFromModule - Clear all global mappings that came from a
178/// particular module, because it has been removed from the JIT.
179void ExecutionEngine::clearGlobalMappingsFromModule(Module *M) {
180 MutexGuard locked(lock);
181
182 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI) {
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000183 EEState.RemoveMapping(locked, FI);
Nate Begemanf049e072008-05-21 16:34:48 +0000184 }
185 for (Module::global_iterator GI = M->global_begin(), GE = M->global_end();
186 GI != GE; ++GI) {
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000187 EEState.RemoveMapping(locked, GI);
Nate Begemanf049e072008-05-21 16:34:48 +0000188 }
189}
190
Chris Lattnere7fd5532006-05-08 22:00:52 +0000191/// updateGlobalMapping - Replace an existing mapping for GV with a new
192/// address. This updates both maps as required. If "Addr" is null, the
193/// entry for the global is removed from the mappings.
Chris Lattnerf4cc3092008-04-04 04:47:41 +0000194void *ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) {
Chris Lattnere7fd5532006-05-08 22:00:52 +0000195 MutexGuard locked(lock);
Chris Lattnerf4cc3092008-04-04 04:47:41 +0000196
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000197 ExecutionEngineState::GlobalAddressMapTy &Map =
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000198 EEState.getGlobalAddressMap(locked);
Chris Lattnerf4cc3092008-04-04 04:47:41 +0000199
Chris Lattnere7fd5532006-05-08 22:00:52 +0000200 // Deleting from the mapping?
201 if (Addr == 0) {
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000202 return EEState.RemoveMapping(locked, GV);
Chris Lattnere7fd5532006-05-08 22:00:52 +0000203 }
204
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000205 void *&CurVal = Map[GV];
Chris Lattnerf4cc3092008-04-04 04:47:41 +0000206 void *OldVal = CurVal;
207
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000208 if (CurVal && !EEState.getGlobalAddressReverseMap(locked).empty())
209 EEState.getGlobalAddressReverseMap(locked).erase(CurVal);
Chris Lattnere7fd5532006-05-08 22:00:52 +0000210 CurVal = Addr;
211
212 // If we are using the reverse mapping, add it too
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000213 if (!EEState.getGlobalAddressReverseMap(locked).empty()) {
Jeffrey Yasskin0d5bd592009-08-07 19:54:29 +0000214 AssertingVH<const GlobalValue> &V =
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000215 EEState.getGlobalAddressReverseMap(locked)[Addr];
Chris Lattnere7fd5532006-05-08 22:00:52 +0000216 assert((V == 0 || GV == 0) && "GlobalMapping already established!");
217 V = GV;
218 }
Chris Lattnerf4cc3092008-04-04 04:47:41 +0000219 return OldVal;
Chris Lattnere7fd5532006-05-08 22:00:52 +0000220}
221
222/// getPointerToGlobalIfAvailable - This returns the address of the specified
223/// global value if it is has already been codegen'd, otherwise it returns null.
224///
225void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
226 MutexGuard locked(lock);
227
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000228 ExecutionEngineState::GlobalAddressMapTy::iterator I =
229 EEState.getGlobalAddressMap(locked).find(GV);
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000230 return I != EEState.getGlobalAddressMap(locked).end() ? I->second : 0;
Chris Lattnere7fd5532006-05-08 22:00:52 +0000231}
232
Chris Lattner55d86482003-12-31 20:21:04 +0000233/// getGlobalValueAtAddress - Return the LLVM global value object that starts
234/// at the specified address.
235///
236const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
Reid Spenceree448632005-07-12 15:51:55 +0000237 MutexGuard locked(lock);
238
Chris Lattner55d86482003-12-31 20:21:04 +0000239 // If we haven't computed the reverse mapping yet, do so first.
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000240 if (EEState.getGlobalAddressReverseMap(locked).empty()) {
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000241 for (ExecutionEngineState::GlobalAddressMapTy::iterator
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000242 I = EEState.getGlobalAddressMap(locked).begin(),
243 E = EEState.getGlobalAddressMap(locked).end(); I != E; ++I)
244 EEState.getGlobalAddressReverseMap(locked).insert(std::make_pair(I->second,
Chris Lattnere7fd5532006-05-08 22:00:52 +0000245 I->first));
Chris Lattner55d86482003-12-31 20:21:04 +0000246 }
247
Jeffrey Yasskin0d5bd592009-08-07 19:54:29 +0000248 std::map<void *, AssertingVH<const GlobalValue> >::iterator I =
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000249 EEState.getGlobalAddressReverseMap(locked).find(Addr);
250 return I != EEState.getGlobalAddressReverseMap(locked).end() ? I->second : 0;
Chris Lattner55d86482003-12-31 20:21:04 +0000251}
Chris Lattner87f03102003-12-26 06:50:30 +0000252
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000253namespace {
254class ArgvArray {
255 char *Array;
256 std::vector<char*> Values;
257public:
258 ArgvArray() : Array(NULL) {}
259 ~ArgvArray() { clear(); }
260 void clear() {
261 delete[] Array;
262 Array = NULL;
263 for (size_t I = 0, E = Values.size(); I != E; ++I) {
264 delete[] Values[I];
265 }
266 Values.clear();
267 }
268 /// Turn a vector of strings into a nice argv style array of pointers to null
269 /// terminated strings.
270 void *reset(LLVMContext &C, ExecutionEngine *EE,
271 const std::vector<std::string> &InputArgv);
272};
273} // anonymous namespace
274void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE,
275 const std::vector<std::string> &InputArgv) {
276 clear(); // Free the old contents.
Owen Andersona69571c2006-05-03 01:29:57 +0000277 unsigned PtrSize = EE->getTargetData()->getPointerSize();
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000278 Array = new char[(InputArgv.size()+1)*PtrSize];
Chris Lattner87f03102003-12-26 06:50:30 +0000279
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000280 DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array << "\n");
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000281 const Type *SBytePtr = Type::getInt8PtrTy(C);
Chris Lattner87f03102003-12-26 06:50:30 +0000282
283 for (unsigned i = 0; i != InputArgv.size(); ++i) {
284 unsigned Size = InputArgv[i].size()+1;
285 char *Dest = new char[Size];
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000286 Values.push_back(Dest);
David Greeneae7c59a2010-01-05 01:27:39 +0000287 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n");
Misha Brukmanedf128a2005-04-21 22:36:52 +0000288
Chris Lattner87f03102003-12-26 06:50:30 +0000289 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
290 Dest[Size-1] = 0;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000291
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000292 // Endian safe: Array[i] = (PointerTy)Dest;
293 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
Chris Lattner87f03102003-12-26 06:50:30 +0000294 SBytePtr);
295 }
296
297 // Null terminate it
298 EE->StoreValueToMemory(PTOGV(0),
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000299 (GenericValue*)(Array+InputArgv.size()*PtrSize),
Chris Lattner87f03102003-12-26 06:50:30 +0000300 SBytePtr);
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000301 return Array;
Chris Lattner87f03102003-12-26 06:50:30 +0000302}
303
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000304
305/// runStaticConstructorsDestructors - This method is used to execute all of
Evan Cheng18314dc2008-09-30 15:51:21 +0000306/// the static constructors or destructors for a module, depending on the
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000307/// value of isDtors.
Chris Lattnerfbd39762009-09-23 01:46:04 +0000308void ExecutionEngine::runStaticConstructorsDestructors(Module *module,
309 bool isDtors) {
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000310 const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000311
Chris Lattnerfe854032006-08-16 01:24:12 +0000312 // Execute global ctors/dtors for each module in the program.
Chris Lattnerfe854032006-08-16 01:24:12 +0000313
Evan Cheng18314dc2008-09-30 15:51:21 +0000314 GlobalVariable *GV = module->getNamedGlobal(Name);
315
316 // If this global has internal linkage, or if it has a use, then it must be
317 // an old-style (llvmgcc3) static ctor with __main linked in and in use. If
318 // this is the case, don't execute any of the global ctors, __main will do
319 // it.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000320 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage()) return;
Evan Cheng18314dc2008-09-30 15:51:21 +0000321
322 // Should be an array of '{ int, void ()* }' structs. The first value is
323 // the init priority, which we ignore.
324 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
325 if (!InitList) return;
326 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
327 if (ConstantStruct *CS =
328 dyn_cast<ConstantStruct>(InitList->getOperand(i))) {
329 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
330
331 Constant *FP = CS->getOperand(1);
332 if (FP->isNullValue())
333 break; // Found a null terminator, exit.
334
335 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
336 if (CE->isCast())
337 FP = CE->getOperand(0);
338 if (Function *F = dyn_cast<Function>(FP)) {
339 // Execute the ctor/dtor function!
340 runFunction(F, std::vector<GenericValue>());
341 }
342 }
343}
344
345/// runStaticConstructorsDestructors - This method is used to execute all of
346/// the static constructors or destructors for a program, depending on the
347/// value of isDtors.
348void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
349 // Execute global ctors/dtors for each module in the program.
350 for (unsigned m = 0, e = Modules.size(); m != e; ++m)
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000351 runStaticConstructorsDestructors(Modules[m], isDtors);
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000352}
353
Dan Gohmanb6e3d6c2008-08-26 01:38:29 +0000354#ifndef NDEBUG
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000355/// isTargetNullPtr - Return whether the target pointer stored at Loc is null.
356static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) {
357 unsigned PtrSize = EE->getTargetData()->getPointerSize();
358 for (unsigned i = 0; i < PtrSize; ++i)
359 if (*(i + (uint8_t*)Loc))
360 return false;
361 return true;
362}
Dan Gohmanb6e3d6c2008-08-26 01:38:29 +0000363#endif
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000364
Chris Lattner87f03102003-12-26 06:50:30 +0000365/// runFunctionAsMain - This is a helper function which wraps runFunction to
366/// handle the common task of starting up main with the specified argc, argv,
367/// and envp parameters.
368int ExecutionEngine::runFunctionAsMain(Function *Fn,
369 const std::vector<std::string> &argv,
370 const char * const * envp) {
371 std::vector<GenericValue> GVArgs;
372 GenericValue GVArgc;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000373 GVArgc.IntVal = APInt(32, argv.size());
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000374
375 // Check main() type
Chris Lattnerf24d0992004-08-16 01:05:35 +0000376 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000377 const FunctionType *FTy = Fn->getFunctionType();
Benjamin Kramerf0127052010-01-05 13:12:22 +0000378 const Type* PPInt8Ty = Type::getInt8PtrTy(Fn->getContext())->getPointerTo();
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000379 switch (NumArgs) {
380 case 3:
381 if (FTy->getParamType(2) != PPInt8Ty) {
Torok Edwin7d696d82009-07-11 13:10:19 +0000382 llvm_report_error("Invalid type for third argument of main() supplied");
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000383 }
Anton Korobeynikovfb450862007-06-03 19:20:49 +0000384 // FALLS THROUGH
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000385 case 2:
386 if (FTy->getParamType(1) != PPInt8Ty) {
Torok Edwin7d696d82009-07-11 13:10:19 +0000387 llvm_report_error("Invalid type for second argument of main() supplied");
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000388 }
Anton Korobeynikovfb450862007-06-03 19:20:49 +0000389 // FALLS THROUGH
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000390 case 1:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000391 if (!FTy->getParamType(0)->isIntegerTy(32)) {
Torok Edwin7d696d82009-07-11 13:10:19 +0000392 llvm_report_error("Invalid type for first argument of main() supplied");
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000393 }
Anton Korobeynikovfb450862007-06-03 19:20:49 +0000394 // FALLS THROUGH
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000395 case 0:
Duncan Sands1df98592010-02-16 11:11:14 +0000396 if (!FTy->getReturnType()->isIntegerTy() &&
Benjamin Kramerf0127052010-01-05 13:12:22 +0000397 !FTy->getReturnType()->isVoidTy()) {
Torok Edwin7d696d82009-07-11 13:10:19 +0000398 llvm_report_error("Invalid return type of main() supplied");
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000399 }
400 break;
401 default:
Torok Edwin7d696d82009-07-11 13:10:19 +0000402 llvm_report_error("Invalid number of arguments of main() supplied");
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000403 }
404
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000405 ArgvArray CArgv;
406 ArgvArray CEnv;
Chris Lattnerf24d0992004-08-16 01:05:35 +0000407 if (NumArgs) {
408 GVArgs.push_back(GVArgc); // Arg #0 = argc.
409 if (NumArgs > 1) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000410 // Arg #1 = argv.
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000411 GVArgs.push_back(PTOGV(CArgv.reset(Fn->getContext(), this, argv)));
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000412 assert(!isTargetNullPtr(this, GVTOP(GVArgs[1])) &&
Chris Lattnerf24d0992004-08-16 01:05:35 +0000413 "argv[0] was null after CreateArgv");
414 if (NumArgs > 2) {
415 std::vector<std::string> EnvVars;
416 for (unsigned i = 0; envp[i]; ++i)
417 EnvVars.push_back(envp[i]);
Owen Anderson1d0be152009-08-13 21:58:54 +0000418 // Arg #2 = envp.
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000419 GVArgs.push_back(PTOGV(CEnv.reset(Fn->getContext(), this, EnvVars)));
Chris Lattnerf24d0992004-08-16 01:05:35 +0000420 }
421 }
422 }
Reid Spencer8fb0f192007-03-06 03:04:04 +0000423 return runFunction(Fn, GVArgs).IntVal.getZExtValue();
Chris Lattner87f03102003-12-26 06:50:30 +0000424}
425
Misha Brukman19684162003-10-16 21:18:05 +0000426/// If possible, create a JIT, unless the caller specifically requests an
427/// Interpreter or there's an error. If even an Interpreter cannot be created,
Misha Brukmanedf128a2005-04-21 22:36:52 +0000428/// NULL is returned.
Misha Brukman4afac182003-10-10 17:45:12 +0000429///
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000430ExecutionEngine *ExecutionEngine::create(Module *M,
Reid Spencerd4c0e622007-03-03 18:19:18 +0000431 bool ForceInterpreter,
Evan Cheng502f20b2008-08-08 08:11:34 +0000432 std::string *ErrorStr,
Jeffrey Yasskin489393d2009-07-08 21:59:57 +0000433 CodeGenOpt::Level OptLevel,
434 bool GVsWithCode) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000435 return EngineBuilder(M)
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000436 .setEngineKind(ForceInterpreter
437 ? EngineKind::Interpreter
438 : EngineKind::JIT)
439 .setErrorStr(ErrorStr)
440 .setOptLevel(OptLevel)
441 .setAllocateGVsWithCode(GVsWithCode)
442 .create();
443}
Brian Gaeke82d82772003-09-03 20:34:19 +0000444
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000445ExecutionEngine *EngineBuilder::create() {
Nick Lewycky6456d862008-03-08 02:49:45 +0000446 // Make sure we can resolve symbols in the program as well. The zero arg
447 // to the function tells DynamicLibrary to load the program, not a library.
448 if (sys::DynamicLibrary::LoadLibraryPermanently(0, ErrorStr))
449 return 0;
450
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000451 // If the user specified a memory manager but didn't specify which engine to
452 // create, we assume they only want the JIT, and we fail if they only want
453 // the interpreter.
454 if (JMM) {
Chris Lattnerfbd39762009-09-23 01:46:04 +0000455 if (WhichEngine & EngineKind::JIT)
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000456 WhichEngine = EngineKind::JIT;
Chris Lattnerfbd39762009-09-23 01:46:04 +0000457 else {
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000458 if (ErrorStr)
459 *ErrorStr = "Cannot create an interpreter with a memory manager.";
Chris Lattnerfbd39762009-09-23 01:46:04 +0000460 return 0;
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000461 }
462 }
Brian Gaeke82d82772003-09-03 20:34:19 +0000463
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000464 // Unless the interpreter was explicitly selected or the JIT is not linked,
465 // try making a JIT.
Chris Lattnerfbd39762009-09-23 01:46:04 +0000466 if (WhichEngine & EngineKind::JIT) {
467 if (ExecutionEngine::JITCtor) {
468 ExecutionEngine *EE =
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000469 ExecutionEngine::JITCtor(M, ErrorStr, JMM, OptLevel,
Jeffrey Yasskin46882612010-02-05 16:19:36 +0000470 AllocateGVsWithCode, CMModel,
471 MArch, MCPU, MAttrs);
Chris Lattnerfbd39762009-09-23 01:46:04 +0000472 if (EE) return EE;
Chris Lattnerfbd39762009-09-23 01:46:04 +0000473 }
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000474 }
475
476 // If we can't make a JIT and we didn't request one specifically, try making
477 // an interpreter instead.
Chris Lattnerfbd39762009-09-23 01:46:04 +0000478 if (WhichEngine & EngineKind::Interpreter) {
479 if (ExecutionEngine::InterpCtor)
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000480 return ExecutionEngine::InterpCtor(M, ErrorStr);
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000481 if (ErrorStr)
482 *ErrorStr = "Interpreter has not been linked in.";
Chris Lattnerfbd39762009-09-23 01:46:04 +0000483 return 0;
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000484 }
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000485
486 if ((WhichEngine & EngineKind::JIT) && ExecutionEngine::JITCtor == 0) {
487 if (ErrorStr)
488 *ErrorStr = "JIT has not been linked in.";
489 }
Chris Lattnerfbd39762009-09-23 01:46:04 +0000490 return 0;
Brian Gaeke82d82772003-09-03 20:34:19 +0000491}
492
Misha Brukman4afac182003-10-10 17:45:12 +0000493/// getPointerToGlobal - This returns the address of the specified global
494/// value. This may involve code generation if it's a function.
495///
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000496void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000497 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000498 return getPointerToFunction(F);
499
Reid Spenceree448632005-07-12 15:51:55 +0000500 MutexGuard locked(lock);
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000501 void *p = EEState.getGlobalAddressMap(locked)[GV];
Jeff Cohen68835dd2006-02-07 05:11:57 +0000502 if (p)
503 return p;
504
505 // Global variable might have been added since interpreter started.
506 if (GlobalVariable *GVar =
507 const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
508 EmitGlobalVariable(GVar);
509 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000510 llvm_unreachable("Global hasn't had an address allocated yet!");
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000511 return EEState.getGlobalAddressMap(locked)[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000512}
513
Reid Spencer3da59db2006-11-27 01:05:10 +0000514/// This function converts a Constant* into a GenericValue. The interesting
515/// part is if C is a ConstantExpr.
Reid Spencerba28cb92007-08-11 15:57:56 +0000516/// @brief Get a GenericValue for a Constant*
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000517GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000518 // If its undefined, return the garbage.
Jay Foad5b370122010-01-15 08:32:58 +0000519 if (isa<UndefValue>(C)) {
520 GenericValue Result;
521 switch (C->getType()->getTypeID()) {
522 case Type::IntegerTyID:
523 case Type::X86_FP80TyID:
524 case Type::FP128TyID:
525 case Type::PPC_FP128TyID:
526 // Although the value is undefined, we still have to construct an APInt
527 // with the correct bit width.
528 Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0);
529 break;
530 default:
531 break;
532 }
533 return Result;
534 }
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000535
Reid Spencer3da59db2006-11-27 01:05:10 +0000536 // If the value is a ConstantExpr
537 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Reid Spencerbce30f12007-03-06 22:23:15 +0000538 Constant *Op0 = CE->getOperand(0);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000539 switch (CE->getOpcode()) {
540 case Instruction::GetElementPtr: {
Reid Spencer3da59db2006-11-27 01:05:10 +0000541 // Compute the index
Reid Spencerbce30f12007-03-06 22:23:15 +0000542 GenericValue Result = getConstantValue(Op0);
Chris Lattner829621c2007-02-10 20:35:22 +0000543 SmallVector<Value*, 8> Indices(CE->op_begin()+1, CE->op_end());
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000544 uint64_t Offset =
Reid Spencerbce30f12007-03-06 22:23:15 +0000545 TD->getIndexedOffset(Op0->getType(), &Indices[0], Indices.size());
Misha Brukmanedf128a2005-04-21 22:36:52 +0000546
Reid Spencer8fb0f192007-03-06 03:04:04 +0000547 char* tmp = (char*) Result.PointerVal;
548 Result = PTOGV(tmp + Offset);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000549 return Result;
550 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000551 case Instruction::Trunc: {
552 GenericValue GV = getConstantValue(Op0);
553 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
554 GV.IntVal = GV.IntVal.trunc(BitWidth);
555 return GV;
556 }
557 case Instruction::ZExt: {
558 GenericValue GV = getConstantValue(Op0);
559 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
560 GV.IntVal = GV.IntVal.zext(BitWidth);
561 return GV;
562 }
563 case Instruction::SExt: {
564 GenericValue GV = getConstantValue(Op0);
565 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
566 GV.IntVal = GV.IntVal.sext(BitWidth);
567 return GV;
568 }
569 case Instruction::FPTrunc: {
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000570 // FIXME long double
Reid Spencerbce30f12007-03-06 22:23:15 +0000571 GenericValue GV = getConstantValue(Op0);
572 GV.FloatVal = float(GV.DoubleVal);
573 return GV;
574 }
575 case Instruction::FPExt:{
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000576 // FIXME long double
Reid Spencerbce30f12007-03-06 22:23:15 +0000577 GenericValue GV = getConstantValue(Op0);
578 GV.DoubleVal = double(GV.FloatVal);
579 return GV;
580 }
581 case Instruction::UIToFP: {
582 GenericValue GV = getConstantValue(Op0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000583 if (CE->getType()->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000584 GV.FloatVal = float(GV.IntVal.roundToDouble());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000585 else if (CE->getType()->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000586 GV.DoubleVal = GV.IntVal.roundToDouble();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000587 else if (CE->getType()->isX86_FP80Ty()) {
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000588 const uint64_t zero[] = {0, 0};
589 APFloat apf = APFloat(APInt(80, 2, zero));
Dan Gohman62824062008-02-29 01:27:13 +0000590 (void)apf.convertFromAPInt(GV.IntVal,
591 false,
592 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000593 GV.IntVal = apf.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000594 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000595 return GV;
596 }
597 case Instruction::SIToFP: {
598 GenericValue GV = getConstantValue(Op0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000599 if (CE->getType()->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000600 GV.FloatVal = float(GV.IntVal.signedRoundToDouble());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000601 else if (CE->getType()->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000602 GV.DoubleVal = GV.IntVal.signedRoundToDouble();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000603 else if (CE->getType()->isX86_FP80Ty()) {
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000604 const uint64_t zero[] = { 0, 0};
605 APFloat apf = APFloat(APInt(80, 2, zero));
Dan Gohman62824062008-02-29 01:27:13 +0000606 (void)apf.convertFromAPInt(GV.IntVal,
607 true,
608 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000609 GV.IntVal = apf.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000610 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000611 return GV;
612 }
613 case Instruction::FPToUI: // double->APInt conversion handles sign
614 case Instruction::FPToSI: {
615 GenericValue GV = getConstantValue(Op0);
616 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000617 if (Op0->getType()->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000618 GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000619 else if (Op0->getType()->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000620 GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000621 else if (Op0->getType()->isX86_FP80Ty()) {
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000622 APFloat apf = APFloat(GV.IntVal);
623 uint64_t v;
Dale Johannesen23a98552008-10-09 23:00:39 +0000624 bool ignored;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000625 (void)apf.convertToInteger(&v, BitWidth,
626 CE->getOpcode()==Instruction::FPToSI,
Dale Johannesen23a98552008-10-09 23:00:39 +0000627 APFloat::rmTowardZero, &ignored);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000628 GV.IntVal = v; // endian?
629 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000630 return GV;
631 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000632 case Instruction::PtrToInt: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000633 GenericValue GV = getConstantValue(Op0);
634 uint32_t PtrWidth = TD->getPointerSizeInBits();
635 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
636 return GV;
637 }
638 case Instruction::IntToPtr: {
639 GenericValue GV = getConstantValue(Op0);
640 uint32_t PtrWidth = TD->getPointerSizeInBits();
641 if (PtrWidth != GV.IntVal.getBitWidth())
642 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
643 assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width");
644 GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue()));
Reid Spencer3da59db2006-11-27 01:05:10 +0000645 return GV;
646 }
647 case Instruction::BitCast: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000648 GenericValue GV = getConstantValue(Op0);
649 const Type* DestTy = CE->getType();
650 switch (Op0->getType()->getTypeID()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000651 default: llvm_unreachable("Invalid bitcast operand");
Reid Spencerbce30f12007-03-06 22:23:15 +0000652 case Type::IntegerTyID:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000653 assert(DestTy->isFloatingPointTy() && "invalid bitcast");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000654 if (DestTy->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000655 GV.FloatVal = GV.IntVal.bitsToFloat();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000656 else if (DestTy->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000657 GV.DoubleVal = GV.IntVal.bitsToDouble();
658 break;
659 case Type::FloatTyID:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000660 assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
Reid Spencerbce30f12007-03-06 22:23:15 +0000661 GV.IntVal.floatToBits(GV.FloatVal);
662 break;
663 case Type::DoubleTyID:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000664 assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
Reid Spencerbce30f12007-03-06 22:23:15 +0000665 GV.IntVal.doubleToBits(GV.DoubleVal);
666 break;
667 case Type::PointerTyID:
Duncan Sands1df98592010-02-16 11:11:14 +0000668 assert(DestTy->isPointerTy() && "Invalid bitcast");
Reid Spencerbce30f12007-03-06 22:23:15 +0000669 break; // getConstantValue(Op0) above already converted it
670 }
671 return GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000672 }
Chris Lattner9a231222003-05-14 17:51:49 +0000673 case Instruction::Add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000674 case Instruction::FAdd:
Reid Spencerbce30f12007-03-06 22:23:15 +0000675 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000676 case Instruction::FSub:
Reid Spencerbce30f12007-03-06 22:23:15 +0000677 case Instruction::Mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000678 case Instruction::FMul:
Reid Spencerbce30f12007-03-06 22:23:15 +0000679 case Instruction::UDiv:
680 case Instruction::SDiv:
681 case Instruction::URem:
682 case Instruction::SRem:
683 case Instruction::And:
684 case Instruction::Or:
685 case Instruction::Xor: {
686 GenericValue LHS = getConstantValue(Op0);
687 GenericValue RHS = getConstantValue(CE->getOperand(1));
688 GenericValue GV;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000689 switch (CE->getOperand(0)->getType()->getTypeID()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000690 default: llvm_unreachable("Bad add type!");
Reid Spencera54b7cb2007-01-12 07:05:14 +0000691 case Type::IntegerTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000692 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000693 default: llvm_unreachable("Invalid integer opcode");
Reid Spencerbce30f12007-03-06 22:23:15 +0000694 case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
695 case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
696 case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
697 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
698 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
699 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
700 case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
701 case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break;
702 case Instruction::Or: GV.IntVal = LHS.IntVal | RHS.IntVal; break;
703 case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break;
704 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000705 break;
706 case Type::FloatTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000707 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000708 default: llvm_unreachable("Invalid float opcode");
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000709 case Instruction::FAdd:
Reid Spencerbce30f12007-03-06 22:23:15 +0000710 GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000711 case Instruction::FSub:
Reid Spencerbce30f12007-03-06 22:23:15 +0000712 GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000713 case Instruction::FMul:
Reid Spencerbce30f12007-03-06 22:23:15 +0000714 GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break;
715 case Instruction::FDiv:
716 GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break;
717 case Instruction::FRem:
718 GV.FloatVal = ::fmodf(LHS.FloatVal,RHS.FloatVal); break;
719 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000720 break;
721 case Type::DoubleTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000722 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000723 default: llvm_unreachable("Invalid double opcode");
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000724 case Instruction::FAdd:
Reid Spencerbce30f12007-03-06 22:23:15 +0000725 GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000726 case Instruction::FSub:
Reid Spencerbce30f12007-03-06 22:23:15 +0000727 GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000728 case Instruction::FMul:
Reid Spencerbce30f12007-03-06 22:23:15 +0000729 GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break;
730 case Instruction::FDiv:
731 GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break;
732 case Instruction::FRem:
733 GV.DoubleVal = ::fmod(LHS.DoubleVal,RHS.DoubleVal); break;
734 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000735 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000736 case Type::X86_FP80TyID:
737 case Type::PPC_FP128TyID:
738 case Type::FP128TyID: {
739 APFloat apfLHS = APFloat(LHS.IntVal);
740 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000741 default: llvm_unreachable("Invalid long double opcode");llvm_unreachable(0);
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000742 case Instruction::FAdd:
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000743 apfLHS.add(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000744 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000745 break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000746 case Instruction::FSub:
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000747 apfLHS.subtract(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000748 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000749 break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000750 case Instruction::FMul:
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000751 apfLHS.multiply(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000752 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000753 break;
754 case Instruction::FDiv:
755 apfLHS.divide(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000756 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000757 break;
758 case Instruction::FRem:
759 apfLHS.mod(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000760 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000761 break;
762 }
763 }
764 break;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000765 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000766 return GV;
767 }
Chris Lattner9a231222003-05-14 17:51:49 +0000768 default:
769 break;
770 }
Torok Edwin7d696d82009-07-11 13:10:19 +0000771 std::string msg;
772 raw_string_ostream Msg(msg);
773 Msg << "ConstantExpr not handled: " << *CE;
774 llvm_report_error(Msg.str());
Chris Lattner9a231222003-05-14 17:51:49 +0000775 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000776
Reid Spencerbce30f12007-03-06 22:23:15 +0000777 GenericValue Result;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000778 switch (C->getType()->getTypeID()) {
Reid Spencer8fb0f192007-03-06 03:04:04 +0000779 case Type::FloatTyID:
Dale Johannesen43421b32007-09-06 18:13:44 +0000780 Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
Reid Spencera54b7cb2007-01-12 07:05:14 +0000781 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000782 case Type::DoubleTyID:
Dale Johannesen43421b32007-09-06 18:13:44 +0000783 Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble();
Reid Spencer8fb0f192007-03-06 03:04:04 +0000784 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000785 case Type::X86_FP80TyID:
786 case Type::FP128TyID:
787 case Type::PPC_FP128TyID:
Dale Johannesen7111b022008-10-09 18:53:47 +0000788 Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000789 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000790 case Type::IntegerTyID:
791 Result.IntVal = cast<ConstantInt>(C)->getValue();
792 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000793 case Type::PointerTyID:
Reid Spencer40cf2f92004-07-18 00:41:27 +0000794 if (isa<ConstantPointerNull>(C))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000795 Result.PointerVal = 0;
Reid Spencer40cf2f92004-07-18 00:41:27 +0000796 else if (const Function *F = dyn_cast<Function>(C))
797 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
Chris Lattnerf32a6a32009-10-29 05:26:09 +0000798 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
Reid Spencer40cf2f92004-07-18 00:41:27 +0000799 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
Chris Lattnerf32a6a32009-10-29 05:26:09 +0000800 else if (const BlockAddress *BA = dyn_cast<BlockAddress>(C))
801 Result = PTOGV(getPointerToBasicBlock(const_cast<BasicBlock*>(
802 BA->getBasicBlock())));
Reid Spencer40cf2f92004-07-18 00:41:27 +0000803 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000804 llvm_unreachable("Unknown constant pointer type!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000805 break;
806 default:
Torok Edwin7d696d82009-07-11 13:10:19 +0000807 std::string msg;
808 raw_string_ostream Msg(msg);
809 Msg << "ERROR: Constant unimplemented for type: " << *C->getType();
810 llvm_report_error(Msg.str());
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000811 }
812 return Result;
813}
814
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000815/// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
816/// with the integer held in IntVal.
817static void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst,
818 unsigned StoreBytes) {
819 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
820 uint8_t *Src = (uint8_t *)IntVal.getRawData();
821
Chris Lattnerb67c9582009-01-22 19:53:00 +0000822 if (sys::isLittleEndianHost())
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000823 // Little-endian host - the source is ordered from LSB to MSB. Order the
824 // destination from LSB to MSB: Do a straight copy.
825 memcpy(Dst, Src, StoreBytes);
826 else {
827 // Big-endian host - the source is an array of 64 bit words ordered from
828 // LSW to MSW. Each word is ordered from MSB to LSB. Order the destination
829 // from MSB to LSB: Reverse the word order, but not the bytes in a word.
830 while (StoreBytes > sizeof(uint64_t)) {
831 StoreBytes -= sizeof(uint64_t);
832 // May not be aligned so use memcpy.
833 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
834 Src += sizeof(uint64_t);
835 }
836
837 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
838 }
839}
840
Nate Begeman37efe672006-04-22 18:53:45 +0000841/// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr. Ptr
842/// is the address of the memory at which to store Val, cast to GenericValue *.
843/// It is not a pointer to a GenericValue containing the address at which to
844/// store Val.
Evan Cheng89687e32008-11-04 06:10:31 +0000845void ExecutionEngine::StoreValueToMemory(const GenericValue &Val,
846 GenericValue *Ptr, const Type *Ty) {
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000847 const unsigned StoreBytes = getTargetData()->getTypeStoreSize(Ty);
848
Reid Spencer8fb0f192007-03-06 03:04:04 +0000849 switch (Ty->getTypeID()) {
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000850 case Type::IntegerTyID:
851 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
Reid Spencer8fb0f192007-03-06 03:04:04 +0000852 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000853 case Type::FloatTyID:
854 *((float*)Ptr) = Val.FloatVal;
855 break;
856 case Type::DoubleTyID:
857 *((double*)Ptr) = Val.DoubleVal;
858 break;
Dale Johannesen1f8c5642009-03-24 18:16:17 +0000859 case Type::X86_FP80TyID:
860 memcpy(Ptr, Val.IntVal.getRawData(), 10);
861 break;
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000862 case Type::PointerTyID:
863 // Ensure 64 bit target pointers are fully initialized on 32 bit hosts.
864 if (StoreBytes != sizeof(PointerTy))
865 memset(Ptr, 0, StoreBytes);
866
Reid Spencer8fb0f192007-03-06 03:04:04 +0000867 *((PointerTy*)Ptr) = Val.PointerVal;
868 break;
869 default:
David Greeneae7c59a2010-01-05 01:27:39 +0000870 dbgs() << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000871 }
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000872
Chris Lattnerb67c9582009-01-22 19:53:00 +0000873 if (sys::isLittleEndianHost() != getTargetData()->isLittleEndian())
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000874 // Host and target are different endian - reverse the stored bytes.
875 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr);
876}
877
878/// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
879/// from Src into IntVal, which is assumed to be wide enough and to hold zero.
880static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) {
881 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
882 uint8_t *Dst = (uint8_t *)IntVal.getRawData();
883
Chris Lattnerb67c9582009-01-22 19:53:00 +0000884 if (sys::isLittleEndianHost())
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000885 // Little-endian host - the destination must be ordered from LSB to MSB.
886 // The source is ordered from LSB to MSB: Do a straight copy.
887 memcpy(Dst, Src, LoadBytes);
888 else {
889 // Big-endian - the destination is an array of 64 bit words ordered from
890 // LSW to MSW. Each word must be ordered from MSB to LSB. The source is
891 // ordered from MSB to LSB: Reverse the word order, but not the bytes in
892 // a word.
893 while (LoadBytes > sizeof(uint64_t)) {
894 LoadBytes -= sizeof(uint64_t);
895 // May not be aligned so use memcpy.
896 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
897 Dst += sizeof(uint64_t);
898 }
899
900 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
901 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000902}
903
Misha Brukman4afac182003-10-10 17:45:12 +0000904/// FIXME: document
905///
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000906void ExecutionEngine::LoadValueFromMemory(GenericValue &Result,
Duncan Sands08bfe262008-03-10 16:38:37 +0000907 GenericValue *Ptr,
908 const Type *Ty) {
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000909 const unsigned LoadBytes = getTargetData()->getTypeStoreSize(Ty);
Duncan Sands1eff7042007-12-10 17:43:13 +0000910
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000911 switch (Ty->getTypeID()) {
912 case Type::IntegerTyID:
913 // An APInt with all words initially zero.
914 Result.IntVal = APInt(cast<IntegerType>(Ty)->getBitWidth(), 0);
915 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes);
916 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000917 case Type::FloatTyID:
918 Result.FloatVal = *((float*)Ptr);
919 break;
920 case Type::DoubleTyID:
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000921 Result.DoubleVal = *((double*)Ptr);
Reid Spencer8fb0f192007-03-06 03:04:04 +0000922 break;
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000923 case Type::PointerTyID:
Reid Spencer8fb0f192007-03-06 03:04:04 +0000924 Result.PointerVal = *((PointerTy*)Ptr);
925 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000926 case Type::X86_FP80TyID: {
927 // This is endian dependent, but it will only work on x86 anyway.
Duncan Sands9e4635a2007-12-15 17:37:40 +0000928 // FIXME: Will not trap if loading a signaling NaN.
Dale Johannesen1f8c5642009-03-24 18:16:17 +0000929 uint64_t y[2];
930 memcpy(y, Ptr, 10);
Duncan Sandsdd65a732007-11-28 10:36:19 +0000931 Result.IntVal = APInt(80, 2, y);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000932 break;
933 }
Reid Spencer8fb0f192007-03-06 03:04:04 +0000934 default:
Torok Edwin7d696d82009-07-11 13:10:19 +0000935 std::string msg;
936 raw_string_ostream Msg(msg);
937 Msg << "Cannot load value of type " << *Ty << "!";
938 llvm_report_error(Msg.str());
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000939 }
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000940}
941
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000942// InitializeMemory - Recursive function to apply a Constant value into the
943// specified memory location...
944//
945void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
David Greeneae7c59a2010-01-05 01:27:39 +0000946 DEBUG(dbgs() << "JIT: Initializing " << Addr << " ");
Dale Johannesendd947ea2008-08-07 01:30:15 +0000947 DEBUG(Init->dump());
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000948 if (isa<UndefValue>(Init)) {
949 return;
Reid Spencer9d6565a2007-02-15 02:26:10 +0000950 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000951 unsigned ElementSize =
Duncan Sands777d2302009-05-09 07:06:46 +0000952 getTargetData()->getTypeAllocSize(CP->getType()->getElementType());
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000953 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
954 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
955 return;
Chris Lattnerb6e1dd72008-02-15 00:57:28 +0000956 } else if (isa<ConstantAggregateZero>(Init)) {
Duncan Sands777d2302009-05-09 07:06:46 +0000957 memset(Addr, 0, (size_t)getTargetData()->getTypeAllocSize(Init->getType()));
Chris Lattnerb6e1dd72008-02-15 00:57:28 +0000958 return;
Dan Gohman638e3782008-05-20 03:20:09 +0000959 } else if (const ConstantArray *CPA = dyn_cast<ConstantArray>(Init)) {
960 unsigned ElementSize =
Duncan Sands777d2302009-05-09 07:06:46 +0000961 getTargetData()->getTypeAllocSize(CPA->getType()->getElementType());
Dan Gohman638e3782008-05-20 03:20:09 +0000962 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
963 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
964 return;
965 } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(Init)) {
966 const StructLayout *SL =
967 getTargetData()->getStructLayout(cast<StructType>(CPS->getType()));
968 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
969 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i));
970 return;
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000971 } else if (Init->getType()->isFirstClassType()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000972 GenericValue Val = getConstantValue(Init);
973 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
974 return;
975 }
976
David Greeneae7c59a2010-01-05 01:27:39 +0000977 dbgs() << "Bad Type: " << *Init->getType() << "\n";
Torok Edwinc23197a2009-07-14 16:55:14 +0000978 llvm_unreachable("Unknown constant type to initialize memory with!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000979}
980
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000981/// EmitGlobals - Emit all of the global variables to memory, storing their
982/// addresses into GlobalAddress. This must make sure to copy the contents of
983/// their initializers into the memory.
984///
985void ExecutionEngine::emitGlobals() {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000986
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000987 // Loop over all of the global variables in the program, allocating the memory
Chris Lattnerfe854032006-08-16 01:24:12 +0000988 // to hold them. If there is more than one module, do a prepass over globals
989 // to figure out how the different modules should link together.
990 //
991 std::map<std::pair<std::string, const Type*>,
992 const GlobalValue*> LinkedGlobalsMap;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000993
Chris Lattnerfe854032006-08-16 01:24:12 +0000994 if (Modules.size() != 1) {
995 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000996 Module &M = *Modules[m];
Chris Lattnerfe854032006-08-16 01:24:12 +0000997 for (Module::const_global_iterator I = M.global_begin(),
998 E = M.global_end(); I != E; ++I) {
999 const GlobalValue *GV = I;
Rafael Espindolabb46f522009-01-15 20:18:42 +00001000 if (GV->hasLocalLinkage() || GV->isDeclaration() ||
Chris Lattnerfe854032006-08-16 01:24:12 +00001001 GV->hasAppendingLinkage() || !GV->hasName())
1002 continue;// Ignore external globals and globals with internal linkage.
1003
1004 const GlobalValue *&GVEntry =
1005 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
1006
1007 // If this is the first time we've seen this global, it is the canonical
1008 // version.
1009 if (!GVEntry) {
1010 GVEntry = GV;
1011 continue;
1012 }
1013
1014 // If the existing global is strong, never replace it.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001015 if (GVEntry->hasExternalLinkage() ||
1016 GVEntry->hasDLLImportLinkage() ||
1017 GVEntry->hasDLLExportLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +00001018 continue;
1019
1020 // Otherwise, we know it's linkonce/weak, replace it if this is a strong
Dale Johannesenaafce772008-05-14 20:12:51 +00001021 // symbol. FIXME is this right for common?
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +00001022 if (GV->hasExternalLinkage() || GVEntry->hasExternalWeakLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +00001023 GVEntry = GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +00001024 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001025 }
Chris Lattnerfe854032006-08-16 01:24:12 +00001026 }
1027
1028 std::vector<const GlobalValue*> NonCanonicalGlobals;
1029 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00001030 Module &M = *Modules[m];
Chris Lattnerfe854032006-08-16 01:24:12 +00001031 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
1032 I != E; ++I) {
1033 // In the multi-module case, see what this global maps to.
1034 if (!LinkedGlobalsMap.empty()) {
1035 if (const GlobalValue *GVEntry =
1036 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())]) {
1037 // If something else is the canonical global, ignore this one.
1038 if (GVEntry != &*I) {
1039 NonCanonicalGlobals.push_back(I);
1040 continue;
1041 }
1042 }
1043 }
1044
Reid Spencer5cbf9852007-01-30 20:08:39 +00001045 if (!I->isDeclaration()) {
Nicolas Geoffray46fa1392008-10-25 15:41:43 +00001046 addGlobalMapping(I, getMemoryForGV(I));
Chris Lattnerfe854032006-08-16 01:24:12 +00001047 } else {
1048 // External variable reference. Try to use the dynamic loader to
1049 // get a pointer to it.
1050 if (void *SymAddr =
Daniel Dunbarfbee5792009-07-21 08:54:24 +00001051 sys::DynamicLibrary::SearchForAddressOfSymbol(I->getName()))
Chris Lattnerfe854032006-08-16 01:24:12 +00001052 addGlobalMapping(I, SymAddr);
1053 else {
Torok Edwin31e24662009-07-07 17:32:34 +00001054 llvm_report_error("Could not resolve external global address: "
1055 +I->getName());
Chris Lattnerfe854032006-08-16 01:24:12 +00001056 }
1057 }
1058 }
1059
1060 // If there are multiple modules, map the non-canonical globals to their
1061 // canonical location.
1062 if (!NonCanonicalGlobals.empty()) {
1063 for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) {
1064 const GlobalValue *GV = NonCanonicalGlobals[i];
1065 const GlobalValue *CGV =
1066 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
1067 void *Ptr = getPointerToGlobalIfAvailable(CGV);
1068 assert(Ptr && "Canonical global wasn't codegen'd!");
Nuno Lopesc8ed9022008-10-14 10:04:52 +00001069 addGlobalMapping(GV, Ptr);
Chris Lattnerfe854032006-08-16 01:24:12 +00001070 }
1071 }
1072
Reid Spencera54b7cb2007-01-12 07:05:14 +00001073 // Now that all of the globals are set up in memory, loop through them all
1074 // and initialize their contents.
Chris Lattnerfe854032006-08-16 01:24:12 +00001075 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
1076 I != E; ++I) {
Reid Spencer5cbf9852007-01-30 20:08:39 +00001077 if (!I->isDeclaration()) {
Chris Lattnerfe854032006-08-16 01:24:12 +00001078 if (!LinkedGlobalsMap.empty()) {
1079 if (const GlobalValue *GVEntry =
1080 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())])
1081 if (GVEntry != &*I) // Not the canonical variable.
1082 continue;
1083 }
1084 EmitGlobalVariable(I);
1085 }
1086 }
1087 }
Chris Lattner24b0a182003-12-20 02:45:37 +00001088}
1089
1090// EmitGlobalVariable - This method emits the specified global variable to the
1091// address specified in GlobalAddresses, or allocates new memory if it's not
1092// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +00001093void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +00001094 void *GA = getPointerToGlobalIfAvailable(GV);
Chris Lattner23c47242004-02-08 19:33:23 +00001095
Chris Lattner24b0a182003-12-20 02:45:37 +00001096 if (GA == 0) {
1097 // If it's not already specified, allocate memory for the global.
Nicolas Geoffray46fa1392008-10-25 15:41:43 +00001098 GA = getMemoryForGV(GV);
Chris Lattner55d86482003-12-31 20:21:04 +00001099 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +00001100 }
Nicolas Geoffray46fa1392008-10-25 15:41:43 +00001101
1102 // Don't initialize if it's thread local, let the client do it.
1103 if (!GV->isThreadLocal())
1104 InitializeMemory(GV->getInitializer(), GA);
1105
1106 const Type *ElTy = GV->getType()->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +00001107 size_t GVSize = (size_t)getTargetData()->getTypeAllocSize(ElTy);
Chris Lattner813c8152005-01-08 20:13:19 +00001108 NumInitBytes += (unsigned)GVSize;
Chris Lattner24b0a182003-12-20 02:45:37 +00001109 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001110}
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +00001111
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +00001112ExecutionEngineState::ExecutionEngineState(ExecutionEngine &EE)
1113 : EE(EE), GlobalAddressMap(this) {
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +00001114}
1115
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +00001116sys::Mutex *ExecutionEngineState::AddressMapConfig::getMutex(
1117 ExecutionEngineState *EES) {
1118 return &EES->EE.lock;
1119}
1120void ExecutionEngineState::AddressMapConfig::onDelete(
1121 ExecutionEngineState *EES, const GlobalValue *Old) {
1122 void *OldVal = EES->GlobalAddressMap.lookup(Old);
1123 EES->GlobalAddressReverseMap.erase(OldVal);
1124}
1125
1126void ExecutionEngineState::AddressMapConfig::onRAUW(
1127 ExecutionEngineState *, const GlobalValue *, const GlobalValue *) {
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +00001128 assert(false && "The ExecutionEngine doesn't know how to handle a"
1129 " RAUW on a value it has a global mapping for.");
1130}