+2021-03-03 Alan Modra <amodra@gmail.com>
+
+ * testsuite/ld-gc/gc.exp: Define UNDERSCORE in ASFLAGS.
+ Move tests with ELF section directives to is_elf_format block.
+ * testsuite/ld-gc/abi-note.d: Run on more targets.
+ * testsuite/ld-gc/pr19167.d: Likewise and adjust xfails.
+ * testsuite/ld-gc/start.d: Likewise.
+ * testsuite/ld-gc/start2.d: Likewise.
+ * testsuite/ld-gc/stop.d: Likewise.
+ * testsuite/ld-gc/pr19167a.s: Add support for underscore targets.
+ * testsuite/ld-gc/start.s: Likewise.
+ * testsuite/ld-gc/start2.s: Likewise.
+
2021-03-02 Nick Alcock <nick.alcock@oracle.com>
* ldelfgen.c (ldelf_ctf_strtab_iter_cb): Skip zero-refcount strings.
#name: --gc-sections with note section
#ld: --gc-sections -e _start
#readelf: -S --wide
-#target: *-*-linux* *-*-gnu* arm*-*-uclinuxfdpiceabi
#...
.* .note.ABI-tag[ ]+NOTE.*
test_gc "Check --gc-section/-r/-e" "gcrel" $ld "-r --gc-sections -e main"
test_gc "Check --gc-section/-r/-u" "gcrel" $ld "-r --gc-sections -u used_func"
+set old_asflags $ASFLAGS
+if [is_underscore_target] {
+ set ASFLAGS "$ASFLAGS --defsym UNDERSCORE=1"
+}
+
run_dump_test "noent"
-run_dump_test "abi-note"
-run_dump_test "start"
-run_dump_test "start2"
-run_dump_test "stop"
-run_dump_test "pr19167"
+
if { [is_elf_format] } then {
+ run_dump_test "abi-note"
run_dump_test "all-debug-sections"
+ run_dump_test "pr19167"
run_dump_test "pr20882"
+ run_dump_test "stop"
+ run_dump_test "start"
+ run_dump_test "start2"
}
if { [is_elf_format] && [check_shared_lib_support] } then {
if { [is_elf_format] } then {
run_dump_test "skip-map-discarded"
}
+
+set ASFLAGS $old_asflags
#source: pr19167b.s
#ld: --gc-sections -e _start
#objdump: -s -j _foo
-#target: *-*-linux* *-*-gnu* arm*-*-uclinuxfdpiceabi
-#xfail: frv-*-* metag-*-*
+#xfail: bfin-*-*linux* frv-*-*linux* lm32-*-*linux*
#...
Contents of section _foo:
.globl _start
_start:
+ .ifdef UNDERSCORE
+ .dc.a ___start__foo
+ .else
.dc.a __start__foo
+ .endif
.section _foo,"aw",%progbits
foo:
.ascii "This is "
#name: --gc-sections with __start_
#ld: --gc-sections -e _start
#nm: -n
-#target: *-*-linux* *-*-gnu* arm*-*-uclinuxfdpiceabi
-#xfail: frv-*-* metag-*-*
+#xfail: bfin-*-*linux* frv-*-*linux* lm32-*-*linux*
#...
-[0-9a-f]+ D +__start__foo
+[0-9a-f]+ D +_?__start__foo
#...
-.globl _start
+ .globl _start
_start:
+ .ifdef UNDERSCORE
+ .dc.a ___start__foo
+ .else
.dc.a __start__foo
+ .endif
.section _foo,"aw",%progbits
foo:
.long 1
#name: --gc-sections with -z start-stop-gc
#ld: --gc-sections -e _start -z start-stop-gc
#nm: -n
-#target: *-*-linux* *-*-gnu* arm*-*-uclinuxfdpiceabi
-#xfail: bfin-*-*linux* frv-*-*
+#notarget: [uses_genelf]
+#xfail: bfin-*-*linux* frv-*-*linux*
#failif
#...
-[0-9a-f]+ D +__start__foo
+[0-9a-f]+ D +_?__start__foo
#...
-.globl _start
+ .globl _start
_start:
+ .ifdef UNDERSCORE
+ .weak ___start__foo
+ .dc.a ___start__foo
+ .else
.weak __start__foo
.dc.a __start__foo
+ .endif
.section _foo,"aw",%progbits
foo:
.long 1
#name: --gc-sections removing __stop_
#ld: --gc-sections -e _start
#nm: -n
-#target: *-*-linux* *-*-gnu* arm*-*-uclinuxfdpiceabi
#failif
#...
-[0-9a-f]+ D +__stop__foo
+[0-9a-f]+ D +_?__stop__foo
#...