LLVM 24.0.0git
RuntimeDyld.cpp
Go to the documentation of this file.
1//===-- RuntimeDyld.cpp - Run-time dynamic linker for MC-JIT ----*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Implementation of the MC-JIT runtime dynamic linker.
10//
11//===----------------------------------------------------------------------===//
12
14#include "RuntimeDyldCOFF.h"
15#include "RuntimeDyldELF.h"
16#include "RuntimeDyldImpl.h"
17#include "RuntimeDyldMachO.h"
18#include "llvm/Object/COFF.h"
23#include <mutex>
24
25#include <future>
26
27using namespace llvm;
28using namespace llvm::object;
29
30#define DEBUG_TYPE "dyld"
31
32namespace {
33
34enum RuntimeDyldErrorCode {
35 GenericRTDyldError = 1
36};
37
38// FIXME: This class is only here to support the transition to llvm::Error. It
39// will be removed once this transition is complete. Clients should prefer to
40// deal with the Error value directly, rather than converting to error_code.
41class RuntimeDyldErrorCategory : public std::error_category {
42public:
43 const char *name() const noexcept override { return "runtimedyld"; }
44
45 std::string message(int Condition) const override {
46 switch (static_cast<RuntimeDyldErrorCode>(Condition)) {
47 case GenericRTDyldError: return "Generic RuntimeDyld error";
48 }
49 llvm_unreachable("Unrecognized RuntimeDyldErrorCode");
50 }
51};
52
53}
54
56
58 OS << ErrMsg << "\n";
59}
60
61std::error_code RuntimeDyldError::convertToErrorCode() const {
62 static RuntimeDyldErrorCategory RTDyldErrorCategory;
63 return std::error_code(GenericRTDyldError, RTDyldErrorCategory);
64}
65
66// Empty out-of-line virtual destructor as the key function.
68
69// Pin LoadedObjectInfo's vtables to this file.
71
72namespace llvm {
73
75
77 MemMgr.deregisterEHFrames();
78}
79
80#ifndef NDEBUG
81static void dumpSectionMemory(const SectionEntry &S, StringRef State) {
82 dbgs() << "----- Contents of section " << S.getName() << " " << State
83 << " -----";
84
85 if (S.getAddress() == nullptr) {
86 dbgs() << "\n <section not emitted>\n";
87 return;
88 }
89
90 const unsigned ColsPerRow = 16;
91
92 uint8_t *DataAddr = S.getAddress();
93 uint64_t LoadAddr = S.getLoadAddress();
94
95 unsigned StartPadding = LoadAddr & (ColsPerRow - 1);
96 unsigned BytesRemaining = S.getSize();
97
98 if (StartPadding) {
99 dbgs() << "\n" << format("0x%016" PRIx64,
100 LoadAddr & ~(uint64_t)(ColsPerRow - 1)) << ":";
101 while (StartPadding--)
102 dbgs() << " ";
103 }
104
105 while (BytesRemaining > 0) {
106 if ((LoadAddr & (ColsPerRow - 1)) == 0)
107 dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr) << ":";
108
109 dbgs() << " " << format("%02x", *DataAddr);
110
111 ++DataAddr;
112 ++LoadAddr;
113 --BytesRemaining;
114 }
115
116 dbgs() << "\n";
117}
118#endif
119
120// Resolve the relocations for all symbols we currently know about.
122 std::lock_guard<sys::Mutex> locked(lock);
123
124 // Print out the sections prior to relocation.
125 LLVM_DEBUG({
126 for (SectionEntry &S : Sections)
127 dumpSectionMemory(S, "before relocations");
128 });
129
130 // First, resolve relocations associated with external symbols.
131 if (auto Err = resolveExternalSymbols()) {
132 HasError = true;
133 ErrorStr = toString(std::move(Err));
134 }
135
137
138 // Print out sections after relocation.
139 LLVM_DEBUG({
140 for (SectionEntry &S : Sections)
141 dumpSectionMemory(S, "after relocations");
142 });
143}
144
146 // Iterate over all outstanding relocations
147 for (const auto &Rel : Relocations) {
148 // The Section here (Sections[i]) refers to the section in which the
149 // symbol for the relocation is located. The SectionID in the relocation
150 // entry provides the section to which the relocation will be applied.
151 unsigned Idx = Rel.first;
152 uint64_t Addr = getSectionLoadAddress(Idx);
153 LLVM_DEBUG(dbgs() << "Resolving relocations Section #" << Idx << "\t"
154 << format("%p", (uintptr_t)Addr) << "\n");
155 resolveRelocationList(Rel.second, Addr);
156 }
157 Relocations.clear();
158}
159
160void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress,
161 uint64_t TargetAddress) {
162 std::lock_guard<sys::Mutex> locked(lock);
163 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
164 if (Sections[i].getAddress() == LocalAddress) {
165 reassignSectionAddress(i, TargetAddress);
166 return;
167 }
168 }
169 llvm_unreachable("Attempting to remap address of unknown section!");
170}
171
172static Error getOffset(const SymbolRef &Sym, SectionRef Sec,
173 uint64_t &Result) {
174 Expected<uint64_t> AddressOrErr = Sym.getAddress();
175 if (!AddressOrErr)
176 return AddressOrErr.takeError();
177 Result = *AddressOrErr - Sec.getAddress();
178 return Error::success();
179}
180
183 std::lock_guard<sys::Mutex> locked(lock);
184
185 // Save information about our target
186 Arch = Obj.getArch();
187 IsTargetLittleEndian = Obj.isLittleEndian();
188 setMipsABI(Obj);
189
190 // Compute the memory size required to load all sections to be loaded
191 // and pass this information to the memory manager
192 if (MemMgr.needsToReserveAllocationSpace()) {
193 uint64_t CodeSize = 0, RODataSize = 0, RWDataSize = 0;
194 Align CodeAlign, RODataAlign, RWDataAlign;
195 if (auto Err = computeTotalAllocSize(Obj, CodeSize, CodeAlign, RODataSize,
196 RODataAlign, RWDataSize, RWDataAlign))
197 return std::move(Err);
198 MemMgr.reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign,
199 RWDataSize, RWDataAlign);
200 }
201
202 // Used sections from the object file
203 ObjSectionToIDMap LocalSections;
204
205 // Common symbols requiring allocation, with their sizes and alignments
206 CommonSymbolList CommonSymbolsToAllocate;
207
208 uint64_t CommonSize = 0;
209 uint32_t CommonAlign = 0;
210
211 // First, collect all weak and common symbols. We need to know if stronger
212 // definitions occur elsewhere.
213 JITSymbolResolver::LookupSet ResponsibilitySet;
214 {
216 for (auto &Sym : Obj.symbols()) {
217 Expected<uint32_t> FlagsOrErr = Sym.getFlags();
218 if (!FlagsOrErr)
219 // TODO: Test this error.
220 return FlagsOrErr.takeError();
221 if ((*FlagsOrErr & SymbolRef::SF_Common) ||
222 (*FlagsOrErr & SymbolRef::SF_Weak)) {
223 // Get symbol name.
224 if (auto NameOrErr = Sym.getName())
225 Symbols.insert(*NameOrErr);
226 else
227 return NameOrErr.takeError();
228 }
229 }
230
231 if (auto ResultOrErr = Resolver.getResponsibilitySet(Symbols))
232 ResponsibilitySet = std::move(*ResultOrErr);
233 else
234 return ResultOrErr.takeError();
235 }
236
237 // Parse symbols
238 LLVM_DEBUG(dbgs() << "Parse symbols:\n");
239 for (symbol_iterator I = Obj.symbol_begin(), E = Obj.symbol_end(); I != E;
240 ++I) {
241 Expected<uint32_t> FlagsOrErr = I->getFlags();
242 if (!FlagsOrErr)
243 // TODO: Test this error.
244 return FlagsOrErr.takeError();
245
246 // Skip undefined symbols.
247 if (*FlagsOrErr & SymbolRef::SF_Undefined)
248 continue;
249
250 // Get the symbol type.
252 if (auto SymTypeOrErr = I->getType())
253 SymType = *SymTypeOrErr;
254 else
255 return SymTypeOrErr.takeError();
256
257 // Get symbol name.
258 StringRef Name;
259 if (auto NameOrErr = I->getName())
260 Name = *NameOrErr;
261 else
262 return NameOrErr.takeError();
263
264 // Compute JIT symbol flags.
265 auto JITSymFlags = getJITSymbolFlags(*I);
266 if (!JITSymFlags)
267 return JITSymFlags.takeError();
268
269 // If this is a weak definition, check to see if there's a strong one.
270 // If there is, skip this symbol (we won't be providing it: the strong
271 // definition will). If there's no strong definition, make this definition
272 // strong.
273 if (JITSymFlags->isWeak() || JITSymFlags->isCommon()) {
274 // First check whether there's already a definition in this instance.
275 if (GlobalSymbolTable.count(Name))
276 continue;
277
278 // If we're not responsible for this symbol, skip it.
279 if (!ResponsibilitySet.count(Name))
280 continue;
281
282 // Otherwise update the flags on the symbol to make this definition
283 // strong.
284 if (JITSymFlags->isWeak())
285 *JITSymFlags &= ~JITSymbolFlags::Weak;
286 if (JITSymFlags->isCommon()) {
287 *JITSymFlags &= ~JITSymbolFlags::Common;
288 uint32_t Align = I->getAlignment();
289 uint64_t Size = I->getCommonSize();
290 if (!CommonAlign)
291 CommonAlign = Align;
292 CommonSize = alignTo(CommonSize, Align) + Size;
293 CommonSymbolsToAllocate.push_back(*I);
294 }
295 }
296
297 if (*FlagsOrErr & SymbolRef::SF_Absolute &&
298 SymType != object::SymbolRef::ST_File) {
299 uint64_t Addr = 0;
300 if (auto AddrOrErr = I->getAddress())
301 Addr = *AddrOrErr;
302 else
303 return AddrOrErr.takeError();
304
305 unsigned SectionID = AbsoluteSymbolSection;
306
307 LLVM_DEBUG(dbgs() << "\tType: " << SymType << " (absolute) Name: " << Name
308 << " SID: " << SectionID
309 << " Offset: " << format("%p", (uintptr_t)Addr)
310 << " flags: " << *FlagsOrErr << "\n");
311 // Skip absolute symbol relocations.
312 if (!Name.empty()) {
313 auto Result = GlobalSymbolTable.insert_or_assign(
314 Name, SymbolTableEntry(SectionID, Addr, *JITSymFlags));
315 processNewSymbol(*I, Result.first->getValue());
316 }
317 } else if (SymType == object::SymbolRef::ST_Function ||
318 SymType == object::SymbolRef::ST_Data ||
320 SymType == object::SymbolRef::ST_Other) {
321
322 section_iterator SI = Obj.section_end();
323 if (auto SIOrErr = I->getSection())
324 SI = *SIOrErr;
325 else
326 return SIOrErr.takeError();
327
328 if (SI == Obj.section_end())
329 continue;
330
331 // Get symbol offset.
332 uint64_t SectOffset;
333 if (auto Err = getOffset(*I, *SI, SectOffset))
334 return std::move(Err);
335
336 bool IsCode = SI->isText();
337 unsigned SectionID;
338 if (auto SectionIDOrErr =
339 findOrEmitSection(Obj, *SI, IsCode, LocalSections))
340 SectionID = *SectionIDOrErr;
341 else
342 return SectionIDOrErr.takeError();
343
344 LLVM_DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name
345 << " SID: " << SectionID
346 << " Offset: " << format("%p", (uintptr_t)SectOffset)
347 << " flags: " << *FlagsOrErr << "\n");
348 // Skip absolute symbol relocations.
349 if (!Name.empty()) {
350 auto Result = GlobalSymbolTable.insert_or_assign(
351 Name, SymbolTableEntry(SectionID, SectOffset, *JITSymFlags));
352 processNewSymbol(*I, Result.first->getValue());
353 }
354 }
355 }
356
357 // Allocate common symbols
358 if (auto Err = emitCommonSymbols(Obj, CommonSymbolsToAllocate, CommonSize,
359 CommonAlign))
360 return std::move(Err);
361
362 // Parse and process relocations
363 LLVM_DEBUG(dbgs() << "Parse relocations:\n");
364 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
365 SI != SE; ++SI) {
366 StubMap Stubs;
367
368 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection();
369 if (!RelSecOrErr)
370 return RelSecOrErr.takeError();
371
372 section_iterator RelocatedSection = *RelSecOrErr;
373 if (RelocatedSection == SE)
374 continue;
375
376 relocation_iterator I = SI->relocation_begin();
377 relocation_iterator E = SI->relocation_end();
378
379 if (I == E && !ProcessAllSections)
380 continue;
381
382 bool IsCode = RelocatedSection->isText();
383 unsigned SectionID = 0;
384 if (auto SectionIDOrErr = findOrEmitSection(Obj, *RelocatedSection, IsCode,
385 LocalSections))
386 SectionID = *SectionIDOrErr;
387 else
388 return SectionIDOrErr.takeError();
389
390 LLVM_DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
391
392 for (; I != E;)
393 if (auto IOrErr = processRelocationRef(SectionID, I, Obj, LocalSections, Stubs))
394 I = *IOrErr;
395 else
396 return IOrErr.takeError();
397
398 // If there is a NotifyStubEmitted callback set, call it to register any
399 // stubs created for this section.
400 if (NotifyStubEmitted) {
401 StringRef FileName = Obj.getFileName();
402 StringRef SectionName = Sections[SectionID].getName();
403 for (auto &KV : Stubs) {
404
405 auto &VR = KV.first;
406 uint64_t StubAddr = KV.second;
407
408 // If this is a named stub, just call NotifyStubEmitted.
409 if (VR.SymbolName) {
410 NotifyStubEmitted(FileName, SectionName, VR.SymbolName, SectionID,
411 StubAddr);
412 continue;
413 }
414
415 // Otherwise we will have to try a reverse lookup on the globla symbol table.
416 for (auto &GSTMapEntry : GlobalSymbolTable) {
417 StringRef SymbolName = GSTMapEntry.first();
418 auto &GSTEntry = GSTMapEntry.second;
419 if (GSTEntry.getSectionID() == VR.SectionID &&
420 GSTEntry.getOffset() == VR.Offset) {
421 NotifyStubEmitted(FileName, SectionName, SymbolName, SectionID,
422 StubAddr);
423 break;
424 }
425 }
426 }
427 }
428 }
429
430 // Process remaining sections
431 if (ProcessAllSections) {
432 LLVM_DEBUG(dbgs() << "Process remaining sections:\n");
433 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
434 SI != SE; ++SI) {
435
436 /* Ignore already loaded sections */
437 if (LocalSections.find(*SI) != LocalSections.end())
438 continue;
439
440 bool IsCode = SI->isText();
441 if (auto SectionIDOrErr =
442 findOrEmitSection(Obj, *SI, IsCode, LocalSections))
443 LLVM_DEBUG(dbgs() << "\tSectionID: " << (*SectionIDOrErr) << "\n");
444 else
445 return SectionIDOrErr.takeError();
446 }
447 }
448
449 // Give the subclasses a chance to tie-up any loose ends.
450 if (auto Err = finalizeLoad(Obj, LocalSections))
451 return std::move(Err);
452
453// for (auto E : LocalSections)
454// llvm::dbgs() << "Added: " << E.first.getRawDataRefImpl() << " -> " << E.second << "\n";
455
456 return LocalSections;
457}
458
459// A helper method for computeTotalAllocSize.
460// Computes the memory size required to allocate sections with the given sizes,
461// assuming that all sections are allocated with the given alignment
462static uint64_t
463computeAllocationSizeForSections(std::vector<uint64_t> &SectionSizes,
464 Align Alignment) {
465 uint64_t TotalSize = 0;
466 for (uint64_t SectionSize : SectionSizes)
467 TotalSize += alignTo(SectionSize, Alignment);
468 return TotalSize;
469}
470
471static bool isRequiredForExecution(const SectionRef Section) {
472 const ObjectFile *Obj = Section.getObject();
474 return ELFSectionRef(Section).getFlags() & ELF::SHF_ALLOC;
475 if (auto *COFFObj = dyn_cast<object::COFFObjectFile>(Obj)) {
476 const coff_section *CoffSection = COFFObj->getCOFFSection(Section);
477 // Avoid loading zero-sized COFF sections.
478 // In PE files, VirtualSize gives the section size, and SizeOfRawData
479 // may be zero for sections with content. In Obj files, SizeOfRawData
480 // gives the section size, and VirtualSize is always zero. Hence
481 // the need to check for both cases below.
482 bool HasContent =
483 (CoffSection->VirtualSize > 0) || (CoffSection->SizeOfRawData > 0);
484 bool IsDiscardable =
485 CoffSection->Characteristics &
487 return HasContent && !IsDiscardable;
488 }
489
491 return true;
492}
493
494static bool isReadOnlyData(const SectionRef Section) {
495 const ObjectFile *Obj = Section.getObject();
497 return !(ELFSectionRef(Section).getFlags() &
499 if (auto *COFFObj = dyn_cast<object::COFFObjectFile>(Obj))
500 return ((COFFObj->getCOFFSection(Section)->Characteristics &
504 ==
507
509 return false;
510}
511
512static bool isZeroInit(const SectionRef Section) {
513 const ObjectFile *Obj = Section.getObject();
515 return ELFSectionRef(Section).getType() == ELF::SHT_NOBITS;
516 if (auto *COFFObj = dyn_cast<object::COFFObjectFile>(Obj))
517 return COFFObj->getCOFFSection(Section)->Characteristics &
519
520 auto *MachO = cast<MachOObjectFile>(Obj);
521 unsigned SectionType = MachO->getSectionType(Section);
522 return SectionType == MachO::S_ZEROFILL ||
523 SectionType == MachO::S_GB_ZEROFILL;
524}
525
526static bool isTLS(const SectionRef Section) {
527 const ObjectFile *Obj = Section.getObject();
529 return ELFSectionRef(Section).getFlags() & ELF::SHF_TLS;
530 return false;
531}
532
533// Compute an upper bound of the memory size that is required to load all
534// sections
536 const ObjectFile &Obj, uint64_t &CodeSize, Align &CodeAlign,
537 uint64_t &RODataSize, Align &RODataAlign, uint64_t &RWDataSize,
538 Align &RWDataAlign) {
539 // Compute the size of all sections required for execution
540 std::vector<uint64_t> CodeSectionSizes;
541 std::vector<uint64_t> ROSectionSizes;
542 std::vector<uint64_t> RWSectionSizes;
543
544 // Collect sizes of all sections to be loaded;
545 // also determine the max alignment of all sections
546 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
547 SI != SE; ++SI) {
548 const SectionRef &Section = *SI;
549
550 bool IsRequired = isRequiredForExecution(Section) || ProcessAllSections;
551
552 // Consider only the sections that are required to be loaded for execution
553 if (IsRequired) {
554 uint64_t DataSize = Section.getSize();
555 Align Alignment = Section.getAlignment();
556 bool IsCode = Section.isText();
557 bool IsReadOnly = isReadOnlyData(Section);
558 bool IsTLS = isTLS(Section);
559
560 Expected<StringRef> NameOrErr = Section.getName();
561 if (!NameOrErr)
562 return NameOrErr.takeError();
563 StringRef Name = *NameOrErr;
564
565 uint64_t StubBufSize = computeSectionStubBufSize(Obj, Section);
566
567 uint64_t PaddingSize = 0;
568 if (Name == ".eh_frame")
569 PaddingSize += 4;
570 if (StubBufSize != 0)
571 PaddingSize += getStubAlignment().value() - 1;
572
573 uint64_t SectionSize = DataSize + PaddingSize + StubBufSize;
574
575 // The .eh_frame section (at least on Linux) needs an extra four bytes
576 // padded
577 // with zeroes added at the end. For MachO objects, this section has a
578 // slightly different name, so this won't have any effect for MachO
579 // objects.
580 if (Name == ".eh_frame")
581 SectionSize += 4;
582
583 if (!SectionSize)
584 SectionSize = 1;
585
586 if (IsCode) {
587 CodeAlign = std::max(CodeAlign, Alignment);
588 CodeSectionSizes.push_back(SectionSize);
589 } else if (IsReadOnly) {
590 RODataAlign = std::max(RODataAlign, Alignment);
591 ROSectionSizes.push_back(SectionSize);
592 } else if (!IsTLS) {
593 RWDataAlign = std::max(RWDataAlign, Alignment);
594 RWSectionSizes.push_back(SectionSize);
595 }
596 }
597 }
598
599 // Compute Global Offset Table size. If it is not zero we
600 // also update alignment, which is equal to a size of a
601 // single GOT entry.
602 if (unsigned GotSize = computeGOTSize(Obj)) {
603 RWSectionSizes.push_back(GotSize);
604 RWDataAlign = std::max(RWDataAlign, Align(getGOTEntrySize()));
605 }
606
607 // Compute the size of all common symbols
608 uint64_t CommonSize = 0;
609 Align CommonAlign;
610 for (symbol_iterator I = Obj.symbol_begin(), E = Obj.symbol_end(); I != E;
611 ++I) {
612 Expected<uint32_t> FlagsOrErr = I->getFlags();
613 if (!FlagsOrErr)
614 // TODO: Test this error.
615 return FlagsOrErr.takeError();
616 if (*FlagsOrErr & SymbolRef::SF_Common) {
617 // Add the common symbols to a list. We'll allocate them all below.
618 uint64_t Size = I->getCommonSize();
619 Align Alignment = Align(I->getAlignment());
620 // If this is the first common symbol, use its alignment as the alignment
621 // for the common symbols section.
622 if (CommonSize == 0)
623 CommonAlign = Alignment;
624 CommonSize = alignTo(CommonSize, Alignment) + Size;
625 }
626 }
627 if (CommonSize != 0) {
628 RWSectionSizes.push_back(CommonSize);
629 RWDataAlign = std::max(RWDataAlign, CommonAlign);
630 }
631
632 if (!CodeSectionSizes.empty()) {
633 // Add 64 bytes for a potential IFunc resolver stub
634 CodeSectionSizes.push_back(64);
635 }
636
637 // Compute the required allocation space for each different type of sections
638 // (code, read-only data, read-write data) assuming that all sections are
639 // allocated with the max alignment. Note that we cannot compute with the
640 // individual alignments of the sections, because then the required size
641 // depends on the order, in which the sections are allocated.
642 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, CodeAlign);
643 RODataSize = computeAllocationSizeForSections(ROSectionSizes, RODataAlign);
644 RWDataSize = computeAllocationSizeForSections(RWSectionSizes, RWDataAlign);
645
646 return Error::success();
647}
648
649// compute GOT size
651 size_t GotEntrySize = getGOTEntrySize();
652 if (!GotEntrySize)
653 return 0;
654
655 size_t GotSize = 0;
656 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
657 SI != SE; ++SI) {
658
659 for (const RelocationRef &Reloc : SI->relocations())
661 GotSize += GotEntrySize;
662 }
663
664 return GotSize;
665}
666
667// compute stub buffer size for the given section
669 const SectionRef &Section) {
670 if (!MemMgr.allowStubAllocation()) {
671 return 0;
672 }
673
674 unsigned StubSize = getMaxStubSize();
675 if (StubSize == 0) {
676 return 0;
677 }
678 // FIXME: this is an inefficient way to handle this. We should computed the
679 // necessary section allocation size in loadObject by walking all the sections
680 // once.
681 unsigned StubBufSize = 0;
682 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
683 SI != SE; ++SI) {
684
685 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection();
686 if (!RelSecOrErr)
688
689 section_iterator RelSecI = *RelSecOrErr;
690 if (!(RelSecI == Section))
691 continue;
692
693 for (const RelocationRef &Reloc : SI->relocations()) {
695 StubBufSize += StubSize;
697 StubBufSize = sizeAfterAddingDLLImportStub(StubBufSize);
698 }
699 }
700
701 // Get section data size and alignment
702 uint64_t DataSize = Section.getSize();
703 Align Alignment = Section.getAlignment();
704
705 // Add stubbuf size alignment
706 Align StubAlignment = getStubAlignment();
707 Align EndAlignment = commonAlignment(Alignment, DataSize);
708 if (StubAlignment > EndAlignment)
709 StubBufSize += StubAlignment.value() - EndAlignment.value();
710 return StubBufSize;
711}
712
714 unsigned Size) const {
715 uint64_t Result = 0;
717 Src += Size - 1;
718 while (Size--)
719 Result = (Result << 8) | *Src--;
720 } else
721 while (Size--)
722 Result = (Result << 8) | *Src++;
723
724 return Result;
725}
726
728 unsigned Size) const {
730 while (Size--) {
731 *Dst++ = Value & 0xFF;
732 Value >>= 8;
733 }
734 } else {
735 Dst += Size - 1;
736 while (Size--) {
737 *Dst-- = Value & 0xFF;
738 Value >>= 8;
739 }
740 }
741}
742
747
749 CommonSymbolList &SymbolsToAllocate,
750 uint64_t CommonSize,
751 uint32_t CommonAlign) {
752 if (SymbolsToAllocate.empty())
753 return Error::success();
754
755 // Allocate memory for the section
756 unsigned SectionID = Sections.size();
757 uint8_t *Addr = MemMgr.allocateDataSection(CommonSize, CommonAlign, SectionID,
758 "<common symbols>", false);
759 if (!Addr)
760 report_fatal_error("Unable to allocate memory for common symbols!");
761 uint64_t Offset = 0;
762 Sections.push_back(
763 SectionEntry("<common symbols>", Addr, CommonSize, CommonSize, 0));
764 memset(Addr, 0, CommonSize);
765
766 LLVM_DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID
767 << " new addr: " << format("%p", Addr)
768 << " DataSize: " << CommonSize << "\n");
769
770 // Assign the address of each symbol
771 for (auto &Sym : SymbolsToAllocate) {
772 uint32_t Alignment = Sym.getAlignment();
773 uint64_t Size = Sym.getCommonSize();
774 StringRef Name;
775 if (auto NameOrErr = Sym.getName())
776 Name = *NameOrErr;
777 else
778 return NameOrErr.takeError();
779 if (Alignment) {
780 // This symbol has an alignment requirement.
781 uint64_t AlignOffset =
782 offsetToAlignment((uint64_t)Addr, Align(Alignment));
783 Addr += AlignOffset;
784 Offset += AlignOffset;
785 }
786 auto JITSymFlags = getJITSymbolFlags(Sym);
787
788 if (!JITSymFlags)
789 return JITSymFlags.takeError();
790
791 LLVM_DEBUG(dbgs() << "Allocating common symbol " << Name << " address "
792 << format("%p", Addr) << "\n");
793 if (!Name.empty()) // Skip absolute symbol relocations.
794 GlobalSymbolTable[Name] =
795 SymbolTableEntry(SectionID, Offset, std::move(*JITSymFlags));
796 Offset += Size;
797 Addr += Size;
798 }
799
800 return Error::success();
801}
802
805 const SectionRef &Section,
806 bool IsCode) {
808 Align Alignment = Section.getAlignment();
809
810 unsigned PaddingSize = 0;
811 unsigned StubBufSize = 0;
812 bool IsRequired = isRequiredForExecution(Section);
813 bool IsVirtual = Section.isVirtual();
814 bool IsZeroInit = isZeroInit(Section);
815 bool IsReadOnly = isReadOnlyData(Section);
816 bool IsTLS = isTLS(Section);
817 uint64_t DataSize = Section.getSize();
818
819 Expected<StringRef> NameOrErr = Section.getName();
820 if (!NameOrErr)
821 return NameOrErr.takeError();
822 StringRef Name = *NameOrErr;
823
824 StubBufSize = computeSectionStubBufSize(Obj, Section);
825
826 // The .eh_frame section (at least on Linux) needs an extra four bytes padded
827 // with zeroes added at the end. For MachO objects, this section has a
828 // slightly different name, so this won't have any effect for MachO objects.
829 if (Name == ".eh_frame")
830 PaddingSize = 4;
831
832 uintptr_t Allocate;
833 unsigned SectionID = Sections.size();
834 uint8_t *Addr;
835 uint64_t LoadAddress = 0;
836 const char *pData = nullptr;
837
838 // If this section contains any bits (i.e. isn't a virtual or bss section),
839 // grab a reference to them.
840 if (!IsVirtual && !IsZeroInit) {
841 // In either case, set the location of the unrelocated section in memory,
842 // since we still process relocations for it even if we're not applying them.
843 if (Expected<StringRef> E = Section.getContents())
844 data = *E;
845 else
846 return E.takeError();
847 pData = data.data();
848 }
849
850 // If there are any stubs then the section alignment needs to be at least as
851 // high as stub alignment or padding calculations may by incorrect when the
852 // section is remapped.
853 if (StubBufSize != 0) {
854 Alignment = std::max(Alignment, getStubAlignment());
855 PaddingSize += getStubAlignment().value() - 1;
856 }
857
858 // Some sections, such as debug info, don't need to be loaded for execution.
859 // Process those only if explicitly requested.
860 if (IsRequired || ProcessAllSections) {
861 Allocate = DataSize + PaddingSize + StubBufSize;
862 if (!Allocate)
863 Allocate = 1;
864 if (IsTLS) {
865 auto TLSSection = MemMgr.allocateTLSSection(Allocate, Alignment.value(),
866 SectionID, Name);
867 if (!TLSSection.InitializationImage)
869 "Unable to allocate TLS section memory");
870 Addr = TLSSection.InitializationImage;
871 LoadAddress = TLSSection.Offset;
872 } else if (IsCode) {
873 Addr = MemMgr.allocateCodeSection(Allocate, Alignment.value(), SectionID,
874 Name);
875 } else {
876 Addr = MemMgr.allocateDataSection(Allocate, Alignment.value(), SectionID,
877 Name, IsReadOnly);
878 }
879 if (!Addr)
880 report_fatal_error("Unable to allocate section memory!");
881
882 // Zero-initialize or copy the data from the image
883 if (IsZeroInit || IsVirtual)
884 memset(Addr, 0, DataSize);
885 else
886 memcpy(Addr, pData, DataSize);
887
888 // Fill in any extra bytes we allocated for padding
889 if (PaddingSize != 0) {
890 memset(Addr + DataSize, 0, PaddingSize);
891 // Update the DataSize variable to include padding.
892 DataSize += PaddingSize;
893
894 // Align DataSize to stub alignment if we have any stubs (PaddingSize will
895 // have been increased above to account for this).
896 if (StubBufSize > 0)
897 DataSize &= -getStubAlignment().value();
898 }
899
900 LLVM_DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: "
901 << Name << " obj addr: " << format("%p", pData)
902 << " new addr: " << format("%p", Addr) << " DataSize: "
903 << DataSize << " StubBufSize: " << StubBufSize
904 << " Allocate: " << Allocate << "\n");
905 } else {
906 // Even if we didn't load the section, we need to record an entry for it
907 // to handle later processing (and by 'handle' I mean don't do anything
908 // with these sections).
909 Allocate = 0;
910 Addr = nullptr;
912 dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
913 << " obj addr: " << format("%p", data.data()) << " new addr: 0"
914 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
915 << " Allocate: " << Allocate << "\n");
916 }
917
918 Sections.push_back(
919 SectionEntry(Name, Addr, DataSize, Allocate, (uintptr_t)pData));
920
921 // The load address of a TLS section is not equal to the address of its
922 // initialization image
923 if (IsTLS)
924 Sections.back().setLoadAddress(LoadAddress);
925 // Debug info sections are linked as if their load address was zero
926 if (!IsRequired)
927 Sections.back().setLoadAddress(0);
928
929 return SectionID;
930}
931
934 const SectionRef &Section,
935 bool IsCode,
936 ObjSectionToIDMap &LocalSections) {
937
938 unsigned SectionID = 0;
939 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
940 if (i != LocalSections.end())
941 SectionID = i->second;
942 else {
943 if (auto SectionIDOrErr = emitSection(Obj, Section, IsCode))
944 SectionID = *SectionIDOrErr;
945 else
946 return SectionIDOrErr.takeError();
947 LocalSections[Section] = SectionID;
948 }
949 return SectionID;
950}
951
953 unsigned SectionID) {
954 Relocations[SectionID].push_back(RE);
955}
956
958 StringRef SymbolName) {
959 // Relocation by symbol. If the symbol is found in the global symbol table,
960 // create an appropriate section relocation. Otherwise, add it to
961 // ExternalSymbolRelocations.
963 if (Loc == GlobalSymbolTable.end()) {
964 ExternalSymbolRelocations[SymbolName].push_back(RE);
965 } else {
966 assert(!SymbolName.empty() &&
967 "Empty symbol should not be in GlobalSymbolTable");
968 // Copy the RE since we want to modify its addend.
969 RelocationEntry RECopy = RE;
970 const auto &SymInfo = Loc->second;
971 RECopy.Addend += SymInfo.getOffset();
972 Relocations[SymInfo.getSectionID()].push_back(RECopy);
973 }
974}
975
977 unsigned AbiVariant) {
980 // This stub has to be able to access the full address space,
981 // since symbol lookup won't necessarily find a handy, in-range,
982 // PLT stub for functions which could be anywhere.
983 // Stub can use ip0 (== x16) to calculate address
984 writeBytesUnaligned(0xd2e00010, Addr, 4); // movz ip0, #:abs_g3:<addr>
985 writeBytesUnaligned(0xf2c00010, Addr+4, 4); // movk ip0, #:abs_g2_nc:<addr>
986 writeBytesUnaligned(0xf2a00010, Addr+8, 4); // movk ip0, #:abs_g1_nc:<addr>
987 writeBytesUnaligned(0xf2800010, Addr+12, 4); // movk ip0, #:abs_g0_nc:<addr>
988 writeBytesUnaligned(0xd61f0200, Addr+16, 4); // br ip0
989
990 return Addr;
991 } else if (Arch == Triple::arm || Arch == Triple::armeb) {
992 // TODO: There is only ARM far stub now. We should add the Thumb stub,
993 // and stubs for branches Thumb - ARM and ARM - Thumb.
994 writeBytesUnaligned(0xe51ff004, Addr, 4); // ldr pc, [pc, #-4]
995 return Addr + 4;
996 } else if (Arch == Triple::loongarch64) {
997 // lu12i.w $t0, %abs_hi20(addr)
998 // ori $t0, $t0, %abs_lo12(addr)
999 // lu32i.d $t0, %abs64_lo20(addr)
1000 // lu52i.d $t0, $t0, %abs64_lo12(addr)
1001 // jr $t0
1002 writeBytesUnaligned(0x1400000c, Addr, 4);
1003 writeBytesUnaligned(0x0380018c, Addr + 4, 4);
1004 writeBytesUnaligned(0x1600000c, Addr + 8, 4);
1005 writeBytesUnaligned(0x0300018c, Addr + 12, 4);
1006 writeBytesUnaligned(0x4c000180, Addr + 16, 4);
1007 return Addr;
1008 } else if (IsMipsO32ABI || IsMipsN32ABI) {
1009 // 0: 3c010000 lui at,%hi(addr).
1010 // 4: 24210000 addiu at,at,%lo(addr).
1011 // 8: 00200008 jr at.
1012 // c: 00000000 nop.
1013 const unsigned LuiATInstr = 0x3c010000, AdduiATInstr = 0x24210000;
1014 const unsigned NopInstr = 0x0;
1015 unsigned JrATInstr = 0x00200008;
1016 if ((AbiVariant & ELF::EF_MIPS_ARCH) == ELF::EF_MIPS_ARCH_32R6 ||
1017 (AbiVariant & ELF::EF_MIPS_ARCH) == ELF::EF_MIPS_ARCH_64R6)
1018 JrATInstr = 0x00200009;
1019
1020 writeBytesUnaligned(LuiATInstr, Addr, 4);
1021 writeBytesUnaligned(AdduiATInstr, Addr + 4, 4);
1022 writeBytesUnaligned(JrATInstr, Addr + 8, 4);
1023 writeBytesUnaligned(NopInstr, Addr + 12, 4);
1024 return Addr;
1025 } else if (IsMipsN64ABI) {
1026 // 0: 3c010000 lui at,%highest(addr).
1027 // 4: 64210000 daddiu at,at,%higher(addr).
1028 // 8: 00010C38 dsll at,at,16.
1029 // c: 64210000 daddiu at,at,%hi(addr).
1030 // 10: 00010C38 dsll at,at,16.
1031 // 14: 64210000 daddiu at,at,%lo(addr).
1032 // 18: 00200008 jr at.
1033 // 1c: 00000000 nop.
1034 const unsigned LuiATInstr = 0x3c010000, DaddiuATInstr = 0x64210000,
1035 DsllATInstr = 0x10c38;
1036 const unsigned NopInstr = 0x0;
1037 unsigned JrATInstr = 0x00200008;
1038 if ((AbiVariant & ELF::EF_MIPS_ARCH) == ELF::EF_MIPS_ARCH_64R6)
1039 JrATInstr = 0x00200009;
1040
1041 writeBytesUnaligned(LuiATInstr, Addr, 4);
1042 writeBytesUnaligned(DaddiuATInstr, Addr + 4, 4);
1043 writeBytesUnaligned(DsllATInstr, Addr + 8, 4);
1044 writeBytesUnaligned(DaddiuATInstr, Addr + 12, 4);
1045 writeBytesUnaligned(DsllATInstr, Addr + 16, 4);
1046 writeBytesUnaligned(DaddiuATInstr, Addr + 20, 4);
1047 writeBytesUnaligned(JrATInstr, Addr + 24, 4);
1048 writeBytesUnaligned(NopInstr, Addr + 28, 4);
1049 return Addr;
1050 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
1051 // Depending on which version of the ELF ABI is in use, we need to
1052 // generate one of two variants of the stub. They both start with
1053 // the same sequence to load the target address into r12.
1054 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr)
1055 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr)
1056 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32
1057 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr)
1058 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr)
1059 if (AbiVariant == 2) {
1060 // PowerPC64 stub ELFv2 ABI: The address points to the function itself.
1061 // The address is already in r12 as required by the ABI. Branch to it.
1062 writeInt32BE(Addr+20, 0xF8410018); // std r2, 24(r1)
1063 writeInt32BE(Addr+24, 0x7D8903A6); // mtctr r12
1064 writeInt32BE(Addr+28, 0x4E800420); // bctr
1065 } else {
1066 // PowerPC64 stub ELFv1 ABI: The address points to a function descriptor.
1067 // Load the function address on r11 and sets it to control register. Also
1068 // loads the function TOC in r2 and environment pointer to r11.
1069 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1)
1070 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12)
1071 writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12)
1072 writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11
1073 writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2)
1074 writeInt32BE(Addr+40, 0x4E800420); // bctr
1075 }
1076 return Addr;
1077 } else if (Arch == Triple::systemz) {
1078 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8
1079 writeInt16BE(Addr+2, 0x0000);
1080 writeInt16BE(Addr+4, 0x0004);
1081 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1
1082 // 8-byte address stored at Addr + 8
1083 return Addr;
1084 } else if (Arch == Triple::x86_64) {
1085 *Addr = 0xFF; // jmp
1086 *(Addr+1) = 0x25; // rip
1087 // 32-bit PC-relative address of the GOT entry will be stored at Addr+2
1088 } else if (Arch == Triple::x86) {
1089 *Addr = 0xE9; // 32-bit pc-relative jump.
1090 }
1091 return Addr;
1092}
1093
1094// Assign an address to a symbol name and resolve all the relocations
1095// associated with it.
1097 uint64_t Addr) {
1098 // The address to use for relocation resolution is not
1099 // the address of the local section buffer. We must be doing
1100 // a remote execution environment of some sort. Relocations can't
1101 // be applied until all the sections have been moved. The client must
1102 // trigger this with a call to MCJIT::finalize() or
1103 // RuntimeDyld::resolveRelocations().
1104 //
1105 // Addr is a uint64_t because we can't assume the pointer width
1106 // of the target is the same as that of the host. Just use a generic
1107 // "big enough" type.
1108 LLVM_DEBUG(
1109 dbgs() << "Reassigning address for section " << SectionID << " ("
1110 << Sections[SectionID].getName() << "): "
1111 << format("0x%016" PRIx64, Sections[SectionID].getLoadAddress())
1112 << " -> " << format("0x%016" PRIx64, Addr) << "\n");
1113 Sections[SectionID].setLoadAddress(Addr);
1114}
1115
1117 uint64_t Value) {
1118 for (const RelocationEntry &RE : Relocs) {
1119 // Ignore relocations for sections that were not loaded
1120 if (RE.SectionID != AbsoluteSymbolSection &&
1121 Sections[RE.SectionID].getAddress() == nullptr)
1122 continue;
1124 }
1125}
1126
1128 const StringMap<JITEvaluatedSymbol> ExternalSymbolMap) {
1129 for (auto &RelocKV : ExternalSymbolRelocations) {
1130 StringRef Name = RelocKV.first();
1131 RelocationList &Relocs = RelocKV.second;
1132 if (Name.size() == 0) {
1133 // This is an absolute symbol, use an address of zero.
1134 LLVM_DEBUG(dbgs() << "Resolving absolute relocations."
1135 << "\n");
1136 resolveRelocationList(Relocs, 0);
1137 } else {
1138 uint64_t Addr = 0;
1139 JITSymbolFlags Flags;
1141 if (Loc == GlobalSymbolTable.end()) {
1142 auto RRI = ExternalSymbolMap.find(Name);
1143 assert(RRI != ExternalSymbolMap.end() && "No result for symbol");
1144 Addr = RRI->second.getAddress();
1145 Flags = RRI->second.getFlags();
1146 } else {
1147 // We found the symbol in our global table. It was probably in a
1148 // Module that we loaded previously.
1149 const auto &SymInfo = Loc->second;
1150 Addr = getSectionLoadAddress(SymInfo.getSectionID()) +
1151 SymInfo.getOffset();
1152 Flags = SymInfo.getFlags();
1153 }
1154
1155 // FIXME: Implement error handling that doesn't kill the host program!
1156 if (!Addr && !Resolver.allowsZeroSymbols())
1157 report_fatal_error(Twine("Program used external function '") + Name +
1158 "' which could not be resolved!");
1159
1160 // If Resolver returned UINT64_MAX, the client wants to handle this symbol
1161 // manually and we shouldn't resolve its relocations.
1162 if (Addr != UINT64_MAX) {
1163
1164 // Tweak the address based on the symbol flags if necessary.
1165 // For example, this is used by RuntimeDyldMachOARM to toggle the low bit
1166 // if the target symbol is Thumb.
1167 Addr = modifyAddressBasedOnFlags(Addr, Flags);
1168
1169 LLVM_DEBUG(dbgs() << "Resolving relocations Name: " << Name << "\t"
1170 << format("0x%lx", Addr) << "\n");
1171 resolveRelocationList(Relocs, Addr);
1172 }
1173 }
1174 }
1176}
1177
1179 StringMap<JITEvaluatedSymbol> ExternalSymbolMap;
1180
1181 // Resolution can trigger emission of more symbols, so iterate until
1182 // we've resolved *everything*.
1183 {
1184 JITSymbolResolver::LookupSet ResolvedSymbols;
1185
1186 while (true) {
1188
1189 for (auto &RelocKV : ExternalSymbolRelocations) {
1190 StringRef Name = RelocKV.first();
1191 if (!Name.empty() && !GlobalSymbolTable.count(Name) &&
1192 !ResolvedSymbols.count(Name))
1193 NewSymbols.insert(Name);
1194 }
1195
1196 if (NewSymbols.empty())
1197 break;
1198
1199#ifdef _MSC_VER
1200 using ExpectedLookupResult =
1202#else
1203 using ExpectedLookupResult = Expected<JITSymbolResolver::LookupResult>;
1204#endif
1205
1206 auto NewSymbolsP = std::make_shared<std::promise<ExpectedLookupResult>>();
1207 auto NewSymbolsF = NewSymbolsP->get_future();
1208 Resolver.lookup(NewSymbols,
1210 NewSymbolsP->set_value(std::move(Result));
1211 });
1212
1213 auto NewResolverResults = NewSymbolsF.get();
1214
1215 if (!NewResolverResults)
1216 return NewResolverResults.takeError();
1217
1218 assert(NewResolverResults->size() == NewSymbols.size() &&
1219 "Should have errored on unresolved symbols");
1220
1221 for (auto &RRKV : *NewResolverResults) {
1222 assert(!ResolvedSymbols.count(RRKV.first) && "Redundant resolution?");
1223 ExternalSymbolMap.insert(RRKV);
1224 ResolvedSymbols.insert(RRKV.first);
1225 }
1226 }
1227 }
1228
1229 applyExternalSymbolRelocations(ExternalSymbolMap);
1230
1231 return Error::success();
1232}
1233
1235 std::unique_ptr<RuntimeDyldImpl> This,
1237 std::unique_ptr<RuntimeDyld::LoadedObjectInfo>, Error)>
1238 OnEmitted,
1240 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> Info) {
1241
1242 auto SharedThis = std::shared_ptr<RuntimeDyldImpl>(std::move(This));
1243 auto PostResolveContinuation =
1244 [SharedThis, OnEmitted = std::move(OnEmitted), O = std::move(O),
1245 Info = std::move(Info)](
1247 if (!Result) {
1248 OnEmitted(std::move(O), std::move(Info), Result.takeError());
1249 return;
1250 }
1251
1252 /// Copy the result into a StringMap, where the keys are held by value.
1254 for (auto &KV : *Result)
1255 Resolved[KV.first] = KV.second;
1256
1257 SharedThis->applyExternalSymbolRelocations(Resolved);
1258 SharedThis->resolveLocalRelocations();
1259 SharedThis->registerEHFrames();
1260 std::string ErrMsg;
1261 if (SharedThis->MemMgr.finalizeMemory(&ErrMsg))
1262 OnEmitted(std::move(O), std::move(Info),
1263 make_error<StringError>(std::move(ErrMsg),
1265 else
1266 OnEmitted(std::move(O), std::move(Info), Error::success());
1267 };
1268
1270
1271 for (auto &RelocKV : SharedThis->ExternalSymbolRelocations) {
1272 StringRef Name = RelocKV.first();
1273 if (Name.empty()) // Skip absolute symbol relocations.
1274 continue;
1275 assert(!SharedThis->GlobalSymbolTable.count(Name) &&
1276 "Name already processed. RuntimeDyld instances can not be re-used "
1277 "when finalizing with finalizeAsync.");
1278 Symbols.insert(Name);
1279 }
1280
1281 if (!Symbols.empty()) {
1282 SharedThis->Resolver.lookup(Symbols, std::move(PostResolveContinuation));
1283 } else
1284 PostResolveContinuation(std::map<StringRef, JITEvaluatedSymbol>());
1285}
1286
1287//===----------------------------------------------------------------------===//
1288// RuntimeDyld class implementation
1289
1291 const object::SectionRef &Sec) const {
1292
1293 auto I = ObjSecToIDMap.find(Sec);
1294 if (I != ObjSecToIDMap.end())
1295 return RTDyld.Sections[I->second].getLoadAddress();
1296
1297 return 0;
1298}
1299
1302 unsigned Alignment,
1303 unsigned SectionID,
1305 return {};
1306}
1307
1308void RuntimeDyld::MemoryManager::anchor() {}
1309void JITSymbolResolver::anchor() {}
1310void LegacyJITSymbolResolver::anchor() {}
1311
1313 JITSymbolResolver &Resolver)
1314 : MemMgr(MemMgr), Resolver(Resolver) {
1315 // FIXME: There's a potential issue lurking here if a single instance of
1316 // RuntimeDyld is used to load multiple objects. The current implementation
1317 // associates a single memory manager with a RuntimeDyld instance. Even
1318 // though the public class spawns a new 'impl' instance for each load,
1319 // they share a single memory manager. This can become a problem when page
1320 // permissions are applied.
1321 Dyld = nullptr;
1322 ProcessAllSections = false;
1323}
1324
1325RuntimeDyld::~RuntimeDyld() = default;
1326
1327static std::unique_ptr<RuntimeDyldCOFF>
1330 JITSymbolResolver &Resolver, bool ProcessAllSections,
1331 RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted) {
1332 std::unique_ptr<RuntimeDyldCOFF> Dyld =
1334 Dyld->setProcessAllSections(ProcessAllSections);
1335 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted));
1336 return Dyld;
1337}
1338
1339static std::unique_ptr<RuntimeDyldELF>
1341 JITSymbolResolver &Resolver, bool ProcessAllSections,
1342 RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted) {
1343 std::unique_ptr<RuntimeDyldELF> Dyld =
1345 Dyld->setProcessAllSections(ProcessAllSections);
1346 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted));
1347 return Dyld;
1348}
1349
1350static std::unique_ptr<RuntimeDyldMachO>
1354 bool ProcessAllSections,
1355 RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted) {
1356 std::unique_ptr<RuntimeDyldMachO> Dyld =
1358 Dyld->setProcessAllSections(ProcessAllSections);
1359 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted));
1360 return Dyld;
1361}
1362
1363std::unique_ptr<RuntimeDyld::LoadedObjectInfo>
1365 if (!Dyld) {
1366 if (Obj.isELF())
1367 Dyld = createRuntimeDyldELF(Obj.getArch(), MemMgr, Resolver,
1368 ProcessAllSections,
1369 std::move(NotifyStubEmitted));
1370 else if (Obj.isMachO())
1371 Dyld = createRuntimeDyldMachO(Obj.getArch(), MemMgr, Resolver,
1372 ProcessAllSections,
1373 std::move(NotifyStubEmitted));
1374 else if (Obj.isCOFF())
1375 Dyld = createRuntimeDyldCOFF(Obj.getArch(), MemMgr, Resolver,
1376 ProcessAllSections,
1377 std::move(NotifyStubEmitted));
1378 else
1379 report_fatal_error("Incompatible object format!");
1380 }
1381
1382 if (!Dyld->isCompatibleFile(Obj))
1383 report_fatal_error("Incompatible object format!");
1384
1385 auto LoadedObjInfo = Dyld->loadObject(Obj);
1386 MemMgr.notifyObjectLoaded(*this, Obj);
1387 return LoadedObjInfo;
1388}
1389
1391 if (!Dyld)
1392 return nullptr;
1393 return Dyld->getSymbolLocalAddress(Name);
1394}
1395
1397 assert(Dyld && "No RuntimeDyld instance attached");
1398 return Dyld->getSymbolSectionID(Name);
1399}
1400
1402 if (!Dyld)
1403 return nullptr;
1404 return Dyld->getSymbol(Name);
1405}
1406
1407std::map<StringRef, JITEvaluatedSymbol> RuntimeDyld::getSymbolTable() const {
1408 if (!Dyld)
1409 return std::map<StringRef, JITEvaluatedSymbol>();
1410 return Dyld->getSymbolTable();
1411}
1412
1413void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); }
1414
1415void RuntimeDyld::reassignSectionAddress(unsigned SectionID, uint64_t Addr) {
1416 Dyld->reassignSectionAddress(SectionID, Addr);
1417}
1418
1419void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
1420 uint64_t TargetAddress) {
1421 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
1422}
1423
1424bool RuntimeDyld::hasError() { return Dyld->hasError(); }
1425
1426StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); }
1427
1429 bool MemoryFinalizationLocked = MemMgr.FinalizationLocked;
1430 MemMgr.FinalizationLocked = true;
1433 if (!MemoryFinalizationLocked) {
1434 MemMgr.finalizeMemory();
1435 MemMgr.FinalizationLocked = false;
1436 }
1437}
1438
1440 assert(Dyld && "No Dyld instance attached");
1441 return Dyld->getSectionContent(SectionID);
1442}
1443
1444uint64_t RuntimeDyld::getSectionLoadAddress(unsigned SectionID) const {
1445 assert(Dyld && "No Dyld instance attached");
1446 return Dyld->getSectionLoadAddress(SectionID);
1447}
1448
1450 if (Dyld)
1451 Dyld->registerEHFrames();
1452}
1453
1455 if (Dyld)
1456 Dyld->deregisterEHFrames();
1457}
1458// FIXME: Kill this with fire once we have a new JIT linker: this is only here
1459// so that we can re-use RuntimeDyld's implementation without twisting the
1460// interface any further for ORC's purposes.
1464 bool ProcessAllSections,
1467 std::map<StringRef, JITEvaluatedSymbol>)>
1468 OnLoaded,
1470 std::unique_ptr<RuntimeDyld::LoadedObjectInfo>, Error)>
1471 OnEmitted) {
1472
1473 RuntimeDyld RTDyld(MemMgr, Resolver);
1474 RTDyld.setProcessAllSections(ProcessAllSections);
1475
1476 auto Info = RTDyld.loadObject(*O.getBinary());
1477
1478 if (RTDyld.hasError()) {
1479 OnEmitted(std::move(O), std::move(Info),
1482 return;
1483 }
1484
1485 if (auto Err = OnLoaded(*O.getBinary(), *Info, RTDyld.getSymbolTable())) {
1486 OnEmitted(std::move(O), std::move(Info), std::move(Err));
1487 return;
1488 }
1489
1490 RuntimeDyldImpl::finalizeAsync(std::move(RTDyld.Dyld), std::move(OnEmitted),
1491 std::move(O), std::move(Info));
1492}
1493
1494} // end namespace llvm
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define I(x, y, z)
Definition MD5.cpp:57
static StringRef getName(Value *V)
static const char * name
static Split data
#define LLVM_DEBUG(...)
Definition Debug.h:119
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
static ErrorSuccess success()
Create a success value.
Definition Error.h:336
Tagged union holding either a T or a Error.
Definition Error.h:485
Error takeError()
Take ownership of the stored error.
Definition Error.h:612
Represents a symbol that has been evaluated to an address already.
Definition JITSymbol.h:231
Flags for symbols in the JIT.
Definition JITSymbol.h:75
static LLVM_ABI Expected< JITSymbolFlags > fromObjectSymbol(const object::SymbolRef &Symbol)
Construct a JITSymbolFlags value based on the flags of the given libobject symbol.
Definition JITSymbol.cpp:69
Symbol resolution interface.
Definition JITSymbol.h:373
std::set< StringRef > LookupSet
Definition JITSymbol.h:375
RelocationEntry - used to represent relocations internally in the dynamic linker.
int64_t Addend
Addend - the relocation addend encoded in the instruction itself.
Interface for looking up the initializer for a variable name, used by Init::resolveReferences.
Definition Record.h:2233
static std::unique_ptr< RuntimeDyldCOFF > create(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver)
static std::unique_ptr< RuntimeDyldELF > create(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver)
void log(raw_ostream &OS) const override
Print an error message to an output stream.
std::error_code convertToErrorCode() const override
Convert this error to a std::error_code.
virtual bool relocationNeedsGot(const RelocationRef &R) const
void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress)
virtual void processNewSymbol(const SymbolRef &ObjSymbol, SymbolTableEntry &Entry)
StringMap< RelocationList > ExternalSymbolRelocations
void reassignSectionAddress(unsigned SectionID, uint64_t Addr)
NotifyStubEmittedFunction NotifyStubEmitted
virtual uint64_t modifyAddressBasedOnFlags(uint64_t Addr, JITSymbolFlags Flags) const
Modify the given target address based on the given symbol flags.
virtual Expected< relocation_iterator > processRelocationRef(unsigned SectionID, relocation_iterator RelI, const ObjectFile &Obj, ObjSectionToIDMap &ObjSectionToID, StubMap &Stubs)=0
Parses one or more object file relocations (some object files use relocation pairs) and stores it to ...
std::map< SectionRef, unsigned > ObjSectionToIDMap
virtual void resolveRelocation(const RelocationEntry &RE, uint64_t Value)=0
A object file specific relocation resolver.
virtual Align getStubAlignment()=0
void writeInt32BE(uint8_t *Addr, uint32_t Value)
virtual Error finalizeLoad(const ObjectFile &ObjImg, ObjSectionToIDMap &SectionMap)
void applyExternalSymbolRelocations(const StringMap< JITEvaluatedSymbol > ExternalSymbolMap)
void resolveRelocationList(const RelocationList &Relocs, uint64_t Value)
Resolves relocations from Relocs list with address from Value.
SmallVector< RelocationEntry, 64 > RelocationList
std::map< RelocationValueRef, uintptr_t > StubMap
void writeInt16BE(uint8_t *Addr, uint16_t Value)
static const unsigned AbsoluteSymbolSection
void addRelocationForSymbol(const RelocationEntry &RE, StringRef SymbolName)
virtual void registerEHFrames()
JITSymbolResolver & Resolver
virtual ~RuntimeDyldImpl()
static void finalizeAsync(std::unique_ptr< RuntimeDyldImpl > This, unique_function< void(object::OwningBinary< object::ObjectFile >, std::unique_ptr< RuntimeDyld::LoadedObjectInfo >, Error)> OnEmitted, object::OwningBinary< object::ObjectFile > O, std::unique_ptr< RuntimeDyld::LoadedObjectInfo > Info)
Error emitCommonSymbols(const ObjectFile &Obj, CommonSymbolList &CommonSymbols, uint64_t CommonSize, uint32_t CommonAlign)
Given the common symbols discovered in the object file, emit a new section for them and update the sy...
Expected< unsigned > emitSection(const ObjectFile &Obj, const SectionRef &Section, bool IsCode)
Emits section data from the object file to the MemoryManager.
virtual unsigned sizeAfterAddingDLLImportStub(unsigned Size) const
DenseMap< unsigned, RelocationList > Relocations
std::vector< SymbolRef > CommonSymbolList
RuntimeDyld::MemoryManager & MemMgr
void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID)
Expected< unsigned > findOrEmitSection(const ObjectFile &Obj, const SectionRef &Section, bool IsCode, ObjSectionToIDMap &LocalSections)
Find Section in LocalSections.
virtual bool relocationNeedsStub(const RelocationRef &R) const
Triple::ArchType Arch
unsigned computeGOTSize(const ObjectFile &Obj)
virtual void setMipsABI(const ObjectFile &Obj)
void writeBytesUnaligned(uint64_t Value, uint8_t *Dst, unsigned Size) const
Endian-aware write.
virtual size_t getGOTEntrySize()
uint8_t * createStubFunction(uint8_t *Addr, unsigned AbiVariant=0)
Emits long jump instruction to Addr.
uint64_t readBytesUnaligned(uint8_t *Src, unsigned Size) const
Endian-aware read Read the least significant Size bytes from Src.
virtual bool relocationNeedsDLLImportStub(const RelocationRef &R) const
uint64_t getSectionLoadAddress(unsigned SectionID) const
virtual unsigned getMaxStubSize() const =0
Error computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize, Align &CodeAlign, uint64_t &RODataSize, Align &RODataAlign, uint64_t &RWDataSize, Align &RWDataAlign)
unsigned computeSectionStubBufSize(const ObjectFile &Obj, const SectionRef &Section)
RTDyldSymbolTable GlobalSymbolTable
virtual Expected< JITSymbolFlags > getJITSymbolFlags(const SymbolRef &Sym)
Generate JITSymbolFlags from a libObject symbol.
Expected< ObjSectionToIDMap > loadObjectImpl(const object::ObjectFile &Obj)
Error resolveExternalSymbols()
Resolve relocations to external symbols.
static std::unique_ptr< RuntimeDyldMachO > create(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver)
Create a RuntimeDyldMachO instance for the given target architecture.
Information about the loaded object.
Definition RuntimeDyld.h:70
uint64_t getSectionLoadAddress(const object::SectionRef &Sec) const override
Obtain the Load Address of a section by SectionRef.
virtual TLSSection allocateTLSSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName)
Allocate a memory block of (at least) the given size to be used for thread-local storage (TLS).
LLVM_ABI void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress)
Map a section to its target address space value.
void setProcessAllSections(bool ProcessAllSections)
By default, only sections that are "required for execution" are passed to the RTDyldMemoryManager,...
LLVM_ABI void reassignSectionAddress(unsigned SectionID, uint64_t Addr)
LLVM_ABI uint64_t getSectionLoadAddress(unsigned SectionID) const
If the section was loaded, return the section's load address, otherwise return std::nullopt.
LLVM_ABI void * getSymbolLocalAddress(StringRef Name) const
Get the address of our local copy of the symbol.
LLVM_ABI std::map< StringRef, JITEvaluatedSymbol > getSymbolTable() const
Returns a copy of the symbol table.
LLVM_ABI void resolveRelocations()
Resolve the relocations for all symbols we currently know about.
LLVM_ABI void finalizeWithMemoryManagerLocking()
Perform all actions needed to make the code owned by this RuntimeDyld instance executable:
std::function< void( StringRef FileName, StringRef SectionName, StringRef SymbolName, unsigned SectionID, uint32_t StubOffset)> NotifyStubEmittedFunction
Definition RuntimeDyld.h:65
LLVM_ABI void deregisterEHFrames()
LLVM_ABI void registerEHFrames()
Register any EH frame sections that have been loaded but not previously registered with the memory ma...
LLVM_ABI ~RuntimeDyld()
LLVM_ABI StringRef getSectionContent(unsigned SectionID) const
Returns the section's working memory.
LLVM_ABI JITEvaluatedSymbol getSymbol(StringRef Name) const
Get the target address and flags for the named symbol.
LLVM_ABI RuntimeDyld(MemoryManager &MemMgr, JITSymbolResolver &Resolver)
Construct a RuntimeDyld instance.
LLVM_ABI bool hasError()
LLVM_ABI std::unique_ptr< LoadedObjectInfo > loadObject(const object::ObjectFile &O)
Add the referenced object file to the list of objects to be loaded and relocated.
LLVM_ABI StringRef getErrorString()
LLVM_ABI unsigned getSymbolSectionID(StringRef Name) const
Get the section ID for the section containing the given symbol.
SectionEntry - represents a section emitted into memory by the dynamic linker.
StringRef getName() const
uint8_t * getAddress() const
size_t getSize() const
uint64_t getLoadAddress() const
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition StringMap.h:129
iterator end()
Definition StringMap.h:214
iterator find(StringRef Key)
Definition StringMap.h:227
StringMapIterBase< SymbolTableEntry, true > const_iterator
Definition StringMap.h:208
bool insert(MapEntryTy *KeyValue)
insert - Insert the specified key/value pair into the map.
Definition StringMap.h:311
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Symbol info for RuntimeDyld.
@ loongarch64
Definition Triple.h:66
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
LLVM Value Representation.
Definition Value.h:75
This class is the base class for all object file types.
Definition ObjectFile.h:231
This is a value type class that represents a single relocation in the list of relocations in the obje...
Definition ObjectFile.h:54
This is a value type class that represents a single section in the list of sections in the object fil...
Definition ObjectFile.h:83
uint64_t getAddress() const
Definition ObjectFile.h:526
bool isText() const
Whether this section contains instructions.
Definition ObjectFile.h:555
This is a value type class that represents a single symbol in the list of symbols in the object file.
Definition ObjectFile.h:170
Expected< uint64_t > getAddress() const
Returns the symbol virtual address (i.e.
Definition ObjectFile.h:469
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
unique_function is a type-erasing functor similar to std::function.
#define UINT64_MAX
Definition DataTypes.h:77
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ IMAGE_SCN_MEM_READ
Definition COFF.h:336
@ IMAGE_SCN_CNT_UNINITIALIZED_DATA
Definition COFF.h:305
@ IMAGE_SCN_MEM_DISCARDABLE
Definition COFF.h:331
@ IMAGE_SCN_LNK_INFO
Definition COFF.h:307
@ IMAGE_SCN_CNT_INITIALIZED_DATA
Definition COFF.h:304
@ IMAGE_SCN_MEM_WRITE
Definition COFF.h:337
@ SHF_ALLOC
Definition ELF.h:1259
@ SHF_WRITE
Definition ELF.h:1256
@ SHF_TLS
Definition ELF.h:1284
@ SHF_EXECINSTR
Definition ELF.h:1262
@ SHT_NOBITS
Definition ELF.h:1164
@ EF_MIPS_ARCH
Definition ELF.h:580
@ EF_MIPS_ARCH_32R6
Definition ELF.h:578
@ EF_MIPS_ARCH_64R6
Definition ELF.h:579
@ S_GB_ZEROFILL
S_GB_ZEROFILL - Zero fill on demand section (that can be larger than 4 gigabytes).
Definition MachO.h:155
@ S_ZEROFILL
S_ZEROFILL - Zero fill on demand section.
Definition MachO.h:129
content_iterator< SectionRef > section_iterator
Definition ObjectFile.h:49
content_iterator< RelocationRef > relocation_iterator
Definition ObjectFile.h:79
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:577
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
LLVM_ABI std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
Definition Error.cpp:94
static std::unique_ptr< RuntimeDyldMachO > createRuntimeDyldMachO(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, JITSymbolResolver &Resolver, bool ProcessAllSections, RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted)
static bool isTLS(const SectionRef Section)
static void dumpSectionMemory(const SectionEntry &S, StringRef State)
static Error getOffset(const SymbolRef &Sym, SectionRef Sec, uint64_t &Result)
static std::unique_ptr< RuntimeDyldCOFF > createRuntimeDyldCOFF(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, JITSymbolResolver &Resolver, bool ProcessAllSections, RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition Alignment.h:144
static bool isReadOnlyData(const SectionRef Section)
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
Definition Format.h:102
Error make_error(ArgTs &&... Args)
Make a Error instance representing failure using the given error info type.
Definition Error.h:340
uint64_t offsetToAlignment(uint64_t Value, Align Alignment)
Returns the offset to the next integer (mod 2**64) that is greater than or equal to Value and is a mu...
Definition Alignment.h:186
LLVM_ABI void jitLinkForORC(object::OwningBinary< object::ObjectFile > O, RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver, bool ProcessAllSections, unique_function< Error(const object::ObjectFile &Obj, RuntimeDyld::LoadedObjectInfo &, std::map< StringRef, JITEvaluatedSymbol >)> OnLoaded, unique_function< void(object::OwningBinary< object::ObjectFile >, std::unique_ptr< RuntimeDyld::LoadedObjectInfo >, Error)> OnEmitted)
static std::unique_ptr< RuntimeDyldELF > createRuntimeDyldELF(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, JITSymbolResolver &Resolver, bool ProcessAllSections, RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmitted)
std::string toString(const APInt &I, unsigned Radix, bool Signed, bool formatAsCLiteral=false, bool UpperCase=true, bool InsertSeparators=false)
static bool isZeroInit(const SectionRef Section)
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
Definition Alignment.h:201
static uint64_t computeAllocationSizeForSections(std::vector< uint64_t > &SectionSizes, Align Alignment)
static bool isRequiredForExecution(const SectionRef Section)
SymInfo contains information about symbol: it's address and section index which is -1LL for absolute ...
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
Definition Alignment.h:77
support::ulittle32_t VirtualSize
Definition COFF.h:451
support::ulittle32_t Characteristics
Definition COFF.h:459
support::ulittle32_t SizeOfRawData
Definition COFF.h:453