diff options
author | Renlin Li <renlin.li@arm.com> | 2018-04-27 10:48:18 +0100 |
---|---|---|
committer | Renlin Li <renlin.li@arm.com> | 2018-06-20 14:47:37 +0100 |
commit | b939d8a0dedbe0f0667500e1741e25baf03fe64c (patch) | |
tree | 4aecdd23008a0e90277150b3aca6c59454d755cb /ld | |
parent | fc6141f097056f830a412afebed8d81a9d72b696 (diff) | |
download | gdb-b939d8a0dedbe0f0667500e1741e25baf03fe64c.zip gdb-b939d8a0dedbe0f0667500e1741e25baf03fe64c.tar.gz gdb-b939d8a0dedbe0f0667500e1741e25baf03fe64c.tar.bz2 |
[BFD][AARCH64]Properly truncate no overflow checking relocation value for load/store immediate.
bfd/ChangeLog:
2018-06-20 Renlin Li <renlin.li@arm.com>
* elfxx-aarch64.c (_bfd_aarch64_elf_resolve_relocation): Use PG_OFFSET
to resolve BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC,
BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC,
BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC,
BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC,
BFD_RELOC_AARCH64_TLSLE_LDST16_TPREL_LO12_NC,
BFD_RELOC_AARCH64_TLSLE_LDST32_TPREL_LO12_NC,
BFD_RELOC_AARCH64_TLSLE_LDST64_TPREL_LO12_NC,
BFD_RELOC_AARCH64_TLSLE_LDST8_TPREL_LO12_NC.
ld/ChangeLog:
2018-06-20 Renlin Li <renlin.li@arm.com>
* testsuite/ld-aarch64/emit-relocs-115.d: Update test with new value.
* testsuite/ld-aarch64/emit-relocs-534.d: Likewise.
* testsuite/ld-aarch64/emit-relocs-555.d: Likewise.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-aarch64/emit-relocs-115.d | 2 | ||||
-rw-r--r-- | ld/testsuite/ld-aarch64/emit-relocs-534.d | 2 | ||||
-rw-r--r-- | ld/testsuite/ld-aarch64/emit-relocs-555.d | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 235fa51..4e9cc2a 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2018-06-20 Renlin Li <renlin.li@arm.com> + + * testsuite/ld-aarch64/emit-relocs-115.d: Update test with new value. + * testsuite/ld-aarch64/emit-relocs-534.d: Likewise. + * testsuite/ld-aarch64/emit-relocs-555.d: Likewise. + 2018-06-19 Maciej W. Rozycki <macro@mips.com> PR ld/22966 diff --git a/ld/testsuite/ld-aarch64/emit-relocs-115.d b/ld/testsuite/ld-aarch64/emit-relocs-115.d index f436d32..95a6e31 100644 --- a/ld/testsuite/ld-aarch64/emit-relocs-115.d +++ b/ld/testsuite/ld-aarch64/emit-relocs-115.d @@ -6,5 +6,5 @@ 00010000 <.text>: 10000: 798019d6 ldrsh x22, \[x14, #12\] 10000: R_AARCH64_P32_TLSLE_LDST16_TPREL_LO12_NC v2 - 10004: 79a72a28 ldrsh x8, \[x17, #5012\] + 10004: 79872a28 ldrsh x8, \[x17, #916\] 10004: R_AARCH64_P32_TLSLE_LDST16_TPREL_LO12_NC v3 diff --git a/ld/testsuite/ld-aarch64/emit-relocs-534.d b/ld/testsuite/ld-aarch64/emit-relocs-534.d index 121fdc4..fe59b23 100644 --- a/ld/testsuite/ld-aarch64/emit-relocs-534.d +++ b/ld/testsuite/ld-aarch64/emit-relocs-534.d @@ -5,5 +5,5 @@ 0000000000010000 <.text>: 10000: 798009d6 ldrsh x22, \[x14, #4\] 10000: R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC v2 - 10004: 79a71a28 ldrsh x8, \[x17, #5004\] + 10004: 79871a28 ldrsh x8, \[x17, #908\] 10004: R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC v3 diff --git a/ld/testsuite/ld-aarch64/emit-relocs-555.d b/ld/testsuite/ld-aarch64/emit-relocs-555.d index e866b60..1e33998 100644 --- a/ld/testsuite/ld-aarch64/emit-relocs-555.d +++ b/ld/testsuite/ld-aarch64/emit-relocs-555.d @@ -5,5 +5,5 @@ 0000000000010000 <.text>: 10000: 798029d6 ldrsh x22, \[x14, #20\] 10000: R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC v2 - 10004: 79a73a28 ldrsh x8, \[x17, #5020\] + 10004: 79873a28 ldrsh x8, \[x17, #924\] 10004: R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC v3 |