Misha Brukman | 4afac18 | 2003-10-10 17:45:12 +0000 | [diff] [blame] | 1 | //===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 10 | // This file defines the common interface used by the various execution engine |
| 11 | // subclasses. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Jeffrey Yasskin | 0d5bd59 | 2009-08-07 19:54:29 +0000 | [diff] [blame] | 15 | #include "llvm/ExecutionEngine/ExecutionEngine.h" |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/SmallString.h" |
Chris Lattner | 9f3ff92 | 2009-08-23 22:49:13 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 18 | #include "llvm/ExecutionEngine/GenericValue.h" |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 19 | #include "llvm/ExecutionEngine/ObjectBuffer.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 20 | #include "llvm/ExecutionEngine/ObjectCache.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Constants.h" |
| 22 | #include "llvm/IR/DataLayout.h" |
| 23 | #include "llvm/IR/DerivedTypes.h" |
| 24 | #include "llvm/IR/Module.h" |
| 25 | #include "llvm/IR/Operator.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 26 | #include "llvm/IR/ValueHandle.h" |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 27 | #include "llvm/Object/Archive.h" |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 28 | #include "llvm/Object/ObjectFile.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 29 | #include "llvm/Support/Debug.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 30 | #include "llvm/Support/DynamicLibrary.h" |
Torok Edwin | 31e2466 | 2009-07-07 17:32:34 +0000 | [diff] [blame] | 31 | #include "llvm/Support/ErrorHandling.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 32 | #include "llvm/Support/Host.h" |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 33 | #include "llvm/Support/MutexGuard.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 34 | #include "llvm/Support/TargetRegistry.h" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 35 | #include "llvm/Support/raw_ostream.h" |
Dylan Noblesmith | c5b2858 | 2011-05-13 21:51:29 +0000 | [diff] [blame] | 36 | #include "llvm/Target/TargetMachine.h" |
Anton Korobeynikov | ae9f3a3 | 2008-02-20 11:08:44 +0000 | [diff] [blame] | 37 | #include <cmath> |
| 38 | #include <cstring> |
Chris Lattner | c2ee9b9 | 2003-11-19 21:08:57 +0000 | [diff] [blame] | 39 | using namespace llvm; |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 40 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 41 | #define DEBUG_TYPE "jit" |
| 42 | |
Chris Lattner | 3634373 | 2006-12-19 22:43:32 +0000 | [diff] [blame] | 43 | STATISTIC(NumInitBytes, "Number of bytes of global vars initialized"); |
| 44 | STATISTIC(NumGlobals , "Number of global vars initialized"); |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 45 | |
Juergen Ributzka | 3543625 | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 46 | // Pin the vtable to this file. |
| 47 | void ObjectCache::anchor() {} |
| 48 | void ObjectBuffer::anchor() {} |
| 49 | void ObjectBufferStream::anchor() {} |
| 50 | |
Daniel Dunbar | 6d13597 | 2010-11-17 16:06:37 +0000 | [diff] [blame] | 51 | ExecutionEngine *(*ExecutionEngine::MCJITCtor)( |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 52 | std::unique_ptr<Module> M, std::string *ErrorStr, |
| 53 | RTDyldMemoryManager *MCJMM, std::unique_ptr<TargetMachine> TM) = nullptr; |
| 54 | ExecutionEngine *(*ExecutionEngine::InterpCtor)(std::unique_ptr<Module> M, |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 55 | std::string *ErrorStr) =nullptr; |
Chris Lattner | 2fe4bb0 | 2006-03-22 06:07:50 +0000 | [diff] [blame] | 56 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 57 | ExecutionEngine::ExecutionEngine(std::unique_ptr<Module> M) |
Jeffrey Yasskin | 4c5b23b | 2009-10-13 17:42:08 +0000 | [diff] [blame] | 58 | : EEState(*this), |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 59 | LazyFunctionCreator(nullptr) { |
Jeffrey Yasskin | dc85724 | 2009-10-27 20:30:28 +0000 | [diff] [blame] | 60 | CompilingLazily = false; |
Evan Cheng | 446531e | 2008-09-24 16:25:55 +0000 | [diff] [blame] | 61 | GVCompilationDisabled = false; |
Evan Cheng | 1b088f3 | 2008-06-17 16:49:02 +0000 | [diff] [blame] | 62 | SymbolSearchingDisabled = false; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 63 | |
| 64 | // IR module verification is enabled by default in debug builds, and disabled |
| 65 | // by default in release builds. |
| 66 | #ifndef NDEBUG |
| 67 | VerifyModules = true; |
| 68 | #else |
| 69 | VerifyModules = false; |
| 70 | #endif |
| 71 | |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 72 | assert(M && "Module is null?"); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 73 | Modules.push_back(std::move(M)); |
Misha Brukman | 1968416 | 2003-10-16 21:18:05 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Brian Gaeke | 8e53948 | 2003-09-04 22:57:27 +0000 | [diff] [blame] | 76 | ExecutionEngine::~ExecutionEngine() { |
Reid Spencer | d4c0e62 | 2007-03-03 18:19:18 +0000 | [diff] [blame] | 77 | clearAllGlobalMappings(); |
Brian Gaeke | 8e53948 | 2003-09-04 22:57:27 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Jeffrey Yasskin | 47b7112 | 2010-03-27 04:53:56 +0000 | [diff] [blame] | 80 | namespace { |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 81 | /// \brief Helper class which uses a value handler to automatically deletes the |
| 82 | /// memory block when the GlobalVariable is destroyed. |
Jeffrey Yasskin | 47b7112 | 2010-03-27 04:53:56 +0000 | [diff] [blame] | 83 | class GVMemoryBlock : public CallbackVH { |
| 84 | GVMemoryBlock(const GlobalVariable *GV) |
| 85 | : CallbackVH(const_cast<GlobalVariable*>(GV)) {} |
| 86 | |
| 87 | public: |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 88 | /// \brief Returns the address the GlobalVariable should be written into. The |
| 89 | /// GVMemoryBlock object prefixes that. |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 90 | static char *Create(const GlobalVariable *GV, const DataLayout& TD) { |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 91 | Type *ElTy = GV->getType()->getElementType(); |
Jeffrey Yasskin | 47b7112 | 2010-03-27 04:53:56 +0000 | [diff] [blame] | 92 | size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy); |
| 93 | void *RawMemory = ::operator new( |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 94 | RoundUpToAlignment(sizeof(GVMemoryBlock), |
| 95 | TD.getPreferredAlignment(GV)) |
Jeffrey Yasskin | 47b7112 | 2010-03-27 04:53:56 +0000 | [diff] [blame] | 96 | + GVSize); |
| 97 | new(RawMemory) GVMemoryBlock(GV); |
| 98 | return static_cast<char*>(RawMemory) + sizeof(GVMemoryBlock); |
| 99 | } |
| 100 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 101 | void deleted() override { |
Jeffrey Yasskin | 47b7112 | 2010-03-27 04:53:56 +0000 | [diff] [blame] | 102 | // We allocated with operator new and with some extra memory hanging off the |
| 103 | // end, so don't just delete this. I'm not sure if this is actually |
| 104 | // required. |
| 105 | this->~GVMemoryBlock(); |
| 106 | ::operator delete(this); |
| 107 | } |
| 108 | }; |
| 109 | } // anonymous namespace |
| 110 | |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 111 | char *ExecutionEngine::getMemoryForGV(const GlobalVariable *GV) { |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 112 | return GVMemoryBlock::Create(GV, *getDataLayout()); |
Nicolas Geoffray | 46fa139 | 2008-10-25 15:41:43 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 115 | void ExecutionEngine::addObjectFile(std::unique_ptr<object::ObjectFile> O) { |
| 116 | llvm_unreachable("ExecutionEngine subclass doesn't implement addObjectFile."); |
| 117 | } |
| 118 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 119 | void |
| 120 | ExecutionEngine::addObjectFile(object::OwningBinary<object::ObjectFile> O) { |
| 121 | llvm_unreachable("ExecutionEngine subclass doesn't implement addObjectFile."); |
| 122 | } |
| 123 | |
| 124 | void ExecutionEngine::addArchive(object::OwningBinary<object::Archive> A) { |
| 125 | llvm_unreachable("ExecutionEngine subclass doesn't implement addArchive."); |
| 126 | } |
| 127 | |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 128 | bool ExecutionEngine::removeModule(Module *M) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 129 | for (auto I = Modules.begin(), E = Modules.end(); I != E; ++I) { |
| 130 | Module *Found = I->get(); |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 131 | if (Found == M) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 132 | I->release(); |
Devang Patel | 73d0e21 | 2007-10-15 19:56:32 +0000 | [diff] [blame] | 133 | Modules.erase(I); |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 134 | clearGlobalMappingsFromModule(M); |
| 135 | return true; |
Devang Patel | 73d0e21 | 2007-10-15 19:56:32 +0000 | [diff] [blame] | 136 | } |
| 137 | } |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 138 | return false; |
Nate Begeman | 60789e4 | 2009-01-23 19:27:28 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 141 | Function *ExecutionEngine::FindFunctionNamed(const char *FnName) { |
| 142 | for (unsigned i = 0, e = Modules.size(); i != e; ++i) { |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 143 | if (Function *F = Modules[i]->getFunction(FnName)) |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 144 | return F; |
| 145 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 146 | return nullptr; |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 150 | void *ExecutionEngineState::RemoveMapping(const GlobalValue *ToUnmap) { |
Jeffrey Yasskin | 23e5fcf | 2009-10-23 22:37:43 +0000 | [diff] [blame] | 151 | GlobalAddressMapTy::iterator I = GlobalAddressMap.find(ToUnmap); |
Jeffrey Yasskin | c89d27a | 2009-10-09 22:10:27 +0000 | [diff] [blame] | 152 | void *OldVal; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 153 | |
| 154 | // FIXME: This is silly, we shouldn't end up with a mapping -> 0 in the |
| 155 | // GlobalAddressMap. |
Jeffrey Yasskin | c89d27a | 2009-10-09 22:10:27 +0000 | [diff] [blame] | 156 | if (I == GlobalAddressMap.end()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 157 | OldVal = nullptr; |
Jeffrey Yasskin | c89d27a | 2009-10-09 22:10:27 +0000 | [diff] [blame] | 158 | else { |
| 159 | OldVal = I->second; |
| 160 | GlobalAddressMap.erase(I); |
| 161 | } |
| 162 | |
| 163 | GlobalAddressReverseMap.erase(OldVal); |
| 164 | return OldVal; |
| 165 | } |
| 166 | |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 167 | void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) { |
| 168 | MutexGuard locked(lock); |
Evan Cheng | bc4707a | 2008-09-18 07:54:21 +0000 | [diff] [blame] | 169 | |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 170 | DEBUG(dbgs() << "JIT: Map \'" << GV->getName() |
Daniel Dunbar | 93b67e4 | 2009-07-26 07:49:05 +0000 | [diff] [blame] | 171 | << "\' to [" << Addr << "]\n";); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 172 | void *&CurVal = EEState.getGlobalAddressMap()[GV]; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 173 | assert((!CurVal || !Addr) && "GlobalMapping already established!"); |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 174 | CurVal = Addr; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 175 | |
| 176 | // If we are using the reverse mapping, add it too. |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 177 | if (!EEState.getGlobalAddressReverseMap().empty()) { |
Jeffrey Yasskin | 0d5bd59 | 2009-08-07 19:54:29 +0000 | [diff] [blame] | 178 | AssertingVH<const GlobalValue> &V = |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 179 | EEState.getGlobalAddressReverseMap()[Addr]; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 180 | assert((!V || !GV) && "GlobalMapping already established!"); |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 181 | V = GV; |
| 182 | } |
| 183 | } |
| 184 | |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 185 | void ExecutionEngine::clearAllGlobalMappings() { |
| 186 | MutexGuard locked(lock); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 187 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 188 | EEState.getGlobalAddressMap().clear(); |
| 189 | EEState.getGlobalAddressReverseMap().clear(); |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 190 | } |
| 191 | |
Nate Begeman | f049e07 | 2008-05-21 16:34:48 +0000 | [diff] [blame] | 192 | void ExecutionEngine::clearGlobalMappingsFromModule(Module *M) { |
| 193 | MutexGuard locked(lock); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 194 | |
| 195 | for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; ++FI) |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 196 | EEState.RemoveMapping(FI); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 197 | for (Module::global_iterator GI = M->global_begin(), GE = M->global_end(); |
| 198 | GI != GE; ++GI) |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 199 | EEState.RemoveMapping(GI); |
Nate Begeman | f049e07 | 2008-05-21 16:34:48 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Chris Lattner | f4cc309 | 2008-04-04 04:47:41 +0000 | [diff] [blame] | 202 | void *ExecutionEngine::updateGlobalMapping(const GlobalValue *GV, void *Addr) { |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 203 | MutexGuard locked(lock); |
Chris Lattner | f4cc309 | 2008-04-04 04:47:41 +0000 | [diff] [blame] | 204 | |
Jeffrey Yasskin | 23e5fcf | 2009-10-23 22:37:43 +0000 | [diff] [blame] | 205 | ExecutionEngineState::GlobalAddressMapTy &Map = |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 206 | EEState.getGlobalAddressMap(); |
Chris Lattner | f4cc309 | 2008-04-04 04:47:41 +0000 | [diff] [blame] | 207 | |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 208 | // Deleting from the mapping? |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 209 | if (!Addr) |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 210 | return EEState.RemoveMapping(GV); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 211 | |
Jeffrey Yasskin | 23e5fcf | 2009-10-23 22:37:43 +0000 | [diff] [blame] | 212 | void *&CurVal = Map[GV]; |
Chris Lattner | f4cc309 | 2008-04-04 04:47:41 +0000 | [diff] [blame] | 213 | void *OldVal = CurVal; |
| 214 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 215 | if (CurVal && !EEState.getGlobalAddressReverseMap().empty()) |
| 216 | EEState.getGlobalAddressReverseMap().erase(CurVal); |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 217 | CurVal = Addr; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 218 | |
| 219 | // If we are using the reverse mapping, add it too. |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 220 | if (!EEState.getGlobalAddressReverseMap().empty()) { |
Jeffrey Yasskin | 0d5bd59 | 2009-08-07 19:54:29 +0000 | [diff] [blame] | 221 | AssertingVH<const GlobalValue> &V = |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 222 | EEState.getGlobalAddressReverseMap()[Addr]; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 223 | assert((!V || !GV) && "GlobalMapping already established!"); |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 224 | V = GV; |
| 225 | } |
Chris Lattner | f4cc309 | 2008-04-04 04:47:41 +0000 | [diff] [blame] | 226 | return OldVal; |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 229 | void *ExecutionEngine::getPointerToGlobalIfAvailable(const GlobalValue *GV) { |
| 230 | MutexGuard locked(lock); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 231 | |
Jeffrey Yasskin | 23e5fcf | 2009-10-23 22:37:43 +0000 | [diff] [blame] | 232 | ExecutionEngineState::GlobalAddressMapTy::iterator I = |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 233 | EEState.getGlobalAddressMap().find(GV); |
| 234 | return I != EEState.getGlobalAddressMap().end() ? I->second : nullptr; |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 235 | } |
| 236 | |
Chris Lattner | 55d8648 | 2003-12-31 20:21:04 +0000 | [diff] [blame] | 237 | const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) { |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 238 | MutexGuard locked(lock); |
| 239 | |
Chris Lattner | 55d8648 | 2003-12-31 20:21:04 +0000 | [diff] [blame] | 240 | // If we haven't computed the reverse mapping yet, do so first. |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 241 | if (EEState.getGlobalAddressReverseMap().empty()) { |
Jeffrey Yasskin | 23e5fcf | 2009-10-23 22:37:43 +0000 | [diff] [blame] | 242 | for (ExecutionEngineState::GlobalAddressMapTy::iterator |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 243 | I = EEState.getGlobalAddressMap().begin(), |
| 244 | E = EEState.getGlobalAddressMap().end(); I != E; ++I) |
| 245 | EEState.getGlobalAddressReverseMap().insert(std::make_pair( |
Daniel Dunbar | ab19da4 | 2010-11-13 00:55:42 +0000 | [diff] [blame] | 246 | I->second, I->first)); |
Chris Lattner | 55d8648 | 2003-12-31 20:21:04 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Jeffrey Yasskin | 0d5bd59 | 2009-08-07 19:54:29 +0000 | [diff] [blame] | 249 | std::map<void *, AssertingVH<const GlobalValue> >::iterator I = |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 250 | EEState.getGlobalAddressReverseMap().find(Addr); |
| 251 | return I != EEState.getGlobalAddressReverseMap().end() ? I->second : nullptr; |
Chris Lattner | 55d8648 | 2003-12-31 20:21:04 +0000 | [diff] [blame] | 252 | } |
Chris Lattner | 87f0310 | 2003-12-26 06:50:30 +0000 | [diff] [blame] | 253 | |
Jeffrey Yasskin | b193838 | 2010-03-26 00:59:12 +0000 | [diff] [blame] | 254 | namespace { |
| 255 | class ArgvArray { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 256 | std::unique_ptr<char[]> Array; |
| 257 | std::vector<std::unique_ptr<char[]>> Values; |
Jeffrey Yasskin | b193838 | 2010-03-26 00:59:12 +0000 | [diff] [blame] | 258 | public: |
Jeffrey Yasskin | b193838 | 2010-03-26 00:59:12 +0000 | [diff] [blame] | 259 | /// Turn a vector of strings into a nice argv style array of pointers to null |
| 260 | /// terminated strings. |
| 261 | void *reset(LLVMContext &C, ExecutionEngine *EE, |
| 262 | const std::vector<std::string> &InputArgv); |
| 263 | }; |
| 264 | } // anonymous namespace |
| 265 | void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, |
| 266 | const std::vector<std::string> &InputArgv) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 267 | Values.clear(); // Free the old contents. |
| 268 | Values.reserve(InputArgv.size()); |
Chandler Carruth | 426c2bf | 2012-11-01 09:14:31 +0000 | [diff] [blame] | 269 | unsigned PtrSize = EE->getDataLayout()->getPointerSize(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 270 | Array = make_unique<char[]>((InputArgv.size()+1)*PtrSize); |
Chris Lattner | 87f0310 | 2003-12-26 06:50:30 +0000 | [diff] [blame] | 271 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 272 | DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array.get() << "\n"); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 273 | Type *SBytePtr = Type::getInt8PtrTy(C); |
Chris Lattner | 87f0310 | 2003-12-26 06:50:30 +0000 | [diff] [blame] | 274 | |
| 275 | for (unsigned i = 0; i != InputArgv.size(); ++i) { |
| 276 | unsigned Size = InputArgv[i].size()+1; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 277 | auto Dest = make_unique<char[]>(Size); |
| 278 | DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest.get() << "\n"); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 279 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 280 | std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest.get()); |
Chris Lattner | 87f0310 | 2003-12-26 06:50:30 +0000 | [diff] [blame] | 281 | Dest[Size-1] = 0; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 282 | |
Jeffrey Yasskin | b193838 | 2010-03-26 00:59:12 +0000 | [diff] [blame] | 283 | // Endian safe: Array[i] = (PointerTy)Dest; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 284 | EE->StoreValueToMemory(PTOGV(Dest.get()), |
| 285 | (GenericValue*)(&Array[i*PtrSize]), SBytePtr); |
| 286 | Values.push_back(std::move(Dest)); |
Chris Lattner | 87f0310 | 2003-12-26 06:50:30 +0000 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | // Null terminate it |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 290 | EE->StoreValueToMemory(PTOGV(nullptr), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 291 | (GenericValue*)(&Array[InputArgv.size()*PtrSize]), |
Chris Lattner | 87f0310 | 2003-12-26 06:50:30 +0000 | [diff] [blame] | 292 | SBytePtr); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 293 | return Array.get(); |
Chris Lattner | 87f0310 | 2003-12-26 06:50:30 +0000 | [diff] [blame] | 294 | } |
| 295 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 296 | void ExecutionEngine::runStaticConstructorsDestructors(Module &module, |
Chris Lattner | fbd3976 | 2009-09-23 01:46:04 +0000 | [diff] [blame] | 297 | bool isDtors) { |
Chris Lattner | 9ca6cda | 2006-03-08 18:42:46 +0000 | [diff] [blame] | 298 | const char *Name = isDtors ? "llvm.global_dtors" : "llvm.global_ctors"; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 299 | GlobalVariable *GV = module.getNamedGlobal(Name); |
Evan Cheng | 18314dc | 2008-09-30 15:51:21 +0000 | [diff] [blame] | 300 | |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 301 | // If this global has internal linkage, or if it has a use, then it must be |
| 302 | // an old-style (llvmgcc3) static ctor with __main linked in and in use. If |
| 303 | // this is the case, don't execute any of the global ctors, __main will do |
| 304 | // it. |
| 305 | if (!GV || GV->isDeclaration() || GV->hasLocalLinkage()) return; |
| 306 | |
Nick Lewycky | a040d47 | 2011-04-06 20:38:44 +0000 | [diff] [blame] | 307 | // Should be an array of '{ i32, void ()* }' structs. The first value is |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 308 | // the init priority, which we ignore. |
Chris Lattner | 1ee0ecf | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 309 | ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer()); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 310 | if (!InitList) |
Nick Lewycky | 5ea5c61 | 2011-04-11 22:11:20 +0000 | [diff] [blame] | 311 | return; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 312 | for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) { |
Chris Lattner | 1ee0ecf | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 313 | ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 314 | if (!CS) continue; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 315 | |
| 316 | Constant *FP = CS->getOperand(1); |
| 317 | if (FP->isNullValue()) |
Nick Lewycky | 5ea5c61 | 2011-04-11 22:11:20 +0000 | [diff] [blame] | 318 | continue; // Found a sentinal value, ignore. |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 319 | |
| 320 | // Strip off constant expression casts. |
| 321 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP)) |
| 322 | if (CE->isCast()) |
| 323 | FP = CE->getOperand(0); |
| 324 | |
| 325 | // Execute the ctor/dtor function! |
| 326 | if (Function *F = dyn_cast<Function>(FP)) |
| 327 | runFunction(F, std::vector<GenericValue>()); |
| 328 | |
| 329 | // FIXME: It is marginally lame that we just do nothing here if we see an |
| 330 | // entry we don't recognize. It might not be unreasonable for the verifier |
| 331 | // to not even allow this and just assert here. |
| 332 | } |
Evan Cheng | 18314dc | 2008-09-30 15:51:21 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Evan Cheng | 18314dc | 2008-09-30 15:51:21 +0000 | [diff] [blame] | 335 | void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) { |
| 336 | // Execute global ctors/dtors for each module in the program. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 337 | for (std::unique_ptr<Module> &M : Modules) |
| 338 | runStaticConstructorsDestructors(*M, isDtors); |
Chris Lattner | 9ca6cda | 2006-03-08 18:42:46 +0000 | [diff] [blame] | 339 | } |
| 340 | |
Dan Gohman | b6e3d6c | 2008-08-26 01:38:29 +0000 | [diff] [blame] | 341 | #ifndef NDEBUG |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 342 | /// isTargetNullPtr - Return whether the target pointer stored at Loc is null. |
| 343 | static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { |
Chandler Carruth | 426c2bf | 2012-11-01 09:14:31 +0000 | [diff] [blame] | 344 | unsigned PtrSize = EE->getDataLayout()->getPointerSize(); |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 345 | for (unsigned i = 0; i < PtrSize; ++i) |
| 346 | if (*(i + (uint8_t*)Loc)) |
| 347 | return false; |
| 348 | return true; |
| 349 | } |
Dan Gohman | b6e3d6c | 2008-08-26 01:38:29 +0000 | [diff] [blame] | 350 | #endif |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 351 | |
Chris Lattner | 87f0310 | 2003-12-26 06:50:30 +0000 | [diff] [blame] | 352 | int ExecutionEngine::runFunctionAsMain(Function *Fn, |
| 353 | const std::vector<std::string> &argv, |
| 354 | const char * const * envp) { |
| 355 | std::vector<GenericValue> GVArgs; |
| 356 | GenericValue GVArgc; |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 357 | GVArgc.IntVal = APInt(32, argv.size()); |
Anton Korobeynikov | 499d8f0 | 2007-06-03 19:17:35 +0000 | [diff] [blame] | 358 | |
| 359 | // Check main() type |
Chris Lattner | f24d099 | 2004-08-16 01:05:35 +0000 | [diff] [blame] | 360 | unsigned NumArgs = Fn->getFunctionType()->getNumParams(); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 361 | FunctionType *FTy = Fn->getFunctionType(); |
| 362 | Type* PPInt8Ty = Type::getInt8PtrTy(Fn->getContext())->getPointerTo(); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 363 | |
| 364 | // Check the argument types. |
| 365 | if (NumArgs > 3) |
| 366 | report_fatal_error("Invalid number of arguments of main() supplied"); |
| 367 | if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty) |
| 368 | report_fatal_error("Invalid type for third argument of main() supplied"); |
| 369 | if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty) |
| 370 | report_fatal_error("Invalid type for second argument of main() supplied"); |
| 371 | if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32)) |
| 372 | report_fatal_error("Invalid type for first argument of main() supplied"); |
| 373 | if (!FTy->getReturnType()->isIntegerTy() && |
| 374 | !FTy->getReturnType()->isVoidTy()) |
| 375 | report_fatal_error("Invalid return type of main() supplied"); |
| 376 | |
Jeffrey Yasskin | b193838 | 2010-03-26 00:59:12 +0000 | [diff] [blame] | 377 | ArgvArray CArgv; |
| 378 | ArgvArray CEnv; |
Chris Lattner | f24d099 | 2004-08-16 01:05:35 +0000 | [diff] [blame] | 379 | if (NumArgs) { |
| 380 | GVArgs.push_back(GVArgc); // Arg #0 = argc. |
| 381 | if (NumArgs > 1) { |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 382 | // Arg #1 = argv. |
Jeffrey Yasskin | b193838 | 2010-03-26 00:59:12 +0000 | [diff] [blame] | 383 | GVArgs.push_back(PTOGV(CArgv.reset(Fn->getContext(), this, argv))); |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 384 | assert(!isTargetNullPtr(this, GVTOP(GVArgs[1])) && |
Chris Lattner | f24d099 | 2004-08-16 01:05:35 +0000 | [diff] [blame] | 385 | "argv[0] was null after CreateArgv"); |
| 386 | if (NumArgs > 2) { |
| 387 | std::vector<std::string> EnvVars; |
| 388 | for (unsigned i = 0; envp[i]; ++i) |
| 389 | EnvVars.push_back(envp[i]); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 390 | // Arg #2 = envp. |
Jeffrey Yasskin | b193838 | 2010-03-26 00:59:12 +0000 | [diff] [blame] | 391 | GVArgs.push_back(PTOGV(CEnv.reset(Fn->getContext(), this, EnvVars))); |
Chris Lattner | f24d099 | 2004-08-16 01:05:35 +0000 | [diff] [blame] | 392 | } |
| 393 | } |
| 394 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 395 | |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 396 | return runFunction(Fn, GVArgs).IntVal.getZExtValue(); |
Chris Lattner | 87f0310 | 2003-12-26 06:50:30 +0000 | [diff] [blame] | 397 | } |
| 398 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 399 | void EngineBuilder::InitEngine() { |
| 400 | WhichEngine = EngineKind::Either; |
| 401 | ErrorStr = nullptr; |
| 402 | OptLevel = CodeGenOpt::Default; |
| 403 | MCJMM = nullptr; |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 404 | Options = TargetOptions(); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 405 | RelocModel = Reloc::Default; |
| 406 | CMModel = CodeModel::JITDefault; |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 407 | |
| 408 | // IR module verification is enabled by default in debug builds, and disabled |
| 409 | // by default in release builds. |
| 410 | #ifndef NDEBUG |
| 411 | VerifyModules = true; |
| 412 | #else |
| 413 | VerifyModules = false; |
| 414 | #endif |
| 415 | } |
| 416 | |
Owen Anderson | 8e1fc56 | 2012-03-23 17:40:56 +0000 | [diff] [blame] | 417 | ExecutionEngine *EngineBuilder::create(TargetMachine *TM) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 418 | std::unique_ptr<TargetMachine> TheTM(TM); // Take ownership. |
Benjamin Kramer | 0f55449 | 2012-04-08 14:53:14 +0000 | [diff] [blame] | 419 | |
Nick Lewycky | 6456d86 | 2008-03-08 02:49:45 +0000 | [diff] [blame] | 420 | // Make sure we can resolve symbols in the program as well. The zero arg |
| 421 | // to the function tells DynamicLibrary to load the program, not a library. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 422 | if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr)) |
| 423 | return nullptr; |
Filip Pizlo | 13a3cf1 | 2013-05-14 19:29:00 +0000 | [diff] [blame] | 424 | |
Reid Kleckner | 4b1511b | 2009-07-18 00:42:18 +0000 | [diff] [blame] | 425 | // If the user specified a memory manager but didn't specify which engine to |
| 426 | // create, we assume they only want the JIT, and we fail if they only want |
| 427 | // the interpreter. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 428 | if (MCJMM) { |
Chris Lattner | fbd3976 | 2009-09-23 01:46:04 +0000 | [diff] [blame] | 429 | if (WhichEngine & EngineKind::JIT) |
Reid Kleckner | 4b1511b | 2009-07-18 00:42:18 +0000 | [diff] [blame] | 430 | WhichEngine = EngineKind::JIT; |
Chris Lattner | fbd3976 | 2009-09-23 01:46:04 +0000 | [diff] [blame] | 431 | else { |
Chris Lattner | c72efbe | 2009-09-23 02:03:49 +0000 | [diff] [blame] | 432 | if (ErrorStr) |
| 433 | *ErrorStr = "Cannot create an interpreter with a memory manager."; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 434 | return nullptr; |
Reid Kleckner | 4b1511b | 2009-07-18 00:42:18 +0000 | [diff] [blame] | 435 | } |
| 436 | } |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 437 | |
Reid Kleckner | 4b1511b | 2009-07-18 00:42:18 +0000 | [diff] [blame] | 438 | // Unless the interpreter was explicitly selected or the JIT is not linked, |
| 439 | // try making a JIT. |
Benjamin Kramer | 0f55449 | 2012-04-08 14:53:14 +0000 | [diff] [blame] | 440 | if ((WhichEngine & EngineKind::JIT) && TheTM) { |
Dylan Noblesmith | 9ea4717 | 2011-12-12 04:20:36 +0000 | [diff] [blame] | 441 | Triple TT(M->getTargetTriple()); |
Owen Anderson | 8e1fc56 | 2012-03-23 17:40:56 +0000 | [diff] [blame] | 442 | if (!TM->getTarget().hasJIT()) { |
| 443 | errs() << "WARNING: This target JIT is not designed for the host" |
| 444 | << " you are running. If bad things happen, please choose" |
| 445 | << " a different -march switch.\n"; |
| 446 | } |
Dylan Noblesmith | 9ea4717 | 2011-12-12 04:20:36 +0000 | [diff] [blame] | 447 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 448 | ExecutionEngine *EE = nullptr; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 449 | if (ExecutionEngine::MCJITCtor) |
| 450 | EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, MCJMM, |
| 451 | std::move(TheTM)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 452 | if (EE) { |
| 453 | EE->setVerifyModules(VerifyModules); |
| 454 | return EE; |
Chris Lattner | fbd3976 | 2009-09-23 01:46:04 +0000 | [diff] [blame] | 455 | } |
Reid Kleckner | 4b1511b | 2009-07-18 00:42:18 +0000 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | // If we can't make a JIT and we didn't request one specifically, try making |
| 459 | // an interpreter instead. |
Chris Lattner | fbd3976 | 2009-09-23 01:46:04 +0000 | [diff] [blame] | 460 | if (WhichEngine & EngineKind::Interpreter) { |
| 461 | if (ExecutionEngine::InterpCtor) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 462 | return ExecutionEngine::InterpCtor(std::move(M), ErrorStr); |
Chris Lattner | c72efbe | 2009-09-23 02:03:49 +0000 | [diff] [blame] | 463 | if (ErrorStr) |
| 464 | *ErrorStr = "Interpreter has not been linked in."; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 465 | return nullptr; |
Reid Kleckner | 4b1511b | 2009-07-18 00:42:18 +0000 | [diff] [blame] | 466 | } |
Chris Lattner | c72efbe | 2009-09-23 02:03:49 +0000 | [diff] [blame] | 467 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 468 | if ((WhichEngine & EngineKind::JIT) && !ExecutionEngine::MCJITCtor) { |
Chris Lattner | c72efbe | 2009-09-23 02:03:49 +0000 | [diff] [blame] | 469 | if (ErrorStr) |
| 470 | *ErrorStr = "JIT has not been linked in."; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 471 | } |
| 472 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 473 | return nullptr; |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 476 | void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) { |
Brian Gaeke | 37df460 | 2003-08-13 18:16:14 +0000 | [diff] [blame] | 477 | if (Function *F = const_cast<Function*>(dyn_cast<Function>(GV))) |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 478 | return getPointerToFunction(F); |
| 479 | |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 480 | MutexGuard locked(lock); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 481 | if (void *P = EEState.getGlobalAddressMap()[GV]) |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 482 | return P; |
Jeff Cohen | 68835dd | 2006-02-07 05:11:57 +0000 | [diff] [blame] | 483 | |
| 484 | // Global variable might have been added since interpreter started. |
| 485 | if (GlobalVariable *GVar = |
| 486 | const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV))) |
| 487 | EmitGlobalVariable(GVar); |
| 488 | else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 489 | llvm_unreachable("Global hasn't had an address allocated yet!"); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 490 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 491 | return EEState.getGlobalAddressMap()[GV]; |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 492 | } |
| 493 | |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 494 | /// \brief Converts a Constant* into a GenericValue, including handling of |
| 495 | /// ConstantExpr values. |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 496 | GenericValue ExecutionEngine::getConstantValue(const Constant *C) { |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 497 | // If its undefined, return the garbage. |
Jay Foad | 5b37012 | 2010-01-15 08:32:58 +0000 | [diff] [blame] | 498 | if (isa<UndefValue>(C)) { |
| 499 | GenericValue Result; |
| 500 | switch (C->getType()->getTypeID()) { |
Nadav Rotem | 953783e | 2013-04-01 15:53:30 +0000 | [diff] [blame] | 501 | default: |
| 502 | break; |
Jay Foad | 5b37012 | 2010-01-15 08:32:58 +0000 | [diff] [blame] | 503 | case Type::IntegerTyID: |
| 504 | case Type::X86_FP80TyID: |
| 505 | case Type::FP128TyID: |
| 506 | case Type::PPC_FP128TyID: |
| 507 | // Although the value is undefined, we still have to construct an APInt |
| 508 | // with the correct bit width. |
| 509 | Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0); |
| 510 | break; |
Elena Demikhovsky | 3c5ce29 | 2013-09-12 10:48:23 +0000 | [diff] [blame] | 511 | case Type::StructTyID: { |
| 512 | // if the whole struct is 'undef' just reserve memory for the value. |
| 513 | if(StructType *STy = dyn_cast<StructType>(C->getType())) { |
| 514 | unsigned int elemNum = STy->getNumElements(); |
| 515 | Result.AggregateVal.resize(elemNum); |
| 516 | for (unsigned int i = 0; i < elemNum; ++i) { |
| 517 | Type *ElemTy = STy->getElementType(i); |
| 518 | if (ElemTy->isIntegerTy()) |
| 519 | Result.AggregateVal[i].IntVal = |
| 520 | APInt(ElemTy->getPrimitiveSizeInBits(), 0); |
| 521 | else if (ElemTy->isAggregateType()) { |
| 522 | const Constant *ElemUndef = UndefValue::get(ElemTy); |
| 523 | Result.AggregateVal[i] = getConstantValue(ElemUndef); |
| 524 | } |
| 525 | } |
| 526 | } |
| 527 | } |
| 528 | break; |
Nadav Rotem | 953783e | 2013-04-01 15:53:30 +0000 | [diff] [blame] | 529 | case Type::VectorTyID: |
| 530 | // if the whole vector is 'undef' just reserve memory for the value. |
| 531 | const VectorType* VTy = dyn_cast<VectorType>(C->getType()); |
| 532 | const Type *ElemTy = VTy->getElementType(); |
| 533 | unsigned int elemNum = VTy->getNumElements(); |
| 534 | Result.AggregateVal.resize(elemNum); |
| 535 | if (ElemTy->isIntegerTy()) |
| 536 | for (unsigned int i = 0; i < elemNum; ++i) |
Elena Demikhovsky | 3c5ce29 | 2013-09-12 10:48:23 +0000 | [diff] [blame] | 537 | Result.AggregateVal[i].IntVal = |
Nadav Rotem | 953783e | 2013-04-01 15:53:30 +0000 | [diff] [blame] | 538 | APInt(ElemTy->getPrimitiveSizeInBits(), 0); |
Jay Foad | 5b37012 | 2010-01-15 08:32:58 +0000 | [diff] [blame] | 539 | break; |
| 540 | } |
| 541 | return Result; |
| 542 | } |
Chris Lattner | d8c03bf | 2003-04-23 19:01:49 +0000 | [diff] [blame] | 543 | |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 544 | // Otherwise, if the value is a ConstantExpr... |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 545 | if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 546 | Constant *Op0 = CE->getOperand(0); |
Chris Lattner | d8c03bf | 2003-04-23 19:01:49 +0000 | [diff] [blame] | 547 | switch (CE->getOpcode()) { |
| 548 | case Instruction::GetElementPtr: { |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 549 | // Compute the index |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 550 | GenericValue Result = getConstantValue(Op0); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 551 | APInt Offset(DL->getPointerSizeInBits(), 0); |
| 552 | cast<GEPOperator>(CE)->accumulateConstantOffset(*DL, Offset); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 553 | |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 554 | char* tmp = (char*) Result.PointerVal; |
Nuno Lopes | 98281a2 | 2012-12-30 16:25:48 +0000 | [diff] [blame] | 555 | Result = PTOGV(tmp + Offset.getSExtValue()); |
Chris Lattner | d8c03bf | 2003-04-23 19:01:49 +0000 | [diff] [blame] | 556 | return Result; |
| 557 | } |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 558 | case Instruction::Trunc: { |
| 559 | GenericValue GV = getConstantValue(Op0); |
| 560 | uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth(); |
| 561 | GV.IntVal = GV.IntVal.trunc(BitWidth); |
| 562 | return GV; |
| 563 | } |
| 564 | case Instruction::ZExt: { |
| 565 | GenericValue GV = getConstantValue(Op0); |
| 566 | uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth(); |
| 567 | GV.IntVal = GV.IntVal.zext(BitWidth); |
| 568 | return GV; |
| 569 | } |
| 570 | case Instruction::SExt: { |
| 571 | GenericValue GV = getConstantValue(Op0); |
| 572 | uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth(); |
| 573 | GV.IntVal = GV.IntVal.sext(BitWidth); |
| 574 | return GV; |
| 575 | } |
| 576 | case Instruction::FPTrunc: { |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 577 | // FIXME long double |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 578 | GenericValue GV = getConstantValue(Op0); |
| 579 | GV.FloatVal = float(GV.DoubleVal); |
| 580 | return GV; |
| 581 | } |
| 582 | case Instruction::FPExt:{ |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 583 | // FIXME long double |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 584 | GenericValue GV = getConstantValue(Op0); |
| 585 | GV.DoubleVal = double(GV.FloatVal); |
| 586 | return GV; |
| 587 | } |
| 588 | case Instruction::UIToFP: { |
| 589 | GenericValue GV = getConstantValue(Op0); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 590 | if (CE->getType()->isFloatTy()) |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 591 | GV.FloatVal = float(GV.IntVal.roundToDouble()); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 592 | else if (CE->getType()->isDoubleTy()) |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 593 | GV.DoubleVal = GV.IntVal.roundToDouble(); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 594 | else if (CE->getType()->isX86_FP80Ty()) { |
Benjamin Kramer | 3069cbf | 2010-12-04 15:28:22 +0000 | [diff] [blame] | 595 | APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 596 | (void)apf.convertFromAPInt(GV.IntVal, |
Dan Gohman | 6282406 | 2008-02-29 01:27:13 +0000 | [diff] [blame] | 597 | false, |
| 598 | APFloat::rmNearestTiesToEven); |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 599 | GV.IntVal = apf.bitcastToAPInt(); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 600 | } |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 601 | return GV; |
| 602 | } |
| 603 | case Instruction::SIToFP: { |
| 604 | GenericValue GV = getConstantValue(Op0); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 605 | if (CE->getType()->isFloatTy()) |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 606 | GV.FloatVal = float(GV.IntVal.signedRoundToDouble()); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 607 | else if (CE->getType()->isDoubleTy()) |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 608 | GV.DoubleVal = GV.IntVal.signedRoundToDouble(); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 609 | else if (CE->getType()->isX86_FP80Ty()) { |
Benjamin Kramer | 3069cbf | 2010-12-04 15:28:22 +0000 | [diff] [blame] | 610 | APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 611 | (void)apf.convertFromAPInt(GV.IntVal, |
Dan Gohman | 6282406 | 2008-02-29 01:27:13 +0000 | [diff] [blame] | 612 | true, |
| 613 | APFloat::rmNearestTiesToEven); |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 614 | GV.IntVal = apf.bitcastToAPInt(); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 615 | } |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 616 | return GV; |
| 617 | } |
| 618 | case Instruction::FPToUI: // double->APInt conversion handles sign |
| 619 | case Instruction::FPToSI: { |
| 620 | GenericValue GV = getConstantValue(Op0); |
| 621 | uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth(); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 622 | if (Op0->getType()->isFloatTy()) |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 623 | GV.IntVal = APIntOps::RoundFloatToAPInt(GV.FloatVal, BitWidth); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 624 | else if (Op0->getType()->isDoubleTy()) |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 625 | GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 626 | else if (Op0->getType()->isX86_FP80Ty()) { |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 627 | APFloat apf = APFloat(APFloat::x87DoubleExtended, GV.IntVal); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 628 | uint64_t v; |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 629 | bool ignored; |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 630 | (void)apf.convertToInteger(&v, BitWidth, |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 631 | CE->getOpcode()==Instruction::FPToSI, |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 632 | APFloat::rmTowardZero, &ignored); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 633 | GV.IntVal = v; // endian? |
| 634 | } |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 635 | return GV; |
| 636 | } |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 637 | case Instruction::PtrToInt: { |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 638 | GenericValue GV = getConstantValue(Op0); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 639 | uint32_t PtrWidth = DL->getTypeSizeInBits(Op0->getType()); |
Eli Friedman | bbc6e67 | 2012-10-30 22:21:55 +0000 | [diff] [blame] | 640 | assert(PtrWidth <= 64 && "Bad pointer width"); |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 641 | GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 642 | uint32_t IntWidth = DL->getTypeSizeInBits(CE->getType()); |
Eli Friedman | bbc6e67 | 2012-10-30 22:21:55 +0000 | [diff] [blame] | 643 | GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth); |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 644 | return GV; |
| 645 | } |
| 646 | case Instruction::IntToPtr: { |
| 647 | GenericValue GV = getConstantValue(Op0); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 648 | uint32_t PtrWidth = DL->getTypeSizeInBits(CE->getType()); |
Eli Friedman | bbc6e67 | 2012-10-30 22:21:55 +0000 | [diff] [blame] | 649 | GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 650 | assert(GV.IntVal.getBitWidth() <= 64 && "Bad pointer width"); |
| 651 | GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue())); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 652 | return GV; |
| 653 | } |
| 654 | case Instruction::BitCast: { |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 655 | GenericValue GV = getConstantValue(Op0); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 656 | Type* DestTy = CE->getType(); |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 657 | switch (Op0->getType()->getTypeID()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 658 | default: llvm_unreachable("Invalid bitcast operand"); |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 659 | case Type::IntegerTyID: |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 660 | assert(DestTy->isFloatingPointTy() && "invalid bitcast"); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 661 | if (DestTy->isFloatTy()) |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 662 | GV.FloatVal = GV.IntVal.bitsToFloat(); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 663 | else if (DestTy->isDoubleTy()) |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 664 | GV.DoubleVal = GV.IntVal.bitsToDouble(); |
| 665 | break; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 666 | case Type::FloatTyID: |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 667 | assert(DestTy->isIntegerTy(32) && "Invalid bitcast"); |
Jay Foad | e4d19c9 | 2010-11-28 21:04:48 +0000 | [diff] [blame] | 668 | GV.IntVal = APInt::floatToBits(GV.FloatVal); |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 669 | break; |
| 670 | case Type::DoubleTyID: |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 671 | assert(DestTy->isIntegerTy(64) && "Invalid bitcast"); |
Jay Foad | e4d19c9 | 2010-11-28 21:04:48 +0000 | [diff] [blame] | 672 | GV.IntVal = APInt::doubleToBits(GV.DoubleVal); |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 673 | break; |
| 674 | case Type::PointerTyID: |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 675 | assert(DestTy->isPointerTy() && "Invalid bitcast"); |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 676 | break; // getConstantValue(Op0) above already converted it |
| 677 | } |
| 678 | return GV; |
Chris Lattner | d8c03bf | 2003-04-23 19:01:49 +0000 | [diff] [blame] | 679 | } |
Chris Lattner | 9a23122 | 2003-05-14 17:51:49 +0000 | [diff] [blame] | 680 | case Instruction::Add: |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 681 | case Instruction::FAdd: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 682 | case Instruction::Sub: |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 683 | case Instruction::FSub: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 684 | case Instruction::Mul: |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 685 | case Instruction::FMul: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 686 | case Instruction::UDiv: |
| 687 | case Instruction::SDiv: |
| 688 | case Instruction::URem: |
| 689 | case Instruction::SRem: |
| 690 | case Instruction::And: |
| 691 | case Instruction::Or: |
| 692 | case Instruction::Xor: { |
| 693 | GenericValue LHS = getConstantValue(Op0); |
| 694 | GenericValue RHS = getConstantValue(CE->getOperand(1)); |
| 695 | GenericValue GV; |
Chris Lattner | 5f90cb8 | 2004-07-11 08:01:11 +0000 | [diff] [blame] | 696 | switch (CE->getOperand(0)->getType()->getTypeID()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 697 | default: llvm_unreachable("Bad add type!"); |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 698 | case Type::IntegerTyID: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 699 | switch (CE->getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 700 | default: llvm_unreachable("Invalid integer opcode"); |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 701 | case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break; |
| 702 | case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break; |
| 703 | case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break; |
| 704 | case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break; |
| 705 | case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break; |
| 706 | case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break; |
| 707 | case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break; |
| 708 | case Instruction::And: GV.IntVal = LHS.IntVal & RHS.IntVal; break; |
| 709 | case Instruction::Or: GV.IntVal = LHS.IntVal | RHS.IntVal; break; |
| 710 | case Instruction::Xor: GV.IntVal = LHS.IntVal ^ RHS.IntVal; break; |
| 711 | } |
Chris Lattner | 5f90cb8 | 2004-07-11 08:01:11 +0000 | [diff] [blame] | 712 | break; |
| 713 | case Type::FloatTyID: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 714 | switch (CE->getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 715 | default: llvm_unreachable("Invalid float opcode"); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 716 | case Instruction::FAdd: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 717 | GV.FloatVal = LHS.FloatVal + RHS.FloatVal; break; |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 718 | case Instruction::FSub: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 719 | GV.FloatVal = LHS.FloatVal - RHS.FloatVal; break; |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 720 | case Instruction::FMul: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 721 | GV.FloatVal = LHS.FloatVal * RHS.FloatVal; break; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 722 | case Instruction::FDiv: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 723 | GV.FloatVal = LHS.FloatVal / RHS.FloatVal; break; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 724 | case Instruction::FRem: |
Chris Lattner | 87565c1 | 2010-05-15 17:10:24 +0000 | [diff] [blame] | 725 | GV.FloatVal = std::fmod(LHS.FloatVal,RHS.FloatVal); break; |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 726 | } |
Chris Lattner | 5f90cb8 | 2004-07-11 08:01:11 +0000 | [diff] [blame] | 727 | break; |
| 728 | case Type::DoubleTyID: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 729 | switch (CE->getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 730 | default: llvm_unreachable("Invalid double opcode"); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 731 | case Instruction::FAdd: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 732 | GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break; |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 733 | case Instruction::FSub: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 734 | GV.DoubleVal = LHS.DoubleVal - RHS.DoubleVal; break; |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 735 | case Instruction::FMul: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 736 | GV.DoubleVal = LHS.DoubleVal * RHS.DoubleVal; break; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 737 | case Instruction::FDiv: |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 738 | GV.DoubleVal = LHS.DoubleVal / RHS.DoubleVal; break; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 739 | case Instruction::FRem: |
Chris Lattner | 87565c1 | 2010-05-15 17:10:24 +0000 | [diff] [blame] | 740 | GV.DoubleVal = std::fmod(LHS.DoubleVal,RHS.DoubleVal); break; |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 741 | } |
Chris Lattner | 5f90cb8 | 2004-07-11 08:01:11 +0000 | [diff] [blame] | 742 | break; |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 743 | case Type::X86_FP80TyID: |
| 744 | case Type::PPC_FP128TyID: |
| 745 | case Type::FP128TyID: { |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 746 | const fltSemantics &Sem = CE->getOperand(0)->getType()->getFltSemantics(); |
| 747 | APFloat apfLHS = APFloat(Sem, LHS.IntVal); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 748 | switch (CE->getOpcode()) { |
Daniel Dunbar | ab19da4 | 2010-11-13 00:55:42 +0000 | [diff] [blame] | 749 | default: llvm_unreachable("Invalid long double opcode"); |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 750 | case Instruction::FAdd: |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 751 | apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 752 | GV.IntVal = apfLHS.bitcastToAPInt(); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 753 | break; |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 754 | case Instruction::FSub: |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 755 | apfLHS.subtract(APFloat(Sem, RHS.IntVal), |
| 756 | APFloat::rmNearestTiesToEven); |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 757 | GV.IntVal = apfLHS.bitcastToAPInt(); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 758 | break; |
Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 759 | case Instruction::FMul: |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 760 | apfLHS.multiply(APFloat(Sem, RHS.IntVal), |
| 761 | APFloat::rmNearestTiesToEven); |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 762 | GV.IntVal = apfLHS.bitcastToAPInt(); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 763 | break; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 764 | case Instruction::FDiv: |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 765 | apfLHS.divide(APFloat(Sem, RHS.IntVal), |
| 766 | APFloat::rmNearestTiesToEven); |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 767 | GV.IntVal = apfLHS.bitcastToAPInt(); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 768 | break; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 769 | case Instruction::FRem: |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 770 | apfLHS.mod(APFloat(Sem, RHS.IntVal), |
| 771 | APFloat::rmNearestTiesToEven); |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 772 | GV.IntVal = apfLHS.bitcastToAPInt(); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 773 | break; |
| 774 | } |
| 775 | } |
| 776 | break; |
Chris Lattner | 5f90cb8 | 2004-07-11 08:01:11 +0000 | [diff] [blame] | 777 | } |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 778 | return GV; |
| 779 | } |
Chris Lattner | 9a23122 | 2003-05-14 17:51:49 +0000 | [diff] [blame] | 780 | default: |
| 781 | break; |
| 782 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 783 | |
| 784 | SmallString<256> Msg; |
| 785 | raw_svector_ostream OS(Msg); |
| 786 | OS << "ConstantExpr not handled: " << *CE; |
| 787 | report_fatal_error(OS.str()); |
Chris Lattner | 9a23122 | 2003-05-14 17:51:49 +0000 | [diff] [blame] | 788 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 789 | |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 790 | // Otherwise, we have a simple constant. |
Reid Spencer | bce30f1 | 2007-03-06 22:23:15 +0000 | [diff] [blame] | 791 | GenericValue Result; |
Chris Lattner | f70c22b | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 792 | switch (C->getType()->getTypeID()) { |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 793 | case Type::FloatTyID: |
| 794 | Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat(); |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 795 | break; |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 796 | case Type::DoubleTyID: |
Dale Johannesen | 43421b3 | 2007-09-06 18:13:44 +0000 | [diff] [blame] | 797 | Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble(); |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 798 | break; |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 799 | case Type::X86_FP80TyID: |
| 800 | case Type::FP128TyID: |
| 801 | case Type::PPC_FP128TyID: |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 802 | Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt(); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 803 | break; |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 804 | case Type::IntegerTyID: |
| 805 | Result.IntVal = cast<ConstantInt>(C)->getValue(); |
| 806 | break; |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 807 | case Type::PointerTyID: |
Reid Spencer | 40cf2f9 | 2004-07-18 00:41:27 +0000 | [diff] [blame] | 808 | if (isa<ConstantPointerNull>(C)) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 809 | Result.PointerVal = nullptr; |
Reid Spencer | 40cf2f9 | 2004-07-18 00:41:27 +0000 | [diff] [blame] | 810 | else if (const Function *F = dyn_cast<Function>(C)) |
| 811 | Result = PTOGV(getPointerToFunctionOrStub(const_cast<Function*>(F))); |
Chris Lattner | f32a6a3 | 2009-10-29 05:26:09 +0000 | [diff] [blame] | 812 | else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) |
Reid Spencer | 40cf2f9 | 2004-07-18 00:41:27 +0000 | [diff] [blame] | 813 | Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV))); |
| 814 | else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 815 | llvm_unreachable("Unknown constant pointer type!"); |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 816 | break; |
Nadav Rotem | 953783e | 2013-04-01 15:53:30 +0000 | [diff] [blame] | 817 | case Type::VectorTyID: { |
| 818 | unsigned elemNum; |
| 819 | Type* ElemTy; |
| 820 | const ConstantDataVector *CDV = dyn_cast<ConstantDataVector>(C); |
| 821 | const ConstantVector *CV = dyn_cast<ConstantVector>(C); |
| 822 | const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(C); |
| 823 | |
| 824 | if (CDV) { |
| 825 | elemNum = CDV->getNumElements(); |
| 826 | ElemTy = CDV->getElementType(); |
| 827 | } else if (CV || CAZ) { |
| 828 | VectorType* VTy = dyn_cast<VectorType>(C->getType()); |
| 829 | elemNum = VTy->getNumElements(); |
| 830 | ElemTy = VTy->getElementType(); |
| 831 | } else { |
| 832 | llvm_unreachable("Unknown constant vector type!"); |
| 833 | } |
| 834 | |
| 835 | Result.AggregateVal.resize(elemNum); |
| 836 | // Check if vector holds floats. |
| 837 | if(ElemTy->isFloatTy()) { |
| 838 | if (CAZ) { |
| 839 | GenericValue floatZero; |
| 840 | floatZero.FloatVal = 0.f; |
| 841 | std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), |
| 842 | floatZero); |
| 843 | break; |
| 844 | } |
| 845 | if(CV) { |
| 846 | for (unsigned i = 0; i < elemNum; ++i) |
| 847 | if (!isa<UndefValue>(CV->getOperand(i))) |
| 848 | Result.AggregateVal[i].FloatVal = cast<ConstantFP>( |
| 849 | CV->getOperand(i))->getValueAPF().convertToFloat(); |
| 850 | break; |
| 851 | } |
| 852 | if(CDV) |
| 853 | for (unsigned i = 0; i < elemNum; ++i) |
| 854 | Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); |
| 855 | |
| 856 | break; |
| 857 | } |
| 858 | // Check if vector holds doubles. |
| 859 | if (ElemTy->isDoubleTy()) { |
| 860 | if (CAZ) { |
| 861 | GenericValue doubleZero; |
| 862 | doubleZero.DoubleVal = 0.0; |
| 863 | std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), |
| 864 | doubleZero); |
| 865 | break; |
| 866 | } |
| 867 | if(CV) { |
| 868 | for (unsigned i = 0; i < elemNum; ++i) |
| 869 | if (!isa<UndefValue>(CV->getOperand(i))) |
| 870 | Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( |
| 871 | CV->getOperand(i))->getValueAPF().convertToDouble(); |
| 872 | break; |
| 873 | } |
| 874 | if(CDV) |
| 875 | for (unsigned i = 0; i < elemNum; ++i) |
| 876 | Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); |
| 877 | |
| 878 | break; |
| 879 | } |
| 880 | // Check if vector holds integers. |
| 881 | if (ElemTy->isIntegerTy()) { |
| 882 | if (CAZ) { |
| 883 | GenericValue intZero; |
| 884 | intZero.IntVal = APInt(ElemTy->getScalarSizeInBits(), 0ull); |
| 885 | std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), |
| 886 | intZero); |
| 887 | break; |
| 888 | } |
| 889 | if(CV) { |
| 890 | for (unsigned i = 0; i < elemNum; ++i) |
| 891 | if (!isa<UndefValue>(CV->getOperand(i))) |
| 892 | Result.AggregateVal[i].IntVal = cast<ConstantInt>( |
| 893 | CV->getOperand(i))->getValue(); |
| 894 | else { |
| 895 | Result.AggregateVal[i].IntVal = |
| 896 | APInt(CV->getOperand(i)->getType()->getPrimitiveSizeInBits(), 0); |
| 897 | } |
| 898 | break; |
| 899 | } |
| 900 | if(CDV) |
| 901 | for (unsigned i = 0; i < elemNum; ++i) |
| 902 | Result.AggregateVal[i].IntVal = APInt( |
| 903 | CDV->getElementType()->getPrimitiveSizeInBits(), |
| 904 | CDV->getElementAsInteger(i)); |
| 905 | |
| 906 | break; |
| 907 | } |
| 908 | llvm_unreachable("Unknown constant pointer type!"); |
| 909 | } |
| 910 | break; |
| 911 | |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 912 | default: |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 913 | SmallString<256> Msg; |
| 914 | raw_svector_ostream OS(Msg); |
| 915 | OS << "ERROR: Constant unimplemented for type: " << *C->getType(); |
| 916 | report_fatal_error(OS.str()); |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 917 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 918 | |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 919 | return Result; |
| 920 | } |
| 921 | |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 922 | /// StoreIntToMemory - Fills the StoreBytes bytes of memory starting from Dst |
| 923 | /// with the integer held in IntVal. |
| 924 | static void StoreIntToMemory(const APInt &IntVal, uint8_t *Dst, |
| 925 | unsigned StoreBytes) { |
| 926 | assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); |
Roman Divacky | 5932429 | 2012-09-05 22:26:57 +0000 | [diff] [blame] | 927 | const uint8_t *Src = (const uint8_t *)IntVal.getRawData(); |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 928 | |
Rafael Espindola | 21a01d1 | 2013-04-15 14:44:24 +0000 | [diff] [blame] | 929 | if (sys::IsLittleEndianHost) { |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 930 | // Little-endian host - the source is ordered from LSB to MSB. Order the |
| 931 | // destination from LSB to MSB: Do a straight copy. |
| 932 | memcpy(Dst, Src, StoreBytes); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 933 | } else { |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 934 | // Big-endian host - the source is an array of 64 bit words ordered from |
| 935 | // LSW to MSW. Each word is ordered from MSB to LSB. Order the destination |
| 936 | // from MSB to LSB: Reverse the word order, but not the bytes in a word. |
| 937 | while (StoreBytes > sizeof(uint64_t)) { |
| 938 | StoreBytes -= sizeof(uint64_t); |
| 939 | // May not be aligned so use memcpy. |
| 940 | memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); |
| 941 | Src += sizeof(uint64_t); |
| 942 | } |
| 943 | |
| 944 | memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); |
| 945 | } |
| 946 | } |
| 947 | |
Evan Cheng | 89687e3 | 2008-11-04 06:10:31 +0000 | [diff] [blame] | 948 | void ExecutionEngine::StoreValueToMemory(const GenericValue &Val, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 949 | GenericValue *Ptr, Type *Ty) { |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 950 | const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty); |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 951 | |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 952 | switch (Ty->getTypeID()) { |
Nadav Rotem | 953783e | 2013-04-01 15:53:30 +0000 | [diff] [blame] | 953 | default: |
| 954 | dbgs() << "Cannot store value of type " << *Ty << "!\n"; |
| 955 | break; |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 956 | case Type::IntegerTyID: |
| 957 | StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 958 | break; |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 959 | case Type::FloatTyID: |
| 960 | *((float*)Ptr) = Val.FloatVal; |
| 961 | break; |
| 962 | case Type::DoubleTyID: |
| 963 | *((double*)Ptr) = Val.DoubleVal; |
| 964 | break; |
Dale Johannesen | 1f8c564 | 2009-03-24 18:16:17 +0000 | [diff] [blame] | 965 | case Type::X86_FP80TyID: |
| 966 | memcpy(Ptr, Val.IntVal.getRawData(), 10); |
| 967 | break; |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 968 | case Type::PointerTyID: |
| 969 | // Ensure 64 bit target pointers are fully initialized on 32 bit hosts. |
| 970 | if (StoreBytes != sizeof(PointerTy)) |
Chandler Carruth | 80d9e07 | 2011-04-28 08:37:18 +0000 | [diff] [blame] | 971 | memset(&(Ptr->PointerVal), 0, StoreBytes); |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 972 | |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 973 | *((PointerTy*)Ptr) = Val.PointerVal; |
| 974 | break; |
Nadav Rotem | 953783e | 2013-04-01 15:53:30 +0000 | [diff] [blame] | 975 | case Type::VectorTyID: |
| 976 | for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) { |
| 977 | if (cast<VectorType>(Ty)->getElementType()->isDoubleTy()) |
| 978 | *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal; |
| 979 | if (cast<VectorType>(Ty)->getElementType()->isFloatTy()) |
| 980 | *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal; |
| 981 | if (cast<VectorType>(Ty)->getElementType()->isIntegerTy()) { |
| 982 | unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8; |
| 983 | StoreIntToMemory(Val.AggregateVal[i].IntVal, |
| 984 | (uint8_t*)Ptr + numOfBytes*i, numOfBytes); |
| 985 | } |
| 986 | } |
| 987 | break; |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 988 | } |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 989 | |
Rafael Espindola | 21a01d1 | 2013-04-15 14:44:24 +0000 | [diff] [blame] | 990 | if (sys::IsLittleEndianHost != getDataLayout()->isLittleEndian()) |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 991 | // Host and target are different endian - reverse the stored bytes. |
| 992 | std::reverse((uint8_t*)Ptr, StoreBytes + (uint8_t*)Ptr); |
| 993 | } |
| 994 | |
| 995 | /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting |
| 996 | /// from Src into IntVal, which is assumed to be wide enough and to hold zero. |
| 997 | static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) { |
| 998 | assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); |
David Greene | c2680be | 2013-01-14 21:04:45 +0000 | [diff] [blame] | 999 | uint8_t *Dst = reinterpret_cast<uint8_t *>( |
| 1000 | const_cast<uint64_t *>(IntVal.getRawData())); |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 1001 | |
Rafael Espindola | 21a01d1 | 2013-04-15 14:44:24 +0000 | [diff] [blame] | 1002 | if (sys::IsLittleEndianHost) |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 1003 | // Little-endian host - the destination must be ordered from LSB to MSB. |
| 1004 | // The source is ordered from LSB to MSB: Do a straight copy. |
| 1005 | memcpy(Dst, Src, LoadBytes); |
| 1006 | else { |
| 1007 | // Big-endian - the destination is an array of 64 bit words ordered from |
| 1008 | // LSW to MSW. Each word must be ordered from MSB to LSB. The source is |
| 1009 | // ordered from MSB to LSB: Reverse the word order, but not the bytes in |
| 1010 | // a word. |
| 1011 | while (LoadBytes > sizeof(uint64_t)) { |
| 1012 | LoadBytes -= sizeof(uint64_t); |
| 1013 | // May not be aligned so use memcpy. |
| 1014 | memcpy(Dst, Src + LoadBytes, sizeof(uint64_t)); |
| 1015 | Dst += sizeof(uint64_t); |
| 1016 | } |
| 1017 | |
| 1018 | memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes); |
| 1019 | } |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
Misha Brukman | 4afac18 | 2003-10-10 17:45:12 +0000 | [diff] [blame] | 1022 | /// FIXME: document |
| 1023 | /// |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 1024 | void ExecutionEngine::LoadValueFromMemory(GenericValue &Result, |
Duncan Sands | 08bfe26 | 2008-03-10 16:38:37 +0000 | [diff] [blame] | 1025 | GenericValue *Ptr, |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1026 | Type *Ty) { |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1027 | const unsigned LoadBytes = getDataLayout()->getTypeStoreSize(Ty); |
Duncan Sands | 1eff704 | 2007-12-10 17:43:13 +0000 | [diff] [blame] | 1028 | |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 1029 | switch (Ty->getTypeID()) { |
| 1030 | case Type::IntegerTyID: |
| 1031 | // An APInt with all words initially zero. |
| 1032 | Result.IntVal = APInt(cast<IntegerType>(Ty)->getBitWidth(), 0); |
| 1033 | LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes); |
| 1034 | break; |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 1035 | case Type::FloatTyID: |
| 1036 | Result.FloatVal = *((float*)Ptr); |
| 1037 | break; |
| 1038 | case Type::DoubleTyID: |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 1039 | Result.DoubleVal = *((double*)Ptr); |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 1040 | break; |
Duncan Sands | 8a43e9e | 2007-12-14 19:38:31 +0000 | [diff] [blame] | 1041 | case Type::PointerTyID: |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 1042 | Result.PointerVal = *((PointerTy*)Ptr); |
| 1043 | break; |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 1044 | case Type::X86_FP80TyID: { |
| 1045 | // This is endian dependent, but it will only work on x86 anyway. |
Duncan Sands | 9e4635a | 2007-12-15 17:37:40 +0000 | [diff] [blame] | 1046 | // FIXME: Will not trap if loading a signaling NaN. |
Dale Johannesen | 1f8c564 | 2009-03-24 18:16:17 +0000 | [diff] [blame] | 1047 | uint64_t y[2]; |
| 1048 | memcpy(y, Ptr, 10); |
Jeffrey Yasskin | 3ba292d | 2011-07-18 21:45:40 +0000 | [diff] [blame] | 1049 | Result.IntVal = APInt(80, y); |
Dale Johannesen | 1abac0d | 2007-09-17 18:44:13 +0000 | [diff] [blame] | 1050 | break; |
| 1051 | } |
Nadav Rotem | 953783e | 2013-04-01 15:53:30 +0000 | [diff] [blame] | 1052 | case Type::VectorTyID: { |
| 1053 | const VectorType *VT = cast<VectorType>(Ty); |
| 1054 | const Type *ElemT = VT->getElementType(); |
| 1055 | const unsigned numElems = VT->getNumElements(); |
| 1056 | if (ElemT->isFloatTy()) { |
| 1057 | Result.AggregateVal.resize(numElems); |
| 1058 | for (unsigned i = 0; i < numElems; ++i) |
| 1059 | Result.AggregateVal[i].FloatVal = *((float*)Ptr+i); |
| 1060 | } |
| 1061 | if (ElemT->isDoubleTy()) { |
| 1062 | Result.AggregateVal.resize(numElems); |
| 1063 | for (unsigned i = 0; i < numElems; ++i) |
| 1064 | Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i); |
| 1065 | } |
| 1066 | if (ElemT->isIntegerTy()) { |
| 1067 | GenericValue intZero; |
| 1068 | const unsigned elemBitWidth = cast<IntegerType>(ElemT)->getBitWidth(); |
| 1069 | intZero.IntVal = APInt(elemBitWidth, 0); |
| 1070 | Result.AggregateVal.resize(numElems, intZero); |
| 1071 | for (unsigned i = 0; i < numElems; ++i) |
| 1072 | LoadIntFromMemory(Result.AggregateVal[i].IntVal, |
| 1073 | (uint8_t*)Ptr+((elemBitWidth+7)/8)*i, (elemBitWidth+7)/8); |
| 1074 | } |
| 1075 | break; |
| 1076 | } |
Reid Spencer | 8fb0f19 | 2007-03-06 03:04:04 +0000 | [diff] [blame] | 1077 | default: |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1078 | SmallString<256> Msg; |
| 1079 | raw_svector_ostream OS(Msg); |
| 1080 | OS << "Cannot load value of type " << *Ty << "!"; |
| 1081 | report_fatal_error(OS.str()); |
Chris Lattner | f88b9a6 | 2003-05-08 16:52:16 +0000 | [diff] [blame] | 1082 | } |
Chris Lattner | f88b9a6 | 2003-05-08 16:52:16 +0000 | [diff] [blame] | 1083 | } |
| 1084 | |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 1085 | void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) { |
David Greene | ae7c59a | 2010-01-05 01:27:39 +0000 | [diff] [blame] | 1086 | DEBUG(dbgs() << "JIT: Initializing " << Addr << " "); |
Dale Johannesen | dd947ea | 2008-08-07 01:30:15 +0000 | [diff] [blame] | 1087 | DEBUG(Init->dump()); |
Chris Lattner | 1ee0ecf | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1088 | if (isa<UndefValue>(Init)) |
Chris Lattner | bd1d382 | 2004-10-16 18:19:26 +0000 | [diff] [blame] | 1089 | return; |
Chris Lattner | 1ee0ecf | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1090 | |
| 1091 | if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) { |
Robert Bocchino | 7c2b7c7 | 2006-01-20 18:18:40 +0000 | [diff] [blame] | 1092 | unsigned ElementSize = |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1093 | getDataLayout()->getTypeAllocSize(CP->getType()->getElementType()); |
Robert Bocchino | 7c2b7c7 | 2006-01-20 18:18:40 +0000 | [diff] [blame] | 1094 | for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i) |
| 1095 | InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize); |
| 1096 | return; |
Chris Lattner | 1ee0ecf | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1097 | } |
| 1098 | |
| 1099 | if (isa<ConstantAggregateZero>(Init)) { |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1100 | memset(Addr, 0, (size_t)getDataLayout()->getTypeAllocSize(Init->getType())); |
Chris Lattner | b6e1dd7 | 2008-02-15 00:57:28 +0000 | [diff] [blame] | 1101 | return; |
Chris Lattner | 1ee0ecf | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1102 | } |
| 1103 | |
| 1104 | if (const ConstantArray *CPA = dyn_cast<ConstantArray>(Init)) { |
Dan Gohman | 638e378 | 2008-05-20 03:20:09 +0000 | [diff] [blame] | 1105 | unsigned ElementSize = |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1106 | getDataLayout()->getTypeAllocSize(CPA->getType()->getElementType()); |
Dan Gohman | 638e378 | 2008-05-20 03:20:09 +0000 | [diff] [blame] | 1107 | for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i) |
| 1108 | InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize); |
| 1109 | return; |
Chris Lattner | 1ee0ecf | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1110 | } |
| 1111 | |
| 1112 | if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(Init)) { |
Dan Gohman | 638e378 | 2008-05-20 03:20:09 +0000 | [diff] [blame] | 1113 | const StructLayout *SL = |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1114 | getDataLayout()->getStructLayout(cast<StructType>(CPS->getType())); |
Dan Gohman | 638e378 | 2008-05-20 03:20:09 +0000 | [diff] [blame] | 1115 | for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i) |
| 1116 | InitializeMemory(CPS->getOperand(i), (char*)Addr+SL->getElementOffset(i)); |
| 1117 | return; |
Chris Lattner | 1ee0ecf | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1118 | } |
| 1119 | |
| 1120 | if (const ConstantDataSequential *CDS = |
| 1121 | dyn_cast<ConstantDataSequential>(Init)) { |
| 1122 | // CDS is already laid out in host memory order. |
| 1123 | StringRef Data = CDS->getRawDataValues(); |
| 1124 | memcpy(Addr, Data.data(), Data.size()); |
| 1125 | return; |
| 1126 | } |
| 1127 | |
| 1128 | if (Init->getType()->isFirstClassType()) { |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 1129 | GenericValue Val = getConstantValue(Init); |
| 1130 | StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType()); |
| 1131 | return; |
| 1132 | } |
| 1133 | |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1134 | DEBUG(dbgs() << "Bad Type: " << *Init->getType() << "\n"); |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1135 | llvm_unreachable("Unknown constant type to initialize memory with!"); |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 1136 | } |
| 1137 | |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 1138 | /// EmitGlobals - Emit all of the global variables to memory, storing their |
| 1139 | /// addresses into GlobalAddress. This must make sure to copy the contents of |
| 1140 | /// their initializers into the memory. |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 1141 | void ExecutionEngine::emitGlobals() { |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 1142 | // Loop over all of the global variables in the program, allocating the memory |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1143 | // to hold them. If there is more than one module, do a prepass over globals |
| 1144 | // to figure out how the different modules should link together. |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1145 | std::map<std::pair<std::string, Type*>, |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1146 | const GlobalValue*> LinkedGlobalsMap; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1147 | |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1148 | if (Modules.size() != 1) { |
| 1149 | for (unsigned m = 0, e = Modules.size(); m != e; ++m) { |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 1150 | Module &M = *Modules[m]; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1151 | for (const auto &GV : M.globals()) { |
| 1152 | if (GV.hasLocalLinkage() || GV.isDeclaration() || |
| 1153 | GV.hasAppendingLinkage() || !GV.hasName()) |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1154 | continue;// Ignore external globals and globals with internal linkage. |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1155 | |
| 1156 | const GlobalValue *&GVEntry = |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1157 | LinkedGlobalsMap[std::make_pair(GV.getName(), GV.getType())]; |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1158 | |
| 1159 | // If this is the first time we've seen this global, it is the canonical |
| 1160 | // version. |
| 1161 | if (!GVEntry) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1162 | GVEntry = &GV; |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1163 | continue; |
| 1164 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1165 | |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1166 | // If the existing global is strong, never replace it. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1167 | if (GVEntry->hasExternalLinkage()) |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1168 | continue; |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1169 | |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1170 | // Otherwise, we know it's linkonce/weak, replace it if this is a strong |
Dale Johannesen | aafce77 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 1171 | // symbol. FIXME is this right for common? |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1172 | if (GV.hasExternalLinkage() || GVEntry->hasExternalWeakLinkage()) |
| 1173 | GVEntry = &GV; |
Chris Lattner | d8c03bf | 2003-04-23 19:01:49 +0000 | [diff] [blame] | 1174 | } |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 1175 | } |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1176 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1177 | |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1178 | std::vector<const GlobalValue*> NonCanonicalGlobals; |
| 1179 | for (unsigned m = 0, e = Modules.size(); m != e; ++m) { |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 1180 | Module &M = *Modules[m]; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1181 | for (const auto &GV : M.globals()) { |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1182 | // In the multi-module case, see what this global maps to. |
| 1183 | if (!LinkedGlobalsMap.empty()) { |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1184 | if (const GlobalValue *GVEntry = |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1185 | LinkedGlobalsMap[std::make_pair(GV.getName(), GV.getType())]) { |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1186 | // If something else is the canonical global, ignore this one. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1187 | if (GVEntry != &GV) { |
| 1188 | NonCanonicalGlobals.push_back(&GV); |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1189 | continue; |
| 1190 | } |
| 1191 | } |
| 1192 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1193 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1194 | if (!GV.isDeclaration()) { |
| 1195 | addGlobalMapping(&GV, getMemoryForGV(&GV)); |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1196 | } else { |
| 1197 | // External variable reference. Try to use the dynamic loader to |
| 1198 | // get a pointer to it. |
| 1199 | if (void *SymAddr = |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1200 | sys::DynamicLibrary::SearchForAddressOfSymbol(GV.getName())) |
| 1201 | addGlobalMapping(&GV, SymAddr); |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1202 | else { |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 1203 | report_fatal_error("Could not resolve external global address: " |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1204 | +GV.getName()); |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1205 | } |
| 1206 | } |
| 1207 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1208 | |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1209 | // If there are multiple modules, map the non-canonical globals to their |
| 1210 | // canonical location. |
| 1211 | if (!NonCanonicalGlobals.empty()) { |
| 1212 | for (unsigned i = 0, e = NonCanonicalGlobals.size(); i != e; ++i) { |
| 1213 | const GlobalValue *GV = NonCanonicalGlobals[i]; |
| 1214 | const GlobalValue *CGV = |
| 1215 | LinkedGlobalsMap[std::make_pair(GV->getName(), GV->getType())]; |
| 1216 | void *Ptr = getPointerToGlobalIfAvailable(CGV); |
| 1217 | assert(Ptr && "Canonical global wasn't codegen'd!"); |
Nuno Lopes | c8ed902 | 2008-10-14 10:04:52 +0000 | [diff] [blame] | 1218 | addGlobalMapping(GV, Ptr); |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1219 | } |
| 1220 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1221 | |
| 1222 | // Now that all of the globals are set up in memory, loop through them all |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1223 | // and initialize their contents. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1224 | for (const auto &GV : M.globals()) { |
| 1225 | if (!GV.isDeclaration()) { |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1226 | if (!LinkedGlobalsMap.empty()) { |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1227 | if (const GlobalValue *GVEntry = |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1228 | LinkedGlobalsMap[std::make_pair(GV.getName(), GV.getType())]) |
| 1229 | if (GVEntry != &GV) // Not the canonical variable. |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1230 | continue; |
| 1231 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1232 | EmitGlobalVariable(&GV); |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 1233 | } |
| 1234 | } |
| 1235 | } |
Chris Lattner | 24b0a18 | 2003-12-20 02:45:37 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
| 1238 | // EmitGlobalVariable - This method emits the specified global variable to the |
| 1239 | // address specified in GlobalAddresses, or allocates new memory if it's not |
| 1240 | // already in the map. |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 1241 | void ExecutionEngine::EmitGlobalVariable(const GlobalVariable *GV) { |
Chris Lattner | 55d8648 | 2003-12-31 20:21:04 +0000 | [diff] [blame] | 1242 | void *GA = getPointerToGlobalIfAvailable(GV); |
Chris Lattner | 23c4724 | 2004-02-08 19:33:23 +0000 | [diff] [blame] | 1243 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1244 | if (!GA) { |
Chris Lattner | 24b0a18 | 2003-12-20 02:45:37 +0000 | [diff] [blame] | 1245 | // If it's not already specified, allocate memory for the global. |
Nicolas Geoffray | 46fa139 | 2008-10-25 15:41:43 +0000 | [diff] [blame] | 1246 | GA = getMemoryForGV(GV); |
Andrew Kaylor | 48079e0 | 2013-11-15 17:52:54 +0000 | [diff] [blame] | 1247 | |
| 1248 | // If we failed to allocate memory for this global, return. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1249 | if (!GA) return; |
Andrew Kaylor | 48079e0 | 2013-11-15 17:52:54 +0000 | [diff] [blame] | 1250 | |
Chris Lattner | 55d8648 | 2003-12-31 20:21:04 +0000 | [diff] [blame] | 1251 | addGlobalMapping(GV, GA); |
Chris Lattner | 24b0a18 | 2003-12-20 02:45:37 +0000 | [diff] [blame] | 1252 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1253 | |
Nicolas Geoffray | 46fa139 | 2008-10-25 15:41:43 +0000 | [diff] [blame] | 1254 | // Don't initialize if it's thread local, let the client do it. |
| 1255 | if (!GV->isThreadLocal()) |
| 1256 | InitializeMemory(GV->getInitializer(), GA); |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1257 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1258 | Type *ElTy = GV->getType()->getElementType(); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 1259 | size_t GVSize = (size_t)getDataLayout()->getTypeAllocSize(ElTy); |
Chris Lattner | 813c815 | 2005-01-08 20:13:19 +0000 | [diff] [blame] | 1260 | NumInitBytes += (unsigned)GVSize; |
Chris Lattner | 24b0a18 | 2003-12-20 02:45:37 +0000 | [diff] [blame] | 1261 | ++NumGlobals; |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 1262 | } |
Jeffrey Yasskin | 4c5b23b | 2009-10-13 17:42:08 +0000 | [diff] [blame] | 1263 | |
Jeffrey Yasskin | 23e5fcf | 2009-10-23 22:37:43 +0000 | [diff] [blame] | 1264 | ExecutionEngineState::ExecutionEngineState(ExecutionEngine &EE) |
| 1265 | : EE(EE), GlobalAddressMap(this) { |
Jeffrey Yasskin | 4c5b23b | 2009-10-13 17:42:08 +0000 | [diff] [blame] | 1266 | } |
| 1267 | |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1268 | sys::Mutex * |
| 1269 | ExecutionEngineState::AddressMapConfig::getMutex(ExecutionEngineState *EES) { |
Jeffrey Yasskin | 23e5fcf | 2009-10-23 22:37:43 +0000 | [diff] [blame] | 1270 | return &EES->EE.lock; |
| 1271 | } |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1272 | |
| 1273 | void ExecutionEngineState::AddressMapConfig::onDelete(ExecutionEngineState *EES, |
| 1274 | const GlobalValue *Old) { |
Jeffrey Yasskin | 23e5fcf | 2009-10-23 22:37:43 +0000 | [diff] [blame] | 1275 | void *OldVal = EES->GlobalAddressMap.lookup(Old); |
| 1276 | EES->GlobalAddressReverseMap.erase(OldVal); |
| 1277 | } |
| 1278 | |
Daniel Dunbar | 48dd875 | 2010-11-13 02:48:57 +0000 | [diff] [blame] | 1279 | void ExecutionEngineState::AddressMapConfig::onRAUW(ExecutionEngineState *, |
| 1280 | const GlobalValue *, |
| 1281 | const GlobalValue *) { |
Craig Topper | 8581438 | 2012-02-07 05:05:23 +0000 | [diff] [blame] | 1282 | llvm_unreachable("The ExecutionEngine doesn't know how to handle a" |
| 1283 | " RAUW on a value it has a global mapping for."); |
Jeffrey Yasskin | 4c5b23b | 2009-10-13 17:42:08 +0000 | [diff] [blame] | 1284 | } |