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