blob: 5d12d69baac508770aa9e49ba2e2c05dca8efee4 [file] [log] [blame]
Misha Brukman857c21b2003-10-10 17:45:12 +00001//===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukman835702a2005-04-21 22:36:52 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Misha Brukman835702a2005-04-21 22:36:52 +00009//
Chris Lattner996fe012002-12-24 00:01:05 +000010// This file defines the common interface used by the various execution engine
11// subclasses.
12//
13//===----------------------------------------------------------------------===//
14
Jeffrey Yasskin6bf87df2009-08-07 19:54:29 +000015#include "llvm/ExecutionEngine/ExecutionEngine.h"
Daniel Dunbar868e3f02010-11-13 02:48:57 +000016#include "llvm/ADT/SmallString.h"
Chris Lattner390d78b2009-08-23 22:49:13 +000017#include "llvm/ADT/Statistic.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "llvm/ExecutionEngine/GenericValue.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000019#include "llvm/ExecutionEngine/JITMemoryManager.h"
20#include "llvm/ExecutionEngine/ObjectCache.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Constants.h"
22#include "llvm/IR/DataLayout.h"
23#include "llvm/IR/DerivedTypes.h"
24#include "llvm/IR/Module.h"
25#include "llvm/IR/Operator.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000026#include "llvm/IR/ValueHandle.h"
Rafael Espindoladd396572014-08-01 19:28:15 +000027#include "llvm/Object/Archive.h"
David Blaikie35907d82014-04-29 22:04:55 +000028#include "llvm/Object/ObjectFile.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000029#include "llvm/Support/Debug.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000030#include "llvm/Support/DynamicLibrary.h"
Torok Edwin6c2d2332009-07-07 17:32:34 +000031#include "llvm/Support/ErrorHandling.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Support/Host.h"
Chris Lattner6d8dd182006-05-08 22:00:52 +000033#include "llvm/Support/MutexGuard.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/Support/TargetRegistry.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000035#include "llvm/Support/raw_ostream.h"
Dylan Noblesmith8418fdc2011-05-13 21:51:29 +000036#include "llvm/Target/TargetMachine.h"
Anton Korobeynikov579f0712008-02-20 11:08:44 +000037#include <cmath>
38#include <cstring>
Chris Lattner29681de2003-11-19 21:08:57 +000039using namespace llvm;
Chris Lattner996fe012002-12-24 00:01:05 +000040
Chandler Carruthf58e3762014-04-22 03:04:17 +000041#define DEBUG_TYPE "jit"
42
Chris Lattnerc346ecd2006-12-19 22:43:32 +000043STATISTIC(NumInitBytes, "Number of bytes of global vars initialized");
44STATISTIC(NumGlobals , "Number of global vars initialized");
Chris Lattner996fe012002-12-24 00:01:05 +000045
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000046// Pin the vtable to this file.
47void ObjectCache::anchor() {}
48void ObjectBuffer::anchor() {}
49void ObjectBufferStream::anchor() {}
50
Eric Christopherb9fd9ed2014-08-07 22:02:54 +000051ExecutionEngine *(*ExecutionEngine::JITCtor)(
Rafael Espindola2a8a2792014-08-19 04:04:25 +000052 std::unique_ptr<Module> M,
Eric Christopherb9fd9ed2014-08-07 22:02:54 +000053 std::string *ErrorStr,
54 JITMemoryManager *JMM,
55 bool GVsWithCode,
56 TargetMachine *TM) = nullptr;
Daniel Dunbar70ff8b02010-11-17 16:06:37 +000057ExecutionEngine *(*ExecutionEngine::MCJITCtor)(
Rafael Espindola2a8a2792014-08-19 04:04:25 +000058 std::unique_ptr<Module >M,
Daniel Dunbar70ff8b02010-11-17 16:06:37 +000059 std::string *ErrorStr,
Filip Pizlo9bc53e82013-05-14 19:29:00 +000060 RTDyldMemoryManager *MCJMM,
Craig Topper2617dcc2014-04-15 06:32:26 +000061 TargetMachine *TM) = nullptr;
Rafael Espindola2a8a2792014-08-19 04:04:25 +000062ExecutionEngine *(*ExecutionEngine::InterpCtor)(std::unique_ptr<Module> M,
Craig Topper2617dcc2014-04-15 06:32:26 +000063 std::string *ErrorStr) =nullptr;
Chris Lattner2d52c1b2006-03-22 06:07:50 +000064
Rafael Espindola2a8a2792014-08-19 04:04:25 +000065ExecutionEngine::ExecutionEngine(std::unique_ptr<Module> M)
Jeffrey Yasskinf98e9812009-10-13 17:42:08 +000066 : EEState(*this),
Craig Topper2617dcc2014-04-15 06:32:26 +000067 LazyFunctionCreator(nullptr) {
Jeffrey Yasskin4567db42009-10-27 20:30:28 +000068 CompilingLazily = false;
Evan Chengcdc00602008-09-24 16:25:55 +000069 GVCompilationDisabled = false;
Evan Cheng84a90552008-06-17 16:49:02 +000070 SymbolSearchingDisabled = false;
Lang Hamesbc876012014-04-18 06:48:23 +000071
72 // IR module verification is enabled by default in debug builds, and disabled
73 // by default in release builds.
74#ifndef NDEBUG
75 VerifyModules = true;
76#else
77 VerifyModules = false;
78#endif
79
Jeffrey Yasskin091217b2010-01-27 20:34:15 +000080 assert(M && "Module is null?");
Rafael Espindola2a8a2792014-08-19 04:04:25 +000081 Modules.push_back(std::move(M));
Misha Brukman260b0c82003-10-16 21:18:05 +000082}
83
Brian Gaeke92f8b302003-09-04 22:57:27 +000084ExecutionEngine::~ExecutionEngine() {
Reid Spencer603682a2007-03-03 18:19:18 +000085 clearAllGlobalMappings();
Brian Gaeke92f8b302003-09-04 22:57:27 +000086}
87
Jeffrey Yasskina4044332010-03-27 04:53:56 +000088namespace {
Daniel Dunbar868e3f02010-11-13 02:48:57 +000089/// \brief Helper class which uses a value handler to automatically deletes the
90/// memory block when the GlobalVariable is destroyed.
Jeffrey Yasskina4044332010-03-27 04:53:56 +000091class GVMemoryBlock : public CallbackVH {
92 GVMemoryBlock(const GlobalVariable *GV)
93 : CallbackVH(const_cast<GlobalVariable*>(GV)) {}
94
95public:
Daniel Dunbar868e3f02010-11-13 02:48:57 +000096 /// \brief Returns the address the GlobalVariable should be written into. The
97 /// GVMemoryBlock object prefixes that.
Micah Villmowcdfe20b2012-10-08 16:38:25 +000098 static char *Create(const GlobalVariable *GV, const DataLayout& TD) {
Chris Lattner229907c2011-07-18 04:54:35 +000099 Type *ElTy = GV->getType()->getElementType();
Jeffrey Yasskina4044332010-03-27 04:53:56 +0000100 size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy);
101 void *RawMemory = ::operator new(
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000102 DataLayout::RoundUpAlignment(sizeof(GVMemoryBlock),
Jeffrey Yasskina4044332010-03-27 04:53:56 +0000103 TD.getPreferredAlignment(GV))
104 + GVSize);
105 new(RawMemory) GVMemoryBlock(GV);
106 return static_cast<char*>(RawMemory) + sizeof(GVMemoryBlock);
107 }
108
Craig Topperb51ff602014-03-08 07:51:20 +0000109 void deleted() override {
Jeffrey Yasskina4044332010-03-27 04:53:56 +0000110 // We allocated with operator new and with some extra memory hanging off the
111 // end, so don't just delete this. I'm not sure if this is actually
112 // required.
113 this->~GVMemoryBlock();
114 ::operator delete(this);
115 }
116};
117} // anonymous namespace
118
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000119char *ExecutionEngine::getMemoryForGV(const GlobalVariable *GV) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000120 return GVMemoryBlock::Create(GV, *getDataLayout());
Nicolas Geoffray5457ce92008-10-25 15:41:43 +0000121}
122
David Blaikie35907d82014-04-29 22:04:55 +0000123void ExecutionEngine::addObjectFile(std::unique_ptr<object::ObjectFile> O) {
124 llvm_unreachable("ExecutionEngine subclass doesn't implement addObjectFile.");
125}
126
Rafael Espindola48af1c22014-08-19 18:44:46 +0000127void ExecutionEngine::addArchive(object::OwningBinary<object::Archive> A) {
Rafael Espindolaacfd6282014-08-01 18:49:24 +0000128 llvm_unreachable("ExecutionEngine subclass doesn't implement addArchive.");
129}
130
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000131bool ExecutionEngine::removeModule(Module *M) {
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000132 for (auto I = Modules.begin(), E = Modules.end(); I != E; ++I) {
133 Module *Found = I->get();
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000134 if (Found == M) {
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000135 I->release();
Devang Patel324fe892007-10-15 19:56:32 +0000136 Modules.erase(I);
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000137 clearGlobalMappingsFromModule(M);
138 return true;
Devang Patel324fe892007-10-15 19:56:32 +0000139 }
140 }
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000141 return false;
Nate Begeman617001d2009-01-23 19:27:28 +0000142}
143
Chris Lattner0621cae2006-08-16 01:24:12 +0000144Function *ExecutionEngine::FindFunctionNamed(const char *FnName) {
145 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000146 if (Function *F = Modules[i]->getFunction(FnName))
Chris Lattner0621cae2006-08-16 01:24:12 +0000147 return F;
148 }
Craig Topper2617dcc2014-04-15 06:32:26 +0000149 return nullptr;
Chris Lattner0621cae2006-08-16 01:24:12 +0000150}
151
152
Zachary Turner2f825df2014-06-16 20:54:28 +0000153void *ExecutionEngineState::RemoveMapping(const GlobalValue *ToUnmap) {
Jeffrey Yasskind0fc8f82009-10-23 22:37:43 +0000154 GlobalAddressMapTy::iterator I = GlobalAddressMap.find(ToUnmap);
Jeffrey Yasskin307c0532009-10-09 22:10:27 +0000155 void *OldVal;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000156
157 // FIXME: This is silly, we shouldn't end up with a mapping -> 0 in the
158 // GlobalAddressMap.
Jeffrey Yasskin307c0532009-10-09 22:10:27 +0000159 if (I == GlobalAddressMap.end())
Craig Topper2617dcc2014-04-15 06:32:26 +0000160 OldVal = nullptr;
Jeffrey Yasskin307c0532009-10-09 22:10:27 +0000161 else {
162 OldVal = I->second;
163 GlobalAddressMap.erase(I);
164 }
165
166 GlobalAddressReverseMap.erase(OldVal);
167 return OldVal;
168}
169
Chris Lattner6d8dd182006-05-08 22:00:52 +0000170void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000171 MutexGuard locked(lock);
Evan Cheng5cc53c32008-09-18 07:54:21 +0000172
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000173 DEBUG(dbgs() << "JIT: Map \'" << GV->getName()
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000174 << "\' to [" << Addr << "]\n";);
Zachary Turner2f825df2014-06-16 20:54:28 +0000175 void *&CurVal = EEState.getGlobalAddressMap()[GV];
Craig Topper2617dcc2014-04-15 06:32:26 +0000176 assert((!CurVal || !Addr) && "GlobalMapping already established!");
Chris Lattner6d8dd182006-05-08 22:00:52 +0000177 CurVal = Addr;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000178
179 // If we are using the reverse mapping, add it too.
Zachary Turner2f825df2014-06-16 20:54:28 +0000180 if (!EEState.getGlobalAddressReverseMap().empty()) {
Jeffrey Yasskin6bf87df2009-08-07 19:54:29 +0000181 AssertingVH<const GlobalValue> &V =
Zachary Turner2f825df2014-06-16 20:54:28 +0000182 EEState.getGlobalAddressReverseMap()[Addr];
Craig Topper2617dcc2014-04-15 06:32:26 +0000183 assert((!V || !GV) && "GlobalMapping already established!");
Chris Lattner6d8dd182006-05-08 22:00:52 +0000184 V = GV;
185 }
186}
187
Chris Lattner6d8dd182006-05-08 22:00:52 +0000188void ExecutionEngine::clearAllGlobalMappings() {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000189 MutexGuard locked(lock);
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000190
Zachary Turner2f825df2014-06-16 20:54:28 +0000191 EEState.getGlobalAddressMap().clear();
192 EEState.getGlobalAddressReverseMap().clear();
Chris Lattner6d8dd182006-05-08 22:00:52 +0000193}
194
Nate Begeman8f83fc42008-05-21 16:34:48 +0000195void ExecutionEngine::clearGlobalMappingsFromModule(Module *M) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000196 MutexGuard locked(lock);
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000197
198 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI)
Zachary Turner2f825df2014-06-16 20:54:28 +0000199 EEState.RemoveMapping(FI);
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000200 for (Module::global_iterator GI = M->global_begin(), GE = M->global_end();
201 GI != GE; ++GI)
Zachary Turner2f825df2014-06-16 20:54:28 +0000202 EEState.RemoveMapping(GI);
Nate Begeman8f83fc42008-05-21 16:34:48 +0000203}
204
Chris Lattneree181732008-04-04 04:47:41 +0000205void *ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000206 MutexGuard locked(lock);
Chris Lattneree181732008-04-04 04:47:41 +0000207
Jeffrey Yasskind0fc8f82009-10-23 22:37:43 +0000208 ExecutionEngineState::GlobalAddressMapTy &Map =
Zachary Turner2f825df2014-06-16 20:54:28 +0000209 EEState.getGlobalAddressMap();
Chris Lattneree181732008-04-04 04:47:41 +0000210
Chris Lattner6d8dd182006-05-08 22:00:52 +0000211 // Deleting from the mapping?
Craig Topper2617dcc2014-04-15 06:32:26 +0000212 if (!Addr)
Zachary Turner2f825df2014-06-16 20:54:28 +0000213 return EEState.RemoveMapping(GV);
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000214
Jeffrey Yasskind0fc8f82009-10-23 22:37:43 +0000215 void *&CurVal = Map[GV];
Chris Lattneree181732008-04-04 04:47:41 +0000216 void *OldVal = CurVal;
217
Zachary Turner2f825df2014-06-16 20:54:28 +0000218 if (CurVal && !EEState.getGlobalAddressReverseMap().empty())
219 EEState.getGlobalAddressReverseMap().erase(CurVal);
Chris Lattner6d8dd182006-05-08 22:00:52 +0000220 CurVal = Addr;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000221
222 // If we are using the reverse mapping, add it too.
Zachary Turner2f825df2014-06-16 20:54:28 +0000223 if (!EEState.getGlobalAddressReverseMap().empty()) {
Jeffrey Yasskin6bf87df2009-08-07 19:54:29 +0000224 AssertingVH<const GlobalValue> &V =
Zachary Turner2f825df2014-06-16 20:54:28 +0000225 EEState.getGlobalAddressReverseMap()[Addr];
Craig Topper2617dcc2014-04-15 06:32:26 +0000226 assert((!V || !GV) && "GlobalMapping already established!");
Chris Lattner6d8dd182006-05-08 22:00:52 +0000227 V = GV;
228 }
Chris Lattneree181732008-04-04 04:47:41 +0000229 return OldVal;
Chris Lattner6d8dd182006-05-08 22:00:52 +0000230}
231
Chris Lattner6d8dd182006-05-08 22:00:52 +0000232void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000233 MutexGuard locked(lock);
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000234
Jeffrey Yasskind0fc8f82009-10-23 22:37:43 +0000235 ExecutionEngineState::GlobalAddressMapTy::iterator I =
Zachary Turner2f825df2014-06-16 20:54:28 +0000236 EEState.getGlobalAddressMap().find(GV);
237 return I != EEState.getGlobalAddressMap().end() ? I->second : nullptr;
Chris Lattner6d8dd182006-05-08 22:00:52 +0000238}
239
Chris Lattner748e8572003-12-31 20:21:04 +0000240const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000241 MutexGuard locked(lock);
Reid Spencer79876f52005-07-12 15:51:55 +0000242
Chris Lattner748e8572003-12-31 20:21:04 +0000243 // If we haven't computed the reverse mapping yet, do so first.
Zachary Turner2f825df2014-06-16 20:54:28 +0000244 if (EEState.getGlobalAddressReverseMap().empty()) {
Jeffrey Yasskind0fc8f82009-10-23 22:37:43 +0000245 for (ExecutionEngineState::GlobalAddressMapTy::iterator
Zachary Turner2f825df2014-06-16 20:54:28 +0000246 I = EEState.getGlobalAddressMap().begin(),
247 E = EEState.getGlobalAddressMap().end(); I != E; ++I)
248 EEState.getGlobalAddressReverseMap().insert(std::make_pair(
Daniel Dunbare4f47432010-11-13 00:55:42 +0000249 I->second, I->first));
Chris Lattner748e8572003-12-31 20:21:04 +0000250 }
251
Jeffrey Yasskin6bf87df2009-08-07 19:54:29 +0000252 std::map<void *, AssertingVH<const GlobalValue> >::iterator I =
Zachary Turner2f825df2014-06-16 20:54:28 +0000253 EEState.getGlobalAddressReverseMap().find(Addr);
254 return I != EEState.getGlobalAddressReverseMap().end() ? I->second : nullptr;
Chris Lattner748e8572003-12-31 20:21:04 +0000255}
Chris Lattner5a0d4822003-12-26 06:50:30 +0000256
Jeffrey Yasskinbfd38ab2010-03-26 00:59:12 +0000257namespace {
258class ArgvArray {
Dylan Noblesmithc4a99422014-08-25 00:58:18 +0000259 std::unique_ptr<char[]> Array;
260 std::vector<std::unique_ptr<char[]>> Values;
Jeffrey Yasskinbfd38ab2010-03-26 00:59:12 +0000261public:
Jeffrey Yasskinbfd38ab2010-03-26 00:59:12 +0000262 /// 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) {
Dylan Noblesmithc4a99422014-08-25 00:58:18 +0000270 Values.clear(); // Free the old contents.
271 Values.reserve(InputArgv.size());
Chandler Carruth5da3f052012-11-01 09:14:31 +0000272 unsigned PtrSize = EE->getDataLayout()->getPointerSize();
Dylan Noblesmithc4a99422014-08-25 00:58:18 +0000273 Array = make_unique<char[]>((InputArgv.size()+1)*PtrSize);
Chris Lattner5a0d4822003-12-26 06:50:30 +0000274
Dylan Noblesmithc4a99422014-08-25 00:58:18 +0000275 DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array.get() << "\n");
Chris Lattner229907c2011-07-18 04:54:35 +0000276 Type *SBytePtr = Type::getInt8PtrTy(C);
Chris Lattner5a0d4822003-12-26 06:50:30 +0000277
278 for (unsigned i = 0; i != InputArgv.size(); ++i) {
279 unsigned Size = InputArgv[i].size()+1;
Dylan Noblesmith4b535d12014-08-26 02:03:28 +0000280 auto Dest = make_unique<char[]>(Size);
281 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest.get() << "\n");
Misha Brukman835702a2005-04-21 22:36:52 +0000282
Dylan Noblesmith4b535d12014-08-26 02:03:28 +0000283 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest.get());
Chris Lattner5a0d4822003-12-26 06:50:30 +0000284 Dest[Size-1] = 0;
Misha Brukman835702a2005-04-21 22:36:52 +0000285
Jeffrey Yasskinbfd38ab2010-03-26 00:59:12 +0000286 // Endian safe: Array[i] = (PointerTy)Dest;
Dylan Noblesmith4b535d12014-08-26 02:03:28 +0000287 EE->StoreValueToMemory(PTOGV(Dest.get()),
288 (GenericValue*)(&Array[i*PtrSize]), SBytePtr);
289 Values.push_back(std::move(Dest));
Chris Lattner5a0d4822003-12-26 06:50:30 +0000290 }
291
292 // Null terminate it
Craig Topper2617dcc2014-04-15 06:32:26 +0000293 EE->StoreValueToMemory(PTOGV(nullptr),
Dylan Noblesmithc4a99422014-08-25 00:58:18 +0000294 (GenericValue*)(&Array[InputArgv.size()*PtrSize]),
Chris Lattner5a0d4822003-12-26 06:50:30 +0000295 SBytePtr);
Dylan Noblesmithc4a99422014-08-25 00:58:18 +0000296 return Array.get();
Chris Lattner5a0d4822003-12-26 06:50:30 +0000297}
298
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000299void ExecutionEngine::runStaticConstructorsDestructors(Module &module,
Chris Lattner41fa2bd2009-09-23 01:46:04 +0000300 bool isDtors) {
Chris Lattnerfaae50b2006-03-08 18:42:46 +0000301 const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000302 GlobalVariable *GV = module.getNamedGlobal(Name);
Evan Cheng1a9a0b72008-09-30 15:51:21 +0000303
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000304 // If this global has internal linkage, or if it has a use, then it must be
305 // an old-style (llvmgcc3) static ctor with __main linked in and in use. If
306 // this is the case, don't execute any of the global ctors, __main will do
307 // it.
308 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage()) return;
309
Nick Lewycky0cbfcb22011-04-06 20:38:44 +0000310 // Should be an array of '{ i32, void ()* }' structs. The first value is
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000311 // the init priority, which we ignore.
Chris Lattner00245f42012-01-24 13:41:11 +0000312 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
Craig Topper2617dcc2014-04-15 06:32:26 +0000313 if (!InitList)
Nick Lewycky0f857892011-04-11 22:11:20 +0000314 return;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000315 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner00245f42012-01-24 13:41:11 +0000316 ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i));
Craig Topper2617dcc2014-04-15 06:32:26 +0000317 if (!CS) continue;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000318
319 Constant *FP = CS->getOperand(1);
320 if (FP->isNullValue())
Nick Lewycky0f857892011-04-11 22:11:20 +0000321 continue; // Found a sentinal value, ignore.
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000322
323 // Strip off constant expression casts.
324 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
325 if (CE->isCast())
326 FP = CE->getOperand(0);
327
328 // Execute the ctor/dtor function!
329 if (Function *F = dyn_cast<Function>(FP))
330 runFunction(F, std::vector<GenericValue>());
331
332 // FIXME: It is marginally lame that we just do nothing here if we see an
333 // entry we don't recognize. It might not be unreasonable for the verifier
334 // to not even allow this and just assert here.
335 }
Evan Cheng1a9a0b72008-09-30 15:51:21 +0000336}
337
Evan Cheng1a9a0b72008-09-30 15:51:21 +0000338void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
339 // Execute global ctors/dtors for each module in the program.
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000340 for (std::unique_ptr<Module> &M : Modules)
341 runStaticConstructorsDestructors(*M, isDtors);
Chris Lattnerfaae50b2006-03-08 18:42:46 +0000342}
343
Dan Gohmancf3e3012008-08-26 01:38:29 +0000344#ifndef NDEBUG
Duncan Sands1202d1b2007-12-14 19:38:31 +0000345/// isTargetNullPtr - Return whether the target pointer stored at Loc is null.
346static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) {
Chandler Carruth5da3f052012-11-01 09:14:31 +0000347 unsigned PtrSize = EE->getDataLayout()->getPointerSize();
Duncan Sands1202d1b2007-12-14 19:38:31 +0000348 for (unsigned i = 0; i < PtrSize; ++i)
349 if (*(i + (uint8_t*)Loc))
350 return false;
351 return true;
352}
Dan Gohmancf3e3012008-08-26 01:38:29 +0000353#endif
Duncan Sands1202d1b2007-12-14 19:38:31 +0000354
Chris Lattner5a0d4822003-12-26 06:50:30 +0000355int ExecutionEngine::runFunctionAsMain(Function *Fn,
356 const std::vector<std::string> &argv,
357 const char * const * envp) {
358 std::vector<GenericValue> GVArgs;
359 GenericValue GVArgc;
Reid Spencer87aa65f2007-03-06 03:04:04 +0000360 GVArgc.IntVal = APInt(32, argv.size());
Anton Korobeynikov8c32c112007-06-03 19:17:35 +0000361
362 // Check main() type
Chris Lattnerb1cad0b2004-08-16 01:05:35 +0000363 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
Chris Lattner229907c2011-07-18 04:54:35 +0000364 FunctionType *FTy = Fn->getFunctionType();
365 Type* PPInt8Ty = Type::getInt8PtrTy(Fn->getContext())->getPointerTo();
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000366
367 // Check the argument types.
368 if (NumArgs > 3)
369 report_fatal_error("Invalid number of arguments of main() supplied");
370 if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
371 report_fatal_error("Invalid type for third argument of main() supplied");
372 if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
373 report_fatal_error("Invalid type for second argument of main() supplied");
374 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
375 report_fatal_error("Invalid type for first argument of main() supplied");
376 if (!FTy->getReturnType()->isIntegerTy() &&
377 !FTy->getReturnType()->isVoidTy())
378 report_fatal_error("Invalid return type of main() supplied");
379
Jeffrey Yasskinbfd38ab2010-03-26 00:59:12 +0000380 ArgvArray CArgv;
381 ArgvArray CEnv;
Chris Lattnerb1cad0b2004-08-16 01:05:35 +0000382 if (NumArgs) {
383 GVArgs.push_back(GVArgc); // Arg #0 = argc.
384 if (NumArgs > 1) {
Owen Anderson55f1c092009-08-13 21:58:54 +0000385 // Arg #1 = argv.
Jeffrey Yasskinbfd38ab2010-03-26 00:59:12 +0000386 GVArgs.push_back(PTOGV(CArgv.reset(Fn->getContext(), this, argv)));
Duncan Sands1202d1b2007-12-14 19:38:31 +0000387 assert(!isTargetNullPtr(this, GVTOP(GVArgs[1])) &&
Chris Lattnerb1cad0b2004-08-16 01:05:35 +0000388 "argv[0] was null after CreateArgv");
389 if (NumArgs > 2) {
390 std::vector<std::string> EnvVars;
391 for (unsigned i = 0; envp[i]; ++i)
392 EnvVars.push_back(envp[i]);
Owen Anderson55f1c092009-08-13 21:58:54 +0000393 // Arg #2 = envp.
Jeffrey Yasskinbfd38ab2010-03-26 00:59:12 +0000394 GVArgs.push_back(PTOGV(CEnv.reset(Fn->getContext(), this, EnvVars)));
Chris Lattnerb1cad0b2004-08-16 01:05:35 +0000395 }
396 }
397 }
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000398
Reid Spencer87aa65f2007-03-06 03:04:04 +0000399 return runFunction(Fn, GVArgs).IntVal.getZExtValue();
Chris Lattner5a0d4822003-12-26 06:50:30 +0000400}
401
Alp Toker322db9e2014-05-31 21:26:17 +0000402void EngineBuilder::InitEngine() {
403 WhichEngine = EngineKind::Either;
404 ErrorStr = nullptr;
405 OptLevel = CodeGenOpt::Default;
406 MCJMM = nullptr;
407 JMM = nullptr;
408 Options = TargetOptions();
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000409 AllocateGVsWithCode = false;
Alp Toker322db9e2014-05-31 21:26:17 +0000410 RelocModel = Reloc::Default;
411 CMModel = CodeModel::JITDefault;
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000412 UseMCJIT = false;
Alp Toker322db9e2014-05-31 21:26:17 +0000413
414// IR module verification is enabled by default in debug builds, and disabled
415// by default in release builds.
416#ifndef NDEBUG
417 VerifyModules = true;
418#else
419 VerifyModules = false;
420#endif
421}
422
Owen Andersonadd6f1d2012-03-23 17:40:56 +0000423ExecutionEngine *EngineBuilder::create(TargetMachine *TM) {
Ahmed Charles56440fd2014-03-06 05:51:42 +0000424 std::unique_ptr<TargetMachine> TheTM(TM); // Take ownership.
Benjamin Kramer25a3d812012-04-08 14:53:14 +0000425
Nick Lewyckya53414f2008-03-08 02:49:45 +0000426 // Make sure we can resolve symbols in the program as well. The zero arg
427 // to the function tells DynamicLibrary to load the program, not a library.
Craig Topper2617dcc2014-04-15 06:32:26 +0000428 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
429 return nullptr;
Nick Lewyckya53414f2008-03-08 02:49:45 +0000430
Filip Pizlo9bc53e82013-05-14 19:29:00 +0000431 assert(!(JMM && MCJMM));
432
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000433 // If the user specified a memory manager but didn't specify which engine to
434 // create, we assume they only want the JIT, and we fail if they only want
435 // the interpreter.
Filip Pizlo9bc53e82013-05-14 19:29:00 +0000436 if (JMM || MCJMM) {
Chris Lattner41fa2bd2009-09-23 01:46:04 +0000437 if (WhichEngine & EngineKind::JIT)
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000438 WhichEngine = EngineKind::JIT;
Chris Lattner41fa2bd2009-09-23 01:46:04 +0000439 else {
Chris Lattner8bcc6442009-09-23 02:03:49 +0000440 if (ErrorStr)
441 *ErrorStr = "Cannot create an interpreter with a memory manager.";
Craig Topper2617dcc2014-04-15 06:32:26 +0000442 return nullptr;
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000443 }
444 }
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000445
446 if (MCJMM && ! UseMCJIT) {
447 if (ErrorStr)
448 *ErrorStr =
449 "Cannot create a legacy JIT with a runtime dyld memory "
450 "manager.";
451 return nullptr;
452 }
Brian Gaeke4bd3bd52003-09-03 20:34:19 +0000453
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000454 // Unless the interpreter was explicitly selected or the JIT is not linked,
455 // try making a JIT.
Benjamin Kramer25a3d812012-04-08 14:53:14 +0000456 if ((WhichEngine & EngineKind::JIT) && TheTM) {
Dylan Noblesmith7f262462011-12-12 04:20:36 +0000457 Triple TT(M->getTargetTriple());
Owen Andersonadd6f1d2012-03-23 17:40:56 +0000458 if (!TM->getTarget().hasJIT()) {
459 errs() << "WARNING: This target JIT is not designed for the host"
460 << " you are running. If bad things happen, please choose"
461 << " a different -march switch.\n";
462 }
Dylan Noblesmith7f262462011-12-12 04:20:36 +0000463
Lang Hamesbc876012014-04-18 06:48:23 +0000464 ExecutionEngine *EE = nullptr;
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000465 if (UseMCJIT && ExecutionEngine::MCJITCtor)
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000466 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr,
467 MCJMM ? MCJMM : JMM, TheTM.release());
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000468 else if (ExecutionEngine::JITCtor)
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000469 EE = ExecutionEngine::JITCtor(std::move(M), ErrorStr, JMM,
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000470 AllocateGVsWithCode, TheTM.release());
Lang Hamesbc876012014-04-18 06:48:23 +0000471
472 if (EE) {
473 EE->setVerifyModules(VerifyModules);
474 return EE;
Chris Lattner41fa2bd2009-09-23 01:46:04 +0000475 }
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000476 }
477
478 // If we can't make a JIT and we didn't request one specifically, try making
479 // an interpreter instead.
Chris Lattner41fa2bd2009-09-23 01:46:04 +0000480 if (WhichEngine & EngineKind::Interpreter) {
481 if (ExecutionEngine::InterpCtor)
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000482 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
Chris Lattner8bcc6442009-09-23 02:03:49 +0000483 if (ErrorStr)
484 *ErrorStr = "Interpreter has not been linked in.";
Craig Topper2617dcc2014-04-15 06:32:26 +0000485 return nullptr;
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000486 }
Chris Lattner8bcc6442009-09-23 02:03:49 +0000487
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000488 if ((WhichEngine & EngineKind::JIT) && !ExecutionEngine::JITCtor &&
489 !ExecutionEngine::MCJITCtor) {
Chris Lattner8bcc6442009-09-23 02:03:49 +0000490 if (ErrorStr)
491 *ErrorStr = "JIT has not been linked in.";
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000492 }
493
Craig Topper2617dcc2014-04-15 06:32:26 +0000494 return nullptr;
Brian Gaeke4bd3bd52003-09-03 20:34:19 +0000495}
496
Chris Lattner996fe012002-12-24 00:01:05 +0000497void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke1678e852003-08-13 18:16:14 +0000498 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattner996fe012002-12-24 00:01:05 +0000499 return getPointerToFunction(F);
500
Zachary Turnerc04b8922014-06-20 21:07:14 +0000501 MutexGuard locked(lock);
Zachary Turner2f825df2014-06-16 20:54:28 +0000502 if (void *P = EEState.getGlobalAddressMap()[GV])
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000503 return P;
Jeff Cohen69e849012006-02-07 05:11:57 +0000504
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 Edwinfbcc6632009-07-14 16:55:14 +0000510 llvm_unreachable("Global hasn't had an address allocated yet!");
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000511
Zachary Turner2f825df2014-06-16 20:54:28 +0000512 return EEState.getGlobalAddressMap()[GV];
Chris Lattner996fe012002-12-24 00:01:05 +0000513}
514
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000515/// \brief Converts a Constant* into a GenericValue, including handling of
516/// ConstantExpr values.
Chris Lattner996fe012002-12-24 00:01:05 +0000517GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000518 // If its undefined, return the garbage.
Jay Foadbcbdbfb2010-01-15 08:32:58 +0000519 if (isa<UndefValue>(C)) {
520 GenericValue Result;
521 switch (C->getType()->getTypeID()) {
Nadav Rotembe79a7a2013-04-01 15:53:30 +0000522 default:
523 break;
Jay Foadbcbdbfb2010-01-15 08:32:58 +0000524 case Type::IntegerTyID:
525 case Type::X86_FP80TyID:
526 case Type::FP128TyID:
527 case Type::PPC_FP128TyID:
528 // Although the value is undefined, we still have to construct an APInt
529 // with the correct bit width.
530 Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0);
531 break;
Elena Demikhovsky8e97f012013-09-12 10:48:23 +0000532 case Type::StructTyID: {
533 // if the whole struct is 'undef' just reserve memory for the value.
534 if(StructType *STy = dyn_cast<StructType>(C->getType())) {
535 unsigned int elemNum = STy->getNumElements();
536 Result.AggregateVal.resize(elemNum);
537 for (unsigned int i = 0; i < elemNum; ++i) {
538 Type *ElemTy = STy->getElementType(i);
539 if (ElemTy->isIntegerTy())
540 Result.AggregateVal[i].IntVal =
541 APInt(ElemTy->getPrimitiveSizeInBits(), 0);
542 else if (ElemTy->isAggregateType()) {
543 const Constant *ElemUndef = UndefValue::get(ElemTy);
544 Result.AggregateVal[i] = getConstantValue(ElemUndef);
545 }
546 }
547 }
548 }
549 break;
Nadav Rotembe79a7a2013-04-01 15:53:30 +0000550 case Type::VectorTyID:
551 // if the whole vector is 'undef' just reserve memory for the value.
552 const VectorType* VTy = dyn_cast<VectorType>(C->getType());
553 const Type *ElemTy = VTy->getElementType();
554 unsigned int elemNum = VTy->getNumElements();
555 Result.AggregateVal.resize(elemNum);
556 if (ElemTy->isIntegerTy())
557 for (unsigned int i = 0; i < elemNum; ++i)
Elena Demikhovsky8e97f012013-09-12 10:48:23 +0000558 Result.AggregateVal[i].IntVal =
Nadav Rotembe79a7a2013-04-01 15:53:30 +0000559 APInt(ElemTy->getPrimitiveSizeInBits(), 0);
Jay Foadbcbdbfb2010-01-15 08:32:58 +0000560 break;
561 }
562 return Result;
563 }
Chris Lattner9de0d142003-04-23 19:01:49 +0000564
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000565 // Otherwise, if the value is a ConstantExpr...
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000566 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Reid Spencer4fd528f2007-03-06 22:23:15 +0000567 Constant *Op0 = CE->getOperand(0);
Chris Lattner9de0d142003-04-23 19:01:49 +0000568 switch (CE->getOpcode()) {
569 case Instruction::GetElementPtr: {
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000570 // Compute the index
Reid Spencer4fd528f2007-03-06 22:23:15 +0000571 GenericValue Result = getConstantValue(Op0);
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000572 APInt Offset(DL->getPointerSizeInBits(), 0);
573 cast<GEPOperator>(CE)->accumulateConstantOffset(*DL, Offset);
Misha Brukman835702a2005-04-21 22:36:52 +0000574
Reid Spencer87aa65f2007-03-06 03:04:04 +0000575 char* tmp = (char*) Result.PointerVal;
Nuno Lopesb6ad9822012-12-30 16:25:48 +0000576 Result = PTOGV(tmp + Offset.getSExtValue());
Chris Lattner9de0d142003-04-23 19:01:49 +0000577 return Result;
578 }
Reid Spencer4fd528f2007-03-06 22:23:15 +0000579 case Instruction::Trunc: {
580 GenericValue GV = getConstantValue(Op0);
581 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
582 GV.IntVal = GV.IntVal.trunc(BitWidth);
583 return GV;
584 }
585 case Instruction::ZExt: {
586 GenericValue GV = getConstantValue(Op0);
587 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
588 GV.IntVal = GV.IntVal.zext(BitWidth);
589 return GV;
590 }
591 case Instruction::SExt: {
592 GenericValue GV = getConstantValue(Op0);
593 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
594 GV.IntVal = GV.IntVal.sext(BitWidth);
595 return GV;
596 }
597 case Instruction::FPTrunc: {
Dale Johannesena1336cf2007-09-17 18:44:13 +0000598 // FIXME long double
Reid Spencer4fd528f2007-03-06 22:23:15 +0000599 GenericValue GV = getConstantValue(Op0);
600 GV.FloatVal = float(GV.DoubleVal);
601 return GV;
602 }
603 case Instruction::FPExt:{
Dale Johannesena1336cf2007-09-17 18:44:13 +0000604 // FIXME long double
Reid Spencer4fd528f2007-03-06 22:23:15 +0000605 GenericValue GV = getConstantValue(Op0);
606 GV.DoubleVal = double(GV.FloatVal);
607 return GV;
608 }
609 case Instruction::UIToFP: {
610 GenericValue GV = getConstantValue(Op0);
Chris Lattnerfdd87902009-10-05 05:54:46 +0000611 if (CE->getType()->isFloatTy())
Reid Spencer4fd528f2007-03-06 22:23:15 +0000612 GV.FloatVal = float(GV.IntVal.roundToDouble());
Chris Lattnerfdd87902009-10-05 05:54:46 +0000613 else if (CE->getType()->isDoubleTy())
Reid Spencer4fd528f2007-03-06 22:23:15 +0000614 GV.DoubleVal = GV.IntVal.roundToDouble();
Chris Lattnerfdd87902009-10-05 05:54:46 +0000615 else if (CE->getType()->isX86_FP80Ty()) {
Benjamin Kramer31920b02010-12-04 15:28:22 +0000616 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000617 (void)apf.convertFromAPInt(GV.IntVal,
Dan Gohmanca24fd92008-02-29 01:27:13 +0000618 false,
619 APFloat::rmNearestTiesToEven);
Dale Johannesen54306fe2008-10-09 18:53:47 +0000620 GV.IntVal = apf.bitcastToAPInt();
Dale Johannesena1336cf2007-09-17 18:44:13 +0000621 }
Reid Spencer4fd528f2007-03-06 22:23:15 +0000622 return GV;
623 }
624 case Instruction::SIToFP: {
625 GenericValue GV = getConstantValue(Op0);
Chris Lattnerfdd87902009-10-05 05:54:46 +0000626 if (CE->getType()->isFloatTy())
Reid Spencer4fd528f2007-03-06 22:23:15 +0000627 GV.FloatVal = float(GV.IntVal.signedRoundToDouble());
Chris Lattnerfdd87902009-10-05 05:54:46 +0000628 else if (CE->getType()->isDoubleTy())
Reid Spencer4fd528f2007-03-06 22:23:15 +0000629 GV.DoubleVal = GV.IntVal.signedRoundToDouble();
Chris Lattnerfdd87902009-10-05 05:54:46 +0000630 else if (CE->getType()->isX86_FP80Ty()) {
Benjamin Kramer31920b02010-12-04 15:28:22 +0000631 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000632 (void)apf.convertFromAPInt(GV.IntVal,
Dan Gohmanca24fd92008-02-29 01:27:13 +0000633 true,
634 APFloat::rmNearestTiesToEven);
Dale Johannesen54306fe2008-10-09 18:53:47 +0000635 GV.IntVal = apf.bitcastToAPInt();
Dale Johannesena1336cf2007-09-17 18:44:13 +0000636 }
Reid Spencer4fd528f2007-03-06 22:23:15 +0000637 return GV;
638 }
639 case Instruction::FPToUI: // double->APInt conversion handles sign
640 case Instruction::FPToSI: {
641 GenericValue GV = getConstantValue(Op0);
642 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
Chris Lattnerfdd87902009-10-05 05:54:46 +0000643 if (Op0->getType()->isFloatTy())
Reid Spencer4fd528f2007-03-06 22:23:15 +0000644 GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth);
Chris Lattnerfdd87902009-10-05 05:54:46 +0000645 else if (Op0->getType()->isDoubleTy())
Reid Spencer4fd528f2007-03-06 22:23:15 +0000646 GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth);
Chris Lattnerfdd87902009-10-05 05:54:46 +0000647 else if (Op0->getType()->isX86_FP80Ty()) {
Tim Northover29178a32013-01-22 09:46:31 +0000648 APFloat apf = APFloat(APFloat::x87DoubleExtended, GV.IntVal);
Dale Johannesena1336cf2007-09-17 18:44:13 +0000649 uint64_t v;
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000650 bool ignored;
Dale Johannesena1336cf2007-09-17 18:44:13 +0000651 (void)apf.convertToInteger(&v, BitWidth,
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000652 CE->getOpcode()==Instruction::FPToSI,
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000653 APFloat::rmTowardZero, &ignored);
Dale Johannesena1336cf2007-09-17 18:44:13 +0000654 GV.IntVal = v; // endian?
655 }
Reid Spencer4fd528f2007-03-06 22:23:15 +0000656 return GV;
657 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000658 case Instruction::PtrToInt: {
Reid Spencer4fd528f2007-03-06 22:23:15 +0000659 GenericValue GV = getConstantValue(Op0);
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000660 uint32_t PtrWidth = DL->getTypeSizeInBits(Op0->getType());
Eli Friedmanfc1f2cd2012-10-30 22:21:55 +0000661 assert(PtrWidth <= 64 && "Bad pointer width");
Reid Spencer4fd528f2007-03-06 22:23:15 +0000662 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000663 uint32_t IntWidth = DL->getTypeSizeInBits(CE->getType());
Eli Friedmanfc1f2cd2012-10-30 22:21:55 +0000664 GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth);
Reid Spencer4fd528f2007-03-06 22:23:15 +0000665 return GV;
666 }
667 case Instruction::IntToPtr: {
668 GenericValue GV = getConstantValue(Op0);
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000669 uint32_t PtrWidth = DL->getTypeSizeInBits(CE->getType());
Eli Friedmanfc1f2cd2012-10-30 22:21:55 +0000670 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
Reid Spencer4fd528f2007-03-06 22:23:15 +0000671 assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width");
672 GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue()));
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000673 return GV;
674 }
675 case Instruction::BitCast: {
Reid Spencer4fd528f2007-03-06 22:23:15 +0000676 GenericValue GV = getConstantValue(Op0);
Chris Lattner229907c2011-07-18 04:54:35 +0000677 Type* DestTy = CE->getType();
Reid Spencer4fd528f2007-03-06 22:23:15 +0000678 switch (Op0->getType()->getTypeID()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000679 default: llvm_unreachable("Invalid bitcast operand");
Reid Spencer4fd528f2007-03-06 22:23:15 +0000680 case Type::IntegerTyID:
Duncan Sands9dff9be2010-02-15 16:12:20 +0000681 assert(DestTy->isFloatingPointTy() && "invalid bitcast");
Chris Lattnerfdd87902009-10-05 05:54:46 +0000682 if (DestTy->isFloatTy())
Reid Spencer4fd528f2007-03-06 22:23:15 +0000683 GV.FloatVal = GV.IntVal.bitsToFloat();
Chris Lattnerfdd87902009-10-05 05:54:46 +0000684 else if (DestTy->isDoubleTy())
Reid Spencer4fd528f2007-03-06 22:23:15 +0000685 GV.DoubleVal = GV.IntVal.bitsToDouble();
686 break;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000687 case Type::FloatTyID:
Duncan Sands9dff9be2010-02-15 16:12:20 +0000688 assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
Jay Foad3447fb02010-11-28 21:04:48 +0000689 GV.IntVal = APInt::floatToBits(GV.FloatVal);
Reid Spencer4fd528f2007-03-06 22:23:15 +0000690 break;
691 case Type::DoubleTyID:
Duncan Sands9dff9be2010-02-15 16:12:20 +0000692 assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
Jay Foad3447fb02010-11-28 21:04:48 +0000693 GV.IntVal = APInt::doubleToBits(GV.DoubleVal);
Reid Spencer4fd528f2007-03-06 22:23:15 +0000694 break;
695 case Type::PointerTyID:
Duncan Sands19d0b472010-02-16 11:11:14 +0000696 assert(DestTy->isPointerTy() && "Invalid bitcast");
Reid Spencer4fd528f2007-03-06 22:23:15 +0000697 break; // getConstantValue(Op0) above already converted it
698 }
699 return GV;
Chris Lattner9de0d142003-04-23 19:01:49 +0000700 }
Chris Lattner68cbcc32003-05-14 17:51:49 +0000701 case Instruction::Add:
Dan Gohmana5b96452009-06-04 22:49:04 +0000702 case Instruction::FAdd:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000703 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +0000704 case Instruction::FSub:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000705 case Instruction::Mul:
Dan Gohmana5b96452009-06-04 22:49:04 +0000706 case Instruction::FMul:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000707 case Instruction::UDiv:
708 case Instruction::SDiv:
709 case Instruction::URem:
710 case Instruction::SRem:
711 case Instruction::And:
712 case Instruction::Or:
713 case Instruction::Xor: {
714 GenericValue LHS = getConstantValue(Op0);
715 GenericValue RHS = getConstantValue(CE->getOperand(1));
716 GenericValue GV;
Chris Lattnerc4e6bb52004-07-11 08:01:11 +0000717 switch (CE->getOperand(0)->getType()->getTypeID()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000718 default: llvm_unreachable("Bad add type!");
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000719 case Type::IntegerTyID:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000720 switch (CE->getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000721 default: llvm_unreachable("Invalid integer opcode");
Reid Spencer4fd528f2007-03-06 22:23:15 +0000722 case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
723 case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
724 case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
725 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
726 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
727 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
728 case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
729 case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break;
730 case Instruction::Or: GV.IntVal = LHS.IntVal | RHS.IntVal; break;
731 case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break;
732 }
Chris Lattnerc4e6bb52004-07-11 08:01:11 +0000733 break;
734 case Type::FloatTyID:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000735 switch (CE->getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000736 default: llvm_unreachable("Invalid float opcode");
Dan Gohmana5b96452009-06-04 22:49:04 +0000737 case Instruction::FAdd:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000738 GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break;
Dan Gohmana5b96452009-06-04 22:49:04 +0000739 case Instruction::FSub:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000740 GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break;
Dan Gohmana5b96452009-06-04 22:49:04 +0000741 case Instruction::FMul:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000742 GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000743 case Instruction::FDiv:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000744 GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000745 case Instruction::FRem:
Chris Lattner93cd0f1c2010-05-15 17:10:24 +0000746 GV.FloatVal = std::fmod(LHS.FloatVal,RHS.FloatVal); break;
Reid Spencer4fd528f2007-03-06 22:23:15 +0000747 }
Chris Lattnerc4e6bb52004-07-11 08:01:11 +0000748 break;
749 case Type::DoubleTyID:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000750 switch (CE->getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000751 default: llvm_unreachable("Invalid double opcode");
Dan Gohmana5b96452009-06-04 22:49:04 +0000752 case Instruction::FAdd:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000753 GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break;
Dan Gohmana5b96452009-06-04 22:49:04 +0000754 case Instruction::FSub:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000755 GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break;
Dan Gohmana5b96452009-06-04 22:49:04 +0000756 case Instruction::FMul:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000757 GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000758 case Instruction::FDiv:
Reid Spencer4fd528f2007-03-06 22:23:15 +0000759 GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000760 case Instruction::FRem:
Chris Lattner93cd0f1c2010-05-15 17:10:24 +0000761 GV.DoubleVal = std::fmod(LHS.DoubleVal,RHS.DoubleVal); break;
Reid Spencer4fd528f2007-03-06 22:23:15 +0000762 }
Chris Lattnerc4e6bb52004-07-11 08:01:11 +0000763 break;
Dale Johannesena1336cf2007-09-17 18:44:13 +0000764 case Type::X86_FP80TyID:
765 case Type::PPC_FP128TyID:
766 case Type::FP128TyID: {
Tim Northover29178a32013-01-22 09:46:31 +0000767 const fltSemantics &Sem = CE->getOperand(0)->getType()->getFltSemantics();
768 APFloat apfLHS = APFloat(Sem, LHS.IntVal);
Dale Johannesena1336cf2007-09-17 18:44:13 +0000769 switch (CE->getOpcode()) {
Daniel Dunbare4f47432010-11-13 00:55:42 +0000770 default: llvm_unreachable("Invalid long double opcode");
Dan Gohmana5b96452009-06-04 22:49:04 +0000771 case Instruction::FAdd:
Tim Northover29178a32013-01-22 09:46:31 +0000772 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen54306fe2008-10-09 18:53:47 +0000773 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesena1336cf2007-09-17 18:44:13 +0000774 break;
Dan Gohmana5b96452009-06-04 22:49:04 +0000775 case Instruction::FSub:
Tim Northover29178a32013-01-22 09:46:31 +0000776 apfLHS.subtract(APFloat(Sem, RHS.IntVal),
777 APFloat::rmNearestTiesToEven);
Dale Johannesen54306fe2008-10-09 18:53:47 +0000778 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesena1336cf2007-09-17 18:44:13 +0000779 break;
Dan Gohmana5b96452009-06-04 22:49:04 +0000780 case Instruction::FMul:
Tim Northover29178a32013-01-22 09:46:31 +0000781 apfLHS.multiply(APFloat(Sem, RHS.IntVal),
782 APFloat::rmNearestTiesToEven);
Dale Johannesen54306fe2008-10-09 18:53:47 +0000783 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesena1336cf2007-09-17 18:44:13 +0000784 break;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000785 case Instruction::FDiv:
Tim Northover29178a32013-01-22 09:46:31 +0000786 apfLHS.divide(APFloat(Sem, RHS.IntVal),
787 APFloat::rmNearestTiesToEven);
Dale Johannesen54306fe2008-10-09 18:53:47 +0000788 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesena1336cf2007-09-17 18:44:13 +0000789 break;
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000790 case Instruction::FRem:
Tim Northover29178a32013-01-22 09:46:31 +0000791 apfLHS.mod(APFloat(Sem, RHS.IntVal),
792 APFloat::rmNearestTiesToEven);
Dale Johannesen54306fe2008-10-09 18:53:47 +0000793 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesena1336cf2007-09-17 18:44:13 +0000794 break;
795 }
796 }
797 break;
Chris Lattnerc4e6bb52004-07-11 08:01:11 +0000798 }
Reid Spencer4fd528f2007-03-06 22:23:15 +0000799 return GV;
800 }
Chris Lattner68cbcc32003-05-14 17:51:49 +0000801 default:
802 break;
803 }
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000804
805 SmallString<256> Msg;
806 raw_svector_ostream OS(Msg);
807 OS << "ConstantExpr not handled: " << *CE;
808 report_fatal_error(OS.str());
Chris Lattner68cbcc32003-05-14 17:51:49 +0000809 }
Misha Brukman835702a2005-04-21 22:36:52 +0000810
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000811 // Otherwise, we have a simple constant.
Reid Spencer4fd528f2007-03-06 22:23:15 +0000812 GenericValue Result;
Chris Lattner6b727592004-06-17 18:19:28 +0000813 switch (C->getType()->getTypeID()) {
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000814 case Type::FloatTyID:
815 Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000816 break;
Reid Spencer87aa65f2007-03-06 03:04:04 +0000817 case Type::DoubleTyID:
Dale Johannesenbed9dc42007-09-06 18:13:44 +0000818 Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble();
Reid Spencer87aa65f2007-03-06 03:04:04 +0000819 break;
Dale Johannesena1336cf2007-09-17 18:44:13 +0000820 case Type::X86_FP80TyID:
821 case Type::FP128TyID:
822 case Type::PPC_FP128TyID:
Dale Johannesen54306fe2008-10-09 18:53:47 +0000823 Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt();
Dale Johannesena1336cf2007-09-17 18:44:13 +0000824 break;
Reid Spencer87aa65f2007-03-06 03:04:04 +0000825 case Type::IntegerTyID:
826 Result.IntVal = cast<ConstantInt>(C)->getValue();
827 break;
Chris Lattner996fe012002-12-24 00:01:05 +0000828 case Type::PointerTyID:
Reid Spencer6a0fd732004-07-18 00:41:27 +0000829 if (isa<ConstantPointerNull>(C))
Craig Topper2617dcc2014-04-15 06:32:26 +0000830 Result.PointerVal = nullptr;
Reid Spencer6a0fd732004-07-18 00:41:27 +0000831 else if (const Function *F = dyn_cast<Function>(C))
832 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
Chris Lattner0c778f72009-10-29 05:26:09 +0000833 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
Reid Spencer6a0fd732004-07-18 00:41:27 +0000834 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000835 else if (const BlockAddress *BA = dyn_cast<BlockAddress>(C))
836 Result = PTOGV(getPointerToBasicBlock(const_cast<BasicBlock*>(
837 BA->getBasicBlock())));
Reid Spencer6a0fd732004-07-18 00:41:27 +0000838 else
Torok Edwinfbcc6632009-07-14 16:55:14 +0000839 llvm_unreachable("Unknown constant pointer type!");
Chris Lattner996fe012002-12-24 00:01:05 +0000840 break;
Nadav Rotembe79a7a2013-04-01 15:53:30 +0000841 case Type::VectorTyID: {
842 unsigned elemNum;
843 Type* ElemTy;
844 const ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C);
845 const ConstantVector *CV = dyn_cast<ConstantVector>(C);
846 const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(C);
847
848 if (CDV) {
849 elemNum = CDV->getNumElements();
850 ElemTy = CDV->getElementType();
851 } else if (CV || CAZ) {
852 VectorType* VTy = dyn_cast<VectorType>(C->getType());
853 elemNum = VTy->getNumElements();
854 ElemTy = VTy->getElementType();
855 } else {
856 llvm_unreachable("Unknown constant vector type!");
857 }
858
859 Result.AggregateVal.resize(elemNum);
860 // Check if vector holds floats.
861 if(ElemTy->isFloatTy()) {
862 if (CAZ) {
863 GenericValue floatZero;
864 floatZero.FloatVal = 0.f;
865 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(),
866 floatZero);
867 break;
868 }
869 if(CV) {
870 for (unsigned i = 0; i < elemNum; ++i)
871 if (!isa<UndefValue>(CV->getOperand(i)))
872 Result.AggregateVal[i].FloatVal = cast<ConstantFP>(
873 CV->getOperand(i))->getValueAPF().convertToFloat();
874 break;
875 }
876 if(CDV)
877 for (unsigned i = 0; i < elemNum; ++i)
878 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i);
879
880 break;
881 }
882 // Check if vector holds doubles.
883 if (ElemTy->isDoubleTy()) {
884 if (CAZ) {
885 GenericValue doubleZero;
886 doubleZero.DoubleVal = 0.0;
887 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(),
888 doubleZero);
889 break;
890 }
891 if(CV) {
892 for (unsigned i = 0; i < elemNum; ++i)
893 if (!isa<UndefValue>(CV->getOperand(i)))
894 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>(
895 CV->getOperand(i))->getValueAPF().convertToDouble();
896 break;
897 }
898 if(CDV)
899 for (unsigned i = 0; i < elemNum; ++i)
900 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i);
901
902 break;
903 }
904 // Check if vector holds integers.
905 if (ElemTy->isIntegerTy()) {
906 if (CAZ) {
907 GenericValue intZero;
908 intZero.IntVal = APInt(ElemTy->getScalarSizeInBits(), 0ull);
909 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(),
910 intZero);
911 break;
912 }
913 if(CV) {
914 for (unsigned i = 0; i < elemNum; ++i)
915 if (!isa<UndefValue>(CV->getOperand(i)))
916 Result.AggregateVal[i].IntVal = cast<ConstantInt>(
917 CV->getOperand(i))->getValue();
918 else {
919 Result.AggregateVal[i].IntVal =
920 APInt(CV->getOperand(i)->getType()->getPrimitiveSizeInBits(), 0);
921 }
922 break;
923 }
924 if(CDV)
925 for (unsigned i = 0; i < elemNum; ++i)
926 Result.AggregateVal[i].IntVal = APInt(
927 CDV->getElementType()->getPrimitiveSizeInBits(),
928 CDV->getElementAsInteger(i));
929
930 break;
931 }
932 llvm_unreachable("Unknown constant pointer type!");
933 }
934 break;
935
Chris Lattner996fe012002-12-24 00:01:05 +0000936 default:
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000937 SmallString<256> Msg;
938 raw_svector_ostream OS(Msg);
939 OS << "ERROR: Constant unimplemented for type: " << *C->getType();
940 report_fatal_error(OS.str());
Chris Lattner996fe012002-12-24 00:01:05 +0000941 }
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000942
Chris Lattner996fe012002-12-24 00:01:05 +0000943 return Result;
944}
945
Duncan Sands1202d1b2007-12-14 19:38:31 +0000946/// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
947/// with the integer held in IntVal.
948static void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst,
949 unsigned StoreBytes) {
950 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
Roman Divackyad06cee2012-09-05 22:26:57 +0000951 const uint8_t *Src = (const uint8_t *)IntVal.getRawData();
Duncan Sands1202d1b2007-12-14 19:38:31 +0000952
Rafael Espindola41cb64f2013-04-15 14:44:24 +0000953 if (sys::IsLittleEndianHost) {
Duncan Sands1202d1b2007-12-14 19:38:31 +0000954 // Little-endian host - the source is ordered from LSB to MSB. Order the
955 // destination from LSB to MSB: Do a straight copy.
956 memcpy(Dst, Src, StoreBytes);
Daniel Dunbar868e3f02010-11-13 02:48:57 +0000957 } else {
Duncan Sands1202d1b2007-12-14 19:38:31 +0000958 // Big-endian host - the source is an array of 64 bit words ordered from
959 // LSW to MSW. Each word is ordered from MSB to LSB. Order the destination
960 // from MSB to LSB: Reverse the word order, but not the bytes in a word.
961 while (StoreBytes > sizeof(uint64_t)) {
962 StoreBytes -= sizeof(uint64_t);
963 // May not be aligned so use memcpy.
964 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
965 Src += sizeof(uint64_t);
966 }
967
968 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
969 }
970}
971
Evan Cheng09053e62008-11-04 06:10:31 +0000972void ExecutionEngine::StoreValueToMemory(const GenericValue &Val,
Chris Lattner229907c2011-07-18 04:54:35 +0000973 GenericValue *Ptr, Type *Ty) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000974 const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty);
Duncan Sands1202d1b2007-12-14 19:38:31 +0000975
Reid Spencer87aa65f2007-03-06 03:04:04 +0000976 switch (Ty->getTypeID()) {
Nadav Rotembe79a7a2013-04-01 15:53:30 +0000977 default:
978 dbgs() << "Cannot store value of type " << *Ty << "!\n";
979 break;
Duncan Sands1202d1b2007-12-14 19:38:31 +0000980 case Type::IntegerTyID:
981 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
Reid Spencer87aa65f2007-03-06 03:04:04 +0000982 break;
Reid Spencer87aa65f2007-03-06 03:04:04 +0000983 case Type::FloatTyID:
984 *((float*)Ptr) = Val.FloatVal;
985 break;
986 case Type::DoubleTyID:
987 *((double*)Ptr) = Val.DoubleVal;
988 break;
Dale Johannesen4d7e4ee2009-03-24 18:16:17 +0000989 case Type::X86_FP80TyID:
990 memcpy(Ptr, Val.IntVal.getRawData(), 10);
991 break;
Duncan Sands1202d1b2007-12-14 19:38:31 +0000992 case Type::PointerTyID:
993 // Ensure 64 bit target pointers are fully initialized on 32 bit hosts.
994 if (StoreBytes != sizeof(PointerTy))
Chandler Carruth93da3c82011-04-28 08:37:18 +0000995 memset(&(Ptr->PointerVal), 0, StoreBytes);
Duncan Sands1202d1b2007-12-14 19:38:31 +0000996
Reid Spencer87aa65f2007-03-06 03:04:04 +0000997 *((PointerTy*)Ptr) = Val.PointerVal;
998 break;
Nadav Rotembe79a7a2013-04-01 15:53:30 +0000999 case Type::VectorTyID:
1000 for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) {
1001 if (cast<VectorType>(Ty)->getElementType()->isDoubleTy())
1002 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal;
1003 if (cast<VectorType>(Ty)->getElementType()->isFloatTy())
1004 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal;
1005 if (cast<VectorType>(Ty)->getElementType()->isIntegerTy()) {
1006 unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8;
1007 StoreIntToMemory(Val.AggregateVal[i].IntVal,
1008 (uint8_t*)Ptr + numOfBytes*i, numOfBytes);
1009 }
1010 }
1011 break;
Chris Lattner996fe012002-12-24 00:01:05 +00001012 }
Duncan Sands1202d1b2007-12-14 19:38:31 +00001013
Rafael Espindola41cb64f2013-04-15 14:44:24 +00001014 if (sys::IsLittleEndianHost != getDataLayout()->isLittleEndian())
Duncan Sands1202d1b2007-12-14 19:38:31 +00001015 // Host and target are different endian - reverse the stored bytes.
1016 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr);
1017}
1018
1019/// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
1020/// from Src into IntVal, which is assumed to be wide enough and to hold zero.
1021static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) {
1022 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
David Greene82b63572013-01-14 21:04:45 +00001023 uint8_t *Dst = reinterpret_cast<uint8_t *>(
1024 const_cast<uint64_t *>(IntVal.getRawData()));
Duncan Sands1202d1b2007-12-14 19:38:31 +00001025
Rafael Espindola41cb64f2013-04-15 14:44:24 +00001026 if (sys::IsLittleEndianHost)
Duncan Sands1202d1b2007-12-14 19:38:31 +00001027 // Little-endian host - the destination must be ordered from LSB to MSB.
1028 // The source is ordered from LSB to MSB: Do a straight copy.
1029 memcpy(Dst, Src, LoadBytes);
1030 else {
1031 // Big-endian - the destination is an array of 64 bit words ordered from
1032 // LSW to MSW. Each word must be ordered from MSB to LSB. The source is
1033 // ordered from MSB to LSB: Reverse the word order, but not the bytes in
1034 // a word.
1035 while (LoadBytes > sizeof(uint64_t)) {
1036 LoadBytes -= sizeof(uint64_t);
1037 // May not be aligned so use memcpy.
1038 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
1039 Dst += sizeof(uint64_t);
1040 }
1041
1042 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
1043 }
Chris Lattner996fe012002-12-24 00:01:05 +00001044}
1045
Misha Brukman857c21b2003-10-10 17:45:12 +00001046/// FIXME: document
1047///
Duncan Sands1202d1b2007-12-14 19:38:31 +00001048void ExecutionEngine::LoadValueFromMemory(GenericValue &Result,
Duncan Sandscd4a6be2008-03-10 16:38:37 +00001049 GenericValue *Ptr,
Chris Lattner229907c2011-07-18 04:54:35 +00001050 Type *Ty) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001051 const unsigned LoadBytes = getDataLayout()->getTypeStoreSize(Ty);
Duncan Sands5c65cb42007-12-10 17:43:13 +00001052
Duncan Sands1202d1b2007-12-14 19:38:31 +00001053 switch (Ty->getTypeID()) {
1054 case Type::IntegerTyID:
1055 // An APInt with all words initially zero.
1056 Result.IntVal = APInt(cast<IntegerType>(Ty)->getBitWidth(), 0);
1057 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes);
1058 break;
Reid Spencer87aa65f2007-03-06 03:04:04 +00001059 case Type::FloatTyID:
1060 Result.FloatVal = *((float*)Ptr);
1061 break;
1062 case Type::DoubleTyID:
Duncan Sands1202d1b2007-12-14 19:38:31 +00001063 Result.DoubleVal = *((double*)Ptr);
Reid Spencer87aa65f2007-03-06 03:04:04 +00001064 break;
Duncan Sands1202d1b2007-12-14 19:38:31 +00001065 case Type::PointerTyID:
Reid Spencer87aa65f2007-03-06 03:04:04 +00001066 Result.PointerVal = *((PointerTy*)Ptr);
1067 break;
Dale Johannesena1336cf2007-09-17 18:44:13 +00001068 case Type::X86_FP80TyID: {
1069 // This is endian dependent, but it will only work on x86 anyway.
Duncan Sands26d65392007-12-15 17:37:40 +00001070 // FIXME: Will not trap if loading a signaling NaN.
Dale Johannesen4d7e4ee2009-03-24 18:16:17 +00001071 uint64_t y[2];
1072 memcpy(y, Ptr, 10);
Jeffrey Yasskin7a162882011-07-18 21:45:40 +00001073 Result.IntVal = APInt(80, y);
Dale Johannesena1336cf2007-09-17 18:44:13 +00001074 break;
1075 }
Nadav Rotembe79a7a2013-04-01 15:53:30 +00001076 case Type::VectorTyID: {
1077 const VectorType *VT = cast<VectorType>(Ty);
1078 const Type *ElemT = VT->getElementType();
1079 const unsigned numElems = VT->getNumElements();
1080 if (ElemT->isFloatTy()) {
1081 Result.AggregateVal.resize(numElems);
1082 for (unsigned i = 0; i < numElems; ++i)
1083 Result.AggregateVal[i].FloatVal = *((float*)Ptr+i);
1084 }
1085 if (ElemT->isDoubleTy()) {
1086 Result.AggregateVal.resize(numElems);
1087 for (unsigned i = 0; i < numElems; ++i)
1088 Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i);
1089 }
1090 if (ElemT->isIntegerTy()) {
1091 GenericValue intZero;
1092 const unsigned elemBitWidth = cast<IntegerType>(ElemT)->getBitWidth();
1093 intZero.IntVal = APInt(elemBitWidth, 0);
1094 Result.AggregateVal.resize(numElems, intZero);
1095 for (unsigned i = 0; i < numElems; ++i)
1096 LoadIntFromMemory(Result.AggregateVal[i].IntVal,
1097 (uint8_t*)Ptr+((elemBitWidth+7)/8)*i, (elemBitWidth+7)/8);
1098 }
1099 break;
1100 }
Reid Spencer87aa65f2007-03-06 03:04:04 +00001101 default:
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001102 SmallString<256> Msg;
1103 raw_svector_ostream OS(Msg);
1104 OS << "Cannot load value of type " << *Ty << "!";
1105 report_fatal_error(OS.str());
Chris Lattner7f389e82003-05-08 16:52:16 +00001106 }
Chris Lattner7f389e82003-05-08 16:52:16 +00001107}
1108
Chris Lattner996fe012002-12-24 00:01:05 +00001109void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
David Greene0967d2d2010-01-05 01:27:39 +00001110 DEBUG(dbgs() << "JIT: Initializing " << Addr << " ");
Dale Johannesenb086d382008-08-07 01:30:15 +00001111 DEBUG(Init->dump());
Chris Lattner00245f42012-01-24 13:41:11 +00001112 if (isa<UndefValue>(Init))
Chris Lattner61753bf2004-10-16 18:19:26 +00001113 return;
Chris Lattner00245f42012-01-24 13:41:11 +00001114
1115 if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
Robert Bocchino69d62132006-01-20 18:18:40 +00001116 unsigned ElementSize =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001117 getDataLayout()->getTypeAllocSize(CP->getType()->getElementType());
Robert Bocchino69d62132006-01-20 18:18:40 +00001118 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
1119 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
1120 return;
Chris Lattner00245f42012-01-24 13:41:11 +00001121 }
1122
1123 if (isa<ConstantAggregateZero>(Init)) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001124 memset(Addr, 0, (size_t)getDataLayout()->getTypeAllocSize(Init->getType()));
Chris Lattner1dd86b12008-02-15 00:57:28 +00001125 return;
Chris Lattner00245f42012-01-24 13:41:11 +00001126 }
1127
1128 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(Init)) {
Dan Gohman69ddfbf2008-05-20 03:20:09 +00001129 unsigned ElementSize =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001130 getDataLayout()->getTypeAllocSize(CPA->getType()->getElementType());
Dan Gohman69ddfbf2008-05-20 03:20:09 +00001131 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
1132 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
1133 return;
Chris Lattner00245f42012-01-24 13:41:11 +00001134 }
1135
1136 if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(Init)) {
Dan Gohman69ddfbf2008-05-20 03:20:09 +00001137 const StructLayout *SL =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001138 getDataLayout()->getStructLayout(cast<StructType>(CPS->getType()));
Dan Gohman69ddfbf2008-05-20 03:20:09 +00001139 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
1140 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i));
1141 return;
Chris Lattner00245f42012-01-24 13:41:11 +00001142 }
1143
1144 if (const ConstantDataSequential *CDS =
1145 dyn_cast<ConstantDataSequential>(Init)) {
1146 // CDS is already laid out in host memory order.
1147 StringRef Data = CDS->getRawDataValues();
1148 memcpy(Addr, Data.data(), Data.size());
1149 return;
1150 }
1151
1152 if (Init->getType()->isFirstClassType()) {
Chris Lattner996fe012002-12-24 00:01:05 +00001153 GenericValue Val = getConstantValue(Init);
1154 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
1155 return;
1156 }
1157
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001158 DEBUG(dbgs() << "Bad Type: " << *Init->getType() << "\n");
Torok Edwinfbcc6632009-07-14 16:55:14 +00001159 llvm_unreachable("Unknown constant type to initialize memory with!");
Chris Lattner996fe012002-12-24 00:01:05 +00001160}
1161
Chris Lattner996fe012002-12-24 00:01:05 +00001162/// EmitGlobals - Emit all of the global variables to memory, storing their
1163/// addresses into GlobalAddress. This must make sure to copy the contents of
1164/// their initializers into the memory.
Chris Lattner996fe012002-12-24 00:01:05 +00001165void ExecutionEngine::emitGlobals() {
Chris Lattner996fe012002-12-24 00:01:05 +00001166 // Loop over all of the global variables in the program, allocating the memory
Chris Lattner0621cae2006-08-16 01:24:12 +00001167 // to hold them. If there is more than one module, do a prepass over globals
1168 // to figure out how the different modules should link together.
Chris Lattner229907c2011-07-18 04:54:35 +00001169 std::map<std::pair<std::string, Type*>,
Chris Lattner0621cae2006-08-16 01:24:12 +00001170 const GlobalValue*> LinkedGlobalsMap;
Misha Brukman835702a2005-04-21 22:36:52 +00001171
Chris Lattner0621cae2006-08-16 01:24:12 +00001172 if (Modules.size() != 1) {
1173 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
Jeffrey Yasskin091217b2010-01-27 20:34:15 +00001174 Module &M = *Modules[m];
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001175 for (const auto &GV : M.globals()) {
1176 if (GV.hasLocalLinkage() || GV.isDeclaration() ||
1177 GV.hasAppendingLinkage() || !GV.hasName())
Chris Lattner0621cae2006-08-16 01:24:12 +00001178 continue;// Ignore external globals and globals with internal linkage.
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001179
1180 const GlobalValue *&GVEntry =
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001181 LinkedGlobalsMap[std::make_pair(GV.getName(), GV.getType())];
Chris Lattner0621cae2006-08-16 01:24:12 +00001182
1183 // If this is the first time we've seen this global, it is the canonical
1184 // version.
1185 if (!GVEntry) {
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001186 GVEntry = &GV;
Chris Lattner0621cae2006-08-16 01:24:12 +00001187 continue;
1188 }
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001189
Chris Lattner0621cae2006-08-16 01:24:12 +00001190 // If the existing global is strong, never replace it.
Nico Rieck7157bb72014-01-14 15:22:47 +00001191 if (GVEntry->hasExternalLinkage())
Chris Lattner0621cae2006-08-16 01:24:12 +00001192 continue;
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001193
Chris Lattner0621cae2006-08-16 01:24:12 +00001194 // Otherwise, we know it's linkonce/weak, replace it if this is a strong
Dale Johannesence4396b2008-05-14 20:12:51 +00001195 // symbol. FIXME is this right for common?
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001196 if (GV.hasExternalLinkage() || GVEntry->hasExternalWeakLinkage())
1197 GVEntry = &GV;
Chris Lattner9de0d142003-04-23 19:01:49 +00001198 }
Chris Lattner996fe012002-12-24 00:01:05 +00001199 }
Chris Lattner0621cae2006-08-16 01:24:12 +00001200 }
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001201
Chris Lattner0621cae2006-08-16 01:24:12 +00001202 std::vector<const GlobalValue*> NonCanonicalGlobals;
1203 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
Jeffrey Yasskin091217b2010-01-27 20:34:15 +00001204 Module &M = *Modules[m];
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001205 for (const auto &GV : M.globals()) {
Chris Lattner0621cae2006-08-16 01:24:12 +00001206 // In the multi-module case, see what this global maps to.
1207 if (!LinkedGlobalsMap.empty()) {
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001208 if (const GlobalValue *GVEntry =
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001209 LinkedGlobalsMap[std::make_pair(GV.getName(), GV.getType())]) {
Chris Lattner0621cae2006-08-16 01:24:12 +00001210 // If something else is the canonical global, ignore this one.
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001211 if (GVEntry != &GV) {
1212 NonCanonicalGlobals.push_back(&GV);
Chris Lattner0621cae2006-08-16 01:24:12 +00001213 continue;
1214 }
1215 }
1216 }
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001217
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001218 if (!GV.isDeclaration()) {
1219 addGlobalMapping(&GV, getMemoryForGV(&GV));
Chris Lattner0621cae2006-08-16 01:24:12 +00001220 } else {
1221 // External variable reference. Try to use the dynamic loader to
1222 // get a pointer to it.
1223 if (void *SymAddr =
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001224 sys::DynamicLibrary::SearchForAddressOfSymbol(GV.getName()))
1225 addGlobalMapping(&GV, SymAddr);
Chris Lattner0621cae2006-08-16 01:24:12 +00001226 else {
Chris Lattner2104b8d2010-04-07 22:58:41 +00001227 report_fatal_error("Could not resolve external global address: "
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001228 +GV.getName());
Chris Lattner0621cae2006-08-16 01:24:12 +00001229 }
1230 }
1231 }
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001232
Chris Lattner0621cae2006-08-16 01:24:12 +00001233 // If there are multiple modules, map the non-canonical globals to their
1234 // canonical location.
1235 if (!NonCanonicalGlobals.empty()) {
1236 for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) {
1237 const GlobalValue *GV = NonCanonicalGlobals[i];
1238 const GlobalValue *CGV =
1239 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
1240 void *Ptr = getPointerToGlobalIfAvailable(CGV);
1241 assert(Ptr && "Canonical global wasn't codegen'd!");
Nuno Lopesa67f06b2008-10-14 10:04:52 +00001242 addGlobalMapping(GV, Ptr);
Chris Lattner0621cae2006-08-16 01:24:12 +00001243 }
1244 }
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001245
1246 // Now that all of the globals are set up in memory, loop through them all
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001247 // and initialize their contents.
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001248 for (const auto &GV : M.globals()) {
1249 if (!GV.isDeclaration()) {
Chris Lattner0621cae2006-08-16 01:24:12 +00001250 if (!LinkedGlobalsMap.empty()) {
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001251 if (const GlobalValue *GVEntry =
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001252 LinkedGlobalsMap[std::make_pair(GV.getName(), GV.getType())])
1253 if (GVEntry != &GV) // Not the canonical variable.
Chris Lattner0621cae2006-08-16 01:24:12 +00001254 continue;
1255 }
Rafael Espindola49bb65a2014-05-08 18:17:44 +00001256 EmitGlobalVariable(&GV);
Chris Lattner0621cae2006-08-16 01:24:12 +00001257 }
1258 }
1259 }
Chris Lattner6bbe3ec2003-12-20 02:45:37 +00001260}
1261
1262// EmitGlobalVariable - This method emits the specified global variable to the
1263// address specified in GlobalAddresses, or allocates new memory if it's not
1264// already in the map.
Chris Lattnerfbcc0aa2003-12-20 03:36:47 +00001265void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner748e8572003-12-31 20:21:04 +00001266 void *GA = getPointerToGlobalIfAvailable(GV);
Chris Lattnerdc631732004-02-08 19:33:23 +00001267
Craig Topper2617dcc2014-04-15 06:32:26 +00001268 if (!GA) {
Chris Lattner6bbe3ec2003-12-20 02:45:37 +00001269 // If it's not already specified, allocate memory for the global.
Nicolas Geoffray5457ce92008-10-25 15:41:43 +00001270 GA = getMemoryForGV(GV);
Andrew Kaylor3b442372013-11-15 17:52:54 +00001271
1272 // If we failed to allocate memory for this global, return.
Craig Topper2617dcc2014-04-15 06:32:26 +00001273 if (!GA) return;
Andrew Kaylor3b442372013-11-15 17:52:54 +00001274
Chris Lattner748e8572003-12-31 20:21:04 +00001275 addGlobalMapping(GV, GA);
Chris Lattner6bbe3ec2003-12-20 02:45:37 +00001276 }
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001277
Nicolas Geoffray5457ce92008-10-25 15:41:43 +00001278 // Don't initialize if it's thread local, let the client do it.
1279 if (!GV->isThreadLocal())
1280 InitializeMemory(GV->getInitializer(), GA);
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001281
Chris Lattner229907c2011-07-18 04:54:35 +00001282 Type *ElTy = GV->getType()->getElementType();
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001283 size_t GVSize = (size_t)getDataLayout()->getTypeAllocSize(ElTy);
Chris Lattnerdf1f1522005-01-08 20:13:19 +00001284 NumInitBytes += (unsigned)GVSize;
Chris Lattner6bbe3ec2003-12-20 02:45:37 +00001285 ++NumGlobals;
Chris Lattner996fe012002-12-24 00:01:05 +00001286}
Jeffrey Yasskinf98e9812009-10-13 17:42:08 +00001287
Jeffrey Yasskind0fc8f82009-10-23 22:37:43 +00001288ExecutionEngineState::ExecutionEngineState(ExecutionEngine &EE)
1289 : EE(EE), GlobalAddressMap(this) {
Jeffrey Yasskinf98e9812009-10-13 17:42:08 +00001290}
1291
Zachary Turnerc04b8922014-06-20 21:07:14 +00001292sys::Mutex *
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001293ExecutionEngineState::AddressMapConfig::getMutex(ExecutionEngineState *EES) {
Jeffrey Yasskind0fc8f82009-10-23 22:37:43 +00001294 return &EES->EE.lock;
1295}
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001296
1297void ExecutionEngineState::AddressMapConfig::onDelete(ExecutionEngineState *EES,
1298 const GlobalValue *Old) {
Jeffrey Yasskind0fc8f82009-10-23 22:37:43 +00001299 void *OldVal = EES->GlobalAddressMap.lookup(Old);
1300 EES->GlobalAddressReverseMap.erase(OldVal);
1301}
1302
Daniel Dunbar868e3f02010-11-13 02:48:57 +00001303void ExecutionEngineState::AddressMapConfig::onRAUW(ExecutionEngineState *,
1304 const GlobalValue *,
1305 const GlobalValue *) {
Craig Toppera2886c22012-02-07 05:05:23 +00001306 llvm_unreachable("The ExecutionEngine doesn't know how to handle a"
1307 " RAUW on a value it has a global mapping for.");
Jeffrey Yasskinf98e9812009-10-13 17:42:08 +00001308}