blob: 83c098ded0c8444ad8f56cdb2182a73f8c54b4fd [file] [log] [blame]
Jim Grosbach06594e12012-01-16 23:50:58 +00001//===-- RuntimeDyld.cpp - Run-time dynamic linker for MC-JIT ----*- C++ -*-===//
Jim Grosbachf016b0a2011-03-21 22:15:52 +00002//
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 Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/ExecutionEngine/RuntimeDyld.h"
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000015#include "JITRegistrar.h"
Andrew Kayloradc70562012-10-02 21:18:39 +000016#include "ObjectImageCommon.h"
Lang Hamesf7acddd2014-07-22 22:47:39 +000017#include "RuntimeDyldCheckerImpl.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000018#include "RuntimeDyldELF.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "RuntimeDyldImpl.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000020#include "RuntimeDyldMachO.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000021#include "llvm/Object/ELF.h"
Tim Northover94bc73d2012-10-29 10:47:04 +000022#include "llvm/Support/MathExtras.h"
Andrew Kaylor4fba0492013-10-21 17:42:06 +000023#include "llvm/Support/MutexGuard.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000024
Jim Grosbachf016b0a2011-03-21 22:15:52 +000025using namespace llvm;
26using namespace llvm::object;
27
Chandler Carruthf58e3762014-04-22 03:04:17 +000028#define DEBUG_TYPE "dyld"
29
Chandler Carruth086f7082011-04-05 23:54:31 +000030// Empty out-of-line virtual destructor as the key function.
Danil Malyshev72510f22011-07-13 07:57:58 +000031RuntimeDyldImpl::~RuntimeDyldImpl() {}
Chandler Carruth086f7082011-04-05 23:54:31 +000032
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000033// Pin the JITRegistrar's and ObjectImage*'s vtables to this file.
34void JITRegistrar::anchor() {}
35void ObjectImage::anchor() {}
36void ObjectImageCommon::anchor() {}
37
Jim Grosbachf016b0a2011-03-21 22:15:52 +000038namespace llvm {
Jim Grosbachf016b0a2011-03-21 22:15:52 +000039
Juergen Ributzka7608dc02014-03-21 20:28:42 +000040void RuntimeDyldImpl::registerEHFrames() {}
Rafael Espindolafa5942b2013-05-05 20:43:10 +000041
Juergen Ributzka7608dc02014-03-21 20:28:42 +000042void RuntimeDyldImpl::deregisterEHFrames() {}
Andrew Kaylorc442a762013-10-16 00:14:21 +000043
Benjamin Kramer01e17892014-08-26 14:22:05 +000044#ifndef NDEBUG
Lang Hamesf4b3b672014-08-25 22:19:14 +000045static void dumpSectionMemory(const SectionEntry &S, StringRef State) {
46 dbgs() << "----- Contents of section " << S.Name << " " << State << " -----";
47
Lang Hames24f0c242014-10-01 21:57:47 +000048 if (S.Address == nullptr) {
49 dbgs() << "\n <section not emitted>\n";
50 return;
51 }
52
Lang Hamesf4b3b672014-08-25 22:19:14 +000053 const unsigned ColsPerRow = 16;
Lang Hames86b08f02014-08-25 18:37:38 +000054
55 uint8_t *DataAddr = S.Address;
56 uint64_t LoadAddr = S.LoadAddress;
57
Lang Hames8d4d0262014-09-18 16:43:24 +000058 unsigned StartPadding = LoadAddr & (ColsPerRow - 1);
Lang Hames86b08f02014-08-25 18:37:38 +000059 unsigned BytesRemaining = S.Size;
60
61 if (StartPadding) {
Lang Hamesda016022014-09-23 19:20:57 +000062 dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr & ~(ColsPerRow - 1)) << ":";
Lang Hames86b08f02014-08-25 18:37:38 +000063 while (StartPadding--)
64 dbgs() << " ";
65 }
66
67 while (BytesRemaining > 0) {
Lang Hamesf4b3b672014-08-25 22:19:14 +000068 if ((LoadAddr & (ColsPerRow - 1)) == 0)
Lang Hamesc5cafbb2014-08-28 04:25:17 +000069 dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr) << ":";
Lang Hames86b08f02014-08-25 18:37:38 +000070
71 dbgs() << " " << format("%02x", *DataAddr);
72
73 ++DataAddr;
74 ++LoadAddr;
75 --BytesRemaining;
76 }
77
78 dbgs() << "\n";
79}
Benjamin Kramer01e17892014-08-26 14:22:05 +000080#endif
Lang Hames86b08f02014-08-25 18:37:38 +000081
Jim Grosbach733d3052011-04-12 21:20:41 +000082// Resolve the relocations for all symbols we currently know about.
83void RuntimeDyldImpl::resolveRelocations() {
Andrew Kaylor4fba0492013-10-21 17:42:06 +000084 MutexGuard locked(lock);
85
Preston Gurd2138ef62012-04-12 20:13:57 +000086 // First, resolve relocations associated with external symbols.
Eli Benderskyb92e1cf2012-04-30 12:15:58 +000087 resolveExternalSymbols();
Danil Malyshev70d22cc2012-03-30 16:45:19 +000088
Jim Grosbacheff0a402012-01-16 22:26:39 +000089 // Just iterate over the sections we have and resolve all the relocations
90 // in them. Gross overkill, but it gets the job done.
91 for (int i = 0, e = Sections.size(); i != e; ++i) {
Andrew Kaylor5f3a9982013-08-19 19:38:06 +000092 // The Section here (Sections[i]) refers to the section in which the
93 // symbol for the relocation is located. The SectionID in the relocation
94 // entry provides the section to which the relocation will be applied.
Andrew Kaylora714efc2012-11-05 20:57:16 +000095 uint64_t Addr = Sections[i].LoadAddress;
Jim Grosbach36f025e2014-04-21 19:23:59 +000096 DEBUG(dbgs() << "Resolving relocations Section #" << i << "\t"
Lang Hames86b08f02014-08-25 18:37:38 +000097 << format("0x%x", Addr) << "\n");
Lang Hamesf4b3b672014-08-25 22:19:14 +000098 DEBUG(dumpSectionMemory(Sections[i], "before relocations"));
Andrew Kaylora714efc2012-11-05 20:57:16 +000099 resolveRelocationList(Relocations[i], Addr);
Lang Hamesf4b3b672014-08-25 22:19:14 +0000100 DEBUG(dumpSectionMemory(Sections[i], "after relocations"));
Andrew Kaylorea395922013-10-01 01:47:35 +0000101 Relocations.erase(i);
Jim Grosbacheff0a402012-01-16 22:26:39 +0000102 }
Jim Grosbach733d3052011-04-12 21:20:41 +0000103}
104
Jim Grosbach6d613972012-09-13 21:50:06 +0000105void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000106 uint64_t TargetAddress) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000107 MutexGuard locked(lock);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000108 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
109 if (Sections[i].Address == LocalAddress) {
110 reassignSectionAddress(i, TargetAddress);
111 return;
112 }
113 }
114 llvm_unreachable("Attempting to remap address of unknown section!");
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000115}
116
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000117static std::error_code getOffset(const SymbolRef &Sym, uint64_t &Result) {
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000118 uint64_t Address;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000119 if (std::error_code EC = Sym.getAddress(Address))
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000120 return EC;
121
122 if (Address == UnknownAddressOrSize) {
123 Result = UnknownAddressOrSize;
124 return object_error::success;
125 }
126
127 const ObjectFile *Obj = Sym.getObject();
128 section_iterator SecI(Obj->section_begin());
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000129 if (std::error_code EC = Sym.getSection(SecI))
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000130 return EC;
131
Rafael Espindolafdf5f7a2014-10-08 15:12:20 +0000132 if (SecI == Obj->section_end()) {
133 Result = UnknownAddressOrSize;
134 return object_error::success;
135 }
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000136
Rafael Espindola80291272014-10-08 15:28:58 +0000137 uint64_t SectionAddress = SecI->getAddress();
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000138 Result = Address - SectionAddress;
139 return object_error::success;
140}
141
David Blaikiefba8b202014-09-03 21:34:34 +0000142std::unique_ptr<ObjectImage>
143RuntimeDyldImpl::loadObject(std::unique_ptr<ObjectImage> Obj) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000144 MutexGuard locked(lock);
145
Lang Hames937ec542014-02-12 21:30:07 +0000146 if (!Obj)
Craig Topper353eda42014-04-24 06:44:33 +0000147 return nullptr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000148
Andrew Kaylor33c5b1b2013-10-15 20:44:55 +0000149 // Save information about our target
Lang Hames937ec542014-02-12 21:30:07 +0000150 Arch = (Triple::ArchType)Obj->getArch();
151 IsTargetLittleEndian = Obj->getObjectFile()->isLittleEndian();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000152
Lang Hames937ec542014-02-12 21:30:07 +0000153 // Compute the memory size required to load all sections to be loaded
154 // and pass this information to the memory manager
155 if (MemMgr->needsToReserveAllocationSpace()) {
156 uint64_t CodeSize = 0, DataSizeRO = 0, DataSizeRW = 0;
157 computeTotalAllocSize(*Obj, CodeSize, DataSizeRO, DataSizeRW);
158 MemMgr->reserveAllocationSpace(CodeSize, DataSizeRO, DataSizeRW);
159 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000160
Eli Benderskyfc079082012-05-01 06:58:59 +0000161 // Symbols found in this object
162 StringMap<SymbolLoc> LocalSymbols;
163 // Used sections from the object file
164 ObjSectionToIDMap LocalSections;
165
Tim Northover94bc73d2012-10-29 10:47:04 +0000166 // Common symbols requiring allocation, with their sizes and alignments
Eli Benderskyfc079082012-05-01 06:58:59 +0000167 CommonSymbolMap CommonSymbols;
Tim Northover94bc73d2012-10-29 10:47:04 +0000168 // Maximum required total memory to allocate all common symbols
Eli Benderskyfc079082012-05-01 06:58:59 +0000169 uint64_t CommonSize = 0;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000170
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000171 // Parse symbols
172 DEBUG(dbgs() << "Parse symbols:\n");
Jim Grosbach36f025e2014-04-21 19:23:59 +0000173 for (symbol_iterator I = Obj->begin_symbols(), E = Obj->end_symbols(); I != E;
174 ++I) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000175 object::SymbolRef::Type SymType;
176 StringRef Name;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000177 Check(I->getType(SymType));
178 Check(I->getName(Name));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000179
Jim Grosbach36f025e2014-04-21 19:23:59 +0000180 uint32_t Flags = I->getFlags();
Preston Gurd2138ef62012-04-12 20:13:57 +0000181
Lang Hames937ec542014-02-12 21:30:07 +0000182 bool IsCommon = Flags & SymbolRef::SF_Common;
183 if (IsCommon) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000184 // Add the common symbols to a list. We'll allocate them all below.
Lang Hames36072da2014-05-12 21:39:59 +0000185 if (!GlobalSymbolTable.count(Name)) {
186 uint32_t Align;
187 Check(I->getAlignment(Align));
188 uint64_t Size = 0;
189 Check(I->getSize(Size));
190 CommonSize += Size + Align;
191 CommonSymbols[*I] = CommonSymbolInfo(Size, Align);
192 }
Preston Gurd2138ef62012-04-12 20:13:57 +0000193 } else {
194 if (SymType == object::SymbolRef::ST_Function ||
Akira Hatanaka111174b2012-08-17 21:28:04 +0000195 SymType == object::SymbolRef::ST_Data ||
196 SymType == object::SymbolRef::ST_Unknown) {
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000197 uint64_t SectOffset;
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000198 StringRef SectionData;
Lang Hames937ec542014-02-12 21:30:07 +0000199 section_iterator SI = Obj->end_sections();
Jim Grosbach36f025e2014-04-21 19:23:59 +0000200 Check(getOffset(*I, SectOffset));
201 Check(I->getSection(SI));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000202 if (SI == Obj->end_sections())
203 continue;
Lang Hames937ec542014-02-12 21:30:07 +0000204 Check(SI->getContents(SectionData));
Rafael Espindola80291272014-10-08 15:28:58 +0000205 bool IsCode = SI->isText();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000206 unsigned SectionID =
207 findOrEmitSection(*Obj, *SI, IsCode, LocalSections);
Preston Gurd2138ef62012-04-12 20:13:57 +0000208 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000209 DEBUG(dbgs() << "\tOffset: " << format("%p", (uintptr_t)SectOffset)
210 << " flags: " << Flags << " SID: " << SectionID);
Lang Hames2d0d0962014-10-21 00:24:02 +0000211 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000212 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000213 }
214 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
215 }
216
Preston Gurd2138ef62012-04-12 20:13:57 +0000217 // Allocate common symbols
218 if (CommonSize != 0)
Lang Hames36072da2014-05-12 21:39:59 +0000219 emitCommonSymbols(*Obj, CommonSymbols, CommonSize, GlobalSymbolTable);
Preston Gurd2138ef62012-04-12 20:13:57 +0000220
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000221 // Parse and process relocations
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000222 DEBUG(dbgs() << "Parse relocations:\n");
Jim Grosbach36f025e2014-04-21 19:23:59 +0000223 for (section_iterator SI = Obj->begin_sections(), SE = Obj->end_sections();
224 SI != SE; ++SI) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000225 unsigned SectionID = 0;
226 StubMap Stubs;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000227 section_iterator RelocatedSection = SI->getRelocatedSection();
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000228
Jim Grosbach36f025e2014-04-21 19:23:59 +0000229 relocation_iterator I = SI->relocation_begin();
230 relocation_iterator E = SI->relocation_end();
Rafael Espindola77314aa2014-04-03 22:42:22 +0000231
232 if (I == E && !ProcessAllSections)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000233 continue;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000234
Rafael Espindola80291272014-10-08 15:28:58 +0000235 bool IsCode = RelocatedSection->isText();
Juergen Ributzka046709f2014-03-21 07:26:41 +0000236 SectionID =
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000237 findOrEmitSection(*Obj, *RelocatedSection, IsCode, LocalSections);
Juergen Ributzka046709f2014-03-21 07:26:41 +0000238 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
239
Rafael Espindola77314aa2014-04-03 22:42:22 +0000240 for (; I != E;)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000241 I = processRelocationRef(SectionID, I, *Obj, LocalSections, LocalSymbols,
242 Stubs);
Lang Hamesf7acddd2014-07-22 22:47:39 +0000243
Lang Hamesf7acddd2014-07-22 22:47:39 +0000244 // If there is an attached checker, notify it about the stubs for this
245 // section so that they can be verified.
246 if (Checker)
247 Checker->registerStubMap(Obj->getImageName(), SectionID, Stubs);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000248 }
Preston Gurdcc31af92012-04-16 22:12:58 +0000249
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000250 // Give the subclasses a chance to tie-up any loose ends.
Lang Hames36072da2014-05-12 21:39:59 +0000251 finalizeLoad(*Obj, LocalSections);
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000252
David Blaikiefba8b202014-09-03 21:34:34 +0000253 return Obj;
Lang Hames937ec542014-02-12 21:30:07 +0000254}
255
256// A helper method for computeTotalAllocSize.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000257// Computes the memory size required to allocate sections with the given sizes,
Lang Hames937ec542014-02-12 21:30:07 +0000258// assuming that all sections are allocated with the given alignment
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000259static uint64_t
260computeAllocationSizeForSections(std::vector<uint64_t> &SectionSizes,
261 uint64_t Alignment) {
Lang Hames937ec542014-02-12 21:30:07 +0000262 uint64_t TotalSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000263 for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) {
264 uint64_t AlignedSize =
265 (SectionSizes[Idx] + Alignment - 1) / Alignment * Alignment;
Lang Hames937ec542014-02-12 21:30:07 +0000266 TotalSize += AlignedSize;
267 }
268 return TotalSize;
269}
270
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000271// Compute an upper bound of the memory size that is required to load all
272// sections
273void RuntimeDyldImpl::computeTotalAllocSize(ObjectImage &Obj,
274 uint64_t &CodeSize,
275 uint64_t &DataSizeRO,
276 uint64_t &DataSizeRW) {
Lang Hames937ec542014-02-12 21:30:07 +0000277 // Compute the size of all sections required for execution
278 std::vector<uint64_t> CodeSectionSizes;
279 std::vector<uint64_t> ROSectionSizes;
280 std::vector<uint64_t> RWSectionSizes;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000281 uint64_t MaxAlignment = sizeof(void *);
Lang Hames937ec542014-02-12 21:30:07 +0000282
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000283 // Collect sizes of all sections to be loaded;
Lang Hames937ec542014-02-12 21:30:07 +0000284 // also determine the max alignment of all sections
Jim Grosbach36f025e2014-04-21 19:23:59 +0000285 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
286 SI != SE; ++SI) {
287 const SectionRef &Section = *SI;
288
Rafael Espindola80291272014-10-08 15:28:58 +0000289 bool IsRequired = Section.isRequiredForExecution();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000290
Lang Hames937ec542014-02-12 21:30:07 +0000291 // Consider only the sections that are required to be loaded for execution
292 if (IsRequired) {
Lang Hames937ec542014-02-12 21:30:07 +0000293 StringRef Name;
Rafael Espindola80291272014-10-08 15:28:58 +0000294 uint64_t DataSize = Section.getSize();
295 uint64_t Alignment64 = Section.getAlignment();
296 bool IsCode = Section.isText();
297 bool IsReadOnly = Section.isReadOnlyData();
Lang Hames937ec542014-02-12 21:30:07 +0000298 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000299 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
300
Lang Hames937ec542014-02-12 21:30:07 +0000301 uint64_t StubBufSize = computeSectionStubBufSize(Obj, Section);
302 uint64_t SectionSize = DataSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000303
304 // The .eh_frame section (at least on Linux) needs an extra four bytes
305 // padded
Lang Hames937ec542014-02-12 21:30:07 +0000306 // with zeroes added at the end. For MachO objects, this section has a
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000307 // slightly different name, so this won't have any effect for MachO
308 // objects.
Lang Hames937ec542014-02-12 21:30:07 +0000309 if (Name == ".eh_frame")
310 SectionSize += 4;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000311
Lang Hames937ec542014-02-12 21:30:07 +0000312 if (SectionSize > 0) {
313 // save the total size of the section
314 if (IsCode) {
315 CodeSectionSizes.push_back(SectionSize);
316 } else if (IsReadOnly) {
317 ROSectionSizes.push_back(SectionSize);
318 } else {
319 RWSectionSizes.push_back(SectionSize);
320 }
321 // update the max alignment
322 if (Alignment > MaxAlignment) {
323 MaxAlignment = Alignment;
324 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000325 }
Lang Hames937ec542014-02-12 21:30:07 +0000326 }
327 }
328
329 // Compute the size of all common symbols
330 uint64_t CommonSize = 0;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000331 for (symbol_iterator I = Obj.begin_symbols(), E = Obj.end_symbols(); I != E;
332 ++I) {
Lang Hames937ec542014-02-12 21:30:07 +0000333 uint32_t Flags = I->getFlags();
334 if (Flags & SymbolRef::SF_Common) {
335 // Add the common symbols to a list. We'll allocate them all below.
336 uint64_t Size = 0;
337 Check(I->getSize(Size));
338 CommonSize += Size;
339 }
340 }
341 if (CommonSize != 0) {
342 RWSectionSizes.push_back(CommonSize);
343 }
344
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000345 // Compute the required allocation space for each different type of sections
346 // (code, read-only data, read-write data) assuming that all sections are
Lang Hames937ec542014-02-12 21:30:07 +0000347 // allocated with the max alignment. Note that we cannot compute with the
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000348 // individual alignments of the sections, because then the required size
Lang Hames937ec542014-02-12 21:30:07 +0000349 // depends on the order, in which the sections are allocated.
350 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment);
351 DataSizeRO = computeAllocationSizeForSections(ROSectionSizes, MaxAlignment);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000352 DataSizeRW = computeAllocationSizeForSections(RWSectionSizes, MaxAlignment);
Lang Hames937ec542014-02-12 21:30:07 +0000353}
354
355// compute stub buffer size for the given section
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000356unsigned RuntimeDyldImpl::computeSectionStubBufSize(ObjectImage &Obj,
Lang Hames937ec542014-02-12 21:30:07 +0000357 const SectionRef &Section) {
358 unsigned StubSize = getMaxStubSize();
359 if (StubSize == 0) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000360 return 0;
Lang Hames937ec542014-02-12 21:30:07 +0000361 }
362 // FIXME: this is an inefficient way to handle this. We should computed the
363 // necessary section allocation size in loadObject by walking all the sections
364 // once.
365 unsigned StubBufSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000366 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
367 SI != SE; ++SI) {
368 section_iterator RelSecI = SI->getRelocatedSection();
Lang Hames937ec542014-02-12 21:30:07 +0000369 if (!(RelSecI == Section))
370 continue;
371
Jim Grosbach36f025e2014-04-21 19:23:59 +0000372 for (const RelocationRef &Reloc : SI->relocations()) {
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000373 (void)Reloc;
Lang Hames937ec542014-02-12 21:30:07 +0000374 StubBufSize += StubSize;
375 }
376 }
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000377
Lang Hames937ec542014-02-12 21:30:07 +0000378 // Get section data size and alignment
Rafael Espindola80291272014-10-08 15:28:58 +0000379 uint64_t DataSize = Section.getSize();
380 uint64_t Alignment64 = Section.getAlignment();
Lang Hames937ec542014-02-12 21:30:07 +0000381
382 // Add stubbuf size alignment
383 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
384 unsigned StubAlignment = getStubAlignment();
385 unsigned EndAlignment = (DataSize | Alignment) & -(DataSize | Alignment);
386 if (StubAlignment > EndAlignment)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000387 StubBufSize += StubAlignment - EndAlignment;
Lang Hames937ec542014-02-12 21:30:07 +0000388 return StubBufSize;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000389}
390
Lang Hamese1287c02014-08-29 23:17:47 +0000391uint64_t RuntimeDyldImpl::readBytesUnaligned(uint8_t *Src,
392 unsigned Size) const {
393 uint64_t Result = 0;
Lang Hames69abd722014-09-07 02:05:26 +0000394 if (IsTargetLittleEndian) {
395 Src += Size - 1;
396 while (Size--)
397 Result = (Result << 8) | *Src--;
398 } else
399 while (Size--)
400 Result = (Result << 8) | *Src++;
Lang Hamese1287c02014-08-29 23:17:47 +0000401
402 return Result;
403}
404
405void RuntimeDyldImpl::writeBytesUnaligned(uint64_t Value, uint8_t *Dst,
406 unsigned Size) const {
Lang Hames69abd722014-09-07 02:05:26 +0000407 if (IsTargetLittleEndian) {
408 while (Size--) {
409 *Dst++ = Value & 0xFF;
410 Value >>= 8;
411 }
Lang Hamese1287c02014-08-29 23:17:47 +0000412 } else {
Lang Hames69abd722014-09-07 02:05:26 +0000413 Dst += Size - 1;
414 while (Size--) {
415 *Dst-- = Value & 0xFF;
416 Value >>= 8;
417 }
Lang Hamese1287c02014-08-29 23:17:47 +0000418 }
419}
420
Eli Bendersky667b8792012-05-01 10:41:12 +0000421void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
422 const CommonSymbolMap &CommonSymbols,
423 uint64_t TotalSize,
424 SymbolTableMap &SymbolTable) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000425 // Allocate memory for the section
426 unsigned SectionID = Sections.size();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000427 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *),
428 SectionID, StringRef(), false);
Preston Gurd2138ef62012-04-12 20:13:57 +0000429 if (!Addr)
430 report_fatal_error("Unable to allocate memory for common symbols!");
431 uint64_t Offset = 0;
Lang Hames86b08f02014-08-25 18:37:38 +0000432 Sections.push_back(SectionEntry("<common symbols>", Addr, TotalSize, 0));
Preston Gurd2138ef62012-04-12 20:13:57 +0000433 memset(Addr, 0, TotalSize);
434
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000435 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID << " new addr: "
436 << format("%p", Addr) << " DataSize: " << TotalSize << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000437
438 // Assign the address of each symbol
Jim Grosbach36f025e2014-04-21 19:23:59 +0000439 for (CommonSymbolMap::const_iterator it = CommonSymbols.begin(),
440 itEnd = CommonSymbols.end(); it != itEnd; ++it) {
441 uint64_t Size = it->second.first;
442 uint64_t Align = it->second.second;
Preston Gurd2138ef62012-04-12 20:13:57 +0000443 StringRef Name;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000444 it->first.getName(Name);
Tim Northover94bc73d2012-10-29 10:47:04 +0000445 if (Align) {
446 // This symbol has an alignment requirement.
447 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align);
448 Addr += AlignOffset;
449 Offset += AlignOffset;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000450 DEBUG(dbgs() << "Allocating common symbol " << Name << " address "
451 << format("%p\n", Addr));
Tim Northover94bc73d2012-10-29 10:47:04 +0000452 }
Jim Grosbach36f025e2014-04-21 19:23:59 +0000453 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
Eli Bendersky667b8792012-05-01 10:41:12 +0000454 SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000455 Offset += Size;
456 Addr += Size;
457 }
Preston Gurd2138ef62012-04-12 20:13:57 +0000458}
459
Preston Gurdcc31af92012-04-16 22:12:58 +0000460unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000461 const SectionRef &Section, bool IsCode) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000462
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000463 StringRef data;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000464 Check(Section.getContents(data));
Rafael Espindola80291272014-10-08 15:28:58 +0000465 uint64_t Alignment64 = Section.getAlignment();
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000466
467 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Andrew Kaylor877b9312013-10-16 00:32:24 +0000468 unsigned PaddingSize = 0;
Lang Hames937ec542014-02-12 21:30:07 +0000469 unsigned StubBufSize = 0;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000470 StringRef Name;
Rafael Espindola80291272014-10-08 15:28:58 +0000471 bool IsRequired = Section.isRequiredForExecution();
472 bool IsVirtual = Section.isVirtual();
473 bool IsZeroInit = Section.isZeroInit();
474 bool IsReadOnly = Section.isReadOnlyData();
475 uint64_t DataSize = Section.getSize();
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000476 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000477
478 StubBufSize = computeSectionStubBufSize(Obj, Section);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000479
Andrew Kaylor877b9312013-10-16 00:32:24 +0000480 // The .eh_frame section (at least on Linux) needs an extra four bytes padded
481 // with zeroes added at the end. For MachO objects, this section has a
482 // slightly different name, so this won't have any effect for MachO objects.
483 if (Name == ".eh_frame")
484 PaddingSize = 4;
485
Lang Hamesd4100172014-02-11 05:28:24 +0000486 uintptr_t Allocate;
Preston Gurd2138ef62012-04-12 20:13:57 +0000487 unsigned SectionID = Sections.size();
488 uint8_t *Addr;
Craig Topper353eda42014-04-24 06:44:33 +0000489 const char *pData = nullptr;
Preston Gurd2138ef62012-04-12 20:13:57 +0000490
491 // Some sections, such as debug info, don't need to be loaded for execution.
492 // Leave those where they are.
493 if (IsRequired) {
Andrew Kaylor877b9312013-10-16 00:32:24 +0000494 Allocate = DataSize + PaddingSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000495 Addr = IsCode ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID,
496 Name)
497 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID,
498 Name, IsReadOnly);
Preston Gurd2138ef62012-04-12 20:13:57 +0000499 if (!Addr)
500 report_fatal_error("Unable to allocate section memory!");
501
502 // Virtual sections have no data in the object image, so leave pData = 0
503 if (!IsVirtual)
504 pData = data.data();
505
506 // Zero-initialize or copy the data from the image
507 if (IsZeroInit || IsVirtual)
508 memset(Addr, 0, DataSize);
509 else
510 memcpy(Addr, pData, DataSize);
511
Andrew Kaylor877b9312013-10-16 00:32:24 +0000512 // Fill in any extra bytes we allocated for padding
513 if (PaddingSize != 0) {
514 memset(Addr + DataSize, 0, PaddingSize);
515 // Update the DataSize variable so that the stub offset is set correctly.
516 DataSize += PaddingSize;
517 }
518
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000519 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
Preston Gurd2138ef62012-04-12 20:13:57 +0000520 << " obj addr: " << format("%p", pData)
521 << " new addr: " << format("%p", Addr)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000522 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
523 << " Allocate: " << Allocate << "\n");
Preston Gurdcc31af92012-04-16 22:12:58 +0000524 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000525 } else {
Preston Gurd2138ef62012-04-12 20:13:57 +0000526 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000527 // to handle later processing (and by 'handle' I mean don't do anything
528 // with these sections).
Preston Gurd2138ef62012-04-12 20:13:57 +0000529 Allocate = 0;
Craig Topper353eda42014-04-24 06:44:33 +0000530 Addr = nullptr;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000531 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
532 << " obj addr: " << format("%p", data.data()) << " new addr: 0"
533 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
534 << " Allocate: " << Allocate << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000535 }
536
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000537 Sections.push_back(SectionEntry(Name, Addr, DataSize, (uintptr_t)pData));
Lang Hames587ee6a2014-09-03 05:01:46 +0000538
539 if (Checker)
540 Checker->registerSection(Obj.getImageName(), SectionID);
541
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000542 return SectionID;
543}
544
Preston Gurdcc31af92012-04-16 22:12:58 +0000545unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
546 const SectionRef &Section,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000547 bool IsCode,
548 ObjSectionToIDMap &LocalSections) {
549
550 unsigned SectionID = 0;
551 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
552 if (i != LocalSections.end())
553 SectionID = i->second;
554 else {
Preston Gurdcc31af92012-04-16 22:12:58 +0000555 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000556 LocalSections[Section] = SectionID;
557 }
558 return SectionID;
559}
560
Eli Bendersky667b8792012-05-01 10:41:12 +0000561void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
562 unsigned SectionID) {
563 Relocations[SectionID].push_back(RE);
564}
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000565
Eli Bendersky667b8792012-05-01 10:41:12 +0000566void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
567 StringRef SymbolName) {
568 // Relocation by symbol. If the symbol is found in the global symbol table,
569 // create an appropriate section relocation. Otherwise, add it to
570 // ExternalSymbolRelocations.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000571 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(SymbolName);
Eli Bendersky667b8792012-05-01 10:41:12 +0000572 if (Loc == GlobalSymbolTable.end()) {
573 ExternalSymbolRelocations[SymbolName].push_back(RE);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000574 } else {
Eli Bendersky667b8792012-05-01 10:41:12 +0000575 // Copy the RE since we want to modify its addend.
576 RelocationEntry RECopy = RE;
577 RECopy.Addend += Loc->second.second;
578 Relocations[Loc->second.first].push_back(RECopy);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000579 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000580}
581
Ulrich Weigand752b5c92014-07-20 23:53:14 +0000582uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr,
583 unsigned AbiVariant) {
Tim Northovere19bed72014-07-23 12:32:47 +0000584 if (Arch == Triple::aarch64 || Arch == Triple::aarch64_be) {
Tim Northover37cde972013-05-04 20:14:09 +0000585 // This stub has to be able to access the full address space,
586 // since symbol lookup won't necessarily find a handy, in-range,
587 // PLT stub for functions which could be anywhere.
Tim Northover37cde972013-05-04 20:14:09 +0000588 // Stub can use ip0 (== x16) to calculate address
Daniel Sanders66e799f2014-11-06 09:53:05 +0000589 writeBytesUnaligned(0xd2e00010, Addr, 4); // movz ip0, #:abs_g3:<addr>
590 writeBytesUnaligned(0xf2c00010, Addr+4, 4); // movk ip0, #:abs_g2_nc:<addr>
591 writeBytesUnaligned(0xf2a00010, Addr+8, 4); // movk ip0, #:abs_g1_nc:<addr>
592 writeBytesUnaligned(0xf2800010, Addr+12, 4); // movk ip0, #:abs_g0_nc:<addr>
593 writeBytesUnaligned(0xd61f0200, Addr+16, 4); // br ip0
Tim Northover37cde972013-05-04 20:14:09 +0000594
595 return Addr;
Christian Pirker2a111602014-03-28 14:35:30 +0000596 } else if (Arch == Triple::arm || Arch == Triple::armeb) {
Akira Hatanaka111174b2012-08-17 21:28:04 +0000597 // TODO: There is only ARM far stub now. We should add the Thumb stub,
598 // and stubs for branches Thumb - ARM and ARM - Thumb.
Daniel Sanders66e799f2014-11-06 09:53:05 +0000599 writeBytesUnaligned(0xe51ff004, Addr, 4); // ldr pc,<label>
600 return Addr + 4;
NAKAMURA Takumif97efd92012-12-04 00:08:14 +0000601 } else if (Arch == Triple::mipsel || Arch == Triple::mips) {
Akira Hatanaka111174b2012-08-17 21:28:04 +0000602 // 0: 3c190000 lui t9,%hi(addr).
603 // 4: 27390000 addiu t9,t9,%lo(addr).
604 // 8: 03200008 jr t9.
605 // c: 00000000 nop.
606 const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000;
607 const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0;
608
Daniel Sanders66e799f2014-11-06 09:53:05 +0000609 writeBytesUnaligned(LuiT9Instr, Addr, 4);
610 writeBytesUnaligned(AdduiT9Instr, Addr+4, 4);
611 writeBytesUnaligned(JrT9Instr, Addr+8, 4);
612 writeBytesUnaligned(NopInstr, Addr+12, 4);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000613 return Addr;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000614 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
Ulrich Weigand752b5c92014-07-20 23:53:14 +0000615 // Depending on which version of the ELF ABI is in use, we need to
616 // generate one of two variants of the stub. They both start with
617 // the same sequence to load the target address into r12.
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000618 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr)
619 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr)
620 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32
621 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr)
622 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr)
Ulrich Weigand752b5c92014-07-20 23:53:14 +0000623 if (AbiVariant == 2) {
624 // PowerPC64 stub ELFv2 ABI: The address points to the function itself.
625 // The address is already in r12 as required by the ABI. Branch to it.
626 writeInt32BE(Addr+20, 0xF8410018); // std r2, 24(r1)
627 writeInt32BE(Addr+24, 0x7D8903A6); // mtctr r12
628 writeInt32BE(Addr+28, 0x4E800420); // bctr
629 } else {
630 // PowerPC64 stub ELFv1 ABI: The address points to a function descriptor.
631 // Load the function address on r11 and sets it to control register. Also
632 // loads the function TOC in r2 and environment pointer to r11.
633 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1)
634 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12)
635 writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12)
636 writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11
637 writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2)
638 writeInt32BE(Addr+40, 0x4E800420); // bctr
639 }
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000640 return Addr;
Richard Sandifordca044082013-05-03 14:15:35 +0000641 } else if (Arch == Triple::systemz) {
642 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8
643 writeInt16BE(Addr+2, 0x0000);
644 writeInt16BE(Addr+4, 0x0004);
645 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1
646 // 8-byte address stored at Addr + 8
647 return Addr;
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000648 } else if (Arch == Triple::x86_64) {
649 *Addr = 0xFF; // jmp
650 *(Addr+1) = 0x25; // rip
651 // 32-bit PC-relative address of the GOT entry will be stored at Addr+2
Lang Hames36072da2014-05-12 21:39:59 +0000652 } else if (Arch == Triple::x86) {
653 *Addr = 0xE9; // 32-bit pc-relative jump.
Akira Hatanaka111174b2012-08-17 21:28:04 +0000654 }
655 return Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000656}
657
658// Assign an address to a symbol name and resolve all the relocations
659// associated with it.
660void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
661 uint64_t Addr) {
662 // The address to use for relocation resolution is not
663 // the address of the local section buffer. We must be doing
Andrew Kaylora714efc2012-11-05 20:57:16 +0000664 // a remote execution environment of some sort. Relocations can't
665 // be applied until all the sections have been moved. The client must
666 // trigger this with a call to MCJIT::finalize() or
667 // RuntimeDyld::resolveRelocations().
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000668 //
669 // Addr is a uint64_t because we can't assume the pointer width
670 // of the target is the same as that of the host. Just use a generic
671 // "big enough" type.
Lang Hames778ef5b2014-09-04 04:19:54 +0000672 DEBUG(dbgs() << "Reassigning address for section "
673 << SectionID << " (" << Sections[SectionID].Name << "): "
Lang Hamesda016022014-09-23 19:20:57 +0000674 << format("0x%016" PRIx64, Sections[SectionID].LoadAddress) << " -> "
675 << format("0x%016" PRIx64, Addr) << "\n");
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000676 Sections[SectionID].LoadAddress = Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000677}
678
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000679void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
680 uint64_t Value) {
681 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000682 const RelocationEntry &RE = Relocs[i];
683 // Ignore relocations for sections that were not loaded
Craig Topper353eda42014-04-24 06:44:33 +0000684 if (Sections[RE.SectionID].Address == nullptr)
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000685 continue;
686 resolveRelocation(RE, Value);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000687 }
688}
689
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000690void RuntimeDyldImpl::resolveExternalSymbols() {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000691 while (!ExternalSymbolRelocations.empty()) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000692 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin();
693
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000694 StringRef Name = i->first();
Andrew Kaylorea395922013-10-01 01:47:35 +0000695 if (Name.size() == 0) {
696 // This is an absolute symbol, use an address of zero.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000697 DEBUG(dbgs() << "Resolving absolute relocations."
698 << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000699 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000700 resolveRelocationList(Relocs, 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000701 } else {
Andrew Kaylorea395922013-10-01 01:47:35 +0000702 uint64_t Addr = 0;
703 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
704 if (Loc == GlobalSymbolTable.end()) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000705 // This is an external symbol, try to get its address from
706 // MemoryManager.
707 Addr = MemMgr->getSymbolAddress(Name.data());
708 // The call to getSymbolAddress may have caused additional modules to
709 // be loaded, which may have added new entries to the
710 // ExternalSymbolRelocations map. Consquently, we need to update our
711 // iterator. This is also why retrieval of the relocation list
712 // associated with this symbol is deferred until below this point.
713 // New entries may have been added to the relocation list.
714 i = ExternalSymbolRelocations.find(Name);
Andrew Kaylorea395922013-10-01 01:47:35 +0000715 } else {
716 // We found the symbol in our global table. It was probably in a
717 // Module that we loaded previously.
Yaron Kerenc9802882013-10-19 09:04:26 +0000718 SymbolLoc SymLoc = Loc->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000719 Addr = getSectionLoadAddress(SymLoc.first) + SymLoc.second;
720 }
721
722 // FIXME: Implement error handling that doesn't kill the host program!
723 if (!Addr)
724 report_fatal_error("Program used external function '" + Name +
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000725 "' which could not be resolved!");
Andrew Kaylorea395922013-10-01 01:47:35 +0000726
727 updateGOTEntries(Name, Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000728 DEBUG(dbgs() << "Resolving relocations Name: " << Name << "\t"
729 << format("0x%lx", Addr) << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000730 // This list may have been updated when we called getSymbolAddress, so
731 // don't change this code to get the list earlier.
732 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000733 resolveRelocationList(Relocs, Addr);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000734 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000735
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000736 ExternalSymbolRelocations.erase(i);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000737 }
738}
739
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000740//===----------------------------------------------------------------------===//
741// RuntimeDyld class implementation
Danil Malyshev72510f22011-07-13 07:57:58 +0000742RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
Andrew Kaylora342cb92012-11-15 23:50:01 +0000743 // FIXME: There's a potential issue lurking here if a single instance of
744 // RuntimeDyld is used to load multiple objects. The current implementation
745 // associates a single memory manager with a RuntimeDyld instance. Even
746 // though the public class spawns a new 'impl' instance for each load,
747 // they share a single memory manager. This can become a problem when page
748 // permissions are applied.
Craig Topper353eda42014-04-24 06:44:33 +0000749 Dyld = nullptr;
Danil Malyshev72510f22011-07-13 07:57:58 +0000750 MM = mm;
Lang Hames868d4b32014-03-20 21:06:46 +0000751 ProcessAllSections = false;
Lang Hamesf7acddd2014-07-22 22:47:39 +0000752 Checker = nullptr;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000753}
754
David Blaikie847d2a02014-09-04 18:37:29 +0000755RuntimeDyld::~RuntimeDyld() {}
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000756
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000757static std::unique_ptr<RuntimeDyldELF>
Lang Hamesf7acddd2014-07-22 22:47:39 +0000758createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections,
759 RuntimeDyldCheckerImpl *Checker) {
Lang Hames868d4b32014-03-20 21:06:46 +0000760 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM));
761 Dyld->setProcessAllSections(ProcessAllSections);
Lang Hamesf7acddd2014-07-22 22:47:39 +0000762 Dyld->setRuntimeDyldChecker(Checker);
Lang Hames868d4b32014-03-20 21:06:46 +0000763 return Dyld;
764}
765
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000766static std::unique_ptr<RuntimeDyldMachO>
Lang Hamesa5216882014-07-17 18:54:50 +0000767createRuntimeDyldMachO(Triple::ArchType Arch, RTDyldMemoryManager *MM,
Lang Hamesf7acddd2014-07-22 22:47:39 +0000768 bool ProcessAllSections, RuntimeDyldCheckerImpl *Checker) {
Lang Hamesa5216882014-07-17 18:54:50 +0000769 std::unique_ptr<RuntimeDyldMachO> Dyld(RuntimeDyldMachO::create(Arch, MM));
Lang Hames868d4b32014-03-20 21:06:46 +0000770 Dyld->setProcessAllSections(ProcessAllSections);
Lang Hamesf7acddd2014-07-22 22:47:39 +0000771 Dyld->setRuntimeDyldChecker(Checker);
Lang Hames868d4b32014-03-20 21:06:46 +0000772 return Dyld;
773}
774
David Blaikieed9709d2014-09-03 19:48:09 +0000775std::unique_ptr<ObjectImage>
776RuntimeDyld::loadObject(std::unique_ptr<ObjectFile> InputObject) {
Lang Hames951b2352014-03-08 18:45:12 +0000777 std::unique_ptr<ObjectImage> InputImage;
Lang Hames173c69f2014-01-08 04:09:09 +0000778
David Blaikie7a1e7752014-04-29 21:52:46 +0000779 ObjectFile &Obj = *InputObject;
780
Lang Hames951b2352014-03-08 18:45:12 +0000781 if (InputObject->isELF()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000782 InputImage.reset(RuntimeDyldELF::createObjectImageFromFile(std::move(InputObject)));
Lang Hames951b2352014-03-08 18:45:12 +0000783 if (!Dyld)
David Blaikie847d2a02014-09-04 18:37:29 +0000784 Dyld = createRuntimeDyldELF(MM, ProcessAllSections, Checker);
Lang Hames951b2352014-03-08 18:45:12 +0000785 } else if (InputObject->isMachO()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000786 InputImage.reset(RuntimeDyldMachO::createObjectImageFromFile(std::move(InputObject)));
Lang Hames951b2352014-03-08 18:45:12 +0000787 if (!Dyld)
Lang Hamesa5216882014-07-17 18:54:50 +0000788 Dyld = createRuntimeDyldMachO(
David Blaikie847d2a02014-09-04 18:37:29 +0000789 static_cast<Triple::ArchType>(InputImage->getArch()), MM,
790 ProcessAllSections, Checker);
Lang Hames951b2352014-03-08 18:45:12 +0000791 } else
792 report_fatal_error("Incompatible object format!");
793
David Blaikie7a1e7752014-04-29 21:52:46 +0000794 if (!Dyld->isCompatibleFile(&Obj))
Lang Hames951b2352014-03-08 18:45:12 +0000795 report_fatal_error("Incompatible object format!");
796
David Blaikiefba8b202014-09-03 21:34:34 +0000797 return Dyld->loadObject(std::move(InputImage));
Lang Hames173c69f2014-01-08 04:09:09 +0000798}
799
David Blaikieed9709d2014-09-03 19:48:09 +0000800std::unique_ptr<ObjectImage>
801RuntimeDyld::loadObject(std::unique_ptr<ObjectBuffer> InputBuffer) {
Lang Hames951b2352014-03-08 18:45:12 +0000802 std::unique_ptr<ObjectImage> InputImage;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000803 sys::fs::file_magic Type = sys::fs::identify_magic(InputBuffer->getBuffer());
David Blaikieed9709d2014-09-03 19:48:09 +0000804 auto *InputBufferPtr = InputBuffer.get();
Lang Hames951b2352014-03-08 18:45:12 +0000805
806 switch (Type) {
807 case sys::fs::file_magic::elf_relocatable:
808 case sys::fs::file_magic::elf_executable:
809 case sys::fs::file_magic::elf_shared_object:
810 case sys::fs::file_magic::elf_core:
David Blaikieed9709d2014-09-03 19:48:09 +0000811 InputImage = RuntimeDyldELF::createObjectImage(std::move(InputBuffer));
Lang Hames951b2352014-03-08 18:45:12 +0000812 if (!Dyld)
David Blaikie847d2a02014-09-04 18:37:29 +0000813 Dyld = createRuntimeDyldELF(MM, ProcessAllSections, Checker);
Lang Hames951b2352014-03-08 18:45:12 +0000814 break;
815 case sys::fs::file_magic::macho_object:
816 case sys::fs::file_magic::macho_executable:
817 case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib:
818 case sys::fs::file_magic::macho_core:
819 case sys::fs::file_magic::macho_preload_executable:
820 case sys::fs::file_magic::macho_dynamically_linked_shared_lib:
821 case sys::fs::file_magic::macho_dynamic_linker:
822 case sys::fs::file_magic::macho_bundle:
823 case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub:
824 case sys::fs::file_magic::macho_dsym_companion:
David Blaikieed9709d2014-09-03 19:48:09 +0000825 InputImage = RuntimeDyldMachO::createObjectImage(std::move(InputBuffer));
Lang Hames951b2352014-03-08 18:45:12 +0000826 if (!Dyld)
Lang Hamesa5216882014-07-17 18:54:50 +0000827 Dyld = createRuntimeDyldMachO(
David Blaikie847d2a02014-09-04 18:37:29 +0000828 static_cast<Triple::ArchType>(InputImage->getArch()), MM,
829 ProcessAllSections, Checker);
Lang Hames951b2352014-03-08 18:45:12 +0000830 break;
831 case sys::fs::file_magic::unknown:
832 case sys::fs::file_magic::bitcode:
833 case sys::fs::file_magic::archive:
834 case sys::fs::file_magic::coff_object:
835 case sys::fs::file_magic::coff_import_library:
836 case sys::fs::file_magic::pecoff_executable:
837 case sys::fs::file_magic::macho_universal_binary:
838 case sys::fs::file_magic::windows_resource:
839 report_fatal_error("Incompatible object format!");
Danil Malyshev72510f22011-07-13 07:57:58 +0000840 }
841
David Blaikieed9709d2014-09-03 19:48:09 +0000842 if (!Dyld->isCompatibleFormat(InputBufferPtr))
Lang Hames951b2352014-03-08 18:45:12 +0000843 report_fatal_error("Incompatible object format!");
844
David Blaikiefba8b202014-09-03 21:34:34 +0000845 return Dyld->loadObject(std::move(InputImage));
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000846}
847
Lang Hames3e930a32014-09-05 18:00:16 +0000848void *RuntimeDyld::getSymbolAddress(StringRef Name) const {
Andrew Kaylorea395922013-10-01 01:47:35 +0000849 if (!Dyld)
Craig Topper353eda42014-04-24 06:44:33 +0000850 return nullptr;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000851 return Dyld->getSymbolAddress(Name);
852}
853
Lang Hames3e930a32014-09-05 18:00:16 +0000854uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) const {
Andrew Kaylorea395922013-10-01 01:47:35 +0000855 if (!Dyld)
856 return 0;
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000857 return Dyld->getSymbolLoadAddress(Name);
858}
859
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000860void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); }
Jim Grosbach733d3052011-04-12 21:20:41 +0000861
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000862void RuntimeDyld::reassignSectionAddress(unsigned SectionID, uint64_t Addr) {
Jim Grosbacheff0a402012-01-16 22:26:39 +0000863 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbach733d3052011-04-12 21:20:41 +0000864}
865
Jim Grosbach6d613972012-09-13 21:50:06 +0000866void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000867 uint64_t TargetAddress) {
868 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
869}
870
Juergen Ributzka6ff29a72014-03-26 18:19:27 +0000871bool RuntimeDyld::hasError() { return Dyld->hasError(); }
872
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000873StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); }
Jim Grosbach40411cc2011-03-22 18:19:42 +0000874
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000875void RuntimeDyld::registerEHFrames() {
Andrew Kaylorc442a762013-10-16 00:14:21 +0000876 if (Dyld)
877 Dyld->registerEHFrames();
878}
879
880void RuntimeDyld::deregisterEHFrames() {
881 if (Dyld)
882 Dyld->deregisterEHFrames();
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000883}
884
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000885} // end namespace llvm