c5e3a3641e
For these three relocations, 17 bit signed value should be used, instead of 16 bit. The bitsize field is changed from 16 to 17, this field in aarch64 backend is used for overflow check only. bfd/ 2016-02-26 Renlin Li <renlin.li@arm.com> * elfnn-aarch64.c (elfNN_aarch64_howto_table): Fix signed overflow check for MOVW_SABS_G0, MOVW_SABS_G1, MOVW_SABS_G2. ld/ 2016-02-26 Renlin Li <renlin.li@arm.com> * testsuite/ld-aarch64/aarch64-elf.exp: Run new testcases. * testsuite/ld-aarch64/emit-relocs-270.d: Update to use new boundary. * testsuite/ld-aarch64/emit-relocs-271.d: Likewise. * testsuite/ld-aarch64/emit-relocs-272.d: Likewise. * testsuite/ld-aarch64/emit-relocs-270-overflow.d: New. * testsuite/ld-aarch64/emit-relocs-270-overflow.s: New. * testsuite/ld-aarch64/emit-relocs-271-overflow.d: New. * testsuite/ld-aarch64/emit-relocs-271-overflow.s: New. * testsuite/ld-aarch64/emit-relocs-272-overflow.d: New. * testsuite/ld-aarch64/emit-relocs-272-overflow.s: New.
294 lines
9.2 KiB
Text
294 lines
9.2 KiB
Text
# Expect script for various AARCH64 ELF tests.
|
|
# Copyright (C) 2009-2016 Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of the GNU Binutils.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
# MA 02110-1301, USA.
|
|
|
|
# Exclude non-aarch64-ELF targets.
|
|
if { ![is_elf_format] || ![istarget "aarch64*-*-*"] } {
|
|
return
|
|
}
|
|
|
|
# List contains test-items with 3 items followed by 2 lists:
|
|
# 0:name 1:ld early options 2:ld late options 3:assembler options
|
|
# 4:filenames of assembler files 5: action and options. 6: name of output file
|
|
|
|
# Actions:
|
|
# objdump: Apply objdump options on result. Compare with regex (last arg).
|
|
# nm: Apply nm options on result. Compare with regex (last arg).
|
|
# readelf: Apply readelf options on result. Compare with regex (last arg).
|
|
|
|
set aarch64elftests {
|
|
{"EH Frame merge" "-Ttext 0x8000" "" "" {eh-frame-bar.s eh-frame-foo.s}
|
|
{{objdump --dwarf=frames eh-frame.d}} "eh-frame"}
|
|
{"Erratum 835769 dump test"
|
|
"--fix-cortex-a53-835769" "" "" {erratum835769.s}
|
|
{{objdump -dr erratum835769.d}}
|
|
"erratum835769"}
|
|
{"Erratum 835769 dump test -shared"
|
|
"--fix-cortex-a53-835769 -shared" "" "" {erratum835769.s}
|
|
{{objdump -dr erratum835769.d}}
|
|
"erratum835769"}
|
|
}
|
|
|
|
proc aarch64_choose_ilp32_emul {} {
|
|
if [istarget aarch64-*-linux*] then {
|
|
return "aarch64linux32"
|
|
} elseif [istarget aarch64-*-elf] {
|
|
return "aarch64elf32"
|
|
} elseif [istarget aarch64_be-*-linux*] {
|
|
return "aarch64linux32b"
|
|
} elseif [istarget aarch64_be-*-elf] {
|
|
return "aarch64elf32b"
|
|
} else {
|
|
perror "Unknown target triple."
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
run_ld_link_tests $aarch64elftests
|
|
run_dump_test "erratum843419"
|
|
|
|
# Relocation Tests
|
|
run_dump_test "weak-undefined"
|
|
run_dump_test "emit-relocs-28"
|
|
run_dump_test "emit-relocs-86"
|
|
run_dump_test "emit-relocs-86-overflow"
|
|
run_dump_test "emit-relocs-87"
|
|
run_dump_test "emit-relocs-88"
|
|
run_dump_test "emit-relocs-88-overflow"
|
|
run_dump_test "emit-relocs-89"
|
|
run_dump_test "emit-relocs-90"
|
|
run_dump_test "emit-relocs-90-overflow"
|
|
run_dump_test "emit-relocs-92"
|
|
run_dump_test "emit-relocs-257"
|
|
run_dump_test "emit-relocs-257-be"
|
|
# 258 is tested in 257
|
|
# 259 is tested in 257
|
|
run_dump_test "emit-relocs-260"
|
|
run_dump_test "emit-relocs-260-be"
|
|
# 261 is tested by 260
|
|
run_dump_test "emit-relocs-262"
|
|
run_dump_test "emit-relocs-263"
|
|
run_dump_test "emit-relocs-264"
|
|
run_dump_test "emit-relocs-264-bad"
|
|
run_dump_test "emit-relocs-265"
|
|
run_dump_test "emit-relocs-266"
|
|
run_dump_test "emit-relocs-266-bad"
|
|
run_dump_test "emit-relocs-267"
|
|
run_dump_test "emit-relocs-268"
|
|
run_dump_test "emit-relocs-268-bad"
|
|
run_dump_test "emit-relocs-269"
|
|
run_dump_test "emit-relocs-269-bad"
|
|
run_dump_test "emit-relocs-270"
|
|
run_dump_test "emit-relocs-270-bad"
|
|
run_dump_test "emit-relocs-270-overflow"
|
|
run_dump_test "emit-relocs-271"
|
|
run_dump_test "emit-relocs-271-overflow"
|
|
run_dump_test "emit-relocs-272"
|
|
run_dump_test "emit-relocs-272-overflow"
|
|
run_dump_test "emit-relocs-273"
|
|
run_dump_test "emit-relocs-274"
|
|
run_dump_test "emit-relocs-275"
|
|
run_dump_test "emit-relocs-276"
|
|
run_dump_test "emit-relocs-277"
|
|
run_dump_test "emit-relocs-278"
|
|
run_dump_test "emit-relocs-279"
|
|
run_dump_test "emit-relocs-279-bad"
|
|
run_dump_test "emit-relocs-280"
|
|
# 281 is unused
|
|
run_dump_test "emit-relocs-282"
|
|
run_dump_test "emit-relocs-283"
|
|
run_dump_test "emit-relocs-284"
|
|
run_dump_test "emit-relocs-285"
|
|
run_dump_test "emit-relocs-286"
|
|
run_dump_test "emit-relocs-286-bad"
|
|
# 287-298 are not done yet
|
|
run_dump_test "emit-relocs-299"
|
|
# 300 is not done yet
|
|
run_dump_test "emit-relocs-301"
|
|
run_dump_test "emit-relocs-301-be"
|
|
run_dump_test "emit-relocs-302"
|
|
run_dump_test "emit-relocs-302-be"
|
|
# 303-308 are not done yet
|
|
run_dump_test "emit-relocs-309-up"
|
|
run_dump_test "emit-relocs-309-low"
|
|
run_dump_test "emit-relocs-309-up-bad"
|
|
run_dump_test "emit-relocs-309-low-bad"
|
|
run_dump_test "emit-relocs-310"
|
|
run_dump_test "emit-relocs-310-be"
|
|
run_dump_test "emit-relocs-311"
|
|
run_dump_test "emit-relocs-312"
|
|
run_dump_test "emit-relocs-313"
|
|
run_dump_test "emit-relocs-515"
|
|
run_dump_test "emit-relocs-515-be"
|
|
run_dump_test "emit-relocs-516"
|
|
run_dump_test "emit-relocs-516-be"
|
|
run_dump_test "emit-relocs-523"
|
|
run_dump_test "emit-relocs-524"
|
|
run_dump_test "emit-relocs-525"
|
|
run_dump_test "emit-relocs-526"
|
|
run_dump_test "emit-relocs-526-overflow"
|
|
run_dump_test "emit-relocs-527"
|
|
run_dump_test "emit-relocs-528"
|
|
run_dump_test "emit-relocs-528-overflow"
|
|
run_dump_test "emit-relocs-529"
|
|
run_dump_test "emit-relocs-529-overflow"
|
|
run_dump_test "emit-relocs-530"
|
|
run_dump_test "emit-relocs-531"
|
|
run_dump_test "emit-relocs-531-overflow"
|
|
run_dump_test "emit-relocs-532"
|
|
run_dump_test "emit-relocs-533"
|
|
run_dump_test "emit-relocs-533-overflow"
|
|
run_dump_test "emit-relocs-534"
|
|
run_dump_test "emit-relocs-535"
|
|
run_dump_test "emit-relocs-535-overflow"
|
|
run_dump_test "emit-relocs-536"
|
|
run_dump_test "emit-relocs-537"
|
|
run_dump_test "emit-relocs-537-overflow"
|
|
run_dump_test "emit-relocs-538"
|
|
|
|
run_dump_test "reloc-overflow-bad"
|
|
|
|
# test addend correctness when --emit-relocs specified for non-relocatable obj.
|
|
run_dump_test "emit-relocs-local-addend"
|
|
# test addend correctness when -r specified.
|
|
run_dump_test "local-addend-r"
|
|
|
|
# test error handling on pcrel relocation for shared libraries.
|
|
run_dump_test "pcrel_pic_undefined"
|
|
run_dump_test "pcrel_pic_defined_local"
|
|
|
|
run_dump_test "limit-b"
|
|
run_dump_test "limit-bl"
|
|
run_dump_test "farcall-back"
|
|
run_dump_test "farcall-b-defsym"
|
|
run_dump_test "farcall-bl-defsym"
|
|
run_dump_test "farcall-b-gsym"
|
|
run_dump_test "farcall-b-plt"
|
|
run_dump_test "farcall-bl-plt"
|
|
run_dump_test "farcall-bl"
|
|
run_dump_test "farcall-b"
|
|
run_dump_test "farcall-b-none-function"
|
|
run_dump_test "farcall-bl-none-function"
|
|
run_dump_test "farcall-b-section"
|
|
run_dump_test "farcall-bl-section"
|
|
|
|
run_dump_test "tls-relax-all"
|
|
run_dump_test "tls-relax-gd-le"
|
|
run_dump_test "tls-relax-gdesc-le"
|
|
run_dump_test "tls-relax-gd-ie"
|
|
run_dump_test "tls-relax-large-gd-ie"
|
|
run_dump_test "tls-relax-large-gd-ie-be"
|
|
run_dump_test "tls-relax-large-gd-le"
|
|
run_dump_test "tls-relax-large-gd-le-be"
|
|
run_dump_test "tls-relax-large-desc-ie"
|
|
run_dump_test "tls-relax-large-desc-ie-be"
|
|
run_dump_test "tls-relax-large-desc-le"
|
|
run_dump_test "tls-relax-large-desc-le-be"
|
|
run_dump_test "tls-relax-gdesc-ie"
|
|
run_dump_test "tls-relax-ie-le"
|
|
run_dump_test "tls-relax-ld-le-small"
|
|
run_dump_test "tls-relax-ld-le-tiny"
|
|
run_dump_test "tls-desc-ie"
|
|
run_dump_test "tls-relax-gdesc-ie-2"
|
|
run_dump_test "tls-relax-gdesc-le-2"
|
|
run_dump_test "tls-relax-ie-le-2"
|
|
run_dump_test "tls-relax-ie-le-3"
|
|
run_dump_test "tls-tiny-gd"
|
|
run_dump_test "tls-tiny-gd-ie"
|
|
run_dump_test "tls-tiny-gd-le"
|
|
run_dump_test "tls-tiny-desc"
|
|
run_dump_test "tls-tiny-desc-ie"
|
|
run_dump_test "tls-tiny-desc-le"
|
|
run_dump_test "tls-tiny-ie"
|
|
run_dump_test "tls-large-ie"
|
|
run_dump_test "tls-large-ie-be"
|
|
run_dump_test "tls-large-desc"
|
|
run_dump_test "tls-large-desc-be"
|
|
run_dump_test "tls-tiny-ld"
|
|
run_dump_test "tls-small-ld"
|
|
run_dump_test "tlsle"
|
|
run_dump_test "tlsle-symbol-offset"
|
|
run_dump_test "gc-got-relocs"
|
|
run_dump_test "gc-tls-relocs"
|
|
run_dump_test "gc-plt-relocs"
|
|
run_dump_test "gc-relocs-257-dyn"
|
|
run_dump_test "gc-relocs-257"
|
|
run_dump_test "pr17415"
|
|
run_dump_test "tprel_g2_overflow"
|
|
run_dump_test "tprel_add_lo12_overflow"
|
|
run_dump_test "protected-data"
|
|
|
|
# ifunc tests
|
|
run_dump_test "ifunc-1"
|
|
run_dump_test "ifunc-1-local"
|
|
run_dump_test "ifunc-2"
|
|
run_dump_test "ifunc-2-local"
|
|
run_dump_test "ifunc-3a"
|
|
run_dump_test "ifunc-3b"
|
|
run_dump_test "ifunc-4"
|
|
run_dump_test "ifunc-4a"
|
|
run_dump_test "ifunc-5a"
|
|
run_dump_test "ifunc-5b"
|
|
run_dump_test "ifunc-5a-local"
|
|
run_dump_test "ifunc-5b-local"
|
|
run_dump_test "ifunc-5r-local"
|
|
run_dump_test "ifunc-6a"
|
|
run_dump_test "ifunc-6b"
|
|
run_dump_test "ifunc-7a"
|
|
run_dump_test "ifunc-7b"
|
|
run_dump_test "ifunc-7c"
|
|
run_dump_test "ifunc-8"
|
|
run_dump_test "ifunc-9"
|
|
run_dump_test "ifunc-10"
|
|
run_dump_test "ifunc-11"
|
|
run_dump_test "ifunc-12"
|
|
run_dump_test "ifunc-13"
|
|
run_dump_test "ifunc-14a"
|
|
run_dump_test "ifunc-14b"
|
|
run_dump_test "ifunc-14c"
|
|
run_dump_test "ifunc-14d"
|
|
run_dump_test "ifunc-14e"
|
|
run_dump_test "ifunc-14f"
|
|
run_dump_test "ifunc-15"
|
|
run_dump_test "ifunc-16"
|
|
run_dump_test "ifunc-17a"
|
|
run_dump_test "ifunc-17b"
|
|
run_dump_test "ifunc-18a"
|
|
run_dump_test "ifunc-18b"
|
|
run_dump_test "ifunc-19a"
|
|
run_dump_test "ifunc-19b"
|
|
run_dump_test "ifunc-20"
|
|
run_dump_test "ifunc-21"
|
|
run_dump_test "ifunc-22"
|
|
|
|
run_dump_test "relasz"
|
|
run_dump_test "relocs-1027-symbolic-func"
|
|
|
|
run_dump_test "dt_textrel"
|
|
|
|
run_dump_test "plt_mapping_symbol"
|
|
|
|
set aarch64elflinktests {
|
|
{"ld-aarch64/so with global symbol" "-shared" "" "" {copy-reloc-so.s}
|
|
{} "copy-reloc-so.so"}
|
|
{"ld-aarch64/exe with copy relocation" "-e0 tmpdir/copy-reloc-so.so" "" ""
|
|
{copy-reloc-exe.s} {{objdump -R copy-reloc.d}} "copy-reloc"}
|
|
}
|
|
|
|
run_ld_link_tests $aarch64elflinktests
|