Jim Grosbach | 06594e1 | 2012-01-16 23:50:58 +0000 | [diff] [blame] | 1 | //===-- RuntimeDyld.cpp - Run-time dynamic linker for MC-JIT ----*- C++ -*-===// |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Implementation of the MC-JIT runtime dynamic linker. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "llvm/ExecutionEngine/RuntimeDyld.h" |
Juergen Ributzka | d12ccbd | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 15 | #include "JITRegistrar.h" |
Andrew Kaylor | adc7056 | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 16 | #include "ObjectImageCommon.h" |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 17 | #include "RuntimeDyldCheckerImpl.h" |
Eli Bendersky | 058d647 | 2012-01-22 07:05:02 +0000 | [diff] [blame] | 18 | #include "RuntimeDyldELF.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 19 | #include "RuntimeDyldImpl.h" |
Eli Bendersky | 058d647 | 2012-01-22 07:05:02 +0000 | [diff] [blame] | 20 | #include "RuntimeDyldMachO.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 21 | #include "llvm/Object/ELF.h" |
Tim Northover | 94bc73d | 2012-10-29 10:47:04 +0000 | [diff] [blame] | 22 | #include "llvm/Support/MathExtras.h" |
Andrew Kaylor | 4fba049 | 2013-10-21 17:42:06 +0000 | [diff] [blame] | 23 | #include "llvm/Support/MutexGuard.h" |
Eli Bendersky | 058d647 | 2012-01-22 07:05:02 +0000 | [diff] [blame] | 24 | |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 25 | using namespace llvm; |
| 26 | using namespace llvm::object; |
| 27 | |
Chandler Carruth | f58e376 | 2014-04-22 03:04:17 +0000 | [diff] [blame] | 28 | #define DEBUG_TYPE "dyld" |
| 29 | |
Chandler Carruth | 086f708 | 2011-04-05 23:54:31 +0000 | [diff] [blame] | 30 | // Empty out-of-line virtual destructor as the key function. |
Danil Malyshev | 72510f2 | 2011-07-13 07:57:58 +0000 | [diff] [blame] | 31 | RuntimeDyldImpl::~RuntimeDyldImpl() {} |
Chandler Carruth | 086f708 | 2011-04-05 23:54:31 +0000 | [diff] [blame] | 32 | |
Juergen Ributzka | d12ccbd | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 33 | // Pin the JITRegistrar's and ObjectImage*'s vtables to this file. |
| 34 | void JITRegistrar::anchor() {} |
| 35 | void ObjectImage::anchor() {} |
| 36 | void ObjectImageCommon::anchor() {} |
| 37 | |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 38 | namespace llvm { |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 39 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 40 | void RuntimeDyldImpl::registerEHFrames() {} |
Rafael Espindola | fa5942b | 2013-05-05 20:43:10 +0000 | [diff] [blame] | 41 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 42 | void RuntimeDyldImpl::deregisterEHFrames() {} |
Andrew Kaylor | c442a76 | 2013-10-16 00:14:21 +0000 | [diff] [blame] | 43 | |
Benjamin Kramer | 01e1789 | 2014-08-26 14:22:05 +0000 | [diff] [blame] | 44 | #ifndef NDEBUG |
Lang Hames | f4b3b67 | 2014-08-25 22:19:14 +0000 | [diff] [blame] | 45 | static void dumpSectionMemory(const SectionEntry &S, StringRef State) { |
| 46 | dbgs() << "----- Contents of section " << S.Name << " " << State << " -----"; |
| 47 | |
Lang Hames | 24f0c24 | 2014-10-01 21:57:47 +0000 | [diff] [blame] | 48 | if (S.Address == nullptr) { |
| 49 | dbgs() << "\n <section not emitted>\n"; |
| 50 | return; |
| 51 | } |
| 52 | |
Lang Hames | f4b3b67 | 2014-08-25 22:19:14 +0000 | [diff] [blame] | 53 | const unsigned ColsPerRow = 16; |
Lang Hames | 86b08f0 | 2014-08-25 18:37:38 +0000 | [diff] [blame] | 54 | |
| 55 | uint8_t *DataAddr = S.Address; |
| 56 | uint64_t LoadAddr = S.LoadAddress; |
| 57 | |
Lang Hames | 8d4d026 | 2014-09-18 16:43:24 +0000 | [diff] [blame] | 58 | unsigned StartPadding = LoadAddr & (ColsPerRow - 1); |
Lang Hames | 86b08f0 | 2014-08-25 18:37:38 +0000 | [diff] [blame] | 59 | unsigned BytesRemaining = S.Size; |
| 60 | |
| 61 | if (StartPadding) { |
Lang Hames | da01602 | 2014-09-23 19:20:57 +0000 | [diff] [blame] | 62 | dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr & ~(ColsPerRow - 1)) << ":"; |
Lang Hames | 86b08f0 | 2014-08-25 18:37:38 +0000 | [diff] [blame] | 63 | while (StartPadding--) |
| 64 | dbgs() << " "; |
| 65 | } |
| 66 | |
| 67 | while (BytesRemaining > 0) { |
Lang Hames | f4b3b67 | 2014-08-25 22:19:14 +0000 | [diff] [blame] | 68 | if ((LoadAddr & (ColsPerRow - 1)) == 0) |
Lang Hames | c5cafbb | 2014-08-28 04:25:17 +0000 | [diff] [blame] | 69 | dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr) << ":"; |
Lang Hames | 86b08f0 | 2014-08-25 18:37:38 +0000 | [diff] [blame] | 70 | |
| 71 | dbgs() << " " << format("%02x", *DataAddr); |
| 72 | |
| 73 | ++DataAddr; |
| 74 | ++LoadAddr; |
| 75 | --BytesRemaining; |
| 76 | } |
| 77 | |
| 78 | dbgs() << "\n"; |
| 79 | } |
Benjamin Kramer | 01e1789 | 2014-08-26 14:22:05 +0000 | [diff] [blame] | 80 | #endif |
Lang Hames | 86b08f0 | 2014-08-25 18:37:38 +0000 | [diff] [blame] | 81 | |
Jim Grosbach | 733d305 | 2011-04-12 21:20:41 +0000 | [diff] [blame] | 82 | // Resolve the relocations for all symbols we currently know about. |
| 83 | void RuntimeDyldImpl::resolveRelocations() { |
Andrew Kaylor | 4fba049 | 2013-10-21 17:42:06 +0000 | [diff] [blame] | 84 | MutexGuard locked(lock); |
| 85 | |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 86 | // First, resolve relocations associated with external symbols. |
Eli Bendersky | b92e1cf | 2012-04-30 12:15:58 +0000 | [diff] [blame] | 87 | resolveExternalSymbols(); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 88 | |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 89 | // Just iterate over the sections we have and resolve all the relocations |
| 90 | // in them. Gross overkill, but it gets the job done. |
| 91 | for (int i = 0, e = Sections.size(); i != e; ++i) { |
Andrew Kaylor | 5f3a998 | 2013-08-19 19:38:06 +0000 | [diff] [blame] | 92 | // The Section here (Sections[i]) refers to the section in which the |
| 93 | // symbol for the relocation is located. The SectionID in the relocation |
| 94 | // entry provides the section to which the relocation will be applied. |
Andrew Kaylor | a714efc | 2012-11-05 20:57:16 +0000 | [diff] [blame] | 95 | uint64_t Addr = Sections[i].LoadAddress; |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 96 | DEBUG(dbgs() << "Resolving relocations Section #" << i << "\t" |
Lang Hames | 86b08f0 | 2014-08-25 18:37:38 +0000 | [diff] [blame] | 97 | << format("0x%x", Addr) << "\n"); |
Lang Hames | f4b3b67 | 2014-08-25 22:19:14 +0000 | [diff] [blame] | 98 | DEBUG(dumpSectionMemory(Sections[i], "before relocations")); |
Andrew Kaylor | a714efc | 2012-11-05 20:57:16 +0000 | [diff] [blame] | 99 | resolveRelocationList(Relocations[i], Addr); |
Lang Hames | f4b3b67 | 2014-08-25 22:19:14 +0000 | [diff] [blame] | 100 | DEBUG(dumpSectionMemory(Sections[i], "after relocations")); |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 101 | Relocations.erase(i); |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 102 | } |
Jim Grosbach | 733d305 | 2011-04-12 21:20:41 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Jim Grosbach | 6d61397 | 2012-09-13 21:50:06 +0000 | [diff] [blame] | 105 | void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress, |
Jim Grosbach | 0ddb3a4 | 2012-01-16 23:50:55 +0000 | [diff] [blame] | 106 | uint64_t TargetAddress) { |
Andrew Kaylor | 4fba049 | 2013-10-21 17:42:06 +0000 | [diff] [blame] | 107 | MutexGuard locked(lock); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 108 | for (unsigned i = 0, e = Sections.size(); i != e; ++i) { |
| 109 | if (Sections[i].Address == LocalAddress) { |
| 110 | reassignSectionAddress(i, TargetAddress); |
| 111 | return; |
| 112 | } |
| 113 | } |
| 114 | llvm_unreachable("Attempting to remap address of unknown section!"); |
Jim Grosbach | 0ddb3a4 | 2012-01-16 23:50:55 +0000 | [diff] [blame] | 115 | } |
| 116 | |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 117 | static std::error_code getOffset(const SymbolRef &Sym, uint64_t &Result) { |
Rafael Espindola | 6956b1a | 2014-04-21 13:45:32 +0000 | [diff] [blame] | 118 | uint64_t Address; |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 119 | if (std::error_code EC = Sym.getAddress(Address)) |
Rafael Espindola | 6956b1a | 2014-04-21 13:45:32 +0000 | [diff] [blame] | 120 | return EC; |
| 121 | |
| 122 | if (Address == UnknownAddressOrSize) { |
| 123 | Result = UnknownAddressOrSize; |
| 124 | return object_error::success; |
| 125 | } |
| 126 | |
| 127 | const ObjectFile *Obj = Sym.getObject(); |
| 128 | section_iterator SecI(Obj->section_begin()); |
Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 129 | if (std::error_code EC = Sym.getSection(SecI)) |
Rafael Espindola | 6956b1a | 2014-04-21 13:45:32 +0000 | [diff] [blame] | 130 | return EC; |
| 131 | |
Rafael Espindola | fdf5f7a | 2014-10-08 15:12:20 +0000 | [diff] [blame] | 132 | if (SecI == Obj->section_end()) { |
| 133 | Result = UnknownAddressOrSize; |
| 134 | return object_error::success; |
| 135 | } |
Rafael Espindola | 6956b1a | 2014-04-21 13:45:32 +0000 | [diff] [blame] | 136 | |
Rafael Espindola | 8029127 | 2014-10-08 15:28:58 +0000 | [diff] [blame^] | 137 | uint64_t SectionAddress = SecI->getAddress(); |
Rafael Espindola | 6956b1a | 2014-04-21 13:45:32 +0000 | [diff] [blame] | 138 | Result = Address - SectionAddress; |
| 139 | return object_error::success; |
| 140 | } |
| 141 | |
David Blaikie | fba8b20 | 2014-09-03 21:34:34 +0000 | [diff] [blame] | 142 | std::unique_ptr<ObjectImage> |
| 143 | RuntimeDyldImpl::loadObject(std::unique_ptr<ObjectImage> Obj) { |
Andrew Kaylor | 4fba049 | 2013-10-21 17:42:06 +0000 | [diff] [blame] | 144 | MutexGuard locked(lock); |
| 145 | |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 146 | if (!Obj) |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 147 | return nullptr; |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 148 | |
Andrew Kaylor | 33c5b1b | 2013-10-15 20:44:55 +0000 | [diff] [blame] | 149 | // Save information about our target |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 150 | Arch = (Triple::ArchType)Obj->getArch(); |
| 151 | IsTargetLittleEndian = Obj->getObjectFile()->isLittleEndian(); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 152 | |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 153 | // Compute the memory size required to load all sections to be loaded |
| 154 | // and pass this information to the memory manager |
| 155 | if (MemMgr->needsToReserveAllocationSpace()) { |
| 156 | uint64_t CodeSize = 0, DataSizeRO = 0, DataSizeRW = 0; |
| 157 | computeTotalAllocSize(*Obj, CodeSize, DataSizeRO, DataSizeRW); |
| 158 | MemMgr->reserveAllocationSpace(CodeSize, DataSizeRO, DataSizeRW); |
| 159 | } |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 160 | |
Eli Bendersky | fc07908 | 2012-05-01 06:58:59 +0000 | [diff] [blame] | 161 | // Symbols found in this object |
| 162 | StringMap<SymbolLoc> LocalSymbols; |
| 163 | // Used sections from the object file |
| 164 | ObjSectionToIDMap LocalSections; |
| 165 | |
Tim Northover | 94bc73d | 2012-10-29 10:47:04 +0000 | [diff] [blame] | 166 | // Common symbols requiring allocation, with their sizes and alignments |
Eli Bendersky | fc07908 | 2012-05-01 06:58:59 +0000 | [diff] [blame] | 167 | CommonSymbolMap CommonSymbols; |
Tim Northover | 94bc73d | 2012-10-29 10:47:04 +0000 | [diff] [blame] | 168 | // Maximum required total memory to allocate all common symbols |
Eli Bendersky | fc07908 | 2012-05-01 06:58:59 +0000 | [diff] [blame] | 169 | uint64_t CommonSize = 0; |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 170 | |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 171 | // Parse symbols |
| 172 | DEBUG(dbgs() << "Parse symbols:\n"); |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 173 | for (symbol_iterator I = Obj->begin_symbols(), E = Obj->end_symbols(); I != E; |
| 174 | ++I) { |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 175 | object::SymbolRef::Type SymType; |
| 176 | StringRef Name; |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 177 | Check(I->getType(SymType)); |
| 178 | Check(I->getName(Name)); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 179 | |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 180 | uint32_t Flags = I->getFlags(); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 181 | |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 182 | bool IsCommon = Flags & SymbolRef::SF_Common; |
| 183 | if (IsCommon) { |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 184 | // Add the common symbols to a list. We'll allocate them all below. |
Lang Hames | 36072da | 2014-05-12 21:39:59 +0000 | [diff] [blame] | 185 | if (!GlobalSymbolTable.count(Name)) { |
| 186 | uint32_t Align; |
| 187 | Check(I->getAlignment(Align)); |
| 188 | uint64_t Size = 0; |
| 189 | Check(I->getSize(Size)); |
| 190 | CommonSize += Size + Align; |
| 191 | CommonSymbols[*I] = CommonSymbolInfo(Size, Align); |
| 192 | } |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 193 | } else { |
| 194 | if (SymType == object::SymbolRef::ST_Function || |
Akira Hatanaka | 111174b | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 195 | SymType == object::SymbolRef::ST_Data || |
| 196 | SymType == object::SymbolRef::ST_Unknown) { |
Rafael Espindola | 6956b1a | 2014-04-21 13:45:32 +0000 | [diff] [blame] | 197 | uint64_t SectOffset; |
Eli Bendersky | 0e2ac5b | 2012-04-29 12:40:47 +0000 | [diff] [blame] | 198 | StringRef SectionData; |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 199 | section_iterator SI = Obj->end_sections(); |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 200 | Check(getOffset(*I, SectOffset)); |
| 201 | Check(I->getSection(SI)); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 202 | if (SI == Obj->end_sections()) |
| 203 | continue; |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 204 | Check(SI->getContents(SectionData)); |
Rafael Espindola | 8029127 | 2014-10-08 15:28:58 +0000 | [diff] [blame^] | 205 | bool IsCode = SI->isText(); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 206 | unsigned SectionID = |
| 207 | findOrEmitSection(*Obj, *SI, IsCode, LocalSections); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 208 | LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset); |
Rafael Espindola | 6956b1a | 2014-04-21 13:45:32 +0000 | [diff] [blame] | 209 | DEBUG(dbgs() << "\tOffset: " << format("%p", (uintptr_t)SectOffset) |
| 210 | << " flags: " << Flags << " SID: " << SectionID); |
Amara Emerson | c958bf3 | 2012-11-16 11:11:59 +0000 | [diff] [blame] | 211 | GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 212 | } |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 213 | } |
| 214 | DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n"); |
| 215 | } |
| 216 | |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 217 | // Allocate common symbols |
| 218 | if (CommonSize != 0) |
Lang Hames | 36072da | 2014-05-12 21:39:59 +0000 | [diff] [blame] | 219 | emitCommonSymbols(*Obj, CommonSymbols, CommonSize, GlobalSymbolTable); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 220 | |
Eli Bendersky | 0e2ac5b | 2012-04-29 12:40:47 +0000 | [diff] [blame] | 221 | // Parse and process relocations |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 222 | DEBUG(dbgs() << "Parse relocations:\n"); |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 223 | for (section_iterator SI = Obj->begin_sections(), SE = Obj->end_sections(); |
| 224 | SI != SE; ++SI) { |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 225 | unsigned SectionID = 0; |
| 226 | StubMap Stubs; |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 227 | section_iterator RelocatedSection = SI->getRelocatedSection(); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 228 | |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 229 | relocation_iterator I = SI->relocation_begin(); |
| 230 | relocation_iterator E = SI->relocation_end(); |
Rafael Espindola | 77314aa | 2014-04-03 22:42:22 +0000 | [diff] [blame] | 231 | |
| 232 | if (I == E && !ProcessAllSections) |
Juergen Ributzka | 046709f | 2014-03-21 07:26:41 +0000 | [diff] [blame] | 233 | continue; |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 234 | |
Rafael Espindola | 8029127 | 2014-10-08 15:28:58 +0000 | [diff] [blame^] | 235 | bool IsCode = RelocatedSection->isText(); |
Juergen Ributzka | 046709f | 2014-03-21 07:26:41 +0000 | [diff] [blame] | 236 | SectionID = |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 237 | findOrEmitSection(*Obj, *RelocatedSection, IsCode, LocalSections); |
Juergen Ributzka | 046709f | 2014-03-21 07:26:41 +0000 | [diff] [blame] | 238 | DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n"); |
| 239 | |
Rafael Espindola | 77314aa | 2014-04-03 22:42:22 +0000 | [diff] [blame] | 240 | for (; I != E;) |
Juergen Ributzka | 046709f | 2014-03-21 07:26:41 +0000 | [diff] [blame] | 241 | I = processRelocationRef(SectionID, I, *Obj, LocalSections, LocalSymbols, |
| 242 | Stubs); |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 243 | |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 244 | // If there is an attached checker, notify it about the stubs for this |
| 245 | // section so that they can be verified. |
| 246 | if (Checker) |
| 247 | Checker->registerStubMap(Obj->getImageName(), SectionID, Stubs); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 248 | } |
Preston Gurd | cc31af9 | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 249 | |
Andrew Kaylor | 4612fed | 2013-08-19 23:27:43 +0000 | [diff] [blame] | 250 | // Give the subclasses a chance to tie-up any loose ends. |
Lang Hames | 36072da | 2014-05-12 21:39:59 +0000 | [diff] [blame] | 251 | finalizeLoad(*Obj, LocalSections); |
Andrew Kaylor | 4612fed | 2013-08-19 23:27:43 +0000 | [diff] [blame] | 252 | |
David Blaikie | fba8b20 | 2014-09-03 21:34:34 +0000 | [diff] [blame] | 253 | return Obj; |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | // A helper method for computeTotalAllocSize. |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 257 | // Computes the memory size required to allocate sections with the given sizes, |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 258 | // assuming that all sections are allocated with the given alignment |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 259 | static uint64_t |
| 260 | computeAllocationSizeForSections(std::vector<uint64_t> &SectionSizes, |
| 261 | uint64_t Alignment) { |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 262 | uint64_t TotalSize = 0; |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 263 | for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) { |
| 264 | uint64_t AlignedSize = |
| 265 | (SectionSizes[Idx] + Alignment - 1) / Alignment * Alignment; |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 266 | TotalSize += AlignedSize; |
| 267 | } |
| 268 | return TotalSize; |
| 269 | } |
| 270 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 271 | // Compute an upper bound of the memory size that is required to load all |
| 272 | // sections |
| 273 | void RuntimeDyldImpl::computeTotalAllocSize(ObjectImage &Obj, |
| 274 | uint64_t &CodeSize, |
| 275 | uint64_t &DataSizeRO, |
| 276 | uint64_t &DataSizeRW) { |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 277 | // Compute the size of all sections required for execution |
| 278 | std::vector<uint64_t> CodeSectionSizes; |
| 279 | std::vector<uint64_t> ROSectionSizes; |
| 280 | std::vector<uint64_t> RWSectionSizes; |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 281 | uint64_t MaxAlignment = sizeof(void *); |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 282 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 283 | // Collect sizes of all sections to be loaded; |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 284 | // also determine the max alignment of all sections |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 285 | for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections(); |
| 286 | SI != SE; ++SI) { |
| 287 | const SectionRef &Section = *SI; |
| 288 | |
Rafael Espindola | 8029127 | 2014-10-08 15:28:58 +0000 | [diff] [blame^] | 289 | bool IsRequired = Section.isRequiredForExecution(); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 290 | |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 291 | // Consider only the sections that are required to be loaded for execution |
| 292 | if (IsRequired) { |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 293 | StringRef Name; |
Rafael Espindola | 8029127 | 2014-10-08 15:28:58 +0000 | [diff] [blame^] | 294 | uint64_t DataSize = Section.getSize(); |
| 295 | uint64_t Alignment64 = Section.getAlignment(); |
| 296 | bool IsCode = Section.isText(); |
| 297 | bool IsReadOnly = Section.isReadOnlyData(); |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 298 | Check(Section.getName(Name)); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 299 | unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL; |
| 300 | |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 301 | uint64_t StubBufSize = computeSectionStubBufSize(Obj, Section); |
| 302 | uint64_t SectionSize = DataSize + StubBufSize; |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 303 | |
| 304 | // The .eh_frame section (at least on Linux) needs an extra four bytes |
| 305 | // padded |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 306 | // with zeroes added at the end. For MachO objects, this section has a |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 307 | // slightly different name, so this won't have any effect for MachO |
| 308 | // objects. |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 309 | if (Name == ".eh_frame") |
| 310 | SectionSize += 4; |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 311 | |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 312 | if (SectionSize > 0) { |
| 313 | // save the total size of the section |
| 314 | if (IsCode) { |
| 315 | CodeSectionSizes.push_back(SectionSize); |
| 316 | } else if (IsReadOnly) { |
| 317 | ROSectionSizes.push_back(SectionSize); |
| 318 | } else { |
| 319 | RWSectionSizes.push_back(SectionSize); |
| 320 | } |
| 321 | // update the max alignment |
| 322 | if (Alignment > MaxAlignment) { |
| 323 | MaxAlignment = Alignment; |
| 324 | } |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 325 | } |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 326 | } |
| 327 | } |
| 328 | |
| 329 | // Compute the size of all common symbols |
| 330 | uint64_t CommonSize = 0; |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 331 | for (symbol_iterator I = Obj.begin_symbols(), E = Obj.end_symbols(); I != E; |
| 332 | ++I) { |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 333 | uint32_t Flags = I->getFlags(); |
| 334 | if (Flags & SymbolRef::SF_Common) { |
| 335 | // Add the common symbols to a list. We'll allocate them all below. |
| 336 | uint64_t Size = 0; |
| 337 | Check(I->getSize(Size)); |
| 338 | CommonSize += Size; |
| 339 | } |
| 340 | } |
| 341 | if (CommonSize != 0) { |
| 342 | RWSectionSizes.push_back(CommonSize); |
| 343 | } |
| 344 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 345 | // Compute the required allocation space for each different type of sections |
| 346 | // (code, read-only data, read-write data) assuming that all sections are |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 347 | // allocated with the max alignment. Note that we cannot compute with the |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 348 | // individual alignments of the sections, because then the required size |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 349 | // depends on the order, in which the sections are allocated. |
| 350 | CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment); |
| 351 | DataSizeRO = computeAllocationSizeForSections(ROSectionSizes, MaxAlignment); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 352 | DataSizeRW = computeAllocationSizeForSections(RWSectionSizes, MaxAlignment); |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | // compute stub buffer size for the given section |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 356 | unsigned RuntimeDyldImpl::computeSectionStubBufSize(ObjectImage &Obj, |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 357 | const SectionRef &Section) { |
| 358 | unsigned StubSize = getMaxStubSize(); |
| 359 | if (StubSize == 0) { |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 360 | return 0; |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 361 | } |
| 362 | // FIXME: this is an inefficient way to handle this. We should computed the |
| 363 | // necessary section allocation size in loadObject by walking all the sections |
| 364 | // once. |
| 365 | unsigned StubBufSize = 0; |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 366 | for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections(); |
| 367 | SI != SE; ++SI) { |
| 368 | section_iterator RelSecI = SI->getRelocatedSection(); |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 369 | if (!(RelSecI == Section)) |
| 370 | continue; |
| 371 | |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 372 | for (const RelocationRef &Reloc : SI->relocations()) { |
Alexey Samsonov | aa4d295 | 2014-03-14 14:22:49 +0000 | [diff] [blame] | 373 | (void)Reloc; |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 374 | StubBufSize += StubSize; |
| 375 | } |
| 376 | } |
Alexey Samsonov | aa4d295 | 2014-03-14 14:22:49 +0000 | [diff] [blame] | 377 | |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 378 | // Get section data size and alignment |
Rafael Espindola | 8029127 | 2014-10-08 15:28:58 +0000 | [diff] [blame^] | 379 | uint64_t DataSize = Section.getSize(); |
| 380 | uint64_t Alignment64 = Section.getAlignment(); |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 381 | |
| 382 | // Add stubbuf size alignment |
| 383 | unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL; |
| 384 | unsigned StubAlignment = getStubAlignment(); |
| 385 | unsigned EndAlignment = (DataSize | Alignment) & -(DataSize | Alignment); |
| 386 | if (StubAlignment > EndAlignment) |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 387 | StubBufSize += StubAlignment - EndAlignment; |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 388 | return StubBufSize; |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Lang Hames | e1287c0 | 2014-08-29 23:17:47 +0000 | [diff] [blame] | 391 | uint64_t RuntimeDyldImpl::readBytesUnaligned(uint8_t *Src, |
| 392 | unsigned Size) const { |
| 393 | uint64_t Result = 0; |
Lang Hames | 69abd72 | 2014-09-07 02:05:26 +0000 | [diff] [blame] | 394 | if (IsTargetLittleEndian) { |
| 395 | Src += Size - 1; |
| 396 | while (Size--) |
| 397 | Result = (Result << 8) | *Src--; |
| 398 | } else |
| 399 | while (Size--) |
| 400 | Result = (Result << 8) | *Src++; |
Lang Hames | e1287c0 | 2014-08-29 23:17:47 +0000 | [diff] [blame] | 401 | |
| 402 | return Result; |
| 403 | } |
| 404 | |
| 405 | void RuntimeDyldImpl::writeBytesUnaligned(uint64_t Value, uint8_t *Dst, |
| 406 | unsigned Size) const { |
Lang Hames | 69abd72 | 2014-09-07 02:05:26 +0000 | [diff] [blame] | 407 | if (IsTargetLittleEndian) { |
| 408 | while (Size--) { |
| 409 | *Dst++ = Value & 0xFF; |
| 410 | Value >>= 8; |
| 411 | } |
Lang Hames | e1287c0 | 2014-08-29 23:17:47 +0000 | [diff] [blame] | 412 | } else { |
Lang Hames | 69abd72 | 2014-09-07 02:05:26 +0000 | [diff] [blame] | 413 | Dst += Size - 1; |
| 414 | while (Size--) { |
| 415 | *Dst-- = Value & 0xFF; |
| 416 | Value >>= 8; |
| 417 | } |
Lang Hames | e1287c0 | 2014-08-29 23:17:47 +0000 | [diff] [blame] | 418 | } |
| 419 | } |
| 420 | |
Eli Bendersky | 667b879 | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 421 | void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj, |
| 422 | const CommonSymbolMap &CommonSymbols, |
| 423 | uint64_t TotalSize, |
| 424 | SymbolTableMap &SymbolTable) { |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 425 | // Allocate memory for the section |
| 426 | unsigned SectionID = Sections.size(); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 427 | uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *), |
| 428 | SectionID, StringRef(), false); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 429 | if (!Addr) |
| 430 | report_fatal_error("Unable to allocate memory for common symbols!"); |
| 431 | uint64_t Offset = 0; |
Lang Hames | 86b08f0 | 2014-08-25 18:37:38 +0000 | [diff] [blame] | 432 | Sections.push_back(SectionEntry("<common symbols>", Addr, TotalSize, 0)); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 433 | memset(Addr, 0, TotalSize); |
| 434 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 435 | DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID << " new addr: " |
| 436 | << format("%p", Addr) << " DataSize: " << TotalSize << "\n"); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 437 | |
| 438 | // Assign the address of each symbol |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 439 | for (CommonSymbolMap::const_iterator it = CommonSymbols.begin(), |
| 440 | itEnd = CommonSymbols.end(); it != itEnd; ++it) { |
| 441 | uint64_t Size = it->second.first; |
| 442 | uint64_t Align = it->second.second; |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 443 | StringRef Name; |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 444 | it->first.getName(Name); |
Tim Northover | 94bc73d | 2012-10-29 10:47:04 +0000 | [diff] [blame] | 445 | if (Align) { |
| 446 | // This symbol has an alignment requirement. |
| 447 | uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align); |
| 448 | Addr += AlignOffset; |
| 449 | Offset += AlignOffset; |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 450 | DEBUG(dbgs() << "Allocating common symbol " << Name << " address " |
| 451 | << format("%p\n", Addr)); |
Tim Northover | 94bc73d | 2012-10-29 10:47:04 +0000 | [diff] [blame] | 452 | } |
Jim Grosbach | 36f025e | 2014-04-21 19:23:59 +0000 | [diff] [blame] | 453 | Obj.updateSymbolAddress(it->first, (uint64_t)Addr); |
Eli Bendersky | 667b879 | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 454 | SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 455 | Offset += Size; |
| 456 | Addr += Size; |
| 457 | } |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 458 | } |
| 459 | |
Preston Gurd | cc31af9 | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 460 | unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj, |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 461 | const SectionRef &Section, bool IsCode) { |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 462 | |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 463 | StringRef data; |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 464 | Check(Section.getContents(data)); |
Rafael Espindola | 8029127 | 2014-10-08 15:28:58 +0000 | [diff] [blame^] | 465 | uint64_t Alignment64 = Section.getAlignment(); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 466 | |
| 467 | unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL; |
Andrew Kaylor | 877b931 | 2013-10-16 00:32:24 +0000 | [diff] [blame] | 468 | unsigned PaddingSize = 0; |
Lang Hames | 937ec54 | 2014-02-12 21:30:07 +0000 | [diff] [blame] | 469 | unsigned StubBufSize = 0; |
Adhemerval Zanella | 5fc11b3 | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 470 | StringRef Name; |
Rafael Espindola | 8029127 | 2014-10-08 15:28:58 +0000 | [diff] [blame^] | 471 | bool IsRequired = Section.isRequiredForExecution(); |
| 472 | bool IsVirtual = Section.isVirtual(); |
| 473 | bool IsZeroInit = Section.isZeroInit(); |
| 474 | bool IsReadOnly = Section.isReadOnlyData(); |
| 475 | uint64_t DataSize = Section.getSize(); |
Adhemerval Zanella | 5fc11b3 | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 476 | Check(Section.getName(Name)); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 477 | |
| 478 | StubBufSize = computeSectionStubBufSize(Obj, Section); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 479 | |
Andrew Kaylor | 877b931 | 2013-10-16 00:32:24 +0000 | [diff] [blame] | 480 | // The .eh_frame section (at least on Linux) needs an extra four bytes padded |
| 481 | // with zeroes added at the end. For MachO objects, this section has a |
| 482 | // slightly different name, so this won't have any effect for MachO objects. |
| 483 | if (Name == ".eh_frame") |
| 484 | PaddingSize = 4; |
| 485 | |
Lang Hames | d410017 | 2014-02-11 05:28:24 +0000 | [diff] [blame] | 486 | uintptr_t Allocate; |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 487 | unsigned SectionID = Sections.size(); |
| 488 | uint8_t *Addr; |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 489 | const char *pData = nullptr; |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 490 | |
| 491 | // Some sections, such as debug info, don't need to be loaded for execution. |
| 492 | // Leave those where they are. |
| 493 | if (IsRequired) { |
Andrew Kaylor | 877b931 | 2013-10-16 00:32:24 +0000 | [diff] [blame] | 494 | Allocate = DataSize + PaddingSize + StubBufSize; |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 495 | Addr = IsCode ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID, |
| 496 | Name) |
| 497 | : MemMgr->allocateDataSection(Allocate, Alignment, SectionID, |
| 498 | Name, IsReadOnly); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 499 | if (!Addr) |
| 500 | report_fatal_error("Unable to allocate section memory!"); |
| 501 | |
| 502 | // Virtual sections have no data in the object image, so leave pData = 0 |
| 503 | if (!IsVirtual) |
| 504 | pData = data.data(); |
| 505 | |
| 506 | // Zero-initialize or copy the data from the image |
| 507 | if (IsZeroInit || IsVirtual) |
| 508 | memset(Addr, 0, DataSize); |
| 509 | else |
| 510 | memcpy(Addr, pData, DataSize); |
| 511 | |
Andrew Kaylor | 877b931 | 2013-10-16 00:32:24 +0000 | [diff] [blame] | 512 | // Fill in any extra bytes we allocated for padding |
| 513 | if (PaddingSize != 0) { |
| 514 | memset(Addr + DataSize, 0, PaddingSize); |
| 515 | // Update the DataSize variable so that the stub offset is set correctly. |
| 516 | DataSize += PaddingSize; |
| 517 | } |
| 518 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 519 | DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 520 | << " obj addr: " << format("%p", pData) |
| 521 | << " new addr: " << format("%p", Addr) |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 522 | << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize |
| 523 | << " Allocate: " << Allocate << "\n"); |
Preston Gurd | cc31af9 | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 524 | Obj.updateSectionAddress(Section, (uint64_t)Addr); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 525 | } else { |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 526 | // Even if we didn't load the section, we need to record an entry for it |
Eli Bendersky | 0e2ac5b | 2012-04-29 12:40:47 +0000 | [diff] [blame] | 527 | // to handle later processing (and by 'handle' I mean don't do anything |
| 528 | // with these sections). |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 529 | Allocate = 0; |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 530 | Addr = nullptr; |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 531 | DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name |
| 532 | << " obj addr: " << format("%p", data.data()) << " new addr: 0" |
| 533 | << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize |
| 534 | << " Allocate: " << Allocate << "\n"); |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 535 | } |
| 536 | |
Rafael Espindola | fa5942b | 2013-05-05 20:43:10 +0000 | [diff] [blame] | 537 | Sections.push_back(SectionEntry(Name, Addr, DataSize, (uintptr_t)pData)); |
Lang Hames | 587ee6a | 2014-09-03 05:01:46 +0000 | [diff] [blame] | 538 | |
| 539 | if (Checker) |
| 540 | Checker->registerSection(Obj.getImageName(), SectionID); |
| 541 | |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 542 | return SectionID; |
| 543 | } |
| 544 | |
Preston Gurd | cc31af9 | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 545 | unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj, |
| 546 | const SectionRef &Section, |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 547 | bool IsCode, |
| 548 | ObjSectionToIDMap &LocalSections) { |
| 549 | |
| 550 | unsigned SectionID = 0; |
| 551 | ObjSectionToIDMap::iterator i = LocalSections.find(Section); |
| 552 | if (i != LocalSections.end()) |
| 553 | SectionID = i->second; |
| 554 | else { |
Preston Gurd | cc31af9 | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 555 | SectionID = emitSection(Obj, Section, IsCode); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 556 | LocalSections[Section] = SectionID; |
| 557 | } |
| 558 | return SectionID; |
| 559 | } |
| 560 | |
Eli Bendersky | 667b879 | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 561 | void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE, |
| 562 | unsigned SectionID) { |
| 563 | Relocations[SectionID].push_back(RE); |
| 564 | } |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 565 | |
Eli Bendersky | 667b879 | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 566 | void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE, |
| 567 | StringRef SymbolName) { |
| 568 | // Relocation by symbol. If the symbol is found in the global symbol table, |
| 569 | // create an appropriate section relocation. Otherwise, add it to |
| 570 | // ExternalSymbolRelocations. |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 571 | SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(SymbolName); |
Eli Bendersky | 667b879 | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 572 | if (Loc == GlobalSymbolTable.end()) { |
| 573 | ExternalSymbolRelocations[SymbolName].push_back(RE); |
Eli Bendersky | b92e1cf | 2012-04-30 12:15:58 +0000 | [diff] [blame] | 574 | } else { |
Eli Bendersky | 667b879 | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 575 | // Copy the RE since we want to modify its addend. |
| 576 | RelocationEntry RECopy = RE; |
| 577 | RECopy.Addend += Loc->second.second; |
| 578 | Relocations[Loc->second.first].push_back(RECopy); |
Eli Bendersky | b92e1cf | 2012-04-30 12:15:58 +0000 | [diff] [blame] | 579 | } |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 580 | } |
| 581 | |
Ulrich Weigand | 752b5c9 | 2014-07-20 23:53:14 +0000 | [diff] [blame] | 582 | uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr, |
| 583 | unsigned AbiVariant) { |
Tim Northover | e19bed7 | 2014-07-23 12:32:47 +0000 | [diff] [blame] | 584 | if (Arch == Triple::aarch64 || Arch == Triple::aarch64_be) { |
Tim Northover | 37cde97 | 2013-05-04 20:14:09 +0000 | [diff] [blame] | 585 | // This stub has to be able to access the full address space, |
| 586 | // since symbol lookup won't necessarily find a handy, in-range, |
| 587 | // PLT stub for functions which could be anywhere. |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 588 | uint32_t *StubAddr = (uint32_t *)Addr; |
Tim Northover | 37cde97 | 2013-05-04 20:14:09 +0000 | [diff] [blame] | 589 | |
| 590 | // Stub can use ip0 (== x16) to calculate address |
| 591 | *StubAddr = 0xd2e00010; // movz ip0, #:abs_g3:<addr> |
| 592 | StubAddr++; |
| 593 | *StubAddr = 0xf2c00010; // movk ip0, #:abs_g2_nc:<addr> |
| 594 | StubAddr++; |
| 595 | *StubAddr = 0xf2a00010; // movk ip0, #:abs_g1_nc:<addr> |
| 596 | StubAddr++; |
| 597 | *StubAddr = 0xf2800010; // movk ip0, #:abs_g0_nc:<addr> |
| 598 | StubAddr++; |
| 599 | *StubAddr = 0xd61f0200; // br ip0 |
| 600 | |
| 601 | return Addr; |
Christian Pirker | 2a11160 | 2014-03-28 14:35:30 +0000 | [diff] [blame] | 602 | } else if (Arch == Triple::arm || Arch == Triple::armeb) { |
Akira Hatanaka | 111174b | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 603 | // TODO: There is only ARM far stub now. We should add the Thumb stub, |
| 604 | // and stubs for branches Thumb - ARM and ARM - Thumb. |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 605 | uint32_t *StubAddr = (uint32_t *)Addr; |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 606 | *StubAddr = 0xe51ff004; // ldr pc,<label> |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 607 | return (uint8_t *)++StubAddr; |
NAKAMURA Takumi | f97efd9 | 2012-12-04 00:08:14 +0000 | [diff] [blame] | 608 | } else if (Arch == Triple::mipsel || Arch == Triple::mips) { |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 609 | uint32_t *StubAddr = (uint32_t *)Addr; |
Akira Hatanaka | 111174b | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 610 | // 0: 3c190000 lui t9,%hi(addr). |
| 611 | // 4: 27390000 addiu t9,t9,%lo(addr). |
| 612 | // 8: 03200008 jr t9. |
| 613 | // c: 00000000 nop. |
| 614 | const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000; |
| 615 | const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0; |
| 616 | |
| 617 | *StubAddr = LuiT9Instr; |
| 618 | StubAddr++; |
| 619 | *StubAddr = AdduiT9Instr; |
| 620 | StubAddr++; |
| 621 | *StubAddr = JrT9Instr; |
| 622 | StubAddr++; |
| 623 | *StubAddr = NopInstr; |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 624 | return Addr; |
Bill Schmidt | 0a9170d | 2013-07-26 01:35:43 +0000 | [diff] [blame] | 625 | } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) { |
Ulrich Weigand | 752b5c9 | 2014-07-20 23:53:14 +0000 | [diff] [blame] | 626 | // Depending on which version of the ELF ABI is in use, we need to |
| 627 | // generate one of two variants of the stub. They both start with |
| 628 | // the same sequence to load the target address into r12. |
Adhemerval Zanella | 5fc11b3 | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 629 | writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr) |
| 630 | writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr) |
| 631 | writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32 |
| 632 | writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr) |
| 633 | writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr) |
Ulrich Weigand | 752b5c9 | 2014-07-20 23:53:14 +0000 | [diff] [blame] | 634 | if (AbiVariant == 2) { |
| 635 | // PowerPC64 stub ELFv2 ABI: The address points to the function itself. |
| 636 | // The address is already in r12 as required by the ABI. Branch to it. |
| 637 | writeInt32BE(Addr+20, 0xF8410018); // std r2, 24(r1) |
| 638 | writeInt32BE(Addr+24, 0x7D8903A6); // mtctr r12 |
| 639 | writeInt32BE(Addr+28, 0x4E800420); // bctr |
| 640 | } else { |
| 641 | // PowerPC64 stub ELFv1 ABI: The address points to a function descriptor. |
| 642 | // Load the function address on r11 and sets it to control register. Also |
| 643 | // loads the function TOC in r2 and environment pointer to r11. |
| 644 | writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1) |
| 645 | writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12) |
| 646 | writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12) |
| 647 | writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11 |
| 648 | writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2) |
| 649 | writeInt32BE(Addr+40, 0x4E800420); // bctr |
| 650 | } |
Adhemerval Zanella | 5fc11b3 | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 651 | return Addr; |
Richard Sandiford | ca04408 | 2013-05-03 14:15:35 +0000 | [diff] [blame] | 652 | } else if (Arch == Triple::systemz) { |
| 653 | writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8 |
| 654 | writeInt16BE(Addr+2, 0x0000); |
| 655 | writeInt16BE(Addr+4, 0x0004); |
| 656 | writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1 |
| 657 | // 8-byte address stored at Addr + 8 |
| 658 | return Addr; |
Andrew Kaylor | 4612fed | 2013-08-19 23:27:43 +0000 | [diff] [blame] | 659 | } else if (Arch == Triple::x86_64) { |
| 660 | *Addr = 0xFF; // jmp |
| 661 | *(Addr+1) = 0x25; // rip |
| 662 | // 32-bit PC-relative address of the GOT entry will be stored at Addr+2 |
Lang Hames | 36072da | 2014-05-12 21:39:59 +0000 | [diff] [blame] | 663 | } else if (Arch == Triple::x86) { |
| 664 | *Addr = 0xE9; // 32-bit pc-relative jump. |
Akira Hatanaka | 111174b | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 665 | } |
| 666 | return Addr; |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | // Assign an address to a symbol name and resolve all the relocations |
| 670 | // associated with it. |
| 671 | void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID, |
| 672 | uint64_t Addr) { |
| 673 | // The address to use for relocation resolution is not |
| 674 | // the address of the local section buffer. We must be doing |
Andrew Kaylor | a714efc | 2012-11-05 20:57:16 +0000 | [diff] [blame] | 675 | // a remote execution environment of some sort. Relocations can't |
| 676 | // be applied until all the sections have been moved. The client must |
| 677 | // trigger this with a call to MCJIT::finalize() or |
| 678 | // RuntimeDyld::resolveRelocations(). |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 679 | // |
| 680 | // Addr is a uint64_t because we can't assume the pointer width |
| 681 | // of the target is the same as that of the host. Just use a generic |
| 682 | // "big enough" type. |
Lang Hames | 778ef5b | 2014-09-04 04:19:54 +0000 | [diff] [blame] | 683 | DEBUG(dbgs() << "Reassigning address for section " |
| 684 | << SectionID << " (" << Sections[SectionID].Name << "): " |
Lang Hames | da01602 | 2014-09-23 19:20:57 +0000 | [diff] [blame] | 685 | << format("0x%016" PRIx64, Sections[SectionID].LoadAddress) << " -> " |
| 686 | << format("0x%016" PRIx64, Addr) << "\n"); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 687 | Sections[SectionID].LoadAddress = Addr; |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 688 | } |
| 689 | |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 690 | void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs, |
| 691 | uint64_t Value) { |
| 692 | for (unsigned i = 0, e = Relocs.size(); i != e; ++i) { |
Rafael Espindola | f1f1c62 | 2013-04-29 17:24:34 +0000 | [diff] [blame] | 693 | const RelocationEntry &RE = Relocs[i]; |
| 694 | // Ignore relocations for sections that were not loaded |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 695 | if (Sections[RE.SectionID].Address == nullptr) |
Rafael Espindola | f1f1c62 | 2013-04-29 17:24:34 +0000 | [diff] [blame] | 696 | continue; |
| 697 | resolveRelocation(RE, Value); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 698 | } |
| 699 | } |
| 700 | |
Eli Bendersky | b92e1cf | 2012-04-30 12:15:58 +0000 | [diff] [blame] | 701 | void RuntimeDyldImpl::resolveExternalSymbols() { |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 702 | while (!ExternalSymbolRelocations.empty()) { |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 703 | StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin(); |
| 704 | |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 705 | StringRef Name = i->first(); |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 706 | if (Name.size() == 0) { |
| 707 | // This is an absolute symbol, use an address of zero. |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 708 | DEBUG(dbgs() << "Resolving absolute relocations." |
| 709 | << "\n"); |
Andrew Kaylor | cfb4a99 | 2013-11-11 19:55:10 +0000 | [diff] [blame] | 710 | RelocationList &Relocs = i->second; |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 711 | resolveRelocationList(Relocs, 0); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 712 | } else { |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 713 | uint64_t Addr = 0; |
| 714 | SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name); |
| 715 | if (Loc == GlobalSymbolTable.end()) { |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 716 | // This is an external symbol, try to get its address from |
| 717 | // MemoryManager. |
| 718 | Addr = MemMgr->getSymbolAddress(Name.data()); |
| 719 | // The call to getSymbolAddress may have caused additional modules to |
| 720 | // be loaded, which may have added new entries to the |
| 721 | // ExternalSymbolRelocations map. Consquently, we need to update our |
| 722 | // iterator. This is also why retrieval of the relocation list |
| 723 | // associated with this symbol is deferred until below this point. |
| 724 | // New entries may have been added to the relocation list. |
| 725 | i = ExternalSymbolRelocations.find(Name); |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 726 | } else { |
| 727 | // We found the symbol in our global table. It was probably in a |
| 728 | // Module that we loaded previously. |
Yaron Keren | c980288 | 2013-10-19 09:04:26 +0000 | [diff] [blame] | 729 | SymbolLoc SymLoc = Loc->second; |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 730 | Addr = getSectionLoadAddress(SymLoc.first) + SymLoc.second; |
| 731 | } |
| 732 | |
| 733 | // FIXME: Implement error handling that doesn't kill the host program! |
| 734 | if (!Addr) |
| 735 | report_fatal_error("Program used external function '" + Name + |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 736 | "' which could not be resolved!"); |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 737 | |
| 738 | updateGOTEntries(Name, Addr); |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 739 | DEBUG(dbgs() << "Resolving relocations Name: " << Name << "\t" |
| 740 | << format("0x%lx", Addr) << "\n"); |
Andrew Kaylor | cfb4a99 | 2013-11-11 19:55:10 +0000 | [diff] [blame] | 741 | // This list may have been updated when we called getSymbolAddress, so |
| 742 | // don't change this code to get the list earlier. |
| 743 | RelocationList &Relocs = i->second; |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 744 | resolveRelocationList(Relocs, Addr); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 745 | } |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 746 | |
Andrew Kaylor | cfb4a99 | 2013-11-11 19:55:10 +0000 | [diff] [blame] | 747 | ExternalSymbolRelocations.erase(i); |
Danil Malyshev | 70d22cc | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 748 | } |
| 749 | } |
| 750 | |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 751 | //===----------------------------------------------------------------------===// |
| 752 | // RuntimeDyld class implementation |
Danil Malyshev | 72510f2 | 2011-07-13 07:57:58 +0000 | [diff] [blame] | 753 | RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) { |
Andrew Kaylor | a342cb9 | 2012-11-15 23:50:01 +0000 | [diff] [blame] | 754 | // FIXME: There's a potential issue lurking here if a single instance of |
| 755 | // RuntimeDyld is used to load multiple objects. The current implementation |
| 756 | // associates a single memory manager with a RuntimeDyld instance. Even |
| 757 | // though the public class spawns a new 'impl' instance for each load, |
| 758 | // they share a single memory manager. This can become a problem when page |
| 759 | // permissions are applied. |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 760 | Dyld = nullptr; |
Danil Malyshev | 72510f2 | 2011-07-13 07:57:58 +0000 | [diff] [blame] | 761 | MM = mm; |
Lang Hames | 868d4b3 | 2014-03-20 21:06:46 +0000 | [diff] [blame] | 762 | ProcessAllSections = false; |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 763 | Checker = nullptr; |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 764 | } |
| 765 | |
David Blaikie | 847d2a0 | 2014-09-04 18:37:29 +0000 | [diff] [blame] | 766 | RuntimeDyld::~RuntimeDyld() {} |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 767 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 768 | static std::unique_ptr<RuntimeDyldELF> |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 769 | createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections, |
| 770 | RuntimeDyldCheckerImpl *Checker) { |
Lang Hames | 868d4b3 | 2014-03-20 21:06:46 +0000 | [diff] [blame] | 771 | std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM)); |
| 772 | Dyld->setProcessAllSections(ProcessAllSections); |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 773 | Dyld->setRuntimeDyldChecker(Checker); |
Lang Hames | 868d4b3 | 2014-03-20 21:06:46 +0000 | [diff] [blame] | 774 | return Dyld; |
| 775 | } |
| 776 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 777 | static std::unique_ptr<RuntimeDyldMachO> |
Lang Hames | a521688 | 2014-07-17 18:54:50 +0000 | [diff] [blame] | 778 | createRuntimeDyldMachO(Triple::ArchType Arch, RTDyldMemoryManager *MM, |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 779 | bool ProcessAllSections, RuntimeDyldCheckerImpl *Checker) { |
Lang Hames | a521688 | 2014-07-17 18:54:50 +0000 | [diff] [blame] | 780 | std::unique_ptr<RuntimeDyldMachO> Dyld(RuntimeDyldMachO::create(Arch, MM)); |
Lang Hames | 868d4b3 | 2014-03-20 21:06:46 +0000 | [diff] [blame] | 781 | Dyld->setProcessAllSections(ProcessAllSections); |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 782 | Dyld->setRuntimeDyldChecker(Checker); |
Lang Hames | 868d4b3 | 2014-03-20 21:06:46 +0000 | [diff] [blame] | 783 | return Dyld; |
| 784 | } |
| 785 | |
David Blaikie | ed9709d | 2014-09-03 19:48:09 +0000 | [diff] [blame] | 786 | std::unique_ptr<ObjectImage> |
| 787 | RuntimeDyld::loadObject(std::unique_ptr<ObjectFile> InputObject) { |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 788 | std::unique_ptr<ObjectImage> InputImage; |
Lang Hames | 173c69f | 2014-01-08 04:09:09 +0000 | [diff] [blame] | 789 | |
David Blaikie | 7a1e775 | 2014-04-29 21:52:46 +0000 | [diff] [blame] | 790 | ObjectFile &Obj = *InputObject; |
| 791 | |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 792 | if (InputObject->isELF()) { |
David Blaikie | 7a1e775 | 2014-04-29 21:52:46 +0000 | [diff] [blame] | 793 | InputImage.reset(RuntimeDyldELF::createObjectImageFromFile(std::move(InputObject))); |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 794 | if (!Dyld) |
David Blaikie | 847d2a0 | 2014-09-04 18:37:29 +0000 | [diff] [blame] | 795 | Dyld = createRuntimeDyldELF(MM, ProcessAllSections, Checker); |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 796 | } else if (InputObject->isMachO()) { |
David Blaikie | 7a1e775 | 2014-04-29 21:52:46 +0000 | [diff] [blame] | 797 | InputImage.reset(RuntimeDyldMachO::createObjectImageFromFile(std::move(InputObject))); |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 798 | if (!Dyld) |
Lang Hames | a521688 | 2014-07-17 18:54:50 +0000 | [diff] [blame] | 799 | Dyld = createRuntimeDyldMachO( |
David Blaikie | 847d2a0 | 2014-09-04 18:37:29 +0000 | [diff] [blame] | 800 | static_cast<Triple::ArchType>(InputImage->getArch()), MM, |
| 801 | ProcessAllSections, Checker); |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 802 | } else |
| 803 | report_fatal_error("Incompatible object format!"); |
| 804 | |
David Blaikie | 7a1e775 | 2014-04-29 21:52:46 +0000 | [diff] [blame] | 805 | if (!Dyld->isCompatibleFile(&Obj)) |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 806 | report_fatal_error("Incompatible object format!"); |
| 807 | |
David Blaikie | fba8b20 | 2014-09-03 21:34:34 +0000 | [diff] [blame] | 808 | return Dyld->loadObject(std::move(InputImage)); |
Lang Hames | 173c69f | 2014-01-08 04:09:09 +0000 | [diff] [blame] | 809 | } |
| 810 | |
David Blaikie | ed9709d | 2014-09-03 19:48:09 +0000 | [diff] [blame] | 811 | std::unique_ptr<ObjectImage> |
| 812 | RuntimeDyld::loadObject(std::unique_ptr<ObjectBuffer> InputBuffer) { |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 813 | std::unique_ptr<ObjectImage> InputImage; |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 814 | sys::fs::file_magic Type = sys::fs::identify_magic(InputBuffer->getBuffer()); |
David Blaikie | ed9709d | 2014-09-03 19:48:09 +0000 | [diff] [blame] | 815 | auto *InputBufferPtr = InputBuffer.get(); |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 816 | |
| 817 | switch (Type) { |
| 818 | case sys::fs::file_magic::elf_relocatable: |
| 819 | case sys::fs::file_magic::elf_executable: |
| 820 | case sys::fs::file_magic::elf_shared_object: |
| 821 | case sys::fs::file_magic::elf_core: |
David Blaikie | ed9709d | 2014-09-03 19:48:09 +0000 | [diff] [blame] | 822 | InputImage = RuntimeDyldELF::createObjectImage(std::move(InputBuffer)); |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 823 | if (!Dyld) |
David Blaikie | 847d2a0 | 2014-09-04 18:37:29 +0000 | [diff] [blame] | 824 | Dyld = createRuntimeDyldELF(MM, ProcessAllSections, Checker); |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 825 | break; |
| 826 | case sys::fs::file_magic::macho_object: |
| 827 | case sys::fs::file_magic::macho_executable: |
| 828 | case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib: |
| 829 | case sys::fs::file_magic::macho_core: |
| 830 | case sys::fs::file_magic::macho_preload_executable: |
| 831 | case sys::fs::file_magic::macho_dynamically_linked_shared_lib: |
| 832 | case sys::fs::file_magic::macho_dynamic_linker: |
| 833 | case sys::fs::file_magic::macho_bundle: |
| 834 | case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub: |
| 835 | case sys::fs::file_magic::macho_dsym_companion: |
David Blaikie | ed9709d | 2014-09-03 19:48:09 +0000 | [diff] [blame] | 836 | InputImage = RuntimeDyldMachO::createObjectImage(std::move(InputBuffer)); |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 837 | if (!Dyld) |
Lang Hames | a521688 | 2014-07-17 18:54:50 +0000 | [diff] [blame] | 838 | Dyld = createRuntimeDyldMachO( |
David Blaikie | 847d2a0 | 2014-09-04 18:37:29 +0000 | [diff] [blame] | 839 | static_cast<Triple::ArchType>(InputImage->getArch()), MM, |
| 840 | ProcessAllSections, Checker); |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 841 | break; |
| 842 | case sys::fs::file_magic::unknown: |
| 843 | case sys::fs::file_magic::bitcode: |
| 844 | case sys::fs::file_magic::archive: |
| 845 | case sys::fs::file_magic::coff_object: |
| 846 | case sys::fs::file_magic::coff_import_library: |
| 847 | case sys::fs::file_magic::pecoff_executable: |
| 848 | case sys::fs::file_magic::macho_universal_binary: |
| 849 | case sys::fs::file_magic::windows_resource: |
| 850 | report_fatal_error("Incompatible object format!"); |
Danil Malyshev | 72510f2 | 2011-07-13 07:57:58 +0000 | [diff] [blame] | 851 | } |
| 852 | |
David Blaikie | ed9709d | 2014-09-03 19:48:09 +0000 | [diff] [blame] | 853 | if (!Dyld->isCompatibleFormat(InputBufferPtr)) |
Lang Hames | 951b235 | 2014-03-08 18:45:12 +0000 | [diff] [blame] | 854 | report_fatal_error("Incompatible object format!"); |
| 855 | |
David Blaikie | fba8b20 | 2014-09-03 21:34:34 +0000 | [diff] [blame] | 856 | return Dyld->loadObject(std::move(InputImage)); |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 857 | } |
| 858 | |
Lang Hames | 3e930a3 | 2014-09-05 18:00:16 +0000 | [diff] [blame] | 859 | void *RuntimeDyld::getSymbolAddress(StringRef Name) const { |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 860 | if (!Dyld) |
Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 861 | return nullptr; |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 862 | return Dyld->getSymbolAddress(Name); |
| 863 | } |
| 864 | |
Lang Hames | 3e930a3 | 2014-09-05 18:00:16 +0000 | [diff] [blame] | 865 | uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) const { |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 866 | if (!Dyld) |
| 867 | return 0; |
Jim Grosbach | dc1123f | 2012-09-05 16:50:40 +0000 | [diff] [blame] | 868 | return Dyld->getSymbolLoadAddress(Name); |
| 869 | } |
| 870 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 871 | void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); } |
Jim Grosbach | 733d305 | 2011-04-12 21:20:41 +0000 | [diff] [blame] | 872 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 873 | void RuntimeDyld::reassignSectionAddress(unsigned SectionID, uint64_t Addr) { |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 874 | Dyld->reassignSectionAddress(SectionID, Addr); |
Jim Grosbach | 733d305 | 2011-04-12 21:20:41 +0000 | [diff] [blame] | 875 | } |
| 876 | |
Jim Grosbach | 6d61397 | 2012-09-13 21:50:06 +0000 | [diff] [blame] | 877 | void RuntimeDyld::mapSectionAddress(const void *LocalAddress, |
Jim Grosbach | 0ddb3a4 | 2012-01-16 23:50:55 +0000 | [diff] [blame] | 878 | uint64_t TargetAddress) { |
| 879 | Dyld->mapSectionAddress(LocalAddress, TargetAddress); |
| 880 | } |
| 881 | |
Juergen Ributzka | 6ff29a7 | 2014-03-26 18:19:27 +0000 | [diff] [blame] | 882 | bool RuntimeDyld::hasError() { return Dyld->hasError(); } |
| 883 | |
Juergen Ributzka | 7608dc0 | 2014-03-21 20:28:42 +0000 | [diff] [blame] | 884 | StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); } |
Jim Grosbach | 40411cc | 2011-03-22 18:19:42 +0000 | [diff] [blame] | 885 | |
Andrew Kaylor | 7bb1344 | 2013-10-11 21:25:48 +0000 | [diff] [blame] | 886 | void RuntimeDyld::registerEHFrames() { |
Andrew Kaylor | c442a76 | 2013-10-16 00:14:21 +0000 | [diff] [blame] | 887 | if (Dyld) |
| 888 | Dyld->registerEHFrames(); |
| 889 | } |
| 890 | |
| 891 | void RuntimeDyld::deregisterEHFrames() { |
| 892 | if (Dyld) |
| 893 | Dyld->deregisterEHFrames(); |
Rafael Espindola | fa5942b | 2013-05-05 20:43:10 +0000 | [diff] [blame] | 894 | } |
| 895 | |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 896 | } // end namespace llvm |