blob: 8e30a939bc15307b9f59c4fbc565804b2f756e7e [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"
Micah Villmow2c39b152012-10-15 16:24:29 +000020#include "llvm/Instructions.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000021#include "llvm/Module.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000022#include "llvm/ExecutionEngine/GenericValue.h"
Daniel Dunbar48dd8752010-11-13 02:48:57 +000023#include "llvm/ADT/SmallString.h"
Chris Lattner9f3ff922009-08-23 22:49:13 +000024#include "llvm/ADT/Statistic.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000025#include "llvm/Support/Debug.h"
Torok Edwin31e24662009-07-07 17:32:34 +000026#include "llvm/Support/ErrorHandling.h"
Chris Lattnere7fd5532006-05-08 22:00:52 +000027#include "llvm/Support/MutexGuard.h"
Jeffrey Yasskin0d5bd592009-08-07 19:54:29 +000028#include "llvm/Support/ValueHandle.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000029#include "llvm/Support/raw_ostream.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000030#include "llvm/Support/DynamicLibrary.h"
31#include "llvm/Support/Host.h"
Dylan Noblesmith9ea47172011-12-12 04:20:36 +000032#include "llvm/Support/TargetRegistry.h"
Micah Villmow3574eca2012-10-08 16:38:25 +000033#include "llvm/DataLayout.h"
Dylan Noblesmithc5b28582011-05-13 21:51:29 +000034#include "llvm/Target/TargetMachine.h"
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000035#include <cmath>
36#include <cstring>
Chris Lattnerc2ee9b92003-11-19 21:08:57 +000037using namespace llvm;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000038
Chris Lattner36343732006-12-19 22:43:32 +000039STATISTIC(NumInitBytes, "Number of bytes of global vars initialized");
40STATISTIC(NumGlobals , "Number of global vars initialized");
Chris Lattnerbd199fb2002-12-24 00:01:05 +000041
Jeffrey Yasskin46882612010-02-05 16:19:36 +000042ExecutionEngine *(*ExecutionEngine::JITCtor)(
43 Module *M,
44 std::string *ErrorStr,
45 JITMemoryManager *JMM,
Jeffrey Yasskin46882612010-02-05 16:19:36 +000046 bool GVsWithCode,
Dylan Noblesmithc5b28582011-05-13 21:51:29 +000047 TargetMachine *TM) = 0;
Daniel Dunbar6d135972010-11-17 16:06:37 +000048ExecutionEngine *(*ExecutionEngine::MCJITCtor)(
49 Module *M,
50 std::string *ErrorStr,
51 JITMemoryManager *JMM,
Daniel Dunbar6d135972010-11-17 16:06:37 +000052 bool GVsWithCode,
Dylan Noblesmithc5b28582011-05-13 21:51:29 +000053 TargetMachine *TM) = 0;
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +000054ExecutionEngine *(*ExecutionEngine::InterpCtor)(Module *M,
Reid Kleckner4b1511b2009-07-18 00:42:18 +000055 std::string *ErrorStr) = 0;
Chris Lattner2fe4bb02006-03-22 06:07:50 +000056
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +000057ExecutionEngine::ExecutionEngine(Module *M)
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +000058 : EEState(*this),
Duncan Sandsb35fd442010-10-21 08:57:29 +000059 LazyFunctionCreator(0),
Daniel Dunbar48dd8752010-11-13 02:48:57 +000060 ExceptionTableRegister(0),
Duncan Sandsb35fd442010-10-21 08:57:29 +000061 ExceptionTableDeregister(0) {
Jeffrey Yasskindc857242009-10-27 20:30:28 +000062 CompilingLazily = false;
Evan Cheng446531e2008-09-24 16:25:55 +000063 GVCompilationDisabled = false;
Evan Cheng1b088f32008-06-17 16:49:02 +000064 SymbolSearchingDisabled = false;
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +000065 Modules.push_back(M);
66 assert(M && "Module is null?");
Misha Brukman19684162003-10-16 21:18:05 +000067}
68
Brian Gaeke8e539482003-09-04 22:57:27 +000069ExecutionEngine::~ExecutionEngine() {
Reid Spencerd4c0e622007-03-03 18:19:18 +000070 clearAllGlobalMappings();
Chris Lattnerfe854032006-08-16 01:24:12 +000071 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
72 delete Modules[i];
Brian Gaeke8e539482003-09-04 22:57:27 +000073}
74
Duncan Sandsb35fd442010-10-21 08:57:29 +000075void ExecutionEngine::DeregisterAllTables() {
76 if (ExceptionTableDeregister) {
Eric Christopher515c67e2011-03-04 23:37:39 +000077 DenseMap<const Function*, void*>::iterator it = AllExceptionTables.begin();
78 DenseMap<const Function*, void*>::iterator ite = AllExceptionTables.end();
79 for (; it != ite; ++it)
80 ExceptionTableDeregister(it->second);
Duncan Sandsb35fd442010-10-21 08:57:29 +000081 AllExceptionTables.clear();
82 }
83}
84
Jeffrey Yasskin47b71122010-03-27 04:53:56 +000085namespace {
Daniel Dunbar48dd8752010-11-13 02:48:57 +000086/// \brief Helper class which uses a value handler to automatically deletes the
87/// memory block when the GlobalVariable is destroyed.
Jeffrey Yasskin47b71122010-03-27 04:53:56 +000088class GVMemoryBlock : public CallbackVH {
89 GVMemoryBlock(const GlobalVariable *GV)
90 : CallbackVH(const_cast<GlobalVariable*>(GV)) {}
91
92public:
Daniel Dunbar48dd8752010-11-13 02:48:57 +000093 /// \brief Returns the address the GlobalVariable should be written into. The
94 /// GVMemoryBlock object prefixes that.
Micah Villmow3574eca2012-10-08 16:38:25 +000095 static char *Create(const GlobalVariable *GV, const DataLayout& TD) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000096 Type *ElTy = GV->getType()->getElementType();
Jeffrey Yasskin47b71122010-03-27 04:53:56 +000097 size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy);
98 void *RawMemory = ::operator new(
Micah Villmow3574eca2012-10-08 16:38:25 +000099 DataLayout::RoundUpAlignment(sizeof(GVMemoryBlock),
Jeffrey Yasskin47b71122010-03-27 04:53:56 +0000100 TD.getPreferredAlignment(GV))
101 + GVSize);
102 new(RawMemory) GVMemoryBlock(GV);
103 return static_cast<char*>(RawMemory) + sizeof(GVMemoryBlock);
104 }
105
106 virtual void deleted() {
107 // We allocated with operator new and with some extra memory hanging off the
108 // end, so don't just delete this. I'm not sure if this is actually
109 // required.
110 this->~GVMemoryBlock();
111 ::operator delete(this);
112 }
113};
114} // anonymous namespace
115
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000116char *ExecutionEngine::getMemoryForGV(const GlobalVariable *GV) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000117 return GVMemoryBlock::Create(GV, *getDataLayout());
Nicolas Geoffray46fa1392008-10-25 15:41:43 +0000118}
119
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000120bool ExecutionEngine::removeModule(Module *M) {
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000121 for(SmallVector<Module *, 1>::iterator I = Modules.begin(),
Devang Patel73d0e212007-10-15 19:56:32 +0000122 E = Modules.end(); I != E; ++I) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000123 Module *Found = *I;
124 if (Found == M) {
Devang Patel73d0e212007-10-15 19:56:32 +0000125 Modules.erase(I);
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000126 clearGlobalMappingsFromModule(M);
127 return true;
Devang Patel73d0e212007-10-15 19:56:32 +0000128 }
129 }
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000130 return false;
Nate Begeman60789e42009-01-23 19:27:28 +0000131}
132
Chris Lattnerfe854032006-08-16 01:24:12 +0000133Function *ExecutionEngine::FindFunctionNamed(const char *FnName) {
134 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000135 if (Function *F = Modules[i]->getFunction(FnName))
Chris Lattnerfe854032006-08-16 01:24:12 +0000136 return F;
137 }
138 return 0;
139}
140
141
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000142void *ExecutionEngineState::RemoveMapping(const MutexGuard &,
143 const GlobalValue *ToUnmap) {
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000144 GlobalAddressMapTy::iterator I = GlobalAddressMap.find(ToUnmap);
Jeffrey Yasskinc89d27a2009-10-09 22:10:27 +0000145 void *OldVal;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000146
147 // FIXME: This is silly, we shouldn't end up with a mapping -> 0 in the
148 // GlobalAddressMap.
Jeffrey Yasskinc89d27a2009-10-09 22:10:27 +0000149 if (I == GlobalAddressMap.end())
150 OldVal = 0;
151 else {
152 OldVal = I->second;
153 GlobalAddressMap.erase(I);
154 }
155
156 GlobalAddressReverseMap.erase(OldVal);
157 return OldVal;
158}
159
Chris Lattnere7fd5532006-05-08 22:00:52 +0000160void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) {
161 MutexGuard locked(lock);
Evan Chengbc4707a2008-09-18 07:54:21 +0000162
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000163 DEBUG(dbgs() << "JIT: Map \'" << GV->getName()
Daniel Dunbar93b67e42009-07-26 07:49:05 +0000164 << "\' to [" << Addr << "]\n";);
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000165 void *&CurVal = EEState.getGlobalAddressMap(locked)[GV];
Chris Lattnere7fd5532006-05-08 22:00:52 +0000166 assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!");
167 CurVal = Addr;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000168
169 // If we are using the reverse mapping, add it too.
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000170 if (!EEState.getGlobalAddressReverseMap(locked).empty()) {
Jeffrey Yasskin0d5bd592009-08-07 19:54:29 +0000171 AssertingVH<const GlobalValue> &V =
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000172 EEState.getGlobalAddressReverseMap(locked)[Addr];
Chris Lattnere7fd5532006-05-08 22:00:52 +0000173 assert((V == 0 || GV == 0) && "GlobalMapping already established!");
174 V = GV;
175 }
176}
177
Chris Lattnere7fd5532006-05-08 22:00:52 +0000178void ExecutionEngine::clearAllGlobalMappings() {
179 MutexGuard locked(lock);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000180
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000181 EEState.getGlobalAddressMap(locked).clear();
182 EEState.getGlobalAddressReverseMap(locked).clear();
Chris Lattnere7fd5532006-05-08 22:00:52 +0000183}
184
Nate Begemanf049e072008-05-21 16:34:48 +0000185void ExecutionEngine::clearGlobalMappingsFromModule(Module *M) {
186 MutexGuard locked(lock);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000187
188 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI)
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000189 EEState.RemoveMapping(locked, FI);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000190 for (Module::global_iterator GI = M->global_begin(), GE = M->global_end();
191 GI != GE; ++GI)
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000192 EEState.RemoveMapping(locked, GI);
Nate Begemanf049e072008-05-21 16:34:48 +0000193}
194
Chris Lattnerf4cc3092008-04-04 04:47:41 +0000195void *ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) {
Chris Lattnere7fd5532006-05-08 22:00:52 +0000196 MutexGuard locked(lock);
Chris Lattnerf4cc3092008-04-04 04:47:41 +0000197
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000198 ExecutionEngineState::GlobalAddressMapTy &Map =
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000199 EEState.getGlobalAddressMap(locked);
Chris Lattnerf4cc3092008-04-04 04:47:41 +0000200
Chris Lattnere7fd5532006-05-08 22:00:52 +0000201 // Deleting from the mapping?
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000202 if (Addr == 0)
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000203 return EEState.RemoveMapping(locked, GV);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000204
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;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000211
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
Chris Lattnere7fd5532006-05-08 22:00:52 +0000222void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
223 MutexGuard locked(lock);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000224
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000225 ExecutionEngineState::GlobalAddressMapTy::iterator I =
226 EEState.getGlobalAddressMap(locked).find(GV);
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000227 return I != EEState.getGlobalAddressMap(locked).end() ? I->second : 0;
Chris Lattnere7fd5532006-05-08 22:00:52 +0000228}
229
Chris Lattner55d86482003-12-31 20:21:04 +0000230const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
Reid Spenceree448632005-07-12 15:51:55 +0000231 MutexGuard locked(lock);
232
Chris Lattner55d86482003-12-31 20:21:04 +0000233 // If we haven't computed the reverse mapping yet, do so first.
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000234 if (EEState.getGlobalAddressReverseMap(locked).empty()) {
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000235 for (ExecutionEngineState::GlobalAddressMapTy::iterator
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000236 I = EEState.getGlobalAddressMap(locked).begin(),
237 E = EEState.getGlobalAddressMap(locked).end(); I != E; ++I)
Daniel Dunbarab19da42010-11-13 00:55:42 +0000238 EEState.getGlobalAddressReverseMap(locked).insert(std::make_pair(
239 I->second, I->first));
Chris Lattner55d86482003-12-31 20:21:04 +0000240 }
241
Jeffrey Yasskin0d5bd592009-08-07 19:54:29 +0000242 std::map<void *, AssertingVH<const GlobalValue> >::iterator I =
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +0000243 EEState.getGlobalAddressReverseMap(locked).find(Addr);
244 return I != EEState.getGlobalAddressReverseMap(locked).end() ? I->second : 0;
Chris Lattner55d86482003-12-31 20:21:04 +0000245}
Chris Lattner87f03102003-12-26 06:50:30 +0000246
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000247namespace {
248class ArgvArray {
249 char *Array;
250 std::vector<char*> Values;
251public:
252 ArgvArray() : Array(NULL) {}
253 ~ArgvArray() { clear(); }
254 void clear() {
255 delete[] Array;
256 Array = NULL;
257 for (size_t I = 0, E = Values.size(); I != E; ++I) {
258 delete[] Values[I];
259 }
260 Values.clear();
261 }
262 /// Turn a vector of strings into a nice argv style array of pointers to null
263 /// terminated strings.
264 void *reset(LLVMContext &C, ExecutionEngine *EE,
265 const std::vector<std::string> &InputArgv);
266};
267} // anonymous namespace
268void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE,
269 const std::vector<std::string> &InputArgv) {
270 clear(); // Free the old contents.
Micah Villmow2c39b152012-10-15 16:24:29 +0000271 unsigned PtrSize = EE->getDataLayout()->getPointerSize(0);
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000272 Array = new char[(InputArgv.size()+1)*PtrSize];
Chris Lattner87f03102003-12-26 06:50:30 +0000273
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000274 DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array << "\n");
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000275 Type *SBytePtr = Type::getInt8PtrTy(C);
Chris Lattner87f03102003-12-26 06:50:30 +0000276
277 for (unsigned i = 0; i != InputArgv.size(); ++i) {
278 unsigned Size = InputArgv[i].size()+1;
279 char *Dest = new char[Size];
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000280 Values.push_back(Dest);
David Greeneae7c59a2010-01-05 01:27:39 +0000281 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n");
Misha Brukmanedf128a2005-04-21 22:36:52 +0000282
Chris Lattner87f03102003-12-26 06:50:30 +0000283 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
284 Dest[Size-1] = 0;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000285
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000286 // Endian safe: Array[i] = (PointerTy)Dest;
287 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
Chris Lattner87f03102003-12-26 06:50:30 +0000288 SBytePtr);
289 }
290
291 // Null terminate it
292 EE->StoreValueToMemory(PTOGV(0),
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000293 (GenericValue*)(Array+InputArgv.size()*PtrSize),
Chris Lattner87f03102003-12-26 06:50:30 +0000294 SBytePtr);
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000295 return Array;
Chris Lattner87f03102003-12-26 06:50:30 +0000296}
297
Chris Lattnerfbd39762009-09-23 01:46:04 +0000298void ExecutionEngine::runStaticConstructorsDestructors(Module *module,
299 bool isDtors) {
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000300 const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000301 GlobalVariable *GV = module->getNamedGlobal(Name);
Evan Cheng18314dc2008-09-30 15:51:21 +0000302
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000303 // If this global has internal linkage, or if it has a use, then it must be
304 // an old-style (llvmgcc3) static ctor with __main linked in and in use. If
305 // this is the case, don't execute any of the global ctors, __main will do
306 // it.
307 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage()) return;
308
Nick Lewyckya040d472011-04-06 20:38:44 +0000309 // Should be an array of '{ i32, void ()* }' structs. The first value is
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000310 // the init priority, which we ignore.
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000311 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
312 if (InitList == 0)
Nick Lewycky5ea5c612011-04-11 22:11:20 +0000313 return;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000314 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000315 ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i));
316 if (CS == 0) continue;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000317
318 Constant *FP = CS->getOperand(1);
319 if (FP->isNullValue())
Nick Lewycky5ea5c612011-04-11 22:11:20 +0000320 continue; // Found a sentinal value, ignore.
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000321
322 // Strip off constant expression casts.
323 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
324 if (CE->isCast())
325 FP = CE->getOperand(0);
326
327 // Execute the ctor/dtor function!
328 if (Function *F = dyn_cast<Function>(FP))
329 runFunction(F, std::vector<GenericValue>());
330
331 // FIXME: It is marginally lame that we just do nothing here if we see an
332 // entry we don't recognize. It might not be unreasonable for the verifier
333 // to not even allow this and just assert here.
334 }
Evan Cheng18314dc2008-09-30 15:51:21 +0000335}
336
Evan Cheng18314dc2008-09-30 15:51:21 +0000337void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
338 // Execute global ctors/dtors for each module in the program.
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000339 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
340 runStaticConstructorsDestructors(Modules[i], isDtors);
Chris Lattner9ca6cda2006-03-08 18:42:46 +0000341}
342
Dan Gohmanb6e3d6c2008-08-26 01:38:29 +0000343#ifndef NDEBUG
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000344/// isTargetNullPtr - Return whether the target pointer stored at Loc is null.
345static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) {
Micah Villmow2c39b152012-10-15 16:24:29 +0000346 unsigned PtrSize = EE->getDataLayout()->getPointerSize(0);
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000347 for (unsigned i = 0; i < PtrSize; ++i)
348 if (*(i + (uint8_t*)Loc))
349 return false;
350 return true;
351}
Dan Gohmanb6e3d6c2008-08-26 01:38:29 +0000352#endif
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000353
Chris Lattner87f03102003-12-26 06:50:30 +0000354int ExecutionEngine::runFunctionAsMain(Function *Fn,
355 const std::vector<std::string> &argv,
356 const char * const * envp) {
357 std::vector<GenericValue> GVArgs;
358 GenericValue GVArgc;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000359 GVArgc.IntVal = APInt(32, argv.size());
Anton Korobeynikov499d8f02007-06-03 19:17:35 +0000360
361 // Check main() type
Chris Lattnerf24d0992004-08-16 01:05:35 +0000362 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000363 FunctionType *FTy = Fn->getFunctionType();
364 Type* PPInt8Ty = Type::getInt8PtrTy(Fn->getContext())->getPointerTo();
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000365
366 // Check the argument types.
367 if (NumArgs > 3)
368 report_fatal_error("Invalid number of arguments of main() supplied");
369 if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
370 report_fatal_error("Invalid type for third argument of main() supplied");
371 if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
372 report_fatal_error("Invalid type for second argument of main() supplied");
373 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
374 report_fatal_error("Invalid type for first argument of main() supplied");
375 if (!FTy->getReturnType()->isIntegerTy() &&
376 !FTy->getReturnType()->isVoidTy())
377 report_fatal_error("Invalid return type of main() supplied");
378
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000379 ArgvArray CArgv;
380 ArgvArray CEnv;
Chris Lattnerf24d0992004-08-16 01:05:35 +0000381 if (NumArgs) {
382 GVArgs.push_back(GVArgc); // Arg #0 = argc.
383 if (NumArgs > 1) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000384 // Arg #1 = argv.
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000385 GVArgs.push_back(PTOGV(CArgv.reset(Fn->getContext(), this, argv)));
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000386 assert(!isTargetNullPtr(this, GVTOP(GVArgs[1])) &&
Chris Lattnerf24d0992004-08-16 01:05:35 +0000387 "argv[0] was null after CreateArgv");
388 if (NumArgs > 2) {
389 std::vector<std::string> EnvVars;
390 for (unsigned i = 0; envp[i]; ++i)
391 EnvVars.push_back(envp[i]);
Owen Anderson1d0be152009-08-13 21:58:54 +0000392 // Arg #2 = envp.
Jeffrey Yasskinb1938382010-03-26 00:59:12 +0000393 GVArgs.push_back(PTOGV(CEnv.reset(Fn->getContext(), this, EnvVars)));
Chris Lattnerf24d0992004-08-16 01:05:35 +0000394 }
395 }
396 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000397
Reid Spencer8fb0f192007-03-06 03:04:04 +0000398 return runFunction(Fn, GVArgs).IntVal.getZExtValue();
Chris Lattner87f03102003-12-26 06:50:30 +0000399}
400
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000401ExecutionEngine *ExecutionEngine::create(Module *M,
Reid Spencerd4c0e622007-03-03 18:19:18 +0000402 bool ForceInterpreter,
Evan Cheng502f20b2008-08-08 08:11:34 +0000403 std::string *ErrorStr,
Jeffrey Yasskin489393d2009-07-08 21:59:57 +0000404 CodeGenOpt::Level OptLevel,
405 bool GVsWithCode) {
Owen Anderson8e1fc562012-03-23 17:40:56 +0000406 EngineBuilder EB = EngineBuilder(M)
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000407 .setEngineKind(ForceInterpreter
408 ? EngineKind::Interpreter
409 : EngineKind::JIT)
410 .setErrorStr(ErrorStr)
411 .setOptLevel(OptLevel)
Owen Anderson8e1fc562012-03-23 17:40:56 +0000412 .setAllocateGVsWithCode(GVsWithCode);
413
414 return EB.create();
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000415}
Brian Gaeke82d82772003-09-03 20:34:19 +0000416
Dylan Noblesmithf5895e92011-05-13 22:02:53 +0000417/// createJIT - This is the factory method for creating a JIT for the current
418/// machine, it does not fall back to the interpreter. This takes ownership
419/// of the module.
420ExecutionEngine *ExecutionEngine::createJIT(Module *M,
421 std::string *ErrorStr,
422 JITMemoryManager *JMM,
Dylan Noblesmithd95e67d2011-12-01 21:49:21 +0000423 CodeGenOpt::Level OL,
Dylan Noblesmithf5895e92011-05-13 22:02:53 +0000424 bool GVsWithCode,
Evan Cheng43966132011-07-19 06:37:02 +0000425 Reloc::Model RM,
Dylan Noblesmithf5895e92011-05-13 22:02:53 +0000426 CodeModel::Model CMM) {
427 if (ExecutionEngine::JITCtor == 0) {
428 if (ErrorStr)
429 *ErrorStr = "JIT has not been linked in.";
430 return 0;
431 }
432
433 // Use the defaults for extra parameters. Users can use EngineBuilder to
434 // set them.
Owen Anderson8e1fc562012-03-23 17:40:56 +0000435 EngineBuilder EB(M);
436 EB.setEngineKind(EngineKind::JIT);
437 EB.setErrorStr(ErrorStr);
438 EB.setRelocationModel(RM);
439 EB.setCodeModel(CMM);
440 EB.setAllocateGVsWithCode(GVsWithCode);
441 EB.setOptLevel(OL);
442 EB.setJITMemoryManager(JMM);
Dylan Noblesmithf5895e92011-05-13 22:02:53 +0000443
Peter Collingbourned40e1032011-12-07 23:58:57 +0000444 // TODO: permit custom TargetOptions here
Owen Anderson8e1fc562012-03-23 17:40:56 +0000445 TargetMachine *TM = EB.selectTarget();
Dylan Noblesmithf5895e92011-05-13 22:02:53 +0000446 if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0;
Dylan Noblesmithf5895e92011-05-13 22:02:53 +0000447
Dylan Noblesmith9ea47172011-12-12 04:20:36 +0000448 return ExecutionEngine::JITCtor(M, ErrorStr, JMM, GVsWithCode, TM);
Dylan Noblesmithf5895e92011-05-13 22:02:53 +0000449}
450
Owen Anderson8e1fc562012-03-23 17:40:56 +0000451ExecutionEngine *EngineBuilder::create(TargetMachine *TM) {
Benjamin Kramer0f554492012-04-08 14:53:14 +0000452 OwningPtr<TargetMachine> TheTM(TM); // Take ownership.
453
Nick Lewycky6456d862008-03-08 02:49:45 +0000454 // Make sure we can resolve symbols in the program as well. The zero arg
455 // to the function tells DynamicLibrary to load the program, not a library.
456 if (sys::DynamicLibrary::LoadLibraryPermanently(0, ErrorStr))
457 return 0;
458
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000459 // If the user specified a memory manager but didn't specify which engine to
460 // create, we assume they only want the JIT, and we fail if they only want
461 // the interpreter.
462 if (JMM) {
Chris Lattnerfbd39762009-09-23 01:46:04 +0000463 if (WhichEngine & EngineKind::JIT)
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000464 WhichEngine = EngineKind::JIT;
Chris Lattnerfbd39762009-09-23 01:46:04 +0000465 else {
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000466 if (ErrorStr)
467 *ErrorStr = "Cannot create an interpreter with a memory manager.";
Chris Lattnerfbd39762009-09-23 01:46:04 +0000468 return 0;
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000469 }
470 }
Brian Gaeke82d82772003-09-03 20:34:19 +0000471
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000472 // Unless the interpreter was explicitly selected or the JIT is not linked,
473 // try making a JIT.
Benjamin Kramer0f554492012-04-08 14:53:14 +0000474 if ((WhichEngine & EngineKind::JIT) && TheTM) {
Dylan Noblesmith9ea47172011-12-12 04:20:36 +0000475 Triple TT(M->getTargetTriple());
Owen Anderson8e1fc562012-03-23 17:40:56 +0000476 if (!TM->getTarget().hasJIT()) {
477 errs() << "WARNING: This target JIT is not designed for the host"
478 << " you are running. If bad things happen, please choose"
479 << " a different -march switch.\n";
480 }
Dylan Noblesmith9ea47172011-12-12 04:20:36 +0000481
Owen Anderson8e1fc562012-03-23 17:40:56 +0000482 if (UseMCJIT && ExecutionEngine::MCJITCtor) {
483 ExecutionEngine *EE =
484 ExecutionEngine::MCJITCtor(M, ErrorStr, JMM,
Benjamin Kramer0f554492012-04-08 14:53:14 +0000485 AllocateGVsWithCode, TheTM.take());
Owen Anderson8e1fc562012-03-23 17:40:56 +0000486 if (EE) return EE;
487 } else if (ExecutionEngine::JITCtor) {
488 ExecutionEngine *EE =
489 ExecutionEngine::JITCtor(M, ErrorStr, JMM,
Benjamin Kramer0f554492012-04-08 14:53:14 +0000490 AllocateGVsWithCode, TheTM.take());
Owen Anderson8e1fc562012-03-23 17:40:56 +0000491 if (EE) return EE;
Chris Lattnerfbd39762009-09-23 01:46:04 +0000492 }
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000493 }
494
495 // If we can't make a JIT and we didn't request one specifically, try making
496 // an interpreter instead.
Chris Lattnerfbd39762009-09-23 01:46:04 +0000497 if (WhichEngine & EngineKind::Interpreter) {
498 if (ExecutionEngine::InterpCtor)
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000499 return ExecutionEngine::InterpCtor(M, ErrorStr);
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000500 if (ErrorStr)
501 *ErrorStr = "Interpreter has not been linked in.";
Chris Lattnerfbd39762009-09-23 01:46:04 +0000502 return 0;
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000503 }
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000504
Jim Grosbach8005bcd2012-08-21 15:42:49 +0000505 if ((WhichEngine & EngineKind::JIT) && ExecutionEngine::JITCtor == 0 &&
506 ExecutionEngine::MCJITCtor == 0) {
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000507 if (ErrorStr)
508 *ErrorStr = "JIT has not been linked in.";
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000509 }
510
Chris Lattnerfbd39762009-09-23 01:46:04 +0000511 return 0;
Brian Gaeke82d82772003-09-03 20:34:19 +0000512}
513
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000514void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000515 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000516 return getPointerToFunction(F);
517
Reid Spenceree448632005-07-12 15:51:55 +0000518 MutexGuard locked(lock);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000519 if (void *P = EEState.getGlobalAddressMap(locked)[GV])
520 return P;
Jeff Cohen68835dd2006-02-07 05:11:57 +0000521
522 // Global variable might have been added since interpreter started.
523 if (GlobalVariable *GVar =
524 const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
525 EmitGlobalVariable(GVar);
526 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000527 llvm_unreachable("Global hasn't had an address allocated yet!");
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000528
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000529 return EEState.getGlobalAddressMap(locked)[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000530}
531
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000532/// \brief Converts a Constant* into a GenericValue, including handling of
533/// ConstantExpr values.
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000534GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000535 // If its undefined, return the garbage.
Jay Foad5b370122010-01-15 08:32:58 +0000536 if (isa<UndefValue>(C)) {
537 GenericValue Result;
538 switch (C->getType()->getTypeID()) {
539 case Type::IntegerTyID:
540 case Type::X86_FP80TyID:
541 case Type::FP128TyID:
542 case Type::PPC_FP128TyID:
543 // Although the value is undefined, we still have to construct an APInt
544 // with the correct bit width.
545 Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0);
546 break;
547 default:
548 break;
549 }
550 return Result;
551 }
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000552
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000553 // Otherwise, if the value is a ConstantExpr...
Reid Spencer3da59db2006-11-27 01:05:10 +0000554 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Reid Spencerbce30f12007-03-06 22:23:15 +0000555 Constant *Op0 = CE->getOperand(0);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000556 switch (CE->getOpcode()) {
557 case Instruction::GetElementPtr: {
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000558 // Compute the index
Reid Spencerbce30f12007-03-06 22:23:15 +0000559 GenericValue Result = getConstantValue(Op0);
Chris Lattner829621c2007-02-10 20:35:22 +0000560 SmallVector<Value*, 8> Indices(CE->op_begin()+1, CE->op_end());
Jay Foad8fbbb392011-07-19 14:01:37 +0000561 uint64_t Offset = TD->getIndexedOffset(Op0->getType(), Indices);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000562
Reid Spencer8fb0f192007-03-06 03:04:04 +0000563 char* tmp = (char*) Result.PointerVal;
564 Result = PTOGV(tmp + Offset);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000565 return Result;
566 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000567 case Instruction::Trunc: {
568 GenericValue GV = getConstantValue(Op0);
569 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
570 GV.IntVal = GV.IntVal.trunc(BitWidth);
571 return GV;
572 }
573 case Instruction::ZExt: {
574 GenericValue GV = getConstantValue(Op0);
575 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
576 GV.IntVal = GV.IntVal.zext(BitWidth);
577 return GV;
578 }
579 case Instruction::SExt: {
580 GenericValue GV = getConstantValue(Op0);
581 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
582 GV.IntVal = GV.IntVal.sext(BitWidth);
583 return GV;
584 }
585 case Instruction::FPTrunc: {
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000586 // FIXME long double
Reid Spencerbce30f12007-03-06 22:23:15 +0000587 GenericValue GV = getConstantValue(Op0);
588 GV.FloatVal = float(GV.DoubleVal);
589 return GV;
590 }
591 case Instruction::FPExt:{
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000592 // FIXME long double
Reid Spencerbce30f12007-03-06 22:23:15 +0000593 GenericValue GV = getConstantValue(Op0);
594 GV.DoubleVal = double(GV.FloatVal);
595 return GV;
596 }
597 case Instruction::UIToFP: {
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.roundToDouble());
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.roundToDouble();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000603 else if (CE->getType()->isX86_FP80Ty()) {
Benjamin Kramer3069cbf2010-12-04 15:28:22 +0000604 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000605 (void)apf.convertFromAPInt(GV.IntVal,
Dan Gohman62824062008-02-29 01:27:13 +0000606 false,
607 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000608 GV.IntVal = apf.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000609 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000610 return GV;
611 }
612 case Instruction::SIToFP: {
613 GenericValue GV = getConstantValue(Op0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000614 if (CE->getType()->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000615 GV.FloatVal = float(GV.IntVal.signedRoundToDouble());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000616 else if (CE->getType()->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000617 GV.DoubleVal = GV.IntVal.signedRoundToDouble();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000618 else if (CE->getType()->isX86_FP80Ty()) {
Benjamin Kramer3069cbf2010-12-04 15:28:22 +0000619 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000620 (void)apf.convertFromAPInt(GV.IntVal,
Dan Gohman62824062008-02-29 01:27:13 +0000621 true,
622 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000623 GV.IntVal = apf.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000624 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000625 return GV;
626 }
627 case Instruction::FPToUI: // double->APInt conversion handles sign
628 case Instruction::FPToSI: {
629 GenericValue GV = getConstantValue(Op0);
630 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000631 if (Op0->getType()->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000632 GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000633 else if (Op0->getType()->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000634 GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000635 else if (Op0->getType()->isX86_FP80Ty()) {
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000636 APFloat apf = APFloat(GV.IntVal);
637 uint64_t v;
Dale Johannesen23a98552008-10-09 23:00:39 +0000638 bool ignored;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000639 (void)apf.convertToInteger(&v, BitWidth,
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000640 CE->getOpcode()==Instruction::FPToSI,
Dale Johannesen23a98552008-10-09 23:00:39 +0000641 APFloat::rmTowardZero, &ignored);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000642 GV.IntVal = v; // endian?
643 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000644 return GV;
645 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000646 case Instruction::PtrToInt: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000647 GenericValue GV = getConstantValue(Op0);
Eli Friedmanbbc6e672012-10-30 22:21:55 +0000648 uint32_t PtrWidth = TD->getTypeSizeInBits(Op0->getType());
649 assert(PtrWidth <= 64 && "Bad pointer width");
Reid Spencerbce30f12007-03-06 22:23:15 +0000650 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
Eli Friedmanbbc6e672012-10-30 22:21:55 +0000651 uint32_t IntWidth = TD->getTypeSizeInBits(CE->getType());
652 GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth);
Reid Spencerbce30f12007-03-06 22:23:15 +0000653 return GV;
654 }
655 case Instruction::IntToPtr: {
656 GenericValue GV = getConstantValue(Op0);
Micah Villmowb52fb872012-10-24 18:36:13 +0000657 uint32_t PtrWidth = TD->getTypeSizeInBits(CE->getType());
Eli Friedmanbbc6e672012-10-30 22:21:55 +0000658 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
Reid Spencerbce30f12007-03-06 22:23:15 +0000659 assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width");
660 GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue()));
Reid Spencer3da59db2006-11-27 01:05:10 +0000661 return GV;
662 }
663 case Instruction::BitCast: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000664 GenericValue GV = getConstantValue(Op0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000665 Type* DestTy = CE->getType();
Reid Spencerbce30f12007-03-06 22:23:15 +0000666 switch (Op0->getType()->getTypeID()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000667 default: llvm_unreachable("Invalid bitcast operand");
Reid Spencerbce30f12007-03-06 22:23:15 +0000668 case Type::IntegerTyID:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000669 assert(DestTy->isFloatingPointTy() && "invalid bitcast");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000670 if (DestTy->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000671 GV.FloatVal = GV.IntVal.bitsToFloat();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000672 else if (DestTy->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000673 GV.DoubleVal = GV.IntVal.bitsToDouble();
674 break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000675 case Type::FloatTyID:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000676 assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
Jay Foade4d19c92010-11-28 21:04:48 +0000677 GV.IntVal = APInt::floatToBits(GV.FloatVal);
Reid Spencerbce30f12007-03-06 22:23:15 +0000678 break;
679 case Type::DoubleTyID:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000680 assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
Jay Foade4d19c92010-11-28 21:04:48 +0000681 GV.IntVal = APInt::doubleToBits(GV.DoubleVal);
Reid Spencerbce30f12007-03-06 22:23:15 +0000682 break;
683 case Type::PointerTyID:
Duncan Sands1df98592010-02-16 11:11:14 +0000684 assert(DestTy->isPointerTy() && "Invalid bitcast");
Reid Spencerbce30f12007-03-06 22:23:15 +0000685 break; // getConstantValue(Op0) above already converted it
686 }
687 return GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000688 }
Chris Lattner9a231222003-05-14 17:51:49 +0000689 case Instruction::Add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000690 case Instruction::FAdd:
Reid Spencerbce30f12007-03-06 22:23:15 +0000691 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000692 case Instruction::FSub:
Reid Spencerbce30f12007-03-06 22:23:15 +0000693 case Instruction::Mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000694 case Instruction::FMul:
Reid Spencerbce30f12007-03-06 22:23:15 +0000695 case Instruction::UDiv:
696 case Instruction::SDiv:
697 case Instruction::URem:
698 case Instruction::SRem:
699 case Instruction::And:
700 case Instruction::Or:
701 case Instruction::Xor: {
702 GenericValue LHS = getConstantValue(Op0);
703 GenericValue RHS = getConstantValue(CE->getOperand(1));
704 GenericValue GV;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000705 switch (CE->getOperand(0)->getType()->getTypeID()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000706 default: llvm_unreachable("Bad add type!");
Reid Spencera54b7cb2007-01-12 07:05:14 +0000707 case Type::IntegerTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000708 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000709 default: llvm_unreachable("Invalid integer opcode");
Reid Spencerbce30f12007-03-06 22:23:15 +0000710 case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
711 case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
712 case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
713 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
714 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
715 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
716 case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
717 case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break;
718 case Instruction::Or: GV.IntVal = LHS.IntVal | RHS.IntVal; break;
719 case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break;
720 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000721 break;
722 case Type::FloatTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000723 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000724 default: llvm_unreachable("Invalid float opcode");
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000725 case Instruction::FAdd:
Reid Spencerbce30f12007-03-06 22:23:15 +0000726 GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000727 case Instruction::FSub:
Reid Spencerbce30f12007-03-06 22:23:15 +0000728 GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000729 case Instruction::FMul:
Reid Spencerbce30f12007-03-06 22:23:15 +0000730 GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000731 case Instruction::FDiv:
Reid Spencerbce30f12007-03-06 22:23:15 +0000732 GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000733 case Instruction::FRem:
Chris Lattner87565c12010-05-15 17:10:24 +0000734 GV.FloatVal = std::fmod(LHS.FloatVal,RHS.FloatVal); break;
Reid Spencerbce30f12007-03-06 22:23:15 +0000735 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000736 break;
737 case Type::DoubleTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000738 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000739 default: llvm_unreachable("Invalid double opcode");
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000740 case Instruction::FAdd:
Reid Spencerbce30f12007-03-06 22:23:15 +0000741 GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000742 case Instruction::FSub:
Reid Spencerbce30f12007-03-06 22:23:15 +0000743 GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000744 case Instruction::FMul:
Reid Spencerbce30f12007-03-06 22:23:15 +0000745 GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000746 case Instruction::FDiv:
Reid Spencerbce30f12007-03-06 22:23:15 +0000747 GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000748 case Instruction::FRem:
Chris Lattner87565c12010-05-15 17:10:24 +0000749 GV.DoubleVal = std::fmod(LHS.DoubleVal,RHS.DoubleVal); break;
Reid Spencerbce30f12007-03-06 22:23:15 +0000750 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000751 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000752 case Type::X86_FP80TyID:
753 case Type::PPC_FP128TyID:
754 case Type::FP128TyID: {
755 APFloat apfLHS = APFloat(LHS.IntVal);
756 switch (CE->getOpcode()) {
Daniel Dunbarab19da42010-11-13 00:55:42 +0000757 default: llvm_unreachable("Invalid long double opcode");
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000758 case Instruction::FAdd:
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000759 apfLHS.add(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;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000762 case Instruction::FSub:
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000763 apfLHS.subtract(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000764 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000765 break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000766 case Instruction::FMul:
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000767 apfLHS.multiply(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000768 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000769 break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000770 case Instruction::FDiv:
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000771 apfLHS.divide(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000772 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000773 break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000774 case Instruction::FRem:
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000775 apfLHS.mod(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000776 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000777 break;
778 }
779 }
780 break;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000781 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000782 return GV;
783 }
Chris Lattner9a231222003-05-14 17:51:49 +0000784 default:
785 break;
786 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000787
788 SmallString<256> Msg;
789 raw_svector_ostream OS(Msg);
790 OS << "ConstantExpr not handled: " << *CE;
791 report_fatal_error(OS.str());
Chris Lattner9a231222003-05-14 17:51:49 +0000792 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000793
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000794 // Otherwise, we have a simple constant.
Reid Spencerbce30f12007-03-06 22:23:15 +0000795 GenericValue Result;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000796 switch (C->getType()->getTypeID()) {
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000797 case Type::FloatTyID:
798 Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
Reid Spencera54b7cb2007-01-12 07:05:14 +0000799 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000800 case Type::DoubleTyID:
Dale Johannesen43421b32007-09-06 18:13:44 +0000801 Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble();
Reid Spencer8fb0f192007-03-06 03:04:04 +0000802 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000803 case Type::X86_FP80TyID:
804 case Type::FP128TyID:
805 case Type::PPC_FP128TyID:
Dale Johannesen7111b022008-10-09 18:53:47 +0000806 Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000807 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000808 case Type::IntegerTyID:
809 Result.IntVal = cast<ConstantInt>(C)->getValue();
810 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000811 case Type::PointerTyID:
Reid Spencer40cf2f92004-07-18 00:41:27 +0000812 if (isa<ConstantPointerNull>(C))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000813 Result.PointerVal = 0;
Reid Spencer40cf2f92004-07-18 00:41:27 +0000814 else if (const Function *F = dyn_cast<Function>(C))
815 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
Chris Lattnerf32a6a32009-10-29 05:26:09 +0000816 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
Reid Spencer40cf2f92004-07-18 00:41:27 +0000817 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
Chris Lattnerf32a6a32009-10-29 05:26:09 +0000818 else if (const BlockAddress *BA = dyn_cast<BlockAddress>(C))
819 Result = PTOGV(getPointerToBasicBlock(const_cast<BasicBlock*>(
820 BA->getBasicBlock())));
Reid Spencer40cf2f92004-07-18 00:41:27 +0000821 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000822 llvm_unreachable("Unknown constant pointer type!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000823 break;
824 default:
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000825 SmallString<256> Msg;
826 raw_svector_ostream OS(Msg);
827 OS << "ERROR: Constant unimplemented for type: " << *C->getType();
828 report_fatal_error(OS.str());
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000829 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000830
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000831 return Result;
832}
833
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000834/// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
835/// with the integer held in IntVal.
836static void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst,
837 unsigned StoreBytes) {
838 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
Roman Divacky59324292012-09-05 22:26:57 +0000839 const uint8_t *Src = (const uint8_t *)IntVal.getRawData();
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000840
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000841 if (sys::isLittleEndianHost()) {
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000842 // Little-endian host - the source is ordered from LSB to MSB. Order the
843 // destination from LSB to MSB: Do a straight copy.
844 memcpy(Dst, Src, StoreBytes);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000845 } else {
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000846 // Big-endian host - the source is an array of 64 bit words ordered from
847 // LSW to MSW. Each word is ordered from MSB to LSB. Order the destination
848 // from MSB to LSB: Reverse the word order, but not the bytes in a word.
849 while (StoreBytes > sizeof(uint64_t)) {
850 StoreBytes -= sizeof(uint64_t);
851 // May not be aligned so use memcpy.
852 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
853 Src += sizeof(uint64_t);
854 }
855
856 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
857 }
858}
859
Evan Cheng89687e32008-11-04 06:10:31 +0000860void ExecutionEngine::StoreValueToMemory(const GenericValue &Val,
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000861 GenericValue *Ptr, Type *Ty) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000862 const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty);
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000863
Reid Spencer8fb0f192007-03-06 03:04:04 +0000864 switch (Ty->getTypeID()) {
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000865 case Type::IntegerTyID:
866 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
Reid Spencer8fb0f192007-03-06 03:04:04 +0000867 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000868 case Type::FloatTyID:
869 *((float*)Ptr) = Val.FloatVal;
870 break;
871 case Type::DoubleTyID:
872 *((double*)Ptr) = Val.DoubleVal;
873 break;
Dale Johannesen1f8c5642009-03-24 18:16:17 +0000874 case Type::X86_FP80TyID:
875 memcpy(Ptr, Val.IntVal.getRawData(), 10);
876 break;
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000877 case Type::PointerTyID:
878 // Ensure 64 bit target pointers are fully initialized on 32 bit hosts.
879 if (StoreBytes != sizeof(PointerTy))
Chandler Carruth80d9e072011-04-28 08:37:18 +0000880 memset(&(Ptr->PointerVal), 0, StoreBytes);
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000881
Reid Spencer8fb0f192007-03-06 03:04:04 +0000882 *((PointerTy*)Ptr) = Val.PointerVal;
883 break;
884 default:
David Greeneae7c59a2010-01-05 01:27:39 +0000885 dbgs() << "Cannot store value of type " << *Ty << "!\n";
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000886 }
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000887
Micah Villmow3574eca2012-10-08 16:38:25 +0000888 if (sys::isLittleEndianHost() != getDataLayout()->isLittleEndian())
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000889 // Host and target are different endian - reverse the stored bytes.
890 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr);
891}
892
893/// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
894/// from Src into IntVal, which is assumed to be wide enough and to hold zero.
895static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) {
896 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
897 uint8_t *Dst = (uint8_t *)IntVal.getRawData();
898
Chris Lattnerb67c9582009-01-22 19:53:00 +0000899 if (sys::isLittleEndianHost())
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000900 // Little-endian host - the destination must be ordered from LSB to MSB.
901 // The source is ordered from LSB to MSB: Do a straight copy.
902 memcpy(Dst, Src, LoadBytes);
903 else {
904 // Big-endian - the destination is an array of 64 bit words ordered from
905 // LSW to MSW. Each word must be ordered from MSB to LSB. The source is
906 // ordered from MSB to LSB: Reverse the word order, but not the bytes in
907 // a word.
908 while (LoadBytes > sizeof(uint64_t)) {
909 LoadBytes -= sizeof(uint64_t);
910 // May not be aligned so use memcpy.
911 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
912 Dst += sizeof(uint64_t);
913 }
914
915 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
916 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000917}
918
Misha Brukman4afac182003-10-10 17:45:12 +0000919/// FIXME: document
920///
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000921void ExecutionEngine::LoadValueFromMemory(GenericValue &Result,
Duncan Sands08bfe262008-03-10 16:38:37 +0000922 GenericValue *Ptr,
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000923 Type *Ty) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000924 const unsigned LoadBytes = getDataLayout()->getTypeStoreSize(Ty);
Duncan Sands1eff7042007-12-10 17:43:13 +0000925
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000926 switch (Ty->getTypeID()) {
927 case Type::IntegerTyID:
928 // An APInt with all words initially zero.
929 Result.IntVal = APInt(cast<IntegerType>(Ty)->getBitWidth(), 0);
930 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes);
931 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000932 case Type::FloatTyID:
933 Result.FloatVal = *((float*)Ptr);
934 break;
935 case Type::DoubleTyID:
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000936 Result.DoubleVal = *((double*)Ptr);
Reid Spencer8fb0f192007-03-06 03:04:04 +0000937 break;
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000938 case Type::PointerTyID:
Reid Spencer8fb0f192007-03-06 03:04:04 +0000939 Result.PointerVal = *((PointerTy*)Ptr);
940 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000941 case Type::X86_FP80TyID: {
942 // This is endian dependent, but it will only work on x86 anyway.
Duncan Sands9e4635a2007-12-15 17:37:40 +0000943 // FIXME: Will not trap if loading a signaling NaN.
Dale Johannesen1f8c5642009-03-24 18:16:17 +0000944 uint64_t y[2];
945 memcpy(y, Ptr, 10);
Jeffrey Yasskin3ba292d2011-07-18 21:45:40 +0000946 Result.IntVal = APInt(80, y);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000947 break;
948 }
Reid Spencer8fb0f192007-03-06 03:04:04 +0000949 default:
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000950 SmallString<256> Msg;
951 raw_svector_ostream OS(Msg);
952 OS << "Cannot load value of type " << *Ty << "!";
953 report_fatal_error(OS.str());
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000954 }
Chris Lattnerf88b9a62003-05-08 16:52:16 +0000955}
956
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000957void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
David Greeneae7c59a2010-01-05 01:27:39 +0000958 DEBUG(dbgs() << "JIT: Initializing " << Addr << " ");
Dale Johannesendd947ea2008-08-07 01:30:15 +0000959 DEBUG(Init->dump());
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000960 if (isa<UndefValue>(Init))
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000961 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000962
963 if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000964 unsigned ElementSize =
Micah Villmow3574eca2012-10-08 16:38:25 +0000965 getDataLayout()->getTypeAllocSize(CP->getType()->getElementType());
Robert Bocchino7c2b7c72006-01-20 18:18:40 +0000966 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
967 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
968 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000969 }
970
971 if (isa<ConstantAggregateZero>(Init)) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000972 memset(Addr, 0, (size_t)getDataLayout()->getTypeAllocSize(Init->getType()));
Chris Lattnerb6e1dd72008-02-15 00:57:28 +0000973 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000974 }
975
976 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(Init)) {
Dan Gohman638e3782008-05-20 03:20:09 +0000977 unsigned ElementSize =
Micah Villmow3574eca2012-10-08 16:38:25 +0000978 getDataLayout()->getTypeAllocSize(CPA->getType()->getElementType());
Dan Gohman638e3782008-05-20 03:20:09 +0000979 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
980 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
981 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000982 }
983
984 if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(Init)) {
Dan Gohman638e3782008-05-20 03:20:09 +0000985 const StructLayout *SL =
Micah Villmow3574eca2012-10-08 16:38:25 +0000986 getDataLayout()->getStructLayout(cast<StructType>(CPS->getType()));
Dan Gohman638e3782008-05-20 03:20:09 +0000987 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
988 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i));
989 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000990 }
991
992 if (const ConstantDataSequential *CDS =
993 dyn_cast<ConstantDataSequential>(Init)) {
994 // CDS is already laid out in host memory order.
995 StringRef Data = CDS->getRawDataValues();
996 memcpy(Addr, Data.data(), Data.size());
997 return;
998 }
999
1000 if (Init->getType()->isFirstClassType()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001001 GenericValue Val = getConstantValue(Init);
1002 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
1003 return;
1004 }
1005
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001006 DEBUG(dbgs() << "Bad Type: " << *Init->getType() << "\n");
Torok Edwinc23197a2009-07-14 16:55:14 +00001007 llvm_unreachable("Unknown constant type to initialize memory with!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001008}
1009
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001010/// EmitGlobals - Emit all of the global variables to memory, storing their
1011/// addresses into GlobalAddress. This must make sure to copy the contents of
1012/// their initializers into the memory.
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001013void ExecutionEngine::emitGlobals() {
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001014 // Loop over all of the global variables in the program, allocating the memory
Chris Lattnerfe854032006-08-16 01:24:12 +00001015 // to hold them. If there is more than one module, do a prepass over globals
1016 // to figure out how the different modules should link together.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001017 std::map<std::pair<std::string, Type*>,
Chris Lattnerfe854032006-08-16 01:24:12 +00001018 const GlobalValue*> LinkedGlobalsMap;
Misha Brukmanedf128a2005-04-21 22:36:52 +00001019
Chris Lattnerfe854032006-08-16 01:24:12 +00001020 if (Modules.size() != 1) {
1021 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00001022 Module &M = *Modules[m];
Chris Lattnerfe854032006-08-16 01:24:12 +00001023 for (Module::const_global_iterator I = M.global_begin(),
1024 E = M.global_end(); I != E; ++I) {
1025 const GlobalValue *GV = I;
Rafael Espindolabb46f522009-01-15 20:18:42 +00001026 if (GV->hasLocalLinkage() || GV->isDeclaration() ||
Chris Lattnerfe854032006-08-16 01:24:12 +00001027 GV->hasAppendingLinkage() || !GV->hasName())
1028 continue;// Ignore external globals and globals with internal linkage.
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001029
1030 const GlobalValue *&GVEntry =
Chris Lattnerfe854032006-08-16 01:24:12 +00001031 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
1032
1033 // If this is the first time we've seen this global, it is the canonical
1034 // version.
1035 if (!GVEntry) {
1036 GVEntry = GV;
1037 continue;
1038 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001039
Chris Lattnerfe854032006-08-16 01:24:12 +00001040 // If the existing global is strong, never replace it.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001041 if (GVEntry->hasExternalLinkage() ||
1042 GVEntry->hasDLLImportLinkage() ||
1043 GVEntry->hasDLLExportLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +00001044 continue;
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001045
Chris Lattnerfe854032006-08-16 01:24:12 +00001046 // Otherwise, we know it's linkonce/weak, replace it if this is a strong
Dale Johannesenaafce772008-05-14 20:12:51 +00001047 // symbol. FIXME is this right for common?
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +00001048 if (GV->hasExternalLinkage() || GVEntry->hasExternalWeakLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +00001049 GVEntry = GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +00001050 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001051 }
Chris Lattnerfe854032006-08-16 01:24:12 +00001052 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001053
Chris Lattnerfe854032006-08-16 01:24:12 +00001054 std::vector<const GlobalValue*> NonCanonicalGlobals;
1055 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00001056 Module &M = *Modules[m];
Chris Lattnerfe854032006-08-16 01:24:12 +00001057 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
1058 I != E; ++I) {
1059 // In the multi-module case, see what this global maps to.
1060 if (!LinkedGlobalsMap.empty()) {
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001061 if (const GlobalValue *GVEntry =
Chris Lattnerfe854032006-08-16 01:24:12 +00001062 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())]) {
1063 // If something else is the canonical global, ignore this one.
1064 if (GVEntry != &*I) {
1065 NonCanonicalGlobals.push_back(I);
1066 continue;
1067 }
1068 }
1069 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001070
Reid Spencer5cbf9852007-01-30 20:08:39 +00001071 if (!I->isDeclaration()) {
Nicolas Geoffray46fa1392008-10-25 15:41:43 +00001072 addGlobalMapping(I, getMemoryForGV(I));
Chris Lattnerfe854032006-08-16 01:24:12 +00001073 } else {
1074 // External variable reference. Try to use the dynamic loader to
1075 // get a pointer to it.
1076 if (void *SymAddr =
Daniel Dunbarfbee5792009-07-21 08:54:24 +00001077 sys::DynamicLibrary::SearchForAddressOfSymbol(I->getName()))
Chris Lattnerfe854032006-08-16 01:24:12 +00001078 addGlobalMapping(I, SymAddr);
1079 else {
Chris Lattner75361b62010-04-07 22:58:41 +00001080 report_fatal_error("Could not resolve external global address: "
Torok Edwin31e24662009-07-07 17:32:34 +00001081 +I->getName());
Chris Lattnerfe854032006-08-16 01:24:12 +00001082 }
1083 }
1084 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001085
Chris Lattnerfe854032006-08-16 01:24:12 +00001086 // If there are multiple modules, map the non-canonical globals to their
1087 // canonical location.
1088 if (!NonCanonicalGlobals.empty()) {
1089 for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) {
1090 const GlobalValue *GV = NonCanonicalGlobals[i];
1091 const GlobalValue *CGV =
1092 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
1093 void *Ptr = getPointerToGlobalIfAvailable(CGV);
1094 assert(Ptr && "Canonical global wasn't codegen'd!");
Nuno Lopesc8ed9022008-10-14 10:04:52 +00001095 addGlobalMapping(GV, Ptr);
Chris Lattnerfe854032006-08-16 01:24:12 +00001096 }
1097 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001098
1099 // Now that all of the globals are set up in memory, loop through them all
Reid Spencera54b7cb2007-01-12 07:05:14 +00001100 // and initialize their contents.
Chris Lattnerfe854032006-08-16 01:24:12 +00001101 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
1102 I != E; ++I) {
Reid Spencer5cbf9852007-01-30 20:08:39 +00001103 if (!I->isDeclaration()) {
Chris Lattnerfe854032006-08-16 01:24:12 +00001104 if (!LinkedGlobalsMap.empty()) {
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001105 if (const GlobalValue *GVEntry =
Chris Lattnerfe854032006-08-16 01:24:12 +00001106 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())])
1107 if (GVEntry != &*I) // Not the canonical variable.
1108 continue;
1109 }
1110 EmitGlobalVariable(I);
1111 }
1112 }
1113 }
Chris Lattner24b0a182003-12-20 02:45:37 +00001114}
1115
1116// EmitGlobalVariable - This method emits the specified global variable to the
1117// address specified in GlobalAddresses, or allocates new memory if it's not
1118// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +00001119void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +00001120 void *GA = getPointerToGlobalIfAvailable(GV);
Chris Lattner23c47242004-02-08 19:33:23 +00001121
Chris Lattner24b0a182003-12-20 02:45:37 +00001122 if (GA == 0) {
1123 // If it's not already specified, allocate memory for the global.
Nicolas Geoffray46fa1392008-10-25 15:41:43 +00001124 GA = getMemoryForGV(GV);
Chris Lattner55d86482003-12-31 20:21:04 +00001125 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +00001126 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001127
Nicolas Geoffray46fa1392008-10-25 15:41:43 +00001128 // Don't initialize if it's thread local, let the client do it.
1129 if (!GV->isThreadLocal())
1130 InitializeMemory(GV->getInitializer(), GA);
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001131
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001132 Type *ElTy = GV->getType()->getElementType();
Micah Villmow3574eca2012-10-08 16:38:25 +00001133 size_t GVSize = (size_t)getDataLayout()->getTypeAllocSize(ElTy);
Chris Lattner813c8152005-01-08 20:13:19 +00001134 NumInitBytes += (unsigned)GVSize;
Chris Lattner24b0a182003-12-20 02:45:37 +00001135 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001136}
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +00001137
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +00001138ExecutionEngineState::ExecutionEngineState(ExecutionEngine &EE)
1139 : EE(EE), GlobalAddressMap(this) {
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +00001140}
1141
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001142sys::Mutex *
1143ExecutionEngineState::AddressMapConfig::getMutex(ExecutionEngineState *EES) {
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +00001144 return &EES->EE.lock;
1145}
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001146
1147void ExecutionEngineState::AddressMapConfig::onDelete(ExecutionEngineState *EES,
1148 const GlobalValue *Old) {
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +00001149 void *OldVal = EES->GlobalAddressMap.lookup(Old);
1150 EES->GlobalAddressReverseMap.erase(OldVal);
1151}
1152
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001153void ExecutionEngineState::AddressMapConfig::onRAUW(ExecutionEngineState *,
1154 const GlobalValue *,
1155 const GlobalValue *) {
Craig Topper85814382012-02-07 05:05:23 +00001156 llvm_unreachable("The ExecutionEngine doesn't know how to handle a"
1157 " RAUW on a value it has a global mapping for.");
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +00001158}