24#define DEBUG_TYPE "dyld"
28class LoadedMachOObjectInfo final
30 RuntimeDyld::LoadedObjectInfo> {
33 ObjSectionToIDMap ObjSecToIDMap)
37 getObjectForDebug(
const ObjectFile &Obj)
const override {
47 unsigned NumBytes = 1 << RE.
Size;
58 bool TargetIsLocalThumbFunc) {
69 uint8_t *LocalAddress = Section.getAddressWithOffset(
Offset);
70 unsigned NumBytes = 1 <<
Size;
78 bool IsCode = TargetSection.
isText();
80 if (
auto TargetSectionIDOrErr =
82 TargetSectionID = *TargetSectionIDOrErr;
84 return TargetSectionIDOrErr.takeError();
86 Addend -= SectionBaseAddr;
88 R.IsTargetThumbFunc = TargetIsLocalThumbFunc;
111 if (
auto TargetNameOrErr = Symbol->getName())
112 TargetName = *TargetNameOrErr;
114 return TargetNameOrErr.takeError();
118 const auto &
SymInfo = SI->second;
127 bool IsCode = Sec.
isText();
130 Value.SectionID = *SectionIDOrErr;
132 return SectionIDOrErr.takeError();
142 unsigned OffsetToNextPC) {
143 auto &O = *cast<MachOObjectFile>(RI->getObject());
151 uint8_t *LocalAddress = Section.getAddress() + RE.
Offset;
155 <<
" LocalAddress: " <<
format(
"%p", LocalAddress)
156 <<
" FinalAddress: " <<
format(
"0x%016" PRIx64, FinalAddress)
159 <<
" Size: " << (1 << RE.
Size) <<
"\n";
168 for (; SI != SE; ++SI) {
171 if ((
Addr >= SAddr) && (
Addr < SAddr + SSize))
183 unsigned PTSectionID) {
185 "Pointer table section not supported in 64-bit MachO.");
190 unsigned FirstIndirectSymbol = Sec32.
reserved1;
191 const unsigned PTEntrySize = 4;
192 unsigned NumPTEntries = PTSectionSize / PTEntrySize;
193 unsigned PTEntryOffset = 0;
195 assert((PTSectionSize % PTEntrySize) == 0 &&
196 "Pointers section does not contain a whole number of stubs?");
200 << PTSectionID <<
", " << NumPTEntries <<
" entries, "
201 << PTEntrySize <<
" bytes each:\n");
203 for (
unsigned i = 0; i < NumPTEntries; ++i) {
204 unsigned SymbolIndex =
208 if (
auto IndirectSymbolNameOrErr = SI->getName())
209 IndirectSymbolName = *IndirectSymbolNameOrErr;
211 return IndirectSymbolNameOrErr.takeError();
212 LLVM_DEBUG(
dbgs() <<
" " << IndirectSymbolName <<
": index " << SymbolIndex
213 <<
", PT offset: " << PTEntryOffset <<
"\n");
217 PTEntryOffset += PTEntrySize;
226template <
typename Impl>
234 for (
const auto &Section : Obj.
sections()) {
244 if (
Name ==
"__text") {
245 if (
auto TextSIDOrErr = findOrEmitSection(Obj, Section,
true, SectionMap))
246 TextSID = *TextSIDOrErr;
248 return TextSIDOrErr.takeError();
249 }
else if (
Name ==
"__eh_frame") {
250 if (
auto EHFrameSIDOrErr = findOrEmitSection(Obj, Section,
false,
252 EHFrameSID = *EHFrameSIDOrErr;
254 return EHFrameSIDOrErr.takeError();
255 }
else if (
Name ==
"__gcc_except_tab") {
256 if (
auto ExceptTabSIDOrErr = findOrEmitSection(Obj, Section,
true,
258 ExceptTabSID = *ExceptTabSIDOrErr;
260 return ExceptTabSIDOrErr.takeError();
262 auto I = SectionMap.find(Section);
263 if (
I != SectionMap.end())
264 if (
auto Err =
impl().finalizeSection(Obj,
I->second, Section))
268 UnregisteredEHFrameSections.push_back(
274template <
typename Impl>
276 int64_t DeltaForText,
277 int64_t DeltaForEH) {
278 typedef typename Impl::TargetPtrT TargetPtrT;
280 LLVM_DEBUG(
dbgs() <<
"Processing FDE: Delta for text: " << DeltaForText
281 <<
", Delta for EH: " << DeltaForEH <<
"\n");
290 TargetPtrT FDELocation = readBytesUnaligned(
P,
sizeof(TargetPtrT));
291 TargetPtrT NewLocation = FDELocation - DeltaForText;
292 writeBytesUnaligned(NewLocation,
P,
sizeof(TargetPtrT));
294 P +=
sizeof(TargetPtrT);
297 P +=
sizeof(TargetPtrT);
299 uint8_t Augmentationsize = *
P;
301 if (Augmentationsize != 0) {
302 TargetPtrT LSDA = readBytesUnaligned(
P,
sizeof(TargetPtrT));
303 TargetPtrT NewLSDA = LSDA - DeltaForEH;
304 writeBytesUnaligned(NewLSDA,
P,
sizeof(TargetPtrT));
311 int64_t ObjDistance =
static_cast<int64_t
>(
A->getObjAddress()) -
312 static_cast<int64_t
>(
B->getObjAddress());
313 int64_t MemDistance =
A->getLoadAddress() -
B->getLoadAddress();
314 return ObjDistance - MemDistance;
317template <
typename Impl>
320 for (
int i = 0, e = UnregisteredEHFrameSections.size(); i != e; ++i) {
332 int64_t DeltaForEH = 0;
339 P = processFDE(
P, DeltaForText, DeltaForEH);
345 UnregisteredEHFrameSections.clear();
348std::unique_ptr<RuntimeDyldMachO>
359 return std::make_unique<RuntimeDyldMachOAArch64>(
MemMgr,
Resolver);
361 return std::make_unique<RuntimeDyldMachOAArch64>(
MemMgr,
Resolver);
365 return std::make_unique<RuntimeDyldMachOX86_64>(
MemMgr,
Resolver);
369std::unique_ptr<RuntimeDyld::LoadedObjectInfo>
372 return std::make_unique<LoadedMachOObjectInfo>(*
this,
373 *ObjSectionToIDOrErr);
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
place backedge safepoints impl
static StringRef getName(Value *V)
#define RTDYLD_INVALID_SECTION_ID
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
Symbol resolution interface.
RelocationEntry - used to represent relocations internally in the dynamic linker.
unsigned Size
The size of this relocation (MachO specific).
uint32_t RelType
RelType - relocation type.
uint64_t Offset
Offset - offset into the section.
bool IsPCRel
True if this is a PCRel relocation (MachO specific).
int64_t Addend
Addend - the relocation addend encoded in the instruction itself.
unsigned SectionID
SectionID - the section this relocation points to.
Interface for looking up the initializer for a variable name, used by Init::resolveReferences.
std::map< SectionRef, unsigned > ObjSectionToIDMap
void addRelocationForSymbol(const RelocationEntry &RE, StringRef SymbolName)
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.
uint64_t readBytesUnaligned(uint8_t *Src, unsigned Size) const
Endian-aware read Read the least significant Size bytes from Src.
RTDyldSymbolTable GlobalSymbolTable
Expected< ObjSectionToIDMap > loadObjectImpl(const object::ObjectFile &Obj)
RuntimeDyldMachOTarget - Templated base class for generic MachO linker algorithms and data structures...
void registerEHFrames() override
Error finalizeLoad(const ObjectFile &Obj, ObjSectionToIDMap &SectionMap) override
static std::unique_ptr< RuntimeDyldMachO > create(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver)
Create a RuntimeDyldMachO instance for the given target architecture.
static section_iterator getSectionByAddress(const MachOObjectFile &Obj, uint64_t Addr)
int64_t memcpyAddend(const RelocationEntry &RE) const
This convenience method uses memcpy to extract a contiguous addend (the addend size and offset are ta...
std::unique_ptr< RuntimeDyld::LoadedObjectInfo > loadObject(const object::ObjectFile &O) override
Error populateIndirectSymbolPointersSection(const MachOObjectFile &Obj, const SectionRef &PTSection, unsigned PTSectionID)
void makeValueAddendPCRel(RelocationValueRef &Value, const relocation_iterator &RI, unsigned OffsetToNextPC)
Make the RelocationValueRef addend PC-relative.
Expected< RelocationValueRef > getRelocationValueRef(const ObjectFile &BaseTObj, const relocation_iterator &RI, const RelocationEntry &RE, ObjSectionToIDMap &ObjSectionToID)
Construct a RelocationValueRef representing the relocation target.
Expected< relocation_iterator > processScatteredVANILLA(unsigned SectionID, relocation_iterator RelI, const ObjectFile &BaseObjT, RuntimeDyldMachO::ObjSectionToIDMap &ObjSectionToID, bool TargetIsLocalThumbFunc=false)
Process a scattered vanilla relocation.
bool isCompatibleFile(const object::ObjectFile &Obj) const override
void dumpRelocationToResolve(const RelocationEntry &RE, uint64_t Value) const
Dump information about the relocation entry (RE) and resolved value.
SectionEntry - represents a section emitted into memory by the dynamic linker.
uint8_t * getAddress() const
uint64_t getLoadAddress() const
iterator find(StringRef Key)
StringRef - Represent a constant reference to a string, i.e.
constexpr const char * data() const
data - Get a pointer to the start of the string (which may not be null terminated).
LLVM Value Representation.
Expected< SectionRef > getSection(unsigned SectionIndex) const
section_iterator section_end() const override
uint32_t getScatteredRelocationValue(const MachO::any_relocation_info &RE) const
SectionRef getAnyRelocationSection(const MachO::any_relocation_info &RE) const
MachO::dysymtab_command getDysymtabLoadCommand() const
section_iterator section_begin() const override
unsigned getAnyRelocationType(const MachO::any_relocation_info &RE) const
bool getPlainRelocationExternal(const MachO::any_relocation_info &RE) const
symbol_iterator getSymbolByIndex(unsigned Index) const
unsigned getAnyRelocationPCRel(const MachO::any_relocation_info &RE) const
unsigned getAnyRelocationLength(const MachO::any_relocation_info &RE) const
bool is64Bit() const override
MachO::any_relocation_info getRelocation(DataRefImpl Rel) const
uint32_t getIndirectSymbolTableEntry(const MachO::dysymtab_command &DLC, unsigned Index) const
This class is the base class for all object file types.
section_iterator_range sections() const
This is a value type class that represents a single section in the list of sections in the object fil...
DataRefImpl getRawDataRefImpl() const
uint64_t getAddress() const
bool isText() const
Whether this section contains instructions.
A raw_ostream that writes to an std::string.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
This is an optimization pass for GlobalISel generic memory operations.
void logAllUnhandledErrors(Error E, raw_ostream &OS, Twine ErrorBanner={})
Log all errors (if any) in E to OS.
static int64_t computeDelta(SectionEntry *A, SectionEntry *B)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
void consumeError(Error Err)
Consume a Error without doing anything.
SymInfo contains information about symbol: it's address and section index which is -1LL for absolute ...
LoadedObjectInfoHelper()=default