1857c21b4SMisha Brukman //===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===//
2996fe010SChris Lattner //
3482202a6SJohn Criswell //                     The LLVM Compiler Infrastructure
4482202a6SJohn Criswell //
5f3ebc3f3SChris Lattner // This file is distributed under the University of Illinois Open Source
6f3ebc3f3SChris Lattner // License. See LICENSE.TXT for details.
7482202a6SJohn Criswell //
8482202a6SJohn Criswell //===----------------------------------------------------------------------===//
9482202a6SJohn Criswell //
10996fe010SChris Lattner // This file defines the common interface used by the various execution engine
11996fe010SChris Lattner // subclasses.
12996fe010SChris Lattner //
13996fe010SChris Lattner //===----------------------------------------------------------------------===//
14996fe010SChris Lattner 
15ee937c80SChris Lattner #define DEBUG_TYPE "jit"
166bf87df5SJeffrey Yasskin #include "llvm/ExecutionEngine/ExecutionEngine.h"
17868e3f09SDaniel Dunbar #include "llvm/ADT/SmallString.h"
18390d78b3SChris Lattner #include "llvm/ADT/Statistic.h"
19ed0881b2SChandler Carruth #include "llvm/ExecutionEngine/GenericValue.h"
209fb823bbSChandler Carruth #include "llvm/IR/Constants.h"
219fb823bbSChandler Carruth #include "llvm/IR/DataLayout.h"
229fb823bbSChandler Carruth #include "llvm/IR/DerivedTypes.h"
239fb823bbSChandler Carruth #include "llvm/IR/Module.h"
249fb823bbSChandler Carruth #include "llvm/IR/Operator.h"
257c16caa3SReid Spencer #include "llvm/Support/Debug.h"
26ed0881b2SChandler Carruth #include "llvm/Support/DynamicLibrary.h"
276c2d233eSTorok Edwin #include "llvm/Support/ErrorHandling.h"
28ed0881b2SChandler Carruth #include "llvm/Support/Host.h"
296d8dd189SChris Lattner #include "llvm/Support/MutexGuard.h"
30ed0881b2SChandler Carruth #include "llvm/Support/TargetRegistry.h"
316bf87df5SJeffrey Yasskin #include "llvm/Support/ValueHandle.h"
32ccb29cd2STorok Edwin #include "llvm/Support/raw_ostream.h"
338418fdcdSDylan Noblesmith #include "llvm/Target/TargetMachine.h"
34579f0713SAnton Korobeynikov #include <cmath>
35579f0713SAnton Korobeynikov #include <cstring>
3629681deeSChris Lattner using namespace llvm;
37996fe010SChris Lattner 
38c346ecd7SChris Lattner STATISTIC(NumInitBytes, "Number of bytes of global vars initialized");
39c346ecd7SChris Lattner STATISTIC(NumGlobals  , "Number of global vars initialized");
40996fe010SChris Lattner 
4131faefffSJeffrey Yasskin ExecutionEngine *(*ExecutionEngine::JITCtor)(
4231faefffSJeffrey Yasskin   Module *M,
43fc8a2d5aSReid Kleckner   std::string *ErrorStr,
44fc8a2d5aSReid Kleckner   JITMemoryManager *JMM,
45700d08e1SEric Christopher   bool GVsWithCode,
468418fdcdSDylan Noblesmith   TargetMachine *TM) = 0;
4770ff8b05SDaniel Dunbar ExecutionEngine *(*ExecutionEngine::MCJITCtor)(
4870ff8b05SDaniel Dunbar   Module *M,
4970ff8b05SDaniel Dunbar   std::string *ErrorStr,
5070ff8b05SDaniel Dunbar   JITMemoryManager *JMM,
5170ff8b05SDaniel Dunbar   bool GVsWithCode,
528418fdcdSDylan Noblesmith   TargetMachine *TM) = 0;
53091217beSJeffrey Yasskin ExecutionEngine *(*ExecutionEngine::InterpCtor)(Module *M,
54fc8a2d5aSReid Kleckner                                                 std::string *ErrorStr) = 0;
552d52c1b8SChris Lattner 
56091217beSJeffrey Yasskin ExecutionEngine::ExecutionEngine(Module *M)
57f98e981cSJeffrey Yasskin   : EEState(*this),
58abc7901eSDuncan Sands     LazyFunctionCreator(0),
59abc7901eSDuncan Sands     ExceptionTableRegister(0),
60abc7901eSDuncan Sands     ExceptionTableDeregister(0) {
614567db45SJeffrey Yasskin   CompilingLazily         = false;
62cdc0060eSEvan Cheng   GVCompilationDisabled   = false;
6384a9055eSEvan Cheng   SymbolSearchingDisabled = false;
64091217beSJeffrey Yasskin   Modules.push_back(M);
65091217beSJeffrey Yasskin   assert(M && "Module is null?");
66260b0c88SMisha Brukman }
67260b0c88SMisha Brukman 
6892f8b30dSBrian Gaeke ExecutionEngine::~ExecutionEngine() {
69603682adSReid Spencer   clearAllGlobalMappings();
700621caefSChris Lattner   for (unsigned i = 0, e = Modules.size(); i != e; ++i)
710621caefSChris Lattner     delete Modules[i];
7292f8b30dSBrian Gaeke }
7392f8b30dSBrian Gaeke 
74abc7901eSDuncan Sands void ExecutionEngine::DeregisterAllTables() {
75abc7901eSDuncan Sands   if (ExceptionTableDeregister) {
76f045b7abSEric Christopher     DenseMap<const Function*, void*>::iterator it = AllExceptionTables.begin();
77f045b7abSEric Christopher     DenseMap<const Function*, void*>::iterator ite = AllExceptionTables.end();
78f045b7abSEric Christopher     for (; it != ite; ++it)
79f045b7abSEric Christopher       ExceptionTableDeregister(it->second);
80abc7901eSDuncan Sands     AllExceptionTables.clear();
81abc7901eSDuncan Sands   }
82abc7901eSDuncan Sands }
83abc7901eSDuncan Sands 
84a4044332SJeffrey Yasskin namespace {
85868e3f09SDaniel Dunbar /// \brief Helper class which uses a value handler to automatically deletes the
86868e3f09SDaniel Dunbar /// memory block when the GlobalVariable is destroyed.
87a4044332SJeffrey Yasskin class GVMemoryBlock : public CallbackVH {
88a4044332SJeffrey Yasskin   GVMemoryBlock(const GlobalVariable *GV)
89a4044332SJeffrey Yasskin     : CallbackVH(const_cast<GlobalVariable*>(GV)) {}
90a4044332SJeffrey Yasskin 
91a4044332SJeffrey Yasskin public:
92868e3f09SDaniel Dunbar   /// \brief Returns the address the GlobalVariable should be written into.  The
93868e3f09SDaniel Dunbar   /// GVMemoryBlock object prefixes that.
94cdfe20b9SMicah Villmow   static char *Create(const GlobalVariable *GV, const DataLayout& TD) {
95229907cdSChris Lattner     Type *ElTy = GV->getType()->getElementType();
96a4044332SJeffrey Yasskin     size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy);
97a4044332SJeffrey Yasskin     void *RawMemory = ::operator new(
98cdfe20b9SMicah Villmow       DataLayout::RoundUpAlignment(sizeof(GVMemoryBlock),
99a4044332SJeffrey Yasskin                                    TD.getPreferredAlignment(GV))
100a4044332SJeffrey Yasskin       + GVSize);
101a4044332SJeffrey Yasskin     new(RawMemory) GVMemoryBlock(GV);
102a4044332SJeffrey Yasskin     return static_cast<char*>(RawMemory) + sizeof(GVMemoryBlock);
103a4044332SJeffrey Yasskin   }
104a4044332SJeffrey Yasskin 
105a4044332SJeffrey Yasskin   virtual void deleted() {
106a4044332SJeffrey Yasskin     // We allocated with operator new and with some extra memory hanging off the
107a4044332SJeffrey Yasskin     // end, so don't just delete this.  I'm not sure if this is actually
108a4044332SJeffrey Yasskin     // required.
109a4044332SJeffrey Yasskin     this->~GVMemoryBlock();
110a4044332SJeffrey Yasskin     ::operator delete(this);
111a4044332SJeffrey Yasskin   }
112a4044332SJeffrey Yasskin };
113a4044332SJeffrey Yasskin }  // anonymous namespace
114a4044332SJeffrey Yasskin 
115a4044332SJeffrey Yasskin char *ExecutionEngine::getMemoryForGV(const GlobalVariable *GV) {
116cdfe20b9SMicah Villmow   return GVMemoryBlock::Create(GV, *getDataLayout());
1175457ce9aSNicolas Geoffray }
1185457ce9aSNicolas Geoffray 
119091217beSJeffrey Yasskin bool ExecutionEngine::removeModule(Module *M) {
120091217beSJeffrey Yasskin   for(SmallVector<Module *, 1>::iterator I = Modules.begin(),
121324fe890SDevang Patel         E = Modules.end(); I != E; ++I) {
122091217beSJeffrey Yasskin     Module *Found = *I;
123091217beSJeffrey Yasskin     if (Found == M) {
124324fe890SDevang Patel       Modules.erase(I);
125091217beSJeffrey Yasskin       clearGlobalMappingsFromModule(M);
126091217beSJeffrey Yasskin       return true;
127324fe890SDevang Patel     }
128324fe890SDevang Patel   }
129091217beSJeffrey Yasskin   return false;
130617001d8SNate Begeman }
131617001d8SNate Begeman 
1320621caefSChris Lattner Function *ExecutionEngine::FindFunctionNamed(const char *FnName) {
1330621caefSChris Lattner   for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
134091217beSJeffrey Yasskin     if (Function *F = Modules[i]->getFunction(FnName))
1350621caefSChris Lattner       return F;
1360621caefSChris Lattner   }
1370621caefSChris Lattner   return 0;
1380621caefSChris Lattner }
1390621caefSChris Lattner 
1400621caefSChris Lattner 
141868e3f09SDaniel Dunbar void *ExecutionEngineState::RemoveMapping(const MutexGuard &,
142868e3f09SDaniel Dunbar                                           const GlobalValue *ToUnmap) {
143d0fc8f80SJeffrey Yasskin   GlobalAddressMapTy::iterator I = GlobalAddressMap.find(ToUnmap);
144307c053fSJeffrey Yasskin   void *OldVal;
145868e3f09SDaniel Dunbar 
146868e3f09SDaniel Dunbar   // FIXME: This is silly, we shouldn't end up with a mapping -> 0 in the
147868e3f09SDaniel Dunbar   // GlobalAddressMap.
148307c053fSJeffrey Yasskin   if (I == GlobalAddressMap.end())
149307c053fSJeffrey Yasskin     OldVal = 0;
150307c053fSJeffrey Yasskin   else {
151307c053fSJeffrey Yasskin     OldVal = I->second;
152307c053fSJeffrey Yasskin     GlobalAddressMap.erase(I);
153307c053fSJeffrey Yasskin   }
154307c053fSJeffrey Yasskin 
155307c053fSJeffrey Yasskin   GlobalAddressReverseMap.erase(OldVal);
156307c053fSJeffrey Yasskin   return OldVal;
157307c053fSJeffrey Yasskin }
158307c053fSJeffrey Yasskin 
1596d8dd189SChris Lattner void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) {
1606d8dd189SChris Lattner   MutexGuard locked(lock);
1616d8dd189SChris Lattner 
1620967d2dfSDavid Greene   DEBUG(dbgs() << "JIT: Map \'" << GV->getName()
1639813b0b0SDaniel Dunbar         << "\' to [" << Addr << "]\n";);
164d0fc8f80SJeffrey Yasskin   void *&CurVal = EEState.getGlobalAddressMap(locked)[GV];
1656d8dd189SChris Lattner   assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!");
1666d8dd189SChris Lattner   CurVal = Addr;
1676d8dd189SChris Lattner 
168868e3f09SDaniel Dunbar   // If we are using the reverse mapping, add it too.
169f98e981cSJeffrey Yasskin   if (!EEState.getGlobalAddressReverseMap(locked).empty()) {
1706bf87df5SJeffrey Yasskin     AssertingVH<const GlobalValue> &V =
171f98e981cSJeffrey Yasskin       EEState.getGlobalAddressReverseMap(locked)[Addr];
1726d8dd189SChris Lattner     assert((V == 0 || GV == 0) && "GlobalMapping already established!");
1736d8dd189SChris Lattner     V = GV;
1746d8dd189SChris Lattner   }
1756d8dd189SChris Lattner }
1766d8dd189SChris Lattner 
1776d8dd189SChris Lattner void ExecutionEngine::clearAllGlobalMappings() {
1786d8dd189SChris Lattner   MutexGuard locked(lock);
1796d8dd189SChris Lattner 
180f98e981cSJeffrey Yasskin   EEState.getGlobalAddressMap(locked).clear();
181f98e981cSJeffrey Yasskin   EEState.getGlobalAddressReverseMap(locked).clear();
1826d8dd189SChris Lattner }
1836d8dd189SChris Lattner 
1848f83fc4dSNate Begeman void ExecutionEngine::clearGlobalMappingsFromModule(Module *M) {
1858f83fc4dSNate Begeman   MutexGuard locked(lock);
1868f83fc4dSNate Begeman 
187868e3f09SDaniel Dunbar   for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI)
188f98e981cSJeffrey Yasskin     EEState.RemoveMapping(locked, FI);
1898f83fc4dSNate Begeman   for (Module::global_iterator GI = M->global_begin(), GE = M->global_end();
190868e3f09SDaniel Dunbar        GI != GE; ++GI)
191f98e981cSJeffrey Yasskin     EEState.RemoveMapping(locked, GI);
1928f83fc4dSNate Begeman }
1938f83fc4dSNate Begeman 
194ee181730SChris Lattner void *ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) {
1956d8dd189SChris Lattner   MutexGuard locked(lock);
1966d8dd189SChris Lattner 
197d0fc8f80SJeffrey Yasskin   ExecutionEngineState::GlobalAddressMapTy &Map =
198f98e981cSJeffrey Yasskin     EEState.getGlobalAddressMap(locked);
199ee181730SChris Lattner 
2006d8dd189SChris Lattner   // Deleting from the mapping?
201868e3f09SDaniel Dunbar   if (Addr == 0)
202f98e981cSJeffrey Yasskin     return EEState.RemoveMapping(locked, GV);
203ee181730SChris Lattner 
204d0fc8f80SJeffrey Yasskin   void *&CurVal = Map[GV];
205ee181730SChris Lattner   void *OldVal = CurVal;
206ee181730SChris Lattner 
207f98e981cSJeffrey Yasskin   if (CurVal && !EEState.getGlobalAddressReverseMap(locked).empty())
208f98e981cSJeffrey Yasskin     EEState.getGlobalAddressReverseMap(locked).erase(CurVal);
2096d8dd189SChris Lattner   CurVal = Addr;
2106d8dd189SChris Lattner 
211868e3f09SDaniel Dunbar   // If we are using the reverse mapping, add it too.
212f98e981cSJeffrey Yasskin   if (!EEState.getGlobalAddressReverseMap(locked).empty()) {
2136bf87df5SJeffrey Yasskin     AssertingVH<const GlobalValue> &V =
214f98e981cSJeffrey Yasskin       EEState.getGlobalAddressReverseMap(locked)[Addr];
2156d8dd189SChris Lattner     assert((V == 0 || GV == 0) && "GlobalMapping already established!");
2166d8dd189SChris Lattner     V = GV;
2176d8dd189SChris Lattner   }
218ee181730SChris Lattner   return OldVal;
2196d8dd189SChris Lattner }
2206d8dd189SChris Lattner 
2216d8dd189SChris Lattner void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
2226d8dd189SChris Lattner   MutexGuard locked(lock);
2236d8dd189SChris Lattner 
224d0fc8f80SJeffrey Yasskin   ExecutionEngineState::GlobalAddressMapTy::iterator I =
225d0fc8f80SJeffrey Yasskin     EEState.getGlobalAddressMap(locked).find(GV);
226f98e981cSJeffrey Yasskin   return I != EEState.getGlobalAddressMap(locked).end() ? I->second : 0;
2276d8dd189SChris Lattner }
2286d8dd189SChris Lattner 
229748e8579SChris Lattner const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
23079876f52SReid Spencer   MutexGuard locked(lock);
23179876f52SReid Spencer 
232748e8579SChris Lattner   // If we haven't computed the reverse mapping yet, do so first.
233f98e981cSJeffrey Yasskin   if (EEState.getGlobalAddressReverseMap(locked).empty()) {
234d0fc8f80SJeffrey Yasskin     for (ExecutionEngineState::GlobalAddressMapTy::iterator
235f98e981cSJeffrey Yasskin          I = EEState.getGlobalAddressMap(locked).begin(),
236f98e981cSJeffrey Yasskin          E = EEState.getGlobalAddressMap(locked).end(); I != E; ++I)
237e4f47434SDaniel Dunbar       EEState.getGlobalAddressReverseMap(locked).insert(std::make_pair(
238e4f47434SDaniel Dunbar                                                           I->second, I->first));
239748e8579SChris Lattner   }
240748e8579SChris Lattner 
2416bf87df5SJeffrey Yasskin   std::map<void *, AssertingVH<const GlobalValue> >::iterator I =
242f98e981cSJeffrey Yasskin     EEState.getGlobalAddressReverseMap(locked).find(Addr);
243f98e981cSJeffrey Yasskin   return I != EEState.getGlobalAddressReverseMap(locked).end() ? I->second : 0;
244748e8579SChris Lattner }
2455a0d4829SChris Lattner 
246bfd38abbSJeffrey Yasskin namespace {
247bfd38abbSJeffrey Yasskin class ArgvArray {
248bfd38abbSJeffrey Yasskin   char *Array;
249bfd38abbSJeffrey Yasskin   std::vector<char*> Values;
250bfd38abbSJeffrey Yasskin public:
251bfd38abbSJeffrey Yasskin   ArgvArray() : Array(NULL) {}
252bfd38abbSJeffrey Yasskin   ~ArgvArray() { clear(); }
253bfd38abbSJeffrey Yasskin   void clear() {
254bfd38abbSJeffrey Yasskin     delete[] Array;
255bfd38abbSJeffrey Yasskin     Array = NULL;
256bfd38abbSJeffrey Yasskin     for (size_t I = 0, E = Values.size(); I != E; ++I) {
257bfd38abbSJeffrey Yasskin       delete[] Values[I];
258bfd38abbSJeffrey Yasskin     }
259bfd38abbSJeffrey Yasskin     Values.clear();
260bfd38abbSJeffrey Yasskin   }
261bfd38abbSJeffrey Yasskin   /// Turn a vector of strings into a nice argv style array of pointers to null
262bfd38abbSJeffrey Yasskin   /// terminated strings.
263bfd38abbSJeffrey Yasskin   void *reset(LLVMContext &C, ExecutionEngine *EE,
264bfd38abbSJeffrey Yasskin               const std::vector<std::string> &InputArgv);
265bfd38abbSJeffrey Yasskin };
266bfd38abbSJeffrey Yasskin }  // anonymous namespace
267bfd38abbSJeffrey Yasskin void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE,
2685a0d4829SChris Lattner                        const std::vector<std::string> &InputArgv) {
269bfd38abbSJeffrey Yasskin   clear();  // Free the old contents.
2705da3f051SChandler Carruth   unsigned PtrSize = EE->getDataLayout()->getPointerSize();
271bfd38abbSJeffrey Yasskin   Array = new char[(InputArgv.size()+1)*PtrSize];
2725a0d4829SChris Lattner 
273bfd38abbSJeffrey Yasskin   DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array << "\n");
274229907cdSChris Lattner   Type *SBytePtr = Type::getInt8PtrTy(C);
2755a0d4829SChris Lattner 
2765a0d4829SChris Lattner   for (unsigned i = 0; i != InputArgv.size(); ++i) {
2775a0d4829SChris Lattner     unsigned Size = InputArgv[i].size()+1;
2785a0d4829SChris Lattner     char *Dest = new char[Size];
279bfd38abbSJeffrey Yasskin     Values.push_back(Dest);
2800967d2dfSDavid Greene     DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n");
2815a0d4829SChris Lattner 
2825a0d4829SChris Lattner     std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
2835a0d4829SChris Lattner     Dest[Size-1] = 0;
2845a0d4829SChris Lattner 
285bfd38abbSJeffrey Yasskin     // Endian safe: Array[i] = (PointerTy)Dest;
286bfd38abbSJeffrey Yasskin     EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
2875a0d4829SChris Lattner                            SBytePtr);
2885a0d4829SChris Lattner   }
2895a0d4829SChris Lattner 
2905a0d4829SChris Lattner   // Null terminate it
2915a0d4829SChris Lattner   EE->StoreValueToMemory(PTOGV(0),
292bfd38abbSJeffrey Yasskin                          (GenericValue*)(Array+InputArgv.size()*PtrSize),
2935a0d4829SChris Lattner                          SBytePtr);
294bfd38abbSJeffrey Yasskin   return Array;
2955a0d4829SChris Lattner }
2965a0d4829SChris Lattner 
29741fa2bd1SChris Lattner void ExecutionEngine::runStaticConstructorsDestructors(Module *module,
29841fa2bd1SChris Lattner                                                        bool isDtors) {
299faae50b6SChris Lattner   const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
3001a9a0b7bSEvan Cheng   GlobalVariable *GV = module->getNamedGlobal(Name);
301fe36eaebSChris Lattner 
302fe36eaebSChris Lattner   // If this global has internal linkage, or if it has a use, then it must be
303fe36eaebSChris Lattner   // an old-style (llvmgcc3) static ctor with __main linked in and in use.  If
3040621caefSChris Lattner   // this is the case, don't execute any of the global ctors, __main will do
3050621caefSChris Lattner   // it.
3066de96a1bSRafael Espindola   if (!GV || GV->isDeclaration() || GV->hasLocalLinkage()) return;
307faae50b6SChris Lattner 
3080cbfcb2bSNick Lewycky   // Should be an array of '{ i32, void ()* }' structs.  The first value is
3090621caefSChris Lattner   // the init priority, which we ignore.
31000245f42SChris Lattner   ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
31100245f42SChris Lattner   if (InitList == 0)
3120f857898SNick Lewycky     return;
313868e3f09SDaniel Dunbar   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
31400245f42SChris Lattner     ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i));
31500245f42SChris Lattner     if (CS == 0) continue;
316faae50b6SChris Lattner 
317faae50b6SChris Lattner     Constant *FP = CS->getOperand(1);
318faae50b6SChris Lattner     if (FP->isNullValue())
3190f857898SNick Lewycky       continue;  // Found a sentinal value, ignore.
320faae50b6SChris Lattner 
321868e3f09SDaniel Dunbar     // Strip off constant expression casts.
322faae50b6SChris Lattner     if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
3236c38f0bbSReid Spencer       if (CE->isCast())
324faae50b6SChris Lattner         FP = CE->getOperand(0);
325868e3f09SDaniel Dunbar 
326faae50b6SChris Lattner     // Execute the ctor/dtor function!
327868e3f09SDaniel Dunbar     if (Function *F = dyn_cast<Function>(FP))
328faae50b6SChris Lattner       runFunction(F, std::vector<GenericValue>());
329868e3f09SDaniel Dunbar 
330868e3f09SDaniel Dunbar     // FIXME: It is marginally lame that we just do nothing here if we see an
331868e3f09SDaniel Dunbar     // entry we don't recognize. It might not be unreasonable for the verifier
332868e3f09SDaniel Dunbar     // to not even allow this and just assert here.
333faae50b6SChris Lattner   }
334faae50b6SChris Lattner }
3351a9a0b7bSEvan Cheng 
3361a9a0b7bSEvan Cheng void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
3371a9a0b7bSEvan Cheng   // Execute global ctors/dtors for each module in the program.
338868e3f09SDaniel Dunbar   for (unsigned i = 0, e = Modules.size(); i != e; ++i)
339868e3f09SDaniel Dunbar     runStaticConstructorsDestructors(Modules[i], isDtors);
3400621caefSChris Lattner }
341faae50b6SChris Lattner 
342cf3e3017SDan Gohman #ifndef NDEBUG
3431202d1b1SDuncan Sands /// isTargetNullPtr - Return whether the target pointer stored at Loc is null.
3441202d1b1SDuncan Sands static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) {
3455da3f051SChandler Carruth   unsigned PtrSize = EE->getDataLayout()->getPointerSize();
3461202d1b1SDuncan Sands   for (unsigned i = 0; i < PtrSize; ++i)
3471202d1b1SDuncan Sands     if (*(i + (uint8_t*)Loc))
3481202d1b1SDuncan Sands       return false;
3491202d1b1SDuncan Sands   return true;
3501202d1b1SDuncan Sands }
351cf3e3017SDan Gohman #endif
3521202d1b1SDuncan Sands 
3535a0d4829SChris Lattner int ExecutionEngine::runFunctionAsMain(Function *Fn,
3545a0d4829SChris Lattner                                        const std::vector<std::string> &argv,
3555a0d4829SChris Lattner                                        const char * const * envp) {
3565a0d4829SChris Lattner   std::vector<GenericValue> GVArgs;
3575a0d4829SChris Lattner   GenericValue GVArgc;
35887aa65f4SReid Spencer   GVArgc.IntVal = APInt(32, argv.size());
3598c32c111SAnton Korobeynikov 
3608c32c111SAnton Korobeynikov   // Check main() type
361b1cad0b3SChris Lattner   unsigned NumArgs = Fn->getFunctionType()->getNumParams();
362229907cdSChris Lattner   FunctionType *FTy = Fn->getFunctionType();
363229907cdSChris Lattner   Type* PPInt8Ty = Type::getInt8PtrTy(Fn->getContext())->getPointerTo();
364868e3f09SDaniel Dunbar 
365868e3f09SDaniel Dunbar   // Check the argument types.
366868e3f09SDaniel Dunbar   if (NumArgs > 3)
3672104b8d3SChris Lattner     report_fatal_error("Invalid number of arguments of main() supplied");
368868e3f09SDaniel Dunbar   if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
369868e3f09SDaniel Dunbar     report_fatal_error("Invalid type for third argument of main() supplied");
370868e3f09SDaniel Dunbar   if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
371868e3f09SDaniel Dunbar     report_fatal_error("Invalid type for second argument of main() supplied");
372868e3f09SDaniel Dunbar   if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
373868e3f09SDaniel Dunbar     report_fatal_error("Invalid type for first argument of main() supplied");
374868e3f09SDaniel Dunbar   if (!FTy->getReturnType()->isIntegerTy() &&
375868e3f09SDaniel Dunbar       !FTy->getReturnType()->isVoidTy())
376868e3f09SDaniel Dunbar     report_fatal_error("Invalid return type of main() supplied");
3778c32c111SAnton Korobeynikov 
378bfd38abbSJeffrey Yasskin   ArgvArray CArgv;
379bfd38abbSJeffrey Yasskin   ArgvArray CEnv;
380b1cad0b3SChris Lattner   if (NumArgs) {
3815a0d4829SChris Lattner     GVArgs.push_back(GVArgc); // Arg #0 = argc.
382b1cad0b3SChris Lattner     if (NumArgs > 1) {
38355f1c09eSOwen Anderson       // Arg #1 = argv.
384bfd38abbSJeffrey Yasskin       GVArgs.push_back(PTOGV(CArgv.reset(Fn->getContext(), this, argv)));
3851202d1b1SDuncan Sands       assert(!isTargetNullPtr(this, GVTOP(GVArgs[1])) &&
386b1cad0b3SChris Lattner              "argv[0] was null after CreateArgv");
387b1cad0b3SChris Lattner       if (NumArgs > 2) {
3885a0d4829SChris Lattner         std::vector<std::string> EnvVars;
3895a0d4829SChris Lattner         for (unsigned i = 0; envp[i]; ++i)
3905a0d4829SChris Lattner           EnvVars.push_back(envp[i]);
39155f1c09eSOwen Anderson         // Arg #2 = envp.
392bfd38abbSJeffrey Yasskin         GVArgs.push_back(PTOGV(CEnv.reset(Fn->getContext(), this, EnvVars)));
393b1cad0b3SChris Lattner       }
394b1cad0b3SChris Lattner     }
395b1cad0b3SChris Lattner   }
396868e3f09SDaniel Dunbar 
39787aa65f4SReid Spencer   return runFunction(Fn, GVArgs).IntVal.getZExtValue();
3985a0d4829SChris Lattner }
3995a0d4829SChris Lattner 
400091217beSJeffrey Yasskin ExecutionEngine *ExecutionEngine::create(Module *M,
401603682adSReid Spencer                                          bool ForceInterpreter,
4027ff05bf5SEvan Cheng                                          std::string *ErrorStr,
40370415d97SJeffrey Yasskin                                          CodeGenOpt::Level OptLevel,
40470415d97SJeffrey Yasskin                                          bool GVsWithCode) {
405add6f1d2SOwen Anderson   EngineBuilder EB =  EngineBuilder(M)
406fc8a2d5aSReid Kleckner       .setEngineKind(ForceInterpreter
407fc8a2d5aSReid Kleckner                      ? EngineKind::Interpreter
408fc8a2d5aSReid Kleckner                      : EngineKind::JIT)
409fc8a2d5aSReid Kleckner       .setErrorStr(ErrorStr)
410fc8a2d5aSReid Kleckner       .setOptLevel(OptLevel)
411add6f1d2SOwen Anderson       .setAllocateGVsWithCode(GVsWithCode);
412add6f1d2SOwen Anderson 
413add6f1d2SOwen Anderson   return EB.create();
414fc8a2d5aSReid Kleckner }
4154bd3bd5bSBrian Gaeke 
4160bd34fbdSDylan Noblesmith /// createJIT - This is the factory method for creating a JIT for the current
4170bd34fbdSDylan Noblesmith /// machine, it does not fall back to the interpreter.  This takes ownership
4180bd34fbdSDylan Noblesmith /// of the module.
4190bd34fbdSDylan Noblesmith ExecutionEngine *ExecutionEngine::createJIT(Module *M,
4200bd34fbdSDylan Noblesmith                                             std::string *ErrorStr,
4210bd34fbdSDylan Noblesmith                                             JITMemoryManager *JMM,
42219a58df9SDylan Noblesmith                                             CodeGenOpt::Level OL,
4230bd34fbdSDylan Noblesmith                                             bool GVsWithCode,
4242129f596SEvan Cheng                                             Reloc::Model RM,
4250bd34fbdSDylan Noblesmith                                             CodeModel::Model CMM) {
4260bd34fbdSDylan Noblesmith   if (ExecutionEngine::JITCtor == 0) {
4270bd34fbdSDylan Noblesmith     if (ErrorStr)
4280bd34fbdSDylan Noblesmith       *ErrorStr = "JIT has not been linked in.";
4290bd34fbdSDylan Noblesmith     return 0;
4300bd34fbdSDylan Noblesmith   }
4310bd34fbdSDylan Noblesmith 
4320bd34fbdSDylan Noblesmith   // Use the defaults for extra parameters.  Users can use EngineBuilder to
4330bd34fbdSDylan Noblesmith   // set them.
434add6f1d2SOwen Anderson   EngineBuilder EB(M);
435add6f1d2SOwen Anderson   EB.setEngineKind(EngineKind::JIT);
436add6f1d2SOwen Anderson   EB.setErrorStr(ErrorStr);
437add6f1d2SOwen Anderson   EB.setRelocationModel(RM);
438add6f1d2SOwen Anderson   EB.setCodeModel(CMM);
439add6f1d2SOwen Anderson   EB.setAllocateGVsWithCode(GVsWithCode);
440add6f1d2SOwen Anderson   EB.setOptLevel(OL);
441add6f1d2SOwen Anderson   EB.setJITMemoryManager(JMM);
4420bd34fbdSDylan Noblesmith 
443dff24786SPeter Collingbourne   // TODO: permit custom TargetOptions here
444add6f1d2SOwen Anderson   TargetMachine *TM = EB.selectTarget();
4450bd34fbdSDylan Noblesmith   if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0;
4460bd34fbdSDylan Noblesmith 
4477f26246aSDylan Noblesmith   return ExecutionEngine::JITCtor(M, ErrorStr, JMM, GVsWithCode, TM);
4480bd34fbdSDylan Noblesmith }
4490bd34fbdSDylan Noblesmith 
450add6f1d2SOwen Anderson ExecutionEngine *EngineBuilder::create(TargetMachine *TM) {
45125a3d816SBenjamin Kramer   OwningPtr<TargetMachine> TheTM(TM); // Take ownership.
45225a3d816SBenjamin Kramer 
453a53414fdSNick Lewycky   // Make sure we can resolve symbols in the program as well. The zero arg
454a53414fdSNick Lewycky   // to the function tells DynamicLibrary to load the program, not a library.
455a53414fdSNick Lewycky   if (sys::DynamicLibrary::LoadLibraryPermanently(0, ErrorStr))
456a53414fdSNick Lewycky     return 0;
457a53414fdSNick Lewycky 
458fc8a2d5aSReid Kleckner   // If the user specified a memory manager but didn't specify which engine to
459fc8a2d5aSReid Kleckner   // create, we assume they only want the JIT, and we fail if they only want
460fc8a2d5aSReid Kleckner   // the interpreter.
461fc8a2d5aSReid Kleckner   if (JMM) {
46241fa2bd1SChris Lattner     if (WhichEngine & EngineKind::JIT)
463fc8a2d5aSReid Kleckner       WhichEngine = EngineKind::JIT;
46441fa2bd1SChris Lattner     else {
4658bcc6445SChris Lattner       if (ErrorStr)
466fc8a2d5aSReid Kleckner         *ErrorStr = "Cannot create an interpreter with a memory manager.";
46741fa2bd1SChris Lattner       return 0;
468fc8a2d5aSReid Kleckner     }
4694bd3bd5bSBrian Gaeke   }
4704bd3bd5bSBrian Gaeke 
471fc8a2d5aSReid Kleckner   // Unless the interpreter was explicitly selected or the JIT is not linked,
472fc8a2d5aSReid Kleckner   // try making a JIT.
47325a3d816SBenjamin Kramer   if ((WhichEngine & EngineKind::JIT) && TheTM) {
4747f26246aSDylan Noblesmith     Triple TT(M->getTargetTriple());
4757f26246aSDylan Noblesmith     if (!TM->getTarget().hasJIT()) {
4767f26246aSDylan Noblesmith       errs() << "WARNING: This target JIT is not designed for the host"
4777f26246aSDylan Noblesmith              << " you are running.  If bad things happen, please choose"
4787f26246aSDylan Noblesmith              << " a different -march switch.\n";
4797f26246aSDylan Noblesmith     }
4807f26246aSDylan Noblesmith 
48170ff8b05SDaniel Dunbar     if (UseMCJIT && ExecutionEngine::MCJITCtor) {
48270ff8b05SDaniel Dunbar       ExecutionEngine *EE =
4837f26246aSDylan Noblesmith         ExecutionEngine::MCJITCtor(M, ErrorStr, JMM,
48425a3d816SBenjamin Kramer                                    AllocateGVsWithCode, TheTM.take());
48570ff8b05SDaniel Dunbar       if (EE) return EE;
48670ff8b05SDaniel Dunbar     } else if (ExecutionEngine::JITCtor) {
48741fa2bd1SChris Lattner       ExecutionEngine *EE =
4887f26246aSDylan Noblesmith         ExecutionEngine::JITCtor(M, ErrorStr, JMM,
48925a3d816SBenjamin Kramer                                  AllocateGVsWithCode, TheTM.take());
49041fa2bd1SChris Lattner       if (EE) return EE;
49141fa2bd1SChris Lattner     }
492fc8a2d5aSReid Kleckner   }
493fc8a2d5aSReid Kleckner 
494fc8a2d5aSReid Kleckner   // If we can't make a JIT and we didn't request one specifically, try making
495fc8a2d5aSReid Kleckner   // an interpreter instead.
49641fa2bd1SChris Lattner   if (WhichEngine & EngineKind::Interpreter) {
49741fa2bd1SChris Lattner     if (ExecutionEngine::InterpCtor)
498091217beSJeffrey Yasskin       return ExecutionEngine::InterpCtor(M, ErrorStr);
4998bcc6445SChris Lattner     if (ErrorStr)
50041fa2bd1SChris Lattner       *ErrorStr = "Interpreter has not been linked in.";
50141fa2bd1SChris Lattner     return 0;
502fc8a2d5aSReid Kleckner   }
503fc8a2d5aSReid Kleckner 
504bea6753fSJim Grosbach   if ((WhichEngine & EngineKind::JIT) && ExecutionEngine::JITCtor == 0 &&
505bea6753fSJim Grosbach       ExecutionEngine::MCJITCtor == 0) {
5068bcc6445SChris Lattner     if (ErrorStr)
5078bcc6445SChris Lattner       *ErrorStr = "JIT has not been linked in.";
5088bcc6445SChris Lattner   }
509868e3f09SDaniel Dunbar 
51041fa2bd1SChris Lattner   return 0;
511b5163bb9SChris Lattner }
512b5163bb9SChris Lattner 
513996fe010SChris Lattner void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
5141678e859SBrian Gaeke   if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
515996fe010SChris Lattner     return getPointerToFunction(F);
516996fe010SChris Lattner 
51779876f52SReid Spencer   MutexGuard locked(lock);
518868e3f09SDaniel Dunbar   if (void *P = EEState.getGlobalAddressMap(locked)[GV])
519868e3f09SDaniel Dunbar     return P;
52069e84901SJeff Cohen 
52169e84901SJeff Cohen   // Global variable might have been added since interpreter started.
52269e84901SJeff Cohen   if (GlobalVariable *GVar =
52369e84901SJeff Cohen           const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
52469e84901SJeff Cohen     EmitGlobalVariable(GVar);
52569e84901SJeff Cohen   else
526fbcc663cSTorok Edwin     llvm_unreachable("Global hasn't had an address allocated yet!");
527868e3f09SDaniel Dunbar 
528d0fc8f80SJeffrey Yasskin   return EEState.getGlobalAddressMap(locked)[GV];
529996fe010SChris Lattner }
530996fe010SChris Lattner 
531868e3f09SDaniel Dunbar /// \brief Converts a Constant* into a GenericValue, including handling of
532868e3f09SDaniel Dunbar /// ConstantExpr values.
533996fe010SChris Lattner GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
5346c38f0bbSReid Spencer   // If its undefined, return the garbage.
535bcbdbfb3SJay Foad   if (isa<UndefValue>(C)) {
536bcbdbfb3SJay Foad     GenericValue Result;
537bcbdbfb3SJay Foad     switch (C->getType()->getTypeID()) {
538be79a7acSNadav Rotem     default:
539be79a7acSNadav Rotem       break;
540bcbdbfb3SJay Foad     case Type::IntegerTyID:
541bcbdbfb3SJay Foad     case Type::X86_FP80TyID:
542bcbdbfb3SJay Foad     case Type::FP128TyID:
543bcbdbfb3SJay Foad     case Type::PPC_FP128TyID:
544bcbdbfb3SJay Foad       // Although the value is undefined, we still have to construct an APInt
545bcbdbfb3SJay Foad       // with the correct bit width.
546bcbdbfb3SJay Foad       Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0);
547bcbdbfb3SJay Foad       break;
548be79a7acSNadav Rotem     case Type::VectorTyID:
549be79a7acSNadav Rotem       // if the whole vector is 'undef' just reserve memory for the value.
550be79a7acSNadav Rotem       const VectorType* VTy = dyn_cast<VectorType>(C->getType());
551be79a7acSNadav Rotem       const Type *ElemTy = VTy->getElementType();
552be79a7acSNadav Rotem       unsigned int elemNum = VTy->getNumElements();
553be79a7acSNadav Rotem       Result.AggregateVal.resize(elemNum);
554be79a7acSNadav Rotem       if (ElemTy->isIntegerTy())
555be79a7acSNadav Rotem         for (unsigned int i = 0; i < elemNum; ++i)
556be79a7acSNadav Rotem           Result.AggregateVal[i].IntVal =
557be79a7acSNadav Rotem             APInt(ElemTy->getPrimitiveSizeInBits(), 0);
558bcbdbfb3SJay Foad       break;
559bcbdbfb3SJay Foad     }
560bcbdbfb3SJay Foad     return Result;
561bcbdbfb3SJay Foad   }
5629de0d14dSChris Lattner 
563868e3f09SDaniel Dunbar   // Otherwise, if the value is a ConstantExpr...
5646c38f0bbSReid Spencer   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
5654fd528f2SReid Spencer     Constant *Op0 = CE->getOperand(0);
5669de0d14dSChris Lattner     switch (CE->getOpcode()) {
5679de0d14dSChris Lattner     case Instruction::GetElementPtr: {
5686c38f0bbSReid Spencer       // Compute the index
5694fd528f2SReid Spencer       GenericValue Result = getConstantValue(Op0);
570b6ad9822SNuno Lopes       APInt Offset(TD->getPointerSizeInBits(), 0);
571b6ad9822SNuno Lopes       cast<GEPOperator>(CE)->accumulateConstantOffset(*TD, Offset);
5729de0d14dSChris Lattner 
57387aa65f4SReid Spencer       char* tmp = (char*) Result.PointerVal;
574b6ad9822SNuno Lopes       Result = PTOGV(tmp + Offset.getSExtValue());
5759de0d14dSChris Lattner       return Result;
5769de0d14dSChris Lattner     }
5774fd528f2SReid Spencer     case Instruction::Trunc: {
5784fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
5794fd528f2SReid Spencer       uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
5804fd528f2SReid Spencer       GV.IntVal = GV.IntVal.trunc(BitWidth);
5814fd528f2SReid Spencer       return GV;
5824fd528f2SReid Spencer     }
5834fd528f2SReid Spencer     case Instruction::ZExt: {
5844fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
5854fd528f2SReid Spencer       uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
5864fd528f2SReid Spencer       GV.IntVal = GV.IntVal.zext(BitWidth);
5874fd528f2SReid Spencer       return GV;
5884fd528f2SReid Spencer     }
5894fd528f2SReid Spencer     case Instruction::SExt: {
5904fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
5914fd528f2SReid Spencer       uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
5924fd528f2SReid Spencer       GV.IntVal = GV.IntVal.sext(BitWidth);
5934fd528f2SReid Spencer       return GV;
5944fd528f2SReid Spencer     }
5954fd528f2SReid Spencer     case Instruction::FPTrunc: {
596a1336cf5SDale Johannesen       // FIXME long double
5974fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
5984fd528f2SReid Spencer       GV.FloatVal = float(GV.DoubleVal);
5994fd528f2SReid Spencer       return GV;
6004fd528f2SReid Spencer     }
6014fd528f2SReid Spencer     case Instruction::FPExt:{
602a1336cf5SDale Johannesen       // FIXME long double
6034fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
6044fd528f2SReid Spencer       GV.DoubleVal = double(GV.FloatVal);
6054fd528f2SReid Spencer       return GV;
6064fd528f2SReid Spencer     }
6074fd528f2SReid Spencer     case Instruction::UIToFP: {
6084fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
609fdd87907SChris Lattner       if (CE->getType()->isFloatTy())
6104fd528f2SReid Spencer         GV.FloatVal = float(GV.IntVal.roundToDouble());
611fdd87907SChris Lattner       else if (CE->getType()->isDoubleTy())
6124fd528f2SReid Spencer         GV.DoubleVal = GV.IntVal.roundToDouble();
613fdd87907SChris Lattner       else if (CE->getType()->isX86_FP80Ty()) {
61431920b0aSBenjamin Kramer         APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
615ca24fd90SDan Gohman         (void)apf.convertFromAPInt(GV.IntVal,
616ca24fd90SDan Gohman                                    false,
6179150652bSDale Johannesen                                    APFloat::rmNearestTiesToEven);
61854306fe4SDale Johannesen         GV.IntVal = apf.bitcastToAPInt();
619a1336cf5SDale Johannesen       }
6204fd528f2SReid Spencer       return GV;
6214fd528f2SReid Spencer     }
6224fd528f2SReid Spencer     case Instruction::SIToFP: {
6234fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
624fdd87907SChris Lattner       if (CE->getType()->isFloatTy())
6254fd528f2SReid Spencer         GV.FloatVal = float(GV.IntVal.signedRoundToDouble());
626fdd87907SChris Lattner       else if (CE->getType()->isDoubleTy())
6274fd528f2SReid Spencer         GV.DoubleVal = GV.IntVal.signedRoundToDouble();
628fdd87907SChris Lattner       else if (CE->getType()->isX86_FP80Ty()) {
62931920b0aSBenjamin Kramer         APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
630ca24fd90SDan Gohman         (void)apf.convertFromAPInt(GV.IntVal,
631ca24fd90SDan Gohman                                    true,
6329150652bSDale Johannesen                                    APFloat::rmNearestTiesToEven);
63354306fe4SDale Johannesen         GV.IntVal = apf.bitcastToAPInt();
634a1336cf5SDale Johannesen       }
6354fd528f2SReid Spencer       return GV;
6364fd528f2SReid Spencer     }
6374fd528f2SReid Spencer     case Instruction::FPToUI: // double->APInt conversion handles sign
6384fd528f2SReid Spencer     case Instruction::FPToSI: {
6394fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
6404fd528f2SReid Spencer       uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
641fdd87907SChris Lattner       if (Op0->getType()->isFloatTy())
6424fd528f2SReid Spencer         GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth);
643fdd87907SChris Lattner       else if (Op0->getType()->isDoubleTy())
6444fd528f2SReid Spencer         GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth);
645fdd87907SChris Lattner       else if (Op0->getType()->isX86_FP80Ty()) {
64629178a34STim Northover         APFloat apf = APFloat(APFloat::x87DoubleExtended, GV.IntVal);
647a1336cf5SDale Johannesen         uint64_t v;
6484f0bd68cSDale Johannesen         bool ignored;
649a1336cf5SDale Johannesen         (void)apf.convertToInteger(&v, BitWidth,
650a1336cf5SDale Johannesen                                    CE->getOpcode()==Instruction::FPToSI,
6514f0bd68cSDale Johannesen                                    APFloat::rmTowardZero, &ignored);
652a1336cf5SDale Johannesen         GV.IntVal = v; // endian?
653a1336cf5SDale Johannesen       }
6544fd528f2SReid Spencer       return GV;
6554fd528f2SReid Spencer     }
6566c38f0bbSReid Spencer     case Instruction::PtrToInt: {
6574fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
658fc1f2cd3SEli Friedman       uint32_t PtrWidth = TD->getTypeSizeInBits(Op0->getType());
659fc1f2cd3SEli Friedman       assert(PtrWidth <= 64 && "Bad pointer width");
6604fd528f2SReid Spencer       GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
661fc1f2cd3SEli Friedman       uint32_t IntWidth = TD->getTypeSizeInBits(CE->getType());
662fc1f2cd3SEli Friedman       GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth);
6634fd528f2SReid Spencer       return GV;
6644fd528f2SReid Spencer     }
6654fd528f2SReid Spencer     case Instruction::IntToPtr: {
6664fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
667bf3eeb2dSMicah Villmow       uint32_t PtrWidth = TD->getTypeSizeInBits(CE->getType());
6684fd528f2SReid Spencer       GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
6694fd528f2SReid Spencer       assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width");
6704fd528f2SReid Spencer       GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue()));
6716c38f0bbSReid Spencer       return GV;
6726c38f0bbSReid Spencer     }
6736c38f0bbSReid Spencer     case Instruction::BitCast: {
6744fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
675229907cdSChris Lattner       Type* DestTy = CE->getType();
6764fd528f2SReid Spencer       switch (Op0->getType()->getTypeID()) {
677fbcc663cSTorok Edwin         default: llvm_unreachable("Invalid bitcast operand");
6784fd528f2SReid Spencer         case Type::IntegerTyID:
6799dff9becSDuncan Sands           assert(DestTy->isFloatingPointTy() && "invalid bitcast");
680fdd87907SChris Lattner           if (DestTy->isFloatTy())
6814fd528f2SReid Spencer             GV.FloatVal = GV.IntVal.bitsToFloat();
682fdd87907SChris Lattner           else if (DestTy->isDoubleTy())
6834fd528f2SReid Spencer             GV.DoubleVal = GV.IntVal.bitsToDouble();
6846c38f0bbSReid Spencer           break;
6854fd528f2SReid Spencer         case Type::FloatTyID:
6869dff9becSDuncan Sands           assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
6873447fb01SJay Foad           GV.IntVal = APInt::floatToBits(GV.FloatVal);
6884fd528f2SReid Spencer           break;
6894fd528f2SReid Spencer         case Type::DoubleTyID:
6909dff9becSDuncan Sands           assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
6913447fb01SJay Foad           GV.IntVal = APInt::doubleToBits(GV.DoubleVal);
6924fd528f2SReid Spencer           break;
6934fd528f2SReid Spencer         case Type::PointerTyID:
69419d0b47bSDuncan Sands           assert(DestTy->isPointerTy() && "Invalid bitcast");
6954fd528f2SReid Spencer           break; // getConstantValue(Op0)  above already converted it
6966c38f0bbSReid Spencer       }
6974fd528f2SReid Spencer       return GV;
69868cbcc3eSChris Lattner     }
69968cbcc3eSChris Lattner     case Instruction::Add:
700a5b9645cSDan Gohman     case Instruction::FAdd:
7014fd528f2SReid Spencer     case Instruction::Sub:
702a5b9645cSDan Gohman     case Instruction::FSub:
7034fd528f2SReid Spencer     case Instruction::Mul:
704a5b9645cSDan Gohman     case Instruction::FMul:
7054fd528f2SReid Spencer     case Instruction::UDiv:
7064fd528f2SReid Spencer     case Instruction::SDiv:
7074fd528f2SReid Spencer     case Instruction::URem:
7084fd528f2SReid Spencer     case Instruction::SRem:
7094fd528f2SReid Spencer     case Instruction::And:
7104fd528f2SReid Spencer     case Instruction::Or:
7114fd528f2SReid Spencer     case Instruction::Xor: {
7124fd528f2SReid Spencer       GenericValue LHS = getConstantValue(Op0);
7134fd528f2SReid Spencer       GenericValue RHS = getConstantValue(CE->getOperand(1));
7144fd528f2SReid Spencer       GenericValue GV;
715c4e6bb5fSChris Lattner       switch (CE->getOperand(0)->getType()->getTypeID()) {
716fbcc663cSTorok Edwin       default: llvm_unreachable("Bad add type!");
7177a9c62baSReid Spencer       case Type::IntegerTyID:
7184fd528f2SReid Spencer         switch (CE->getOpcode()) {
719fbcc663cSTorok Edwin           default: llvm_unreachable("Invalid integer opcode");
7204fd528f2SReid Spencer           case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
7214fd528f2SReid Spencer           case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
7224fd528f2SReid Spencer           case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
7234fd528f2SReid Spencer           case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
7244fd528f2SReid Spencer           case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
7254fd528f2SReid Spencer           case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
7264fd528f2SReid Spencer           case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
7274fd528f2SReid Spencer           case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break;
7284fd528f2SReid Spencer           case Instruction::Or:  GV.IntVal = LHS.IntVal | RHS.IntVal; break;
7294fd528f2SReid Spencer           case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break;
7304fd528f2SReid Spencer         }
731c4e6bb5fSChris Lattner         break;
732c4e6bb5fSChris Lattner       case Type::FloatTyID:
7334fd528f2SReid Spencer         switch (CE->getOpcode()) {
734fbcc663cSTorok Edwin           default: llvm_unreachable("Invalid float opcode");
735a5b9645cSDan Gohman           case Instruction::FAdd:
7364fd528f2SReid Spencer             GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break;
737a5b9645cSDan Gohman           case Instruction::FSub:
7384fd528f2SReid Spencer             GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break;
739a5b9645cSDan Gohman           case Instruction::FMul:
7404fd528f2SReid Spencer             GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break;
7414fd528f2SReid Spencer           case Instruction::FDiv:
7424fd528f2SReid Spencer             GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break;
7434fd528f2SReid Spencer           case Instruction::FRem:
74493cd0f1cSChris Lattner             GV.FloatVal = std::fmod(LHS.FloatVal,RHS.FloatVal); break;
7454fd528f2SReid Spencer         }
746c4e6bb5fSChris Lattner         break;
747c4e6bb5fSChris Lattner       case Type::DoubleTyID:
7484fd528f2SReid Spencer         switch (CE->getOpcode()) {
749fbcc663cSTorok Edwin           default: llvm_unreachable("Invalid double opcode");
750a5b9645cSDan Gohman           case Instruction::FAdd:
7514fd528f2SReid Spencer             GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break;
752a5b9645cSDan Gohman           case Instruction::FSub:
7534fd528f2SReid Spencer             GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break;
754a5b9645cSDan Gohman           case Instruction::FMul:
7554fd528f2SReid Spencer             GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break;
7564fd528f2SReid Spencer           case Instruction::FDiv:
7574fd528f2SReid Spencer             GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break;
7584fd528f2SReid Spencer           case Instruction::FRem:
75993cd0f1cSChris Lattner             GV.DoubleVal = std::fmod(LHS.DoubleVal,RHS.DoubleVal); break;
7604fd528f2SReid Spencer         }
761c4e6bb5fSChris Lattner         break;
762a1336cf5SDale Johannesen       case Type::X86_FP80TyID:
763a1336cf5SDale Johannesen       case Type::PPC_FP128TyID:
764a1336cf5SDale Johannesen       case Type::FP128TyID: {
76529178a34STim Northover         const fltSemantics &Sem = CE->getOperand(0)->getType()->getFltSemantics();
76629178a34STim Northover         APFloat apfLHS = APFloat(Sem, LHS.IntVal);
767a1336cf5SDale Johannesen         switch (CE->getOpcode()) {
768e4f47434SDaniel Dunbar           default: llvm_unreachable("Invalid long double opcode");
769a5b9645cSDan Gohman           case Instruction::FAdd:
77029178a34STim Northover             apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven);
77154306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
772a1336cf5SDale Johannesen             break;
773a5b9645cSDan Gohman           case Instruction::FSub:
77429178a34STim Northover             apfLHS.subtract(APFloat(Sem, RHS.IntVal),
77529178a34STim Northover                             APFloat::rmNearestTiesToEven);
77654306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
777a1336cf5SDale Johannesen             break;
778a5b9645cSDan Gohman           case Instruction::FMul:
77929178a34STim Northover             apfLHS.multiply(APFloat(Sem, RHS.IntVal),
78029178a34STim Northover                             APFloat::rmNearestTiesToEven);
78154306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
782a1336cf5SDale Johannesen             break;
783a1336cf5SDale Johannesen           case Instruction::FDiv:
78429178a34STim Northover             apfLHS.divide(APFloat(Sem, RHS.IntVal),
78529178a34STim Northover                           APFloat::rmNearestTiesToEven);
78654306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
787a1336cf5SDale Johannesen             break;
788a1336cf5SDale Johannesen           case Instruction::FRem:
78929178a34STim Northover             apfLHS.mod(APFloat(Sem, RHS.IntVal),
79029178a34STim Northover                        APFloat::rmNearestTiesToEven);
79154306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
792a1336cf5SDale Johannesen             break;
793a1336cf5SDale Johannesen           }
794a1336cf5SDale Johannesen         }
795a1336cf5SDale Johannesen         break;
796c4e6bb5fSChris Lattner       }
7974fd528f2SReid Spencer       return GV;
7984fd528f2SReid Spencer     }
7999de0d14dSChris Lattner     default:
80068cbcc3eSChris Lattner       break;
80168cbcc3eSChris Lattner     }
802868e3f09SDaniel Dunbar 
803868e3f09SDaniel Dunbar     SmallString<256> Msg;
804868e3f09SDaniel Dunbar     raw_svector_ostream OS(Msg);
805868e3f09SDaniel Dunbar     OS << "ConstantExpr not handled: " << *CE;
806868e3f09SDaniel Dunbar     report_fatal_error(OS.str());
8079de0d14dSChris Lattner   }
808996fe010SChris Lattner 
809868e3f09SDaniel Dunbar   // Otherwise, we have a simple constant.
8104fd528f2SReid Spencer   GenericValue Result;
8116b727599SChris Lattner   switch (C->getType()->getTypeID()) {
81287aa65f4SReid Spencer   case Type::FloatTyID:
813bed9dc42SDale Johannesen     Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
8147a9c62baSReid Spencer     break;
81587aa65f4SReid Spencer   case Type::DoubleTyID:
816bed9dc42SDale Johannesen     Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble();
81787aa65f4SReid Spencer     break;
818a1336cf5SDale Johannesen   case Type::X86_FP80TyID:
819a1336cf5SDale Johannesen   case Type::FP128TyID:
820a1336cf5SDale Johannesen   case Type::PPC_FP128TyID:
82154306fe4SDale Johannesen     Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt();
822a1336cf5SDale Johannesen     break;
82387aa65f4SReid Spencer   case Type::IntegerTyID:
82487aa65f4SReid Spencer     Result.IntVal = cast<ConstantInt>(C)->getValue();
82587aa65f4SReid Spencer     break;
826996fe010SChris Lattner   case Type::PointerTyID:
8276a0fd73bSReid Spencer     if (isa<ConstantPointerNull>(C))
828996fe010SChris Lattner       Result.PointerVal = 0;
8296a0fd73bSReid Spencer     else if (const Function *F = dyn_cast<Function>(C))
8306a0fd73bSReid Spencer       Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
8316a0fd73bSReid Spencer     else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
8326a0fd73bSReid Spencer       Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
8330c778f70SChris Lattner     else if (const BlockAddress *BA = dyn_cast<BlockAddress>(C))
8340c778f70SChris Lattner       Result = PTOGV(getPointerToBasicBlock(const_cast<BasicBlock*>(
8350c778f70SChris Lattner                                                         BA->getBasicBlock())));
836e6492f10SChris Lattner     else
837fbcc663cSTorok Edwin       llvm_unreachable("Unknown constant pointer type!");
838996fe010SChris Lattner     break;
839be79a7acSNadav Rotem   case Type::VectorTyID: {
840be79a7acSNadav Rotem     unsigned elemNum;
841be79a7acSNadav Rotem     Type* ElemTy;
842be79a7acSNadav Rotem     const ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C);
843be79a7acSNadav Rotem     const ConstantVector *CV = dyn_cast<ConstantVector>(C);
844be79a7acSNadav Rotem     const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(C);
845be79a7acSNadav Rotem 
846be79a7acSNadav Rotem     if (CDV) {
847be79a7acSNadav Rotem         elemNum = CDV->getNumElements();
848be79a7acSNadav Rotem         ElemTy = CDV->getElementType();
849be79a7acSNadav Rotem     } else if (CV || CAZ) {
850be79a7acSNadav Rotem         VectorType* VTy = dyn_cast<VectorType>(C->getType());
851be79a7acSNadav Rotem         elemNum = VTy->getNumElements();
852be79a7acSNadav Rotem         ElemTy = VTy->getElementType();
853be79a7acSNadav Rotem     } else {
854be79a7acSNadav Rotem         llvm_unreachable("Unknown constant vector type!");
855be79a7acSNadav Rotem     }
856be79a7acSNadav Rotem 
857be79a7acSNadav Rotem     Result.AggregateVal.resize(elemNum);
858be79a7acSNadav Rotem     // Check if vector holds floats.
859be79a7acSNadav Rotem     if(ElemTy->isFloatTy()) {
860be79a7acSNadav Rotem       if (CAZ) {
861be79a7acSNadav Rotem         GenericValue floatZero;
862be79a7acSNadav Rotem         floatZero.FloatVal = 0.f;
863be79a7acSNadav Rotem         std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(),
864be79a7acSNadav Rotem                   floatZero);
865be79a7acSNadav Rotem         break;
866be79a7acSNadav Rotem       }
867be79a7acSNadav Rotem       if(CV) {
868be79a7acSNadav Rotem         for (unsigned i = 0; i < elemNum; ++i)
869be79a7acSNadav Rotem           if (!isa<UndefValue>(CV->getOperand(i)))
870be79a7acSNadav Rotem             Result.AggregateVal[i].FloatVal = cast<ConstantFP>(
871be79a7acSNadav Rotem               CV->getOperand(i))->getValueAPF().convertToFloat();
872be79a7acSNadav Rotem         break;
873be79a7acSNadav Rotem       }
874be79a7acSNadav Rotem       if(CDV)
875be79a7acSNadav Rotem         for (unsigned i = 0; i < elemNum; ++i)
876be79a7acSNadav Rotem           Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i);
877be79a7acSNadav Rotem 
878be79a7acSNadav Rotem       break;
879be79a7acSNadav Rotem     }
880be79a7acSNadav Rotem     // Check if vector holds doubles.
881be79a7acSNadav Rotem     if (ElemTy->isDoubleTy()) {
882be79a7acSNadav Rotem       if (CAZ) {
883be79a7acSNadav Rotem         GenericValue doubleZero;
884be79a7acSNadav Rotem         doubleZero.DoubleVal = 0.0;
885be79a7acSNadav Rotem         std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(),
886be79a7acSNadav Rotem                   doubleZero);
887be79a7acSNadav Rotem         break;
888be79a7acSNadav Rotem       }
889be79a7acSNadav Rotem       if(CV) {
890be79a7acSNadav Rotem         for (unsigned i = 0; i < elemNum; ++i)
891be79a7acSNadav Rotem           if (!isa<UndefValue>(CV->getOperand(i)))
892be79a7acSNadav Rotem             Result.AggregateVal[i].DoubleVal = cast<ConstantFP>(
893be79a7acSNadav Rotem               CV->getOperand(i))->getValueAPF().convertToDouble();
894be79a7acSNadav Rotem         break;
895be79a7acSNadav Rotem       }
896be79a7acSNadav Rotem       if(CDV)
897be79a7acSNadav Rotem         for (unsigned i = 0; i < elemNum; ++i)
898be79a7acSNadav Rotem           Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i);
899be79a7acSNadav Rotem 
900be79a7acSNadav Rotem       break;
901be79a7acSNadav Rotem     }
902be79a7acSNadav Rotem     // Check if vector holds integers.
903be79a7acSNadav Rotem     if (ElemTy->isIntegerTy()) {
904be79a7acSNadav Rotem       if (CAZ) {
905be79a7acSNadav Rotem         GenericValue intZero;
906be79a7acSNadav Rotem         intZero.IntVal = APInt(ElemTy->getScalarSizeInBits(), 0ull);
907be79a7acSNadav Rotem         std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(),
908be79a7acSNadav Rotem                   intZero);
909be79a7acSNadav Rotem         break;
910be79a7acSNadav Rotem       }
911be79a7acSNadav Rotem       if(CV) {
912be79a7acSNadav Rotem         for (unsigned i = 0; i < elemNum; ++i)
913be79a7acSNadav Rotem           if (!isa<UndefValue>(CV->getOperand(i)))
914be79a7acSNadav Rotem             Result.AggregateVal[i].IntVal = cast<ConstantInt>(
915be79a7acSNadav Rotem                                             CV->getOperand(i))->getValue();
916be79a7acSNadav Rotem           else {
917be79a7acSNadav Rotem             Result.AggregateVal[i].IntVal =
918be79a7acSNadav Rotem               APInt(CV->getOperand(i)->getType()->getPrimitiveSizeInBits(), 0);
919be79a7acSNadav Rotem           }
920be79a7acSNadav Rotem         break;
921be79a7acSNadav Rotem       }
922be79a7acSNadav Rotem       if(CDV)
923be79a7acSNadav Rotem         for (unsigned i = 0; i < elemNum; ++i)
924be79a7acSNadav Rotem           Result.AggregateVal[i].IntVal = APInt(
925be79a7acSNadav Rotem             CDV->getElementType()->getPrimitiveSizeInBits(),
926be79a7acSNadav Rotem             CDV->getElementAsInteger(i));
927be79a7acSNadav Rotem 
928be79a7acSNadav Rotem       break;
929be79a7acSNadav Rotem     }
930be79a7acSNadav Rotem     llvm_unreachable("Unknown constant pointer type!");
931be79a7acSNadav Rotem   }
932be79a7acSNadav Rotem   break;
933be79a7acSNadav Rotem 
934996fe010SChris Lattner   default:
935868e3f09SDaniel Dunbar     SmallString<256> Msg;
936868e3f09SDaniel Dunbar     raw_svector_ostream OS(Msg);
937868e3f09SDaniel Dunbar     OS << "ERROR: Constant unimplemented for type: " << *C->getType();
938868e3f09SDaniel Dunbar     report_fatal_error(OS.str());
939996fe010SChris Lattner   }
940868e3f09SDaniel Dunbar 
941996fe010SChris Lattner   return Result;
942996fe010SChris Lattner }
943996fe010SChris Lattner 
9441202d1b1SDuncan Sands /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
9451202d1b1SDuncan Sands /// with the integer held in IntVal.
9461202d1b1SDuncan Sands static void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst,
9471202d1b1SDuncan Sands                              unsigned StoreBytes) {
9481202d1b1SDuncan Sands   assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
949ad06cee2SRoman Divacky   const uint8_t *Src = (const uint8_t *)IntVal.getRawData();
9505c65cb46SDuncan Sands 
951*41cb64f4SRafael Espindola   if (sys::IsLittleEndianHost) {
9521202d1b1SDuncan Sands     // Little-endian host - the source is ordered from LSB to MSB.  Order the
9531202d1b1SDuncan Sands     // destination from LSB to MSB: Do a straight copy.
9545c65cb46SDuncan Sands     memcpy(Dst, Src, StoreBytes);
955868e3f09SDaniel Dunbar   } else {
9565c65cb46SDuncan Sands     // Big-endian host - the source is an array of 64 bit words ordered from
9571202d1b1SDuncan Sands     // LSW to MSW.  Each word is ordered from MSB to LSB.  Order the destination
9581202d1b1SDuncan Sands     // from MSB to LSB: Reverse the word order, but not the bytes in a word.
9595c65cb46SDuncan Sands     while (StoreBytes > sizeof(uint64_t)) {
9605c65cb46SDuncan Sands       StoreBytes -= sizeof(uint64_t);
9615c65cb46SDuncan Sands       // May not be aligned so use memcpy.
9625c65cb46SDuncan Sands       memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
9635c65cb46SDuncan Sands       Src += sizeof(uint64_t);
9645c65cb46SDuncan Sands     }
9655c65cb46SDuncan Sands 
9665c65cb46SDuncan Sands     memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
967815f8dd2SReid Spencer   }
9687a9c62baSReid Spencer }
9691202d1b1SDuncan Sands 
97009053e62SEvan Cheng void ExecutionEngine::StoreValueToMemory(const GenericValue &Val,
971229907cdSChris Lattner                                          GenericValue *Ptr, Type *Ty) {
972cdfe20b9SMicah Villmow   const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty);
9731202d1b1SDuncan Sands 
9741202d1b1SDuncan Sands   switch (Ty->getTypeID()) {
975be79a7acSNadav Rotem   default:
976be79a7acSNadav Rotem     dbgs() << "Cannot store value of type " << *Ty << "!\n";
977be79a7acSNadav Rotem     break;
9781202d1b1SDuncan Sands   case Type::IntegerTyID:
9791202d1b1SDuncan Sands     StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
9801202d1b1SDuncan Sands     break;
981996fe010SChris Lattner   case Type::FloatTyID:
98287aa65f4SReid Spencer     *((float*)Ptr) = Val.FloatVal;
98387aa65f4SReid Spencer     break;
98487aa65f4SReid Spencer   case Type::DoubleTyID:
98587aa65f4SReid Spencer     *((double*)Ptr) = Val.DoubleVal;
986996fe010SChris Lattner     break;
9874d7e4ee7SDale Johannesen   case Type::X86_FP80TyID:
9884d7e4ee7SDale Johannesen     memcpy(Ptr, Val.IntVal.getRawData(), 10);
989a1336cf5SDale Johannesen     break;
9907a9c62baSReid Spencer   case Type::PointerTyID:
9911202d1b1SDuncan Sands     // Ensure 64 bit target pointers are fully initialized on 32 bit hosts.
9921202d1b1SDuncan Sands     if (StoreBytes != sizeof(PointerTy))
99393da3c82SChandler Carruth       memset(&(Ptr->PointerVal), 0, StoreBytes);
9941202d1b1SDuncan Sands 
99587aa65f4SReid Spencer     *((PointerTy*)Ptr) = Val.PointerVal;
996996fe010SChris Lattner     break;
997be79a7acSNadav Rotem   case Type::VectorTyID:
998be79a7acSNadav Rotem     for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) {
999be79a7acSNadav Rotem       if (cast<VectorType>(Ty)->getElementType()->isDoubleTy())
1000be79a7acSNadav Rotem         *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal;
1001be79a7acSNadav Rotem       if (cast<VectorType>(Ty)->getElementType()->isFloatTy())
1002be79a7acSNadav Rotem         *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal;
1003be79a7acSNadav Rotem       if (cast<VectorType>(Ty)->getElementType()->isIntegerTy()) {
1004be79a7acSNadav Rotem         unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8;
1005be79a7acSNadav Rotem         StoreIntToMemory(Val.AggregateVal[i].IntVal,
1006be79a7acSNadav Rotem           (uint8_t*)Ptr + numOfBytes*i, numOfBytes);
1007be79a7acSNadav Rotem       }
1008be79a7acSNadav Rotem     }
1009be79a7acSNadav Rotem     break;
1010996fe010SChris Lattner   }
10111202d1b1SDuncan Sands 
1012*41cb64f4SRafael Espindola   if (sys::IsLittleEndianHost != getDataLayout()->isLittleEndian())
10131202d1b1SDuncan Sands     // Host and target are different endian - reverse the stored bytes.
10141202d1b1SDuncan Sands     std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr);
1015996fe010SChris Lattner }
1016996fe010SChris Lattner 
10171202d1b1SDuncan Sands /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
10181202d1b1SDuncan Sands /// from Src into IntVal, which is assumed to be wide enough and to hold zero.
10191202d1b1SDuncan Sands static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) {
10201202d1b1SDuncan Sands   assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
102182b63578SDavid Greene   uint8_t *Dst = reinterpret_cast<uint8_t *>(
102282b63578SDavid Greene                    const_cast<uint64_t *>(IntVal.getRawData()));
10235c65cb46SDuncan Sands 
1024*41cb64f4SRafael Espindola   if (sys::IsLittleEndianHost)
10255c65cb46SDuncan Sands     // Little-endian host - the destination must be ordered from LSB to MSB.
10265c65cb46SDuncan Sands     // The source is ordered from LSB to MSB: Do a straight copy.
10275c65cb46SDuncan Sands     memcpy(Dst, Src, LoadBytes);
10285c65cb46SDuncan Sands   else {
10295c65cb46SDuncan Sands     // Big-endian - the destination is an array of 64 bit words ordered from
10305c65cb46SDuncan Sands     // LSW to MSW.  Each word must be ordered from MSB to LSB.  The source is
10315c65cb46SDuncan Sands     // ordered from MSB to LSB: Reverse the word order, but not the bytes in
10325c65cb46SDuncan Sands     // a word.
10335c65cb46SDuncan Sands     while (LoadBytes > sizeof(uint64_t)) {
10345c65cb46SDuncan Sands       LoadBytes -= sizeof(uint64_t);
10355c65cb46SDuncan Sands       // May not be aligned so use memcpy.
10365c65cb46SDuncan Sands       memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
10375c65cb46SDuncan Sands       Dst += sizeof(uint64_t);
10385c65cb46SDuncan Sands     }
10395c65cb46SDuncan Sands 
10405c65cb46SDuncan Sands     memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
10415c65cb46SDuncan Sands   }
10427a9c62baSReid Spencer }
10431202d1b1SDuncan Sands 
10441202d1b1SDuncan Sands /// FIXME: document
10451202d1b1SDuncan Sands ///
10461202d1b1SDuncan Sands void ExecutionEngine::LoadValueFromMemory(GenericValue &Result,
10471202d1b1SDuncan Sands                                           GenericValue *Ptr,
1048229907cdSChris Lattner                                           Type *Ty) {
1049cdfe20b9SMicah Villmow   const unsigned LoadBytes = getDataLayout()->getTypeStoreSize(Ty);
10501202d1b1SDuncan Sands 
10511202d1b1SDuncan Sands   switch (Ty->getTypeID()) {
10521202d1b1SDuncan Sands   case Type::IntegerTyID:
10531202d1b1SDuncan Sands     // An APInt with all words initially zero.
10541202d1b1SDuncan Sands     Result.IntVal = APInt(cast<IntegerType>(Ty)->getBitWidth(), 0);
10551202d1b1SDuncan Sands     LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes);
10561202d1b1SDuncan Sands     break;
10577f389e8cSChris Lattner   case Type::FloatTyID:
105887aa65f4SReid Spencer     Result.FloatVal = *((float*)Ptr);
105987aa65f4SReid Spencer     break;
106087aa65f4SReid Spencer   case Type::DoubleTyID:
106187aa65f4SReid Spencer     Result.DoubleVal = *((double*)Ptr);
10627f389e8cSChris Lattner     break;
10637a9c62baSReid Spencer   case Type::PointerTyID:
106487aa65f4SReid Spencer     Result.PointerVal = *((PointerTy*)Ptr);
10657f389e8cSChris Lattner     break;
1066a1336cf5SDale Johannesen   case Type::X86_FP80TyID: {
1067a1336cf5SDale Johannesen     // This is endian dependent, but it will only work on x86 anyway.
106826d6539eSDuncan Sands     // FIXME: Will not trap if loading a signaling NaN.
1069ff306287SDuncan Sands     uint64_t y[2];
10704d7e4ee7SDale Johannesen     memcpy(y, Ptr, 10);
10717a162881SJeffrey Yasskin     Result.IntVal = APInt(80, y);
1072a1336cf5SDale Johannesen     break;
1073a1336cf5SDale Johannesen   }
1074be79a7acSNadav Rotem   case Type::VectorTyID: {
1075be79a7acSNadav Rotem     const VectorType *VT = cast<VectorType>(Ty);
1076be79a7acSNadav Rotem     const Type *ElemT = VT->getElementType();
1077be79a7acSNadav Rotem     const unsigned numElems = VT->getNumElements();
1078be79a7acSNadav Rotem     if (ElemT->isFloatTy()) {
1079be79a7acSNadav Rotem       Result.AggregateVal.resize(numElems);
1080be79a7acSNadav Rotem       for (unsigned i = 0; i < numElems; ++i)
1081be79a7acSNadav Rotem         Result.AggregateVal[i].FloatVal = *((float*)Ptr+i);
1082be79a7acSNadav Rotem     }
1083be79a7acSNadav Rotem     if (ElemT->isDoubleTy()) {
1084be79a7acSNadav Rotem       Result.AggregateVal.resize(numElems);
1085be79a7acSNadav Rotem       for (unsigned i = 0; i < numElems; ++i)
1086be79a7acSNadav Rotem         Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i);
1087be79a7acSNadav Rotem     }
1088be79a7acSNadav Rotem     if (ElemT->isIntegerTy()) {
1089be79a7acSNadav Rotem       GenericValue intZero;
1090be79a7acSNadav Rotem       const unsigned elemBitWidth = cast<IntegerType>(ElemT)->getBitWidth();
1091be79a7acSNadav Rotem       intZero.IntVal = APInt(elemBitWidth, 0);
1092be79a7acSNadav Rotem       Result.AggregateVal.resize(numElems, intZero);
1093be79a7acSNadav Rotem       for (unsigned i = 0; i < numElems; ++i)
1094be79a7acSNadav Rotem         LoadIntFromMemory(Result.AggregateVal[i].IntVal,
1095be79a7acSNadav Rotem           (uint8_t*)Ptr+((elemBitWidth+7)/8)*i, (elemBitWidth+7)/8);
1096be79a7acSNadav Rotem     }
1097be79a7acSNadav Rotem   break;
1098be79a7acSNadav Rotem   }
10997f389e8cSChris Lattner   default:
1100868e3f09SDaniel Dunbar     SmallString<256> Msg;
1101868e3f09SDaniel Dunbar     raw_svector_ostream OS(Msg);
1102868e3f09SDaniel Dunbar     OS << "Cannot load value of type " << *Ty << "!";
1103868e3f09SDaniel Dunbar     report_fatal_error(OS.str());
11047f389e8cSChris Lattner   }
11057f389e8cSChris Lattner }
11067f389e8cSChris Lattner 
1107996fe010SChris Lattner void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
11080967d2dfSDavid Greene   DEBUG(dbgs() << "JIT: Initializing " << Addr << " ");
1109b086d382SDale Johannesen   DEBUG(Init->dump());
111000245f42SChris Lattner   if (isa<UndefValue>(Init))
111161753bf8SChris Lattner     return;
111200245f42SChris Lattner 
111300245f42SChris Lattner   if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
111469d62138SRobert Bocchino     unsigned ElementSize =
1115cdfe20b9SMicah Villmow       getDataLayout()->getTypeAllocSize(CP->getType()->getElementType());
111669d62138SRobert Bocchino     for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
111769d62138SRobert Bocchino       InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
111869d62138SRobert Bocchino     return;
111900245f42SChris Lattner   }
112000245f42SChris Lattner 
112100245f42SChris Lattner   if (isa<ConstantAggregateZero>(Init)) {
1122cdfe20b9SMicah Villmow     memset(Addr, 0, (size_t)getDataLayout()->getTypeAllocSize(Init->getType()));
11231dd86b11SChris Lattner     return;
112400245f42SChris Lattner   }
112500245f42SChris Lattner 
112600245f42SChris Lattner   if (const ConstantArray *CPA = dyn_cast<ConstantArray>(Init)) {
112769ddfbfeSDan Gohman     unsigned ElementSize =
1128cdfe20b9SMicah Villmow       getDataLayout()->getTypeAllocSize(CPA->getType()->getElementType());
112969ddfbfeSDan Gohman     for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
113069ddfbfeSDan Gohman       InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
113169ddfbfeSDan Gohman     return;
113200245f42SChris Lattner   }
113300245f42SChris Lattner 
113400245f42SChris Lattner   if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(Init)) {
113569ddfbfeSDan Gohman     const StructLayout *SL =
1136cdfe20b9SMicah Villmow       getDataLayout()->getStructLayout(cast<StructType>(CPS->getType()));
113769ddfbfeSDan Gohman     for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
113869ddfbfeSDan Gohman       InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i));
113969ddfbfeSDan Gohman     return;
114000245f42SChris Lattner   }
114100245f42SChris Lattner 
114200245f42SChris Lattner   if (const ConstantDataSequential *CDS =
114300245f42SChris Lattner                dyn_cast<ConstantDataSequential>(Init)) {
114400245f42SChris Lattner     // CDS is already laid out in host memory order.
114500245f42SChris Lattner     StringRef Data = CDS->getRawDataValues();
114600245f42SChris Lattner     memcpy(Addr, Data.data(), Data.size());
114700245f42SChris Lattner     return;
114800245f42SChris Lattner   }
114900245f42SChris Lattner 
115000245f42SChris Lattner   if (Init->getType()->isFirstClassType()) {
1151996fe010SChris Lattner     GenericValue Val = getConstantValue(Init);
1152996fe010SChris Lattner     StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
1153996fe010SChris Lattner     return;
1154996fe010SChris Lattner   }
1155996fe010SChris Lattner 
1156868e3f09SDaniel Dunbar   DEBUG(dbgs() << "Bad Type: " << *Init->getType() << "\n");
1157fbcc663cSTorok Edwin   llvm_unreachable("Unknown constant type to initialize memory with!");
1158996fe010SChris Lattner }
1159996fe010SChris Lattner 
1160996fe010SChris Lattner /// EmitGlobals - Emit all of the global variables to memory, storing their
1161996fe010SChris Lattner /// addresses into GlobalAddress.  This must make sure to copy the contents of
1162996fe010SChris Lattner /// their initializers into the memory.
1163996fe010SChris Lattner void ExecutionEngine::emitGlobals() {
1164996fe010SChris Lattner   // Loop over all of the global variables in the program, allocating the memory
11650621caefSChris Lattner   // to hold them.  If there is more than one module, do a prepass over globals
11660621caefSChris Lattner   // to figure out how the different modules should link together.
1167229907cdSChris Lattner   std::map<std::pair<std::string, Type*>,
11680621caefSChris Lattner            const GlobalValue*> LinkedGlobalsMap;
11690621caefSChris Lattner 
11700621caefSChris Lattner   if (Modules.size() != 1) {
11710621caefSChris Lattner     for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
1172091217beSJeffrey Yasskin       Module &M = *Modules[m];
11730621caefSChris Lattner       for (Module::const_global_iterator I = M.global_begin(),
11740621caefSChris Lattner            E = M.global_end(); I != E; ++I) {
11750621caefSChris Lattner         const GlobalValue *GV = I;
11766de96a1bSRafael Espindola         if (GV->hasLocalLinkage() || GV->isDeclaration() ||
11770621caefSChris Lattner             GV->hasAppendingLinkage() || !GV->hasName())
11780621caefSChris Lattner           continue;// Ignore external globals and globals with internal linkage.
11790621caefSChris Lattner 
11800621caefSChris Lattner         const GlobalValue *&GVEntry =
11810621caefSChris Lattner           LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
11820621caefSChris Lattner 
11830621caefSChris Lattner         // If this is the first time we've seen this global, it is the canonical
11840621caefSChris Lattner         // version.
11850621caefSChris Lattner         if (!GVEntry) {
11860621caefSChris Lattner           GVEntry = GV;
11870621caefSChris Lattner           continue;
11880621caefSChris Lattner         }
11890621caefSChris Lattner 
11900621caefSChris Lattner         // If the existing global is strong, never replace it.
1191d61d39ecSAnton Korobeynikov         if (GVEntry->hasExternalLinkage() ||
1192d61d39ecSAnton Korobeynikov             GVEntry->hasDLLImportLinkage() ||
1193d61d39ecSAnton Korobeynikov             GVEntry->hasDLLExportLinkage())
11940621caefSChris Lattner           continue;
11950621caefSChris Lattner 
11960621caefSChris Lattner         // Otherwise, we know it's linkonce/weak, replace it if this is a strong
1197ce4396bcSDale Johannesen         // symbol.  FIXME is this right for common?
119812c94949SAnton Korobeynikov         if (GV->hasExternalLinkage() || GVEntry->hasExternalWeakLinkage())
11990621caefSChris Lattner           GVEntry = GV;
12000621caefSChris Lattner       }
12010621caefSChris Lattner     }
12020621caefSChris Lattner   }
12030621caefSChris Lattner 
12040621caefSChris Lattner   std::vector<const GlobalValue*> NonCanonicalGlobals;
12050621caefSChris Lattner   for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
1206091217beSJeffrey Yasskin     Module &M = *Modules[m];
12078ffb6611SChris Lattner     for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
12080621caefSChris Lattner          I != E; ++I) {
12090621caefSChris Lattner       // In the multi-module case, see what this global maps to.
12100621caefSChris Lattner       if (!LinkedGlobalsMap.empty()) {
12110621caefSChris Lattner         if (const GlobalValue *GVEntry =
12120621caefSChris Lattner               LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())]) {
12130621caefSChris Lattner           // If something else is the canonical global, ignore this one.
12140621caefSChris Lattner           if (GVEntry != &*I) {
12150621caefSChris Lattner             NonCanonicalGlobals.push_back(I);
12160621caefSChris Lattner             continue;
12170621caefSChris Lattner           }
12180621caefSChris Lattner         }
12190621caefSChris Lattner       }
12200621caefSChris Lattner 
12215301e7c6SReid Spencer       if (!I->isDeclaration()) {
12225457ce9aSNicolas Geoffray         addGlobalMapping(I, getMemoryForGV(I));
1223996fe010SChris Lattner       } else {
1224e8bbcfc2SBrian Gaeke         // External variable reference. Try to use the dynamic loader to
1225e8bbcfc2SBrian Gaeke         // get a pointer to it.
12260621caefSChris Lattner         if (void *SymAddr =
12275899e340SDaniel Dunbar             sys::DynamicLibrary::SearchForAddressOfSymbol(I->getName()))
1228748e8579SChris Lattner           addGlobalMapping(I, SymAddr);
12299de0d14dSChris Lattner         else {
12302104b8d3SChris Lattner           report_fatal_error("Could not resolve external global address: "
12316c2d233eSTorok Edwin                             +I->getName());
12329de0d14dSChris Lattner         }
1233996fe010SChris Lattner       }
12340621caefSChris Lattner     }
12350621caefSChris Lattner 
12360621caefSChris Lattner     // If there are multiple modules, map the non-canonical globals to their
12370621caefSChris Lattner     // canonical location.
12380621caefSChris Lattner     if (!NonCanonicalGlobals.empty()) {
12390621caefSChris Lattner       for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) {
12400621caefSChris Lattner         const GlobalValue *GV = NonCanonicalGlobals[i];
12410621caefSChris Lattner         const GlobalValue *CGV =
12420621caefSChris Lattner           LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
12430621caefSChris Lattner         void *Ptr = getPointerToGlobalIfAvailable(CGV);
12440621caefSChris Lattner         assert(Ptr && "Canonical global wasn't codegen'd!");
1245a67f06b9SNuno Lopes         addGlobalMapping(GV, Ptr);
12460621caefSChris Lattner       }
12470621caefSChris Lattner     }
1248996fe010SChris Lattner 
12497a9c62baSReid Spencer     // Now that all of the globals are set up in memory, loop through them all
12507a9c62baSReid Spencer     // and initialize their contents.
12518ffb6611SChris Lattner     for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
12520621caefSChris Lattner          I != E; ++I) {
12535301e7c6SReid Spencer       if (!I->isDeclaration()) {
12540621caefSChris Lattner         if (!LinkedGlobalsMap.empty()) {
12550621caefSChris Lattner           if (const GlobalValue *GVEntry =
12560621caefSChris Lattner                 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())])
12570621caefSChris Lattner             if (GVEntry != &*I)  // Not the canonical variable.
12580621caefSChris Lattner               continue;
12590621caefSChris Lattner         }
12606bbe3eceSChris Lattner         EmitGlobalVariable(I);
12616bbe3eceSChris Lattner       }
12620621caefSChris Lattner     }
12630621caefSChris Lattner   }
12640621caefSChris Lattner }
12656bbe3eceSChris Lattner 
12666bbe3eceSChris Lattner // EmitGlobalVariable - This method emits the specified global variable to the
12676bbe3eceSChris Lattner // address specified in GlobalAddresses, or allocates new memory if it's not
12686bbe3eceSChris Lattner // already in the map.
1269fbcc0aa1SChris Lattner void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
1270748e8579SChris Lattner   void *GA = getPointerToGlobalIfAvailable(GV);
1271dc631735SChris Lattner 
12726bbe3eceSChris Lattner   if (GA == 0) {
12736bbe3eceSChris Lattner     // If it's not already specified, allocate memory for the global.
12745457ce9aSNicolas Geoffray     GA = getMemoryForGV(GV);
1275748e8579SChris Lattner     addGlobalMapping(GV, GA);
12766bbe3eceSChris Lattner   }
1277fbcc0aa1SChris Lattner 
12785457ce9aSNicolas Geoffray   // Don't initialize if it's thread local, let the client do it.
12795457ce9aSNicolas Geoffray   if (!GV->isThreadLocal())
12806bbe3eceSChris Lattner     InitializeMemory(GV->getInitializer(), GA);
12815457ce9aSNicolas Geoffray 
1282229907cdSChris Lattner   Type *ElTy = GV->getType()->getElementType();
1283cdfe20b9SMicah Villmow   size_t GVSize = (size_t)getDataLayout()->getTypeAllocSize(ElTy);
1284df1f1524SChris Lattner   NumInitBytes += (unsigned)GVSize;
12856bbe3eceSChris Lattner   ++NumGlobals;
1286996fe010SChris Lattner }
1287f98e981cSJeffrey Yasskin 
1288d0fc8f80SJeffrey Yasskin ExecutionEngineState::ExecutionEngineState(ExecutionEngine &EE)
1289d0fc8f80SJeffrey Yasskin   : EE(EE), GlobalAddressMap(this) {
1290f98e981cSJeffrey Yasskin }
1291f98e981cSJeffrey Yasskin 
1292868e3f09SDaniel Dunbar sys::Mutex *
1293868e3f09SDaniel Dunbar ExecutionEngineState::AddressMapConfig::getMutex(ExecutionEngineState *EES) {
1294d0fc8f80SJeffrey Yasskin   return &EES->EE.lock;
1295d0fc8f80SJeffrey Yasskin }
1296868e3f09SDaniel Dunbar 
1297868e3f09SDaniel Dunbar void ExecutionEngineState::AddressMapConfig::onDelete(ExecutionEngineState *EES,
1298868e3f09SDaniel Dunbar                                                       const GlobalValue *Old) {
1299d0fc8f80SJeffrey Yasskin   void *OldVal = EES->GlobalAddressMap.lookup(Old);
1300d0fc8f80SJeffrey Yasskin   EES->GlobalAddressReverseMap.erase(OldVal);
1301d0fc8f80SJeffrey Yasskin }
1302d0fc8f80SJeffrey Yasskin 
1303868e3f09SDaniel Dunbar void ExecutionEngineState::AddressMapConfig::onRAUW(ExecutionEngineState *,
1304868e3f09SDaniel Dunbar                                                     const GlobalValue *,
1305868e3f09SDaniel Dunbar                                                     const GlobalValue *) {
1306a2886c21SCraig Topper   llvm_unreachable("The ExecutionEngine doesn't know how to handle a"
1307f98e981cSJeffrey Yasskin                    " RAUW on a value it has a global mapping for.");
1308f98e981cSJeffrey Yasskin }
1309