1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/MC/SystemZ
Ulrich Weigand 1beb39086c [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
2015-12-16 18:12:40 +00:00
..
fixups.s [SystemZ] Sort relocs to avoid code corruption by linker optimization 2015-12-16 18:12:40 +00:00
insn-bad-z13.s [SystemZ] Add z13 vector facility and MC support 2015-05-05 19:23:40 +00:00
insn-bad-z196.s [SystemZ] Support transactional execution on zEC12 2015-04-01 12:51:43 +00:00
insn-bad-zEC12.s [SystemZ] Add z13 vector facility and MC support 2015-05-05 19:23:40 +00:00
insn-bad.s [SystemZ] Use POPCNT instruction on z196 2015-03-31 12:56:33 +00:00
insn-good-z13.s [SystemZ] testcase MC/SystemZ/insn-good-z13.s extended. 2015-10-12 10:13:57 +00:00
insn-good-z196.s [SystemZ] Use POPCNT instruction on z196 2015-03-31 12:56:33 +00:00
insn-good-zEC12.s [SystemZ] Support transactional execution on zEC12 2015-04-01 12:51:43 +00:00
insn-good.s [SystemZ] Add assembly instructions for obtaining clock values as well as CPU features 2015-10-01 14:43:48 +00:00
lit.local.cfg Re-enable UBSan tests for SystemZ: PR20980 was fixed. 2015-12-02 20:46:51 +00:00
regs-bad.s
regs-good.s
tokens.s [SystemZ] Add z13 vector facility and MC support 2015-05-05 19:23:40 +00:00