blob: 019163630733b85c5c21d7527cd5756b6db7015f [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"
Filip Pizlo13a3cf12013-05-14 19:29:00 +000017#include "llvm/ExecutionEngine/JITMemoryManager.h"
Daniel Dunbar48dd8752010-11-13 02:48:57 +000018#include "llvm/ADT/SmallString.h"
Chris Lattner9f3ff922009-08-23 22:49:13 +000019#include "llvm/ADT/Statistic.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000020#include "llvm/ExecutionEngine/GenericValue.h"
Chandler Carruth0b8c9a82013-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"
Reid Spencer551ccae2004-09-01 22:55:40 +000026#include "llvm/Support/Debug.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000027#include "llvm/Support/DynamicLibrary.h"
Torok Edwin31e24662009-07-07 17:32:34 +000028#include "llvm/Support/ErrorHandling.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000029#include "llvm/Support/Host.h"
Chris Lattnere7fd5532006-05-08 22:00:52 +000030#include "llvm/Support/MutexGuard.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000031#include "llvm/Support/TargetRegistry.h"
Jeffrey Yasskin0d5bd592009-08-07 19:54:29 +000032#include "llvm/Support/ValueHandle.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000033#include "llvm/Support/raw_ostream.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,
Filip Pizlo13a3cf12013-05-14 19:29:00 +000051 RTDyldMemoryManager *MCJMM,
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.
Chandler Carruth426c2bf2012-11-01 09:14:31 +0000271 unsigned PtrSize = EE->getDataLayout()->getPointerSize();
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) {
Chandler Carruth426c2bf2012-11-01 09:14:31 +0000346 unsigned PtrSize = EE->getDataLayout()->getPointerSize();
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
Filip Pizlo13a3cf12013-05-14 19:29:00 +0000459 assert(!(JMM && MCJMM));
460
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000461 // If the user specified a memory manager but didn't specify which engine to
462 // create, we assume they only want the JIT, and we fail if they only want
463 // the interpreter.
Filip Pizlo13a3cf12013-05-14 19:29:00 +0000464 if (JMM || MCJMM) {
Chris Lattnerfbd39762009-09-23 01:46:04 +0000465 if (WhichEngine & EngineKind::JIT)
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000466 WhichEngine = EngineKind::JIT;
Chris Lattnerfbd39762009-09-23 01:46:04 +0000467 else {
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000468 if (ErrorStr)
469 *ErrorStr = "Cannot create an interpreter with a memory manager.";
Chris Lattnerfbd39762009-09-23 01:46:04 +0000470 return 0;
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000471 }
472 }
Filip Pizlo13a3cf12013-05-14 19:29:00 +0000473
474 if (MCJMM && ! UseMCJIT) {
475 if (ErrorStr)
476 *ErrorStr =
477 "Cannot create a legacy JIT with a runtime dyld memory "
478 "manager.";
479 return 0;
480 }
Brian Gaeke82d82772003-09-03 20:34:19 +0000481
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000482 // Unless the interpreter was explicitly selected or the JIT is not linked,
483 // try making a JIT.
Benjamin Kramer0f554492012-04-08 14:53:14 +0000484 if ((WhichEngine & EngineKind::JIT) && TheTM) {
Dylan Noblesmith9ea47172011-12-12 04:20:36 +0000485 Triple TT(M->getTargetTriple());
Owen Anderson8e1fc562012-03-23 17:40:56 +0000486 if (!TM->getTarget().hasJIT()) {
487 errs() << "WARNING: This target JIT is not designed for the host"
488 << " you are running. If bad things happen, please choose"
489 << " a different -march switch.\n";
490 }
Dylan Noblesmith9ea47172011-12-12 04:20:36 +0000491
Owen Anderson8e1fc562012-03-23 17:40:56 +0000492 if (UseMCJIT && ExecutionEngine::MCJITCtor) {
493 ExecutionEngine *EE =
Filip Pizlo13a3cf12013-05-14 19:29:00 +0000494 ExecutionEngine::MCJITCtor(M, ErrorStr, MCJMM ? MCJMM : JMM,
Benjamin Kramer0f554492012-04-08 14:53:14 +0000495 AllocateGVsWithCode, TheTM.take());
Owen Anderson8e1fc562012-03-23 17:40:56 +0000496 if (EE) return EE;
497 } else if (ExecutionEngine::JITCtor) {
498 ExecutionEngine *EE =
499 ExecutionEngine::JITCtor(M, ErrorStr, JMM,
Benjamin Kramer0f554492012-04-08 14:53:14 +0000500 AllocateGVsWithCode, TheTM.take());
Owen Anderson8e1fc562012-03-23 17:40:56 +0000501 if (EE) return EE;
Chris Lattnerfbd39762009-09-23 01:46:04 +0000502 }
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000503 }
504
505 // If we can't make a JIT and we didn't request one specifically, try making
506 // an interpreter instead.
Chris Lattnerfbd39762009-09-23 01:46:04 +0000507 if (WhichEngine & EngineKind::Interpreter) {
508 if (ExecutionEngine::InterpCtor)
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000509 return ExecutionEngine::InterpCtor(M, ErrorStr);
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000510 if (ErrorStr)
511 *ErrorStr = "Interpreter has not been linked in.";
Chris Lattnerfbd39762009-09-23 01:46:04 +0000512 return 0;
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000513 }
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000514
Jim Grosbach8005bcd2012-08-21 15:42:49 +0000515 if ((WhichEngine & EngineKind::JIT) && ExecutionEngine::JITCtor == 0 &&
516 ExecutionEngine::MCJITCtor == 0) {
Chris Lattnerc72efbe2009-09-23 02:03:49 +0000517 if (ErrorStr)
518 *ErrorStr = "JIT has not been linked in.";
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000519 }
520
Chris Lattnerfbd39762009-09-23 01:46:04 +0000521 return 0;
Brian Gaeke82d82772003-09-03 20:34:19 +0000522}
523
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000524void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
Brian Gaeke37df4602003-08-13 18:16:14 +0000525 if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000526 return getPointerToFunction(F);
527
Reid Spenceree448632005-07-12 15:51:55 +0000528 MutexGuard locked(lock);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000529 if (void *P = EEState.getGlobalAddressMap(locked)[GV])
530 return P;
Jeff Cohen68835dd2006-02-07 05:11:57 +0000531
532 // Global variable might have been added since interpreter started.
533 if (GlobalVariable *GVar =
534 const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
535 EmitGlobalVariable(GVar);
536 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000537 llvm_unreachable("Global hasn't had an address allocated yet!");
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000538
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +0000539 return EEState.getGlobalAddressMap(locked)[GV];
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000540}
541
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000542/// \brief Converts a Constant* into a GenericValue, including handling of
543/// ConstantExpr values.
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000544GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000545 // If its undefined, return the garbage.
Jay Foad5b370122010-01-15 08:32:58 +0000546 if (isa<UndefValue>(C)) {
547 GenericValue Result;
548 switch (C->getType()->getTypeID()) {
Nadav Rotem953783e2013-04-01 15:53:30 +0000549 default:
550 break;
Jay Foad5b370122010-01-15 08:32:58 +0000551 case Type::IntegerTyID:
552 case Type::X86_FP80TyID:
553 case Type::FP128TyID:
554 case Type::PPC_FP128TyID:
555 // Although the value is undefined, we still have to construct an APInt
556 // with the correct bit width.
557 Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0);
558 break;
Nadav Rotem953783e2013-04-01 15:53:30 +0000559 case Type::VectorTyID:
560 // if the whole vector is 'undef' just reserve memory for the value.
561 const VectorType* VTy = dyn_cast<VectorType>(C->getType());
562 const Type *ElemTy = VTy->getElementType();
563 unsigned int elemNum = VTy->getNumElements();
564 Result.AggregateVal.resize(elemNum);
565 if (ElemTy->isIntegerTy())
566 for (unsigned int i = 0; i < elemNum; ++i)
567 Result.AggregateVal[i].IntVal =
568 APInt(ElemTy->getPrimitiveSizeInBits(), 0);
Jay Foad5b370122010-01-15 08:32:58 +0000569 break;
570 }
571 return Result;
572 }
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000573
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000574 // Otherwise, if the value is a ConstantExpr...
Reid Spencer3da59db2006-11-27 01:05:10 +0000575 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
Reid Spencerbce30f12007-03-06 22:23:15 +0000576 Constant *Op0 = CE->getOperand(0);
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000577 switch (CE->getOpcode()) {
578 case Instruction::GetElementPtr: {
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000579 // Compute the index
Reid Spencerbce30f12007-03-06 22:23:15 +0000580 GenericValue Result = getConstantValue(Op0);
Nuno Lopes98281a22012-12-30 16:25:48 +0000581 APInt Offset(TD->getPointerSizeInBits(), 0);
582 cast<GEPOperator>(CE)->accumulateConstantOffset(*TD, Offset);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000583
Reid Spencer8fb0f192007-03-06 03:04:04 +0000584 char* tmp = (char*) Result.PointerVal;
Nuno Lopes98281a22012-12-30 16:25:48 +0000585 Result = PTOGV(tmp + Offset.getSExtValue());
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000586 return Result;
587 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000588 case Instruction::Trunc: {
589 GenericValue GV = getConstantValue(Op0);
590 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
591 GV.IntVal = GV.IntVal.trunc(BitWidth);
592 return GV;
593 }
594 case Instruction::ZExt: {
595 GenericValue GV = getConstantValue(Op0);
596 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
597 GV.IntVal = GV.IntVal.zext(BitWidth);
598 return GV;
599 }
600 case Instruction::SExt: {
601 GenericValue GV = getConstantValue(Op0);
602 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
603 GV.IntVal = GV.IntVal.sext(BitWidth);
604 return GV;
605 }
606 case Instruction::FPTrunc: {
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000607 // FIXME long double
Reid Spencerbce30f12007-03-06 22:23:15 +0000608 GenericValue GV = getConstantValue(Op0);
609 GV.FloatVal = float(GV.DoubleVal);
610 return GV;
611 }
612 case Instruction::FPExt:{
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000613 // FIXME long double
Reid Spencerbce30f12007-03-06 22:23:15 +0000614 GenericValue GV = getConstantValue(Op0);
615 GV.DoubleVal = double(GV.FloatVal);
616 return GV;
617 }
618 case Instruction::UIToFP: {
619 GenericValue GV = getConstantValue(Op0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000620 if (CE->getType()->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000621 GV.FloatVal = float(GV.IntVal.roundToDouble());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000622 else if (CE->getType()->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000623 GV.DoubleVal = GV.IntVal.roundToDouble();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000624 else if (CE->getType()->isX86_FP80Ty()) {
Benjamin Kramer3069cbf2010-12-04 15:28:22 +0000625 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000626 (void)apf.convertFromAPInt(GV.IntVal,
Dan Gohman62824062008-02-29 01:27:13 +0000627 false,
628 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000629 GV.IntVal = apf.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000630 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000631 return GV;
632 }
633 case Instruction::SIToFP: {
634 GenericValue GV = getConstantValue(Op0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000635 if (CE->getType()->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000636 GV.FloatVal = float(GV.IntVal.signedRoundToDouble());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000637 else if (CE->getType()->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000638 GV.DoubleVal = GV.IntVal.signedRoundToDouble();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000639 else if (CE->getType()->isX86_FP80Ty()) {
Benjamin Kramer3069cbf2010-12-04 15:28:22 +0000640 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000641 (void)apf.convertFromAPInt(GV.IntVal,
Dan Gohman62824062008-02-29 01:27:13 +0000642 true,
643 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000644 GV.IntVal = apf.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000645 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000646 return GV;
647 }
648 case Instruction::FPToUI: // double->APInt conversion handles sign
649 case Instruction::FPToSI: {
650 GenericValue GV = getConstantValue(Op0);
651 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000652 if (Op0->getType()->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000653 GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000654 else if (Op0->getType()->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000655 GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000656 else if (Op0->getType()->isX86_FP80Ty()) {
Tim Northover0a29cb02013-01-22 09:46:31 +0000657 APFloat apf = APFloat(APFloat::x87DoubleExtended, GV.IntVal);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000658 uint64_t v;
Dale Johannesen23a98552008-10-09 23:00:39 +0000659 bool ignored;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000660 (void)apf.convertToInteger(&v, BitWidth,
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000661 CE->getOpcode()==Instruction::FPToSI,
Dale Johannesen23a98552008-10-09 23:00:39 +0000662 APFloat::rmTowardZero, &ignored);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000663 GV.IntVal = v; // endian?
664 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000665 return GV;
666 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000667 case Instruction::PtrToInt: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000668 GenericValue GV = getConstantValue(Op0);
Eli Friedmanbbc6e672012-10-30 22:21:55 +0000669 uint32_t PtrWidth = TD->getTypeSizeInBits(Op0->getType());
670 assert(PtrWidth <= 64 && "Bad pointer width");
Reid Spencerbce30f12007-03-06 22:23:15 +0000671 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
Eli Friedmanbbc6e672012-10-30 22:21:55 +0000672 uint32_t IntWidth = TD->getTypeSizeInBits(CE->getType());
673 GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth);
Reid Spencerbce30f12007-03-06 22:23:15 +0000674 return GV;
675 }
676 case Instruction::IntToPtr: {
677 GenericValue GV = getConstantValue(Op0);
Micah Villmowb52fb872012-10-24 18:36:13 +0000678 uint32_t PtrWidth = TD->getTypeSizeInBits(CE->getType());
Eli Friedmanbbc6e672012-10-30 22:21:55 +0000679 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
Reid Spencerbce30f12007-03-06 22:23:15 +0000680 assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width");
681 GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue()));
Reid Spencer3da59db2006-11-27 01:05:10 +0000682 return GV;
683 }
684 case Instruction::BitCast: {
Reid Spencerbce30f12007-03-06 22:23:15 +0000685 GenericValue GV = getConstantValue(Op0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000686 Type* DestTy = CE->getType();
Reid Spencerbce30f12007-03-06 22:23:15 +0000687 switch (Op0->getType()->getTypeID()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000688 default: llvm_unreachable("Invalid bitcast operand");
Reid Spencerbce30f12007-03-06 22:23:15 +0000689 case Type::IntegerTyID:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000690 assert(DestTy->isFloatingPointTy() && "invalid bitcast");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000691 if (DestTy->isFloatTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000692 GV.FloatVal = GV.IntVal.bitsToFloat();
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000693 else if (DestTy->isDoubleTy())
Reid Spencerbce30f12007-03-06 22:23:15 +0000694 GV.DoubleVal = GV.IntVal.bitsToDouble();
695 break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000696 case Type::FloatTyID:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000697 assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
Jay Foade4d19c92010-11-28 21:04:48 +0000698 GV.IntVal = APInt::floatToBits(GV.FloatVal);
Reid Spencerbce30f12007-03-06 22:23:15 +0000699 break;
700 case Type::DoubleTyID:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000701 assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
Jay Foade4d19c92010-11-28 21:04:48 +0000702 GV.IntVal = APInt::doubleToBits(GV.DoubleVal);
Reid Spencerbce30f12007-03-06 22:23:15 +0000703 break;
704 case Type::PointerTyID:
Duncan Sands1df98592010-02-16 11:11:14 +0000705 assert(DestTy->isPointerTy() && "Invalid bitcast");
Reid Spencerbce30f12007-03-06 22:23:15 +0000706 break; // getConstantValue(Op0) above already converted it
707 }
708 return GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +0000709 }
Chris Lattner9a231222003-05-14 17:51:49 +0000710 case Instruction::Add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000711 case Instruction::FAdd:
Reid Spencerbce30f12007-03-06 22:23:15 +0000712 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000713 case Instruction::FSub:
Reid Spencerbce30f12007-03-06 22:23:15 +0000714 case Instruction::Mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000715 case Instruction::FMul:
Reid Spencerbce30f12007-03-06 22:23:15 +0000716 case Instruction::UDiv:
717 case Instruction::SDiv:
718 case Instruction::URem:
719 case Instruction::SRem:
720 case Instruction::And:
721 case Instruction::Or:
722 case Instruction::Xor: {
723 GenericValue LHS = getConstantValue(Op0);
724 GenericValue RHS = getConstantValue(CE->getOperand(1));
725 GenericValue GV;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000726 switch (CE->getOperand(0)->getType()->getTypeID()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000727 default: llvm_unreachable("Bad add type!");
Reid Spencera54b7cb2007-01-12 07:05:14 +0000728 case Type::IntegerTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000729 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000730 default: llvm_unreachable("Invalid integer opcode");
Reid Spencerbce30f12007-03-06 22:23:15 +0000731 case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
732 case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
733 case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
734 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
735 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
736 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
737 case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
738 case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break;
739 case Instruction::Or: GV.IntVal = LHS.IntVal | RHS.IntVal; break;
740 case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break;
741 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000742 break;
743 case Type::FloatTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000744 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000745 default: llvm_unreachable("Invalid float opcode");
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000746 case Instruction::FAdd:
Reid Spencerbce30f12007-03-06 22:23:15 +0000747 GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000748 case Instruction::FSub:
Reid Spencerbce30f12007-03-06 22:23:15 +0000749 GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000750 case Instruction::FMul:
Reid Spencerbce30f12007-03-06 22:23:15 +0000751 GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000752 case Instruction::FDiv:
Reid Spencerbce30f12007-03-06 22:23:15 +0000753 GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000754 case Instruction::FRem:
Chris Lattner87565c12010-05-15 17:10:24 +0000755 GV.FloatVal = std::fmod(LHS.FloatVal,RHS.FloatVal); break;
Reid Spencerbce30f12007-03-06 22:23:15 +0000756 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000757 break;
758 case Type::DoubleTyID:
Reid Spencerbce30f12007-03-06 22:23:15 +0000759 switch (CE->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000760 default: llvm_unreachable("Invalid double opcode");
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000761 case Instruction::FAdd:
Reid Spencerbce30f12007-03-06 22:23:15 +0000762 GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000763 case Instruction::FSub:
Reid Spencerbce30f12007-03-06 22:23:15 +0000764 GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000765 case Instruction::FMul:
Reid Spencerbce30f12007-03-06 22:23:15 +0000766 GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000767 case Instruction::FDiv:
Reid Spencerbce30f12007-03-06 22:23:15 +0000768 GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000769 case Instruction::FRem:
Chris Lattner87565c12010-05-15 17:10:24 +0000770 GV.DoubleVal = std::fmod(LHS.DoubleVal,RHS.DoubleVal); break;
Reid Spencerbce30f12007-03-06 22:23:15 +0000771 }
Chris Lattner5f90cb82004-07-11 08:01:11 +0000772 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000773 case Type::X86_FP80TyID:
774 case Type::PPC_FP128TyID:
775 case Type::FP128TyID: {
Tim Northover0a29cb02013-01-22 09:46:31 +0000776 const fltSemantics &Sem = CE->getOperand(0)->getType()->getFltSemantics();
777 APFloat apfLHS = APFloat(Sem, LHS.IntVal);
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000778 switch (CE->getOpcode()) {
Daniel Dunbarab19da42010-11-13 00:55:42 +0000779 default: llvm_unreachable("Invalid long double opcode");
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000780 case Instruction::FAdd:
Tim Northover0a29cb02013-01-22 09:46:31 +0000781 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000782 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000783 break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000784 case Instruction::FSub:
Tim Northover0a29cb02013-01-22 09:46:31 +0000785 apfLHS.subtract(APFloat(Sem, RHS.IntVal),
786 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000787 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000788 break;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000789 case Instruction::FMul:
Tim Northover0a29cb02013-01-22 09:46:31 +0000790 apfLHS.multiply(APFloat(Sem, RHS.IntVal),
791 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000792 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000793 break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000794 case Instruction::FDiv:
Tim Northover0a29cb02013-01-22 09:46:31 +0000795 apfLHS.divide(APFloat(Sem, RHS.IntVal),
796 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000797 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000798 break;
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000799 case Instruction::FRem:
Tim Northover0a29cb02013-01-22 09:46:31 +0000800 apfLHS.mod(APFloat(Sem, RHS.IntVal),
801 APFloat::rmNearestTiesToEven);
Dale Johannesen7111b022008-10-09 18:53:47 +0000802 GV.IntVal = apfLHS.bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000803 break;
804 }
805 }
806 break;
Chris Lattner5f90cb82004-07-11 08:01:11 +0000807 }
Reid Spencerbce30f12007-03-06 22:23:15 +0000808 return GV;
809 }
Chris Lattner9a231222003-05-14 17:51:49 +0000810 default:
811 break;
812 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000813
814 SmallString<256> Msg;
815 raw_svector_ostream OS(Msg);
816 OS << "ConstantExpr not handled: " << *CE;
817 report_fatal_error(OS.str());
Chris Lattner9a231222003-05-14 17:51:49 +0000818 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000819
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000820 // Otherwise, we have a simple constant.
Reid Spencerbce30f12007-03-06 22:23:15 +0000821 GenericValue Result;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000822 switch (C->getType()->getTypeID()) {
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000823 case Type::FloatTyID:
824 Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
Reid Spencera54b7cb2007-01-12 07:05:14 +0000825 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000826 case Type::DoubleTyID:
Dale Johannesen43421b32007-09-06 18:13:44 +0000827 Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble();
Reid Spencer8fb0f192007-03-06 03:04:04 +0000828 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000829 case Type::X86_FP80TyID:
830 case Type::FP128TyID:
831 case Type::PPC_FP128TyID:
Dale Johannesen7111b022008-10-09 18:53:47 +0000832 Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt();
Dale Johannesen1abac0d2007-09-17 18:44:13 +0000833 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000834 case Type::IntegerTyID:
835 Result.IntVal = cast<ConstantInt>(C)->getValue();
836 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000837 case Type::PointerTyID:
Reid Spencer40cf2f92004-07-18 00:41:27 +0000838 if (isa<ConstantPointerNull>(C))
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000839 Result.PointerVal = 0;
Reid Spencer40cf2f92004-07-18 00:41:27 +0000840 else if (const Function *F = dyn_cast<Function>(C))
841 Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
Chris Lattnerf32a6a32009-10-29 05:26:09 +0000842 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
Reid Spencer40cf2f92004-07-18 00:41:27 +0000843 Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
Chris Lattnerf32a6a32009-10-29 05:26:09 +0000844 else if (const BlockAddress *BA = dyn_cast<BlockAddress>(C))
845 Result = PTOGV(getPointerToBasicBlock(const_cast<BasicBlock*>(
846 BA->getBasicBlock())));
Reid Spencer40cf2f92004-07-18 00:41:27 +0000847 else
Torok Edwinc23197a2009-07-14 16:55:14 +0000848 llvm_unreachable("Unknown constant pointer type!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000849 break;
Nadav Rotem953783e2013-04-01 15:53:30 +0000850 case Type::VectorTyID: {
851 unsigned elemNum;
852 Type* ElemTy;
853 const ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C);
854 const ConstantVector *CV = dyn_cast<ConstantVector>(C);
855 const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(C);
856
857 if (CDV) {
858 elemNum = CDV->getNumElements();
859 ElemTy = CDV->getElementType();
860 } else if (CV || CAZ) {
861 VectorType* VTy = dyn_cast<VectorType>(C->getType());
862 elemNum = VTy->getNumElements();
863 ElemTy = VTy->getElementType();
864 } else {
865 llvm_unreachable("Unknown constant vector type!");
866 }
867
868 Result.AggregateVal.resize(elemNum);
869 // Check if vector holds floats.
870 if(ElemTy->isFloatTy()) {
871 if (CAZ) {
872 GenericValue floatZero;
873 floatZero.FloatVal = 0.f;
874 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(),
875 floatZero);
876 break;
877 }
878 if(CV) {
879 for (unsigned i = 0; i < elemNum; ++i)
880 if (!isa<UndefValue>(CV->getOperand(i)))
881 Result.AggregateVal[i].FloatVal = cast<ConstantFP>(
882 CV->getOperand(i))->getValueAPF().convertToFloat();
883 break;
884 }
885 if(CDV)
886 for (unsigned i = 0; i < elemNum; ++i)
887 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i);
888
889 break;
890 }
891 // Check if vector holds doubles.
892 if (ElemTy->isDoubleTy()) {
893 if (CAZ) {
894 GenericValue doubleZero;
895 doubleZero.DoubleVal = 0.0;
896 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(),
897 doubleZero);
898 break;
899 }
900 if(CV) {
901 for (unsigned i = 0; i < elemNum; ++i)
902 if (!isa<UndefValue>(CV->getOperand(i)))
903 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>(
904 CV->getOperand(i))->getValueAPF().convertToDouble();
905 break;
906 }
907 if(CDV)
908 for (unsigned i = 0; i < elemNum; ++i)
909 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i);
910
911 break;
912 }
913 // Check if vector holds integers.
914 if (ElemTy->isIntegerTy()) {
915 if (CAZ) {
916 GenericValue intZero;
917 intZero.IntVal = APInt(ElemTy->getScalarSizeInBits(), 0ull);
918 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(),
919 intZero);
920 break;
921 }
922 if(CV) {
923 for (unsigned i = 0; i < elemNum; ++i)
924 if (!isa<UndefValue>(CV->getOperand(i)))
925 Result.AggregateVal[i].IntVal = cast<ConstantInt>(
926 CV->getOperand(i))->getValue();
927 else {
928 Result.AggregateVal[i].IntVal =
929 APInt(CV->getOperand(i)->getType()->getPrimitiveSizeInBits(), 0);
930 }
931 break;
932 }
933 if(CDV)
934 for (unsigned i = 0; i < elemNum; ++i)
935 Result.AggregateVal[i].IntVal = APInt(
936 CDV->getElementType()->getPrimitiveSizeInBits(),
937 CDV->getElementAsInteger(i));
938
939 break;
940 }
941 llvm_unreachable("Unknown constant pointer type!");
942 }
943 break;
944
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000945 default:
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000946 SmallString<256> Msg;
947 raw_svector_ostream OS(Msg);
948 OS << "ERROR: Constant unimplemented for type: " << *C->getType();
949 report_fatal_error(OS.str());
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000950 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000951
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000952 return Result;
953}
954
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000955/// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
956/// with the integer held in IntVal.
957static void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst,
958 unsigned StoreBytes) {
959 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
Roman Divacky59324292012-09-05 22:26:57 +0000960 const uint8_t *Src = (const uint8_t *)IntVal.getRawData();
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000961
Rafael Espindola21a01d12013-04-15 14:44:24 +0000962 if (sys::IsLittleEndianHost) {
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000963 // Little-endian host - the source is ordered from LSB to MSB. Order the
964 // destination from LSB to MSB: Do a straight copy.
965 memcpy(Dst, Src, StoreBytes);
Daniel Dunbar48dd8752010-11-13 02:48:57 +0000966 } else {
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000967 // Big-endian host - the source is an array of 64 bit words ordered from
968 // LSW to MSW. Each word is ordered from MSB to LSB. Order the destination
969 // from MSB to LSB: Reverse the word order, but not the bytes in a word.
970 while (StoreBytes > sizeof(uint64_t)) {
971 StoreBytes -= sizeof(uint64_t);
972 // May not be aligned so use memcpy.
973 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
974 Src += sizeof(uint64_t);
975 }
976
977 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
978 }
979}
980
Evan Cheng89687e32008-11-04 06:10:31 +0000981void ExecutionEngine::StoreValueToMemory(const GenericValue &Val,
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000982 GenericValue *Ptr, Type *Ty) {
Micah Villmow3574eca2012-10-08 16:38:25 +0000983 const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty);
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000984
Reid Spencer8fb0f192007-03-06 03:04:04 +0000985 switch (Ty->getTypeID()) {
Nadav Rotem953783e2013-04-01 15:53:30 +0000986 default:
987 dbgs() << "Cannot store value of type " << *Ty << "!\n";
988 break;
Duncan Sands8a43e9e2007-12-14 19:38:31 +0000989 case Type::IntegerTyID:
990 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
Reid Spencer8fb0f192007-03-06 03:04:04 +0000991 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +0000992 case Type::FloatTyID:
993 *((float*)Ptr) = Val.FloatVal;
994 break;
995 case Type::DoubleTyID:
996 *((double*)Ptr) = Val.DoubleVal;
997 break;
Dale Johannesen1f8c5642009-03-24 18:16:17 +0000998 case Type::X86_FP80TyID:
999 memcpy(Ptr, Val.IntVal.getRawData(), 10);
1000 break;
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001001 case Type::PointerTyID:
1002 // Ensure 64 bit target pointers are fully initialized on 32 bit hosts.
1003 if (StoreBytes != sizeof(PointerTy))
Chandler Carruth80d9e072011-04-28 08:37:18 +00001004 memset(&(Ptr->PointerVal), 0, StoreBytes);
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001005
Reid Spencer8fb0f192007-03-06 03:04:04 +00001006 *((PointerTy*)Ptr) = Val.PointerVal;
1007 break;
Nadav Rotem953783e2013-04-01 15:53:30 +00001008 case Type::VectorTyID:
1009 for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) {
1010 if (cast<VectorType>(Ty)->getElementType()->isDoubleTy())
1011 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal;
1012 if (cast<VectorType>(Ty)->getElementType()->isFloatTy())
1013 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal;
1014 if (cast<VectorType>(Ty)->getElementType()->isIntegerTy()) {
1015 unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8;
1016 StoreIntToMemory(Val.AggregateVal[i].IntVal,
1017 (uint8_t*)Ptr + numOfBytes*i, numOfBytes);
1018 }
1019 }
1020 break;
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001021 }
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001022
Rafael Espindola21a01d12013-04-15 14:44:24 +00001023 if (sys::IsLittleEndianHost != getDataLayout()->isLittleEndian())
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001024 // Host and target are different endian - reverse the stored bytes.
1025 std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr);
1026}
1027
1028/// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
1029/// from Src into IntVal, which is assumed to be wide enough and to hold zero.
1030static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) {
1031 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
David Greenec2680be2013-01-14 21:04:45 +00001032 uint8_t *Dst = reinterpret_cast<uint8_t *>(
1033 const_cast<uint64_t *>(IntVal.getRawData()));
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001034
Rafael Espindola21a01d12013-04-15 14:44:24 +00001035 if (sys::IsLittleEndianHost)
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001036 // Little-endian host - the destination must be ordered from LSB to MSB.
1037 // The source is ordered from LSB to MSB: Do a straight copy.
1038 memcpy(Dst, Src, LoadBytes);
1039 else {
1040 // Big-endian - the destination is an array of 64 bit words ordered from
1041 // LSW to MSW. Each word must be ordered from MSB to LSB. The source is
1042 // ordered from MSB to LSB: Reverse the word order, but not the bytes in
1043 // a word.
1044 while (LoadBytes > sizeof(uint64_t)) {
1045 LoadBytes -= sizeof(uint64_t);
1046 // May not be aligned so use memcpy.
1047 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
1048 Dst += sizeof(uint64_t);
1049 }
1050
1051 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
1052 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001053}
1054
Misha Brukman4afac182003-10-10 17:45:12 +00001055/// FIXME: document
1056///
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001057void ExecutionEngine::LoadValueFromMemory(GenericValue &Result,
Duncan Sands08bfe262008-03-10 16:38:37 +00001058 GenericValue *Ptr,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001059 Type *Ty) {
Micah Villmow3574eca2012-10-08 16:38:25 +00001060 const unsigned LoadBytes = getDataLayout()->getTypeStoreSize(Ty);
Duncan Sands1eff7042007-12-10 17:43:13 +00001061
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001062 switch (Ty->getTypeID()) {
1063 case Type::IntegerTyID:
1064 // An APInt with all words initially zero.
1065 Result.IntVal = APInt(cast<IntegerType>(Ty)->getBitWidth(), 0);
1066 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes);
1067 break;
Reid Spencer8fb0f192007-03-06 03:04:04 +00001068 case Type::FloatTyID:
1069 Result.FloatVal = *((float*)Ptr);
1070 break;
1071 case Type::DoubleTyID:
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001072 Result.DoubleVal = *((double*)Ptr);
Reid Spencer8fb0f192007-03-06 03:04:04 +00001073 break;
Duncan Sands8a43e9e2007-12-14 19:38:31 +00001074 case Type::PointerTyID:
Reid Spencer8fb0f192007-03-06 03:04:04 +00001075 Result.PointerVal = *((PointerTy*)Ptr);
1076 break;
Dale Johannesen1abac0d2007-09-17 18:44:13 +00001077 case Type::X86_FP80TyID: {
1078 // This is endian dependent, but it will only work on x86 anyway.
Duncan Sands9e4635a2007-12-15 17:37:40 +00001079 // FIXME: Will not trap if loading a signaling NaN.
Dale Johannesen1f8c5642009-03-24 18:16:17 +00001080 uint64_t y[2];
1081 memcpy(y, Ptr, 10);
Jeffrey Yasskin3ba292d2011-07-18 21:45:40 +00001082 Result.IntVal = APInt(80, y);
Dale Johannesen1abac0d2007-09-17 18:44:13 +00001083 break;
1084 }
Nadav Rotem953783e2013-04-01 15:53:30 +00001085 case Type::VectorTyID: {
1086 const VectorType *VT = cast<VectorType>(Ty);
1087 const Type *ElemT = VT->getElementType();
1088 const unsigned numElems = VT->getNumElements();
1089 if (ElemT->isFloatTy()) {
1090 Result.AggregateVal.resize(numElems);
1091 for (unsigned i = 0; i < numElems; ++i)
1092 Result.AggregateVal[i].FloatVal = *((float*)Ptr+i);
1093 }
1094 if (ElemT->isDoubleTy()) {
1095 Result.AggregateVal.resize(numElems);
1096 for (unsigned i = 0; i < numElems; ++i)
1097 Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i);
1098 }
1099 if (ElemT->isIntegerTy()) {
1100 GenericValue intZero;
1101 const unsigned elemBitWidth = cast<IntegerType>(ElemT)->getBitWidth();
1102 intZero.IntVal = APInt(elemBitWidth, 0);
1103 Result.AggregateVal.resize(numElems, intZero);
1104 for (unsigned i = 0; i < numElems; ++i)
1105 LoadIntFromMemory(Result.AggregateVal[i].IntVal,
1106 (uint8_t*)Ptr+((elemBitWidth+7)/8)*i, (elemBitWidth+7)/8);
1107 }
1108 break;
1109 }
Reid Spencer8fb0f192007-03-06 03:04:04 +00001110 default:
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001111 SmallString<256> Msg;
1112 raw_svector_ostream OS(Msg);
1113 OS << "Cannot load value of type " << *Ty << "!";
1114 report_fatal_error(OS.str());
Chris Lattnerf88b9a62003-05-08 16:52:16 +00001115 }
Chris Lattnerf88b9a62003-05-08 16:52:16 +00001116}
1117
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001118void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
David Greeneae7c59a2010-01-05 01:27:39 +00001119 DEBUG(dbgs() << "JIT: Initializing " << Addr << " ");
Dale Johannesendd947ea2008-08-07 01:30:15 +00001120 DEBUG(Init->dump());
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001121 if (isa<UndefValue>(Init))
Chris Lattnerbd1d3822004-10-16 18:19:26 +00001122 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001123
1124 if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
Robert Bocchino7c2b7c72006-01-20 18:18:40 +00001125 unsigned ElementSize =
Micah Villmow3574eca2012-10-08 16:38:25 +00001126 getDataLayout()->getTypeAllocSize(CP->getType()->getElementType());
Robert Bocchino7c2b7c72006-01-20 18:18:40 +00001127 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
1128 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
1129 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001130 }
1131
1132 if (isa<ConstantAggregateZero>(Init)) {
Micah Villmow3574eca2012-10-08 16:38:25 +00001133 memset(Addr, 0, (size_t)getDataLayout()->getTypeAllocSize(Init->getType()));
Chris Lattnerb6e1dd72008-02-15 00:57:28 +00001134 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001135 }
1136
1137 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(Init)) {
Dan Gohman638e3782008-05-20 03:20:09 +00001138 unsigned ElementSize =
Micah Villmow3574eca2012-10-08 16:38:25 +00001139 getDataLayout()->getTypeAllocSize(CPA->getType()->getElementType());
Dan Gohman638e3782008-05-20 03:20:09 +00001140 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
1141 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
1142 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001143 }
1144
1145 if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(Init)) {
Dan Gohman638e3782008-05-20 03:20:09 +00001146 const StructLayout *SL =
Micah Villmow3574eca2012-10-08 16:38:25 +00001147 getDataLayout()->getStructLayout(cast<StructType>(CPS->getType()));
Dan Gohman638e3782008-05-20 03:20:09 +00001148 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
1149 InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i));
1150 return;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00001151 }
1152
1153 if (const ConstantDataSequential *CDS =
1154 dyn_cast<ConstantDataSequential>(Init)) {
1155 // CDS is already laid out in host memory order.
1156 StringRef Data = CDS->getRawDataValues();
1157 memcpy(Addr, Data.data(), Data.size());
1158 return;
1159 }
1160
1161 if (Init->getType()->isFirstClassType()) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001162 GenericValue Val = getConstantValue(Init);
1163 StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
1164 return;
1165 }
1166
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001167 DEBUG(dbgs() << "Bad Type: " << *Init->getType() << "\n");
Torok Edwinc23197a2009-07-14 16:55:14 +00001168 llvm_unreachable("Unknown constant type to initialize memory with!");
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001169}
1170
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001171/// EmitGlobals - Emit all of the global variables to memory, storing their
1172/// addresses into GlobalAddress. This must make sure to copy the contents of
1173/// their initializers into the memory.
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001174void ExecutionEngine::emitGlobals() {
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001175 // Loop over all of the global variables in the program, allocating the memory
Chris Lattnerfe854032006-08-16 01:24:12 +00001176 // to hold them. If there is more than one module, do a prepass over globals
1177 // to figure out how the different modules should link together.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001178 std::map<std::pair<std::string, Type*>,
Chris Lattnerfe854032006-08-16 01:24:12 +00001179 const GlobalValue*> LinkedGlobalsMap;
Misha Brukmanedf128a2005-04-21 22:36:52 +00001180
Chris Lattnerfe854032006-08-16 01:24:12 +00001181 if (Modules.size() != 1) {
1182 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00001183 Module &M = *Modules[m];
Chris Lattnerfe854032006-08-16 01:24:12 +00001184 for (Module::const_global_iterator I = M.global_begin(),
1185 E = M.global_end(); I != E; ++I) {
1186 const GlobalValue *GV = I;
Rafael Espindolabb46f522009-01-15 20:18:42 +00001187 if (GV->hasLocalLinkage() || GV->isDeclaration() ||
Chris Lattnerfe854032006-08-16 01:24:12 +00001188 GV->hasAppendingLinkage() || !GV->hasName())
1189 continue;// Ignore external globals and globals with internal linkage.
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001190
1191 const GlobalValue *&GVEntry =
Chris Lattnerfe854032006-08-16 01:24:12 +00001192 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
1193
1194 // If this is the first time we've seen this global, it is the canonical
1195 // version.
1196 if (!GVEntry) {
1197 GVEntry = GV;
1198 continue;
1199 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001200
Chris Lattnerfe854032006-08-16 01:24:12 +00001201 // If the existing global is strong, never replace it.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001202 if (GVEntry->hasExternalLinkage() ||
1203 GVEntry->hasDLLImportLinkage() ||
1204 GVEntry->hasDLLExportLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +00001205 continue;
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001206
Chris Lattnerfe854032006-08-16 01:24:12 +00001207 // Otherwise, we know it's linkonce/weak, replace it if this is a strong
Dale Johannesenaafce772008-05-14 20:12:51 +00001208 // symbol. FIXME is this right for common?
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +00001209 if (GV->hasExternalLinkage() || GVEntry->hasExternalWeakLinkage())
Chris Lattnerfe854032006-08-16 01:24:12 +00001210 GVEntry = GV;
Chris Lattnerd8c03bf2003-04-23 19:01:49 +00001211 }
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001212 }
Chris Lattnerfe854032006-08-16 01:24:12 +00001213 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001214
Chris Lattnerfe854032006-08-16 01:24:12 +00001215 std::vector<const GlobalValue*> NonCanonicalGlobals;
1216 for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00001217 Module &M = *Modules[m];
Chris Lattnerfe854032006-08-16 01:24:12 +00001218 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
1219 I != E; ++I) {
1220 // In the multi-module case, see what this global maps to.
1221 if (!LinkedGlobalsMap.empty()) {
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001222 if (const GlobalValue *GVEntry =
Chris Lattnerfe854032006-08-16 01:24:12 +00001223 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())]) {
1224 // If something else is the canonical global, ignore this one.
1225 if (GVEntry != &*I) {
1226 NonCanonicalGlobals.push_back(I);
1227 continue;
1228 }
1229 }
1230 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001231
Reid Spencer5cbf9852007-01-30 20:08:39 +00001232 if (!I->isDeclaration()) {
Nicolas Geoffray46fa1392008-10-25 15:41:43 +00001233 addGlobalMapping(I, getMemoryForGV(I));
Chris Lattnerfe854032006-08-16 01:24:12 +00001234 } else {
1235 // External variable reference. Try to use the dynamic loader to
1236 // get a pointer to it.
1237 if (void *SymAddr =
Daniel Dunbarfbee5792009-07-21 08:54:24 +00001238 sys::DynamicLibrary::SearchForAddressOfSymbol(I->getName()))
Chris Lattnerfe854032006-08-16 01:24:12 +00001239 addGlobalMapping(I, SymAddr);
1240 else {
Chris Lattner75361b62010-04-07 22:58:41 +00001241 report_fatal_error("Could not resolve external global address: "
Torok Edwin31e24662009-07-07 17:32:34 +00001242 +I->getName());
Chris Lattnerfe854032006-08-16 01:24:12 +00001243 }
1244 }
1245 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001246
Chris Lattnerfe854032006-08-16 01:24:12 +00001247 // If there are multiple modules, map the non-canonical globals to their
1248 // canonical location.
1249 if (!NonCanonicalGlobals.empty()) {
1250 for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) {
1251 const GlobalValue *GV = NonCanonicalGlobals[i];
1252 const GlobalValue *CGV =
1253 LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
1254 void *Ptr = getPointerToGlobalIfAvailable(CGV);
1255 assert(Ptr && "Canonical global wasn't codegen'd!");
Nuno Lopesc8ed9022008-10-14 10:04:52 +00001256 addGlobalMapping(GV, Ptr);
Chris Lattnerfe854032006-08-16 01:24:12 +00001257 }
1258 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001259
1260 // Now that all of the globals are set up in memory, loop through them all
Reid Spencera54b7cb2007-01-12 07:05:14 +00001261 // and initialize their contents.
Chris Lattnerfe854032006-08-16 01:24:12 +00001262 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
1263 I != E; ++I) {
Reid Spencer5cbf9852007-01-30 20:08:39 +00001264 if (!I->isDeclaration()) {
Chris Lattnerfe854032006-08-16 01:24:12 +00001265 if (!LinkedGlobalsMap.empty()) {
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001266 if (const GlobalValue *GVEntry =
Chris Lattnerfe854032006-08-16 01:24:12 +00001267 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())])
1268 if (GVEntry != &*I) // Not the canonical variable.
1269 continue;
1270 }
1271 EmitGlobalVariable(I);
1272 }
1273 }
1274 }
Chris Lattner24b0a182003-12-20 02:45:37 +00001275}
1276
1277// EmitGlobalVariable - This method emits the specified global variable to the
1278// address specified in GlobalAddresses, or allocates new memory if it's not
1279// already in the map.
Chris Lattnerc07ed132003-12-20 03:36:47 +00001280void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
Chris Lattner55d86482003-12-31 20:21:04 +00001281 void *GA = getPointerToGlobalIfAvailable(GV);
Chris Lattner23c47242004-02-08 19:33:23 +00001282
Chris Lattner24b0a182003-12-20 02:45:37 +00001283 if (GA == 0) {
1284 // If it's not already specified, allocate memory for the global.
Nicolas Geoffray46fa1392008-10-25 15:41:43 +00001285 GA = getMemoryForGV(GV);
Chris Lattner55d86482003-12-31 20:21:04 +00001286 addGlobalMapping(GV, GA);
Chris Lattner24b0a182003-12-20 02:45:37 +00001287 }
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001288
Nicolas Geoffray46fa1392008-10-25 15:41:43 +00001289 // Don't initialize if it's thread local, let the client do it.
1290 if (!GV->isThreadLocal())
1291 InitializeMemory(GV->getInitializer(), GA);
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001292
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001293 Type *ElTy = GV->getType()->getElementType();
Micah Villmow3574eca2012-10-08 16:38:25 +00001294 size_t GVSize = (size_t)getDataLayout()->getTypeAllocSize(ElTy);
Chris Lattner813c8152005-01-08 20:13:19 +00001295 NumInitBytes += (unsigned)GVSize;
Chris Lattner24b0a182003-12-20 02:45:37 +00001296 ++NumGlobals;
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001297}
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +00001298
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +00001299ExecutionEngineState::ExecutionEngineState(ExecutionEngine &EE)
1300 : EE(EE), GlobalAddressMap(this) {
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +00001301}
1302
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001303sys::Mutex *
1304ExecutionEngineState::AddressMapConfig::getMutex(ExecutionEngineState *EES) {
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +00001305 return &EES->EE.lock;
1306}
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001307
1308void ExecutionEngineState::AddressMapConfig::onDelete(ExecutionEngineState *EES,
1309 const GlobalValue *Old) {
Jeffrey Yasskin23e5fcf2009-10-23 22:37:43 +00001310 void *OldVal = EES->GlobalAddressMap.lookup(Old);
1311 EES->GlobalAddressReverseMap.erase(OldVal);
1312}
1313
Daniel Dunbar48dd8752010-11-13 02:48:57 +00001314void ExecutionEngineState::AddressMapConfig::onRAUW(ExecutionEngineState *,
1315 const GlobalValue *,
1316 const GlobalValue *) {
Craig Topper85814382012-02-07 05:05:23 +00001317 llvm_unreachable("The ExecutionEngine doesn't know how to handle a"
1318 " RAUW on a value it has a global mapping for.");
Jeffrey Yasskin4c5b23b2009-10-13 17:42:08 +00001319}