diff options
Diffstat (limited to 'lld/ELF/Arch/PPC64.cpp')
-rw-r--r-- | lld/ELF/Arch/PPC64.cpp | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/lld/ELF/Arch/PPC64.cpp b/lld/ELF/Arch/PPC64.cpp index 550c091..6528cc5 100644 --- a/lld/ELF/Arch/PPC64.cpp +++ b/lld/ELF/Arch/PPC64.cpp @@ -8,6 +8,7 @@ #include "InputFiles.h" #include "OutputSections.h" +#include "RelocScan.h" #include "SymbolTable.h" #include "Symbols.h" #include "SyntheticSections.h" @@ -178,6 +179,10 @@ public: uint64_t pltEntryAddr) const override; void writeIplt(uint8_t *buf, const Symbol &sym, uint64_t pltEntryAddr) const override; + template <class ELFT, class RelTy> + void scanSectionImpl(InputSectionBase &, Relocs<RelTy>); + template <class ELFT> void scanSection1(InputSectionBase &); + void scanSection(InputSectionBase &) override; void relocate(uint8_t *loc, const Relocation &rel, uint64_t val) const override; void writeGotHeader(uint8_t *buf) const override; @@ -1257,6 +1262,132 @@ static bool isTocOptType(RelType type) { } } +// R_PPC64_TLSGD/R_PPC64_TLSLD is required to mark `bl __tls_get_addr` for +// General Dynamic/Local Dynamic code sequences. If a GD/LD GOT relocation is +// found but no R_PPC64_TLSGD/R_PPC64_TLSLD is seen, we assume that the +// instructions are generated by very old IBM XL compilers. Work around the +// issue by disabling GD/LD to IE/LE relaxation. +template <class RelTy> +static void checkPPC64TLSRelax(InputSectionBase &sec, Relocs<RelTy> rels) { + // Skip if sec is synthetic (sec.file is null) or if sec has been marked. + if (!sec.file || sec.file->ppc64DisableTLSRelax) + return; + bool hasGDLD = false; + for (const RelTy &rel : rels) { + RelType type = rel.getType(false); + switch (type) { + case R_PPC64_TLSGD: + case R_PPC64_TLSLD: + return; // Found a marker + case R_PPC64_GOT_TLSGD16: + case R_PPC64_GOT_TLSGD16_HA: + case R_PPC64_GOT_TLSGD16_HI: + case R_PPC64_GOT_TLSGD16_LO: + case R_PPC64_GOT_TLSLD16: + case R_PPC64_GOT_TLSLD16_HA: + case R_PPC64_GOT_TLSLD16_HI: + case R_PPC64_GOT_TLSLD16_LO: + hasGDLD = true; + break; + } + } + if (hasGDLD) { + sec.file->ppc64DisableTLSRelax = true; + Warn(sec.file->ctx) + << sec.file + << ": disable TLS relaxation due to R_PPC64_GOT_TLS* relocations " + "without " + "R_PPC64_TLSGD/R_PPC64_TLSLD relocations"; + } +} + +template <class ELFT, class RelTy> +void PPC64::scanSectionImpl(InputSectionBase &sec, Relocs<RelTy> rels) { + RelocScan rs(ctx, &sec); + sec.relocations.reserve(rels.size()); + checkPPC64TLSRelax<RelTy>(sec, rels); + for (auto it = rels.begin(); it != rels.end(); ++it) { + const RelTy &rel = *it; + uint64_t offset = rel.r_offset; + uint32_t symIdx = rel.getSymbol(false); + Symbol &sym = sec.getFile<ELFT>()->getSymbol(symIdx); + RelType type = rel.getType(false); + RelExpr expr = + ctx.target->getRelExpr(type, sym, sec.content().data() + offset); + if (expr == R_NONE) + continue; + if (sym.isUndefined() && symIdx != 0 && + rs.maybeReportUndefined(cast<Undefined>(sym), offset)) + continue; + + auto addend = getAddend<ELFT>(rel); + if (ctx.arg.isPic && type == R_PPC64_TOC) + addend += getPPC64TocBase(ctx); + + // We can separate the small code model relocations into 2 categories: + // 1) Those that access the compiler generated .toc sections. + // 2) Those that access the linker allocated got entries. + // lld allocates got entries to symbols on demand. Since we don't try to + // sort the got entries in any way, we don't have to track which objects + // have got-based small code model relocs. The .toc sections get placed + // after the end of the linker allocated .got section and we do sort those + // so sections addressed with small code model relocations come first. + if (type == R_PPC64_TOC16 || type == R_PPC64_TOC16_DS) + sec.file->ppc64SmallCodeModelTocRelocs = true; + + // Record the TOC entry (.toc + addend) as not relaxable. See the comment in + // PPC64::relocateAlloc(). + if (type == R_PPC64_TOC16_LO && sym.isSection() && isa<Defined>(sym) && + cast<Defined>(sym).section->name == ".toc") + ctx.ppc64noTocRelax.insert({&sym, addend}); + + if ((type == R_PPC64_TLSGD && expr == R_TLSDESC_CALL) || + (type == R_PPC64_TLSLD && expr == R_TLSLD_HINT)) { + auto it1 = it; + ++it1; + if (it1 == rels.end()) { + auto diag = Err(ctx); + diag << "R_PPC64_TLSGD/R_PPC64_TLSLD may not be the last " + "relocation"; + printLocation(diag, sec, sym, offset); + continue; + } + + // Offset the 4-byte aligned R_PPC64_TLSGD by one byte in the NOTOC + // case, so we can discern it later from the toc-case. + if (it1->getType(/*isMips64EL=*/false) == R_PPC64_REL24_NOTOC) + ++offset; + } + + if (oneof<R_GOTREL, RE_PPC64_TOCBASE, RE_PPC64_RELAX_TOC>(expr)) + ctx.in.got->hasGotOffRel.store(true, std::memory_order_relaxed); + + if (sym.isTls()) { + if (unsigned processed = + rs.handleTlsRelocation(expr, type, offset, sym, addend)) { + it += processed - 1; + continue; + } + } + rs.process(expr, type, offset, sym, addend); + } +} + +template <class ELFT> void PPC64::scanSection1(InputSectionBase &sec) { + auto relocs = sec.template relsOrRelas<ELFT>(); + if (relocs.areRelocsCrel()) + scanSectionImpl<ELFT>(sec, relocs.crels); + else + scanSectionImpl<ELFT>(sec, relocs.relas); +} + +void PPC64::scanSection(InputSectionBase &sec) { + if (ctx.arg.isLE) + scanSection1<ELF64LE>(sec); + else + scanSection1<ELF64BE>(sec); +} + void PPC64::relocate(uint8_t *loc, const Relocation &rel, uint64_t val) const { RelType type = rel.type; bool shouldTocOptimize = isTocOptType(type); |