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"
16996fe010SChris Lattner #include "llvm/Constants.h"
17260b0c88SMisha Brukman #include "llvm/DerivedTypes.h"
18996fe010SChris Lattner #include "llvm/Module.h"
19260b0c88SMisha Brukman #include "llvm/ModuleProvider.h"
2070e37278SReid Spencer #include "llvm/ADT/Statistic.h"
211202d1b1SDuncan Sands #include "llvm/Config/alloca.h"
22260b0c88SMisha Brukman #include "llvm/ExecutionEngine/ExecutionEngine.h"
23ad481312SChris Lattner #include "llvm/ExecutionEngine/GenericValue.h"
247c16caa3SReid Spencer #include "llvm/Support/Debug.h"
256d8dd189SChris Lattner #include "llvm/Support/MutexGuard.h"
2670e37278SReid Spencer #include "llvm/System/DynamicLibrary.h"
27fde55674SDuncan Sands #include "llvm/System/Host.h"
2870e37278SReid Spencer #include "llvm/Target/TargetData.h"
29579f0713SAnton Korobeynikov #include <cmath>
30579f0713SAnton Korobeynikov #include <cstring>
3129681deeSChris Lattner using namespace llvm;
32996fe010SChris Lattner 
33c346ecd7SChris Lattner STATISTIC(NumInitBytes, "Number of bytes of global vars initialized");
34c346ecd7SChris Lattner STATISTIC(NumGlobals  , "Number of global vars initialized");
35996fe010SChris Lattner 
362d52c1b8SChris Lattner ExecutionEngine::EECtorFn ExecutionEngine::JITCtor = 0;
372d52c1b8SChris Lattner ExecutionEngine::EECtorFn ExecutionEngine::InterpCtor = 0;
3821ad494fSNicolas Geoffray ExecutionEngine::EERegisterFn ExecutionEngine::ExceptionTableRegister = 0;
3921ad494fSNicolas Geoffray 
402d52c1b8SChris Lattner 
41fd6f3257SChris Lattner ExecutionEngine::ExecutionEngine(ModuleProvider *P) : LazyFunctionCreator(0) {
4287aee74cSChris Lattner   LazyCompilationDisabled = false;
43cdc0060eSEvan Cheng   GVCompilationDisabled   = false;
4484a9055eSEvan Cheng   SymbolSearchingDisabled = false;
450621caefSChris Lattner   Modules.push_back(P);
46260b0c88SMisha Brukman   assert(P && "ModuleProvider is null?");
47260b0c88SMisha Brukman }
48260b0c88SMisha Brukman 
4992f8b30dSBrian Gaeke ExecutionEngine::~ExecutionEngine() {
50603682adSReid Spencer   clearAllGlobalMappings();
510621caefSChris Lattner   for (unsigned i = 0, e = Modules.size(); i != e; ++i)
520621caefSChris Lattner     delete Modules[i];
5392f8b30dSBrian Gaeke }
5492f8b30dSBrian Gaeke 
555457ce9aSNicolas Geoffray char* ExecutionEngine::getMemoryForGV(const GlobalVariable* GV) {
565457ce9aSNicolas Geoffray   const Type *ElTy = GV->getType()->getElementType();
57dc020f9cSDuncan Sands   size_t GVSize = (size_t)getTargetData()->getTypePaddedSize(ElTy);
585457ce9aSNicolas Geoffray   return new char[GVSize];
595457ce9aSNicolas Geoffray }
605457ce9aSNicolas Geoffray 
61324fe890SDevang Patel /// removeModuleProvider - Remove a ModuleProvider from the list of modules.
62617001d8SNate Begeman /// Relases the Module from the ModuleProvider, materializing it in the
63617001d8SNate Begeman /// process, and returns the materialized Module.
64324fe890SDevang Patel Module* ExecutionEngine::removeModuleProvider(ModuleProvider *P,
65324fe890SDevang Patel                                               std::string *ErrInfo) {
66324fe890SDevang Patel   for(SmallVector<ModuleProvider *, 1>::iterator I = Modules.begin(),
67324fe890SDevang Patel         E = Modules.end(); I != E; ++I) {
68324fe890SDevang Patel     ModuleProvider *MP = *I;
69324fe890SDevang Patel     if (MP == P) {
70324fe890SDevang Patel       Modules.erase(I);
718f83fc4dSNate Begeman       clearGlobalMappingsFromModule(MP->getModule());
72324fe890SDevang Patel       return MP->releaseModule(ErrInfo);
73324fe890SDevang Patel     }
74324fe890SDevang Patel   }
75324fe890SDevang Patel   return NULL;
76324fe890SDevang Patel }
77324fe890SDevang Patel 
78617001d8SNate Begeman /// deleteModuleProvider - Remove a ModuleProvider from the list of modules,
79617001d8SNate Begeman /// and deletes the ModuleProvider and owned Module.  Avoids materializing
80617001d8SNate Begeman /// the underlying module.
81617001d8SNate Begeman void ExecutionEngine::deleteModuleProvider(ModuleProvider *P,
82617001d8SNate Begeman                                            std::string *ErrInfo) {
83617001d8SNate Begeman   for(SmallVector<ModuleProvider *, 1>::iterator I = Modules.begin(),
84617001d8SNate Begeman       E = Modules.end(); I != E; ++I) {
85617001d8SNate Begeman     ModuleProvider *MP = *I;
86617001d8SNate Begeman     if (MP == P) {
87617001d8SNate Begeman       Modules.erase(I);
88617001d8SNate Begeman       clearGlobalMappingsFromModule(MP->getModule());
89617001d8SNate Begeman       delete MP;
90617001d8SNate Begeman       return;
91617001d8SNate Begeman     }
92617001d8SNate Begeman   }
93617001d8SNate Begeman }
94617001d8SNate Begeman 
950621caefSChris Lattner /// FindFunctionNamed - Search all of the active modules to find the one that
960621caefSChris Lattner /// defines FnName.  This is very slow operation and shouldn't be used for
970621caefSChris Lattner /// general code.
980621caefSChris Lattner Function *ExecutionEngine::FindFunctionNamed(const char *FnName) {
990621caefSChris Lattner   for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
1001241d6d5SReid Spencer     if (Function *F = Modules[i]->getModule()->getFunction(FnName))
1010621caefSChris Lattner       return F;
1020621caefSChris Lattner   }
1030621caefSChris Lattner   return 0;
1040621caefSChris Lattner }
1050621caefSChris Lattner 
1060621caefSChris Lattner 
1076d8dd189SChris Lattner /// addGlobalMapping - Tell the execution engine that the specified global is
1086d8dd189SChris Lattner /// at the specified location.  This is used internally as functions are JIT'd
1096d8dd189SChris Lattner /// and as global variables are laid out in memory.  It can and should also be
1106d8dd189SChris Lattner /// used by clients of the EE that want to have an LLVM global overlay
1116d8dd189SChris Lattner /// existing data in memory.
1126d8dd189SChris Lattner void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) {
1136d8dd189SChris Lattner   MutexGuard locked(lock);
1146d8dd189SChris Lattner 
115077f686dSEvan Cheng   DOUT << "JIT: Map \'" << GV->getNameStart() << "\' to [" << Addr << "]\n";
1166d8dd189SChris Lattner   void *&CurVal = state.getGlobalAddressMap(locked)[GV];
1176d8dd189SChris Lattner   assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!");
1186d8dd189SChris Lattner   CurVal = Addr;
1196d8dd189SChris Lattner 
1206d8dd189SChris Lattner   // If we are using the reverse mapping, add it too
1216d8dd189SChris Lattner   if (!state.getGlobalAddressReverseMap(locked).empty()) {
1226d8dd189SChris Lattner     const GlobalValue *&V = state.getGlobalAddressReverseMap(locked)[Addr];
1236d8dd189SChris Lattner     assert((V == 0 || GV == 0) && "GlobalMapping already established!");
1246d8dd189SChris Lattner     V = GV;
1256d8dd189SChris Lattner   }
1266d8dd189SChris Lattner }
1276d8dd189SChris Lattner 
1286d8dd189SChris Lattner /// clearAllGlobalMappings - Clear all global mappings and start over again
1296d8dd189SChris Lattner /// use in dynamic compilation scenarios when you want to move globals
1306d8dd189SChris Lattner void ExecutionEngine::clearAllGlobalMappings() {
1316d8dd189SChris Lattner   MutexGuard locked(lock);
1326d8dd189SChris Lattner 
1336d8dd189SChris Lattner   state.getGlobalAddressMap(locked).clear();
1346d8dd189SChris Lattner   state.getGlobalAddressReverseMap(locked).clear();
1356d8dd189SChris Lattner }
1366d8dd189SChris Lattner 
1378f83fc4dSNate Begeman /// clearGlobalMappingsFromModule - Clear all global mappings that came from a
1388f83fc4dSNate Begeman /// particular module, because it has been removed from the JIT.
1398f83fc4dSNate Begeman void ExecutionEngine::clearGlobalMappingsFromModule(Module *M) {
1408f83fc4dSNate Begeman   MutexGuard locked(lock);
1418f83fc4dSNate Begeman 
1428f83fc4dSNate Begeman   for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI) {
1438f83fc4dSNate Begeman     state.getGlobalAddressMap(locked).erase(FI);
1448f83fc4dSNate Begeman     state.getGlobalAddressReverseMap(locked).erase(FI);
1458f83fc4dSNate Begeman   }
1468f83fc4dSNate Begeman   for (Module::global_iterator GI = M->global_begin(), GE = M->global_end();
1478f83fc4dSNate Begeman        GI != GE; ++GI) {
1488f83fc4dSNate Begeman     state.getGlobalAddressMap(locked).erase(GI);
1498f83fc4dSNate Begeman     state.getGlobalAddressReverseMap(locked).erase(GI);
1508f83fc4dSNate Begeman   }
1518f83fc4dSNate Begeman }
1528f83fc4dSNate Begeman 
1536d8dd189SChris Lattner /// updateGlobalMapping - Replace an existing mapping for GV with a new
1546d8dd189SChris Lattner /// address.  This updates both maps as required.  If "Addr" is null, the
1556d8dd189SChris Lattner /// entry for the global is removed from the mappings.
156ee181730SChris Lattner void *ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) {
1576d8dd189SChris Lattner   MutexGuard locked(lock);
1586d8dd189SChris Lattner 
159ee181730SChris Lattner   std::map<const GlobalValue*, void *> &Map = state.getGlobalAddressMap(locked);
160ee181730SChris Lattner 
1616d8dd189SChris Lattner   // Deleting from the mapping?
1626d8dd189SChris Lattner   if (Addr == 0) {
163ee181730SChris Lattner     std::map<const GlobalValue*, void *>::iterator I = Map.find(GV);
164ee181730SChris Lattner     void *OldVal;
165ee181730SChris Lattner     if (I == Map.end())
166ee181730SChris Lattner       OldVal = 0;
167ee181730SChris Lattner     else {
168ee181730SChris Lattner       OldVal = I->second;
169ee181730SChris Lattner       Map.erase(I);
1706d8dd189SChris Lattner     }
1716d8dd189SChris Lattner 
172ee181730SChris Lattner     if (!state.getGlobalAddressReverseMap(locked).empty())
173ee181730SChris Lattner       state.getGlobalAddressReverseMap(locked).erase(Addr);
174ee181730SChris Lattner     return OldVal;
175ee181730SChris Lattner   }
176ee181730SChris Lattner 
177ee181730SChris Lattner   void *&CurVal = Map[GV];
178ee181730SChris Lattner   void *OldVal = CurVal;
179ee181730SChris Lattner 
1806d8dd189SChris Lattner   if (CurVal && !state.getGlobalAddressReverseMap(locked).empty())
1816d8dd189SChris Lattner     state.getGlobalAddressReverseMap(locked).erase(CurVal);
1826d8dd189SChris Lattner   CurVal = Addr;
1836d8dd189SChris Lattner 
1846d8dd189SChris Lattner   // If we are using the reverse mapping, add it too
1856d8dd189SChris Lattner   if (!state.getGlobalAddressReverseMap(locked).empty()) {
1866d8dd189SChris Lattner     const GlobalValue *&V = state.getGlobalAddressReverseMap(locked)[Addr];
1876d8dd189SChris Lattner     assert((V == 0 || GV == 0) && "GlobalMapping already established!");
1886d8dd189SChris Lattner     V = GV;
1896d8dd189SChris Lattner   }
190ee181730SChris Lattner   return OldVal;
1916d8dd189SChris Lattner }
1926d8dd189SChris Lattner 
1936d8dd189SChris Lattner /// getPointerToGlobalIfAvailable - This returns the address of the specified
1946d8dd189SChris Lattner /// global value if it is has already been codegen'd, otherwise it returns null.
1956d8dd189SChris Lattner ///
1966d8dd189SChris Lattner void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) {
1976d8dd189SChris Lattner   MutexGuard locked(lock);
1986d8dd189SChris Lattner 
1996d8dd189SChris Lattner   std::map<const GlobalValue*, void*>::iterator I =
2006d8dd189SChris Lattner   state.getGlobalAddressMap(locked).find(GV);
2016d8dd189SChris Lattner   return I != state.getGlobalAddressMap(locked).end() ? I->second : 0;
2026d8dd189SChris Lattner }
2036d8dd189SChris Lattner 
204748e8579SChris Lattner /// getGlobalValueAtAddress - Return the LLVM global value object that starts
205748e8579SChris Lattner /// at the specified address.
206748e8579SChris Lattner ///
207748e8579SChris Lattner const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
20879876f52SReid Spencer   MutexGuard locked(lock);
20979876f52SReid Spencer 
210748e8579SChris Lattner   // If we haven't computed the reverse mapping yet, do so first.
21179876f52SReid Spencer   if (state.getGlobalAddressReverseMap(locked).empty()) {
2126d8dd189SChris Lattner     for (std::map<const GlobalValue*, void *>::iterator
2136d8dd189SChris Lattner          I = state.getGlobalAddressMap(locked).begin(),
2146d8dd189SChris Lattner          E = state.getGlobalAddressMap(locked).end(); I != E; ++I)
2156d8dd189SChris Lattner       state.getGlobalAddressReverseMap(locked).insert(std::make_pair(I->second,
2166d8dd189SChris Lattner                                                                      I->first));
217748e8579SChris Lattner   }
218748e8579SChris Lattner 
219748e8579SChris Lattner   std::map<void *, const GlobalValue*>::iterator I =
22079876f52SReid Spencer     state.getGlobalAddressReverseMap(locked).find(Addr);
22179876f52SReid Spencer   return I != state.getGlobalAddressReverseMap(locked).end() ? I->second : 0;
222748e8579SChris Lattner }
2235a0d4829SChris Lattner 
2245a0d4829SChris Lattner // CreateArgv - Turn a vector of strings into a nice argv style array of
2255a0d4829SChris Lattner // pointers to null terminated strings.
2265a0d4829SChris Lattner //
2275a0d4829SChris Lattner static void *CreateArgv(ExecutionEngine *EE,
2285a0d4829SChris Lattner                         const std::vector<std::string> &InputArgv) {
22920a631fdSOwen Anderson   unsigned PtrSize = EE->getTargetData()->getPointerSize();
2305a0d4829SChris Lattner   char *Result = new char[(InputArgv.size()+1)*PtrSize];
2315a0d4829SChris Lattner 
232972fd1a1SEvan Cheng   DOUT << "JIT: ARGV = " << (void*)Result << "\n";
233edf07887SChristopher Lamb   const Type *SBytePtr = PointerType::getUnqual(Type::Int8Ty);
2345a0d4829SChris Lattner 
2355a0d4829SChris Lattner   for (unsigned i = 0; i != InputArgv.size(); ++i) {
2365a0d4829SChris Lattner     unsigned Size = InputArgv[i].size()+1;
2375a0d4829SChris Lattner     char *Dest = new char[Size];
238972fd1a1SEvan Cheng     DOUT << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n";
2395a0d4829SChris Lattner 
2405a0d4829SChris Lattner     std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
2415a0d4829SChris Lattner     Dest[Size-1] = 0;
2425a0d4829SChris Lattner 
2435a0d4829SChris Lattner     // Endian safe: Result[i] = (PointerTy)Dest;
2445a0d4829SChris Lattner     EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i*PtrSize),
2455a0d4829SChris Lattner                            SBytePtr);
2465a0d4829SChris Lattner   }
2475a0d4829SChris Lattner 
2485a0d4829SChris Lattner   // Null terminate it
2495a0d4829SChris Lattner   EE->StoreValueToMemory(PTOGV(0),
2505a0d4829SChris Lattner                          (GenericValue*)(Result+InputArgv.size()*PtrSize),
2515a0d4829SChris Lattner                          SBytePtr);
2525a0d4829SChris Lattner   return Result;
2535a0d4829SChris Lattner }
2545a0d4829SChris Lattner 
255faae50b6SChris Lattner 
256faae50b6SChris Lattner /// runStaticConstructorsDestructors - This method is used to execute all of
2571a9a0b7bSEvan Cheng /// the static constructors or destructors for a module, depending on the
258faae50b6SChris Lattner /// value of isDtors.
2591a9a0b7bSEvan Cheng void ExecutionEngine::runStaticConstructorsDestructors(Module *module, bool isDtors) {
260faae50b6SChris Lattner   const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors";
2610621caefSChris Lattner 
2620621caefSChris Lattner   // Execute global ctors/dtors for each module in the program.
2631a9a0b7bSEvan Cheng 
2641a9a0b7bSEvan Cheng  GlobalVariable *GV = module->getNamedGlobal(Name);
265fe36eaebSChris Lattner 
266fe36eaebSChris Lattner  // If this global has internal linkage, or if it has a use, then it must be
267fe36eaebSChris Lattner  // an old-style (llvmgcc3) static ctor with __main linked in and in use.  If
2680621caefSChris Lattner  // this is the case, don't execute any of the global ctors, __main will do
2690621caefSChris Lattner  // it.
2706de96a1bSRafael Espindola  if (!GV || GV->isDeclaration() || GV->hasLocalLinkage()) return;
271faae50b6SChris Lattner 
2720621caefSChris Lattner  // Should be an array of '{ int, void ()* }' structs.  The first value is
2730621caefSChris Lattner  // the init priority, which we ignore.
274faae50b6SChris Lattner  ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
2751a9a0b7bSEvan Cheng  if (!InitList) return;
276faae50b6SChris Lattner  for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
2770621caefSChris Lattner    if (ConstantStruct *CS =
2780621caefSChris Lattner        dyn_cast<ConstantStruct>(InitList->getOperand(i))) {
2791a9a0b7bSEvan Cheng      if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
280faae50b6SChris Lattner 
281faae50b6SChris Lattner      Constant *FP = CS->getOperand(1);
282faae50b6SChris Lattner      if (FP->isNullValue())
2830621caefSChris Lattner        break;  // Found a null terminator, exit.
284faae50b6SChris Lattner 
285faae50b6SChris Lattner      if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
2866c38f0bbSReid Spencer        if (CE->isCast())
287faae50b6SChris Lattner          FP = CE->getOperand(0);
288faae50b6SChris Lattner      if (Function *F = dyn_cast<Function>(FP)) {
289faae50b6SChris Lattner        // Execute the ctor/dtor function!
290faae50b6SChris Lattner        runFunction(F, std::vector<GenericValue>());
291faae50b6SChris Lattner      }
292faae50b6SChris Lattner    }
293faae50b6SChris Lattner }
2941a9a0b7bSEvan Cheng 
2951a9a0b7bSEvan Cheng /// runStaticConstructorsDestructors - This method is used to execute all of
2961a9a0b7bSEvan Cheng /// the static constructors or destructors for a program, depending on the
2971a9a0b7bSEvan Cheng /// value of isDtors.
2981a9a0b7bSEvan Cheng void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
2991a9a0b7bSEvan Cheng   // Execute global ctors/dtors for each module in the program.
3001a9a0b7bSEvan Cheng   for (unsigned m = 0, e = Modules.size(); m != e; ++m)
3011a9a0b7bSEvan Cheng     runStaticConstructorsDestructors(Modules[m]->getModule(), isDtors);
3020621caefSChris Lattner }
303faae50b6SChris Lattner 
304cf3e3017SDan Gohman #ifndef NDEBUG
3051202d1b1SDuncan Sands /// isTargetNullPtr - Return whether the target pointer stored at Loc is null.
3061202d1b1SDuncan Sands static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) {
3071202d1b1SDuncan Sands   unsigned PtrSize = EE->getTargetData()->getPointerSize();
3081202d1b1SDuncan Sands   for (unsigned i = 0; i < PtrSize; ++i)
3091202d1b1SDuncan Sands     if (*(i + (uint8_t*)Loc))
3101202d1b1SDuncan Sands       return false;
3111202d1b1SDuncan Sands   return true;
3121202d1b1SDuncan Sands }
313cf3e3017SDan Gohman #endif
3141202d1b1SDuncan Sands 
3155a0d4829SChris Lattner /// runFunctionAsMain - This is a helper function which wraps runFunction to
3165a0d4829SChris Lattner /// handle the common task of starting up main with the specified argc, argv,
3175a0d4829SChris Lattner /// and envp parameters.
3185a0d4829SChris Lattner int ExecutionEngine::runFunctionAsMain(Function *Fn,
3195a0d4829SChris Lattner                                        const std::vector<std::string> &argv,
3205a0d4829SChris Lattner                                        const char * const * envp) {
3215a0d4829SChris Lattner   std::vector<GenericValue> GVArgs;
3225a0d4829SChris Lattner   GenericValue GVArgc;
32387aa65f4SReid Spencer   GVArgc.IntVal = APInt(32, argv.size());
3248c32c111SAnton Korobeynikov 
3258c32c111SAnton Korobeynikov   // Check main() type
326b1cad0b3SChris Lattner   unsigned NumArgs = Fn->getFunctionType()->getNumParams();
3278c32c111SAnton Korobeynikov   const FunctionType *FTy = Fn->getFunctionType();
328edf07887SChristopher Lamb   const Type* PPInt8Ty =
329edf07887SChristopher Lamb     PointerType::getUnqual(PointerType::getUnqual(Type::Int8Ty));
3308c32c111SAnton Korobeynikov   switch (NumArgs) {
3318c32c111SAnton Korobeynikov   case 3:
3328c32c111SAnton Korobeynikov    if (FTy->getParamType(2) != PPInt8Ty) {
3338c32c111SAnton Korobeynikov      cerr << "Invalid type for third argument of main() supplied\n";
3348c32c111SAnton Korobeynikov      abort();
3358c32c111SAnton Korobeynikov    }
336b781886dSAnton Korobeynikov    // FALLS THROUGH
3378c32c111SAnton Korobeynikov   case 2:
3388c32c111SAnton Korobeynikov    if (FTy->getParamType(1) != PPInt8Ty) {
3398c32c111SAnton Korobeynikov      cerr << "Invalid type for second argument of main() supplied\n";
3408c32c111SAnton Korobeynikov      abort();
3418c32c111SAnton Korobeynikov    }
342b781886dSAnton Korobeynikov    // FALLS THROUGH
3438c32c111SAnton Korobeynikov   case 1:
3448c32c111SAnton Korobeynikov    if (FTy->getParamType(0) != Type::Int32Ty) {
3458c32c111SAnton Korobeynikov      cerr << "Invalid type for first argument of main() supplied\n";
3468c32c111SAnton Korobeynikov      abort();
3478c32c111SAnton Korobeynikov    }
348b781886dSAnton Korobeynikov    // FALLS THROUGH
3498c32c111SAnton Korobeynikov   case 0:
350*370ec10dSChris Lattner    if (!isa<IntegerType>(FTy->getReturnType()) &&
3518c32c111SAnton Korobeynikov        FTy->getReturnType() != Type::VoidTy) {
3528c32c111SAnton Korobeynikov      cerr << "Invalid return type of main() supplied\n";
3538c32c111SAnton Korobeynikov      abort();
3548c32c111SAnton Korobeynikov    }
3558c32c111SAnton Korobeynikov    break;
3568c32c111SAnton Korobeynikov   default:
3578c32c111SAnton Korobeynikov    cerr << "Invalid number of arguments of main() supplied\n";
3588c32c111SAnton Korobeynikov    abort();
3598c32c111SAnton Korobeynikov   }
3608c32c111SAnton Korobeynikov 
361b1cad0b3SChris Lattner   if (NumArgs) {
3625a0d4829SChris Lattner     GVArgs.push_back(GVArgc); // Arg #0 = argc.
363b1cad0b3SChris Lattner     if (NumArgs > 1) {
3645a0d4829SChris Lattner       GVArgs.push_back(PTOGV(CreateArgv(this, argv))); // Arg #1 = argv.
3651202d1b1SDuncan Sands       assert(!isTargetNullPtr(this, GVTOP(GVArgs[1])) &&
366b1cad0b3SChris Lattner              "argv[0] was null after CreateArgv");
367b1cad0b3SChris Lattner       if (NumArgs > 2) {
3685a0d4829SChris Lattner         std::vector<std::string> EnvVars;
3695a0d4829SChris Lattner         for (unsigned i = 0; envp[i]; ++i)
3705a0d4829SChris Lattner           EnvVars.push_back(envp[i]);
3715a0d4829SChris Lattner         GVArgs.push_back(PTOGV(CreateArgv(this, EnvVars))); // Arg #2 = envp.
372b1cad0b3SChris Lattner       }
373b1cad0b3SChris Lattner     }
374b1cad0b3SChris Lattner   }
37587aa65f4SReid Spencer   return runFunction(Fn, GVArgs).IntVal.getZExtValue();
3765a0d4829SChris Lattner }
3775a0d4829SChris Lattner 
378260b0c88SMisha Brukman /// If possible, create a JIT, unless the caller specifically requests an
379260b0c88SMisha Brukman /// Interpreter or there's an error. If even an Interpreter cannot be created,
380260b0c88SMisha Brukman /// NULL is returned.
381857c21b4SMisha Brukman ///
3822f1e2002SMisha Brukman ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
383603682adSReid Spencer                                          bool ForceInterpreter,
3847ff05bf5SEvan Cheng                                          std::string *ErrorStr,
3857ff05bf5SEvan Cheng                                          bool Fast) {
3864bd3bd5bSBrian Gaeke   ExecutionEngine *EE = 0;
3874bd3bd5bSBrian Gaeke 
388a53414fdSNick Lewycky   // Make sure we can resolve symbols in the program as well. The zero arg
389a53414fdSNick Lewycky   // to the function tells DynamicLibrary to load the program, not a library.
390a53414fdSNick Lewycky   if (sys::DynamicLibrary::LoadLibraryPermanently(0, ErrorStr))
391a53414fdSNick Lewycky     return 0;
392a53414fdSNick Lewycky 
393c8c6c03dSChris Lattner   // Unless the interpreter was explicitly selected, try making a JIT.
3942d52c1b8SChris Lattner   if (!ForceInterpreter && JITCtor)
3957ff05bf5SEvan Cheng     EE = JITCtor(MP, ErrorStr, Fast);
3964bd3bd5bSBrian Gaeke 
3974bd3bd5bSBrian Gaeke   // If we can't make a JIT, make an interpreter instead.
3982d52c1b8SChris Lattner   if (EE == 0 && InterpCtor)
3997ff05bf5SEvan Cheng     EE = InterpCtor(MP, ErrorStr, Fast);
400c8c6c03dSChris Lattner 
4014bd3bd5bSBrian Gaeke   return EE;
4024bd3bd5bSBrian Gaeke }
4034bd3bd5bSBrian Gaeke 
404b5163bb9SChris Lattner ExecutionEngine *ExecutionEngine::create(Module *M) {
405b5163bb9SChris Lattner   return create(new ExistingModuleProvider(M));
406b5163bb9SChris Lattner }
407b5163bb9SChris Lattner 
408857c21b4SMisha Brukman /// getPointerToGlobal - This returns the address of the specified global
409857c21b4SMisha Brukman /// value.  This may involve code generation if it's a function.
410857c21b4SMisha Brukman ///
411996fe010SChris Lattner void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
4121678e859SBrian Gaeke   if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV)))
413996fe010SChris Lattner     return getPointerToFunction(F);
414996fe010SChris Lattner 
41579876f52SReid Spencer   MutexGuard locked(lock);
41669e84901SJeff Cohen   void *p = state.getGlobalAddressMap(locked)[GV];
41769e84901SJeff Cohen   if (p)
41869e84901SJeff Cohen     return p;
41969e84901SJeff Cohen 
42069e84901SJeff Cohen   // Global variable might have been added since interpreter started.
42169e84901SJeff Cohen   if (GlobalVariable *GVar =
42269e84901SJeff Cohen           const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
42369e84901SJeff Cohen     EmitGlobalVariable(GVar);
42469e84901SJeff Cohen   else
4254da5e17cSChris Lattner     assert(0 && "Global hasn't had an address allocated yet!");
42679876f52SReid Spencer   return state.getGlobalAddressMap(locked)[GV];
427996fe010SChris Lattner }
428996fe010SChris Lattner 
4296c38f0bbSReid Spencer /// This function converts a Constant* into a GenericValue. The interesting
4306c38f0bbSReid Spencer /// part is if C is a ConstantExpr.
4312dc9f132SReid Spencer /// @brief Get a GenericValue for a Constant*
432996fe010SChris Lattner GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
4336c38f0bbSReid Spencer   // If its undefined, return the garbage.
4344fd528f2SReid Spencer   if (isa<UndefValue>(C))
4354fd528f2SReid Spencer     return GenericValue();
4369de0d14dSChris Lattner 
4376c38f0bbSReid Spencer   // If the value is a ConstantExpr
4386c38f0bbSReid Spencer   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
4394fd528f2SReid Spencer     Constant *Op0 = CE->getOperand(0);
4409de0d14dSChris Lattner     switch (CE->getOpcode()) {
4419de0d14dSChris Lattner     case Instruction::GetElementPtr: {
4426c38f0bbSReid Spencer       // Compute the index
4434fd528f2SReid Spencer       GenericValue Result = getConstantValue(Op0);
444c44bd78aSChris Lattner       SmallVector<Value*, 8> Indices(CE->op_begin()+1, CE->op_end());
4459de0d14dSChris Lattner       uint64_t Offset =
4464fd528f2SReid Spencer         TD->getIndexedOffset(Op0->getType(), &Indices[0], Indices.size());
4479de0d14dSChris Lattner 
44887aa65f4SReid Spencer       char* tmp = (char*) Result.PointerVal;
44987aa65f4SReid Spencer       Result = PTOGV(tmp + Offset);
4509de0d14dSChris Lattner       return Result;
4519de0d14dSChris Lattner     }
4524fd528f2SReid Spencer     case Instruction::Trunc: {
4534fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
4544fd528f2SReid Spencer       uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
4554fd528f2SReid Spencer       GV.IntVal = GV.IntVal.trunc(BitWidth);
4564fd528f2SReid Spencer       return GV;
4574fd528f2SReid Spencer     }
4584fd528f2SReid Spencer     case Instruction::ZExt: {
4594fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
4604fd528f2SReid Spencer       uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
4614fd528f2SReid Spencer       GV.IntVal = GV.IntVal.zext(BitWidth);
4624fd528f2SReid Spencer       return GV;
4634fd528f2SReid Spencer     }
4644fd528f2SReid Spencer     case Instruction::SExt: {
4654fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
4664fd528f2SReid Spencer       uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
4674fd528f2SReid Spencer       GV.IntVal = GV.IntVal.sext(BitWidth);
4684fd528f2SReid Spencer       return GV;
4694fd528f2SReid Spencer     }
4704fd528f2SReid Spencer     case Instruction::FPTrunc: {
471a1336cf5SDale Johannesen       // FIXME long double
4724fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
4734fd528f2SReid Spencer       GV.FloatVal = float(GV.DoubleVal);
4744fd528f2SReid Spencer       return GV;
4754fd528f2SReid Spencer     }
4764fd528f2SReid Spencer     case Instruction::FPExt:{
477a1336cf5SDale Johannesen       // FIXME long double
4784fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
4794fd528f2SReid Spencer       GV.DoubleVal = double(GV.FloatVal);
4804fd528f2SReid Spencer       return GV;
4814fd528f2SReid Spencer     }
4824fd528f2SReid Spencer     case Instruction::UIToFP: {
4834fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
4844fd528f2SReid Spencer       if (CE->getType() == Type::FloatTy)
4854fd528f2SReid Spencer         GV.FloatVal = float(GV.IntVal.roundToDouble());
486a1336cf5SDale Johannesen       else if (CE->getType() == Type::DoubleTy)
4874fd528f2SReid Spencer         GV.DoubleVal = GV.IntVal.roundToDouble();
488a1336cf5SDale Johannesen       else if (CE->getType() == Type::X86_FP80Ty) {
489a1336cf5SDale Johannesen         const uint64_t zero[] = {0, 0};
490a1336cf5SDale Johannesen         APFloat apf = APFloat(APInt(80, 2, zero));
491ca24fd90SDan Gohman         (void)apf.convertFromAPInt(GV.IntVal,
492ca24fd90SDan Gohman                                    false,
4939150652bSDale Johannesen                                    APFloat::rmNearestTiesToEven);
49454306fe4SDale Johannesen         GV.IntVal = apf.bitcastToAPInt();
495a1336cf5SDale Johannesen       }
4964fd528f2SReid Spencer       return GV;
4974fd528f2SReid Spencer     }
4984fd528f2SReid Spencer     case Instruction::SIToFP: {
4994fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
5004fd528f2SReid Spencer       if (CE->getType() == Type::FloatTy)
5014fd528f2SReid Spencer         GV.FloatVal = float(GV.IntVal.signedRoundToDouble());
502a1336cf5SDale Johannesen       else if (CE->getType() == Type::DoubleTy)
5034fd528f2SReid Spencer         GV.DoubleVal = GV.IntVal.signedRoundToDouble();
504a1336cf5SDale Johannesen       else if (CE->getType() == Type::X86_FP80Ty) {
505a1336cf5SDale Johannesen         const uint64_t zero[] = { 0, 0};
506a1336cf5SDale Johannesen         APFloat apf = APFloat(APInt(80, 2, zero));
507ca24fd90SDan Gohman         (void)apf.convertFromAPInt(GV.IntVal,
508ca24fd90SDan Gohman                                    true,
5099150652bSDale Johannesen                                    APFloat::rmNearestTiesToEven);
51054306fe4SDale Johannesen         GV.IntVal = apf.bitcastToAPInt();
511a1336cf5SDale Johannesen       }
5124fd528f2SReid Spencer       return GV;
5134fd528f2SReid Spencer     }
5144fd528f2SReid Spencer     case Instruction::FPToUI: // double->APInt conversion handles sign
5154fd528f2SReid Spencer     case Instruction::FPToSI: {
5164fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
5174fd528f2SReid Spencer       uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
5184fd528f2SReid Spencer       if (Op0->getType() == Type::FloatTy)
5194fd528f2SReid Spencer         GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth);
520a1336cf5SDale Johannesen       else if (Op0->getType() == Type::DoubleTy)
5214fd528f2SReid Spencer         GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth);
522a1336cf5SDale Johannesen       else if (Op0->getType() == Type::X86_FP80Ty) {
523a1336cf5SDale Johannesen         APFloat apf = APFloat(GV.IntVal);
524a1336cf5SDale Johannesen         uint64_t v;
5254f0bd68cSDale Johannesen         bool ignored;
526a1336cf5SDale Johannesen         (void)apf.convertToInteger(&v, BitWidth,
527a1336cf5SDale Johannesen                                    CE->getOpcode()==Instruction::FPToSI,
5284f0bd68cSDale Johannesen                                    APFloat::rmTowardZero, &ignored);
529a1336cf5SDale Johannesen         GV.IntVal = v; // endian?
530a1336cf5SDale Johannesen       }
5314fd528f2SReid Spencer       return GV;
5324fd528f2SReid Spencer     }
5336c38f0bbSReid Spencer     case Instruction::PtrToInt: {
5344fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
5354fd528f2SReid Spencer       uint32_t PtrWidth = TD->getPointerSizeInBits();
5364fd528f2SReid Spencer       GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
5374fd528f2SReid Spencer       return GV;
5384fd528f2SReid Spencer     }
5394fd528f2SReid Spencer     case Instruction::IntToPtr: {
5404fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
5414fd528f2SReid Spencer       uint32_t PtrWidth = TD->getPointerSizeInBits();
5424fd528f2SReid Spencer       if (PtrWidth != GV.IntVal.getBitWidth())
5434fd528f2SReid Spencer         GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
5444fd528f2SReid Spencer       assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width");
5454fd528f2SReid Spencer       GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue()));
5466c38f0bbSReid Spencer       return GV;
5476c38f0bbSReid Spencer     }
5486c38f0bbSReid Spencer     case Instruction::BitCast: {
5494fd528f2SReid Spencer       GenericValue GV = getConstantValue(Op0);
5504fd528f2SReid Spencer       const Type* DestTy = CE->getType();
5514fd528f2SReid Spencer       switch (Op0->getType()->getTypeID()) {
5524fd528f2SReid Spencer         default: assert(0 && "Invalid bitcast operand");
5534fd528f2SReid Spencer         case Type::IntegerTyID:
5544fd528f2SReid Spencer           assert(DestTy->isFloatingPoint() && "invalid bitcast");
5554fd528f2SReid Spencer           if (DestTy == Type::FloatTy)
5564fd528f2SReid Spencer             GV.FloatVal = GV.IntVal.bitsToFloat();
5574fd528f2SReid Spencer           else if (DestTy == Type::DoubleTy)
5584fd528f2SReid Spencer             GV.DoubleVal = GV.IntVal.bitsToDouble();
5596c38f0bbSReid Spencer           break;
5604fd528f2SReid Spencer         case Type::FloatTyID:
5614fd528f2SReid Spencer           assert(DestTy == Type::Int32Ty && "Invalid bitcast");
5624fd528f2SReid Spencer           GV.IntVal.floatToBits(GV.FloatVal);
5634fd528f2SReid Spencer           break;
5644fd528f2SReid Spencer         case Type::DoubleTyID:
5654fd528f2SReid Spencer           assert(DestTy == Type::Int64Ty && "Invalid bitcast");
5664fd528f2SReid Spencer           GV.IntVal.doubleToBits(GV.DoubleVal);
5674fd528f2SReid Spencer           break;
5684fd528f2SReid Spencer         case Type::PointerTyID:
5694fd528f2SReid Spencer           assert(isa<PointerType>(DestTy) && "Invalid bitcast");
5704fd528f2SReid Spencer           break; // getConstantValue(Op0)  above already converted it
5716c38f0bbSReid Spencer       }
5724fd528f2SReid Spencer       return GV;
57368cbcc3eSChris Lattner     }
57468cbcc3eSChris Lattner     case Instruction::Add:
5754fd528f2SReid Spencer     case Instruction::Sub:
5764fd528f2SReid Spencer     case Instruction::Mul:
5774fd528f2SReid Spencer     case Instruction::UDiv:
5784fd528f2SReid Spencer     case Instruction::SDiv:
5794fd528f2SReid Spencer     case Instruction::URem:
5804fd528f2SReid Spencer     case Instruction::SRem:
5814fd528f2SReid Spencer     case Instruction::And:
5824fd528f2SReid Spencer     case Instruction::Or:
5834fd528f2SReid Spencer     case Instruction::Xor: {
5844fd528f2SReid Spencer       GenericValue LHS = getConstantValue(Op0);
5854fd528f2SReid Spencer       GenericValue RHS = getConstantValue(CE->getOperand(1));
5864fd528f2SReid Spencer       GenericValue GV;
587c4e6bb5fSChris Lattner       switch (CE->getOperand(0)->getType()->getTypeID()) {
588c4e6bb5fSChris Lattner       default: assert(0 && "Bad add type!"); abort();
5897a9c62baSReid Spencer       case Type::IntegerTyID:
5904fd528f2SReid Spencer         switch (CE->getOpcode()) {
5914fd528f2SReid Spencer           default: assert(0 && "Invalid integer opcode");
5924fd528f2SReid Spencer           case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
5934fd528f2SReid Spencer           case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
5944fd528f2SReid Spencer           case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
5954fd528f2SReid Spencer           case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
5964fd528f2SReid Spencer           case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
5974fd528f2SReid Spencer           case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
5984fd528f2SReid Spencer           case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
5994fd528f2SReid Spencer           case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break;
6004fd528f2SReid Spencer           case Instruction::Or:  GV.IntVal = LHS.IntVal | RHS.IntVal; break;
6014fd528f2SReid Spencer           case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break;
6024fd528f2SReid Spencer         }
603c4e6bb5fSChris Lattner         break;
604c4e6bb5fSChris Lattner       case Type::FloatTyID:
6054fd528f2SReid Spencer         switch (CE->getOpcode()) {
6064fd528f2SReid Spencer           default: assert(0 && "Invalid float opcode"); abort();
6074fd528f2SReid Spencer           case Instruction::Add:
6084fd528f2SReid Spencer             GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break;
6094fd528f2SReid Spencer           case Instruction::Sub:
6104fd528f2SReid Spencer             GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break;
6114fd528f2SReid Spencer           case Instruction::Mul:
6124fd528f2SReid Spencer             GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break;
6134fd528f2SReid Spencer           case Instruction::FDiv:
6144fd528f2SReid Spencer             GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break;
6154fd528f2SReid Spencer           case Instruction::FRem:
6164fd528f2SReid Spencer             GV.FloatVal = ::fmodf(LHS.FloatVal,RHS.FloatVal); break;
6174fd528f2SReid Spencer         }
618c4e6bb5fSChris Lattner         break;
619c4e6bb5fSChris Lattner       case Type::DoubleTyID:
6204fd528f2SReid Spencer         switch (CE->getOpcode()) {
6214fd528f2SReid Spencer           default: assert(0 && "Invalid double opcode"); abort();
6224fd528f2SReid Spencer           case Instruction::Add:
6234fd528f2SReid Spencer             GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break;
6244fd528f2SReid Spencer           case Instruction::Sub:
6254fd528f2SReid Spencer             GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break;
6264fd528f2SReid Spencer           case Instruction::Mul:
6274fd528f2SReid Spencer             GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break;
6284fd528f2SReid Spencer           case Instruction::FDiv:
6294fd528f2SReid Spencer             GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break;
6304fd528f2SReid Spencer           case Instruction::FRem:
6314fd528f2SReid Spencer             GV.DoubleVal = ::fmod(LHS.DoubleVal,RHS.DoubleVal); break;
6324fd528f2SReid Spencer         }
633c4e6bb5fSChris Lattner         break;
634a1336cf5SDale Johannesen       case Type::X86_FP80TyID:
635a1336cf5SDale Johannesen       case Type::PPC_FP128TyID:
636a1336cf5SDale Johannesen       case Type::FP128TyID: {
637a1336cf5SDale Johannesen         APFloat apfLHS = APFloat(LHS.IntVal);
638a1336cf5SDale Johannesen         switch (CE->getOpcode()) {
639a1336cf5SDale Johannesen           default: assert(0 && "Invalid long double opcode"); abort();
640a1336cf5SDale Johannesen           case Instruction::Add:
641a1336cf5SDale Johannesen             apfLHS.add(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
64254306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
643a1336cf5SDale Johannesen             break;
644a1336cf5SDale Johannesen           case Instruction::Sub:
645a1336cf5SDale Johannesen             apfLHS.subtract(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
64654306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
647a1336cf5SDale Johannesen             break;
648a1336cf5SDale Johannesen           case Instruction::Mul:
649a1336cf5SDale Johannesen             apfLHS.multiply(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
65054306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
651a1336cf5SDale Johannesen             break;
652a1336cf5SDale Johannesen           case Instruction::FDiv:
653a1336cf5SDale Johannesen             apfLHS.divide(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
65454306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
655a1336cf5SDale Johannesen             break;
656a1336cf5SDale Johannesen           case Instruction::FRem:
657a1336cf5SDale Johannesen             apfLHS.mod(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
65854306fe4SDale Johannesen             GV.IntVal = apfLHS.bitcastToAPInt();
659a1336cf5SDale Johannesen             break;
660a1336cf5SDale Johannesen           }
661a1336cf5SDale Johannesen         }
662a1336cf5SDale Johannesen         break;
663c4e6bb5fSChris Lattner       }
6644fd528f2SReid Spencer       return GV;
6654fd528f2SReid Spencer     }
6669de0d14dSChris Lattner     default:
66768cbcc3eSChris Lattner       break;
66868cbcc3eSChris Lattner     }
6694fd528f2SReid Spencer     cerr << "ConstantExpr not handled: " << *CE << "\n";
6709de0d14dSChris Lattner     abort();
6719de0d14dSChris Lattner   }
672996fe010SChris Lattner 
6734fd528f2SReid Spencer   GenericValue Result;
6746b727599SChris Lattner   switch (C->getType()->getTypeID()) {
67587aa65f4SReid Spencer   case Type::FloatTyID:
676bed9dc42SDale Johannesen     Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
6777a9c62baSReid Spencer     break;
67887aa65f4SReid Spencer   case Type::DoubleTyID:
679bed9dc42SDale Johannesen     Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble();
68087aa65f4SReid Spencer     break;
681a1336cf5SDale Johannesen   case Type::X86_FP80TyID:
682a1336cf5SDale Johannesen   case Type::FP128TyID:
683a1336cf5SDale Johannesen   case Type::PPC_FP128TyID:
68454306fe4SDale Johannesen     Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt();
685a1336cf5SDale Johannesen     break;
68687aa65f4SReid Spencer   case Type::IntegerTyID:
68787aa65f4SReid Spencer     Result.IntVal = cast<ConstantInt>(C)->getValue();
68887aa65f4SReid Spencer     break;
689996fe010SChris Lattner   case Type::PointerTyID:
6906a0fd73bSReid Spencer     if (isa<ConstantPointerNull>(C))
691996fe010SChris Lattner       Result.PointerVal = 0;
6926a0fd73bSReid Spencer     else if (const Function *F = dyn_cast<Function>(C))
6936a0fd73bSReid Spencer       Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F)));
6946a0fd73bSReid Spencer     else if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
6956a0fd73bSReid Spencer       Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
696e6492f10SChris Lattner     else
697996fe010SChris Lattner       assert(0 && "Unknown constant pointer type!");
698996fe010SChris Lattner     break;
699996fe010SChris Lattner   default:
7004fd528f2SReid Spencer     cerr << "ERROR: Constant unimplemented for type: " << *C->getType() << "\n";
7019de0d14dSChris Lattner     abort();
702996fe010SChris Lattner   }
703996fe010SChris Lattner   return Result;
704996fe010SChris Lattner }
705996fe010SChris Lattner 
7061202d1b1SDuncan Sands /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst
7071202d1b1SDuncan Sands /// with the integer held in IntVal.
7081202d1b1SDuncan Sands static void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst,
7091202d1b1SDuncan Sands                              unsigned StoreBytes) {
7101202d1b1SDuncan Sands   assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!");
7111202d1b1SDuncan Sands   uint8_t *Src = (uint8_t *)IntVal.getRawData();
7125c65cb46SDuncan Sands 
713aa121227SChris Lattner   if (sys::isLittleEndianHost())
7141202d1b1SDuncan Sands     // Little-endian host - the source is ordered from LSB to MSB.  Order the
7151202d1b1SDuncan Sands     // destination from LSB to MSB: Do a straight copy.
7165c65cb46SDuncan Sands     memcpy(Dst, Src, StoreBytes);
7175c65cb46SDuncan Sands   else {
7185c65cb46SDuncan Sands     // Big-endian host - the source is an array of 64 bit words ordered from
7191202d1b1SDuncan Sands     // LSW to MSW.  Each word is ordered from MSB to LSB.  Order the destination
7201202d1b1SDuncan Sands     // from MSB to LSB: Reverse the word order, but not the bytes in a word.
7215c65cb46SDuncan Sands     while (StoreBytes > sizeof(uint64_t)) {
7225c65cb46SDuncan Sands       StoreBytes -= sizeof(uint64_t);
7235c65cb46SDuncan Sands       // May not be aligned so use memcpy.
7245c65cb46SDuncan Sands       memcpy(Dst + StoreBytes, Src, sizeof(uint64_t));
7255c65cb46SDuncan Sands       Src += sizeof(uint64_t);
7265c65cb46SDuncan Sands     }
7275c65cb46SDuncan Sands 
7285c65cb46SDuncan Sands     memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes);
729815f8dd2SReid Spencer   }
7307a9c62baSReid Spencer }
7311202d1b1SDuncan Sands 
7321202d1b1SDuncan Sands /// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr.  Ptr
7331202d1b1SDuncan Sands /// is the address of the memory at which to store Val, cast to GenericValue *.
7341202d1b1SDuncan Sands /// It is not a pointer to a GenericValue containing the address at which to
7351202d1b1SDuncan Sands /// store Val.
73609053e62SEvan Cheng void ExecutionEngine::StoreValueToMemory(const GenericValue &Val,
73709053e62SEvan Cheng                                          GenericValue *Ptr, const Type *Ty) {
7381202d1b1SDuncan Sands   const unsigned StoreBytes = getTargetData()->getTypeStoreSize(Ty);
7391202d1b1SDuncan Sands 
7401202d1b1SDuncan Sands   switch (Ty->getTypeID()) {
7411202d1b1SDuncan Sands   case Type::IntegerTyID:
7421202d1b1SDuncan Sands     StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes);
7431202d1b1SDuncan Sands     break;
744996fe010SChris Lattner   case Type::FloatTyID:
74587aa65f4SReid Spencer     *((float*)Ptr) = Val.FloatVal;
74687aa65f4SReid Spencer     break;
74787aa65f4SReid Spencer   case Type::DoubleTyID:
74887aa65f4SReid Spencer     *((double*)Ptr) = Val.DoubleVal;
749996fe010SChris Lattner     break;
750a1336cf5SDale Johannesen   case Type::X86_FP80TyID: {
751a1336cf5SDale Johannesen       uint16_t *Dest = (uint16_t*)Ptr;
752a1336cf5SDale Johannesen       const uint16_t *Src = (uint16_t*)Val.IntVal.getRawData();
753a1336cf5SDale Johannesen       // This is endian dependent, but it will only work on x86 anyway.
754a1336cf5SDale Johannesen       Dest[0] = Src[4];
755a1336cf5SDale Johannesen       Dest[1] = Src[0];
756a1336cf5SDale Johannesen       Dest[2] = Src[1];
757a1336cf5SDale Johannesen       Dest[3] = Src[2];
758a1336cf5SDale Johannesen       Dest[4] = Src[3];
759a1336cf5SDale Johannesen       break;
760a1336cf5SDale Johannesen     }
7617a9c62baSReid Spencer   case Type::PointerTyID:
7621202d1b1SDuncan Sands     // Ensure 64 bit target pointers are fully initialized on 32 bit hosts.
7631202d1b1SDuncan Sands     if (StoreBytes != sizeof(PointerTy))
7641202d1b1SDuncan Sands       memset(Ptr, 0, StoreBytes);
7651202d1b1SDuncan Sands 
76687aa65f4SReid Spencer     *((PointerTy*)Ptr) = Val.PointerVal;
767996fe010SChris Lattner     break;
768996fe010SChris Lattner   default:
769f3baad3eSBill Wendling     cerr << "Cannot store value of type " << *Ty << "!\n";
770996fe010SChris Lattner   }
7711202d1b1SDuncan Sands 
772aa121227SChris Lattner   if (sys::isLittleEndianHost() != getTargetData()->isLittleEndian())
7731202d1b1SDuncan Sands     // Host and target are different endian - reverse the stored bytes.
7741202d1b1SDuncan Sands     std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr);
775996fe010SChris Lattner }
776996fe010SChris Lattner 
7771202d1b1SDuncan Sands /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
7781202d1b1SDuncan Sands /// from Src into IntVal, which is assumed to be wide enough and to hold zero.
7791202d1b1SDuncan Sands static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) {
7801202d1b1SDuncan Sands   assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
7811202d1b1SDuncan Sands   uint8_t *Dst = (uint8_t *)IntVal.getRawData();
7825c65cb46SDuncan Sands 
783aa121227SChris Lattner   if (sys::isLittleEndianHost())
7845c65cb46SDuncan Sands     // Little-endian host - the destination must be ordered from LSB to MSB.
7855c65cb46SDuncan Sands     // The source is ordered from LSB to MSB: Do a straight copy.
7865c65cb46SDuncan Sands     memcpy(Dst, Src, LoadBytes);
7875c65cb46SDuncan Sands   else {
7885c65cb46SDuncan Sands     // Big-endian - the destination is an array of 64 bit words ordered from
7895c65cb46SDuncan Sands     // LSW to MSW.  Each word must be ordered from MSB to LSB.  The source is
7905c65cb46SDuncan Sands     // ordered from MSB to LSB: Reverse the word order, but not the bytes in
7915c65cb46SDuncan Sands     // a word.
7925c65cb46SDuncan Sands     while (LoadBytes > sizeof(uint64_t)) {
7935c65cb46SDuncan Sands       LoadBytes -= sizeof(uint64_t);
7945c65cb46SDuncan Sands       // May not be aligned so use memcpy.
7955c65cb46SDuncan Sands       memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
7965c65cb46SDuncan Sands       Dst += sizeof(uint64_t);
7975c65cb46SDuncan Sands     }
7985c65cb46SDuncan Sands 
7995c65cb46SDuncan Sands     memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
8005c65cb46SDuncan Sands   }
8017a9c62baSReid Spencer }
8021202d1b1SDuncan Sands 
8031202d1b1SDuncan Sands /// FIXME: document
8041202d1b1SDuncan Sands ///
8051202d1b1SDuncan Sands void ExecutionEngine::LoadValueFromMemory(GenericValue &Result,
8061202d1b1SDuncan Sands                                           GenericValue *Ptr,
8071202d1b1SDuncan Sands                                           const Type *Ty) {
8081202d1b1SDuncan Sands   const unsigned LoadBytes = getTargetData()->getTypeStoreSize(Ty);
8091202d1b1SDuncan Sands 
810aa121227SChris Lattner   if (sys::isLittleEndianHost() != getTargetData()->isLittleEndian()) {
8111202d1b1SDuncan Sands     // Host and target are different endian - reverse copy the stored
8121202d1b1SDuncan Sands     // bytes into a buffer, and load from that.
8131202d1b1SDuncan Sands     uint8_t *Src = (uint8_t*)Ptr;
8141202d1b1SDuncan Sands     uint8_t *Buf = (uint8_t*)alloca(LoadBytes);
8151202d1b1SDuncan Sands     std::reverse_copy(Src, Src + LoadBytes, Buf);
8161202d1b1SDuncan Sands     Ptr = (GenericValue*)Buf;
8171202d1b1SDuncan Sands   }
8181202d1b1SDuncan Sands 
8191202d1b1SDuncan Sands   switch (Ty->getTypeID()) {
8201202d1b1SDuncan Sands   case Type::IntegerTyID:
8211202d1b1SDuncan Sands     // An APInt with all words initially zero.
8221202d1b1SDuncan Sands     Result.IntVal = APInt(cast<IntegerType>(Ty)->getBitWidth(), 0);
8231202d1b1SDuncan Sands     LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes);
8241202d1b1SDuncan Sands     break;
8257f389e8cSChris Lattner   case Type::FloatTyID:
82687aa65f4SReid Spencer     Result.FloatVal = *((float*)Ptr);
82787aa65f4SReid Spencer     break;
82887aa65f4SReid Spencer   case Type::DoubleTyID:
82987aa65f4SReid Spencer     Result.DoubleVal = *((double*)Ptr);
8307f389e8cSChris Lattner     break;
8317a9c62baSReid Spencer   case Type::PointerTyID:
83287aa65f4SReid Spencer     Result.PointerVal = *((PointerTy*)Ptr);
8337f389e8cSChris Lattner     break;
834a1336cf5SDale Johannesen   case Type::X86_FP80TyID: {
835a1336cf5SDale Johannesen     // This is endian dependent, but it will only work on x86 anyway.
83626d6539eSDuncan Sands     // FIXME: Will not trap if loading a signaling NaN.
837ff306287SDuncan Sands     uint16_t *p = (uint16_t*)Ptr;
838ff306287SDuncan Sands     union {
839ff306287SDuncan Sands       uint16_t x[8];
840ff306287SDuncan Sands       uint64_t y[2];
841ff306287SDuncan Sands     };
842a1336cf5SDale Johannesen     x[0] = p[1];
843a1336cf5SDale Johannesen     x[1] = p[2];
844a1336cf5SDale Johannesen     x[2] = p[3];
845a1336cf5SDale Johannesen     x[3] = p[4];
846a1336cf5SDale Johannesen     x[4] = p[0];
847ff306287SDuncan Sands     Result.IntVal = APInt(80, 2, y);
848a1336cf5SDale Johannesen     break;
849a1336cf5SDale Johannesen   }
8507f389e8cSChris Lattner   default:
851f3baad3eSBill Wendling     cerr << "Cannot load value of type " << *Ty << "!\n";
8527f389e8cSChris Lattner     abort();
8537f389e8cSChris Lattner   }
8547f389e8cSChris Lattner }
8557f389e8cSChris Lattner 
856996fe010SChris Lattner // InitializeMemory - Recursive function to apply a Constant value into the
857996fe010SChris Lattner // specified memory location...
858996fe010SChris Lattner //
859996fe010SChris Lattner void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
860972fd1a1SEvan Cheng   DOUT << "JIT: Initializing " << Addr << " ";
861b086d382SDale Johannesen   DEBUG(Init->dump());
86261753bf8SChris Lattner   if (isa<UndefValue>(Init)) {
86361753bf8SChris Lattner     return;
864d84d35baSReid Spencer   } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
86569d62138SRobert Bocchino     unsigned ElementSize =
866dc020f9cSDuncan Sands       getTargetData()->getTypePaddedSize(CP->getType()->getElementType());
86769d62138SRobert Bocchino     for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
86869d62138SRobert Bocchino       InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
86969d62138SRobert Bocchino     return;
8701dd86b11SChris Lattner   } else if (isa<ConstantAggregateZero>(Init)) {
871dc020f9cSDuncan Sands     memset(Addr, 0, (size_t)getTargetData()->getTypePaddedSize(Init->getType()));
8721dd86b11SChris Lattner     return;
87369ddfbfeSDan Gohman   } else if (const ConstantArray *CPA = dyn_cast<ConstantArray>(Init)) {
87469ddfbfeSDan Gohman     unsigned ElementSize =
875dc020f9cSDuncan Sands       getTargetData()->getTypePaddedSize(CPA->getType()->getElementType());
87669ddfbfeSDan Gohman     for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
87769ddfbfeSDan Gohman       InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
87869ddfbfeSDan Gohman     return;
87969ddfbfeSDan Gohman   } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(Init)) {
88069ddfbfeSDan Gohman     const StructLayout *SL =
88169ddfbfeSDan Gohman       getTargetData()->getStructLayout(cast<StructType>(CPS->getType()));
88269ddfbfeSDan Gohman     for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
88369ddfbfeSDan Gohman       InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i));
88469ddfbfeSDan Gohman     return;
88561753bf8SChris Lattner   } else if (Init->getType()->isFirstClassType()) {
886996fe010SChris Lattner     GenericValue Val = getConstantValue(Init);
887996fe010SChris Lattner     StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
888996fe010SChris Lattner     return;
889996fe010SChris Lattner   }
890996fe010SChris Lattner 
891f3baad3eSBill Wendling   cerr << "Bad Type: " << *Init->getType() << "\n";
892996fe010SChris Lattner   assert(0 && "Unknown constant type to initialize memory with!");
893996fe010SChris Lattner }
894996fe010SChris Lattner 
895996fe010SChris Lattner /// EmitGlobals - Emit all of the global variables to memory, storing their
896996fe010SChris Lattner /// addresses into GlobalAddress.  This must make sure to copy the contents of
897996fe010SChris Lattner /// their initializers into the memory.
898996fe010SChris Lattner ///
899996fe010SChris Lattner void ExecutionEngine::emitGlobals() {
900996fe010SChris Lattner 
901996fe010SChris Lattner   // Loop over all of the global variables in the program, allocating the memory
9020621caefSChris Lattner   // to hold them.  If there is more than one module, do a prepass over globals
9030621caefSChris Lattner   // to figure out how the different modules should link together.
9040621caefSChris Lattner   //
9050621caefSChris Lattner   std::map<std::pair<std::string, const Type*>,
9060621caefSChris Lattner            const GlobalValue*> LinkedGlobalsMap;
9070621caefSChris Lattner 
9080621caefSChris Lattner   if (Modules.size() != 1) {
9090621caefSChris Lattner     for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
9100621caefSChris Lattner       Module &M = *Modules[m]->getModule();
9110621caefSChris Lattner       for (Module::const_global_iterator I = M.global_begin(),
9120621caefSChris Lattner            E = M.global_end(); I != E; ++I) {
9130621caefSChris Lattner         const GlobalValue *GV = I;
9146de96a1bSRafael Espindola         if (GV->hasLocalLinkage() || GV->isDeclaration() ||
9150621caefSChris Lattner             GV->hasAppendingLinkage() || !GV->hasName())
9160621caefSChris Lattner           continue;// Ignore external globals and globals with internal linkage.
9170621caefSChris Lattner 
9180621caefSChris Lattner         const GlobalValue *&GVEntry =
9190621caefSChris Lattner           LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
9200621caefSChris Lattner 
9210621caefSChris Lattner         // If this is the first time we've seen this global, it is the canonical
9220621caefSChris Lattner         // version.
9230621caefSChris Lattner         if (!GVEntry) {
9240621caefSChris Lattner           GVEntry = GV;
9250621caefSChris Lattner           continue;
9260621caefSChris Lattner         }
9270621caefSChris Lattner 
9280621caefSChris Lattner         // If the existing global is strong, never replace it.
929d61d39ecSAnton Korobeynikov         if (GVEntry->hasExternalLinkage() ||
930d61d39ecSAnton Korobeynikov             GVEntry->hasDLLImportLinkage() ||
931d61d39ecSAnton Korobeynikov             GVEntry->hasDLLExportLinkage())
9320621caefSChris Lattner           continue;
9330621caefSChris Lattner 
9340621caefSChris Lattner         // Otherwise, we know it's linkonce/weak, replace it if this is a strong
935ce4396bcSDale Johannesen         // symbol.  FIXME is this right for common?
93612c94949SAnton Korobeynikov         if (GV->hasExternalLinkage() || GVEntry->hasExternalWeakLinkage())
9370621caefSChris Lattner           GVEntry = GV;
9380621caefSChris Lattner       }
9390621caefSChris Lattner     }
9400621caefSChris Lattner   }
9410621caefSChris Lattner 
9420621caefSChris Lattner   std::vector<const GlobalValue*> NonCanonicalGlobals;
9430621caefSChris Lattner   for (unsigned m = 0, e = Modules.size(); m != e; ++m) {
9440621caefSChris Lattner     Module &M = *Modules[m]->getModule();
9458ffb6611SChris Lattner     for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
9460621caefSChris Lattner          I != E; ++I) {
9470621caefSChris Lattner       // In the multi-module case, see what this global maps to.
9480621caefSChris Lattner       if (!LinkedGlobalsMap.empty()) {
9490621caefSChris Lattner         if (const GlobalValue *GVEntry =
9500621caefSChris Lattner               LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())]) {
9510621caefSChris Lattner           // If something else is the canonical global, ignore this one.
9520621caefSChris Lattner           if (GVEntry != &*I) {
9530621caefSChris Lattner             NonCanonicalGlobals.push_back(I);
9540621caefSChris Lattner             continue;
9550621caefSChris Lattner           }
9560621caefSChris Lattner         }
9570621caefSChris Lattner       }
9580621caefSChris Lattner 
9595301e7c6SReid Spencer       if (!I->isDeclaration()) {
9605457ce9aSNicolas Geoffray         addGlobalMapping(I, getMemoryForGV(I));
961996fe010SChris Lattner       } else {
962e8bbcfc2SBrian Gaeke         // External variable reference. Try to use the dynamic loader to
963e8bbcfc2SBrian Gaeke         // get a pointer to it.
9640621caefSChris Lattner         if (void *SymAddr =
9650621caefSChris Lattner             sys::DynamicLibrary::SearchForAddressOfSymbol(I->getName().c_str()))
966748e8579SChris Lattner           addGlobalMapping(I, SymAddr);
9679de0d14dSChris Lattner         else {
968f3baad3eSBill Wendling           cerr << "Could not resolve external global address: "
9699de0d14dSChris Lattner                << I->getName() << "\n";
9709de0d14dSChris Lattner           abort();
9719de0d14dSChris Lattner         }
972996fe010SChris Lattner       }
9730621caefSChris Lattner     }
9740621caefSChris Lattner 
9750621caefSChris Lattner     // If there are multiple modules, map the non-canonical globals to their
9760621caefSChris Lattner     // canonical location.
9770621caefSChris Lattner     if (!NonCanonicalGlobals.empty()) {
9780621caefSChris Lattner       for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) {
9790621caefSChris Lattner         const GlobalValue *GV = NonCanonicalGlobals[i];
9800621caefSChris Lattner         const GlobalValue *CGV =
9810621caefSChris Lattner           LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())];
9820621caefSChris Lattner         void *Ptr = getPointerToGlobalIfAvailable(CGV);
9830621caefSChris Lattner         assert(Ptr && "Canonical global wasn't codegen'd!");
984a67f06b9SNuno Lopes         addGlobalMapping(GV, Ptr);
9850621caefSChris Lattner       }
9860621caefSChris Lattner     }
987996fe010SChris Lattner 
9887a9c62baSReid Spencer     // Now that all of the globals are set up in memory, loop through them all
9897a9c62baSReid Spencer     // and initialize their contents.
9908ffb6611SChris Lattner     for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
9910621caefSChris Lattner          I != E; ++I) {
9925301e7c6SReid Spencer       if (!I->isDeclaration()) {
9930621caefSChris Lattner         if (!LinkedGlobalsMap.empty()) {
9940621caefSChris Lattner           if (const GlobalValue *GVEntry =
9950621caefSChris Lattner                 LinkedGlobalsMap[std::make_pair(I->getName(), I->getType())])
9960621caefSChris Lattner             if (GVEntry != &*I)  // Not the canonical variable.
9970621caefSChris Lattner               continue;
9980621caefSChris Lattner         }
9996bbe3eceSChris Lattner         EmitGlobalVariable(I);
10006bbe3eceSChris Lattner       }
10010621caefSChris Lattner     }
10020621caefSChris Lattner   }
10030621caefSChris Lattner }
10046bbe3eceSChris Lattner 
10056bbe3eceSChris Lattner // EmitGlobalVariable - This method emits the specified global variable to the
10066bbe3eceSChris Lattner // address specified in GlobalAddresses, or allocates new memory if it's not
10076bbe3eceSChris Lattner // already in the map.
1008fbcc0aa1SChris Lattner void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) {
1009748e8579SChris Lattner   void *GA = getPointerToGlobalIfAvailable(GV);
1010dc631735SChris Lattner 
10116bbe3eceSChris Lattner   if (GA == 0) {
10126bbe3eceSChris Lattner     // If it's not already specified, allocate memory for the global.
10135457ce9aSNicolas Geoffray     GA = getMemoryForGV(GV);
1014748e8579SChris Lattner     addGlobalMapping(GV, GA);
10156bbe3eceSChris Lattner   }
1016fbcc0aa1SChris Lattner 
10175457ce9aSNicolas Geoffray   // Don't initialize if it's thread local, let the client do it.
10185457ce9aSNicolas Geoffray   if (!GV->isThreadLocal())
10196bbe3eceSChris Lattner     InitializeMemory(GV->getInitializer(), GA);
10205457ce9aSNicolas Geoffray 
10215457ce9aSNicolas Geoffray   const Type *ElTy = GV->getType()->getElementType();
1022dc020f9cSDuncan Sands   size_t GVSize = (size_t)getTargetData()->getTypePaddedSize(ElTy);
1023df1f1524SChris Lattner   NumInitBytes += (unsigned)GVSize;
10246bbe3eceSChris Lattner   ++NumGlobals;
1025996fe010SChris Lattner }
1026