blob: 3685fece1b59429dc3259047be69346fe2c222cf [file] [log] [blame]
Jim Grosbache0934be2012-01-16 23:50:58 +00001//===-- RuntimeDyld.cpp - Run-time dynamic linker for MC-JIT ----*- C++ -*-===//
Jim Grosbach6e563312011-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
Jim Grosbach8b54dca2011-03-23 19:52:00 +000014#define DEBUG_TYPE "dyld"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ExecutionEngine/RuntimeDyld.h"
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000016#include "ObjectImageCommon.h"
Eli Bendersky76463fd2012-01-22 07:05:02 +000017#include "RuntimeDyldELF.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000018#include "RuntimeDyldImpl.h"
Eli Bendersky76463fd2012-01-22 07:05:02 +000019#include "RuntimeDyldMachO.h"
Tim Northoverf00677d2012-10-29 10:47:04 +000020#include "llvm/Support/MathExtras.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000021#include "llvm/Support/Path.h"
Eli Bendersky76463fd2012-01-22 07:05:02 +000022
Jim Grosbach6e563312011-03-21 22:15:52 +000023using namespace llvm;
24using namespace llvm::object;
25
Chandler Carruth53c5e7b2011-04-05 23:54:31 +000026// Empty out-of-line virtual destructor as the key function.
27RTDyldMemoryManager::~RTDyldMemoryManager() {}
Danil Malyshevcf852dc2011-07-13 07:57:58 +000028RuntimeDyldImpl::~RuntimeDyldImpl() {}
Chandler Carruth53c5e7b2011-04-05 23:54:31 +000029
Jim Grosbach6e563312011-03-21 22:15:52 +000030namespace llvm {
Jim Grosbach6e563312011-03-21 22:15:52 +000031
Jim Grosbachf8c1c842011-04-12 21:20:41 +000032// Resolve the relocations for all symbols we currently know about.
33void RuntimeDyldImpl::resolveRelocations() {
Preston Gurdc68dda82012-04-12 20:13:57 +000034 // First, resolve relocations associated with external symbols.
Eli Bendersky37bc5a22012-04-30 12:15:58 +000035 resolveExternalSymbols();
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000036
Jim Grosbach61425c02012-01-16 22:26:39 +000037 // Just iterate over the sections we have and resolve all the relocations
38 // in them. Gross overkill, but it gets the job done.
39 for (int i = 0, e = Sections.size(); i != e; ++i) {
Andrew Kaylor28989882012-11-05 20:57:16 +000040 uint64_t Addr = Sections[i].LoadAddress;
41 DEBUG(dbgs() << "Resolving relocations Section #" << i
42 << "\t" << format("%p", (uint8_t *)Addr)
43 << "\n");
44 resolveRelocationList(Relocations[i], Addr);
Jim Grosbach61425c02012-01-16 22:26:39 +000045 }
Jim Grosbachf8c1c842011-04-12 21:20:41 +000046}
47
Jim Grosbache940c1b2012-09-13 21:50:06 +000048void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress,
Jim Grosbach020f4e82012-01-16 23:50:55 +000049 uint64_t TargetAddress) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000050 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
51 if (Sections[i].Address == LocalAddress) {
52 reassignSectionAddress(i, TargetAddress);
53 return;
54 }
55 }
56 llvm_unreachable("Attempting to remap address of unknown section!");
Jim Grosbach020f4e82012-01-16 23:50:55 +000057}
58
Eli Bendersky5fe01982012-04-29 12:40:47 +000059// Subclasses can implement this method to create specialized image instances.
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +000060// The caller owns the pointer that is returned.
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000061ObjectImage *RuntimeDyldImpl::createObjectImage(ObjectBuffer *InputBuffer) {
62 return new ObjectImageCommon(InputBuffer);
Preston Gurd689ff9c2012-04-16 22:12:58 +000063}
64
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000065ObjectImage *RuntimeDyldImpl::loadObject(ObjectBuffer *InputBuffer) {
Preston Gurd689ff9c2012-04-16 22:12:58 +000066 OwningPtr<ObjectImage> obj(createObjectImage(InputBuffer));
Preston Gurdc68dda82012-04-12 20:13:57 +000067 if (!obj)
68 report_fatal_error("Unable to create object image from memory buffer!");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000069
70 Arch = (Triple::ArchType)obj->getArch();
71
Eli Benderskyd98c9e92012-05-01 06:58:59 +000072 // Symbols found in this object
73 StringMap<SymbolLoc> LocalSymbols;
74 // Used sections from the object file
75 ObjSectionToIDMap LocalSections;
76
Tim Northoverf00677d2012-10-29 10:47:04 +000077 // Common symbols requiring allocation, with their sizes and alignments
Eli Benderskyd98c9e92012-05-01 06:58:59 +000078 CommonSymbolMap CommonSymbols;
Tim Northoverf00677d2012-10-29 10:47:04 +000079 // Maximum required total memory to allocate all common symbols
Eli Benderskyd98c9e92012-05-01 06:58:59 +000080 uint64_t CommonSize = 0;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000081
82 error_code err;
83 // Parse symbols
84 DEBUG(dbgs() << "Parse symbols:\n");
85 for (symbol_iterator i = obj->begin_symbols(), e = obj->end_symbols();
86 i != e; i.increment(err)) {
87 Check(err);
88 object::SymbolRef::Type SymType;
89 StringRef Name;
90 Check(i->getType(SymType));
91 Check(i->getName(Name));
92
Preston Gurdc68dda82012-04-12 20:13:57 +000093 uint32_t flags;
94 Check(i->getFlags(flags));
95
96 bool isCommon = flags & SymbolRef::SF_Common;
97 if (isCommon) {
98 // Add the common symbols to a list. We'll allocate them all below.
Tim Northoverf00677d2012-10-29 10:47:04 +000099 uint64_t Align = getCommonSymbolAlignment(*i);
Preston Gurdc68dda82012-04-12 20:13:57 +0000100 uint64_t Size = 0;
101 Check(i->getSize(Size));
Tim Northoverf00677d2012-10-29 10:47:04 +0000102 CommonSize += Size + Align;
103 CommonSymbols[*i] = CommonSymbolInfo(Size, Align);
Preston Gurdc68dda82012-04-12 20:13:57 +0000104 } else {
105 if (SymType == object::SymbolRef::ST_Function ||
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000106 SymType == object::SymbolRef::ST_Data ||
107 SymType == object::SymbolRef::ST_Unknown) {
Preston Gurdc68dda82012-04-12 20:13:57 +0000108 uint64_t FileOffset;
Eli Bendersky5fe01982012-04-29 12:40:47 +0000109 StringRef SectionData;
Preston Gurdc68dda82012-04-12 20:13:57 +0000110 section_iterator si = obj->end_sections();
111 Check(i->getFileOffset(FileOffset));
112 Check(i->getSection(si));
113 if (si == obj->end_sections()) continue;
Eli Bendersky5fe01982012-04-29 12:40:47 +0000114 Check(si->getContents(SectionData));
Preston Gurdc68dda82012-04-12 20:13:57 +0000115 const uint8_t* SymPtr = (const uint8_t*)InputBuffer->getBufferStart() +
116 (uintptr_t)FileOffset;
Eli Bendersky5fe01982012-04-29 12:40:47 +0000117 uintptr_t SectOffset = (uintptr_t)(SymPtr -
118 (const uint8_t*)SectionData.begin());
Preston Gurdc68dda82012-04-12 20:13:57 +0000119 unsigned SectionID =
Preston Gurd689ff9c2012-04-16 22:12:58 +0000120 findOrEmitSection(*obj,
121 *si,
Preston Gurdc68dda82012-04-12 20:13:57 +0000122 SymType == object::SymbolRef::ST_Function,
123 LocalSections);
Preston Gurdc68dda82012-04-12 20:13:57 +0000124 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
125 DEBUG(dbgs() << "\tFileOffset: " << format("%p", (uintptr_t)FileOffset)
126 << " flags: " << flags
127 << " SID: " << SectionID
128 << " Offset: " << format("%p", SectOffset));
Amara Emerson098d6d52012-11-16 11:11:59 +0000129 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
Preston Gurdc68dda82012-04-12 20:13:57 +0000130 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000131 }
132 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
133 }
134
Preston Gurdc68dda82012-04-12 20:13:57 +0000135 // Allocate common symbols
136 if (CommonSize != 0)
Preston Gurd689ff9c2012-04-16 22:12:58 +0000137 emitCommonSymbols(*obj, CommonSymbols, CommonSize, LocalSymbols);
Preston Gurdc68dda82012-04-12 20:13:57 +0000138
Eli Bendersky5fe01982012-04-29 12:40:47 +0000139 // Parse and process relocations
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000140 DEBUG(dbgs() << "Parse relocations:\n");
141 for (section_iterator si = obj->begin_sections(),
142 se = obj->end_sections(); si != se; si.increment(err)) {
143 Check(err);
144 bool isFirstRelocation = true;
145 unsigned SectionID = 0;
146 StubMap Stubs;
147
148 for (relocation_iterator i = si->begin_relocations(),
149 e = si->end_relocations(); i != e; i.increment(err)) {
150 Check(err);
151
Eli Bendersky5fe01982012-04-29 12:40:47 +0000152 // If it's the first relocation in this section, find its SectionID
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000153 if (isFirstRelocation) {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000154 SectionID = findOrEmitSection(*obj, *si, true, LocalSections);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000155 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
156 isFirstRelocation = false;
157 }
158
159 ObjRelocationInfo RI;
160 RI.SectionID = SectionID;
161 Check(i->getAdditionalInfo(RI.AdditionalInfo));
162 Check(i->getOffset(RI.Offset));
163 Check(i->getSymbol(RI.Symbol));
164 Check(i->getType(RI.Type));
165
166 DEBUG(dbgs() << "\t\tAddend: " << RI.AdditionalInfo
167 << " Offset: " << format("%p", (uintptr_t)RI.Offset)
168 << " Type: " << (uint32_t)(RI.Type & 0xffffffffL)
169 << "\n");
170 processRelocationRef(RI, *obj, LocalSections, LocalSymbols, Stubs);
171 }
172 }
Preston Gurd689ff9c2012-04-16 22:12:58 +0000173
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000174 return obj.take();
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000175}
176
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000177void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
178 const CommonSymbolMap &CommonSymbols,
179 uint64_t TotalSize,
180 SymbolTableMap &SymbolTable) {
Preston Gurdc68dda82012-04-12 20:13:57 +0000181 // Allocate memory for the section
182 unsigned SectionID = Sections.size();
183 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void*),
Andrew Kaylor53608a32012-11-15 23:50:01 +0000184 SectionID, false);
Preston Gurdc68dda82012-04-12 20:13:57 +0000185 if (!Addr)
186 report_fatal_error("Unable to allocate memory for common symbols!");
187 uint64_t Offset = 0;
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000188 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, TotalSize, 0));
Preston Gurdc68dda82012-04-12 20:13:57 +0000189 memset(Addr, 0, TotalSize);
190
191 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID
192 << " new addr: " << format("%p", Addr)
193 << " DataSize: " << TotalSize
194 << "\n");
195
196 // Assign the address of each symbol
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000197 for (CommonSymbolMap::const_iterator it = CommonSymbols.begin(),
198 itEnd = CommonSymbols.end(); it != itEnd; it++) {
Tim Northoverf00677d2012-10-29 10:47:04 +0000199 uint64_t Size = it->second.first;
200 uint64_t Align = it->second.second;
Preston Gurdc68dda82012-04-12 20:13:57 +0000201 StringRef Name;
202 it->first.getName(Name);
Tim Northoverf00677d2012-10-29 10:47:04 +0000203 if (Align) {
204 // This symbol has an alignment requirement.
205 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align);
206 Addr += AlignOffset;
207 Offset += AlignOffset;
208 DEBUG(dbgs() << "Allocating common symbol " << Name << " address " <<
Andrew Kaylor5fc8c7c2012-11-01 19:49:21 +0000209 format("%p\n", Addr));
Tim Northoverf00677d2012-10-29 10:47:04 +0000210 }
Preston Gurd689ff9c2012-04-16 22:12:58 +0000211 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000212 SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset);
Preston Gurdc68dda82012-04-12 20:13:57 +0000213 Offset += Size;
214 Addr += Size;
215 }
Preston Gurdc68dda82012-04-12 20:13:57 +0000216}
217
Preston Gurd689ff9c2012-04-16 22:12:58 +0000218unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
219 const SectionRef &Section,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000220 bool IsCode) {
221
222 unsigned StubBufSize = 0,
223 StubSize = getMaxStubSize();
224 error_code err;
225 if (StubSize > 0) {
226 for (relocation_iterator i = Section.begin_relocations(),
Preston Gurdc68dda82012-04-12 20:13:57 +0000227 e = Section.end_relocations(); i != e; i.increment(err), Check(err))
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000228 StubBufSize += StubSize;
229 }
230 StringRef data;
231 uint64_t Alignment64;
232 Check(Section.getContents(data));
233 Check(Section.getAlignment(Alignment64));
234
235 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Preston Gurdc68dda82012-04-12 20:13:57 +0000236 bool IsRequired;
237 bool IsVirtual;
238 bool IsZeroInit;
Andrew Kaylor53608a32012-11-15 23:50:01 +0000239 bool IsReadOnly;
Preston Gurdc68dda82012-04-12 20:13:57 +0000240 uint64_t DataSize;
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000241 StringRef Name;
Preston Gurdc68dda82012-04-12 20:13:57 +0000242 Check(Section.isRequiredForExecution(IsRequired));
243 Check(Section.isVirtual(IsVirtual));
244 Check(Section.isZeroInit(IsZeroInit));
Andrew Kaylor53608a32012-11-15 23:50:01 +0000245 Check(Section.isReadOnlyData(IsReadOnly));
Preston Gurdc68dda82012-04-12 20:13:57 +0000246 Check(Section.getSize(DataSize));
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000247 Check(Section.getName(Name));
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000248
Preston Gurdc68dda82012-04-12 20:13:57 +0000249 unsigned Allocate;
250 unsigned SectionID = Sections.size();
251 uint8_t *Addr;
252 const char *pData = 0;
253
254 // Some sections, such as debug info, don't need to be loaded for execution.
255 // Leave those where they are.
256 if (IsRequired) {
257 Allocate = DataSize + StubBufSize;
258 Addr = IsCode
259 ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID)
Andrew Kaylor53608a32012-11-15 23:50:01 +0000260 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID, IsReadOnly);
Preston Gurdc68dda82012-04-12 20:13:57 +0000261 if (!Addr)
262 report_fatal_error("Unable to allocate section memory!");
263
264 // Virtual sections have no data in the object image, so leave pData = 0
265 if (!IsVirtual)
266 pData = data.data();
267
268 // Zero-initialize or copy the data from the image
269 if (IsZeroInit || IsVirtual)
270 memset(Addr, 0, DataSize);
271 else
272 memcpy(Addr, pData, DataSize);
273
274 DEBUG(dbgs() << "emitSection SectionID: " << SectionID
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000275 << " Name: " << Name
Preston Gurdc68dda82012-04-12 20:13:57 +0000276 << " obj addr: " << format("%p", pData)
277 << " new addr: " << format("%p", Addr)
278 << " DataSize: " << DataSize
279 << " StubBufSize: " << StubBufSize
280 << " Allocate: " << Allocate
281 << "\n");
Preston Gurd689ff9c2012-04-16 22:12:58 +0000282 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Preston Gurdc68dda82012-04-12 20:13:57 +0000283 }
284 else {
285 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky5fe01982012-04-29 12:40:47 +0000286 // to handle later processing (and by 'handle' I mean don't do anything
287 // with these sections).
Preston Gurdc68dda82012-04-12 20:13:57 +0000288 Allocate = 0;
289 Addr = 0;
290 DEBUG(dbgs() << "emitSection SectionID: " << SectionID
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000291 << " Name: " << Name
Preston Gurdc68dda82012-04-12 20:13:57 +0000292 << " obj addr: " << format("%p", data.data())
293 << " new addr: 0"
294 << " DataSize: " << DataSize
295 << " StubBufSize: " << StubBufSize
296 << " Allocate: " << Allocate
297 << "\n");
298 }
299
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000300 Sections.push_back(SectionEntry(Name, Addr, Allocate, DataSize,
301 (uintptr_t)pData));
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000302 return SectionID;
303}
304
Preston Gurd689ff9c2012-04-16 22:12:58 +0000305unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
306 const SectionRef &Section,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000307 bool IsCode,
308 ObjSectionToIDMap &LocalSections) {
309
310 unsigned SectionID = 0;
311 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
312 if (i != LocalSections.end())
313 SectionID = i->second;
314 else {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000315 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000316 LocalSections[Section] = SectionID;
317 }
318 return SectionID;
319}
320
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000321void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
322 unsigned SectionID) {
323 Relocations[SectionID].push_back(RE);
324}
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000325
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000326void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
327 StringRef SymbolName) {
328 // Relocation by symbol. If the symbol is found in the global symbol table,
329 // create an appropriate section relocation. Otherwise, add it to
330 // ExternalSymbolRelocations.
331 SymbolTableMap::const_iterator Loc =
332 GlobalSymbolTable.find(SymbolName);
333 if (Loc == GlobalSymbolTable.end()) {
334 ExternalSymbolRelocations[SymbolName].push_back(RE);
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000335 } else {
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000336 // Copy the RE since we want to modify its addend.
337 RelocationEntry RECopy = RE;
338 RECopy.Addend += Loc->second.second;
339 Relocations[Loc->second.first].push_back(RECopy);
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000340 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000341}
342
343uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000344 if (Arch == Triple::arm) {
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000345 // TODO: There is only ARM far stub now. We should add the Thumb stub,
346 // and stubs for branches Thumb - ARM and ARM - Thumb.
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000347 uint32_t *StubAddr = (uint32_t*)Addr;
348 *StubAddr = 0xe51ff004; // ldr pc,<label>
349 return (uint8_t*)++StubAddr;
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000350 } else if (Arch == Triple::mipsel) {
351 uint32_t *StubAddr = (uint32_t*)Addr;
352 // 0: 3c190000 lui t9,%hi(addr).
353 // 4: 27390000 addiu t9,t9,%lo(addr).
354 // 8: 03200008 jr t9.
355 // c: 00000000 nop.
356 const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000;
357 const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0;
358
359 *StubAddr = LuiT9Instr;
360 StubAddr++;
361 *StubAddr = AdduiT9Instr;
362 StubAddr++;
363 *StubAddr = JrT9Instr;
364 StubAddr++;
365 *StubAddr = NopInstr;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000366 return Addr;
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000367 } else if (Arch == Triple::ppc64) {
368 // PowerPC64 stub: the address points to a function descriptor
369 // instead of the function itself. Load the function address
370 // on r11 and sets it to control register. Also loads the function
371 // TOC in r2 and environment pointer to r11.
372 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr)
373 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr)
374 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32
375 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr)
376 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr)
377 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1)
378 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12)
379 writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12)
380 writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11
381 writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2)
382 writeInt32BE(Addr+40, 0x4E800420); // bctr
Andrew Kaylor5fc8c7c2012-11-01 19:49:21 +0000383
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000384 return Addr;
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000385 }
386 return Addr;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000387}
388
389// Assign an address to a symbol name and resolve all the relocations
390// associated with it.
391void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
392 uint64_t Addr) {
393 // The address to use for relocation resolution is not
394 // the address of the local section buffer. We must be doing
Andrew Kaylor28989882012-11-05 20:57:16 +0000395 // a remote execution environment of some sort. Relocations can't
396 // be applied until all the sections have been moved. The client must
397 // trigger this with a call to MCJIT::finalize() or
398 // RuntimeDyld::resolveRelocations().
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000399 //
400 // Addr is a uint64_t because we can't assume the pointer width
401 // of the target is the same as that of the host. Just use a generic
402 // "big enough" type.
403 Sections[SectionID].LoadAddress = Addr;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000404}
405
406void RuntimeDyldImpl::resolveRelocationEntry(const RelocationEntry &RE,
407 uint64_t Value) {
Eric Christophera7ca3c22012-10-12 02:04:47 +0000408 // Ignore relocations for sections that were not loaded
409 if (Sections[RE.SectionID].Address != 0) {
Eric Christophera7ca3c22012-10-12 02:04:47 +0000410 DEBUG(dbgs() << "\tSectionID: " << RE.SectionID
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000411 << " + " << RE.Offset << " ("
412 << format("%p", Sections[RE.SectionID].Address + RE.Offset) << ")"
Eric Christophera7ca3c22012-10-12 02:04:47 +0000413 << " RelType: " << RE.RelType
414 << " Addend: " << RE.Addend
415 << "\n");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000416
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000417 resolveRelocation(Sections[RE.SectionID], RE.Offset,
Eric Christophera7ca3c22012-10-12 02:04:47 +0000418 Value, RE.RelType, RE.Addend);
Preston Gurdc68dda82012-04-12 20:13:57 +0000419 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000420}
421
422void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
423 uint64_t Value) {
424 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
425 resolveRelocationEntry(Relocs[i], Value);
426 }
427}
428
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000429void RuntimeDyldImpl::resolveExternalSymbols() {
430 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin(),
431 e = ExternalSymbolRelocations.end();
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000432 for (; i != e; i++) {
433 StringRef Name = i->first();
434 RelocationList &Relocs = i->second;
Eli Benderskyd98c9e92012-05-01 06:58:59 +0000435 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
436 if (Loc == GlobalSymbolTable.end()) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000437 // This is an external symbol, try to get it address from
438 // MemoryManager.
439 uint8_t *Addr = (uint8_t*) MemMgr->getPointerToNamedFunction(Name.data(),
440 true);
441 DEBUG(dbgs() << "Resolving relocations Name: " << Name
442 << "\t" << format("%p", Addr)
443 << "\n");
444 resolveRelocationList(Relocs, (uintptr_t)Addr);
445 } else {
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000446 report_fatal_error("Expected external symbol");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000447 }
448 }
449}
450
451
Jim Grosbach6e563312011-03-21 22:15:52 +0000452//===----------------------------------------------------------------------===//
453// RuntimeDyld class implementation
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000454RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
Andrew Kaylor53608a32012-11-15 23:50:01 +0000455 // FIXME: There's a potential issue lurking here if a single instance of
456 // RuntimeDyld is used to load multiple objects. The current implementation
457 // associates a single memory manager with a RuntimeDyld instance. Even
458 // though the public class spawns a new 'impl' instance for each load,
459 // they share a single memory manager. This can become a problem when page
460 // permissions are applied.
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000461 Dyld = 0;
462 MM = mm;
Jim Grosbach6e563312011-03-21 22:15:52 +0000463}
464
465RuntimeDyld::~RuntimeDyld() {
466 delete Dyld;
467}
468
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000469ObjectImage *RuntimeDyld::loadObject(ObjectBuffer *InputBuffer) {
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000470 if (!Dyld) {
Eli Benderskya66a1852012-01-16 08:56:09 +0000471 sys::LLVMFileType type = sys::IdentifyFileType(
472 InputBuffer->getBufferStart(),
473 static_cast<unsigned>(InputBuffer->getBufferSize()));
474 switch (type) {
475 case sys::ELF_Relocatable_FileType:
476 case sys::ELF_Executable_FileType:
477 case sys::ELF_SharedObject_FileType:
478 case sys::ELF_Core_FileType:
479 Dyld = new RuntimeDyldELF(MM);
480 break;
481 case sys::Mach_O_Object_FileType:
482 case sys::Mach_O_Executable_FileType:
483 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
484 case sys::Mach_O_Core_FileType:
485 case sys::Mach_O_PreloadExecutable_FileType:
486 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
487 case sys::Mach_O_DynamicLinker_FileType:
488 case sys::Mach_O_Bundle_FileType:
489 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
490 case sys::Mach_O_DSYMCompanion_FileType:
491 Dyld = new RuntimeDyldMachO(MM);
492 break;
493 case sys::Unknown_FileType:
494 case sys::Bitcode_FileType:
495 case sys::Archive_FileType:
496 case sys::COFF_FileType:
497 report_fatal_error("Incompatible object format!");
498 }
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000499 } else {
Eli Benderskya66a1852012-01-16 08:56:09 +0000500 if (!Dyld->isCompatibleFormat(InputBuffer))
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000501 report_fatal_error("Incompatible object format!");
502 }
503
Jim Grosbach6e563312011-03-21 22:15:52 +0000504 return Dyld->loadObject(InputBuffer);
505}
506
Jim Grosbachb0271052011-04-08 17:31:24 +0000507void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Jim Grosbach6e563312011-03-21 22:15:52 +0000508 return Dyld->getSymbolAddress(Name);
509}
510
Jim Grosbach35ed8422012-09-05 16:50:40 +0000511uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) {
512 return Dyld->getSymbolLoadAddress(Name);
513}
514
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000515void RuntimeDyld::resolveRelocations() {
516 Dyld->resolveRelocations();
517}
518
Jim Grosbach61425c02012-01-16 22:26:39 +0000519void RuntimeDyld::reassignSectionAddress(unsigned SectionID,
520 uint64_t Addr) {
521 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000522}
523
Jim Grosbache940c1b2012-09-13 21:50:06 +0000524void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
Jim Grosbach020f4e82012-01-16 23:50:55 +0000525 uint64_t TargetAddress) {
526 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
527}
528
Jim Grosbach91dde152011-03-22 18:22:27 +0000529StringRef RuntimeDyld::getErrorString() {
Jim Grosbachb3eecaf2011-03-22 18:19:42 +0000530 return Dyld->getErrorString();
531}
532
Jim Grosbach6e563312011-03-21 22:15:52 +0000533} // end namespace llvm