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