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