blob: c1f8baed1a4987d9d36b904fa9df853ff6f1c338 [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"
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000015#include "ObjectImageCommon.h"
Danil Malyshevcf852dc2011-07-13 07:57:58 +000016#include "RuntimeDyldImpl.h"
Eli Bendersky76463fd2012-01-22 07:05:02 +000017#include "RuntimeDyldELF.h"
18#include "RuntimeDyldMachO.h"
Eli Benderskya66a1852012-01-16 08:56:09 +000019#include "llvm/Support/Path.h"
Eli Bendersky76463fd2012-01-22 07:05:02 +000020
Jim Grosbach6e563312011-03-21 22:15:52 +000021using namespace llvm;
22using namespace llvm::object;
23
Chandler Carruth53c5e7b2011-04-05 23:54:31 +000024// Empty out-of-line virtual destructor as the key function.
25RTDyldMemoryManager::~RTDyldMemoryManager() {}
Danil Malyshevcf852dc2011-07-13 07:57:58 +000026RuntimeDyldImpl::~RuntimeDyldImpl() {}
Chandler Carruth53c5e7b2011-04-05 23:54:31 +000027
Jim Grosbach6e563312011-03-21 22:15:52 +000028namespace llvm {
Jim Grosbach6e563312011-03-21 22:15:52 +000029
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000030namespace {
31 // Helper for extensive error checking in debug builds.
32 error_code Check(error_code Err) {
33 if (Err) {
34 report_fatal_error(Err.message());
35 }
36 return Err;
37 }
38} // end anonymous namespace
Jim Grosbach61425c02012-01-16 22:26:39 +000039
Jim Grosbachf8c1c842011-04-12 21:20:41 +000040// Resolve the relocations for all symbols we currently know about.
41void RuntimeDyldImpl::resolveRelocations() {
Preston Gurdc68dda82012-04-12 20:13:57 +000042 // First, resolve relocations associated with external symbols.
Eli Bendersky37bc5a22012-04-30 12:15:58 +000043 resolveExternalSymbols();
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000044
Jim Grosbach61425c02012-01-16 22:26:39 +000045 // Just iterate over the sections we have and resolve all the relocations
46 // in them. Gross overkill, but it gets the job done.
47 for (int i = 0, e = Sections.size(); i != e; ++i) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000048 reassignSectionAddress(i, Sections[i].LoadAddress);
Jim Grosbach61425c02012-01-16 22:26:39 +000049 }
Jim Grosbachf8c1c842011-04-12 21:20:41 +000050}
51
Jim Grosbache940c1b2012-09-13 21:50:06 +000052void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress,
Jim Grosbach020f4e82012-01-16 23:50:55 +000053 uint64_t TargetAddress) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000054 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
55 if (Sections[i].Address == LocalAddress) {
56 reassignSectionAddress(i, TargetAddress);
57 return;
58 }
59 }
60 llvm_unreachable("Attempting to remap address of unknown section!");
Jim Grosbach020f4e82012-01-16 23:50:55 +000061}
62
Eli Bendersky5fe01982012-04-29 12:40:47 +000063// Subclasses can implement this method to create specialized image instances.
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +000064// The caller owns the pointer that is returned.
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000065ObjectImage *RuntimeDyldImpl::createObjectImage(ObjectBuffer *InputBuffer) {
66 return new ObjectImageCommon(InputBuffer);
Preston Gurd689ff9c2012-04-16 22:12:58 +000067}
68
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000069ObjectImage *RuntimeDyldImpl::loadObject(ObjectBuffer *InputBuffer) {
Preston Gurd689ff9c2012-04-16 22:12:58 +000070 OwningPtr<ObjectImage> obj(createObjectImage(InputBuffer));
Preston Gurdc68dda82012-04-12 20:13:57 +000071 if (!obj)
72 report_fatal_error("Unable to create object image from memory buffer!");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000073
74 Arch = (Triple::ArchType)obj->getArch();
75
Eli Benderskyd98c9e92012-05-01 06:58:59 +000076 // Symbols found in this object
77 StringMap<SymbolLoc> LocalSymbols;
78 // Used sections from the object file
79 ObjSectionToIDMap LocalSections;
80
81 // Common symbols requiring allocation, and the total size required to
82 // allocate all common symbols.
83 CommonSymbolMap CommonSymbols;
84 uint64_t CommonSize = 0;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000085
86 error_code err;
87 // Parse symbols
88 DEBUG(dbgs() << "Parse symbols:\n");
89 for (symbol_iterator i = obj->begin_symbols(), e = obj->end_symbols();
90 i != e; i.increment(err)) {
91 Check(err);
92 object::SymbolRef::Type SymType;
93 StringRef Name;
94 Check(i->getType(SymType));
95 Check(i->getName(Name));
96
Preston Gurdc68dda82012-04-12 20:13:57 +000097 uint32_t flags;
98 Check(i->getFlags(flags));
99
100 bool isCommon = flags & SymbolRef::SF_Common;
101 if (isCommon) {
102 // Add the common symbols to a list. We'll allocate them all below.
103 uint64_t Size = 0;
104 Check(i->getSize(Size));
105 CommonSize += Size;
106 CommonSymbols[*i] = Size;
107 } else {
108 if (SymType == object::SymbolRef::ST_Function ||
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000109 SymType == object::SymbolRef::ST_Data ||
110 SymType == object::SymbolRef::ST_Unknown) {
Preston Gurdc68dda82012-04-12 20:13:57 +0000111 uint64_t FileOffset;
Eli Bendersky5fe01982012-04-29 12:40:47 +0000112 StringRef SectionData;
Preston Gurdc68dda82012-04-12 20:13:57 +0000113 section_iterator si = obj->end_sections();
114 Check(i->getFileOffset(FileOffset));
115 Check(i->getSection(si));
116 if (si == obj->end_sections()) continue;
Eli Bendersky5fe01982012-04-29 12:40:47 +0000117 Check(si->getContents(SectionData));
Preston Gurdc68dda82012-04-12 20:13:57 +0000118 const uint8_t* SymPtr = (const uint8_t*)InputBuffer->getBufferStart() +
119 (uintptr_t)FileOffset;
Eli Bendersky5fe01982012-04-29 12:40:47 +0000120 uintptr_t SectOffset = (uintptr_t)(SymPtr -
121 (const uint8_t*)SectionData.begin());
Preston Gurdc68dda82012-04-12 20:13:57 +0000122 unsigned SectionID =
Preston Gurd689ff9c2012-04-16 22:12:58 +0000123 findOrEmitSection(*obj,
124 *si,
Preston Gurdc68dda82012-04-12 20:13:57 +0000125 SymType == object::SymbolRef::ST_Function,
126 LocalSections);
Preston Gurdc68dda82012-04-12 20:13:57 +0000127 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
128 DEBUG(dbgs() << "\tFileOffset: " << format("%p", (uintptr_t)FileOffset)
129 << " flags: " << flags
130 << " SID: " << SectionID
131 << " Offset: " << format("%p", SectOffset));
Eli Bendersky5fe01982012-04-29 12:40:47 +0000132 bool isGlobal = flags & SymbolRef::SF_Global;
Preston Gurdc68dda82012-04-12 20:13:57 +0000133 if (isGlobal)
Eli Benderskyd98c9e92012-05-01 06:58:59 +0000134 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
Preston Gurdc68dda82012-04-12 20:13:57 +0000135 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000136 }
137 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
138 }
139
Preston Gurdc68dda82012-04-12 20:13:57 +0000140 // Allocate common symbols
141 if (CommonSize != 0)
Preston Gurd689ff9c2012-04-16 22:12:58 +0000142 emitCommonSymbols(*obj, CommonSymbols, CommonSize, LocalSymbols);
Preston Gurdc68dda82012-04-12 20:13:57 +0000143
Eli Bendersky5fe01982012-04-29 12:40:47 +0000144 // Parse and process relocations
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000145 DEBUG(dbgs() << "Parse relocations:\n");
146 for (section_iterator si = obj->begin_sections(),
147 se = obj->end_sections(); si != se; si.increment(err)) {
148 Check(err);
149 bool isFirstRelocation = true;
150 unsigned SectionID = 0;
151 StubMap Stubs;
152
153 for (relocation_iterator i = si->begin_relocations(),
154 e = si->end_relocations(); i != e; i.increment(err)) {
155 Check(err);
156
Eli Bendersky5fe01982012-04-29 12:40:47 +0000157 // If it's the first relocation in this section, find its SectionID
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000158 if (isFirstRelocation) {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000159 SectionID = findOrEmitSection(*obj, *si, true, LocalSections);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000160 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
161 isFirstRelocation = false;
162 }
163
164 ObjRelocationInfo RI;
165 RI.SectionID = SectionID;
166 Check(i->getAdditionalInfo(RI.AdditionalInfo));
167 Check(i->getOffset(RI.Offset));
168 Check(i->getSymbol(RI.Symbol));
169 Check(i->getType(RI.Type));
170
171 DEBUG(dbgs() << "\t\tAddend: " << RI.AdditionalInfo
172 << " Offset: " << format("%p", (uintptr_t)RI.Offset)
173 << " Type: " << (uint32_t)(RI.Type & 0xffffffffL)
174 << "\n");
175 processRelocationRef(RI, *obj, LocalSections, LocalSymbols, Stubs);
176 }
177 }
Preston Gurd689ff9c2012-04-16 22:12:58 +0000178
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000179 return obj.take();
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000180}
181
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000182void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
183 const CommonSymbolMap &CommonSymbols,
184 uint64_t TotalSize,
185 SymbolTableMap &SymbolTable) {
Preston Gurdc68dda82012-04-12 20:13:57 +0000186 // Allocate memory for the section
187 unsigned SectionID = Sections.size();
188 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void*),
189 SectionID);
190 if (!Addr)
191 report_fatal_error("Unable to allocate memory for common symbols!");
192 uint64_t Offset = 0;
193 Sections.push_back(SectionEntry(Addr, TotalSize, TotalSize, 0));
194 memset(Addr, 0, TotalSize);
195
196 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID
197 << " new addr: " << format("%p", Addr)
198 << " DataSize: " << TotalSize
199 << "\n");
200
201 // Assign the address of each symbol
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000202 for (CommonSymbolMap::const_iterator it = CommonSymbols.begin(),
203 itEnd = CommonSymbols.end(); it != itEnd; it++) {
Preston Gurdc68dda82012-04-12 20:13:57 +0000204 StringRef Name;
205 it->first.getName(Name);
Preston Gurd689ff9c2012-04-16 22:12:58 +0000206 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000207 SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset);
208 uint64_t Size = it->second;
Preston Gurdc68dda82012-04-12 20:13:57 +0000209 Offset += Size;
210 Addr += Size;
211 }
Preston Gurdc68dda82012-04-12 20:13:57 +0000212}
213
Preston Gurd689ff9c2012-04-16 22:12:58 +0000214unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
215 const SectionRef &Section,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000216 bool IsCode) {
217
218 unsigned StubBufSize = 0,
219 StubSize = getMaxStubSize();
220 error_code err;
221 if (StubSize > 0) {
222 for (relocation_iterator i = Section.begin_relocations(),
Preston Gurdc68dda82012-04-12 20:13:57 +0000223 e = Section.end_relocations(); i != e; i.increment(err), Check(err))
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000224 StubBufSize += StubSize;
225 }
226 StringRef data;
227 uint64_t Alignment64;
228 Check(Section.getContents(data));
229 Check(Section.getAlignment(Alignment64));
230
231 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Preston Gurdc68dda82012-04-12 20:13:57 +0000232 bool IsRequired;
233 bool IsVirtual;
234 bool IsZeroInit;
235 uint64_t DataSize;
236 Check(Section.isRequiredForExecution(IsRequired));
237 Check(Section.isVirtual(IsVirtual));
238 Check(Section.isZeroInit(IsZeroInit));
239 Check(Section.getSize(DataSize));
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000240
Preston Gurdc68dda82012-04-12 20:13:57 +0000241 unsigned Allocate;
242 unsigned SectionID = Sections.size();
243 uint8_t *Addr;
244 const char *pData = 0;
245
246 // Some sections, such as debug info, don't need to be loaded for execution.
247 // Leave those where they are.
248 if (IsRequired) {
249 Allocate = DataSize + StubBufSize;
250 Addr = IsCode
251 ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID)
252 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID);
253 if (!Addr)
254 report_fatal_error("Unable to allocate section memory!");
255
256 // Virtual sections have no data in the object image, so leave pData = 0
257 if (!IsVirtual)
258 pData = data.data();
259
260 // Zero-initialize or copy the data from the image
261 if (IsZeroInit || IsVirtual)
262 memset(Addr, 0, DataSize);
263 else
264 memcpy(Addr, pData, DataSize);
265
266 DEBUG(dbgs() << "emitSection SectionID: " << SectionID
267 << " obj addr: " << format("%p", pData)
268 << " new addr: " << format("%p", Addr)
269 << " DataSize: " << DataSize
270 << " StubBufSize: " << StubBufSize
271 << " Allocate: " << Allocate
272 << "\n");
Preston Gurd689ff9c2012-04-16 22:12:58 +0000273 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Preston Gurdc68dda82012-04-12 20:13:57 +0000274 }
275 else {
276 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky5fe01982012-04-29 12:40:47 +0000277 // to handle later processing (and by 'handle' I mean don't do anything
278 // with these sections).
Preston Gurdc68dda82012-04-12 20:13:57 +0000279 Allocate = 0;
280 Addr = 0;
281 DEBUG(dbgs() << "emitSection SectionID: " << SectionID
282 << " obj addr: " << format("%p", data.data())
283 << " new addr: 0"
284 << " DataSize: " << DataSize
285 << " StubBufSize: " << StubBufSize
286 << " Allocate: " << Allocate
287 << "\n");
288 }
289
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000290 Sections.push_back(SectionEntry(Addr, Allocate, DataSize,(uintptr_t)pData));
291 return SectionID;
292}
293
Preston Gurd689ff9c2012-04-16 22:12:58 +0000294unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
295 const SectionRef &Section,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000296 bool IsCode,
297 ObjSectionToIDMap &LocalSections) {
298
299 unsigned SectionID = 0;
300 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
301 if (i != LocalSections.end())
302 SectionID = i->second;
303 else {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000304 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000305 LocalSections[Section] = SectionID;
306 }
307 return SectionID;
308}
309
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000310void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
311 unsigned SectionID) {
312 Relocations[SectionID].push_back(RE);
313}
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000314
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000315void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
316 StringRef SymbolName) {
317 // Relocation by symbol. If the symbol is found in the global symbol table,
318 // create an appropriate section relocation. Otherwise, add it to
319 // ExternalSymbolRelocations.
320 SymbolTableMap::const_iterator Loc =
321 GlobalSymbolTable.find(SymbolName);
322 if (Loc == GlobalSymbolTable.end()) {
323 ExternalSymbolRelocations[SymbolName].push_back(RE);
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000324 } else {
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000325 // Copy the RE since we want to modify its addend.
326 RelocationEntry RECopy = RE;
327 RECopy.Addend += Loc->second.second;
328 Relocations[Loc->second.first].push_back(RECopy);
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000329 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000330}
331
332uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000333 if (Arch == Triple::arm) {
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000334 // TODO: There is only ARM far stub now. We should add the Thumb stub,
335 // and stubs for branches Thumb - ARM and ARM - Thumb.
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000336 uint32_t *StubAddr = (uint32_t*)Addr;
337 *StubAddr = 0xe51ff004; // ldr pc,<label>
338 return (uint8_t*)++StubAddr;
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000339 } else if (Arch == Triple::mipsel) {
340 uint32_t *StubAddr = (uint32_t*)Addr;
341 // 0: 3c190000 lui t9,%hi(addr).
342 // 4: 27390000 addiu t9,t9,%lo(addr).
343 // 8: 03200008 jr t9.
344 // c: 00000000 nop.
345 const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000;
346 const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0;
347
348 *StubAddr = LuiT9Instr;
349 StubAddr++;
350 *StubAddr = AdduiT9Instr;
351 StubAddr++;
352 *StubAddr = JrT9Instr;
353 StubAddr++;
354 *StubAddr = NopInstr;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000355 return Addr;
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000356 }
357 return Addr;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000358}
359
360// Assign an address to a symbol name and resolve all the relocations
361// associated with it.
362void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
363 uint64_t Addr) {
364 // The address to use for relocation resolution is not
365 // the address of the local section buffer. We must be doing
366 // a remote execution environment of some sort. Re-apply any
367 // relocations referencing this section with the given address.
368 //
369 // Addr is a uint64_t because we can't assume the pointer width
370 // of the target is the same as that of the host. Just use a generic
371 // "big enough" type.
372 Sections[SectionID].LoadAddress = Addr;
373 DEBUG(dbgs() << "Resolving relocations Section #" << SectionID
374 << "\t" << format("%p", (uint8_t *)Addr)
375 << "\n");
376 resolveRelocationList(Relocations[SectionID], Addr);
377}
378
379void RuntimeDyldImpl::resolveRelocationEntry(const RelocationEntry &RE,
380 uint64_t Value) {
Eric Christophera7ca3c22012-10-12 02:04:47 +0000381 // Ignore relocations for sections that were not loaded
382 if (Sections[RE.SectionID].Address != 0) {
383 uint8_t *Target = Sections[RE.SectionID].Address + RE.Offset;
384 DEBUG(dbgs() << "\tSectionID: " << RE.SectionID
385 << " + " << RE.Offset << " (" << format("%p", Target) << ")"
386 << " RelType: " << RE.RelType
387 << " Addend: " << RE.Addend
388 << "\n");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000389
Eric Christophera7ca3c22012-10-12 02:04:47 +0000390 resolveRelocation(Target, Sections[RE.SectionID].LoadAddress + RE.Offset,
391 Value, RE.RelType, RE.Addend);
Preston Gurdc68dda82012-04-12 20:13:57 +0000392 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000393}
394
395void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
396 uint64_t Value) {
397 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
398 resolveRelocationEntry(Relocs[i], Value);
399 }
400}
401
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000402void RuntimeDyldImpl::resolveExternalSymbols() {
403 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin(),
404 e = ExternalSymbolRelocations.end();
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000405 for (; i != e; i++) {
406 StringRef Name = i->first();
407 RelocationList &Relocs = i->second;
Eli Benderskyd98c9e92012-05-01 06:58:59 +0000408 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
409 if (Loc == GlobalSymbolTable.end()) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000410 // This is an external symbol, try to get it address from
411 // MemoryManager.
412 uint8_t *Addr = (uint8_t*) MemMgr->getPointerToNamedFunction(Name.data(),
413 true);
414 DEBUG(dbgs() << "Resolving relocations Name: " << Name
415 << "\t" << format("%p", Addr)
416 << "\n");
417 resolveRelocationList(Relocs, (uintptr_t)Addr);
418 } else {
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000419 report_fatal_error("Expected external symbol");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000420 }
421 }
422}
423
424
Jim Grosbach6e563312011-03-21 22:15:52 +0000425//===----------------------------------------------------------------------===//
426// RuntimeDyld class implementation
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000427RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
428 Dyld = 0;
429 MM = mm;
Jim Grosbach6e563312011-03-21 22:15:52 +0000430}
431
432RuntimeDyld::~RuntimeDyld() {
433 delete Dyld;
434}
435
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000436ObjectImage *RuntimeDyld::loadObject(ObjectBuffer *InputBuffer) {
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000437 if (!Dyld) {
Eli Benderskya66a1852012-01-16 08:56:09 +0000438 sys::LLVMFileType type = sys::IdentifyFileType(
439 InputBuffer->getBufferStart(),
440 static_cast<unsigned>(InputBuffer->getBufferSize()));
441 switch (type) {
442 case sys::ELF_Relocatable_FileType:
443 case sys::ELF_Executable_FileType:
444 case sys::ELF_SharedObject_FileType:
445 case sys::ELF_Core_FileType:
446 Dyld = new RuntimeDyldELF(MM);
447 break;
448 case sys::Mach_O_Object_FileType:
449 case sys::Mach_O_Executable_FileType:
450 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
451 case sys::Mach_O_Core_FileType:
452 case sys::Mach_O_PreloadExecutable_FileType:
453 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
454 case sys::Mach_O_DynamicLinker_FileType:
455 case sys::Mach_O_Bundle_FileType:
456 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
457 case sys::Mach_O_DSYMCompanion_FileType:
458 Dyld = new RuntimeDyldMachO(MM);
459 break;
460 case sys::Unknown_FileType:
461 case sys::Bitcode_FileType:
462 case sys::Archive_FileType:
463 case sys::COFF_FileType:
464 report_fatal_error("Incompatible object format!");
465 }
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000466 } else {
Eli Benderskya66a1852012-01-16 08:56:09 +0000467 if (!Dyld->isCompatibleFormat(InputBuffer))
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000468 report_fatal_error("Incompatible object format!");
469 }
470
Jim Grosbach6e563312011-03-21 22:15:52 +0000471 return Dyld->loadObject(InputBuffer);
472}
473
Jim Grosbachb0271052011-04-08 17:31:24 +0000474void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Jim Grosbach6e563312011-03-21 22:15:52 +0000475 return Dyld->getSymbolAddress(Name);
476}
477
Jim Grosbach35ed8422012-09-05 16:50:40 +0000478uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) {
479 return Dyld->getSymbolLoadAddress(Name);
480}
481
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000482void RuntimeDyld::resolveRelocations() {
483 Dyld->resolveRelocations();
484}
485
Jim Grosbach61425c02012-01-16 22:26:39 +0000486void RuntimeDyld::reassignSectionAddress(unsigned SectionID,
487 uint64_t Addr) {
488 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000489}
490
Jim Grosbache940c1b2012-09-13 21:50:06 +0000491void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
Jim Grosbach020f4e82012-01-16 23:50:55 +0000492 uint64_t TargetAddress) {
493 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
494}
495
Jim Grosbach91dde152011-03-22 18:22:27 +0000496StringRef RuntimeDyld::getErrorString() {
Jim Grosbachb3eecaf2011-03-22 18:19:42 +0000497 return Dyld->getErrorString();
498}
499
Jim Grosbach6e563312011-03-21 22:15:52 +0000500} // end namespace llvm