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