25 #define DEBUG_TYPE "dyld" 29 class LoadedMachOObjectInfo final
31 RuntimeDyld::LoadedObjectInfo> {
34 ObjSectionToIDMap ObjSecToIDMap)
38 getObjectForDebug(
const ObjectFile &Obj)
const override {
48 unsigned NumBytes = 1 << RE.
Size;
51 return static_cast<int64_t
>(readBytesUnaligned(Src, NumBytes));
59 bool TargetIsLocalThumbFunc) {
69 uint64_t
Offset = RelI->getOffset();
71 unsigned NumBytes = 1 <<
Size;
72 int64_t Addend = readBytesUnaligned(LocalAddress, NumBytes);
77 uint64_t SectionBaseAddr = TargetSI->getAddress();
79 bool IsCode = TargetSection.
isText();
81 if (
auto TargetSectionIDOrErr =
82 findOrEmitSection(Obj, TargetSection, IsCode, ObjSectionToID))
83 TargetSectionID = *TargetSectionIDOrErr;
85 return TargetSectionIDOrErr.takeError();
87 Addend -= SectionBaseAddr;
91 addRelocationForSection(R, TargetSectionID);
112 if (
auto TargetNameOrErr = Symbol->
getName())
113 TargetName = *TargetNameOrErr;
115 return TargetNameOrErr.takeError();
117 GlobalSymbolTable.find(TargetName.
data());
118 if (SI != GlobalSymbolTable.end()) {
119 const auto &
SymInfo = SI->second;
128 bool IsCode = Sec.
isText();
129 if (
auto SectionIDOrErr = findOrEmitSection(Obj, Sec, IsCode,
133 return SectionIDOrErr.takeError();
143 unsigned OffsetToNextPC) {
144 auto &
O = *cast<MachOObjectFile>(RI->getObject());
146 Value.
Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress();
150 uint64_t
Value)
const {
156 <<
" LocalAddress: " <<
format(
"%p", LocalAddress)
157 <<
" FinalAddress: " <<
format(
"0x%016" PRIx64, FinalAddress)
158 <<
" Value: " <<
format(
"0x%016" PRIx64, Value) <<
" Addend: " << RE.
Addend 160 <<
" Size: " << (1 << RE.
Size) <<
"\n";
169 for (; SI != SE; ++
SI) {
170 uint64_t SAddr = SI->getAddress();
171 uint64_t SSize = SI->getSize();
172 if ((Addr >= SAddr) && (Addr < SAddr + SSize))
184 unsigned PTSectionID) {
186 "Pointer table section not supported in 64-bit MachO.");
191 unsigned FirstIndirectSymbol = Sec32.
reserved1;
192 const unsigned PTEntrySize = 4;
193 unsigned NumPTEntries = PTSectionSize / PTEntrySize;
194 unsigned PTEntryOffset = 0;
196 assert((PTSectionSize % PTEntrySize) == 0 &&
197 "Pointers section does not contain a whole number of stubs?");
200 << Sections[PTSectionID].
getName() <<
", Section ID " 201 << PTSectionID <<
", " << NumPTEntries <<
" entries, " 202 << PTEntrySize <<
" bytes each:\n");
204 for (
unsigned i = 0; i < NumPTEntries; ++i) {
205 unsigned SymbolIndex =
209 if (
auto IndirectSymbolNameOrErr = SI->
getName())
210 IndirectSymbolName = *IndirectSymbolNameOrErr;
212 return IndirectSymbolNameOrErr.takeError();
213 LLVM_DEBUG(
dbgs() <<
" " << IndirectSymbolName <<
": index " << SymbolIndex
214 <<
", PT offset: " << PTEntryOffset <<
"\n");
217 addRelocationForSymbol(RE, IndirectSymbolName);
218 PTEntryOffset += PTEntrySize;
227 template <
typename Impl>
242 if (Name ==
"__text") {
243 if (
auto TextSIDOrErr = findOrEmitSection(Obj,
Section,
true, SectionMap))
244 TextSID = *TextSIDOrErr;
246 return TextSIDOrErr.takeError();
247 }
else if (Name ==
"__eh_frame") {
248 if (
auto EHFrameSIDOrErr = findOrEmitSection(Obj,
Section,
false,
250 EHFrameSID = *EHFrameSIDOrErr;
252 return EHFrameSIDOrErr.takeError();
253 }
else if (Name ==
"__gcc_except_tab") {
254 if (
auto ExceptTabSIDOrErr = findOrEmitSection(Obj,
Section,
true,
256 ExceptTabSID = *ExceptTabSIDOrErr;
258 return ExceptTabSIDOrErr.takeError();
261 if (
I != SectionMap.end())
262 if (
auto Err =
impl().finalizeSection(Obj,
I->second,
Section))
266 UnregisteredEHFrameSections.push_back(
272 template <
typename Impl>
274 int64_t DeltaForText,
275 int64_t DeltaForEH) {
276 typedef typename Impl::TargetPtrT TargetPtrT;
278 LLVM_DEBUG(
dbgs() <<
"Processing FDE: Delta for text: " << DeltaForText
279 <<
", Delta for EH: " << DeltaForEH <<
"\n");
280 uint32_t Length = readBytesUnaligned(P, 4);
282 uint8_t *
Ret = P + Length;
288 TargetPtrT FDELocation = readBytesUnaligned(P,
sizeof(TargetPtrT));
289 TargetPtrT NewLocation = FDELocation - DeltaForText;
290 writeBytesUnaligned(NewLocation, P,
sizeof(TargetPtrT));
292 P +=
sizeof(TargetPtrT);
295 P +=
sizeof(TargetPtrT);
297 uint8_t Augmentationsize = *
P;
299 if (Augmentationsize != 0) {
300 TargetPtrT LSDA = readBytesUnaligned(P,
sizeof(TargetPtrT));
301 TargetPtrT NewLSDA = LSDA - DeltaForEH;
302 writeBytesUnaligned(NewLSDA, P,
sizeof(TargetPtrT));
309 int64_t ObjDistance =
static_cast<int64_t
>(A->
getObjAddress()) -
312 return ObjDistance - MemDistance;
315 template <
typename Impl>
318 for (
int i = 0, e = UnregisteredEHFrameSections.size(); i != e; ++i) {
330 int64_t DeltaForEH = 0;
335 uint8_t *End = P + EHFrame->
getSize();
337 P = processFDE(P, DeltaForText, DeltaForEH);
343 UnregisteredEHFrameSections.clear();
346 std::unique_ptr<RuntimeDyldMachO>
355 return make_unique<RuntimeDyldMachOARM>(MemMgr, Resolver);
357 return make_unique<RuntimeDyldMachOAArch64>(MemMgr, Resolver);
359 return make_unique<RuntimeDyldMachOI386>(MemMgr, Resolver);
361 return make_unique<RuntimeDyldMachOX86_64>(MemMgr, Resolver);
365 std::unique_ptr<RuntimeDyld::LoadedObjectInfo>
367 if (
auto ObjSectionToIDOrErr = loadObjectImpl(O))
368 return llvm::make_unique<LoadedMachOObjectInfo>(*
this,
369 *ObjSectionToIDOrErr);
RelocationEntry - used to represent relocations internally in the dynamic linker. ...
Error finalizeLoad(const ObjectFile &Obj, ObjSectionToIDMap &SectionMap) override
This class represents lattice values for constants.
Expected< StringRef > getName() const
unsigned getAnyRelocationPCRel(const MachO::any_relocation_info &RE) const
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
bool getPlainRelocationExternal(const MachO::any_relocation_info &RE) const
Expected< SectionRef > getSection(unsigned SectionIndex) const
void dumpRelocationToResolve(const RelocationEntry &RE, uint64_t Value) const
Dump information about the relocation entry (RE) and resolved value.
This class is the base class for all object file types.
uint8_t * getAddress() const
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE const char * data() const
data - Get a pointer to the start of the string (which may not be null terminated).
bool isCompatibleFile(const object::ObjectFile &Obj) const override
bool IsPCRel
True if this is a PCRel relocation (MachO specific).
unsigned SectionID
SectionID - the section this relocation points to.
amdgpu Simplify well known AMD library false Value Value const Twine & Name
uint64_t getAddress() const
static StringRef getName(Value *V)
bool isText() const
Whether this section contains instructions.
Tagged union holding either a T or a Error.
static std::unique_ptr< RuntimeDyldMachO > create(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver)
Create a RuntimeDyldMachO instance for the given target architecture.
place backedge safepoints impl
int64_t memcpyAddend(const RelocationEntry &RE) const
This convenience method uses memcpy to extract a contiguous addend (the addend size and offset are ta...
SectionRef getAnyRelocationSection(const MachO::any_relocation_info &RE) const
symbol_iterator getSymbolByIndex(unsigned Index) const
section_iterator_range sections() const
void registerEHFrames() override
unsigned getAnyRelocationType(const MachO::any_relocation_info &RE) const
RuntimeDyldMachOTarget - Templated base class for generic MachO linker algorithms and data structures...
Expected< RelocationValueRef > getRelocationValueRef(const ObjectFile &BaseTObj, const relocation_iterator &RI, const RelocationEntry &RE, ObjSectionToIDMap &ObjSectionToID)
Construct a RelocationValueRef representing the relocation target.
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static int64_t computeDelta(SectionEntry *A, SectionEntry *B)
MachO::any_relocation_info getRelocation(DataRefImpl Rel) const
Interface for looking up the initializer for a variable name, used by Init::resolveReferences.
Symbol resolution interface.
uintptr_t getObjAddress() const
DataRefImpl getRawDataRefImpl() const
void logAllUnhandledErrors(Error E, raw_ostream &OS, Twine ErrorBanner={})
Log all errors (if any) in E to OS.
static section_iterator getSectionByAddress(const MachOObjectFile &Obj, uint64_t Addr)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
static ErrorSuccess success()
Create a success value.
int64_t Addend
Addend - the relocation addend encoded in the instruction itself.
uint32_t RelType
RelType - relocation type.
Expected< relocation_iterator > processScatteredVANILLA(unsigned SectionID, relocation_iterator RelI, const ObjectFile &BaseObjT, RuntimeDyldMachO::ObjSectionToIDMap &ObjSectionToID, bool TargetIsLocalThumbFunc=false)
Process a scattered vanilla relocation.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
#define RTDYLD_INVALID_SECTION_ID
unsigned getAnyRelocationLength(const MachO::any_relocation_info &RE) const
uint64_t Offset
Offset - offset into the section.
std::map< SectionRef, unsigned > ObjSectionToIDMap
uint8_t * getAddressWithOffset(unsigned OffsetBytes) const
Return the address of this section with an offset.
uint64_t getLoadAddress() const
section_iterator section_begin() const override
std::unique_ptr< RuntimeDyld::LoadedObjectInfo > loadObject(const object::ObjectFile &O) override
SymInfo contains information about symbol: it's address and section index which is -1LL for absolute ...
SectionEntry - represents a section emitted into memory by the dynamic linker.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
A raw_ostream that writes to an std::string.
LLVM Value Representation.
Lightweight error class with error context and mandatory checking.
unsigned Size
The size of this relocation (MachO specific).
section_iterator section_end() const override
Error populateIndirectSymbolPointersSection(const MachOObjectFile &Obj, const SectionRef &PTSection, unsigned PTSectionID)
StringRef - Represent a constant reference to a string, i.e.
void makeValueAddendPCRel(RelocationValueRef &Value, const relocation_iterator &RI, unsigned OffsetToNextPC)
Make the RelocationValueRef addend PC-relative.
uint32_t getIndirectSymbolTableEntry(const MachO::dysymtab_command &DLC, unsigned Index) const
uint32_t getScatteredRelocationValue(const MachO::any_relocation_info &RE) const
This is a value type class that represents a single section in the list of sections in the object fil...
MachO::dysymtab_command getDysymtabLoadCommand() const