xref: /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp (revision 5f757f3ff9144b609b3c433dfd370cc6bdc191ad)
10b57cec5SDimitry Andric //===-- RuntimeDyldELF.cpp - Run-time dynamic linker for MC-JIT -*- C++ -*-===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric //
90b57cec5SDimitry Andric // Implementation of ELF support for the MC-JIT runtime dynamic linker.
100b57cec5SDimitry Andric //
110b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
120b57cec5SDimitry Andric 
130b57cec5SDimitry Andric #include "RuntimeDyldELF.h"
140b57cec5SDimitry Andric #include "RuntimeDyldCheckerImpl.h"
150b57cec5SDimitry Andric #include "Targets/RuntimeDyldELFMips.h"
160b57cec5SDimitry Andric #include "llvm/ADT/STLExtras.h"
170b57cec5SDimitry Andric #include "llvm/ADT/StringRef.h"
180b57cec5SDimitry Andric #include "llvm/BinaryFormat/ELF.h"
190b57cec5SDimitry Andric #include "llvm/Object/ELFObjectFile.h"
200b57cec5SDimitry Andric #include "llvm/Object/ObjectFile.h"
210b57cec5SDimitry Andric #include "llvm/Support/Endian.h"
220b57cec5SDimitry Andric #include "llvm/Support/MemoryBuffer.h"
2306c3fb27SDimitry Andric #include "llvm/TargetParser/Triple.h"
240b57cec5SDimitry Andric 
250b57cec5SDimitry Andric using namespace llvm;
260b57cec5SDimitry Andric using namespace llvm::object;
270b57cec5SDimitry Andric using namespace llvm::support::endian;
280b57cec5SDimitry Andric 
290b57cec5SDimitry Andric #define DEBUG_TYPE "dyld"
300b57cec5SDimitry Andric 
310b57cec5SDimitry Andric static void or32le(void *P, int32_t V) { write32le(P, read32le(P) | V); }
320b57cec5SDimitry Andric 
330b57cec5SDimitry Andric static void or32AArch64Imm(void *L, uint64_t Imm) {
340b57cec5SDimitry Andric   or32le(L, (Imm & 0xFFF) << 10);
350b57cec5SDimitry Andric }
360b57cec5SDimitry Andric 
370b57cec5SDimitry Andric template <class T> static void write(bool isBE, void *P, T V) {
38*5f757f3fSDimitry Andric   isBE ? write<T, llvm::endianness::big>(P, V)
39*5f757f3fSDimitry Andric        : write<T, llvm::endianness::little>(P, V);
400b57cec5SDimitry Andric }
410b57cec5SDimitry Andric 
420b57cec5SDimitry Andric static void write32AArch64Addr(void *L, uint64_t Imm) {
430b57cec5SDimitry Andric   uint32_t ImmLo = (Imm & 0x3) << 29;
440b57cec5SDimitry Andric   uint32_t ImmHi = (Imm & 0x1FFFFC) << 3;
450b57cec5SDimitry Andric   uint64_t Mask = (0x3 << 29) | (0x1FFFFC << 3);
460b57cec5SDimitry Andric   write32le(L, (read32le(L) & ~Mask) | ImmLo | ImmHi);
470b57cec5SDimitry Andric }
480b57cec5SDimitry Andric 
490b57cec5SDimitry Andric // Return the bits [Start, End] from Val shifted Start bits.
500b57cec5SDimitry Andric // For instance, getBits(0xF0, 4, 8) returns 0xF.
510b57cec5SDimitry Andric static uint64_t getBits(uint64_t Val, int Start, int End) {
520b57cec5SDimitry Andric   uint64_t Mask = ((uint64_t)1 << (End + 1 - Start)) - 1;
530b57cec5SDimitry Andric   return (Val >> Start) & Mask;
540b57cec5SDimitry Andric }
550b57cec5SDimitry Andric 
560b57cec5SDimitry Andric namespace {
570b57cec5SDimitry Andric 
580b57cec5SDimitry Andric template <class ELFT> class DyldELFObject : public ELFObjectFile<ELFT> {
590b57cec5SDimitry Andric   LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
600b57cec5SDimitry Andric 
610b57cec5SDimitry Andric   typedef typename ELFT::uint addr_type;
620b57cec5SDimitry Andric 
630b57cec5SDimitry Andric   DyldELFObject(ELFObjectFile<ELFT> &&Obj);
640b57cec5SDimitry Andric 
650b57cec5SDimitry Andric public:
660b57cec5SDimitry Andric   static Expected<std::unique_ptr<DyldELFObject>>
670b57cec5SDimitry Andric   create(MemoryBufferRef Wrapper);
680b57cec5SDimitry Andric 
690b57cec5SDimitry Andric   void updateSectionAddress(const SectionRef &Sec, uint64_t Addr);
700b57cec5SDimitry Andric 
710b57cec5SDimitry Andric   void updateSymbolAddress(const SymbolRef &SymRef, uint64_t Addr);
720b57cec5SDimitry Andric 
730b57cec5SDimitry Andric   // Methods for type inquiry through isa, cast and dyn_cast
740b57cec5SDimitry Andric   static bool classof(const Binary *v) {
750b57cec5SDimitry Andric     return (isa<ELFObjectFile<ELFT>>(v) &&
760b57cec5SDimitry Andric             classof(cast<ELFObjectFile<ELFT>>(v)));
770b57cec5SDimitry Andric   }
780b57cec5SDimitry Andric   static bool classof(const ELFObjectFile<ELFT> *v) {
790b57cec5SDimitry Andric     return v->isDyldType();
800b57cec5SDimitry Andric   }
810b57cec5SDimitry Andric };
820b57cec5SDimitry Andric 
830b57cec5SDimitry Andric 
840b57cec5SDimitry Andric 
850b57cec5SDimitry Andric // The MemoryBuffer passed into this constructor is just a wrapper around the
860b57cec5SDimitry Andric // actual memory.  Ultimately, the Binary parent class will take ownership of
870b57cec5SDimitry Andric // this MemoryBuffer object but not the underlying memory.
880b57cec5SDimitry Andric template <class ELFT>
890b57cec5SDimitry Andric DyldELFObject<ELFT>::DyldELFObject(ELFObjectFile<ELFT> &&Obj)
900b57cec5SDimitry Andric     : ELFObjectFile<ELFT>(std::move(Obj)) {
910b57cec5SDimitry Andric   this->isDyldELFObject = true;
920b57cec5SDimitry Andric }
930b57cec5SDimitry Andric 
940b57cec5SDimitry Andric template <class ELFT>
950b57cec5SDimitry Andric Expected<std::unique_ptr<DyldELFObject<ELFT>>>
960b57cec5SDimitry Andric DyldELFObject<ELFT>::create(MemoryBufferRef Wrapper) {
970b57cec5SDimitry Andric   auto Obj = ELFObjectFile<ELFT>::create(Wrapper);
980b57cec5SDimitry Andric   if (auto E = Obj.takeError())
990b57cec5SDimitry Andric     return std::move(E);
1000b57cec5SDimitry Andric   std::unique_ptr<DyldELFObject<ELFT>> Ret(
1010b57cec5SDimitry Andric       new DyldELFObject<ELFT>(std::move(*Obj)));
1020b57cec5SDimitry Andric   return std::move(Ret);
1030b57cec5SDimitry Andric }
1040b57cec5SDimitry Andric 
1050b57cec5SDimitry Andric template <class ELFT>
1060b57cec5SDimitry Andric void DyldELFObject<ELFT>::updateSectionAddress(const SectionRef &Sec,
1070b57cec5SDimitry Andric                                                uint64_t Addr) {
1080b57cec5SDimitry Andric   DataRefImpl ShdrRef = Sec.getRawDataRefImpl();
1090b57cec5SDimitry Andric   Elf_Shdr *shdr =
1100b57cec5SDimitry Andric       const_cast<Elf_Shdr *>(reinterpret_cast<const Elf_Shdr *>(ShdrRef.p));
1110b57cec5SDimitry Andric 
1120b57cec5SDimitry Andric   // This assumes the address passed in matches the target address bitness
1130b57cec5SDimitry Andric   // The template-based type cast handles everything else.
1140b57cec5SDimitry Andric   shdr->sh_addr = static_cast<addr_type>(Addr);
1150b57cec5SDimitry Andric }
1160b57cec5SDimitry Andric 
1170b57cec5SDimitry Andric template <class ELFT>
1180b57cec5SDimitry Andric void DyldELFObject<ELFT>::updateSymbolAddress(const SymbolRef &SymRef,
1190b57cec5SDimitry Andric                                               uint64_t Addr) {
1200b57cec5SDimitry Andric 
1210b57cec5SDimitry Andric   Elf_Sym *sym = const_cast<Elf_Sym *>(
1220b57cec5SDimitry Andric       ELFObjectFile<ELFT>::getSymbol(SymRef.getRawDataRefImpl()));
1230b57cec5SDimitry Andric 
1240b57cec5SDimitry Andric   // This assumes the address passed in matches the target address bitness
1250b57cec5SDimitry Andric   // The template-based type cast handles everything else.
1260b57cec5SDimitry Andric   sym->st_value = static_cast<addr_type>(Addr);
1270b57cec5SDimitry Andric }
1280b57cec5SDimitry Andric 
1290b57cec5SDimitry Andric class LoadedELFObjectInfo final
1300b57cec5SDimitry Andric     : public LoadedObjectInfoHelper<LoadedELFObjectInfo,
1310b57cec5SDimitry Andric                                     RuntimeDyld::LoadedObjectInfo> {
1320b57cec5SDimitry Andric public:
1330b57cec5SDimitry Andric   LoadedELFObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap)
1340b57cec5SDimitry Andric       : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {}
1350b57cec5SDimitry Andric 
1360b57cec5SDimitry Andric   OwningBinary<ObjectFile>
1370b57cec5SDimitry Andric   getObjectForDebug(const ObjectFile &Obj) const override;
1380b57cec5SDimitry Andric };
1390b57cec5SDimitry Andric 
1400b57cec5SDimitry Andric template <typename ELFT>
1410b57cec5SDimitry Andric static Expected<std::unique_ptr<DyldELFObject<ELFT>>>
1420b57cec5SDimitry Andric createRTDyldELFObject(MemoryBufferRef Buffer, const ObjectFile &SourceObject,
1430b57cec5SDimitry Andric                       const LoadedELFObjectInfo &L) {
1440b57cec5SDimitry Andric   typedef typename ELFT::Shdr Elf_Shdr;
1450b57cec5SDimitry Andric   typedef typename ELFT::uint addr_type;
1460b57cec5SDimitry Andric 
1470b57cec5SDimitry Andric   Expected<std::unique_ptr<DyldELFObject<ELFT>>> ObjOrErr =
1480b57cec5SDimitry Andric       DyldELFObject<ELFT>::create(Buffer);
1490b57cec5SDimitry Andric   if (Error E = ObjOrErr.takeError())
1500b57cec5SDimitry Andric     return std::move(E);
1510b57cec5SDimitry Andric 
1520b57cec5SDimitry Andric   std::unique_ptr<DyldELFObject<ELFT>> Obj = std::move(*ObjOrErr);
1530b57cec5SDimitry Andric 
1540b57cec5SDimitry Andric   // Iterate over all sections in the object.
1550b57cec5SDimitry Andric   auto SI = SourceObject.section_begin();
1560b57cec5SDimitry Andric   for (const auto &Sec : Obj->sections()) {
1578bcb0991SDimitry Andric     Expected<StringRef> NameOrErr = Sec.getName();
1588bcb0991SDimitry Andric     if (!NameOrErr) {
1598bcb0991SDimitry Andric       consumeError(NameOrErr.takeError());
1608bcb0991SDimitry Andric       continue;
1618bcb0991SDimitry Andric     }
1628bcb0991SDimitry Andric 
1638bcb0991SDimitry Andric     if (*NameOrErr != "") {
1640b57cec5SDimitry Andric       DataRefImpl ShdrRef = Sec.getRawDataRefImpl();
1650b57cec5SDimitry Andric       Elf_Shdr *shdr = const_cast<Elf_Shdr *>(
1660b57cec5SDimitry Andric           reinterpret_cast<const Elf_Shdr *>(ShdrRef.p));
1670b57cec5SDimitry Andric 
1680b57cec5SDimitry Andric       if (uint64_t SecLoadAddr = L.getSectionLoadAddress(*SI)) {
1690b57cec5SDimitry Andric         // This assumes that the address passed in matches the target address
1700b57cec5SDimitry Andric         // bitness. The template-based type cast handles everything else.
1710b57cec5SDimitry Andric         shdr->sh_addr = static_cast<addr_type>(SecLoadAddr);
1720b57cec5SDimitry Andric       }
1730b57cec5SDimitry Andric     }
1740b57cec5SDimitry Andric     ++SI;
1750b57cec5SDimitry Andric   }
1760b57cec5SDimitry Andric 
1770b57cec5SDimitry Andric   return std::move(Obj);
1780b57cec5SDimitry Andric }
1790b57cec5SDimitry Andric 
1800b57cec5SDimitry Andric static OwningBinary<ObjectFile>
1810b57cec5SDimitry Andric createELFDebugObject(const ObjectFile &Obj, const LoadedELFObjectInfo &L) {
1820b57cec5SDimitry Andric   assert(Obj.isELF() && "Not an ELF object file.");
1830b57cec5SDimitry Andric 
1840b57cec5SDimitry Andric   std::unique_ptr<MemoryBuffer> Buffer =
1850b57cec5SDimitry Andric     MemoryBuffer::getMemBufferCopy(Obj.getData(), Obj.getFileName());
1860b57cec5SDimitry Andric 
1870b57cec5SDimitry Andric   Expected<std::unique_ptr<ObjectFile>> DebugObj(nullptr);
1880b57cec5SDimitry Andric   handleAllErrors(DebugObj.takeError());
1890b57cec5SDimitry Andric   if (Obj.getBytesInAddress() == 4 && Obj.isLittleEndian())
1900b57cec5SDimitry Andric     DebugObj =
1910b57cec5SDimitry Andric         createRTDyldELFObject<ELF32LE>(Buffer->getMemBufferRef(), Obj, L);
1920b57cec5SDimitry Andric   else if (Obj.getBytesInAddress() == 4 && !Obj.isLittleEndian())
1930b57cec5SDimitry Andric     DebugObj =
1940b57cec5SDimitry Andric         createRTDyldELFObject<ELF32BE>(Buffer->getMemBufferRef(), Obj, L);
1950b57cec5SDimitry Andric   else if (Obj.getBytesInAddress() == 8 && !Obj.isLittleEndian())
1960b57cec5SDimitry Andric     DebugObj =
1970b57cec5SDimitry Andric         createRTDyldELFObject<ELF64BE>(Buffer->getMemBufferRef(), Obj, L);
1980b57cec5SDimitry Andric   else if (Obj.getBytesInAddress() == 8 && Obj.isLittleEndian())
1990b57cec5SDimitry Andric     DebugObj =
2000b57cec5SDimitry Andric         createRTDyldELFObject<ELF64LE>(Buffer->getMemBufferRef(), Obj, L);
2010b57cec5SDimitry Andric   else
2020b57cec5SDimitry Andric     llvm_unreachable("Unexpected ELF format");
2030b57cec5SDimitry Andric 
2040b57cec5SDimitry Andric   handleAllErrors(DebugObj.takeError());
2050b57cec5SDimitry Andric   return OwningBinary<ObjectFile>(std::move(*DebugObj), std::move(Buffer));
2060b57cec5SDimitry Andric }
2070b57cec5SDimitry Andric 
2080b57cec5SDimitry Andric OwningBinary<ObjectFile>
2090b57cec5SDimitry Andric LoadedELFObjectInfo::getObjectForDebug(const ObjectFile &Obj) const {
2100b57cec5SDimitry Andric   return createELFDebugObject(Obj, *this);
2110b57cec5SDimitry Andric }
2120b57cec5SDimitry Andric 
2130b57cec5SDimitry Andric } // anonymous namespace
2140b57cec5SDimitry Andric 
2150b57cec5SDimitry Andric namespace llvm {
2160b57cec5SDimitry Andric 
2170b57cec5SDimitry Andric RuntimeDyldELF::RuntimeDyldELF(RuntimeDyld::MemoryManager &MemMgr,
2180b57cec5SDimitry Andric                                JITSymbolResolver &Resolver)
2190b57cec5SDimitry Andric     : RuntimeDyldImpl(MemMgr, Resolver), GOTSectionID(0), CurrentGOTIndex(0) {}
22081ad6265SDimitry Andric RuntimeDyldELF::~RuntimeDyldELF() = default;
2210b57cec5SDimitry Andric 
2220b57cec5SDimitry Andric void RuntimeDyldELF::registerEHFrames() {
2230b57cec5SDimitry Andric   for (int i = 0, e = UnregisteredEHFrameSections.size(); i != e; ++i) {
2240b57cec5SDimitry Andric     SID EHFrameSID = UnregisteredEHFrameSections[i];
2250b57cec5SDimitry Andric     uint8_t *EHFrameAddr = Sections[EHFrameSID].getAddress();
2260b57cec5SDimitry Andric     uint64_t EHFrameLoadAddr = Sections[EHFrameSID].getLoadAddress();
2270b57cec5SDimitry Andric     size_t EHFrameSize = Sections[EHFrameSID].getSize();
2280b57cec5SDimitry Andric     MemMgr.registerEHFrames(EHFrameAddr, EHFrameLoadAddr, EHFrameSize);
2290b57cec5SDimitry Andric   }
2300b57cec5SDimitry Andric   UnregisteredEHFrameSections.clear();
2310b57cec5SDimitry Andric }
2320b57cec5SDimitry Andric 
2330b57cec5SDimitry Andric std::unique_ptr<RuntimeDyldELF>
2340b57cec5SDimitry Andric llvm::RuntimeDyldELF::create(Triple::ArchType Arch,
2350b57cec5SDimitry Andric                              RuntimeDyld::MemoryManager &MemMgr,
2360b57cec5SDimitry Andric                              JITSymbolResolver &Resolver) {
2370b57cec5SDimitry Andric   switch (Arch) {
2380b57cec5SDimitry Andric   default:
2398bcb0991SDimitry Andric     return std::make_unique<RuntimeDyldELF>(MemMgr, Resolver);
2400b57cec5SDimitry Andric   case Triple::mips:
2410b57cec5SDimitry Andric   case Triple::mipsel:
2420b57cec5SDimitry Andric   case Triple::mips64:
2430b57cec5SDimitry Andric   case Triple::mips64el:
2448bcb0991SDimitry Andric     return std::make_unique<RuntimeDyldELFMips>(MemMgr, Resolver);
2450b57cec5SDimitry Andric   }
2460b57cec5SDimitry Andric }
2470b57cec5SDimitry Andric 
2480b57cec5SDimitry Andric std::unique_ptr<RuntimeDyld::LoadedObjectInfo>
2490b57cec5SDimitry Andric RuntimeDyldELF::loadObject(const object::ObjectFile &O) {
2500b57cec5SDimitry Andric   if (auto ObjSectionToIDOrErr = loadObjectImpl(O))
2518bcb0991SDimitry Andric     return std::make_unique<LoadedELFObjectInfo>(*this, *ObjSectionToIDOrErr);
2520b57cec5SDimitry Andric   else {
2530b57cec5SDimitry Andric     HasError = true;
2540b57cec5SDimitry Andric     raw_string_ostream ErrStream(ErrorStr);
2550b57cec5SDimitry Andric     logAllUnhandledErrors(ObjSectionToIDOrErr.takeError(), ErrStream);
2560b57cec5SDimitry Andric     return nullptr;
2570b57cec5SDimitry Andric   }
2580b57cec5SDimitry Andric }
2590b57cec5SDimitry Andric 
2600b57cec5SDimitry Andric void RuntimeDyldELF::resolveX86_64Relocation(const SectionEntry &Section,
2610b57cec5SDimitry Andric                                              uint64_t Offset, uint64_t Value,
2620b57cec5SDimitry Andric                                              uint32_t Type, int64_t Addend,
2630b57cec5SDimitry Andric                                              uint64_t SymOffset) {
2640b57cec5SDimitry Andric   switch (Type) {
2650b57cec5SDimitry Andric   default:
2661106035dSDimitry Andric     report_fatal_error("Relocation type not implemented yet!");
2670b57cec5SDimitry Andric     break;
2680b57cec5SDimitry Andric   case ELF::R_X86_64_NONE:
2690b57cec5SDimitry Andric     break;
270fe6060f1SDimitry Andric   case ELF::R_X86_64_8: {
271fe6060f1SDimitry Andric     Value += Addend;
272fe6060f1SDimitry Andric     assert((int64_t)Value <= INT8_MAX && (int64_t)Value >= INT8_MIN);
273fe6060f1SDimitry Andric     uint8_t TruncatedAddr = (Value & 0xFF);
274fe6060f1SDimitry Andric     *Section.getAddressWithOffset(Offset) = TruncatedAddr;
275fe6060f1SDimitry Andric     LLVM_DEBUG(dbgs() << "Writing " << format("%p", TruncatedAddr) << " at "
276fe6060f1SDimitry Andric                       << format("%p\n", Section.getAddressWithOffset(Offset)));
277fe6060f1SDimitry Andric     break;
278fe6060f1SDimitry Andric   }
279fe6060f1SDimitry Andric   case ELF::R_X86_64_16: {
280fe6060f1SDimitry Andric     Value += Addend;
281fe6060f1SDimitry Andric     assert((int64_t)Value <= INT16_MAX && (int64_t)Value >= INT16_MIN);
282fe6060f1SDimitry Andric     uint16_t TruncatedAddr = (Value & 0xFFFF);
283fe6060f1SDimitry Andric     support::ulittle16_t::ref(Section.getAddressWithOffset(Offset)) =
284fe6060f1SDimitry Andric         TruncatedAddr;
285fe6060f1SDimitry Andric     LLVM_DEBUG(dbgs() << "Writing " << format("%p", TruncatedAddr) << " at "
286fe6060f1SDimitry Andric                       << format("%p\n", Section.getAddressWithOffset(Offset)));
287fe6060f1SDimitry Andric     break;
288fe6060f1SDimitry Andric   }
2890b57cec5SDimitry Andric   case ELF::R_X86_64_64: {
2900b57cec5SDimitry Andric     support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) =
2910b57cec5SDimitry Andric         Value + Addend;
2920b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend)) << " at "
2930b57cec5SDimitry Andric                       << format("%p\n", Section.getAddressWithOffset(Offset)));
2940b57cec5SDimitry Andric     break;
2950b57cec5SDimitry Andric   }
2960b57cec5SDimitry Andric   case ELF::R_X86_64_32:
2970b57cec5SDimitry Andric   case ELF::R_X86_64_32S: {
2980b57cec5SDimitry Andric     Value += Addend;
2990b57cec5SDimitry Andric     assert((Type == ELF::R_X86_64_32 && (Value <= UINT32_MAX)) ||
3000b57cec5SDimitry Andric            (Type == ELF::R_X86_64_32S &&
3010b57cec5SDimitry Andric             ((int64_t)Value <= INT32_MAX && (int64_t)Value >= INT32_MIN)));
3020b57cec5SDimitry Andric     uint32_t TruncatedAddr = (Value & 0xFFFFFFFF);
3030b57cec5SDimitry Andric     support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
3040b57cec5SDimitry Andric         TruncatedAddr;
3050b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Writing " << format("%p", TruncatedAddr) << " at "
3060b57cec5SDimitry Andric                       << format("%p\n", Section.getAddressWithOffset(Offset)));
3070b57cec5SDimitry Andric     break;
3080b57cec5SDimitry Andric   }
3090b57cec5SDimitry Andric   case ELF::R_X86_64_PC8: {
3100b57cec5SDimitry Andric     uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
3110b57cec5SDimitry Andric     int64_t RealOffset = Value + Addend - FinalAddress;
3120b57cec5SDimitry Andric     assert(isInt<8>(RealOffset));
3130b57cec5SDimitry Andric     int8_t TruncOffset = (RealOffset & 0xFF);
3140b57cec5SDimitry Andric     Section.getAddress()[Offset] = TruncOffset;
3150b57cec5SDimitry Andric     break;
3160b57cec5SDimitry Andric   }
3170b57cec5SDimitry Andric   case ELF::R_X86_64_PC32: {
3180b57cec5SDimitry Andric     uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
3190b57cec5SDimitry Andric     int64_t RealOffset = Value + Addend - FinalAddress;
3200b57cec5SDimitry Andric     assert(isInt<32>(RealOffset));
3210b57cec5SDimitry Andric     int32_t TruncOffset = (RealOffset & 0xFFFFFFFF);
3220b57cec5SDimitry Andric     support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
3230b57cec5SDimitry Andric         TruncOffset;
3240b57cec5SDimitry Andric     break;
3250b57cec5SDimitry Andric   }
3260b57cec5SDimitry Andric   case ELF::R_X86_64_PC64: {
3270b57cec5SDimitry Andric     uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
3280b57cec5SDimitry Andric     int64_t RealOffset = Value + Addend - FinalAddress;
3290b57cec5SDimitry Andric     support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) =
3300b57cec5SDimitry Andric         RealOffset;
3310b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Writing " << format("%p", RealOffset) << " at "
3320b57cec5SDimitry Andric                       << format("%p\n", FinalAddress));
3330b57cec5SDimitry Andric     break;
3340b57cec5SDimitry Andric   }
3350b57cec5SDimitry Andric   case ELF::R_X86_64_GOTOFF64: {
3360b57cec5SDimitry Andric     // Compute Value - GOTBase.
3370b57cec5SDimitry Andric     uint64_t GOTBase = 0;
3380b57cec5SDimitry Andric     for (const auto &Section : Sections) {
3390b57cec5SDimitry Andric       if (Section.getName() == ".got") {
3400b57cec5SDimitry Andric         GOTBase = Section.getLoadAddressWithOffset(0);
3410b57cec5SDimitry Andric         break;
3420b57cec5SDimitry Andric       }
3430b57cec5SDimitry Andric     }
3440b57cec5SDimitry Andric     assert(GOTBase != 0 && "missing GOT");
3450b57cec5SDimitry Andric     int64_t GOTOffset = Value - GOTBase + Addend;
3460b57cec5SDimitry Andric     support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) = GOTOffset;
3470b57cec5SDimitry Andric     break;
3480b57cec5SDimitry Andric   }
349349cc55cSDimitry Andric   case ELF::R_X86_64_DTPMOD64: {
350349cc55cSDimitry Andric     // We only have one DSO, so the module id is always 1.
351349cc55cSDimitry Andric     support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) = 1;
352349cc55cSDimitry Andric     break;
353349cc55cSDimitry Andric   }
354349cc55cSDimitry Andric   case ELF::R_X86_64_DTPOFF64:
355349cc55cSDimitry Andric   case ELF::R_X86_64_TPOFF64: {
356349cc55cSDimitry Andric     // DTPOFF64 should resolve to the offset in the TLS block, TPOFF64 to the
357349cc55cSDimitry Andric     // offset in the *initial* TLS block. Since we are statically linking, all
358349cc55cSDimitry Andric     // TLS blocks already exist in the initial block, so resolve both
359349cc55cSDimitry Andric     // relocations equally.
360349cc55cSDimitry Andric     support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) =
361349cc55cSDimitry Andric         Value + Addend;
362349cc55cSDimitry Andric     break;
363349cc55cSDimitry Andric   }
364349cc55cSDimitry Andric   case ELF::R_X86_64_DTPOFF32:
365349cc55cSDimitry Andric   case ELF::R_X86_64_TPOFF32: {
366349cc55cSDimitry Andric     // As for the (D)TPOFF64 relocations above, both DTPOFF32 and TPOFF32 can
367349cc55cSDimitry Andric     // be resolved equally.
368349cc55cSDimitry Andric     int64_t RealValue = Value + Addend;
369349cc55cSDimitry Andric     assert(RealValue >= INT32_MIN && RealValue <= INT32_MAX);
370349cc55cSDimitry Andric     int32_t TruncValue = RealValue;
371349cc55cSDimitry Andric     support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
372349cc55cSDimitry Andric         TruncValue;
373349cc55cSDimitry Andric     break;
374349cc55cSDimitry Andric   }
3750b57cec5SDimitry Andric   }
3760b57cec5SDimitry Andric }
3770b57cec5SDimitry Andric 
3780b57cec5SDimitry Andric void RuntimeDyldELF::resolveX86Relocation(const SectionEntry &Section,
3790b57cec5SDimitry Andric                                           uint64_t Offset, uint32_t Value,
3800b57cec5SDimitry Andric                                           uint32_t Type, int32_t Addend) {
3810b57cec5SDimitry Andric   switch (Type) {
3820b57cec5SDimitry Andric   case ELF::R_386_32: {
3830b57cec5SDimitry Andric     support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
3840b57cec5SDimitry Andric         Value + Addend;
3850b57cec5SDimitry Andric     break;
3860b57cec5SDimitry Andric   }
3870b57cec5SDimitry Andric   // Handle R_386_PLT32 like R_386_PC32 since it should be able to
3880b57cec5SDimitry Andric   // reach any 32 bit address.
3890b57cec5SDimitry Andric   case ELF::R_386_PLT32:
3900b57cec5SDimitry Andric   case ELF::R_386_PC32: {
3910b57cec5SDimitry Andric     uint32_t FinalAddress =
3920b57cec5SDimitry Andric         Section.getLoadAddressWithOffset(Offset) & 0xFFFFFFFF;
3930b57cec5SDimitry Andric     uint32_t RealOffset = Value + Addend - FinalAddress;
3940b57cec5SDimitry Andric     support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
3950b57cec5SDimitry Andric         RealOffset;
3960b57cec5SDimitry Andric     break;
3970b57cec5SDimitry Andric   }
3980b57cec5SDimitry Andric   default:
3990b57cec5SDimitry Andric     // There are other relocation types, but it appears these are the
4000b57cec5SDimitry Andric     // only ones currently used by the LLVM ELF object writer
4011106035dSDimitry Andric     report_fatal_error("Relocation type not implemented yet!");
4020b57cec5SDimitry Andric     break;
4030b57cec5SDimitry Andric   }
4040b57cec5SDimitry Andric }
4050b57cec5SDimitry Andric 
4060b57cec5SDimitry Andric void RuntimeDyldELF::resolveAArch64Relocation(const SectionEntry &Section,
4070b57cec5SDimitry Andric                                               uint64_t Offset, uint64_t Value,
4080b57cec5SDimitry Andric                                               uint32_t Type, int64_t Addend) {
4090b57cec5SDimitry Andric   uint32_t *TargetPtr =
4100b57cec5SDimitry Andric       reinterpret_cast<uint32_t *>(Section.getAddressWithOffset(Offset));
4110b57cec5SDimitry Andric   uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
4120b57cec5SDimitry Andric   // Data should use target endian. Code should always use little endian.
4130b57cec5SDimitry Andric   bool isBE = Arch == Triple::aarch64_be;
4140b57cec5SDimitry Andric 
4150b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "resolveAArch64Relocation, LocalAddress: 0x"
4160b57cec5SDimitry Andric                     << format("%llx", Section.getAddressWithOffset(Offset))
4170b57cec5SDimitry Andric                     << " FinalAddress: 0x" << format("%llx", FinalAddress)
4180b57cec5SDimitry Andric                     << " Value: 0x" << format("%llx", Value) << " Type: 0x"
4190b57cec5SDimitry Andric                     << format("%x", Type) << " Addend: 0x"
4200b57cec5SDimitry Andric                     << format("%llx", Addend) << "\n");
4210b57cec5SDimitry Andric 
4220b57cec5SDimitry Andric   switch (Type) {
4230b57cec5SDimitry Andric   default:
4241106035dSDimitry Andric     report_fatal_error("Relocation type not implemented yet!");
4250b57cec5SDimitry Andric     break;
42604eeddc0SDimitry Andric   case ELF::R_AARCH64_NONE:
42704eeddc0SDimitry Andric     break;
4280b57cec5SDimitry Andric   case ELF::R_AARCH64_ABS16: {
4290b57cec5SDimitry Andric     uint64_t Result = Value + Addend;
43006c3fb27SDimitry Andric     assert(Result == static_cast<uint64_t>(llvm::SignExtend64(Result, 16)) ||
43106c3fb27SDimitry Andric            (Result >> 16) == 0);
4320b57cec5SDimitry Andric     write(isBE, TargetPtr, static_cast<uint16_t>(Result & 0xffffU));
4330b57cec5SDimitry Andric     break;
4340b57cec5SDimitry Andric   }
4350b57cec5SDimitry Andric   case ELF::R_AARCH64_ABS32: {
4360b57cec5SDimitry Andric     uint64_t Result = Value + Addend;
43706c3fb27SDimitry Andric     assert(Result == static_cast<uint64_t>(llvm::SignExtend64(Result, 32)) ||
43806c3fb27SDimitry Andric            (Result >> 32) == 0);
4390b57cec5SDimitry Andric     write(isBE, TargetPtr, static_cast<uint32_t>(Result & 0xffffffffU));
4400b57cec5SDimitry Andric     break;
4410b57cec5SDimitry Andric   }
4420b57cec5SDimitry Andric   case ELF::R_AARCH64_ABS64:
4430b57cec5SDimitry Andric     write(isBE, TargetPtr, Value + Addend);
4440b57cec5SDimitry Andric     break;
4455ffd83dbSDimitry Andric   case ELF::R_AARCH64_PLT32: {
4465ffd83dbSDimitry Andric     uint64_t Result = Value + Addend - FinalAddress;
4475ffd83dbSDimitry Andric     assert(static_cast<int64_t>(Result) >= INT32_MIN &&
4485ffd83dbSDimitry Andric            static_cast<int64_t>(Result) <= INT32_MAX);
4495ffd83dbSDimitry Andric     write(isBE, TargetPtr, static_cast<uint32_t>(Result));
4505ffd83dbSDimitry Andric     break;
4515ffd83dbSDimitry Andric   }
45281ad6265SDimitry Andric   case ELF::R_AARCH64_PREL16: {
45381ad6265SDimitry Andric     uint64_t Result = Value + Addend - FinalAddress;
45481ad6265SDimitry Andric     assert(static_cast<int64_t>(Result) >= INT16_MIN &&
45581ad6265SDimitry Andric            static_cast<int64_t>(Result) <= UINT16_MAX);
45681ad6265SDimitry Andric     write(isBE, TargetPtr, static_cast<uint16_t>(Result & 0xffffU));
45781ad6265SDimitry Andric     break;
45881ad6265SDimitry Andric   }
4590b57cec5SDimitry Andric   case ELF::R_AARCH64_PREL32: {
4600b57cec5SDimitry Andric     uint64_t Result = Value + Addend - FinalAddress;
4610b57cec5SDimitry Andric     assert(static_cast<int64_t>(Result) >= INT32_MIN &&
4620b57cec5SDimitry Andric            static_cast<int64_t>(Result) <= UINT32_MAX);
4630b57cec5SDimitry Andric     write(isBE, TargetPtr, static_cast<uint32_t>(Result & 0xffffffffU));
4640b57cec5SDimitry Andric     break;
4650b57cec5SDimitry Andric   }
4660b57cec5SDimitry Andric   case ELF::R_AARCH64_PREL64:
4670b57cec5SDimitry Andric     write(isBE, TargetPtr, Value + Addend - FinalAddress);
4680b57cec5SDimitry Andric     break;
469fe6060f1SDimitry Andric   case ELF::R_AARCH64_CONDBR19: {
470fe6060f1SDimitry Andric     uint64_t BranchImm = Value + Addend - FinalAddress;
471fe6060f1SDimitry Andric 
472fe6060f1SDimitry Andric     assert(isInt<21>(BranchImm));
473fe6060f1SDimitry Andric     *TargetPtr &= 0xff00001fU;
474fe6060f1SDimitry Andric     // Immediate:20:2 goes in bits 23:5 of Bcc, CBZ, CBNZ
475fe6060f1SDimitry Andric     or32le(TargetPtr, (BranchImm & 0x001FFFFC) << 3);
476fe6060f1SDimitry Andric     break;
477fe6060f1SDimitry Andric   }
478fe6060f1SDimitry Andric   case ELF::R_AARCH64_TSTBR14: {
479fe6060f1SDimitry Andric     uint64_t BranchImm = Value + Addend - FinalAddress;
480fe6060f1SDimitry Andric 
481fe6060f1SDimitry Andric     assert(isInt<16>(BranchImm));
482fe6060f1SDimitry Andric 
48306c3fb27SDimitry Andric     uint32_t RawInstr = *(support::little32_t *)TargetPtr;
48406c3fb27SDimitry Andric     *(support::little32_t *)TargetPtr = RawInstr & 0xfff8001fU;
48506c3fb27SDimitry Andric 
486fe6060f1SDimitry Andric     // Immediate:15:2 goes in bits 18:5 of TBZ, TBNZ
487753f127fSDimitry Andric     or32le(TargetPtr, (BranchImm & 0x0000FFFC) << 3);
488fe6060f1SDimitry Andric     break;
489fe6060f1SDimitry Andric   }
4900b57cec5SDimitry Andric   case ELF::R_AARCH64_CALL26: // fallthrough
4910b57cec5SDimitry Andric   case ELF::R_AARCH64_JUMP26: {
4920b57cec5SDimitry Andric     // Operation: S+A-P. Set Call or B immediate value to bits fff_fffc of the
4930b57cec5SDimitry Andric     // calculation.
4940b57cec5SDimitry Andric     uint64_t BranchImm = Value + Addend - FinalAddress;
4950b57cec5SDimitry Andric 
4960b57cec5SDimitry Andric     // "Check that -2^27 <= result < 2^27".
4970b57cec5SDimitry Andric     assert(isInt<28>(BranchImm));
4980b57cec5SDimitry Andric     or32le(TargetPtr, (BranchImm & 0x0FFFFFFC) >> 2);
4990b57cec5SDimitry Andric     break;
5000b57cec5SDimitry Andric   }
5010b57cec5SDimitry Andric   case ELF::R_AARCH64_MOVW_UABS_G3:
5020b57cec5SDimitry Andric     or32le(TargetPtr, ((Value + Addend) & 0xFFFF000000000000) >> 43);
5030b57cec5SDimitry Andric     break;
5040b57cec5SDimitry Andric   case ELF::R_AARCH64_MOVW_UABS_G2_NC:
5050b57cec5SDimitry Andric     or32le(TargetPtr, ((Value + Addend) & 0xFFFF00000000) >> 27);
5060b57cec5SDimitry Andric     break;
5070b57cec5SDimitry Andric   case ELF::R_AARCH64_MOVW_UABS_G1_NC:
5080b57cec5SDimitry Andric     or32le(TargetPtr, ((Value + Addend) & 0xFFFF0000) >> 11);
5090b57cec5SDimitry Andric     break;
5100b57cec5SDimitry Andric   case ELF::R_AARCH64_MOVW_UABS_G0_NC:
5110b57cec5SDimitry Andric     or32le(TargetPtr, ((Value + Addend) & 0xFFFF) << 5);
5120b57cec5SDimitry Andric     break;
5130b57cec5SDimitry Andric   case ELF::R_AARCH64_ADR_PREL_PG_HI21: {
5140b57cec5SDimitry Andric     // Operation: Page(S+A) - Page(P)
5150b57cec5SDimitry Andric     uint64_t Result =
5160b57cec5SDimitry Andric         ((Value + Addend) & ~0xfffULL) - (FinalAddress & ~0xfffULL);
5170b57cec5SDimitry Andric 
5180b57cec5SDimitry Andric     // Check that -2^32 <= X < 2^32
5190b57cec5SDimitry Andric     assert(isInt<33>(Result) && "overflow check failed for relocation");
5200b57cec5SDimitry Andric 
5210b57cec5SDimitry Andric     // Immediate goes in bits 30:29 + 5:23 of ADRP instruction, taken
5220b57cec5SDimitry Andric     // from bits 32:12 of X.
5230b57cec5SDimitry Andric     write32AArch64Addr(TargetPtr, Result >> 12);
5240b57cec5SDimitry Andric     break;
5250b57cec5SDimitry Andric   }
5260b57cec5SDimitry Andric   case ELF::R_AARCH64_ADD_ABS_LO12_NC:
5270b57cec5SDimitry Andric     // Operation: S + A
5280b57cec5SDimitry Andric     // Immediate goes in bits 21:10 of LD/ST instruction, taken
5290b57cec5SDimitry Andric     // from bits 11:0 of X
5300b57cec5SDimitry Andric     or32AArch64Imm(TargetPtr, Value + Addend);
5310b57cec5SDimitry Andric     break;
5320b57cec5SDimitry Andric   case ELF::R_AARCH64_LDST8_ABS_LO12_NC:
5330b57cec5SDimitry Andric     // Operation: S + A
5340b57cec5SDimitry Andric     // Immediate goes in bits 21:10 of LD/ST instruction, taken
5350b57cec5SDimitry Andric     // from bits 11:0 of X
5360b57cec5SDimitry Andric     or32AArch64Imm(TargetPtr, getBits(Value + Addend, 0, 11));
5370b57cec5SDimitry Andric     break;
5380b57cec5SDimitry Andric   case ELF::R_AARCH64_LDST16_ABS_LO12_NC:
5390b57cec5SDimitry Andric     // Operation: S + A
5400b57cec5SDimitry Andric     // Immediate goes in bits 21:10 of LD/ST instruction, taken
5410b57cec5SDimitry Andric     // from bits 11:1 of X
5420b57cec5SDimitry Andric     or32AArch64Imm(TargetPtr, getBits(Value + Addend, 1, 11));
5430b57cec5SDimitry Andric     break;
5440b57cec5SDimitry Andric   case ELF::R_AARCH64_LDST32_ABS_LO12_NC:
5450b57cec5SDimitry Andric     // Operation: S + A
5460b57cec5SDimitry Andric     // Immediate goes in bits 21:10 of LD/ST instruction, taken
5470b57cec5SDimitry Andric     // from bits 11:2 of X
5480b57cec5SDimitry Andric     or32AArch64Imm(TargetPtr, getBits(Value + Addend, 2, 11));
5490b57cec5SDimitry Andric     break;
5500b57cec5SDimitry Andric   case ELF::R_AARCH64_LDST64_ABS_LO12_NC:
5510b57cec5SDimitry Andric     // Operation: S + A
5520b57cec5SDimitry Andric     // Immediate goes in bits 21:10 of LD/ST instruction, taken
5530b57cec5SDimitry Andric     // from bits 11:3 of X
5540b57cec5SDimitry Andric     or32AArch64Imm(TargetPtr, getBits(Value + Addend, 3, 11));
5550b57cec5SDimitry Andric     break;
5560b57cec5SDimitry Andric   case ELF::R_AARCH64_LDST128_ABS_LO12_NC:
5570b57cec5SDimitry Andric     // Operation: S + A
5580b57cec5SDimitry Andric     // Immediate goes in bits 21:10 of LD/ST instruction, taken
5590b57cec5SDimitry Andric     // from bits 11:4 of X
5600b57cec5SDimitry Andric     or32AArch64Imm(TargetPtr, getBits(Value + Addend, 4, 11));
5610b57cec5SDimitry Andric     break;
562fe6060f1SDimitry Andric   case ELF::R_AARCH64_LD_PREL_LO19: {
563fe6060f1SDimitry Andric     // Operation: S + A - P
564fe6060f1SDimitry Andric     uint64_t Result = Value + Addend - FinalAddress;
565fe6060f1SDimitry Andric 
566fe6060f1SDimitry Andric     // "Check that -2^20 <= result < 2^20".
567fe6060f1SDimitry Andric     assert(isInt<21>(Result));
568fe6060f1SDimitry Andric 
569fe6060f1SDimitry Andric     *TargetPtr &= 0xff00001fU;
570fe6060f1SDimitry Andric     // Immediate goes in bits 23:5 of LD imm instruction, taken
571fe6060f1SDimitry Andric     // from bits 20:2 of X
572fe6060f1SDimitry Andric     *TargetPtr |= ((Result & 0xffc) << (5 - 2));
573fe6060f1SDimitry Andric     break;
574fe6060f1SDimitry Andric   }
575fe6060f1SDimitry Andric   case ELF::R_AARCH64_ADR_PREL_LO21: {
576fe6060f1SDimitry Andric     // Operation: S + A - P
577fe6060f1SDimitry Andric     uint64_t Result = Value + Addend - FinalAddress;
578fe6060f1SDimitry Andric 
579fe6060f1SDimitry Andric     // "Check that -2^20 <= result < 2^20".
580fe6060f1SDimitry Andric     assert(isInt<21>(Result));
581fe6060f1SDimitry Andric 
582fe6060f1SDimitry Andric     *TargetPtr &= 0x9f00001fU;
583fe6060f1SDimitry Andric     // Immediate goes in bits 23:5, 30:29 of ADR imm instruction, taken
584fe6060f1SDimitry Andric     // from bits 20:0 of X
585fe6060f1SDimitry Andric     *TargetPtr |= ((Result & 0xffc) << (5 - 2));
586fe6060f1SDimitry Andric     *TargetPtr |= (Result & 0x3) << 29;
587fe6060f1SDimitry Andric     break;
588fe6060f1SDimitry Andric   }
5890b57cec5SDimitry Andric   }
5900b57cec5SDimitry Andric }
5910b57cec5SDimitry Andric 
5920b57cec5SDimitry Andric void RuntimeDyldELF::resolveARMRelocation(const SectionEntry &Section,
5930b57cec5SDimitry Andric                                           uint64_t Offset, uint32_t Value,
5940b57cec5SDimitry Andric                                           uint32_t Type, int32_t Addend) {
5950b57cec5SDimitry Andric   // TODO: Add Thumb relocations.
5960b57cec5SDimitry Andric   uint32_t *TargetPtr =
5970b57cec5SDimitry Andric       reinterpret_cast<uint32_t *>(Section.getAddressWithOffset(Offset));
5980b57cec5SDimitry Andric   uint32_t FinalAddress = Section.getLoadAddressWithOffset(Offset) & 0xFFFFFFFF;
5990b57cec5SDimitry Andric   Value += Addend;
6000b57cec5SDimitry Andric 
6010b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "resolveARMRelocation, LocalAddress: "
6020b57cec5SDimitry Andric                     << Section.getAddressWithOffset(Offset)
6030b57cec5SDimitry Andric                     << " FinalAddress: " << format("%p", FinalAddress)
6040b57cec5SDimitry Andric                     << " Value: " << format("%x", Value)
6050b57cec5SDimitry Andric                     << " Type: " << format("%x", Type)
6060b57cec5SDimitry Andric                     << " Addend: " << format("%x", Addend) << "\n");
6070b57cec5SDimitry Andric 
6080b57cec5SDimitry Andric   switch (Type) {
6090b57cec5SDimitry Andric   default:
6100b57cec5SDimitry Andric     llvm_unreachable("Not implemented relocation type!");
6110b57cec5SDimitry Andric 
6120b57cec5SDimitry Andric   case ELF::R_ARM_NONE:
6130b57cec5SDimitry Andric     break;
6140b57cec5SDimitry Andric     // Write a 31bit signed offset
6150b57cec5SDimitry Andric   case ELF::R_ARM_PREL31:
6160b57cec5SDimitry Andric     support::ulittle32_t::ref{TargetPtr} =
6170b57cec5SDimitry Andric         (support::ulittle32_t::ref{TargetPtr} & 0x80000000) |
6180b57cec5SDimitry Andric         ((Value - FinalAddress) & ~0x80000000);
6190b57cec5SDimitry Andric     break;
6200b57cec5SDimitry Andric   case ELF::R_ARM_TARGET1:
6210b57cec5SDimitry Andric   case ELF::R_ARM_ABS32:
6220b57cec5SDimitry Andric     support::ulittle32_t::ref{TargetPtr} = Value;
6230b57cec5SDimitry Andric     break;
6240b57cec5SDimitry Andric     // Write first 16 bit of 32 bit value to the mov instruction.
6250b57cec5SDimitry Andric     // Last 4 bit should be shifted.
6260b57cec5SDimitry Andric   case ELF::R_ARM_MOVW_ABS_NC:
6270b57cec5SDimitry Andric   case ELF::R_ARM_MOVT_ABS:
6280b57cec5SDimitry Andric     if (Type == ELF::R_ARM_MOVW_ABS_NC)
6290b57cec5SDimitry Andric       Value = Value & 0xFFFF;
6300b57cec5SDimitry Andric     else if (Type == ELF::R_ARM_MOVT_ABS)
6310b57cec5SDimitry Andric       Value = (Value >> 16) & 0xFFFF;
6320b57cec5SDimitry Andric     support::ulittle32_t::ref{TargetPtr} =
6330b57cec5SDimitry Andric         (support::ulittle32_t::ref{TargetPtr} & ~0x000F0FFF) | (Value & 0xFFF) |
6340b57cec5SDimitry Andric         (((Value >> 12) & 0xF) << 16);
6350b57cec5SDimitry Andric     break;
6360b57cec5SDimitry Andric     // Write 24 bit relative value to the branch instruction.
6370b57cec5SDimitry Andric   case ELF::R_ARM_PC24: // Fall through.
6380b57cec5SDimitry Andric   case ELF::R_ARM_CALL: // Fall through.
6390b57cec5SDimitry Andric   case ELF::R_ARM_JUMP24:
6400b57cec5SDimitry Andric     int32_t RelValue = static_cast<int32_t>(Value - FinalAddress - 8);
6410b57cec5SDimitry Andric     RelValue = (RelValue & 0x03FFFFFC) >> 2;
6420b57cec5SDimitry Andric     assert((support::ulittle32_t::ref{TargetPtr} & 0xFFFFFF) == 0xFFFFFE);
6430b57cec5SDimitry Andric     support::ulittle32_t::ref{TargetPtr} =
6440b57cec5SDimitry Andric         (support::ulittle32_t::ref{TargetPtr} & 0xFF000000) | RelValue;
6450b57cec5SDimitry Andric     break;
6460b57cec5SDimitry Andric   }
6470b57cec5SDimitry Andric }
6480b57cec5SDimitry Andric 
6490b57cec5SDimitry Andric void RuntimeDyldELF::setMipsABI(const ObjectFile &Obj) {
6500b57cec5SDimitry Andric   if (Arch == Triple::UnknownArch ||
6510b57cec5SDimitry Andric       !StringRef(Triple::getArchTypePrefix(Arch)).equals("mips")) {
6520b57cec5SDimitry Andric     IsMipsO32ABI = false;
6530b57cec5SDimitry Andric     IsMipsN32ABI = false;
6540b57cec5SDimitry Andric     IsMipsN64ABI = false;
6550b57cec5SDimitry Andric     return;
6560b57cec5SDimitry Andric   }
6570b57cec5SDimitry Andric   if (auto *E = dyn_cast<ELFObjectFileBase>(&Obj)) {
6580b57cec5SDimitry Andric     unsigned AbiVariant = E->getPlatformFlags();
6590b57cec5SDimitry Andric     IsMipsO32ABI = AbiVariant & ELF::EF_MIPS_ABI_O32;
6600b57cec5SDimitry Andric     IsMipsN32ABI = AbiVariant & ELF::EF_MIPS_ABI2;
6610b57cec5SDimitry Andric   }
6625ffd83dbSDimitry Andric   IsMipsN64ABI = Obj.getFileFormatName().equals("elf64-mips");
6630b57cec5SDimitry Andric }
6640b57cec5SDimitry Andric 
6650b57cec5SDimitry Andric // Return the .TOC. section and offset.
6660b57cec5SDimitry Andric Error RuntimeDyldELF::findPPC64TOCSection(const ELFObjectFileBase &Obj,
6670b57cec5SDimitry Andric                                           ObjSectionToIDMap &LocalSections,
6680b57cec5SDimitry Andric                                           RelocationValueRef &Rel) {
6690b57cec5SDimitry Andric   // Set a default SectionID in case we do not find a TOC section below.
6700b57cec5SDimitry Andric   // This may happen for references to TOC base base (sym@toc, .odp
6710b57cec5SDimitry Andric   // relocation) without a .toc directive.  In this case just use the
6720b57cec5SDimitry Andric   // first section (which is usually the .odp) since the code won't
6730b57cec5SDimitry Andric   // reference the .toc base directly.
6740b57cec5SDimitry Andric   Rel.SymbolName = nullptr;
6750b57cec5SDimitry Andric   Rel.SectionID = 0;
6760b57cec5SDimitry Andric 
6770b57cec5SDimitry Andric   // The TOC consists of sections .got, .toc, .tocbss, .plt in that
6780b57cec5SDimitry Andric   // order. The TOC starts where the first of these sections starts.
6790b57cec5SDimitry Andric   for (auto &Section : Obj.sections()) {
6808bcb0991SDimitry Andric     Expected<StringRef> NameOrErr = Section.getName();
6818bcb0991SDimitry Andric     if (!NameOrErr)
6828bcb0991SDimitry Andric       return NameOrErr.takeError();
6838bcb0991SDimitry Andric     StringRef SectionName = *NameOrErr;
6840b57cec5SDimitry Andric 
6850b57cec5SDimitry Andric     if (SectionName == ".got"
6860b57cec5SDimitry Andric         || SectionName == ".toc"
6870b57cec5SDimitry Andric         || SectionName == ".tocbss"
6880b57cec5SDimitry Andric         || SectionName == ".plt") {
6890b57cec5SDimitry Andric       if (auto SectionIDOrErr =
6900b57cec5SDimitry Andric             findOrEmitSection(Obj, Section, false, LocalSections))
6910b57cec5SDimitry Andric         Rel.SectionID = *SectionIDOrErr;
6920b57cec5SDimitry Andric       else
6930b57cec5SDimitry Andric         return SectionIDOrErr.takeError();
6940b57cec5SDimitry Andric       break;
6950b57cec5SDimitry Andric     }
6960b57cec5SDimitry Andric   }
6970b57cec5SDimitry Andric 
6980b57cec5SDimitry Andric   // Per the ppc64-elf-linux ABI, The TOC base is TOC value plus 0x8000
6990b57cec5SDimitry Andric   // thus permitting a full 64 Kbytes segment.
7000b57cec5SDimitry Andric   Rel.Addend = 0x8000;
7010b57cec5SDimitry Andric 
7020b57cec5SDimitry Andric   return Error::success();
7030b57cec5SDimitry Andric }
7040b57cec5SDimitry Andric 
7050b57cec5SDimitry Andric // Returns the sections and offset associated with the ODP entry referenced
7060b57cec5SDimitry Andric // by Symbol.
7070b57cec5SDimitry Andric Error RuntimeDyldELF::findOPDEntrySection(const ELFObjectFileBase &Obj,
7080b57cec5SDimitry Andric                                           ObjSectionToIDMap &LocalSections,
7090b57cec5SDimitry Andric                                           RelocationValueRef &Rel) {
7100b57cec5SDimitry Andric   // Get the ELF symbol value (st_value) to compare with Relocation offset in
7110b57cec5SDimitry Andric   // .opd entries
7120b57cec5SDimitry Andric   for (section_iterator si = Obj.section_begin(), se = Obj.section_end();
7130b57cec5SDimitry Andric        si != se; ++si) {
7148bcb0991SDimitry Andric 
7158bcb0991SDimitry Andric     Expected<section_iterator> RelSecOrErr = si->getRelocatedSection();
7168bcb0991SDimitry Andric     if (!RelSecOrErr)
717349cc55cSDimitry Andric       report_fatal_error(Twine(toString(RelSecOrErr.takeError())));
7188bcb0991SDimitry Andric 
7198bcb0991SDimitry Andric     section_iterator RelSecI = *RelSecOrErr;
7200b57cec5SDimitry Andric     if (RelSecI == Obj.section_end())
7210b57cec5SDimitry Andric       continue;
7220b57cec5SDimitry Andric 
7238bcb0991SDimitry Andric     Expected<StringRef> NameOrErr = RelSecI->getName();
7248bcb0991SDimitry Andric     if (!NameOrErr)
7258bcb0991SDimitry Andric       return NameOrErr.takeError();
7268bcb0991SDimitry Andric     StringRef RelSectionName = *NameOrErr;
7270b57cec5SDimitry Andric 
7280b57cec5SDimitry Andric     if (RelSectionName != ".opd")
7290b57cec5SDimitry Andric       continue;
7300b57cec5SDimitry Andric 
7310b57cec5SDimitry Andric     for (elf_relocation_iterator i = si->relocation_begin(),
7320b57cec5SDimitry Andric                                  e = si->relocation_end();
7330b57cec5SDimitry Andric          i != e;) {
7340b57cec5SDimitry Andric       // The R_PPC64_ADDR64 relocation indicates the first field
7350b57cec5SDimitry Andric       // of a .opd entry
7360b57cec5SDimitry Andric       uint64_t TypeFunc = i->getType();
7370b57cec5SDimitry Andric       if (TypeFunc != ELF::R_PPC64_ADDR64) {
7380b57cec5SDimitry Andric         ++i;
7390b57cec5SDimitry Andric         continue;
7400b57cec5SDimitry Andric       }
7410b57cec5SDimitry Andric 
7420b57cec5SDimitry Andric       uint64_t TargetSymbolOffset = i->getOffset();
7430b57cec5SDimitry Andric       symbol_iterator TargetSymbol = i->getSymbol();
7440b57cec5SDimitry Andric       int64_t Addend;
7450b57cec5SDimitry Andric       if (auto AddendOrErr = i->getAddend())
7460b57cec5SDimitry Andric         Addend = *AddendOrErr;
7470b57cec5SDimitry Andric       else
7480b57cec5SDimitry Andric         return AddendOrErr.takeError();
7490b57cec5SDimitry Andric 
7500b57cec5SDimitry Andric       ++i;
7510b57cec5SDimitry Andric       if (i == e)
7520b57cec5SDimitry Andric         break;
7530b57cec5SDimitry Andric 
7540b57cec5SDimitry Andric       // Just check if following relocation is a R_PPC64_TOC
7550b57cec5SDimitry Andric       uint64_t TypeTOC = i->getType();
7560b57cec5SDimitry Andric       if (TypeTOC != ELF::R_PPC64_TOC)
7570b57cec5SDimitry Andric         continue;
7580b57cec5SDimitry Andric 
7590b57cec5SDimitry Andric       // Finally compares the Symbol value and the target symbol offset
7600b57cec5SDimitry Andric       // to check if this .opd entry refers to the symbol the relocation
7610b57cec5SDimitry Andric       // points to.
7620b57cec5SDimitry Andric       if (Rel.Addend != (int64_t)TargetSymbolOffset)
7630b57cec5SDimitry Andric         continue;
7640b57cec5SDimitry Andric 
7650b57cec5SDimitry Andric       section_iterator TSI = Obj.section_end();
7660b57cec5SDimitry Andric       if (auto TSIOrErr = TargetSymbol->getSection())
7670b57cec5SDimitry Andric         TSI = *TSIOrErr;
7680b57cec5SDimitry Andric       else
7690b57cec5SDimitry Andric         return TSIOrErr.takeError();
7700b57cec5SDimitry Andric       assert(TSI != Obj.section_end() && "TSI should refer to a valid section");
7710b57cec5SDimitry Andric 
7720b57cec5SDimitry Andric       bool IsCode = TSI->isText();
7730b57cec5SDimitry Andric       if (auto SectionIDOrErr = findOrEmitSection(Obj, *TSI, IsCode,
7740b57cec5SDimitry Andric                                                   LocalSections))
7750b57cec5SDimitry Andric         Rel.SectionID = *SectionIDOrErr;
7760b57cec5SDimitry Andric       else
7770b57cec5SDimitry Andric         return SectionIDOrErr.takeError();
7780b57cec5SDimitry Andric       Rel.Addend = (intptr_t)Addend;
7790b57cec5SDimitry Andric       return Error::success();
7800b57cec5SDimitry Andric     }
7810b57cec5SDimitry Andric   }
7820b57cec5SDimitry Andric   llvm_unreachable("Attempting to get address of ODP entry!");
7830b57cec5SDimitry Andric }
7840b57cec5SDimitry Andric 
7850b57cec5SDimitry Andric // Relocation masks following the #lo(value), #hi(value), #ha(value),
7860b57cec5SDimitry Andric // #higher(value), #highera(value), #highest(value), and #highesta(value)
7870b57cec5SDimitry Andric // macros defined in section 4.5.1. Relocation Types of the PPC-elf64abi
7880b57cec5SDimitry Andric // document.
7890b57cec5SDimitry Andric 
7900b57cec5SDimitry Andric static inline uint16_t applyPPClo(uint64_t value) { return value & 0xffff; }
7910b57cec5SDimitry Andric 
7920b57cec5SDimitry Andric static inline uint16_t applyPPChi(uint64_t value) {
7930b57cec5SDimitry Andric   return (value >> 16) & 0xffff;
7940b57cec5SDimitry Andric }
7950b57cec5SDimitry Andric 
7960b57cec5SDimitry Andric static inline uint16_t applyPPCha (uint64_t value) {
7970b57cec5SDimitry Andric   return ((value + 0x8000) >> 16) & 0xffff;
7980b57cec5SDimitry Andric }
7990b57cec5SDimitry Andric 
8000b57cec5SDimitry Andric static inline uint16_t applyPPChigher(uint64_t value) {
8010b57cec5SDimitry Andric   return (value >> 32) & 0xffff;
8020b57cec5SDimitry Andric }
8030b57cec5SDimitry Andric 
8040b57cec5SDimitry Andric static inline uint16_t applyPPChighera (uint64_t value) {
8050b57cec5SDimitry Andric   return ((value + 0x8000) >> 32) & 0xffff;
8060b57cec5SDimitry Andric }
8070b57cec5SDimitry Andric 
8080b57cec5SDimitry Andric static inline uint16_t applyPPChighest(uint64_t value) {
8090b57cec5SDimitry Andric   return (value >> 48) & 0xffff;
8100b57cec5SDimitry Andric }
8110b57cec5SDimitry Andric 
8120b57cec5SDimitry Andric static inline uint16_t applyPPChighesta (uint64_t value) {
8130b57cec5SDimitry Andric   return ((value + 0x8000) >> 48) & 0xffff;
8140b57cec5SDimitry Andric }
8150b57cec5SDimitry Andric 
8160b57cec5SDimitry Andric void RuntimeDyldELF::resolvePPC32Relocation(const SectionEntry &Section,
8170b57cec5SDimitry Andric                                             uint64_t Offset, uint64_t Value,
8180b57cec5SDimitry Andric                                             uint32_t Type, int64_t Addend) {
8190b57cec5SDimitry Andric   uint8_t *LocalAddress = Section.getAddressWithOffset(Offset);
8200b57cec5SDimitry Andric   switch (Type) {
8210b57cec5SDimitry Andric   default:
8221106035dSDimitry Andric     report_fatal_error("Relocation type not implemented yet!");
8230b57cec5SDimitry Andric     break;
8240b57cec5SDimitry Andric   case ELF::R_PPC_ADDR16_LO:
8250b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPClo(Value + Addend));
8260b57cec5SDimitry Andric     break;
8270b57cec5SDimitry Andric   case ELF::R_PPC_ADDR16_HI:
8280b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPChi(Value + Addend));
8290b57cec5SDimitry Andric     break;
8300b57cec5SDimitry Andric   case ELF::R_PPC_ADDR16_HA:
8310b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPCha(Value + Addend));
8320b57cec5SDimitry Andric     break;
8330b57cec5SDimitry Andric   }
8340b57cec5SDimitry Andric }
8350b57cec5SDimitry Andric 
8360b57cec5SDimitry Andric void RuntimeDyldELF::resolvePPC64Relocation(const SectionEntry &Section,
8370b57cec5SDimitry Andric                                             uint64_t Offset, uint64_t Value,
8380b57cec5SDimitry Andric                                             uint32_t Type, int64_t Addend) {
8390b57cec5SDimitry Andric   uint8_t *LocalAddress = Section.getAddressWithOffset(Offset);
8400b57cec5SDimitry Andric   switch (Type) {
8410b57cec5SDimitry Andric   default:
8421106035dSDimitry Andric     report_fatal_error("Relocation type not implemented yet!");
8430b57cec5SDimitry Andric     break;
8440b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16:
8450b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPClo(Value + Addend));
8460b57cec5SDimitry Andric     break;
8470b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_DS:
8480b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3);
8490b57cec5SDimitry Andric     break;
8500b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_LO:
8510b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPClo(Value + Addend));
8520b57cec5SDimitry Andric     break;
8530b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_LO_DS:
8540b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3);
8550b57cec5SDimitry Andric     break;
8560b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_HI:
8570b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_HIGH:
8580b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPChi(Value + Addend));
8590b57cec5SDimitry Andric     break;
8600b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_HA:
8610b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_HIGHA:
8620b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPCha(Value + Addend));
8630b57cec5SDimitry Andric     break;
8640b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_HIGHER:
8650b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPChigher(Value + Addend));
8660b57cec5SDimitry Andric     break;
8670b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_HIGHERA:
8680b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPChighera(Value + Addend));
8690b57cec5SDimitry Andric     break;
8700b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_HIGHEST:
8710b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPChighest(Value + Addend));
8720b57cec5SDimitry Andric     break;
8730b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR16_HIGHESTA:
8740b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPChighesta(Value + Addend));
8750b57cec5SDimitry Andric     break;
8760b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR14: {
8770b57cec5SDimitry Andric     assert(((Value + Addend) & 3) == 0);
8780b57cec5SDimitry Andric     // Preserve the AA/LK bits in the branch instruction
8790b57cec5SDimitry Andric     uint8_t aalk = *(LocalAddress + 3);
8800b57cec5SDimitry Andric     writeInt16BE(LocalAddress + 2, (aalk & 3) | ((Value + Addend) & 0xfffc));
8810b57cec5SDimitry Andric   } break;
8820b57cec5SDimitry Andric   case ELF::R_PPC64_REL16_LO: {
8830b57cec5SDimitry Andric     uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
8840b57cec5SDimitry Andric     uint64_t Delta = Value - FinalAddress + Addend;
8850b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPClo(Delta));
8860b57cec5SDimitry Andric   } break;
8870b57cec5SDimitry Andric   case ELF::R_PPC64_REL16_HI: {
8880b57cec5SDimitry Andric     uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
8890b57cec5SDimitry Andric     uint64_t Delta = Value - FinalAddress + Addend;
8900b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPChi(Delta));
8910b57cec5SDimitry Andric   } break;
8920b57cec5SDimitry Andric   case ELF::R_PPC64_REL16_HA: {
8930b57cec5SDimitry Andric     uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
8940b57cec5SDimitry Andric     uint64_t Delta = Value - FinalAddress + Addend;
8950b57cec5SDimitry Andric     writeInt16BE(LocalAddress, applyPPCha(Delta));
8960b57cec5SDimitry Andric   } break;
8970b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR32: {
8980b57cec5SDimitry Andric     int64_t Result = static_cast<int64_t>(Value + Addend);
8990b57cec5SDimitry Andric     if (SignExtend64<32>(Result) != Result)
9000b57cec5SDimitry Andric       llvm_unreachable("Relocation R_PPC64_ADDR32 overflow");
9010b57cec5SDimitry Andric     writeInt32BE(LocalAddress, Result);
9020b57cec5SDimitry Andric   } break;
9030b57cec5SDimitry Andric   case ELF::R_PPC64_REL24: {
9040b57cec5SDimitry Andric     uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
9050b57cec5SDimitry Andric     int64_t delta = static_cast<int64_t>(Value - FinalAddress + Addend);
9060b57cec5SDimitry Andric     if (SignExtend64<26>(delta) != delta)
9070b57cec5SDimitry Andric       llvm_unreachable("Relocation R_PPC64_REL24 overflow");
9080b57cec5SDimitry Andric     // We preserve bits other than LI field, i.e. PO and AA/LK fields.
9090b57cec5SDimitry Andric     uint32_t Inst = readBytesUnaligned(LocalAddress, 4);
9100b57cec5SDimitry Andric     writeInt32BE(LocalAddress, (Inst & 0xFC000003) | (delta & 0x03FFFFFC));
9110b57cec5SDimitry Andric   } break;
9120b57cec5SDimitry Andric   case ELF::R_PPC64_REL32: {
9130b57cec5SDimitry Andric     uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
9140b57cec5SDimitry Andric     int64_t delta = static_cast<int64_t>(Value - FinalAddress + Addend);
9150b57cec5SDimitry Andric     if (SignExtend64<32>(delta) != delta)
9160b57cec5SDimitry Andric       llvm_unreachable("Relocation R_PPC64_REL32 overflow");
9170b57cec5SDimitry Andric     writeInt32BE(LocalAddress, delta);
9180b57cec5SDimitry Andric   } break;
9190b57cec5SDimitry Andric   case ELF::R_PPC64_REL64: {
9200b57cec5SDimitry Andric     uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
9210b57cec5SDimitry Andric     uint64_t Delta = Value - FinalAddress + Addend;
9220b57cec5SDimitry Andric     writeInt64BE(LocalAddress, Delta);
9230b57cec5SDimitry Andric   } break;
9240b57cec5SDimitry Andric   case ELF::R_PPC64_ADDR64:
9250b57cec5SDimitry Andric     writeInt64BE(LocalAddress, Value + Addend);
9260b57cec5SDimitry Andric     break;
9270b57cec5SDimitry Andric   }
9280b57cec5SDimitry Andric }
9290b57cec5SDimitry Andric 
9300b57cec5SDimitry Andric void RuntimeDyldELF::resolveSystemZRelocation(const SectionEntry &Section,
9310b57cec5SDimitry Andric                                               uint64_t Offset, uint64_t Value,
9320b57cec5SDimitry Andric                                               uint32_t Type, int64_t Addend) {
9330b57cec5SDimitry Andric   uint8_t *LocalAddress = Section.getAddressWithOffset(Offset);
9340b57cec5SDimitry Andric   switch (Type) {
9350b57cec5SDimitry Andric   default:
9361106035dSDimitry Andric     report_fatal_error("Relocation type not implemented yet!");
9370b57cec5SDimitry Andric     break;
9380b57cec5SDimitry Andric   case ELF::R_390_PC16DBL:
9390b57cec5SDimitry Andric   case ELF::R_390_PLT16DBL: {
9400b57cec5SDimitry Andric     int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset);
9410b57cec5SDimitry Andric     assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow");
9420b57cec5SDimitry Andric     writeInt16BE(LocalAddress, Delta / 2);
9430b57cec5SDimitry Andric     break;
9440b57cec5SDimitry Andric   }
9450b57cec5SDimitry Andric   case ELF::R_390_PC32DBL:
9460b57cec5SDimitry Andric   case ELF::R_390_PLT32DBL: {
9470b57cec5SDimitry Andric     int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset);
9480b57cec5SDimitry Andric     assert(int32_t(Delta / 2) * 2 == Delta && "R_390_PC32DBL overflow");
9490b57cec5SDimitry Andric     writeInt32BE(LocalAddress, Delta / 2);
9500b57cec5SDimitry Andric     break;
9510b57cec5SDimitry Andric   }
9520b57cec5SDimitry Andric   case ELF::R_390_PC16: {
9530b57cec5SDimitry Andric     int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset);
9540b57cec5SDimitry Andric     assert(int16_t(Delta) == Delta && "R_390_PC16 overflow");
9550b57cec5SDimitry Andric     writeInt16BE(LocalAddress, Delta);
9560b57cec5SDimitry Andric     break;
9570b57cec5SDimitry Andric   }
9580b57cec5SDimitry Andric   case ELF::R_390_PC32: {
9590b57cec5SDimitry Andric     int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset);
9600b57cec5SDimitry Andric     assert(int32_t(Delta) == Delta && "R_390_PC32 overflow");
9610b57cec5SDimitry Andric     writeInt32BE(LocalAddress, Delta);
9620b57cec5SDimitry Andric     break;
9630b57cec5SDimitry Andric   }
9640b57cec5SDimitry Andric   case ELF::R_390_PC64: {
9650b57cec5SDimitry Andric     int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset);
9660b57cec5SDimitry Andric     writeInt64BE(LocalAddress, Delta);
9670b57cec5SDimitry Andric     break;
9680b57cec5SDimitry Andric   }
9690b57cec5SDimitry Andric   case ELF::R_390_8:
9700b57cec5SDimitry Andric     *LocalAddress = (uint8_t)(Value + Addend);
9710b57cec5SDimitry Andric     break;
9720b57cec5SDimitry Andric   case ELF::R_390_16:
9730b57cec5SDimitry Andric     writeInt16BE(LocalAddress, Value + Addend);
9740b57cec5SDimitry Andric     break;
9750b57cec5SDimitry Andric   case ELF::R_390_32:
9760b57cec5SDimitry Andric     writeInt32BE(LocalAddress, Value + Addend);
9770b57cec5SDimitry Andric     break;
9780b57cec5SDimitry Andric   case ELF::R_390_64:
9790b57cec5SDimitry Andric     writeInt64BE(LocalAddress, Value + Addend);
9800b57cec5SDimitry Andric     break;
9810b57cec5SDimitry Andric   }
9820b57cec5SDimitry Andric }
9830b57cec5SDimitry Andric 
9840b57cec5SDimitry Andric void RuntimeDyldELF::resolveBPFRelocation(const SectionEntry &Section,
9850b57cec5SDimitry Andric                                           uint64_t Offset, uint64_t Value,
9860b57cec5SDimitry Andric                                           uint32_t Type, int64_t Addend) {
9870b57cec5SDimitry Andric   bool isBE = Arch == Triple::bpfeb;
9880b57cec5SDimitry Andric 
9890b57cec5SDimitry Andric   switch (Type) {
9900b57cec5SDimitry Andric   default:
9911106035dSDimitry Andric     report_fatal_error("Relocation type not implemented yet!");
9920b57cec5SDimitry Andric     break;
9930b57cec5SDimitry Andric   case ELF::R_BPF_NONE:
994fe6060f1SDimitry Andric   case ELF::R_BPF_64_64:
995fe6060f1SDimitry Andric   case ELF::R_BPF_64_32:
996fe6060f1SDimitry Andric   case ELF::R_BPF_64_NODYLD32:
9970b57cec5SDimitry Andric     break;
998fe6060f1SDimitry Andric   case ELF::R_BPF_64_ABS64: {
9990b57cec5SDimitry Andric     write(isBE, Section.getAddressWithOffset(Offset), Value + Addend);
10000b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend)) << " at "
10010b57cec5SDimitry Andric                       << format("%p\n", Section.getAddressWithOffset(Offset)));
10020b57cec5SDimitry Andric     break;
10030b57cec5SDimitry Andric   }
1004fe6060f1SDimitry Andric   case ELF::R_BPF_64_ABS32: {
10050b57cec5SDimitry Andric     Value += Addend;
10060b57cec5SDimitry Andric     assert(Value <= UINT32_MAX);
10070b57cec5SDimitry Andric     write(isBE, Section.getAddressWithOffset(Offset), static_cast<uint32_t>(Value));
10080b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Writing " << format("%p", Value) << " at "
10090b57cec5SDimitry Andric                       << format("%p\n", Section.getAddressWithOffset(Offset)));
10100b57cec5SDimitry Andric     break;
10110b57cec5SDimitry Andric   }
10120b57cec5SDimitry Andric   }
10130b57cec5SDimitry Andric }
10140b57cec5SDimitry Andric 
10150b57cec5SDimitry Andric // The target location for the relocation is described by RE.SectionID and
10160b57cec5SDimitry Andric // RE.Offset.  RE.SectionID can be used to find the SectionEntry.  Each
10170b57cec5SDimitry Andric // SectionEntry has three members describing its location.
10180b57cec5SDimitry Andric // SectionEntry::Address is the address at which the section has been loaded
10190b57cec5SDimitry Andric // into memory in the current (host) process.  SectionEntry::LoadAddress is the
10200b57cec5SDimitry Andric // address that the section will have in the target process.
10210b57cec5SDimitry Andric // SectionEntry::ObjAddress is the address of the bits for this section in the
10220b57cec5SDimitry Andric // original emitted object image (also in the current address space).
10230b57cec5SDimitry Andric //
10240b57cec5SDimitry Andric // Relocations will be applied as if the section were loaded at
10250b57cec5SDimitry Andric // SectionEntry::LoadAddress, but they will be applied at an address based
10260b57cec5SDimitry Andric // on SectionEntry::Address.  SectionEntry::ObjAddress will be used to refer to
10270b57cec5SDimitry Andric // Target memory contents if they are required for value calculations.
10280b57cec5SDimitry Andric //
10290b57cec5SDimitry Andric // The Value parameter here is the load address of the symbol for the
10300b57cec5SDimitry Andric // relocation to be applied.  For relocations which refer to symbols in the
10310b57cec5SDimitry Andric // current object Value will be the LoadAddress of the section in which
10320b57cec5SDimitry Andric // the symbol resides (RE.Addend provides additional information about the
10330b57cec5SDimitry Andric // symbol location).  For external symbols, Value will be the address of the
10340b57cec5SDimitry Andric // symbol in the target address space.
10350b57cec5SDimitry Andric void RuntimeDyldELF::resolveRelocation(const RelocationEntry &RE,
10360b57cec5SDimitry Andric                                        uint64_t Value) {
10370b57cec5SDimitry Andric   const SectionEntry &Section = Sections[RE.SectionID];
10380b57cec5SDimitry Andric   return resolveRelocation(Section, RE.Offset, Value, RE.RelType, RE.Addend,
10390b57cec5SDimitry Andric                            RE.SymOffset, RE.SectionID);
10400b57cec5SDimitry Andric }
10410b57cec5SDimitry Andric 
10420b57cec5SDimitry Andric void RuntimeDyldELF::resolveRelocation(const SectionEntry &Section,
10430b57cec5SDimitry Andric                                        uint64_t Offset, uint64_t Value,
10440b57cec5SDimitry Andric                                        uint32_t Type, int64_t Addend,
10450b57cec5SDimitry Andric                                        uint64_t SymOffset, SID SectionID) {
10460b57cec5SDimitry Andric   switch (Arch) {
10470b57cec5SDimitry Andric   case Triple::x86_64:
10480b57cec5SDimitry Andric     resolveX86_64Relocation(Section, Offset, Value, Type, Addend, SymOffset);
10490b57cec5SDimitry Andric     break;
10500b57cec5SDimitry Andric   case Triple::x86:
10510b57cec5SDimitry Andric     resolveX86Relocation(Section, Offset, (uint32_t)(Value & 0xffffffffL), Type,
10520b57cec5SDimitry Andric                          (uint32_t)(Addend & 0xffffffffL));
10530b57cec5SDimitry Andric     break;
10540b57cec5SDimitry Andric   case Triple::aarch64:
10550b57cec5SDimitry Andric   case Triple::aarch64_be:
10560b57cec5SDimitry Andric     resolveAArch64Relocation(Section, Offset, Value, Type, Addend);
10570b57cec5SDimitry Andric     break;
10580b57cec5SDimitry Andric   case Triple::arm: // Fall through.
10590b57cec5SDimitry Andric   case Triple::armeb:
10600b57cec5SDimitry Andric   case Triple::thumb:
10610b57cec5SDimitry Andric   case Triple::thumbeb:
10620b57cec5SDimitry Andric     resolveARMRelocation(Section, Offset, (uint32_t)(Value & 0xffffffffL), Type,
10630b57cec5SDimitry Andric                          (uint32_t)(Addend & 0xffffffffL));
10640b57cec5SDimitry Andric     break;
1065e8d8bef9SDimitry Andric   case Triple::ppc: // Fall through.
1066e8d8bef9SDimitry Andric   case Triple::ppcle:
10670b57cec5SDimitry Andric     resolvePPC32Relocation(Section, Offset, Value, Type, Addend);
10680b57cec5SDimitry Andric     break;
10690b57cec5SDimitry Andric   case Triple::ppc64: // Fall through.
10700b57cec5SDimitry Andric   case Triple::ppc64le:
10710b57cec5SDimitry Andric     resolvePPC64Relocation(Section, Offset, Value, Type, Addend);
10720b57cec5SDimitry Andric     break;
10730b57cec5SDimitry Andric   case Triple::systemz:
10740b57cec5SDimitry Andric     resolveSystemZRelocation(Section, Offset, Value, Type, Addend);
10750b57cec5SDimitry Andric     break;
10760b57cec5SDimitry Andric   case Triple::bpfel:
10770b57cec5SDimitry Andric   case Triple::bpfeb:
10780b57cec5SDimitry Andric     resolveBPFRelocation(Section, Offset, Value, Type, Addend);
10790b57cec5SDimitry Andric     break;
10800b57cec5SDimitry Andric   default:
10810b57cec5SDimitry Andric     llvm_unreachable("Unsupported CPU type!");
10820b57cec5SDimitry Andric   }
10830b57cec5SDimitry Andric }
10840b57cec5SDimitry Andric 
10850b57cec5SDimitry Andric void *RuntimeDyldELF::computePlaceholderAddress(unsigned SectionID, uint64_t Offset) const {
10860b57cec5SDimitry Andric   return (void *)(Sections[SectionID].getObjAddress() + Offset);
10870b57cec5SDimitry Andric }
10880b57cec5SDimitry Andric 
10890b57cec5SDimitry Andric void RuntimeDyldELF::processSimpleRelocation(unsigned SectionID, uint64_t Offset, unsigned RelType, RelocationValueRef Value) {
10900b57cec5SDimitry Andric   RelocationEntry RE(SectionID, Offset, RelType, Value.Addend, Value.Offset);
10910b57cec5SDimitry Andric   if (Value.SymbolName)
10920b57cec5SDimitry Andric     addRelocationForSymbol(RE, Value.SymbolName);
10930b57cec5SDimitry Andric   else
10940b57cec5SDimitry Andric     addRelocationForSection(RE, Value.SectionID);
10950b57cec5SDimitry Andric }
10960b57cec5SDimitry Andric 
10970b57cec5SDimitry Andric uint32_t RuntimeDyldELF::getMatchingLoRelocation(uint32_t RelType,
10980b57cec5SDimitry Andric                                                  bool IsLocal) const {
10990b57cec5SDimitry Andric   switch (RelType) {
11000b57cec5SDimitry Andric   case ELF::R_MICROMIPS_GOT16:
11010b57cec5SDimitry Andric     if (IsLocal)
11020b57cec5SDimitry Andric       return ELF::R_MICROMIPS_LO16;
11030b57cec5SDimitry Andric     break;
11040b57cec5SDimitry Andric   case ELF::R_MICROMIPS_HI16:
11050b57cec5SDimitry Andric     return ELF::R_MICROMIPS_LO16;
11060b57cec5SDimitry Andric   case ELF::R_MIPS_GOT16:
11070b57cec5SDimitry Andric     if (IsLocal)
11080b57cec5SDimitry Andric       return ELF::R_MIPS_LO16;
11090b57cec5SDimitry Andric     break;
11100b57cec5SDimitry Andric   case ELF::R_MIPS_HI16:
11110b57cec5SDimitry Andric     return ELF::R_MIPS_LO16;
11120b57cec5SDimitry Andric   case ELF::R_MIPS_PCHI16:
11130b57cec5SDimitry Andric     return ELF::R_MIPS_PCLO16;
11140b57cec5SDimitry Andric   default:
11150b57cec5SDimitry Andric     break;
11160b57cec5SDimitry Andric   }
11170b57cec5SDimitry Andric   return ELF::R_MIPS_NONE;
11180b57cec5SDimitry Andric }
11190b57cec5SDimitry Andric 
11200b57cec5SDimitry Andric // Sometimes we don't need to create thunk for a branch.
11210b57cec5SDimitry Andric // This typically happens when branch target is located
11220b57cec5SDimitry Andric // in the same object file. In such case target is either
11230b57cec5SDimitry Andric // a weak symbol or symbol in a different executable section.
11240b57cec5SDimitry Andric // This function checks if branch target is located in the
11250b57cec5SDimitry Andric // same object file and if distance between source and target
11260b57cec5SDimitry Andric // fits R_AARCH64_CALL26 relocation. If both conditions are
11270b57cec5SDimitry Andric // met, it emits direct jump to the target and returns true.
11280b57cec5SDimitry Andric // Otherwise false is returned and thunk is created.
11290b57cec5SDimitry Andric bool RuntimeDyldELF::resolveAArch64ShortBranch(
11300b57cec5SDimitry Andric     unsigned SectionID, relocation_iterator RelI,
11310b57cec5SDimitry Andric     const RelocationValueRef &Value) {
11320b57cec5SDimitry Andric   uint64_t Address;
11330b57cec5SDimitry Andric   if (Value.SymbolName) {
11340b57cec5SDimitry Andric     auto Loc = GlobalSymbolTable.find(Value.SymbolName);
11350b57cec5SDimitry Andric 
11360b57cec5SDimitry Andric     // Don't create direct branch for external symbols.
11370b57cec5SDimitry Andric     if (Loc == GlobalSymbolTable.end())
11380b57cec5SDimitry Andric       return false;
11390b57cec5SDimitry Andric 
11400b57cec5SDimitry Andric     const auto &SymInfo = Loc->second;
11410b57cec5SDimitry Andric     Address =
11420b57cec5SDimitry Andric         uint64_t(Sections[SymInfo.getSectionID()].getLoadAddressWithOffset(
11430b57cec5SDimitry Andric             SymInfo.getOffset()));
11440b57cec5SDimitry Andric   } else {
11450b57cec5SDimitry Andric     Address = uint64_t(Sections[Value.SectionID].getLoadAddress());
11460b57cec5SDimitry Andric   }
11470b57cec5SDimitry Andric   uint64_t Offset = RelI->getOffset();
11480b57cec5SDimitry Andric   uint64_t SourceAddress = Sections[SectionID].getLoadAddressWithOffset(Offset);
11490b57cec5SDimitry Andric 
11500b57cec5SDimitry Andric   // R_AARCH64_CALL26 requires immediate to be in range -2^27 <= imm < 2^27
11510b57cec5SDimitry Andric   // If distance between source and target is out of range then we should
11520b57cec5SDimitry Andric   // create thunk.
11530b57cec5SDimitry Andric   if (!isInt<28>(Address + Value.Addend - SourceAddress))
11540b57cec5SDimitry Andric     return false;
11550b57cec5SDimitry Andric 
11560b57cec5SDimitry Andric   resolveRelocation(Sections[SectionID], Offset, Address, RelI->getType(),
11570b57cec5SDimitry Andric                     Value.Addend);
11580b57cec5SDimitry Andric 
11590b57cec5SDimitry Andric   return true;
11600b57cec5SDimitry Andric }
11610b57cec5SDimitry Andric 
11620b57cec5SDimitry Andric void RuntimeDyldELF::resolveAArch64Branch(unsigned SectionID,
11630b57cec5SDimitry Andric                                           const RelocationValueRef &Value,
11640b57cec5SDimitry Andric                                           relocation_iterator RelI,
11650b57cec5SDimitry Andric                                           StubMap &Stubs) {
11660b57cec5SDimitry Andric 
11670b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "\t\tThis is an AArch64 branch relocation.");
11680b57cec5SDimitry Andric   SectionEntry &Section = Sections[SectionID];
11690b57cec5SDimitry Andric 
11700b57cec5SDimitry Andric   uint64_t Offset = RelI->getOffset();
11710b57cec5SDimitry Andric   unsigned RelType = RelI->getType();
11720b57cec5SDimitry Andric   // Look for an existing stub.
11730b57cec5SDimitry Andric   StubMap::const_iterator i = Stubs.find(Value);
11740b57cec5SDimitry Andric   if (i != Stubs.end()) {
11750b57cec5SDimitry Andric     resolveRelocation(Section, Offset,
11760b57cec5SDimitry Andric                       (uint64_t)Section.getAddressWithOffset(i->second),
11770b57cec5SDimitry Andric                       RelType, 0);
11780b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << " Stub function found\n");
11790b57cec5SDimitry Andric   } else if (!resolveAArch64ShortBranch(SectionID, RelI, Value)) {
11800b57cec5SDimitry Andric     // Create a new stub function.
11810b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << " Create a new stub function\n");
11820b57cec5SDimitry Andric     Stubs[Value] = Section.getStubOffset();
11830b57cec5SDimitry Andric     uint8_t *StubTargetAddr = createStubFunction(
11840b57cec5SDimitry Andric         Section.getAddressWithOffset(Section.getStubOffset()));
11850b57cec5SDimitry Andric 
11860b57cec5SDimitry Andric     RelocationEntry REmovz_g3(SectionID, StubTargetAddr - Section.getAddress(),
11870b57cec5SDimitry Andric                               ELF::R_AARCH64_MOVW_UABS_G3, Value.Addend);
11880b57cec5SDimitry Andric     RelocationEntry REmovk_g2(SectionID,
11890b57cec5SDimitry Andric                               StubTargetAddr - Section.getAddress() + 4,
11900b57cec5SDimitry Andric                               ELF::R_AARCH64_MOVW_UABS_G2_NC, Value.Addend);
11910b57cec5SDimitry Andric     RelocationEntry REmovk_g1(SectionID,
11920b57cec5SDimitry Andric                               StubTargetAddr - Section.getAddress() + 8,
11930b57cec5SDimitry Andric                               ELF::R_AARCH64_MOVW_UABS_G1_NC, Value.Addend);
11940b57cec5SDimitry Andric     RelocationEntry REmovk_g0(SectionID,
11950b57cec5SDimitry Andric                               StubTargetAddr - Section.getAddress() + 12,
11960b57cec5SDimitry Andric                               ELF::R_AARCH64_MOVW_UABS_G0_NC, Value.Addend);
11970b57cec5SDimitry Andric 
11980b57cec5SDimitry Andric     if (Value.SymbolName) {
11990b57cec5SDimitry Andric       addRelocationForSymbol(REmovz_g3, Value.SymbolName);
12000b57cec5SDimitry Andric       addRelocationForSymbol(REmovk_g2, Value.SymbolName);
12010b57cec5SDimitry Andric       addRelocationForSymbol(REmovk_g1, Value.SymbolName);
12020b57cec5SDimitry Andric       addRelocationForSymbol(REmovk_g0, Value.SymbolName);
12030b57cec5SDimitry Andric     } else {
12040b57cec5SDimitry Andric       addRelocationForSection(REmovz_g3, Value.SectionID);
12050b57cec5SDimitry Andric       addRelocationForSection(REmovk_g2, Value.SectionID);
12060b57cec5SDimitry Andric       addRelocationForSection(REmovk_g1, Value.SectionID);
12070b57cec5SDimitry Andric       addRelocationForSection(REmovk_g0, Value.SectionID);
12080b57cec5SDimitry Andric     }
12090b57cec5SDimitry Andric     resolveRelocation(Section, Offset,
12100b57cec5SDimitry Andric                       reinterpret_cast<uint64_t>(Section.getAddressWithOffset(
12110b57cec5SDimitry Andric                           Section.getStubOffset())),
12120b57cec5SDimitry Andric                       RelType, 0);
12130b57cec5SDimitry Andric     Section.advanceStubOffset(getMaxStubSize());
12140b57cec5SDimitry Andric   }
12150b57cec5SDimitry Andric }
12160b57cec5SDimitry Andric 
12170b57cec5SDimitry Andric Expected<relocation_iterator>
12180b57cec5SDimitry Andric RuntimeDyldELF::processRelocationRef(
12190b57cec5SDimitry Andric     unsigned SectionID, relocation_iterator RelI, const ObjectFile &O,
12200b57cec5SDimitry Andric     ObjSectionToIDMap &ObjSectionToID, StubMap &Stubs) {
12210b57cec5SDimitry Andric   const auto &Obj = cast<ELFObjectFileBase>(O);
12220b57cec5SDimitry Andric   uint64_t RelType = RelI->getType();
12230b57cec5SDimitry Andric   int64_t Addend = 0;
12240b57cec5SDimitry Andric   if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend())
12250b57cec5SDimitry Andric     Addend = *AddendOrErr;
12260b57cec5SDimitry Andric   else
12270b57cec5SDimitry Andric     consumeError(AddendOrErr.takeError());
12280b57cec5SDimitry Andric   elf_symbol_iterator Symbol = RelI->getSymbol();
12290b57cec5SDimitry Andric 
12300b57cec5SDimitry Andric   // Obtain the symbol name which is referenced in the relocation
12310b57cec5SDimitry Andric   StringRef TargetName;
12320b57cec5SDimitry Andric   if (Symbol != Obj.symbol_end()) {
12330b57cec5SDimitry Andric     if (auto TargetNameOrErr = Symbol->getName())
12340b57cec5SDimitry Andric       TargetName = *TargetNameOrErr;
12350b57cec5SDimitry Andric     else
12360b57cec5SDimitry Andric       return TargetNameOrErr.takeError();
12370b57cec5SDimitry Andric   }
12380b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "\t\tRelType: " << RelType << " Addend: " << Addend
12390b57cec5SDimitry Andric                     << " TargetName: " << TargetName << "\n");
12400b57cec5SDimitry Andric   RelocationValueRef Value;
12410b57cec5SDimitry Andric   // First search for the symbol in the local symbol table
12420b57cec5SDimitry Andric   SymbolRef::Type SymType = SymbolRef::ST_Unknown;
12430b57cec5SDimitry Andric 
12440b57cec5SDimitry Andric   // Search for the symbol in the global symbol table
12450b57cec5SDimitry Andric   RTDyldSymbolTable::const_iterator gsi = GlobalSymbolTable.end();
12460b57cec5SDimitry Andric   if (Symbol != Obj.symbol_end()) {
12470b57cec5SDimitry Andric     gsi = GlobalSymbolTable.find(TargetName.data());
12480b57cec5SDimitry Andric     Expected<SymbolRef::Type> SymTypeOrErr = Symbol->getType();
12490b57cec5SDimitry Andric     if (!SymTypeOrErr) {
12500b57cec5SDimitry Andric       std::string Buf;
12510b57cec5SDimitry Andric       raw_string_ostream OS(Buf);
12520b57cec5SDimitry Andric       logAllUnhandledErrors(SymTypeOrErr.takeError(), OS);
1253349cc55cSDimitry Andric       report_fatal_error(Twine(OS.str()));
12540b57cec5SDimitry Andric     }
12550b57cec5SDimitry Andric     SymType = *SymTypeOrErr;
12560b57cec5SDimitry Andric   }
12570b57cec5SDimitry Andric   if (gsi != GlobalSymbolTable.end()) {
12580b57cec5SDimitry Andric     const auto &SymInfo = gsi->second;
12590b57cec5SDimitry Andric     Value.SectionID = SymInfo.getSectionID();
12600b57cec5SDimitry Andric     Value.Offset = SymInfo.getOffset();
12610b57cec5SDimitry Andric     Value.Addend = SymInfo.getOffset() + Addend;
12620b57cec5SDimitry Andric   } else {
12630b57cec5SDimitry Andric     switch (SymType) {
12640b57cec5SDimitry Andric     case SymbolRef::ST_Debug: {
12650b57cec5SDimitry Andric       // TODO: Now ELF SymbolRef::ST_Debug = STT_SECTION, it's not obviously
12660b57cec5SDimitry Andric       // and can be changed by another developers. Maybe best way is add
12670b57cec5SDimitry Andric       // a new symbol type ST_Section to SymbolRef and use it.
12680b57cec5SDimitry Andric       auto SectionOrErr = Symbol->getSection();
12690b57cec5SDimitry Andric       if (!SectionOrErr) {
12700b57cec5SDimitry Andric         std::string Buf;
12710b57cec5SDimitry Andric         raw_string_ostream OS(Buf);
12720b57cec5SDimitry Andric         logAllUnhandledErrors(SectionOrErr.takeError(), OS);
1273349cc55cSDimitry Andric         report_fatal_error(Twine(OS.str()));
12740b57cec5SDimitry Andric       }
12750b57cec5SDimitry Andric       section_iterator si = *SectionOrErr;
12760b57cec5SDimitry Andric       if (si == Obj.section_end())
12770b57cec5SDimitry Andric         llvm_unreachable("Symbol section not found, bad object file format!");
12780b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << "\t\tThis is section symbol\n");
12790b57cec5SDimitry Andric       bool isCode = si->isText();
12800b57cec5SDimitry Andric       if (auto SectionIDOrErr = findOrEmitSection(Obj, (*si), isCode,
12810b57cec5SDimitry Andric                                                   ObjSectionToID))
12820b57cec5SDimitry Andric         Value.SectionID = *SectionIDOrErr;
12830b57cec5SDimitry Andric       else
12840b57cec5SDimitry Andric         return SectionIDOrErr.takeError();
12850b57cec5SDimitry Andric       Value.Addend = Addend;
12860b57cec5SDimitry Andric       break;
12870b57cec5SDimitry Andric     }
12880b57cec5SDimitry Andric     case SymbolRef::ST_Data:
12890b57cec5SDimitry Andric     case SymbolRef::ST_Function:
129006c3fb27SDimitry Andric     case SymbolRef::ST_Other:
12910b57cec5SDimitry Andric     case SymbolRef::ST_Unknown: {
12920b57cec5SDimitry Andric       Value.SymbolName = TargetName.data();
12930b57cec5SDimitry Andric       Value.Addend = Addend;
12940b57cec5SDimitry Andric 
12950b57cec5SDimitry Andric       // Absolute relocations will have a zero symbol ID (STN_UNDEF), which
12960b57cec5SDimitry Andric       // will manifest here as a NULL symbol name.
12970b57cec5SDimitry Andric       // We can set this as a valid (but empty) symbol name, and rely
12980b57cec5SDimitry Andric       // on addRelocationForSymbol to handle this.
12990b57cec5SDimitry Andric       if (!Value.SymbolName)
13000b57cec5SDimitry Andric         Value.SymbolName = "";
13010b57cec5SDimitry Andric       break;
13020b57cec5SDimitry Andric     }
13030b57cec5SDimitry Andric     default:
13040b57cec5SDimitry Andric       llvm_unreachable("Unresolved symbol type!");
13050b57cec5SDimitry Andric       break;
13060b57cec5SDimitry Andric     }
13070b57cec5SDimitry Andric   }
13080b57cec5SDimitry Andric 
13090b57cec5SDimitry Andric   uint64_t Offset = RelI->getOffset();
13100b57cec5SDimitry Andric 
13110b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "\t\tSectionID: " << SectionID << " Offset: " << Offset
13120b57cec5SDimitry Andric                     << "\n");
13130b57cec5SDimitry Andric   if ((Arch == Triple::aarch64 || Arch == Triple::aarch64_be)) {
1314fe6060f1SDimitry Andric     if ((RelType == ELF::R_AARCH64_CALL26 ||
1315fe6060f1SDimitry Andric          RelType == ELF::R_AARCH64_JUMP26) &&
1316fe6060f1SDimitry Andric         MemMgr.allowStubAllocation()) {
13170b57cec5SDimitry Andric       resolveAArch64Branch(SectionID, Value, RelI, Stubs);
13180b57cec5SDimitry Andric     } else if (RelType == ELF::R_AARCH64_ADR_GOT_PAGE) {
13194824e7fdSDimitry Andric       // Create new GOT entry or find existing one. If GOT entry is
13200b57cec5SDimitry Andric       // to be created, then we also emit ABS64 relocation for it.
13210b57cec5SDimitry Andric       uint64_t GOTOffset = findOrAllocGOTEntry(Value, ELF::R_AARCH64_ABS64);
13220b57cec5SDimitry Andric       resolveGOTOffsetRelocation(SectionID, Offset, GOTOffset + Addend,
13230b57cec5SDimitry Andric                                  ELF::R_AARCH64_ADR_PREL_PG_HI21);
13240b57cec5SDimitry Andric 
13250b57cec5SDimitry Andric     } else if (RelType == ELF::R_AARCH64_LD64_GOT_LO12_NC) {
13260b57cec5SDimitry Andric       uint64_t GOTOffset = findOrAllocGOTEntry(Value, ELF::R_AARCH64_ABS64);
13270b57cec5SDimitry Andric       resolveGOTOffsetRelocation(SectionID, Offset, GOTOffset + Addend,
13280b57cec5SDimitry Andric                                  ELF::R_AARCH64_LDST64_ABS_LO12_NC);
13290b57cec5SDimitry Andric     } else {
13300b57cec5SDimitry Andric       processSimpleRelocation(SectionID, Offset, RelType, Value);
13310b57cec5SDimitry Andric     }
13320b57cec5SDimitry Andric   } else if (Arch == Triple::arm) {
13330b57cec5SDimitry Andric     if (RelType == ELF::R_ARM_PC24 || RelType == ELF::R_ARM_CALL ||
13340b57cec5SDimitry Andric       RelType == ELF::R_ARM_JUMP24) {
13350b57cec5SDimitry Andric       // This is an ARM branch relocation, need to use a stub function.
13360b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << "\t\tThis is an ARM branch relocation.\n");
13370b57cec5SDimitry Andric       SectionEntry &Section = Sections[SectionID];
13380b57cec5SDimitry Andric 
13390b57cec5SDimitry Andric       // Look for an existing stub.
13400b57cec5SDimitry Andric       StubMap::const_iterator i = Stubs.find(Value);
13410b57cec5SDimitry Andric       if (i != Stubs.end()) {
13420b57cec5SDimitry Andric         resolveRelocation(
13430b57cec5SDimitry Andric             Section, Offset,
13440b57cec5SDimitry Andric             reinterpret_cast<uint64_t>(Section.getAddressWithOffset(i->second)),
13450b57cec5SDimitry Andric             RelType, 0);
13460b57cec5SDimitry Andric         LLVM_DEBUG(dbgs() << " Stub function found\n");
13470b57cec5SDimitry Andric       } else {
13480b57cec5SDimitry Andric         // Create a new stub function.
13490b57cec5SDimitry Andric         LLVM_DEBUG(dbgs() << " Create a new stub function\n");
13500b57cec5SDimitry Andric         Stubs[Value] = Section.getStubOffset();
13510b57cec5SDimitry Andric         uint8_t *StubTargetAddr = createStubFunction(
13520b57cec5SDimitry Andric             Section.getAddressWithOffset(Section.getStubOffset()));
13530b57cec5SDimitry Andric         RelocationEntry RE(SectionID, StubTargetAddr - Section.getAddress(),
13540b57cec5SDimitry Andric                            ELF::R_ARM_ABS32, Value.Addend);
13550b57cec5SDimitry Andric         if (Value.SymbolName)
13560b57cec5SDimitry Andric           addRelocationForSymbol(RE, Value.SymbolName);
13570b57cec5SDimitry Andric         else
13580b57cec5SDimitry Andric           addRelocationForSection(RE, Value.SectionID);
13590b57cec5SDimitry Andric 
13600b57cec5SDimitry Andric         resolveRelocation(Section, Offset, reinterpret_cast<uint64_t>(
13610b57cec5SDimitry Andric                                                Section.getAddressWithOffset(
13620b57cec5SDimitry Andric                                                    Section.getStubOffset())),
13630b57cec5SDimitry Andric                           RelType, 0);
13640b57cec5SDimitry Andric         Section.advanceStubOffset(getMaxStubSize());
13650b57cec5SDimitry Andric       }
13660b57cec5SDimitry Andric     } else {
13670b57cec5SDimitry Andric       uint32_t *Placeholder =
13680b57cec5SDimitry Andric         reinterpret_cast<uint32_t*>(computePlaceholderAddress(SectionID, Offset));
13690b57cec5SDimitry Andric       if (RelType == ELF::R_ARM_PREL31 || RelType == ELF::R_ARM_TARGET1 ||
13700b57cec5SDimitry Andric           RelType == ELF::R_ARM_ABS32) {
13710b57cec5SDimitry Andric         Value.Addend += *Placeholder;
13720b57cec5SDimitry Andric       } else if (RelType == ELF::R_ARM_MOVW_ABS_NC || RelType == ELF::R_ARM_MOVT_ABS) {
13730b57cec5SDimitry Andric         // See ELF for ARM documentation
13740b57cec5SDimitry Andric         Value.Addend += (int16_t)((*Placeholder & 0xFFF) | (((*Placeholder >> 16) & 0xF) << 12));
13750b57cec5SDimitry Andric       }
13760b57cec5SDimitry Andric       processSimpleRelocation(SectionID, Offset, RelType, Value);
13770b57cec5SDimitry Andric     }
13780b57cec5SDimitry Andric   } else if (IsMipsO32ABI) {
13790b57cec5SDimitry Andric     uint8_t *Placeholder = reinterpret_cast<uint8_t *>(
13800b57cec5SDimitry Andric         computePlaceholderAddress(SectionID, Offset));
13810b57cec5SDimitry Andric     uint32_t Opcode = readBytesUnaligned(Placeholder, 4);
13820b57cec5SDimitry Andric     if (RelType == ELF::R_MIPS_26) {
13830b57cec5SDimitry Andric       // This is an Mips branch relocation, need to use a stub function.
13840b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << "\t\tThis is a Mips branch relocation.");
13850b57cec5SDimitry Andric       SectionEntry &Section = Sections[SectionID];
13860b57cec5SDimitry Andric 
13870b57cec5SDimitry Andric       // Extract the addend from the instruction.
13880b57cec5SDimitry Andric       // We shift up by two since the Value will be down shifted again
13890b57cec5SDimitry Andric       // when applying the relocation.
13900b57cec5SDimitry Andric       uint32_t Addend = (Opcode & 0x03ffffff) << 2;
13910b57cec5SDimitry Andric 
13920b57cec5SDimitry Andric       Value.Addend += Addend;
13930b57cec5SDimitry Andric 
13940b57cec5SDimitry Andric       //  Look up for existing stub.
13950b57cec5SDimitry Andric       StubMap::const_iterator i = Stubs.find(Value);
13960b57cec5SDimitry Andric       if (i != Stubs.end()) {
13970b57cec5SDimitry Andric         RelocationEntry RE(SectionID, Offset, RelType, i->second);
13980b57cec5SDimitry Andric         addRelocationForSection(RE, SectionID);
13990b57cec5SDimitry Andric         LLVM_DEBUG(dbgs() << " Stub function found\n");
14000b57cec5SDimitry Andric       } else {
14010b57cec5SDimitry Andric         // Create a new stub function.
14020b57cec5SDimitry Andric         LLVM_DEBUG(dbgs() << " Create a new stub function\n");
14030b57cec5SDimitry Andric         Stubs[Value] = Section.getStubOffset();
14040b57cec5SDimitry Andric 
14050b57cec5SDimitry Andric         unsigned AbiVariant = Obj.getPlatformFlags();
14060b57cec5SDimitry Andric 
14070b57cec5SDimitry Andric         uint8_t *StubTargetAddr = createStubFunction(
14080b57cec5SDimitry Andric             Section.getAddressWithOffset(Section.getStubOffset()), AbiVariant);
14090b57cec5SDimitry Andric 
14100b57cec5SDimitry Andric         // Creating Hi and Lo relocations for the filled stub instructions.
14110b57cec5SDimitry Andric         RelocationEntry REHi(SectionID, StubTargetAddr - Section.getAddress(),
14120b57cec5SDimitry Andric                              ELF::R_MIPS_HI16, Value.Addend);
14130b57cec5SDimitry Andric         RelocationEntry RELo(SectionID,
14140b57cec5SDimitry Andric                              StubTargetAddr - Section.getAddress() + 4,
14150b57cec5SDimitry Andric                              ELF::R_MIPS_LO16, Value.Addend);
14160b57cec5SDimitry Andric 
14170b57cec5SDimitry Andric         if (Value.SymbolName) {
14180b57cec5SDimitry Andric           addRelocationForSymbol(REHi, Value.SymbolName);
14190b57cec5SDimitry Andric           addRelocationForSymbol(RELo, Value.SymbolName);
14200b57cec5SDimitry Andric         } else {
14210b57cec5SDimitry Andric           addRelocationForSection(REHi, Value.SectionID);
14220b57cec5SDimitry Andric           addRelocationForSection(RELo, Value.SectionID);
14230b57cec5SDimitry Andric         }
14240b57cec5SDimitry Andric 
14250b57cec5SDimitry Andric         RelocationEntry RE(SectionID, Offset, RelType, Section.getStubOffset());
14260b57cec5SDimitry Andric         addRelocationForSection(RE, SectionID);
14270b57cec5SDimitry Andric         Section.advanceStubOffset(getMaxStubSize());
14280b57cec5SDimitry Andric       }
14290b57cec5SDimitry Andric     } else if (RelType == ELF::R_MIPS_HI16 || RelType == ELF::R_MIPS_PCHI16) {
14300b57cec5SDimitry Andric       int64_t Addend = (Opcode & 0x0000ffff) << 16;
14310b57cec5SDimitry Andric       RelocationEntry RE(SectionID, Offset, RelType, Addend);
14320b57cec5SDimitry Andric       PendingRelocs.push_back(std::make_pair(Value, RE));
14330b57cec5SDimitry Andric     } else if (RelType == ELF::R_MIPS_LO16 || RelType == ELF::R_MIPS_PCLO16) {
14340b57cec5SDimitry Andric       int64_t Addend = Value.Addend + SignExtend32<16>(Opcode & 0x0000ffff);
14350b57cec5SDimitry Andric       for (auto I = PendingRelocs.begin(); I != PendingRelocs.end();) {
14360b57cec5SDimitry Andric         const RelocationValueRef &MatchingValue = I->first;
14370b57cec5SDimitry Andric         RelocationEntry &Reloc = I->second;
14380b57cec5SDimitry Andric         if (MatchingValue == Value &&
14390b57cec5SDimitry Andric             RelType == getMatchingLoRelocation(Reloc.RelType) &&
14400b57cec5SDimitry Andric             SectionID == Reloc.SectionID) {
14410b57cec5SDimitry Andric           Reloc.Addend += Addend;
14420b57cec5SDimitry Andric           if (Value.SymbolName)
14430b57cec5SDimitry Andric             addRelocationForSymbol(Reloc, Value.SymbolName);
14440b57cec5SDimitry Andric           else
14450b57cec5SDimitry Andric             addRelocationForSection(Reloc, Value.SectionID);
14460b57cec5SDimitry Andric           I = PendingRelocs.erase(I);
14470b57cec5SDimitry Andric         } else
14480b57cec5SDimitry Andric           ++I;
14490b57cec5SDimitry Andric       }
14500b57cec5SDimitry Andric       RelocationEntry RE(SectionID, Offset, RelType, Addend);
14510b57cec5SDimitry Andric       if (Value.SymbolName)
14520b57cec5SDimitry Andric         addRelocationForSymbol(RE, Value.SymbolName);
14530b57cec5SDimitry Andric       else
14540b57cec5SDimitry Andric         addRelocationForSection(RE, Value.SectionID);
14550b57cec5SDimitry Andric     } else {
14560b57cec5SDimitry Andric       if (RelType == ELF::R_MIPS_32)
14570b57cec5SDimitry Andric         Value.Addend += Opcode;
14580b57cec5SDimitry Andric       else if (RelType == ELF::R_MIPS_PC16)
14590b57cec5SDimitry Andric         Value.Addend += SignExtend32<18>((Opcode & 0x0000ffff) << 2);
14600b57cec5SDimitry Andric       else if (RelType == ELF::R_MIPS_PC19_S2)
14610b57cec5SDimitry Andric         Value.Addend += SignExtend32<21>((Opcode & 0x0007ffff) << 2);
14620b57cec5SDimitry Andric       else if (RelType == ELF::R_MIPS_PC21_S2)
14630b57cec5SDimitry Andric         Value.Addend += SignExtend32<23>((Opcode & 0x001fffff) << 2);
14640b57cec5SDimitry Andric       else if (RelType == ELF::R_MIPS_PC26_S2)
14650b57cec5SDimitry Andric         Value.Addend += SignExtend32<28>((Opcode & 0x03ffffff) << 2);
14660b57cec5SDimitry Andric       processSimpleRelocation(SectionID, Offset, RelType, Value);
14670b57cec5SDimitry Andric     }
14680b57cec5SDimitry Andric   } else if (IsMipsN32ABI || IsMipsN64ABI) {
14690b57cec5SDimitry Andric     uint32_t r_type = RelType & 0xff;
14700b57cec5SDimitry Andric     RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
14710b57cec5SDimitry Andric     if (r_type == ELF::R_MIPS_CALL16 || r_type == ELF::R_MIPS_GOT_PAGE
14720b57cec5SDimitry Andric         || r_type == ELF::R_MIPS_GOT_DISP) {
14730b57cec5SDimitry Andric       StringMap<uint64_t>::iterator i = GOTSymbolOffsets.find(TargetName);
14740b57cec5SDimitry Andric       if (i != GOTSymbolOffsets.end())
14750b57cec5SDimitry Andric         RE.SymOffset = i->second;
14760b57cec5SDimitry Andric       else {
14770b57cec5SDimitry Andric         RE.SymOffset = allocateGOTEntries(1);
14780b57cec5SDimitry Andric         GOTSymbolOffsets[TargetName] = RE.SymOffset;
14790b57cec5SDimitry Andric       }
14800b57cec5SDimitry Andric       if (Value.SymbolName)
14810b57cec5SDimitry Andric         addRelocationForSymbol(RE, Value.SymbolName);
14820b57cec5SDimitry Andric       else
14830b57cec5SDimitry Andric         addRelocationForSection(RE, Value.SectionID);
14840b57cec5SDimitry Andric     } else if (RelType == ELF::R_MIPS_26) {
14850b57cec5SDimitry Andric       // This is an Mips branch relocation, need to use a stub function.
14860b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << "\t\tThis is a Mips branch relocation.");
14870b57cec5SDimitry Andric       SectionEntry &Section = Sections[SectionID];
14880b57cec5SDimitry Andric 
14890b57cec5SDimitry Andric       //  Look up for existing stub.
14900b57cec5SDimitry Andric       StubMap::const_iterator i = Stubs.find(Value);
14910b57cec5SDimitry Andric       if (i != Stubs.end()) {
14920b57cec5SDimitry Andric         RelocationEntry RE(SectionID, Offset, RelType, i->second);
14930b57cec5SDimitry Andric         addRelocationForSection(RE, SectionID);
14940b57cec5SDimitry Andric         LLVM_DEBUG(dbgs() << " Stub function found\n");
14950b57cec5SDimitry Andric       } else {
14960b57cec5SDimitry Andric         // Create a new stub function.
14970b57cec5SDimitry Andric         LLVM_DEBUG(dbgs() << " Create a new stub function\n");
14980b57cec5SDimitry Andric         Stubs[Value] = Section.getStubOffset();
14990b57cec5SDimitry Andric 
15000b57cec5SDimitry Andric         unsigned AbiVariant = Obj.getPlatformFlags();
15010b57cec5SDimitry Andric 
15020b57cec5SDimitry Andric         uint8_t *StubTargetAddr = createStubFunction(
15030b57cec5SDimitry Andric             Section.getAddressWithOffset(Section.getStubOffset()), AbiVariant);
15040b57cec5SDimitry Andric 
15050b57cec5SDimitry Andric         if (IsMipsN32ABI) {
15060b57cec5SDimitry Andric           // Creating Hi and Lo relocations for the filled stub instructions.
15070b57cec5SDimitry Andric           RelocationEntry REHi(SectionID, StubTargetAddr - Section.getAddress(),
15080b57cec5SDimitry Andric                                ELF::R_MIPS_HI16, Value.Addend);
15090b57cec5SDimitry Andric           RelocationEntry RELo(SectionID,
15100b57cec5SDimitry Andric                                StubTargetAddr - Section.getAddress() + 4,
15110b57cec5SDimitry Andric                                ELF::R_MIPS_LO16, Value.Addend);
15120b57cec5SDimitry Andric           if (Value.SymbolName) {
15130b57cec5SDimitry Andric             addRelocationForSymbol(REHi, Value.SymbolName);
15140b57cec5SDimitry Andric             addRelocationForSymbol(RELo, Value.SymbolName);
15150b57cec5SDimitry Andric           } else {
15160b57cec5SDimitry Andric             addRelocationForSection(REHi, Value.SectionID);
15170b57cec5SDimitry Andric             addRelocationForSection(RELo, Value.SectionID);
15180b57cec5SDimitry Andric           }
15190b57cec5SDimitry Andric         } else {
15200b57cec5SDimitry Andric           // Creating Highest, Higher, Hi and Lo relocations for the filled stub
15210b57cec5SDimitry Andric           // instructions.
15220b57cec5SDimitry Andric           RelocationEntry REHighest(SectionID,
15230b57cec5SDimitry Andric                                     StubTargetAddr - Section.getAddress(),
15240b57cec5SDimitry Andric                                     ELF::R_MIPS_HIGHEST, Value.Addend);
15250b57cec5SDimitry Andric           RelocationEntry REHigher(SectionID,
15260b57cec5SDimitry Andric                                    StubTargetAddr - Section.getAddress() + 4,
15270b57cec5SDimitry Andric                                    ELF::R_MIPS_HIGHER, Value.Addend);
15280b57cec5SDimitry Andric           RelocationEntry REHi(SectionID,
15290b57cec5SDimitry Andric                                StubTargetAddr - Section.getAddress() + 12,
15300b57cec5SDimitry Andric                                ELF::R_MIPS_HI16, Value.Addend);
15310b57cec5SDimitry Andric           RelocationEntry RELo(SectionID,
15320b57cec5SDimitry Andric                                StubTargetAddr - Section.getAddress() + 20,
15330b57cec5SDimitry Andric                                ELF::R_MIPS_LO16, Value.Addend);
15340b57cec5SDimitry Andric           if (Value.SymbolName) {
15350b57cec5SDimitry Andric             addRelocationForSymbol(REHighest, Value.SymbolName);
15360b57cec5SDimitry Andric             addRelocationForSymbol(REHigher, Value.SymbolName);
15370b57cec5SDimitry Andric             addRelocationForSymbol(REHi, Value.SymbolName);
15380b57cec5SDimitry Andric             addRelocationForSymbol(RELo, Value.SymbolName);
15390b57cec5SDimitry Andric           } else {
15400b57cec5SDimitry Andric             addRelocationForSection(REHighest, Value.SectionID);
15410b57cec5SDimitry Andric             addRelocationForSection(REHigher, Value.SectionID);
15420b57cec5SDimitry Andric             addRelocationForSection(REHi, Value.SectionID);
15430b57cec5SDimitry Andric             addRelocationForSection(RELo, Value.SectionID);
15440b57cec5SDimitry Andric           }
15450b57cec5SDimitry Andric         }
15460b57cec5SDimitry Andric         RelocationEntry RE(SectionID, Offset, RelType, Section.getStubOffset());
15470b57cec5SDimitry Andric         addRelocationForSection(RE, SectionID);
15480b57cec5SDimitry Andric         Section.advanceStubOffset(getMaxStubSize());
15490b57cec5SDimitry Andric       }
15500b57cec5SDimitry Andric     } else {
15510b57cec5SDimitry Andric       processSimpleRelocation(SectionID, Offset, RelType, Value);
15520b57cec5SDimitry Andric     }
15530b57cec5SDimitry Andric 
15540b57cec5SDimitry Andric   } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
15550b57cec5SDimitry Andric     if (RelType == ELF::R_PPC64_REL24) {
15560b57cec5SDimitry Andric       // Determine ABI variant in use for this object.
15570b57cec5SDimitry Andric       unsigned AbiVariant = Obj.getPlatformFlags();
15580b57cec5SDimitry Andric       AbiVariant &= ELF::EF_PPC64_ABI;
15590b57cec5SDimitry Andric       // A PPC branch relocation will need a stub function if the target is
15600b57cec5SDimitry Andric       // an external symbol (either Value.SymbolName is set, or SymType is
15610b57cec5SDimitry Andric       // Symbol::ST_Unknown) or if the target address is not within the
15620b57cec5SDimitry Andric       // signed 24-bits branch address.
15630b57cec5SDimitry Andric       SectionEntry &Section = Sections[SectionID];
15640b57cec5SDimitry Andric       uint8_t *Target = Section.getAddressWithOffset(Offset);
15650b57cec5SDimitry Andric       bool RangeOverflow = false;
15660b57cec5SDimitry Andric       bool IsExtern = Value.SymbolName || SymType == SymbolRef::ST_Unknown;
15670b57cec5SDimitry Andric       if (!IsExtern) {
15680b57cec5SDimitry Andric         if (AbiVariant != 2) {
15690b57cec5SDimitry Andric           // In the ELFv1 ABI, a function call may point to the .opd entry,
15700b57cec5SDimitry Andric           // so the final symbol value is calculated based on the relocation
15710b57cec5SDimitry Andric           // values in the .opd section.
15720b57cec5SDimitry Andric           if (auto Err = findOPDEntrySection(Obj, ObjSectionToID, Value))
15730b57cec5SDimitry Andric             return std::move(Err);
15740b57cec5SDimitry Andric         } else {
15750b57cec5SDimitry Andric           // In the ELFv2 ABI, a function symbol may provide a local entry
15760b57cec5SDimitry Andric           // point, which must be used for direct calls.
15770b57cec5SDimitry Andric           if (Value.SectionID == SectionID){
15780b57cec5SDimitry Andric             uint8_t SymOther = Symbol->getOther();
15790b57cec5SDimitry Andric             Value.Addend += ELF::decodePPC64LocalEntryOffset(SymOther);
15800b57cec5SDimitry Andric           }
15810b57cec5SDimitry Andric         }
15820b57cec5SDimitry Andric         uint8_t *RelocTarget =
15830b57cec5SDimitry Andric             Sections[Value.SectionID].getAddressWithOffset(Value.Addend);
15840b57cec5SDimitry Andric         int64_t delta = static_cast<int64_t>(Target - RelocTarget);
15850b57cec5SDimitry Andric         // If it is within 26-bits branch range, just set the branch target
15860b57cec5SDimitry Andric         if (SignExtend64<26>(delta) != delta) {
15870b57cec5SDimitry Andric           RangeOverflow = true;
15880b57cec5SDimitry Andric         } else if ((AbiVariant != 2) ||
15890b57cec5SDimitry Andric                    (AbiVariant == 2  && Value.SectionID == SectionID)) {
15900b57cec5SDimitry Andric           RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
15910b57cec5SDimitry Andric           addRelocationForSection(RE, Value.SectionID);
15920b57cec5SDimitry Andric         }
15930b57cec5SDimitry Andric       }
15940b57cec5SDimitry Andric       if (IsExtern || (AbiVariant == 2 && Value.SectionID != SectionID) ||
15950b57cec5SDimitry Andric           RangeOverflow) {
15960b57cec5SDimitry Andric         // It is an external symbol (either Value.SymbolName is set, or
15970b57cec5SDimitry Andric         // SymType is SymbolRef::ST_Unknown) or out of range.
15980b57cec5SDimitry Andric         StubMap::const_iterator i = Stubs.find(Value);
15990b57cec5SDimitry Andric         if (i != Stubs.end()) {
16000b57cec5SDimitry Andric           // Symbol function stub already created, just relocate to it
16010b57cec5SDimitry Andric           resolveRelocation(Section, Offset,
16020b57cec5SDimitry Andric                             reinterpret_cast<uint64_t>(
16030b57cec5SDimitry Andric                                 Section.getAddressWithOffset(i->second)),
16040b57cec5SDimitry Andric                             RelType, 0);
16050b57cec5SDimitry Andric           LLVM_DEBUG(dbgs() << " Stub function found\n");
16060b57cec5SDimitry Andric         } else {
16070b57cec5SDimitry Andric           // Create a new stub function.
16080b57cec5SDimitry Andric           LLVM_DEBUG(dbgs() << " Create a new stub function\n");
16090b57cec5SDimitry Andric           Stubs[Value] = Section.getStubOffset();
16100b57cec5SDimitry Andric           uint8_t *StubTargetAddr = createStubFunction(
16110b57cec5SDimitry Andric               Section.getAddressWithOffset(Section.getStubOffset()),
16120b57cec5SDimitry Andric               AbiVariant);
16130b57cec5SDimitry Andric           RelocationEntry RE(SectionID, StubTargetAddr - Section.getAddress(),
16140b57cec5SDimitry Andric                              ELF::R_PPC64_ADDR64, Value.Addend);
16150b57cec5SDimitry Andric 
16160b57cec5SDimitry Andric           // Generates the 64-bits address loads as exemplified in section
16170b57cec5SDimitry Andric           // 4.5.1 in PPC64 ELF ABI.  Note that the relocations need to
16180b57cec5SDimitry Andric           // apply to the low part of the instructions, so we have to update
16190b57cec5SDimitry Andric           // the offset according to the target endianness.
16200b57cec5SDimitry Andric           uint64_t StubRelocOffset = StubTargetAddr - Section.getAddress();
16210b57cec5SDimitry Andric           if (!IsTargetLittleEndian)
16220b57cec5SDimitry Andric             StubRelocOffset += 2;
16230b57cec5SDimitry Andric 
16240b57cec5SDimitry Andric           RelocationEntry REhst(SectionID, StubRelocOffset + 0,
16250b57cec5SDimitry Andric                                 ELF::R_PPC64_ADDR16_HIGHEST, Value.Addend);
16260b57cec5SDimitry Andric           RelocationEntry REhr(SectionID, StubRelocOffset + 4,
16270b57cec5SDimitry Andric                                ELF::R_PPC64_ADDR16_HIGHER, Value.Addend);
16280b57cec5SDimitry Andric           RelocationEntry REh(SectionID, StubRelocOffset + 12,
16290b57cec5SDimitry Andric                               ELF::R_PPC64_ADDR16_HI, Value.Addend);
16300b57cec5SDimitry Andric           RelocationEntry REl(SectionID, StubRelocOffset + 16,
16310b57cec5SDimitry Andric                               ELF::R_PPC64_ADDR16_LO, Value.Addend);
16320b57cec5SDimitry Andric 
16330b57cec5SDimitry Andric           if (Value.SymbolName) {
16340b57cec5SDimitry Andric             addRelocationForSymbol(REhst, Value.SymbolName);
16350b57cec5SDimitry Andric             addRelocationForSymbol(REhr, Value.SymbolName);
16360b57cec5SDimitry Andric             addRelocationForSymbol(REh, Value.SymbolName);
16370b57cec5SDimitry Andric             addRelocationForSymbol(REl, Value.SymbolName);
16380b57cec5SDimitry Andric           } else {
16390b57cec5SDimitry Andric             addRelocationForSection(REhst, Value.SectionID);
16400b57cec5SDimitry Andric             addRelocationForSection(REhr, Value.SectionID);
16410b57cec5SDimitry Andric             addRelocationForSection(REh, Value.SectionID);
16420b57cec5SDimitry Andric             addRelocationForSection(REl, Value.SectionID);
16430b57cec5SDimitry Andric           }
16440b57cec5SDimitry Andric 
16450b57cec5SDimitry Andric           resolveRelocation(Section, Offset, reinterpret_cast<uint64_t>(
16460b57cec5SDimitry Andric                                                  Section.getAddressWithOffset(
16470b57cec5SDimitry Andric                                                      Section.getStubOffset())),
16480b57cec5SDimitry Andric                             RelType, 0);
16490b57cec5SDimitry Andric           Section.advanceStubOffset(getMaxStubSize());
16500b57cec5SDimitry Andric         }
16510b57cec5SDimitry Andric         if (IsExtern || (AbiVariant == 2 && Value.SectionID != SectionID)) {
16520b57cec5SDimitry Andric           // Restore the TOC for external calls
16530b57cec5SDimitry Andric           if (AbiVariant == 2)
16540b57cec5SDimitry Andric             writeInt32BE(Target + 4, 0xE8410018); // ld r2,24(r1)
16550b57cec5SDimitry Andric           else
16560b57cec5SDimitry Andric             writeInt32BE(Target + 4, 0xE8410028); // ld r2,40(r1)
16570b57cec5SDimitry Andric         }
16580b57cec5SDimitry Andric       }
16590b57cec5SDimitry Andric     } else if (RelType == ELF::R_PPC64_TOC16 ||
16600b57cec5SDimitry Andric                RelType == ELF::R_PPC64_TOC16_DS ||
16610b57cec5SDimitry Andric                RelType == ELF::R_PPC64_TOC16_LO ||
16620b57cec5SDimitry Andric                RelType == ELF::R_PPC64_TOC16_LO_DS ||
16630b57cec5SDimitry Andric                RelType == ELF::R_PPC64_TOC16_HI ||
16640b57cec5SDimitry Andric                RelType == ELF::R_PPC64_TOC16_HA) {
16650b57cec5SDimitry Andric       // These relocations are supposed to subtract the TOC address from
16660b57cec5SDimitry Andric       // the final value.  This does not fit cleanly into the RuntimeDyld
16670b57cec5SDimitry Andric       // scheme, since there may be *two* sections involved in determining
16680b57cec5SDimitry Andric       // the relocation value (the section of the symbol referred to by the
16690b57cec5SDimitry Andric       // relocation, and the TOC section associated with the current module).
16700b57cec5SDimitry Andric       //
16710b57cec5SDimitry Andric       // Fortunately, these relocations are currently only ever generated
16720b57cec5SDimitry Andric       // referring to symbols that themselves reside in the TOC, which means
16730b57cec5SDimitry Andric       // that the two sections are actually the same.  Thus they cancel out
16740b57cec5SDimitry Andric       // and we can immediately resolve the relocation right now.
16750b57cec5SDimitry Andric       switch (RelType) {
16760b57cec5SDimitry Andric       case ELF::R_PPC64_TOC16: RelType = ELF::R_PPC64_ADDR16; break;
16770b57cec5SDimitry Andric       case ELF::R_PPC64_TOC16_DS: RelType = ELF::R_PPC64_ADDR16_DS; break;
16780b57cec5SDimitry Andric       case ELF::R_PPC64_TOC16_LO: RelType = ELF::R_PPC64_ADDR16_LO; break;
16790b57cec5SDimitry Andric       case ELF::R_PPC64_TOC16_LO_DS: RelType = ELF::R_PPC64_ADDR16_LO_DS; break;
16800b57cec5SDimitry Andric       case ELF::R_PPC64_TOC16_HI: RelType = ELF::R_PPC64_ADDR16_HI; break;
16810b57cec5SDimitry Andric       case ELF::R_PPC64_TOC16_HA: RelType = ELF::R_PPC64_ADDR16_HA; break;
16820b57cec5SDimitry Andric       default: llvm_unreachable("Wrong relocation type.");
16830b57cec5SDimitry Andric       }
16840b57cec5SDimitry Andric 
16850b57cec5SDimitry Andric       RelocationValueRef TOCValue;
16860b57cec5SDimitry Andric       if (auto Err = findPPC64TOCSection(Obj, ObjSectionToID, TOCValue))
16870b57cec5SDimitry Andric         return std::move(Err);
16880b57cec5SDimitry Andric       if (Value.SymbolName || Value.SectionID != TOCValue.SectionID)
16890b57cec5SDimitry Andric         llvm_unreachable("Unsupported TOC relocation.");
16900b57cec5SDimitry Andric       Value.Addend -= TOCValue.Addend;
16910b57cec5SDimitry Andric       resolveRelocation(Sections[SectionID], Offset, Value.Addend, RelType, 0);
16920b57cec5SDimitry Andric     } else {
16930b57cec5SDimitry Andric       // There are two ways to refer to the TOC address directly: either
16940b57cec5SDimitry Andric       // via a ELF::R_PPC64_TOC relocation (where both symbol and addend are
16950b57cec5SDimitry Andric       // ignored), or via any relocation that refers to the magic ".TOC."
16960b57cec5SDimitry Andric       // symbols (in which case the addend is respected).
16970b57cec5SDimitry Andric       if (RelType == ELF::R_PPC64_TOC) {
16980b57cec5SDimitry Andric         RelType = ELF::R_PPC64_ADDR64;
16990b57cec5SDimitry Andric         if (auto Err = findPPC64TOCSection(Obj, ObjSectionToID, Value))
17000b57cec5SDimitry Andric           return std::move(Err);
17010b57cec5SDimitry Andric       } else if (TargetName == ".TOC.") {
17020b57cec5SDimitry Andric         if (auto Err = findPPC64TOCSection(Obj, ObjSectionToID, Value))
17030b57cec5SDimitry Andric           return std::move(Err);
17040b57cec5SDimitry Andric         Value.Addend += Addend;
17050b57cec5SDimitry Andric       }
17060b57cec5SDimitry Andric 
17070b57cec5SDimitry Andric       RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
17080b57cec5SDimitry Andric 
17090b57cec5SDimitry Andric       if (Value.SymbolName)
17100b57cec5SDimitry Andric         addRelocationForSymbol(RE, Value.SymbolName);
17110b57cec5SDimitry Andric       else
17120b57cec5SDimitry Andric         addRelocationForSection(RE, Value.SectionID);
17130b57cec5SDimitry Andric     }
17140b57cec5SDimitry Andric   } else if (Arch == Triple::systemz &&
17150b57cec5SDimitry Andric              (RelType == ELF::R_390_PLT32DBL || RelType == ELF::R_390_GOTENT)) {
17160b57cec5SDimitry Andric     // Create function stubs for both PLT and GOT references, regardless of
17170b57cec5SDimitry Andric     // whether the GOT reference is to data or code.  The stub contains the
17180b57cec5SDimitry Andric     // full address of the symbol, as needed by GOT references, and the
17190b57cec5SDimitry Andric     // executable part only adds an overhead of 8 bytes.
17200b57cec5SDimitry Andric     //
17210b57cec5SDimitry Andric     // We could try to conserve space by allocating the code and data
17220b57cec5SDimitry Andric     // parts of the stub separately.  However, as things stand, we allocate
17230b57cec5SDimitry Andric     // a stub for every relocation, so using a GOT in JIT code should be
17240b57cec5SDimitry Andric     // no less space efficient than using an explicit constant pool.
17250b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "\t\tThis is a SystemZ indirect relocation.");
17260b57cec5SDimitry Andric     SectionEntry &Section = Sections[SectionID];
17270b57cec5SDimitry Andric 
17280b57cec5SDimitry Andric     // Look for an existing stub.
17290b57cec5SDimitry Andric     StubMap::const_iterator i = Stubs.find(Value);
17300b57cec5SDimitry Andric     uintptr_t StubAddress;
17310b57cec5SDimitry Andric     if (i != Stubs.end()) {
17320b57cec5SDimitry Andric       StubAddress = uintptr_t(Section.getAddressWithOffset(i->second));
17330b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << " Stub function found\n");
17340b57cec5SDimitry Andric     } else {
17350b57cec5SDimitry Andric       // Create a new stub function.
17360b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << " Create a new stub function\n");
17370b57cec5SDimitry Andric 
17380b57cec5SDimitry Andric       uintptr_t BaseAddress = uintptr_t(Section.getAddress());
17390b57cec5SDimitry Andric       StubAddress =
1740bdd1243dSDimitry Andric           alignTo(BaseAddress + Section.getStubOffset(), getStubAlignment());
17410b57cec5SDimitry Andric       unsigned StubOffset = StubAddress - BaseAddress;
17420b57cec5SDimitry Andric 
17430b57cec5SDimitry Andric       Stubs[Value] = StubOffset;
17440b57cec5SDimitry Andric       createStubFunction((uint8_t *)StubAddress);
17450b57cec5SDimitry Andric       RelocationEntry RE(SectionID, StubOffset + 8, ELF::R_390_64,
17460b57cec5SDimitry Andric                          Value.Offset);
17470b57cec5SDimitry Andric       if (Value.SymbolName)
17480b57cec5SDimitry Andric         addRelocationForSymbol(RE, Value.SymbolName);
17490b57cec5SDimitry Andric       else
17500b57cec5SDimitry Andric         addRelocationForSection(RE, Value.SectionID);
17510b57cec5SDimitry Andric       Section.advanceStubOffset(getMaxStubSize());
17520b57cec5SDimitry Andric     }
17530b57cec5SDimitry Andric 
17540b57cec5SDimitry Andric     if (RelType == ELF::R_390_GOTENT)
17550b57cec5SDimitry Andric       resolveRelocation(Section, Offset, StubAddress + 8, ELF::R_390_PC32DBL,
17560b57cec5SDimitry Andric                         Addend);
17570b57cec5SDimitry Andric     else
17580b57cec5SDimitry Andric       resolveRelocation(Section, Offset, StubAddress, RelType, Addend);
17590b57cec5SDimitry Andric   } else if (Arch == Triple::x86_64) {
17600b57cec5SDimitry Andric     if (RelType == ELF::R_X86_64_PLT32) {
17610b57cec5SDimitry Andric       // The way the PLT relocations normally work is that the linker allocates
17620b57cec5SDimitry Andric       // the
17630b57cec5SDimitry Andric       // PLT and this relocation makes a PC-relative call into the PLT.  The PLT
17640b57cec5SDimitry Andric       // entry will then jump to an address provided by the GOT.  On first call,
17650b57cec5SDimitry Andric       // the
17660b57cec5SDimitry Andric       // GOT address will point back into PLT code that resolves the symbol. After
17670b57cec5SDimitry Andric       // the first call, the GOT entry points to the actual function.
17680b57cec5SDimitry Andric       //
17690b57cec5SDimitry Andric       // For local functions we're ignoring all of that here and just replacing
17700b57cec5SDimitry Andric       // the PLT32 relocation type with PC32, which will translate the relocation
17710b57cec5SDimitry Andric       // into a PC-relative call directly to the function. For external symbols we
17720b57cec5SDimitry Andric       // can't be sure the function will be within 2^32 bytes of the call site, so
17730b57cec5SDimitry Andric       // we need to create a stub, which calls into the GOT.  This case is
17740b57cec5SDimitry Andric       // equivalent to the usual PLT implementation except that we use the stub
17750b57cec5SDimitry Andric       // mechanism in RuntimeDyld (which puts stubs at the end of the section)
17760b57cec5SDimitry Andric       // rather than allocating a PLT section.
1777fe6060f1SDimitry Andric       if (Value.SymbolName && MemMgr.allowStubAllocation()) {
17780b57cec5SDimitry Andric         // This is a call to an external function.
17790b57cec5SDimitry Andric         // Look for an existing stub.
1780e8d8bef9SDimitry Andric         SectionEntry *Section = &Sections[SectionID];
17810b57cec5SDimitry Andric         StubMap::const_iterator i = Stubs.find(Value);
17820b57cec5SDimitry Andric         uintptr_t StubAddress;
17830b57cec5SDimitry Andric         if (i != Stubs.end()) {
1784e8d8bef9SDimitry Andric           StubAddress = uintptr_t(Section->getAddress()) + i->second;
17850b57cec5SDimitry Andric           LLVM_DEBUG(dbgs() << " Stub function found\n");
17860b57cec5SDimitry Andric         } else {
17870b57cec5SDimitry Andric           // Create a new stub function (equivalent to a PLT entry).
17880b57cec5SDimitry Andric           LLVM_DEBUG(dbgs() << " Create a new stub function\n");
17890b57cec5SDimitry Andric 
1790e8d8bef9SDimitry Andric           uintptr_t BaseAddress = uintptr_t(Section->getAddress());
1791bdd1243dSDimitry Andric           StubAddress = alignTo(BaseAddress + Section->getStubOffset(),
1792bdd1243dSDimitry Andric                                 getStubAlignment());
17930b57cec5SDimitry Andric           unsigned StubOffset = StubAddress - BaseAddress;
17940b57cec5SDimitry Andric           Stubs[Value] = StubOffset;
17950b57cec5SDimitry Andric           createStubFunction((uint8_t *)StubAddress);
17960b57cec5SDimitry Andric 
17970b57cec5SDimitry Andric           // Bump our stub offset counter
1798e8d8bef9SDimitry Andric           Section->advanceStubOffset(getMaxStubSize());
17990b57cec5SDimitry Andric 
18000b57cec5SDimitry Andric           // Allocate a GOT Entry
18010b57cec5SDimitry Andric           uint64_t GOTOffset = allocateGOTEntries(1);
1802e8d8bef9SDimitry Andric           // This potentially creates a new Section which potentially
1803e8d8bef9SDimitry Andric           // invalidates the Section pointer, so reload it.
1804e8d8bef9SDimitry Andric           Section = &Sections[SectionID];
18050b57cec5SDimitry Andric 
18060b57cec5SDimitry Andric           // The load of the GOT address has an addend of -4
18070b57cec5SDimitry Andric           resolveGOTOffsetRelocation(SectionID, StubOffset + 2, GOTOffset - 4,
18080b57cec5SDimitry Andric                                      ELF::R_X86_64_PC32);
18090b57cec5SDimitry Andric 
18100b57cec5SDimitry Andric           // Fill in the value of the symbol we're targeting into the GOT
18110b57cec5SDimitry Andric           addRelocationForSymbol(
18120b57cec5SDimitry Andric               computeGOTOffsetRE(GOTOffset, 0, ELF::R_X86_64_64),
18130b57cec5SDimitry Andric               Value.SymbolName);
18140b57cec5SDimitry Andric         }
18150b57cec5SDimitry Andric 
18160b57cec5SDimitry Andric         // Make the target call a call into the stub table.
1817e8d8bef9SDimitry Andric         resolveRelocation(*Section, Offset, StubAddress, ELF::R_X86_64_PC32,
18180b57cec5SDimitry Andric                           Addend);
18190b57cec5SDimitry Andric       } else {
1820fe6060f1SDimitry Andric         Value.Addend += support::ulittle32_t::ref(
1821fe6060f1SDimitry Andric             computePlaceholderAddress(SectionID, Offset));
1822fe6060f1SDimitry Andric         processSimpleRelocation(SectionID, Offset, ELF::R_X86_64_PC32, Value);
18230b57cec5SDimitry Andric       }
18240b57cec5SDimitry Andric     } else if (RelType == ELF::R_X86_64_GOTPCREL ||
18250b57cec5SDimitry Andric                RelType == ELF::R_X86_64_GOTPCRELX ||
18260b57cec5SDimitry Andric                RelType == ELF::R_X86_64_REX_GOTPCRELX) {
18270b57cec5SDimitry Andric       uint64_t GOTOffset = allocateGOTEntries(1);
18280b57cec5SDimitry Andric       resolveGOTOffsetRelocation(SectionID, Offset, GOTOffset + Addend,
18290b57cec5SDimitry Andric                                  ELF::R_X86_64_PC32);
18300b57cec5SDimitry Andric 
18310b57cec5SDimitry Andric       // Fill in the value of the symbol we're targeting into the GOT
18320b57cec5SDimitry Andric       RelocationEntry RE =
18330b57cec5SDimitry Andric           computeGOTOffsetRE(GOTOffset, Value.Offset, ELF::R_X86_64_64);
18340b57cec5SDimitry Andric       if (Value.SymbolName)
18350b57cec5SDimitry Andric         addRelocationForSymbol(RE, Value.SymbolName);
18360b57cec5SDimitry Andric       else
18370b57cec5SDimitry Andric         addRelocationForSection(RE, Value.SectionID);
18380b57cec5SDimitry Andric     } else if (RelType == ELF::R_X86_64_GOT64) {
18390b57cec5SDimitry Andric       // Fill in a 64-bit GOT offset.
18400b57cec5SDimitry Andric       uint64_t GOTOffset = allocateGOTEntries(1);
18410b57cec5SDimitry Andric       resolveRelocation(Sections[SectionID], Offset, GOTOffset,
18420b57cec5SDimitry Andric                         ELF::R_X86_64_64, 0);
18430b57cec5SDimitry Andric 
18440b57cec5SDimitry Andric       // Fill in the value of the symbol we're targeting into the GOT
18450b57cec5SDimitry Andric       RelocationEntry RE =
18460b57cec5SDimitry Andric           computeGOTOffsetRE(GOTOffset, Value.Offset, ELF::R_X86_64_64);
18470b57cec5SDimitry Andric       if (Value.SymbolName)
18480b57cec5SDimitry Andric         addRelocationForSymbol(RE, Value.SymbolName);
18490b57cec5SDimitry Andric       else
18500b57cec5SDimitry Andric         addRelocationForSection(RE, Value.SectionID);
1851349cc55cSDimitry Andric     } else if (RelType == ELF::R_X86_64_GOTPC32) {
18520b57cec5SDimitry Andric       // Materialize the address of the base of the GOT relative to the PC.
18530b57cec5SDimitry Andric       // This doesn't create a GOT entry, but it does mean we need a GOT
18540b57cec5SDimitry Andric       // section.
18550b57cec5SDimitry Andric       (void)allocateGOTEntries(0);
1856349cc55cSDimitry Andric       resolveGOTOffsetRelocation(SectionID, Offset, Addend, ELF::R_X86_64_PC32);
1857349cc55cSDimitry Andric     } else if (RelType == ELF::R_X86_64_GOTPC64) {
1858349cc55cSDimitry Andric       (void)allocateGOTEntries(0);
18590b57cec5SDimitry Andric       resolveGOTOffsetRelocation(SectionID, Offset, Addend, ELF::R_X86_64_PC64);
18600b57cec5SDimitry Andric     } else if (RelType == ELF::R_X86_64_GOTOFF64) {
18610b57cec5SDimitry Andric       // GOTOFF relocations ultimately require a section difference relocation.
18620b57cec5SDimitry Andric       (void)allocateGOTEntries(0);
18630b57cec5SDimitry Andric       processSimpleRelocation(SectionID, Offset, RelType, Value);
18640b57cec5SDimitry Andric     } else if (RelType == ELF::R_X86_64_PC32) {
18650b57cec5SDimitry Andric       Value.Addend += support::ulittle32_t::ref(computePlaceholderAddress(SectionID, Offset));
18660b57cec5SDimitry Andric       processSimpleRelocation(SectionID, Offset, RelType, Value);
18670b57cec5SDimitry Andric     } else if (RelType == ELF::R_X86_64_PC64) {
18680b57cec5SDimitry Andric       Value.Addend += support::ulittle64_t::ref(computePlaceholderAddress(SectionID, Offset));
18690b57cec5SDimitry Andric       processSimpleRelocation(SectionID, Offset, RelType, Value);
1870349cc55cSDimitry Andric     } else if (RelType == ELF::R_X86_64_GOTTPOFF) {
1871349cc55cSDimitry Andric       processX86_64GOTTPOFFRelocation(SectionID, Offset, Value, Addend);
1872349cc55cSDimitry Andric     } else if (RelType == ELF::R_X86_64_TLSGD ||
1873349cc55cSDimitry Andric                RelType == ELF::R_X86_64_TLSLD) {
1874349cc55cSDimitry Andric       // The next relocation must be the relocation for __tls_get_addr.
1875349cc55cSDimitry Andric       ++RelI;
1876349cc55cSDimitry Andric       auto &GetAddrRelocation = *RelI;
1877349cc55cSDimitry Andric       processX86_64TLSRelocation(SectionID, Offset, RelType, Value, Addend,
1878349cc55cSDimitry Andric                                  GetAddrRelocation);
18790b57cec5SDimitry Andric     } else {
18800b57cec5SDimitry Andric       processSimpleRelocation(SectionID, Offset, RelType, Value);
18810b57cec5SDimitry Andric     }
18820b57cec5SDimitry Andric   } else {
18830b57cec5SDimitry Andric     if (Arch == Triple::x86) {
18840b57cec5SDimitry Andric       Value.Addend += support::ulittle32_t::ref(computePlaceholderAddress(SectionID, Offset));
18850b57cec5SDimitry Andric     }
18860b57cec5SDimitry Andric     processSimpleRelocation(SectionID, Offset, RelType, Value);
18870b57cec5SDimitry Andric   }
18880b57cec5SDimitry Andric   return ++RelI;
18890b57cec5SDimitry Andric }
18900b57cec5SDimitry Andric 
1891349cc55cSDimitry Andric void RuntimeDyldELF::processX86_64GOTTPOFFRelocation(unsigned SectionID,
1892349cc55cSDimitry Andric                                                      uint64_t Offset,
1893349cc55cSDimitry Andric                                                      RelocationValueRef Value,
1894349cc55cSDimitry Andric                                                      int64_t Addend) {
1895349cc55cSDimitry Andric   // Use the approach from "x86-64 Linker Optimizations" from the TLS spec
1896349cc55cSDimitry Andric   // to replace the GOTTPOFF relocation with a TPOFF relocation. The spec
1897349cc55cSDimitry Andric   // only mentions one optimization even though there are two different
1898349cc55cSDimitry Andric   // code sequences for the Initial Exec TLS Model. We match the code to
1899349cc55cSDimitry Andric   // find out which one was used.
1900349cc55cSDimitry Andric 
1901349cc55cSDimitry Andric   // A possible TLS code sequence and its replacement
1902349cc55cSDimitry Andric   struct CodeSequence {
1903349cc55cSDimitry Andric     // The expected code sequence
1904349cc55cSDimitry Andric     ArrayRef<uint8_t> ExpectedCodeSequence;
1905349cc55cSDimitry Andric     // The negative offset of the GOTTPOFF relocation to the beginning of
1906349cc55cSDimitry Andric     // the sequence
1907349cc55cSDimitry Andric     uint64_t TLSSequenceOffset;
1908349cc55cSDimitry Andric     // The new code sequence
1909349cc55cSDimitry Andric     ArrayRef<uint8_t> NewCodeSequence;
1910349cc55cSDimitry Andric     // The offset of the new TPOFF relocation
1911349cc55cSDimitry Andric     uint64_t TpoffRelocationOffset;
1912349cc55cSDimitry Andric   };
1913349cc55cSDimitry Andric 
1914349cc55cSDimitry Andric   std::array<CodeSequence, 2> CodeSequences;
1915349cc55cSDimitry Andric 
1916349cc55cSDimitry Andric   // Initial Exec Code Model Sequence
1917349cc55cSDimitry Andric   {
1918349cc55cSDimitry Andric     static const std::initializer_list<uint8_t> ExpectedCodeSequenceList = {
1919349cc55cSDimitry Andric         0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00,
1920349cc55cSDimitry Andric         0x00,                                    // mov %fs:0, %rax
1921349cc55cSDimitry Andric         0x48, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00 // add x@gotpoff(%rip),
1922349cc55cSDimitry Andric                                                  // %rax
1923349cc55cSDimitry Andric     };
1924349cc55cSDimitry Andric     CodeSequences[0].ExpectedCodeSequence =
1925349cc55cSDimitry Andric         ArrayRef<uint8_t>(ExpectedCodeSequenceList);
1926349cc55cSDimitry Andric     CodeSequences[0].TLSSequenceOffset = 12;
1927349cc55cSDimitry Andric 
1928349cc55cSDimitry Andric     static const std::initializer_list<uint8_t> NewCodeSequenceList = {
1929349cc55cSDimitry Andric         0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00, // mov %fs:0, %rax
1930349cc55cSDimitry Andric         0x48, 0x8d, 0x80, 0x00, 0x00, 0x00, 0x00 // lea x@tpoff(%rax), %rax
1931349cc55cSDimitry Andric     };
1932349cc55cSDimitry Andric     CodeSequences[0].NewCodeSequence = ArrayRef<uint8_t>(NewCodeSequenceList);
1933349cc55cSDimitry Andric     CodeSequences[0].TpoffRelocationOffset = 12;
1934349cc55cSDimitry Andric   }
1935349cc55cSDimitry Andric 
1936349cc55cSDimitry Andric   // Initial Exec Code Model Sequence, II
1937349cc55cSDimitry Andric   {
1938349cc55cSDimitry Andric     static const std::initializer_list<uint8_t> ExpectedCodeSequenceList = {
1939349cc55cSDimitry Andric         0x48, 0x8b, 0x05, 0x00, 0x00, 0x00, 0x00, // mov x@gotpoff(%rip), %rax
1940349cc55cSDimitry Andric         0x64, 0x48, 0x8b, 0x00, 0x00, 0x00, 0x00  // mov %fs:(%rax), %rax
1941349cc55cSDimitry Andric     };
1942349cc55cSDimitry Andric     CodeSequences[1].ExpectedCodeSequence =
1943349cc55cSDimitry Andric         ArrayRef<uint8_t>(ExpectedCodeSequenceList);
1944349cc55cSDimitry Andric     CodeSequences[1].TLSSequenceOffset = 3;
1945349cc55cSDimitry Andric 
1946349cc55cSDimitry Andric     static const std::initializer_list<uint8_t> NewCodeSequenceList = {
1947349cc55cSDimitry Andric         0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,             // 6 byte nop
1948349cc55cSDimitry Andric         0x64, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00, // mov %fs:x@tpoff, %rax
1949349cc55cSDimitry Andric     };
1950349cc55cSDimitry Andric     CodeSequences[1].NewCodeSequence = ArrayRef<uint8_t>(NewCodeSequenceList);
1951349cc55cSDimitry Andric     CodeSequences[1].TpoffRelocationOffset = 10;
1952349cc55cSDimitry Andric   }
1953349cc55cSDimitry Andric 
1954349cc55cSDimitry Andric   bool Resolved = false;
1955349cc55cSDimitry Andric   auto &Section = Sections[SectionID];
1956349cc55cSDimitry Andric   for (const auto &C : CodeSequences) {
1957349cc55cSDimitry Andric     assert(C.ExpectedCodeSequence.size() == C.NewCodeSequence.size() &&
1958349cc55cSDimitry Andric            "Old and new code sequences must have the same size");
1959349cc55cSDimitry Andric 
1960349cc55cSDimitry Andric     if (Offset < C.TLSSequenceOffset ||
1961349cc55cSDimitry Andric         (Offset - C.TLSSequenceOffset + C.NewCodeSequence.size()) >
1962349cc55cSDimitry Andric             Section.getSize()) {
1963349cc55cSDimitry Andric       // This can't be a matching sequence as it doesn't fit in the current
1964349cc55cSDimitry Andric       // section
1965349cc55cSDimitry Andric       continue;
1966349cc55cSDimitry Andric     }
1967349cc55cSDimitry Andric 
1968349cc55cSDimitry Andric     auto TLSSequenceStartOffset = Offset - C.TLSSequenceOffset;
1969349cc55cSDimitry Andric     auto *TLSSequence = Section.getAddressWithOffset(TLSSequenceStartOffset);
1970349cc55cSDimitry Andric     if (ArrayRef<uint8_t>(TLSSequence, C.ExpectedCodeSequence.size()) !=
1971349cc55cSDimitry Andric         C.ExpectedCodeSequence) {
1972349cc55cSDimitry Andric       continue;
1973349cc55cSDimitry Andric     }
1974349cc55cSDimitry Andric 
1975349cc55cSDimitry Andric     memcpy(TLSSequence, C.NewCodeSequence.data(), C.NewCodeSequence.size());
1976349cc55cSDimitry Andric 
1977349cc55cSDimitry Andric     // The original GOTTPOFF relocation has an addend as it is PC relative,
1978349cc55cSDimitry Andric     // so it needs to be corrected. The TPOFF32 relocation is used as an
1979349cc55cSDimitry Andric     // absolute value (which is an offset from %fs:0), so remove the addend
1980349cc55cSDimitry Andric     // again.
1981349cc55cSDimitry Andric     RelocationEntry RE(SectionID,
1982349cc55cSDimitry Andric                        TLSSequenceStartOffset + C.TpoffRelocationOffset,
1983349cc55cSDimitry Andric                        ELF::R_X86_64_TPOFF32, Value.Addend - Addend);
1984349cc55cSDimitry Andric 
1985349cc55cSDimitry Andric     if (Value.SymbolName)
1986349cc55cSDimitry Andric       addRelocationForSymbol(RE, Value.SymbolName);
1987349cc55cSDimitry Andric     else
1988349cc55cSDimitry Andric       addRelocationForSection(RE, Value.SectionID);
1989349cc55cSDimitry Andric 
1990349cc55cSDimitry Andric     Resolved = true;
1991349cc55cSDimitry Andric     break;
1992349cc55cSDimitry Andric   }
1993349cc55cSDimitry Andric 
1994349cc55cSDimitry Andric   if (!Resolved) {
1995349cc55cSDimitry Andric     // The GOTTPOFF relocation was not used in one of the sequences
1996349cc55cSDimitry Andric     // described in the spec, so we can't optimize it to a TPOFF
1997349cc55cSDimitry Andric     // relocation.
1998349cc55cSDimitry Andric     uint64_t GOTOffset = allocateGOTEntries(1);
1999349cc55cSDimitry Andric     resolveGOTOffsetRelocation(SectionID, Offset, GOTOffset + Addend,
2000349cc55cSDimitry Andric                                ELF::R_X86_64_PC32);
2001349cc55cSDimitry Andric     RelocationEntry RE =
2002349cc55cSDimitry Andric         computeGOTOffsetRE(GOTOffset, Value.Offset, ELF::R_X86_64_TPOFF64);
2003349cc55cSDimitry Andric     if (Value.SymbolName)
2004349cc55cSDimitry Andric       addRelocationForSymbol(RE, Value.SymbolName);
2005349cc55cSDimitry Andric     else
2006349cc55cSDimitry Andric       addRelocationForSection(RE, Value.SectionID);
2007349cc55cSDimitry Andric   }
2008349cc55cSDimitry Andric }
2009349cc55cSDimitry Andric 
2010349cc55cSDimitry Andric void RuntimeDyldELF::processX86_64TLSRelocation(
2011349cc55cSDimitry Andric     unsigned SectionID, uint64_t Offset, uint64_t RelType,
2012349cc55cSDimitry Andric     RelocationValueRef Value, int64_t Addend,
2013349cc55cSDimitry Andric     const RelocationRef &GetAddrRelocation) {
2014349cc55cSDimitry Andric   // Since we are statically linking and have no additional DSOs, we can resolve
2015349cc55cSDimitry Andric   // the relocation directly without using __tls_get_addr.
2016349cc55cSDimitry Andric   // Use the approach from "x86-64 Linker Optimizations" from the TLS spec
2017349cc55cSDimitry Andric   // to replace it with the Local Exec relocation variant.
2018349cc55cSDimitry Andric 
2019349cc55cSDimitry Andric   // Find out whether the code was compiled with the large or small memory
2020349cc55cSDimitry Andric   // model. For this we look at the next relocation which is the relocation
2021349cc55cSDimitry Andric   // for the __tls_get_addr function. If it's a 32 bit relocation, it's the
2022349cc55cSDimitry Andric   // small code model, with a 64 bit relocation it's the large code model.
2023349cc55cSDimitry Andric   bool IsSmallCodeModel;
2024349cc55cSDimitry Andric   // Is the relocation for the __tls_get_addr a PC-relative GOT relocation?
2025349cc55cSDimitry Andric   bool IsGOTPCRel = false;
2026349cc55cSDimitry Andric 
2027349cc55cSDimitry Andric   switch (GetAddrRelocation.getType()) {
2028349cc55cSDimitry Andric   case ELF::R_X86_64_GOTPCREL:
2029349cc55cSDimitry Andric   case ELF::R_X86_64_REX_GOTPCRELX:
2030349cc55cSDimitry Andric   case ELF::R_X86_64_GOTPCRELX:
2031349cc55cSDimitry Andric     IsGOTPCRel = true;
2032bdd1243dSDimitry Andric     [[fallthrough]];
2033349cc55cSDimitry Andric   case ELF::R_X86_64_PLT32:
2034349cc55cSDimitry Andric     IsSmallCodeModel = true;
2035349cc55cSDimitry Andric     break;
2036349cc55cSDimitry Andric   case ELF::R_X86_64_PLTOFF64:
2037349cc55cSDimitry Andric     IsSmallCodeModel = false;
2038349cc55cSDimitry Andric     break;
2039349cc55cSDimitry Andric   default:
2040349cc55cSDimitry Andric     report_fatal_error(
2041349cc55cSDimitry Andric         "invalid TLS relocations for General/Local Dynamic TLS Model: "
2042349cc55cSDimitry Andric         "expected PLT or GOT relocation for __tls_get_addr function");
2043349cc55cSDimitry Andric   }
2044349cc55cSDimitry Andric 
2045349cc55cSDimitry Andric   // The negative offset to the start of the TLS code sequence relative to
2046349cc55cSDimitry Andric   // the offset of the TLSGD/TLSLD relocation
2047349cc55cSDimitry Andric   uint64_t TLSSequenceOffset;
2048349cc55cSDimitry Andric   // The expected start of the code sequence
2049349cc55cSDimitry Andric   ArrayRef<uint8_t> ExpectedCodeSequence;
2050349cc55cSDimitry Andric   // The new TLS code sequence that will replace the existing code
2051349cc55cSDimitry Andric   ArrayRef<uint8_t> NewCodeSequence;
2052349cc55cSDimitry Andric 
2053349cc55cSDimitry Andric   if (RelType == ELF::R_X86_64_TLSGD) {
2054349cc55cSDimitry Andric     // The offset of the new TPOFF32 relocation (offset starting from the
2055349cc55cSDimitry Andric     // beginning of the whole TLS sequence)
2056349cc55cSDimitry Andric     uint64_t TpoffRelocOffset;
2057349cc55cSDimitry Andric 
2058349cc55cSDimitry Andric     if (IsSmallCodeModel) {
2059349cc55cSDimitry Andric       if (!IsGOTPCRel) {
2060349cc55cSDimitry Andric         static const std::initializer_list<uint8_t> CodeSequence = {
2061349cc55cSDimitry Andric             0x66, // data16 (no-op prefix)
2062349cc55cSDimitry Andric             0x48, 0x8d, 0x3d, 0x00, 0x00,
2063349cc55cSDimitry Andric             0x00, 0x00,                  // lea <disp32>(%rip), %rdi
2064349cc55cSDimitry Andric             0x66, 0x66,                  // two data16 prefixes
2065349cc55cSDimitry Andric             0x48,                        // rex64 (no-op prefix)
2066349cc55cSDimitry Andric             0xe8, 0x00, 0x00, 0x00, 0x00 // call __tls_get_addr@plt
2067349cc55cSDimitry Andric         };
2068349cc55cSDimitry Andric         ExpectedCodeSequence = ArrayRef<uint8_t>(CodeSequence);
2069349cc55cSDimitry Andric         TLSSequenceOffset = 4;
2070349cc55cSDimitry Andric       } else {
2071349cc55cSDimitry Andric         // This code sequence is not described in the TLS spec but gcc
2072349cc55cSDimitry Andric         // generates it sometimes.
2073349cc55cSDimitry Andric         static const std::initializer_list<uint8_t> CodeSequence = {
2074349cc55cSDimitry Andric             0x66, // data16 (no-op prefix)
2075349cc55cSDimitry Andric             0x48, 0x8d, 0x3d, 0x00, 0x00,
2076349cc55cSDimitry Andric             0x00, 0x00, // lea <disp32>(%rip), %rdi
2077349cc55cSDimitry Andric             0x66,       // data16 prefix (no-op prefix)
2078349cc55cSDimitry Andric             0x48,       // rex64 (no-op prefix)
2079349cc55cSDimitry Andric             0xff, 0x15, 0x00, 0x00, 0x00,
2080349cc55cSDimitry Andric             0x00 // call *__tls_get_addr@gotpcrel(%rip)
2081349cc55cSDimitry Andric         };
2082349cc55cSDimitry Andric         ExpectedCodeSequence = ArrayRef<uint8_t>(CodeSequence);
2083349cc55cSDimitry Andric         TLSSequenceOffset = 4;
2084349cc55cSDimitry Andric       }
2085349cc55cSDimitry Andric 
2086349cc55cSDimitry Andric       // The replacement code for the small code model. It's the same for
2087349cc55cSDimitry Andric       // both sequences.
2088349cc55cSDimitry Andric       static const std::initializer_list<uint8_t> SmallSequence = {
2089349cc55cSDimitry Andric           0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00,
2090349cc55cSDimitry Andric           0x00,                                    // mov %fs:0, %rax
2091349cc55cSDimitry Andric           0x48, 0x8d, 0x80, 0x00, 0x00, 0x00, 0x00 // lea x@tpoff(%rax),
2092349cc55cSDimitry Andric                                                    // %rax
2093349cc55cSDimitry Andric       };
2094349cc55cSDimitry Andric       NewCodeSequence = ArrayRef<uint8_t>(SmallSequence);
2095349cc55cSDimitry Andric       TpoffRelocOffset = 12;
2096349cc55cSDimitry Andric     } else {
2097349cc55cSDimitry Andric       static const std::initializer_list<uint8_t> CodeSequence = {
2098349cc55cSDimitry Andric           0x48, 0x8d, 0x3d, 0x00, 0x00, 0x00, 0x00, // lea <disp32>(%rip),
2099349cc55cSDimitry Andric                                                     // %rdi
2100349cc55cSDimitry Andric           0x48, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2101349cc55cSDimitry Andric           0x00,             // movabs $__tls_get_addr@pltoff, %rax
2102349cc55cSDimitry Andric           0x48, 0x01, 0xd8, // add %rbx, %rax
2103349cc55cSDimitry Andric           0xff, 0xd0        // call *%rax
2104349cc55cSDimitry Andric       };
2105349cc55cSDimitry Andric       ExpectedCodeSequence = ArrayRef<uint8_t>(CodeSequence);
2106349cc55cSDimitry Andric       TLSSequenceOffset = 3;
2107349cc55cSDimitry Andric 
2108349cc55cSDimitry Andric       // The replacement code for the large code model
2109349cc55cSDimitry Andric       static const std::initializer_list<uint8_t> LargeSequence = {
2110349cc55cSDimitry Andric           0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00,
2111349cc55cSDimitry Andric           0x00,                                     // mov %fs:0, %rax
2112349cc55cSDimitry Andric           0x48, 0x8d, 0x80, 0x00, 0x00, 0x00, 0x00, // lea x@tpoff(%rax),
2113349cc55cSDimitry Andric                                                     // %rax
2114349cc55cSDimitry Andric           0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00        // nopw 0x0(%rax,%rax,1)
2115349cc55cSDimitry Andric       };
2116349cc55cSDimitry Andric       NewCodeSequence = ArrayRef<uint8_t>(LargeSequence);
2117349cc55cSDimitry Andric       TpoffRelocOffset = 12;
2118349cc55cSDimitry Andric     }
2119349cc55cSDimitry Andric 
2120349cc55cSDimitry Andric     // The TLSGD/TLSLD relocations are PC-relative, so they have an addend.
2121349cc55cSDimitry Andric     // The new TPOFF32 relocations is used as an absolute offset from
2122349cc55cSDimitry Andric     // %fs:0, so remove the TLSGD/TLSLD addend again.
2123349cc55cSDimitry Andric     RelocationEntry RE(SectionID, Offset - TLSSequenceOffset + TpoffRelocOffset,
2124349cc55cSDimitry Andric                        ELF::R_X86_64_TPOFF32, Value.Addend - Addend);
2125349cc55cSDimitry Andric     if (Value.SymbolName)
2126349cc55cSDimitry Andric       addRelocationForSymbol(RE, Value.SymbolName);
2127349cc55cSDimitry Andric     else
2128349cc55cSDimitry Andric       addRelocationForSection(RE, Value.SectionID);
2129349cc55cSDimitry Andric   } else if (RelType == ELF::R_X86_64_TLSLD) {
2130349cc55cSDimitry Andric     if (IsSmallCodeModel) {
2131349cc55cSDimitry Andric       if (!IsGOTPCRel) {
2132349cc55cSDimitry Andric         static const std::initializer_list<uint8_t> CodeSequence = {
2133349cc55cSDimitry Andric             0x48, 0x8d, 0x3d, 0x00, 0x00, 0x00, // leaq <disp32>(%rip), %rdi
2134349cc55cSDimitry Andric             0x00, 0xe8, 0x00, 0x00, 0x00, 0x00  // call __tls_get_addr@plt
2135349cc55cSDimitry Andric         };
2136349cc55cSDimitry Andric         ExpectedCodeSequence = ArrayRef<uint8_t>(CodeSequence);
2137349cc55cSDimitry Andric         TLSSequenceOffset = 3;
2138349cc55cSDimitry Andric 
2139349cc55cSDimitry Andric         // The replacement code for the small code model
2140349cc55cSDimitry Andric         static const std::initializer_list<uint8_t> SmallSequence = {
2141349cc55cSDimitry Andric             0x66, 0x66, 0x66, // three data16 prefixes (no-op)
2142349cc55cSDimitry Andric             0x64, 0x48, 0x8b, 0x04, 0x25,
2143349cc55cSDimitry Andric             0x00, 0x00, 0x00, 0x00 // mov %fs:0, %rax
2144349cc55cSDimitry Andric         };
2145349cc55cSDimitry Andric         NewCodeSequence = ArrayRef<uint8_t>(SmallSequence);
2146349cc55cSDimitry Andric       } else {
2147349cc55cSDimitry Andric         // This code sequence is not described in the TLS spec but gcc
2148349cc55cSDimitry Andric         // generates it sometimes.
2149349cc55cSDimitry Andric         static const std::initializer_list<uint8_t> CodeSequence = {
2150349cc55cSDimitry Andric             0x48, 0x8d, 0x3d, 0x00,
2151349cc55cSDimitry Andric             0x00, 0x00, 0x00, // leaq <disp32>(%rip), %rdi
2152349cc55cSDimitry Andric             0xff, 0x15, 0x00, 0x00,
2153349cc55cSDimitry Andric             0x00, 0x00 // call
2154349cc55cSDimitry Andric                        // *__tls_get_addr@gotpcrel(%rip)
2155349cc55cSDimitry Andric         };
2156349cc55cSDimitry Andric         ExpectedCodeSequence = ArrayRef<uint8_t>(CodeSequence);
2157349cc55cSDimitry Andric         TLSSequenceOffset = 3;
2158349cc55cSDimitry Andric 
2159349cc55cSDimitry Andric         // The replacement is code is just like above but it needs to be
2160349cc55cSDimitry Andric         // one byte longer.
2161349cc55cSDimitry Andric         static const std::initializer_list<uint8_t> SmallSequence = {
2162349cc55cSDimitry Andric             0x0f, 0x1f, 0x40, 0x00, // 4 byte nop
2163349cc55cSDimitry Andric             0x64, 0x48, 0x8b, 0x04, 0x25,
2164349cc55cSDimitry Andric             0x00, 0x00, 0x00, 0x00 // mov %fs:0, %rax
2165349cc55cSDimitry Andric         };
2166349cc55cSDimitry Andric         NewCodeSequence = ArrayRef<uint8_t>(SmallSequence);
2167349cc55cSDimitry Andric       }
2168349cc55cSDimitry Andric     } else {
2169349cc55cSDimitry Andric       // This is the same sequence as for the TLSGD sequence with the large
2170349cc55cSDimitry Andric       // memory model above
2171349cc55cSDimitry Andric       static const std::initializer_list<uint8_t> CodeSequence = {
2172349cc55cSDimitry Andric           0x48, 0x8d, 0x3d, 0x00, 0x00, 0x00, 0x00, // lea <disp32>(%rip),
2173349cc55cSDimitry Andric                                                     // %rdi
2174349cc55cSDimitry Andric           0x48, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2175349cc55cSDimitry Andric           0x48,       // movabs $__tls_get_addr@pltoff, %rax
2176349cc55cSDimitry Andric           0x01, 0xd8, // add %rbx, %rax
2177349cc55cSDimitry Andric           0xff, 0xd0  // call *%rax
2178349cc55cSDimitry Andric       };
2179349cc55cSDimitry Andric       ExpectedCodeSequence = ArrayRef<uint8_t>(CodeSequence);
2180349cc55cSDimitry Andric       TLSSequenceOffset = 3;
2181349cc55cSDimitry Andric 
2182349cc55cSDimitry Andric       // The replacement code for the large code model
2183349cc55cSDimitry Andric       static const std::initializer_list<uint8_t> LargeSequence = {
2184349cc55cSDimitry Andric           0x66, 0x66, 0x66, // three data16 prefixes (no-op)
2185349cc55cSDimitry Andric           0x66, 0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00,
2186349cc55cSDimitry Andric           0x00,                                                // 10 byte nop
2187349cc55cSDimitry Andric           0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00 // mov %fs:0,%rax
2188349cc55cSDimitry Andric       };
2189349cc55cSDimitry Andric       NewCodeSequence = ArrayRef<uint8_t>(LargeSequence);
2190349cc55cSDimitry Andric     }
2191349cc55cSDimitry Andric   } else {
2192349cc55cSDimitry Andric     llvm_unreachable("both TLS relocations handled above");
2193349cc55cSDimitry Andric   }
2194349cc55cSDimitry Andric 
2195349cc55cSDimitry Andric   assert(ExpectedCodeSequence.size() == NewCodeSequence.size() &&
2196349cc55cSDimitry Andric          "Old and new code sequences must have the same size");
2197349cc55cSDimitry Andric 
2198349cc55cSDimitry Andric   auto &Section = Sections[SectionID];
2199349cc55cSDimitry Andric   if (Offset < TLSSequenceOffset ||
2200349cc55cSDimitry Andric       (Offset - TLSSequenceOffset + NewCodeSequence.size()) >
2201349cc55cSDimitry Andric           Section.getSize()) {
2202349cc55cSDimitry Andric     report_fatal_error("unexpected end of section in TLS sequence");
2203349cc55cSDimitry Andric   }
2204349cc55cSDimitry Andric 
2205349cc55cSDimitry Andric   auto *TLSSequence = Section.getAddressWithOffset(Offset - TLSSequenceOffset);
2206349cc55cSDimitry Andric   if (ArrayRef<uint8_t>(TLSSequence, ExpectedCodeSequence.size()) !=
2207349cc55cSDimitry Andric       ExpectedCodeSequence) {
2208349cc55cSDimitry Andric     report_fatal_error(
2209349cc55cSDimitry Andric         "invalid TLS sequence for Global/Local Dynamic TLS Model");
2210349cc55cSDimitry Andric   }
2211349cc55cSDimitry Andric 
2212349cc55cSDimitry Andric   memcpy(TLSSequence, NewCodeSequence.data(), NewCodeSequence.size());
2213349cc55cSDimitry Andric }
2214349cc55cSDimitry Andric 
22150b57cec5SDimitry Andric size_t RuntimeDyldELF::getGOTEntrySize() {
22160b57cec5SDimitry Andric   // We don't use the GOT in all of these cases, but it's essentially free
22170b57cec5SDimitry Andric   // to put them all here.
22180b57cec5SDimitry Andric   size_t Result = 0;
22190b57cec5SDimitry Andric   switch (Arch) {
22200b57cec5SDimitry Andric   case Triple::x86_64:
22210b57cec5SDimitry Andric   case Triple::aarch64:
22220b57cec5SDimitry Andric   case Triple::aarch64_be:
22230b57cec5SDimitry Andric   case Triple::ppc64:
22240b57cec5SDimitry Andric   case Triple::ppc64le:
22250b57cec5SDimitry Andric   case Triple::systemz:
22260b57cec5SDimitry Andric     Result = sizeof(uint64_t);
22270b57cec5SDimitry Andric     break;
22280b57cec5SDimitry Andric   case Triple::x86:
22290b57cec5SDimitry Andric   case Triple::arm:
22300b57cec5SDimitry Andric   case Triple::thumb:
22310b57cec5SDimitry Andric     Result = sizeof(uint32_t);
22320b57cec5SDimitry Andric     break;
22330b57cec5SDimitry Andric   case Triple::mips:
22340b57cec5SDimitry Andric   case Triple::mipsel:
22350b57cec5SDimitry Andric   case Triple::mips64:
22360b57cec5SDimitry Andric   case Triple::mips64el:
22370b57cec5SDimitry Andric     if (IsMipsO32ABI || IsMipsN32ABI)
22380b57cec5SDimitry Andric       Result = sizeof(uint32_t);
22390b57cec5SDimitry Andric     else if (IsMipsN64ABI)
22400b57cec5SDimitry Andric       Result = sizeof(uint64_t);
22410b57cec5SDimitry Andric     else
22420b57cec5SDimitry Andric       llvm_unreachable("Mips ABI not handled");
22430b57cec5SDimitry Andric     break;
22440b57cec5SDimitry Andric   default:
22450b57cec5SDimitry Andric     llvm_unreachable("Unsupported CPU type!");
22460b57cec5SDimitry Andric   }
22470b57cec5SDimitry Andric   return Result;
22480b57cec5SDimitry Andric }
22490b57cec5SDimitry Andric 
22500b57cec5SDimitry Andric uint64_t RuntimeDyldELF::allocateGOTEntries(unsigned no) {
22510b57cec5SDimitry Andric   if (GOTSectionID == 0) {
22520b57cec5SDimitry Andric     GOTSectionID = Sections.size();
22530b57cec5SDimitry Andric     // Reserve a section id. We'll allocate the section later
22540b57cec5SDimitry Andric     // once we know the total size
22550b57cec5SDimitry Andric     Sections.push_back(SectionEntry(".got", nullptr, 0, 0, 0));
22560b57cec5SDimitry Andric   }
22570b57cec5SDimitry Andric   uint64_t StartOffset = CurrentGOTIndex * getGOTEntrySize();
22580b57cec5SDimitry Andric   CurrentGOTIndex += no;
22590b57cec5SDimitry Andric   return StartOffset;
22600b57cec5SDimitry Andric }
22610b57cec5SDimitry Andric 
22620b57cec5SDimitry Andric uint64_t RuntimeDyldELF::findOrAllocGOTEntry(const RelocationValueRef &Value,
22630b57cec5SDimitry Andric                                              unsigned GOTRelType) {
22640b57cec5SDimitry Andric   auto E = GOTOffsetMap.insert({Value, 0});
22650b57cec5SDimitry Andric   if (E.second) {
22660b57cec5SDimitry Andric     uint64_t GOTOffset = allocateGOTEntries(1);
22670b57cec5SDimitry Andric 
22680b57cec5SDimitry Andric     // Create relocation for newly created GOT entry
22690b57cec5SDimitry Andric     RelocationEntry RE =
22700b57cec5SDimitry Andric         computeGOTOffsetRE(GOTOffset, Value.Offset, GOTRelType);
22710b57cec5SDimitry Andric     if (Value.SymbolName)
22720b57cec5SDimitry Andric       addRelocationForSymbol(RE, Value.SymbolName);
22730b57cec5SDimitry Andric     else
22740b57cec5SDimitry Andric       addRelocationForSection(RE, Value.SectionID);
22750b57cec5SDimitry Andric 
22760b57cec5SDimitry Andric     E.first->second = GOTOffset;
22770b57cec5SDimitry Andric   }
22780b57cec5SDimitry Andric 
22790b57cec5SDimitry Andric   return E.first->second;
22800b57cec5SDimitry Andric }
22810b57cec5SDimitry Andric 
22820b57cec5SDimitry Andric void RuntimeDyldELF::resolveGOTOffsetRelocation(unsigned SectionID,
22830b57cec5SDimitry Andric                                                 uint64_t Offset,
22840b57cec5SDimitry Andric                                                 uint64_t GOTOffset,
22850b57cec5SDimitry Andric                                                 uint32_t Type) {
22860b57cec5SDimitry Andric   // Fill in the relative address of the GOT Entry into the stub
22870b57cec5SDimitry Andric   RelocationEntry GOTRE(SectionID, Offset, Type, GOTOffset);
22880b57cec5SDimitry Andric   addRelocationForSection(GOTRE, GOTSectionID);
22890b57cec5SDimitry Andric }
22900b57cec5SDimitry Andric 
22910b57cec5SDimitry Andric RelocationEntry RuntimeDyldELF::computeGOTOffsetRE(uint64_t GOTOffset,
22920b57cec5SDimitry Andric                                                    uint64_t SymbolOffset,
22930b57cec5SDimitry Andric                                                    uint32_t Type) {
22940b57cec5SDimitry Andric   return RelocationEntry(GOTSectionID, GOTOffset, Type, SymbolOffset);
22950b57cec5SDimitry Andric }
22960b57cec5SDimitry Andric 
2297bdd1243dSDimitry Andric void RuntimeDyldELF::processNewSymbol(const SymbolRef &ObjSymbol, SymbolTableEntry& Symbol) {
2298bdd1243dSDimitry Andric   // This should never return an error as `processNewSymbol` wouldn't have been
2299bdd1243dSDimitry Andric   // called if getFlags() returned an error before.
2300bdd1243dSDimitry Andric   auto ObjSymbolFlags = cantFail(ObjSymbol.getFlags());
2301bdd1243dSDimitry Andric 
2302bdd1243dSDimitry Andric   if (ObjSymbolFlags & SymbolRef::SF_Indirect) {
2303bdd1243dSDimitry Andric     if (IFuncStubSectionID == 0) {
2304bdd1243dSDimitry Andric       // Create a dummy section for the ifunc stubs. It will be actually
2305bdd1243dSDimitry Andric       // allocated in finalizeLoad() below.
2306bdd1243dSDimitry Andric       IFuncStubSectionID = Sections.size();
2307bdd1243dSDimitry Andric       Sections.push_back(
2308bdd1243dSDimitry Andric           SectionEntry(".text.__llvm_IFuncStubs", nullptr, 0, 0, 0));
2309bdd1243dSDimitry Andric       // First 64B are reserverd for the IFunc resolver
2310bdd1243dSDimitry Andric       IFuncStubOffset = 64;
2311bdd1243dSDimitry Andric     }
2312bdd1243dSDimitry Andric 
2313bdd1243dSDimitry Andric     IFuncStubs.push_back(IFuncStub{IFuncStubOffset, Symbol});
2314bdd1243dSDimitry Andric     // Modify the symbol so that it points to the ifunc stub instead of to the
2315bdd1243dSDimitry Andric     // resolver function.
2316bdd1243dSDimitry Andric     Symbol = SymbolTableEntry(IFuncStubSectionID, IFuncStubOffset,
2317bdd1243dSDimitry Andric                               Symbol.getFlags());
2318bdd1243dSDimitry Andric     IFuncStubOffset += getMaxIFuncStubSize();
2319bdd1243dSDimitry Andric   }
2320bdd1243dSDimitry Andric }
2321bdd1243dSDimitry Andric 
23220b57cec5SDimitry Andric Error RuntimeDyldELF::finalizeLoad(const ObjectFile &Obj,
23230b57cec5SDimitry Andric                                   ObjSectionToIDMap &SectionMap) {
23240b57cec5SDimitry Andric   if (IsMipsO32ABI)
23250b57cec5SDimitry Andric     if (!PendingRelocs.empty())
23260b57cec5SDimitry Andric       return make_error<RuntimeDyldError>("Can't find matching LO16 reloc");
23270b57cec5SDimitry Andric 
2328bdd1243dSDimitry Andric   // Create the IFunc stubs if necessary. This must be done before processing
2329bdd1243dSDimitry Andric   // the GOT entries, as the IFunc stubs may create some.
2330bdd1243dSDimitry Andric   if (IFuncStubSectionID != 0) {
2331bdd1243dSDimitry Andric     uint8_t *IFuncStubsAddr = MemMgr.allocateCodeSection(
2332bdd1243dSDimitry Andric         IFuncStubOffset, 1, IFuncStubSectionID, ".text.__llvm_IFuncStubs");
2333bdd1243dSDimitry Andric     if (!IFuncStubsAddr)
2334bdd1243dSDimitry Andric       return make_error<RuntimeDyldError>(
2335bdd1243dSDimitry Andric           "Unable to allocate memory for IFunc stubs!");
2336bdd1243dSDimitry Andric     Sections[IFuncStubSectionID] =
2337bdd1243dSDimitry Andric         SectionEntry(".text.__llvm_IFuncStubs", IFuncStubsAddr, IFuncStubOffset,
2338bdd1243dSDimitry Andric                      IFuncStubOffset, 0);
2339bdd1243dSDimitry Andric 
2340bdd1243dSDimitry Andric     createIFuncResolver(IFuncStubsAddr);
2341bdd1243dSDimitry Andric 
2342bdd1243dSDimitry Andric     LLVM_DEBUG(dbgs() << "Creating IFunc stubs SectionID: "
2343bdd1243dSDimitry Andric                       << IFuncStubSectionID << " Addr: "
2344bdd1243dSDimitry Andric                       << Sections[IFuncStubSectionID].getAddress() << '\n');
2345bdd1243dSDimitry Andric     for (auto &IFuncStub : IFuncStubs) {
2346bdd1243dSDimitry Andric       auto &Symbol = IFuncStub.OriginalSymbol;
2347bdd1243dSDimitry Andric       LLVM_DEBUG(dbgs() << "\tSectionID: " << Symbol.getSectionID()
2348bdd1243dSDimitry Andric                         << " Offset: " << format("%p", Symbol.getOffset())
2349bdd1243dSDimitry Andric                         << " IFuncStubOffset: "
2350bdd1243dSDimitry Andric                         << format("%p\n", IFuncStub.StubOffset));
2351bdd1243dSDimitry Andric       createIFuncStub(IFuncStubSectionID, 0, IFuncStub.StubOffset,
2352bdd1243dSDimitry Andric                       Symbol.getSectionID(), Symbol.getOffset());
2353bdd1243dSDimitry Andric     }
2354bdd1243dSDimitry Andric 
2355bdd1243dSDimitry Andric     IFuncStubSectionID = 0;
2356bdd1243dSDimitry Andric     IFuncStubOffset = 0;
2357bdd1243dSDimitry Andric     IFuncStubs.clear();
2358bdd1243dSDimitry Andric   }
2359bdd1243dSDimitry Andric 
23600b57cec5SDimitry Andric   // If necessary, allocate the global offset table
23610b57cec5SDimitry Andric   if (GOTSectionID != 0) {
23620b57cec5SDimitry Andric     // Allocate memory for the section
23630b57cec5SDimitry Andric     size_t TotalSize = CurrentGOTIndex * getGOTEntrySize();
23640b57cec5SDimitry Andric     uint8_t *Addr = MemMgr.allocateDataSection(TotalSize, getGOTEntrySize(),
23650b57cec5SDimitry Andric                                                GOTSectionID, ".got", false);
23660b57cec5SDimitry Andric     if (!Addr)
23670b57cec5SDimitry Andric       return make_error<RuntimeDyldError>("Unable to allocate memory for GOT!");
23680b57cec5SDimitry Andric 
23690b57cec5SDimitry Andric     Sections[GOTSectionID] =
23700b57cec5SDimitry Andric         SectionEntry(".got", Addr, TotalSize, TotalSize, 0);
23710b57cec5SDimitry Andric 
23720b57cec5SDimitry Andric     // For now, initialize all GOT entries to zero.  We'll fill them in as
23730b57cec5SDimitry Andric     // needed when GOT-based relocations are applied.
23740b57cec5SDimitry Andric     memset(Addr, 0, TotalSize);
23750b57cec5SDimitry Andric     if (IsMipsN32ABI || IsMipsN64ABI) {
23760b57cec5SDimitry Andric       // To correctly resolve Mips GOT relocations, we need a mapping from
23770b57cec5SDimitry Andric       // object's sections to GOTs.
23780b57cec5SDimitry Andric       for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
23790b57cec5SDimitry Andric            SI != SE; ++SI) {
23800b57cec5SDimitry Andric         if (SI->relocation_begin() != SI->relocation_end()) {
23818bcb0991SDimitry Andric           Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection();
23828bcb0991SDimitry Andric           if (!RelSecOrErr)
23838bcb0991SDimitry Andric             return make_error<RuntimeDyldError>(
23848bcb0991SDimitry Andric                 toString(RelSecOrErr.takeError()));
23858bcb0991SDimitry Andric 
23868bcb0991SDimitry Andric           section_iterator RelocatedSection = *RelSecOrErr;
23870b57cec5SDimitry Andric           ObjSectionToIDMap::iterator i = SectionMap.find(*RelocatedSection);
23880b57cec5SDimitry Andric           assert(i != SectionMap.end());
23890b57cec5SDimitry Andric           SectionToGOTMap[i->second] = GOTSectionID;
23900b57cec5SDimitry Andric         }
23910b57cec5SDimitry Andric       }
23920b57cec5SDimitry Andric       GOTSymbolOffsets.clear();
23930b57cec5SDimitry Andric     }
23940b57cec5SDimitry Andric   }
23950b57cec5SDimitry Andric 
23960b57cec5SDimitry Andric   // Look for and record the EH frame section.
23970b57cec5SDimitry Andric   ObjSectionToIDMap::iterator i, e;
23980b57cec5SDimitry Andric   for (i = SectionMap.begin(), e = SectionMap.end(); i != e; ++i) {
23990b57cec5SDimitry Andric     const SectionRef &Section = i->first;
24008bcb0991SDimitry Andric 
24010b57cec5SDimitry Andric     StringRef Name;
24028bcb0991SDimitry Andric     Expected<StringRef> NameOrErr = Section.getName();
24038bcb0991SDimitry Andric     if (NameOrErr)
24048bcb0991SDimitry Andric       Name = *NameOrErr;
24058bcb0991SDimitry Andric     else
24068bcb0991SDimitry Andric       consumeError(NameOrErr.takeError());
24078bcb0991SDimitry Andric 
24080b57cec5SDimitry Andric     if (Name == ".eh_frame") {
24090b57cec5SDimitry Andric       UnregisteredEHFrameSections.push_back(i->second);
24100b57cec5SDimitry Andric       break;
24110b57cec5SDimitry Andric     }
24120b57cec5SDimitry Andric   }
24130b57cec5SDimitry Andric 
241406c3fb27SDimitry Andric   GOTOffsetMap.clear();
24150b57cec5SDimitry Andric   GOTSectionID = 0;
24160b57cec5SDimitry Andric   CurrentGOTIndex = 0;
24170b57cec5SDimitry Andric 
24180b57cec5SDimitry Andric   return Error::success();
24190b57cec5SDimitry Andric }
24200b57cec5SDimitry Andric 
24210b57cec5SDimitry Andric bool RuntimeDyldELF::isCompatibleFile(const object::ObjectFile &Obj) const {
24220b57cec5SDimitry Andric   return Obj.isELF();
24230b57cec5SDimitry Andric }
24240b57cec5SDimitry Andric 
2425bdd1243dSDimitry Andric void RuntimeDyldELF::createIFuncResolver(uint8_t *Addr) const {
2426bdd1243dSDimitry Andric   if (Arch == Triple::x86_64) {
2427bdd1243dSDimitry Andric     // The adddres of the GOT1 entry is in %r11, the GOT2 entry is in %r11+8
2428bdd1243dSDimitry Andric     // (see createIFuncStub() for details)
2429bdd1243dSDimitry Andric     // The following code first saves all registers that contain the original
2430bdd1243dSDimitry Andric     // function arguments as those registers are not saved by the resolver
2431bdd1243dSDimitry Andric     // function. %r11 is saved as well so that the GOT2 entry can be updated
2432bdd1243dSDimitry Andric     // afterwards. Then it calls the actual IFunc resolver function whose
2433bdd1243dSDimitry Andric     // address is stored in GOT2. After the resolver function returns, all
2434bdd1243dSDimitry Andric     // saved registers are restored and the return value is written to GOT1.
2435bdd1243dSDimitry Andric     // Finally, jump to the now resolved function.
2436bdd1243dSDimitry Andric     // clang-format off
2437bdd1243dSDimitry Andric     const uint8_t StubCode[] = {
2438bdd1243dSDimitry Andric         0x57,                   // push %rdi
2439bdd1243dSDimitry Andric         0x56,                   // push %rsi
2440bdd1243dSDimitry Andric         0x52,                   // push %rdx
2441bdd1243dSDimitry Andric         0x51,                   // push %rcx
2442bdd1243dSDimitry Andric         0x41, 0x50,             // push %r8
2443bdd1243dSDimitry Andric         0x41, 0x51,             // push %r9
2444bdd1243dSDimitry Andric         0x41, 0x53,             // push %r11
2445bdd1243dSDimitry Andric         0x41, 0xff, 0x53, 0x08, // call *0x8(%r11)
2446bdd1243dSDimitry Andric         0x41, 0x5b,             // pop %r11
2447bdd1243dSDimitry Andric         0x41, 0x59,             // pop %r9
2448bdd1243dSDimitry Andric         0x41, 0x58,             // pop %r8
2449bdd1243dSDimitry Andric         0x59,                   // pop %rcx
2450bdd1243dSDimitry Andric         0x5a,                   // pop %rdx
2451bdd1243dSDimitry Andric         0x5e,                   // pop %rsi
2452bdd1243dSDimitry Andric         0x5f,                   // pop %rdi
2453bdd1243dSDimitry Andric         0x49, 0x89, 0x03,       // mov %rax,(%r11)
2454bdd1243dSDimitry Andric         0xff, 0xe0              // jmp *%rax
2455bdd1243dSDimitry Andric     };
2456bdd1243dSDimitry Andric     // clang-format on
2457bdd1243dSDimitry Andric     static_assert(sizeof(StubCode) <= 64,
2458bdd1243dSDimitry Andric                   "maximum size of the IFunc resolver is 64B");
2459bdd1243dSDimitry Andric     memcpy(Addr, StubCode, sizeof(StubCode));
2460bdd1243dSDimitry Andric   } else {
2461bdd1243dSDimitry Andric     report_fatal_error(
2462bdd1243dSDimitry Andric         "IFunc resolver is not supported for target architecture");
2463bdd1243dSDimitry Andric   }
2464bdd1243dSDimitry Andric }
2465bdd1243dSDimitry Andric 
2466bdd1243dSDimitry Andric void RuntimeDyldELF::createIFuncStub(unsigned IFuncStubSectionID,
2467bdd1243dSDimitry Andric                                      uint64_t IFuncResolverOffset,
2468bdd1243dSDimitry Andric                                      uint64_t IFuncStubOffset,
2469bdd1243dSDimitry Andric                                      unsigned IFuncSectionID,
2470bdd1243dSDimitry Andric                                      uint64_t IFuncOffset) {
2471bdd1243dSDimitry Andric   auto &IFuncStubSection = Sections[IFuncStubSectionID];
2472bdd1243dSDimitry Andric   auto *Addr = IFuncStubSection.getAddressWithOffset(IFuncStubOffset);
2473bdd1243dSDimitry Andric 
2474bdd1243dSDimitry Andric   if (Arch == Triple::x86_64) {
2475bdd1243dSDimitry Andric     // The first instruction loads a PC-relative address into %r11 which is a
2476bdd1243dSDimitry Andric     // GOT entry for this stub. This initially contains the address to the
2477bdd1243dSDimitry Andric     // IFunc resolver. We can use %r11 here as it's caller saved but not used
2478bdd1243dSDimitry Andric     // to pass any arguments. In fact, x86_64 ABI even suggests using %r11 for
2479bdd1243dSDimitry Andric     // code in the PLT. The IFunc resolver will use %r11 to update the GOT
2480bdd1243dSDimitry Andric     // entry.
2481bdd1243dSDimitry Andric     //
2482bdd1243dSDimitry Andric     // The next instruction just jumps to the address contained in the GOT
2483bdd1243dSDimitry Andric     // entry. As mentioned above, we do this two-step jump by first setting
2484bdd1243dSDimitry Andric     // %r11 so that the IFunc resolver has access to it.
2485bdd1243dSDimitry Andric     //
2486bdd1243dSDimitry Andric     // The IFunc resolver of course also needs to know the actual address of
2487bdd1243dSDimitry Andric     // the actual IFunc resolver function. This will be stored in a GOT entry
2488bdd1243dSDimitry Andric     // right next to the first one for this stub. So, the IFunc resolver will
2489bdd1243dSDimitry Andric     // be able to call it with %r11+8.
2490bdd1243dSDimitry Andric     //
2491bdd1243dSDimitry Andric     // In total, two adjacent GOT entries (+relocation) and one additional
2492bdd1243dSDimitry Andric     // relocation are required:
2493bdd1243dSDimitry Andric     // GOT1: Address of the IFunc resolver.
2494bdd1243dSDimitry Andric     // GOT2: Address of the IFunc resolver function.
2495bdd1243dSDimitry Andric     // IFuncStubOffset+3: 32-bit PC-relative address of GOT1.
2496bdd1243dSDimitry Andric     uint64_t GOT1 = allocateGOTEntries(2);
2497bdd1243dSDimitry Andric     uint64_t GOT2 = GOT1 + getGOTEntrySize();
2498bdd1243dSDimitry Andric 
2499bdd1243dSDimitry Andric     RelocationEntry RE1(GOTSectionID, GOT1, ELF::R_X86_64_64,
2500bdd1243dSDimitry Andric                         IFuncResolverOffset, {});
2501bdd1243dSDimitry Andric     addRelocationForSection(RE1, IFuncStubSectionID);
2502bdd1243dSDimitry Andric     RelocationEntry RE2(GOTSectionID, GOT2, ELF::R_X86_64_64, IFuncOffset, {});
2503bdd1243dSDimitry Andric     addRelocationForSection(RE2, IFuncSectionID);
2504bdd1243dSDimitry Andric 
2505bdd1243dSDimitry Andric     const uint8_t StubCode[] = {
2506bdd1243dSDimitry Andric         0x4c, 0x8d, 0x1d, 0x00, 0x00, 0x00, 0x00, // leaq 0x0(%rip),%r11
2507bdd1243dSDimitry Andric         0x41, 0xff, 0x23                          // jmpq *(%r11)
2508bdd1243dSDimitry Andric     };
2509bdd1243dSDimitry Andric     assert(sizeof(StubCode) <= getMaxIFuncStubSize() &&
2510bdd1243dSDimitry Andric            "IFunc stub size must not exceed getMaxIFuncStubSize()");
2511bdd1243dSDimitry Andric     memcpy(Addr, StubCode, sizeof(StubCode));
2512bdd1243dSDimitry Andric 
2513bdd1243dSDimitry Andric     // The PC-relative value starts 4 bytes from the end of the leaq
2514bdd1243dSDimitry Andric     // instruction, so the addend is -4.
2515bdd1243dSDimitry Andric     resolveGOTOffsetRelocation(IFuncStubSectionID, IFuncStubOffset + 3,
2516bdd1243dSDimitry Andric                                GOT1 - 4, ELF::R_X86_64_PC32);
2517bdd1243dSDimitry Andric   } else {
2518bdd1243dSDimitry Andric     report_fatal_error("IFunc stub is not supported for target architecture");
2519bdd1243dSDimitry Andric   }
2520bdd1243dSDimitry Andric }
2521bdd1243dSDimitry Andric 
2522bdd1243dSDimitry Andric unsigned RuntimeDyldELF::getMaxIFuncStubSize() const {
2523bdd1243dSDimitry Andric   if (Arch == Triple::x86_64) {
2524bdd1243dSDimitry Andric     return 10;
2525bdd1243dSDimitry Andric   }
2526bdd1243dSDimitry Andric   return 0;
2527bdd1243dSDimitry Andric }
2528bdd1243dSDimitry Andric 
25290b57cec5SDimitry Andric bool RuntimeDyldELF::relocationNeedsGot(const RelocationRef &R) const {
25300b57cec5SDimitry Andric   unsigned RelTy = R.getType();
25310b57cec5SDimitry Andric   if (Arch == Triple::aarch64 || Arch == Triple::aarch64_be)
25320b57cec5SDimitry Andric     return RelTy == ELF::R_AARCH64_ADR_GOT_PAGE ||
25330b57cec5SDimitry Andric            RelTy == ELF::R_AARCH64_LD64_GOT_LO12_NC;
25340b57cec5SDimitry Andric 
25350b57cec5SDimitry Andric   if (Arch == Triple::x86_64)
25360b57cec5SDimitry Andric     return RelTy == ELF::R_X86_64_GOTPCREL ||
25370b57cec5SDimitry Andric            RelTy == ELF::R_X86_64_GOTPCRELX ||
25380b57cec5SDimitry Andric            RelTy == ELF::R_X86_64_GOT64 ||
25390b57cec5SDimitry Andric            RelTy == ELF::R_X86_64_REX_GOTPCRELX;
25400b57cec5SDimitry Andric   return false;
25410b57cec5SDimitry Andric }
25420b57cec5SDimitry Andric 
25430b57cec5SDimitry Andric bool RuntimeDyldELF::relocationNeedsStub(const RelocationRef &R) const {
25440b57cec5SDimitry Andric   if (Arch != Triple::x86_64)
25450b57cec5SDimitry Andric     return true;  // Conservative answer
25460b57cec5SDimitry Andric 
25470b57cec5SDimitry Andric   switch (R.getType()) {
25480b57cec5SDimitry Andric   default:
25490b57cec5SDimitry Andric     return true;  // Conservative answer
25500b57cec5SDimitry Andric 
25510b57cec5SDimitry Andric 
25520b57cec5SDimitry Andric   case ELF::R_X86_64_GOTPCREL:
25530b57cec5SDimitry Andric   case ELF::R_X86_64_GOTPCRELX:
25540b57cec5SDimitry Andric   case ELF::R_X86_64_REX_GOTPCRELX:
25550b57cec5SDimitry Andric   case ELF::R_X86_64_GOTPC64:
25560b57cec5SDimitry Andric   case ELF::R_X86_64_GOT64:
25570b57cec5SDimitry Andric   case ELF::R_X86_64_GOTOFF64:
25580b57cec5SDimitry Andric   case ELF::R_X86_64_PC32:
25590b57cec5SDimitry Andric   case ELF::R_X86_64_PC64:
25600b57cec5SDimitry Andric   case ELF::R_X86_64_64:
25610b57cec5SDimitry Andric     // We know that these reloation types won't need a stub function.  This list
25620b57cec5SDimitry Andric     // can be extended as needed.
25630b57cec5SDimitry Andric     return false;
25640b57cec5SDimitry Andric   }
25650b57cec5SDimitry Andric }
25660b57cec5SDimitry Andric 
25670b57cec5SDimitry Andric } // namespace llvm
2568