This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch users/ARM/morello-binutils-gdb-master in repository binutils-gdb.
from bf5ddcecc07 Conditionally define user_morello_state and user_cap structs new 60d18fc3e29 Use htab->c64_rel more, do not use GOT_CAP new 9a68ca09b1e Emit CAPINIT relocations for dynamically linked PDE's new c0a10a86fd6 Account for weak undefined symbols in Morello new 604a5d22c90 Make emit-relocs-morello-6 work on different targets new d465be7beff Use global GOT type to determine GOT action new f0a8e7c6fed Neaten up a clause in final_link_relocate
The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: bfd/elfnn-aarch64.c | 316 ++++++++++++--------- ld/testsuite/ld-aarch64/aarch64-elf.exp | 35 +++ ld/testsuite/ld-aarch64/emit-relocs-morello-10.d | 12 + ld/testsuite/ld-aarch64/emit-relocs-morello-10.s | 21 ++ .../ld-aarch64/emit-relocs-morello-3-a64c.d | 7 +- ld/testsuite/ld-aarch64/emit-relocs-morello-3.d | 7 +- ld/testsuite/ld-aarch64/emit-relocs-morello-6.d | 82 +++--- ld/testsuite/ld-aarch64/emit-relocs-morello.d | 2 +- ld/testsuite/ld-aarch64/morello-capinit.d | 22 +- .../ld-aarch64/morello-dataptr-code-and-data.d | 35 +++ .../ld-aarch64/morello-dataptr-code-and-data.s | 16 ++ ld/testsuite/ld-aarch64/morello-dataptr-in-code.d | 31 ++ ld/testsuite/ld-aarch64/morello-dataptr-in-code.s | 13 + .../ld-aarch64/morello-dataptr-through-data-pie.d | 12 + .../ld-aarch64/morello-dataptr-through-data.d | 11 + .../ld-aarch64/morello-dataptr-through-data.s | 13 + .../ld-aarch64/morello-dynamic-relocs-lib.s | 6 + .../ld-aarch64/morello-funcptr-code-and-data.d | 26 ++ .../ld-aarch64/morello-funcptr-code-and-data.s | 21 ++ ld/testsuite/ld-aarch64/morello-funcptr-in-code.d | 21 ++ ld/testsuite/ld-aarch64/morello-funcptr-in-code.s | 13 + .../ld-aarch64/morello-funcptr-through-data-pie.d | 19 ++ .../ld-aarch64/morello-funcptr-through-data.d | 17 ++ .../ld-aarch64/morello-funcptr-through-data.s | 18 ++ .../ld-aarch64/morello-undefweak-relocs-PDE.d | 61 ++++ .../ld-aarch64/morello-undefweak-relocs-PIE.d | 61 ++++ .../morello-undefweak-relocs-no-dyn-linker.d | 50 ++++ .../morello-undefweak-relocs-static-relocs.d | 16 ++ .../ld-aarch64/morello-undefweak-relocs-static.d | 51 ++++ ld/testsuite/ld-aarch64/morello-undefweak-relocs.s | 21 ++ ld/testsuite/ld-aarch64/morello-weakdefinitions.s | 18 ++ 31 files changed, 867 insertions(+), 187 deletions(-) create mode 100644 ld/testsuite/ld-aarch64/emit-relocs-morello-10.d create mode 100644 ld/testsuite/ld-aarch64/emit-relocs-morello-10.s create mode 100644 ld/testsuite/ld-aarch64/morello-dataptr-code-and-data.d create mode 100644 ld/testsuite/ld-aarch64/morello-dataptr-code-and-data.s create mode 100644 ld/testsuite/ld-aarch64/morello-dataptr-in-code.d create mode 100644 ld/testsuite/ld-aarch64/morello-dataptr-in-code.s create mode 100644 ld/testsuite/ld-aarch64/morello-dataptr-through-data-pie.d create mode 100644 ld/testsuite/ld-aarch64/morello-dataptr-through-data.d create mode 100644 ld/testsuite/ld-aarch64/morello-dataptr-through-data.s create mode 100644 ld/testsuite/ld-aarch64/morello-funcptr-code-and-data.d create mode 100644 ld/testsuite/ld-aarch64/morello-funcptr-code-and-data.s create mode 100644 ld/testsuite/ld-aarch64/morello-funcptr-in-code.d create mode 100644 ld/testsuite/ld-aarch64/morello-funcptr-in-code.s create mode 100644 ld/testsuite/ld-aarch64/morello-funcptr-through-data-pie.d create mode 100644 ld/testsuite/ld-aarch64/morello-funcptr-through-data.d create mode 100644 ld/testsuite/ld-aarch64/morello-funcptr-through-data.s create mode 100644 ld/testsuite/ld-aarch64/morello-undefweak-relocs-PDE.d create mode 100644 ld/testsuite/ld-aarch64/morello-undefweak-relocs-PIE.d create mode 100644 ld/testsuite/ld-aarch64/morello-undefweak-relocs-no-dyn-linker.d create mode 100644 ld/testsuite/ld-aarch64/morello-undefweak-relocs-static-relocs.d create mode 100644 ld/testsuite/ld-aarch64/morello-undefweak-relocs-static.d create mode 100644 ld/testsuite/ld-aarch64/morello-undefweak-relocs.s create mode 100644 ld/testsuite/ld-aarch64/morello-weakdefinitions.s