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