summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/SystemZ
diff options
context:
space:
mode:
authorUlrich Weigand <ulrich.weigand@de.ibm.com>2015-12-16 18:12:40 +0000
committerUlrich Weigand <ulrich.weigand@de.ibm.com>2015-12-16 18:12:40 +0000
commit88a7a2eac742eb7829ab89accdc22356799656d7 (patch)
tree71e0b324f3259afbd46775a3f08c95fc5dd8e3e7 /llvm/lib/Target/SystemZ
parent47f3649374aeec6c029c45cd3ab44b47d7e7ea08 (diff)
downloadbcm5719-llvm-88a7a2eac742eb7829ab89accdc22356799656d7.tar.gz
bcm5719-llvm-88a7a2eac742eb7829ab89accdc22356799656d7.zip
[SystemZ] Sort relocs to avoid code corruption by linker optimization
The SystemZ linkers provide an optimization to transform a general- or local-dynamic TLS sequence into an initial-exec sequence if possible. Do do that, the compiler generates a function call to __tls_get_offset, which is a brasl instruction annotated with *two* relocations: - a R_390_PLT32DBL to install __tls_get_offset as branch target - a R_390_TLS_GDCALL / R_390_TLS_LDCALL to inform the linker that the TLS optimization should be performed if possible If the optimization is performed, the brasl is replaced by an ld load instruction. However, *both* relocs are processed independently by the linker. Therefore it is crucial that the R_390_PLT32DBL is processed *first* (installing the branch target for the brasl) and the R_390_TLS_GDCALL is processed *second* (replacing the whole brasl with an ld). If the relocs are swapped, the linker will first replace the brasl with an ld, and *then* install the __tls_get_offset branch target offset. Since ld has a different layout than brasl, this may even result in a completely different (or invalid) instruction; in any case, the resulting code is corrupted. Unfortunately, the way the MC common code sorts relocations causes these two to *always* end up the wrong way around, resulting in wrong code generation by the linker and crashes. This patch overrides the sortRelocs routine to detect this particular pair of relocs and enforce the required order. llvm-svn: 255787
Diffstat (limited to 'llvm/lib/Target/SystemZ')
-rw-r--r--llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
index ee1af023769..76a00fccbef 100644
--- a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
+++ b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
@@ -26,6 +26,8 @@ protected:
// Override MCELFObjectTargetWriter.
unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
bool IsPCRel) const override;
+ void sortRelocs(const MCAssembler &Asm,
+ std::vector<ELFRelocationEntry> &Relocs) override;
};
} // end anonymous namespace
@@ -152,6 +154,23 @@ unsigned SystemZObjectWriter::GetRelocType(const MCValue &Target,
}
}
+void SystemZObjectWriter::sortRelocs(const MCAssembler &Asm,
+ std::vector<ELFRelocationEntry> &Relocs) {
+ // The default function sorts entries by Offset in descending order.
+ MCELFObjectTargetWriter::sortRelocs(Asm, Relocs);
+
+ // This is OK for SystemZ, except for R_390_TLS_GDCALL/LDCALL relocs.
+ // There is typically another reloc, a R_390_PLT32DBL, on the same
+ // instruction. This other reloc must come *before* the GDCALL reloc,
+ // or else the TLS linker optimization may generate incorrect code.
+ for (unsigned i = 0, e = Relocs.size(); i + 1 < e; ++i) {
+ if ((Relocs[i + 1].Type == ELF::R_390_TLS_GDCALL ||
+ Relocs[i + 1].Type == ELF::R_390_TLS_LDCALL) &&
+ Relocs[i].Offset == Relocs[i + 1].Offset + 2)
+ std::swap(Relocs[i], Relocs[i + 1]);
+ }
+}
+
MCObjectWriter *llvm::createSystemZObjectWriter(raw_pwrite_stream &OS,
uint8_t OSABI) {
MCELFObjectTargetWriter *MOTW = new SystemZObjectWriter(OSABI);
OpenPOWER on IntegriCloud