2009-03-14 09:14:30 +00:00
|
|
|
# Expect script for AIX 5.2+ tests
|
2016-01-01 11:25:12 +00:00
|
|
|
# Copyright (C) 2009-2016 Free Software Foundation, Inc.
|
2009-03-14 09:14:30 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
if { ![istarget "powerpc*-*-aix\[5-9\]*"]
|
|
|
|
|| [istarget "powerpc*-*-aix5.\[01\]*"] } {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
# Run a run_link_tests-style test for AIX. SIZE selects the target size
|
|
|
|
# (32 or 64). The other arguments are elements of a run_link_tests test.
|
|
|
|
#
|
|
|
|
# Make the following changes before running the test:
|
|
|
|
#
|
|
|
|
# - Mention SIZE in the test name.
|
|
|
|
# - Add "-aSIZE --defsym size=SIZE" to the assembler options.
|
|
|
|
# - Add the source directory to any "-bI:" and "-bE:" linker options.
|
|
|
|
# - Add "-bSIZE" to the linker options.
|
|
|
|
# - Add "-XSIZE" to the archiver options.
|
|
|
|
# - Replace "SIZE" with SIZE in TOOLS.
|
|
|
|
# - When testing 64-bit targets:
|
|
|
|
# - Turn tmpdir/aix-* into tmpdir/aix64-*.
|
|
|
|
# - Turn tmpdir/libaix-* into tmpdir/libaix64-*.
|
|
|
|
# - Turn -laix* into -laix64*, to compensate for the above.
|
|
|
|
proc run_aix_test { size name ldopts asopts sources tools output } {
|
|
|
|
global srcdir subdir
|
|
|
|
|
|
|
|
if { $size == 64 } {
|
|
|
|
regsub -all {tmpdir/aix-} $ldopts {tmpdir/aix64-} ldopts
|
|
|
|
regsub {^aix} $output {aix64} output
|
|
|
|
|
|
|
|
regsub -all -- {-laix-} $ldopts {-laix64-} ldopts
|
|
|
|
regsub {^libaix} $output {libaix64} output
|
|
|
|
}
|
|
|
|
if { [regexp {.a$} $output] } {
|
|
|
|
append ldopts " -X$size"
|
|
|
|
} else {
|
|
|
|
regsub -all {(-b[IE]):} $ldopts "\\1:$srcdir/$subdir/" ldopts
|
|
|
|
append ldopts " -b$size"
|
|
|
|
}
|
|
|
|
regsub -all {SIZE} $tools $size tools
|
|
|
|
run_ld_link_tests [list [list "$name ($size-bit)" \
|
2013-02-19 01:10:06 +00:00
|
|
|
$ldopts "" \
|
2009-03-14 09:14:30 +00:00
|
|
|
"$asopts -a$size --defsym size=$size" \
|
|
|
|
$sources \
|
|
|
|
$tools \
|
|
|
|
$output]]
|
|
|
|
}
|
|
|
|
|
2009-03-14 09:32:33 +00:00
|
|
|
foreach file { "aix-lineno-1.txt" } {
|
|
|
|
remote_upload host "$srcdir/$subdir/$file" "tmpdir/$file"
|
|
|
|
}
|
|
|
|
|
2009-03-14 09:14:30 +00:00
|
|
|
set aix52tests {
|
2009-03-14 09:16:01 +00:00
|
|
|
{"Absolute branch test 1"
|
|
|
|
"-shared -bI:aix-abs-branch-1.im -bE:aix-abs-branch-1.ex"
|
|
|
|
"" {aix-abs-branch-1.s}
|
2009-03-14 09:32:56 +00:00
|
|
|
{{objdump {-dR} aix-abs-branch-1.dd} {nm {} aix-abs-branch-1.nd}}
|
2009-03-14 09:16:01 +00:00
|
|
|
"aix-abs-branch-1.so"}
|
|
|
|
|
2009-03-14 09:15:34 +00:00
|
|
|
{"Relocations against absolute symbols 1"
|
|
|
|
"-shared -bI:aix-abs-reloc-1.im -bE:aix-abs-reloc-1.ex"
|
|
|
|
{} {aix-abs-reloc-1.s}
|
2009-03-14 09:32:56 +00:00
|
|
|
{{objdump -sRj.data aix-abs-reloc-1.od} {nm {} aix-abs-reloc-1.nd}}
|
2009-03-14 09:15:34 +00:00
|
|
|
"aix-abs-reloc-1.so"}
|
|
|
|
|
2009-03-14 09:14:30 +00:00
|
|
|
{"Core sections test 1" "-shared -bE:aix-core-sec-1.ex"
|
|
|
|
"" {aix-core-sec-1.s}
|
|
|
|
{{objdump -h aix-core-sec-1.hd}}
|
|
|
|
"aix-core-sec-1.so"}
|
|
|
|
|
|
|
|
{"Core sections test 2" "-shared -bE:aix-core-sec-2.ex"
|
|
|
|
"" {aix-core-sec-2.s}
|
|
|
|
{{objdump -h aix-core-sec-2.hd}}
|
|
|
|
"aix-core-sec-2.so"}
|
|
|
|
|
|
|
|
{"Core sections test 3" "-shared -bE:aix-core-sec-3.ex"
|
|
|
|
"" {aix-core-sec-3.s}
|
|
|
|
{{objdump -h aix-core-sec-3.hd}}
|
|
|
|
"aix-core-sec-3.so"}
|
include/coff/
* xcoff.h (XCOFF_CALLED, XCOFF_IMPORT): Update comments.
(XCOFF_WAS_UNDEFINED): New flag.
(xcoff_link_hash_table): Add an "rtld" field.
bfd/
* coff-rs6000.c (xcoff_ppc_relocate_section): Report relocations
against undefined symbols if the symbol's XCOFF_WAS_UNDEFINED
flag is set. Assert that all undefined symbols are either
imported or defined by a dynamic object.
* coff64-rs6000.c (xcoff64_ppc_relocate_section): Likewise.
* xcofflink.c (xcoff_link_add_symbols): Extend function-symbol
handling to all relocations. Only set XCOFF_CALLED for function
symbols.
(xcoff_find_function): New function, split out from...
(bfd_xcoff_export_symbol) ...here.
(xcoff_set_import_path): New function, split out from...
(bfd_xcoff_import_symbol): ...here. Remove assertion for old
meaning of XCOFF_CALLED.
(xcoff_mark_symbol): If we mark an undefined and unimported
symbol, find some way of defining it. If the symbol is a function
descriptor, fill in its definition automatically. If the symbol
is a function, mark its descriptor and allocate room for global
linkage code. Otherwise mark the symbol as implicitly imported.
Move the code for creating function descriptors from...
(xcoff_build_ldsyms): ...here. Use XCOFF_WAS_UNDEFINED to
check for symbols that were implicitly defined.
(xcoff_mark): Don't count any dynamic relocations against
function symbols.
(bfd_xcoff_size_dynamic_sections): Save the rtld parameter
in the xcoff link info.
(xcoff_link_input_bfd): Remove handling of undefined and
unexported symbols.
ld/
* emultempl/aix.em (gld${EMULATION_NAME}_handle_option): Make
-berok and -bernotok control link_info.unresolved_syms_in_objects
and link_info.unresolved_syms_in_shared_libs instead of
force_make_executable.
ld/testsuite/
* ld-powerpc/aix-glink-1.ex, ld-powerpc/aix-glink-1.s,
ld-powerpc/aix-glink-1-32.dd, ld-powerpc/aix-glink-1-64.dd,
ld-powerpc/aix-glink-1-32.d, ld-powerpc/aix-glink-1-64.d: New tests.
* ld-powerpc/aix52.exp: Run them.
2009-03-14 09:17:32 +00:00
|
|
|
|
include/coff/
* xcoff.h (XCOFF_ALLOCATED): New flag.
bfd/
* xcofflink.c (xcoff_mark): When walking the relocations,
only mark the target symbol or the target section, not both.
(xcoff_final_definition_p): New function.
(xcoff_keep_symbol_p): Use it to check whether an external XCOFF
symbol is a valid definition of the associated output symbol.
Use XCOFF_ALLOCATED to stop the same hash table entry having
two output symbols.
(bfd_xcoff_size_dynamic_sections): Set XCOFF_ALLOCATED when
keeping a symbol.
(xcoff_link_input_bfd): Use xcoff_final_definition_p.
ld/testsuite/
* ld-powerpc/aix-no-dup-syms-1a.s, ld-powerpc/aix-no-dup-syms-1b.s,
ld-powerpc/aix-no-dup-syms-1.ex, ld-powerpc/aix-no-dup-syms-1.im,
ld-powerpc/aix-no-dup-syms-1-dso.dnd,
ld-powerpc/aix-no-dup-syms-1-dso.drd,
ld-powerpc/aix-no-dup-syms-1-dso.nd,
ld-powerpc/aix-no-dup-syms-1-dso.rd,
ld-powerpc/aix-no-dup-syms-1-rel.nd,
ld-powerpc/aix-no-dup-syms-1-rel.rd: New tests.
* ld-powerpc/aix52.exp: Run them.
2009-03-14 09:33:39 +00:00
|
|
|
{"Duplicate symbol check 1 (rel)" "-r"
|
|
|
|
"" {aix-no-dup-syms-1a.s aix-no-dup-syms-1b.s}
|
|
|
|
{{nm {} aix-no-dup-syms-1-rel.nd} {objdump -r aix-no-dup-syms-1-rel.rd}}
|
|
|
|
"aix-no-dup-syms-1.o"}
|
|
|
|
|
|
|
|
{"Duplicate symbol check 1 (shared)"
|
|
|
|
"-shared --allow-multiple-definition -bI:aix-no-dup-syms-1.im -bE:aix-no-dup-syms-1.ex"
|
|
|
|
"" {aix-no-dup-syms-1a.s aix-no-dup-syms-1b.s}
|
|
|
|
{{nm {} aix-no-dup-syms-1-dso.nd} {objdump -r aix-no-dup-syms-1-dso.rd}
|
|
|
|
{nm -D aix-no-dup-syms-1-dso.dnd} {objdump -R aix-no-dup-syms-1-dso.drd}}
|
|
|
|
"aix-no-dup-syms-1.so"}
|
include/coff/
* xcoff.h (XCOFF_EXPALL, XCOFF_EXPFULL): New flags.
(xcoff_loader_info): Add auto_export_flags.
bfd/
* bfd-in.h (bfd_xcoff_size_dynamic_sections): Replace the
bfd_boolean export_defineds parameter with an unsigned int
auto_export_flags parameter.
* bfd-in2.h: Regenerate.
* xcofflink.c (xcoff_archive_contains_shared_object_p): New function,
split out from xcoff_build_ldsyms.
(xcoff_covered_by_expall_p): New function.
(xcoff_auto_export_p): New function, split out from xcoff_build_ldsyms
but with extra code to handle -bexpfull and -bexpall.
(xcoff_mark_auto_exports): New function.
(xcoff_build_ldsyms): Use xcoff_auto_export_p to decide whether
a function should be automatically exported.
(bfd_xcoff_size_dynamic_sections): Replace the export_defineds
parameter with an auto_export_flags parameter. Update ldinfo
accordingly. Use xcoff_mark_auto_exports to mark all automatically-
exported symbols.
ld/
* emultempl/aix.em (auto_export_flags): New variable.
(explicit_auto_export_flags): Likewise.
(OPTION_EXPALL, OPTION_EXPFULL): New enum values.
(OPTION_NOEXPALL, OPTION_NOEXPFULL): Likewise.
(gld${EMULATION_NAME}_add_options): Add -bexpall, -bexpfull,
-bnoexpall and -bnoexpfull.
(gld${EMULATION_NAME}_handle_option): Handle them.
(gld${EMULATION_NAME}_before_allocation): Update the call to
bfd_size_dynamic_sections.
ld/testsuite/
* ld-powerpc/aix-export-1-all.dd, ld-powerpc/aix-export-1-full.dd,
ld-powerpc/aix-export-1a.s, ld-powerpc/aix-export-1b.s: New tests.
* ld-powerpc/aix52.exp: Run them.
2009-03-14 09:35:46 +00:00
|
|
|
|
|
|
|
{"Export test 1 (archive)" ""
|
|
|
|
"" {aix-export-1a.s}
|
|
|
|
{} "libaix-export-1.a"}
|
|
|
|
|
|
|
|
{"Export test 1 (object)" "-r"
|
|
|
|
"" {aix-export-1b.s}
|
|
|
|
{} "aix-export-1.o"}
|
|
|
|
|
|
|
|
{"Export test 1 (-bexpall)"
|
|
|
|
"-shared -bexpall tmpdir/aix-export-1.o -Ltmpdir -laix-export-1"
|
|
|
|
"" {}
|
|
|
|
{{objdump -dj.data aix-export-1-all.dd}}
|
|
|
|
"aix-export-1-all.so"}
|
|
|
|
|
|
|
|
{"Export test 1 (-bexpfull)"
|
|
|
|
"-shared -bexpfull tmpdir/aix-export-1.o -Ltmpdir -laix-export-1"
|
|
|
|
"" {}
|
|
|
|
{{objdump -dj.data aix-export-1-full.dd}}
|
|
|
|
"aix-export-1-full.so"}
|
include/coff/
* xcoff.h (XCOFF_ALLOCATED): New flag.
bfd/
* xcofflink.c (xcoff_mark): When walking the relocations,
only mark the target symbol or the target section, not both.
(xcoff_final_definition_p): New function.
(xcoff_keep_symbol_p): Use it to check whether an external XCOFF
symbol is a valid definition of the associated output symbol.
Use XCOFF_ALLOCATED to stop the same hash table entry having
two output symbols.
(bfd_xcoff_size_dynamic_sections): Set XCOFF_ALLOCATED when
keeping a symbol.
(xcoff_link_input_bfd): Use xcoff_final_definition_p.
ld/testsuite/
* ld-powerpc/aix-no-dup-syms-1a.s, ld-powerpc/aix-no-dup-syms-1b.s,
ld-powerpc/aix-no-dup-syms-1.ex, ld-powerpc/aix-no-dup-syms-1.im,
ld-powerpc/aix-no-dup-syms-1-dso.dnd,
ld-powerpc/aix-no-dup-syms-1-dso.drd,
ld-powerpc/aix-no-dup-syms-1-dso.nd,
ld-powerpc/aix-no-dup-syms-1-dso.rd,
ld-powerpc/aix-no-dup-syms-1-rel.nd,
ld-powerpc/aix-no-dup-syms-1-rel.rd: New tests.
* ld-powerpc/aix52.exp: Run them.
2009-03-14 09:33:39 +00:00
|
|
|
|
2009-04-16 23:07:00 +00:00
|
|
|
{"Export test 2" "-shared -bexpall"
|
|
|
|
{} {aix-export-2.s}
|
|
|
|
{{nm -D aix-export-2.nd}} "aix-export-2.so"}
|
|
|
|
|
2009-03-14 09:35:06 +00:00
|
|
|
{"Garbage collection test 1"
|
|
|
|
"-shared -binitfini:init_function:fini_function -bE:aix-gc-1.ex"
|
|
|
|
"" {aix-gc-1.s}
|
2009-04-01 20:09:03 +00:00
|
|
|
{{objdump {-dz -j.text -j.data} aix-gc-1-SIZE.dd}
|
|
|
|
{nm {} aix-gc-1.nd}}
|
2009-03-14 09:35:06 +00:00
|
|
|
"aix-gc-1.so"}
|
|
|
|
|
include/coff/
* xcoff.h (XCOFF_CALLED, XCOFF_IMPORT): Update comments.
(XCOFF_WAS_UNDEFINED): New flag.
(xcoff_link_hash_table): Add an "rtld" field.
bfd/
* coff-rs6000.c (xcoff_ppc_relocate_section): Report relocations
against undefined symbols if the symbol's XCOFF_WAS_UNDEFINED
flag is set. Assert that all undefined symbols are either
imported or defined by a dynamic object.
* coff64-rs6000.c (xcoff64_ppc_relocate_section): Likewise.
* xcofflink.c (xcoff_link_add_symbols): Extend function-symbol
handling to all relocations. Only set XCOFF_CALLED for function
symbols.
(xcoff_find_function): New function, split out from...
(bfd_xcoff_export_symbol) ...here.
(xcoff_set_import_path): New function, split out from...
(bfd_xcoff_import_symbol): ...here. Remove assertion for old
meaning of XCOFF_CALLED.
(xcoff_mark_symbol): If we mark an undefined and unimported
symbol, find some way of defining it. If the symbol is a function
descriptor, fill in its definition automatically. If the symbol
is a function, mark its descriptor and allocate room for global
linkage code. Otherwise mark the symbol as implicitly imported.
Move the code for creating function descriptors from...
(xcoff_build_ldsyms): ...here. Use XCOFF_WAS_UNDEFINED to
check for symbols that were implicitly defined.
(xcoff_mark): Don't count any dynamic relocations against
function symbols.
(bfd_xcoff_size_dynamic_sections): Save the rtld parameter
in the xcoff link info.
(xcoff_link_input_bfd): Remove handling of undefined and
unexported symbols.
ld/
* emultempl/aix.em (gld${EMULATION_NAME}_handle_option): Make
-berok and -bernotok control link_info.unresolved_syms_in_objects
and link_info.unresolved_syms_in_shared_libs instead of
force_make_executable.
ld/testsuite/
* ld-powerpc/aix-glink-1.ex, ld-powerpc/aix-glink-1.s,
ld-powerpc/aix-glink-1-32.dd, ld-powerpc/aix-glink-1-64.dd,
ld-powerpc/aix-glink-1-32.d, ld-powerpc/aix-glink-1-64.d: New tests.
* ld-powerpc/aix52.exp: Run them.
2009-03-14 09:17:32 +00:00
|
|
|
{"Glink test 1"
|
|
|
|
"-shared -bE:aix-glink-1.ex --unresolved-symbols=ignore-all"
|
|
|
|
"" {aix-glink-1.s}
|
|
|
|
{{objdump {-D -j.text -j.data} aix-glink-1-SIZE.dd}}
|
|
|
|
"aix-glink-1.so"}
|
2009-03-14 09:18:22 +00:00
|
|
|
|
include/coff/
* internal.h (C_AIX_WEAKEXT): New macro.
(C_WEAKEXT): Use the GNU definition in the generic part of the file,
and conditionally reset it to C_AIX_WEAKEXT in the XCOFF part of
the file.
(CSECT_SYM_P): New macro.
* xcoff.h (L_WEAK): Define.
(EXTERN_SYM_P): New macro.
bfd/
* coffcode.h (coff_pointerize_aux_hook): Update CSECT_SYM_P to
check whether a symbol has csect information.
(coff_print_aux): Likewise.
* coff-rs6000.c (_bfd_xcoff_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff_swap_aux_out): Likewise.
(xcoff_reloc_type_br): Handle defweak symbols too.
* coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff64_swap_aux_out): Likewise.
(xcoff64_reloc_type_br): Handle defweak symbols too.
* coffgen.c (coff_print_symbol): Handle auxillary function
information for C_AIX_WEAKEXT too.
* xcofflink.c (_bfd_xcoff_canonicalize_dynamic_symtab): Set BSF_WEAK
instead of BSF_GLOBAL if the L_WEAK flag is set.
(xcoff_dynamic_definition_p): New function.
(xcoff_link_add_dynamic_symbols): Use it to decide whether ldsym
defines h. Don't change h if ldsym isn't the definition. Otherwise,
always take the symbol class from the ldsym. Use weak bfd symbol
types for weak ldsyms.
(xcoff_link_add_symbols): Use CSECT_SYM_P and EXTERN_SYM_P.
Fix the check for whether a definition is from a shared object.
Allow redefinitions of weak symbols.
(xcoff_link_check_ar_symbols): Use EXTERN_SYM_P.
(xcoff_keep_symbol_p): Likewise.
(bfd_xcoff_size_dynamic_sections): Use CSECT_SYM_P.
(xcoff_link_input_bfd): Use CSECT_SYM_P and EXTERN_SYM_P.
Add .loader entries for C_AIX_WEAKEXT as well as C_EXT symbols,
but mark them as L_WEAK.
(xcoff_write_global_symbol): Treat weak symbols as C_AIX_WEAKEXT
instead of C_EXT if C_AIX_WEAKEXT == C_WEAKEXT.
gas/
* config/tc-ppc.c (ppc_frob_symbol): Add csect information for
C_AIX_WEAKEXT too.
ld/testsuite/
* ld-powerpc/aix-glink-2a.s, ld-powerpc/aix-glink-2a.ex,
ld-powerpc/aix-glink-2b.s, ld-powerpc/aix-glink-2c.s,
ld-powerpc/aix-glink-2c.ex, ld-powerpc/aix-glink-2d.s,
ld-powerpc/aix-glink-2-32.dd, ld-powerpc/aix-glink-2-64.dd,
ld-powerpc/aix-weak-1a.s, ld-powerpc/aix-weak-1b.s,
ld-powerpc/aix-weak-1-rel.hd, ld-powerpc/aix-weak-1-rel.nd,
ld-powerpc/aix-weak-1-dso.hd, ld-powerpc/aix-weak-1-dso.nd,
ld-powerpc/aix-weak-1-dso.dnd, ld-powerpc/aix-weak-1.ex,
ld-powerpc/aix-weak-2a.s, ld-powerpc/aix-weak-2a.ex,
ld-powerpc/aix-weak-2a.nd, ld-powerpc/aix-weak-2b.s,
ld-powerpc/aix-weak-2b.nd, ld-powerpc/aix-weak-2c.s,
ld-powerpc/aix-weak-2c.ex, ld-powerpc/aix-weak-2c.nd,
ld-powerpc/aix-weak-2c.od, ld-powerpc/aix-weak-3a.s,
ld-powerpc/aix-weak-3a.ex, ld-powerpc/aix-weak-3b.s,
ld-powerpc/aix-weak-3b.ex, ld-powerpc/aix-weak-3-32.d,
ld-powerpc/aix-weak-3-32.dd, ld-powerpc/aix-weak-3-64.d,
ld-powerpc/aix-weak-3-64.dd: New tests.
* ld-powerpc/aix52.exp: Run them. Replace tmp/aix-* with
tmp/aix64-* in 64-bit ld options.
2009-03-14 09:34:27 +00:00
|
|
|
{"Glink test 2 (part a)" "-shared -bE:aix-glink-2a.ex"
|
|
|
|
"" {aix-glink-2a.s}
|
|
|
|
{}
|
|
|
|
"aix-glink-2a.so"}
|
|
|
|
|
|
|
|
{"Glink test 2 (part b)" "-r"
|
|
|
|
"" {aix-glink-2b.s}
|
|
|
|
{}
|
|
|
|
"aix-glink-2b.ro"}
|
|
|
|
|
|
|
|
{"Glink test 2 (part c)" "-shared -bE:aix-glink-2c.ex"
|
|
|
|
"" {aix-glink-2c.s}
|
|
|
|
{}
|
|
|
|
"aix-glink-2c.so"}
|
|
|
|
|
|
|
|
{"Glink test 2"
|
|
|
|
"-e.main tmpdir/aix-glink-2a.so tmpdir/aix-glink-2b.ro tmpdir/aix-glink-2c.so"
|
|
|
|
"" {aix-glink-2d.s}
|
|
|
|
{{objdump -d aix-glink-2-SIZE.dd}}
|
|
|
|
"aix-glink-2"}
|
|
|
|
|
2009-06-02 18:51:34 +00:00
|
|
|
{"Glink test 3 (shared library a)"
|
|
|
|
"-shared -bexpall"
|
|
|
|
"" {aix-glink-3a.s}
|
|
|
|
{} "aix-glink-3a.so"}
|
|
|
|
|
|
|
|
{"Glink test 3 (shared library b)"
|
|
|
|
"-shared -bexpall"
|
|
|
|
"" {aix-glink-3b.s}
|
|
|
|
{} "aix-glink-3b.so"}
|
|
|
|
|
|
|
|
{"Glink test 3 (main test)"
|
|
|
|
"-bnoautoimp tmpdir/aix-glink-3b.so tmpdir/aix-glink-3a.so"
|
|
|
|
"" {aix-glink-3.s}
|
|
|
|
{{objdump -d aix-glink-3.dd}}
|
|
|
|
"aix-glink-3"}
|
|
|
|
|
|
|
|
{"Line number test 1 (no discards)" "-e.main"
|
|
|
|
"" {aix-lineno-1.s}
|
|
|
|
{{objdump -dS aix-lineno-1a.dd} {nm {} aix-lineno-1a.nd}}
|
|
|
|
"aix-lineno-1a.exe"}
|
|
|
|
|
|
|
|
{"Line number test 1 (discard locals)" "-e.main -x"
|
|
|
|
"" {aix-lineno-1.s}
|
|
|
|
{{objdump -dS aix-lineno-1b.dd} {nm {} aix-lineno-1b.nd}}
|
|
|
|
"aix-lineno-1b.exe"}
|
|
|
|
|
2009-04-01 19:27:38 +00:00
|
|
|
{"Relocatable test 1" "-r"
|
|
|
|
"" {aix-rel-1.s}
|
|
|
|
{{objdump -hr aix-rel-1.od}} "aix-rel-1.ro"}
|
|
|
|
|
2010-01-23 12:05:33 +00:00
|
|
|
{".ref test 1" "-efoo1"
|
|
|
|
"" {aix-ref-1.s}
|
|
|
|
{{objdump -dr aix-ref-1-SIZE.od}}
|
|
|
|
"aix-ref-1"}
|
|
|
|
|
include/coff/
* internal.h (C_AIX_WEAKEXT): New macro.
(C_WEAKEXT): Use the GNU definition in the generic part of the file,
and conditionally reset it to C_AIX_WEAKEXT in the XCOFF part of
the file.
(CSECT_SYM_P): New macro.
* xcoff.h (L_WEAK): Define.
(EXTERN_SYM_P): New macro.
bfd/
* coffcode.h (coff_pointerize_aux_hook): Update CSECT_SYM_P to
check whether a symbol has csect information.
(coff_print_aux): Likewise.
* coff-rs6000.c (_bfd_xcoff_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff_swap_aux_out): Likewise.
(xcoff_reloc_type_br): Handle defweak symbols too.
* coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff64_swap_aux_out): Likewise.
(xcoff64_reloc_type_br): Handle defweak symbols too.
* coffgen.c (coff_print_symbol): Handle auxillary function
information for C_AIX_WEAKEXT too.
* xcofflink.c (_bfd_xcoff_canonicalize_dynamic_symtab): Set BSF_WEAK
instead of BSF_GLOBAL if the L_WEAK flag is set.
(xcoff_dynamic_definition_p): New function.
(xcoff_link_add_dynamic_symbols): Use it to decide whether ldsym
defines h. Don't change h if ldsym isn't the definition. Otherwise,
always take the symbol class from the ldsym. Use weak bfd symbol
types for weak ldsyms.
(xcoff_link_add_symbols): Use CSECT_SYM_P and EXTERN_SYM_P.
Fix the check for whether a definition is from a shared object.
Allow redefinitions of weak symbols.
(xcoff_link_check_ar_symbols): Use EXTERN_SYM_P.
(xcoff_keep_symbol_p): Likewise.
(bfd_xcoff_size_dynamic_sections): Use CSECT_SYM_P.
(xcoff_link_input_bfd): Use CSECT_SYM_P and EXTERN_SYM_P.
Add .loader entries for C_AIX_WEAKEXT as well as C_EXT symbols,
but mark them as L_WEAK.
(xcoff_write_global_symbol): Treat weak symbols as C_AIX_WEAKEXT
instead of C_EXT if C_AIX_WEAKEXT == C_WEAKEXT.
gas/
* config/tc-ppc.c (ppc_frob_symbol): Add csect information for
C_AIX_WEAKEXT too.
ld/testsuite/
* ld-powerpc/aix-glink-2a.s, ld-powerpc/aix-glink-2a.ex,
ld-powerpc/aix-glink-2b.s, ld-powerpc/aix-glink-2c.s,
ld-powerpc/aix-glink-2c.ex, ld-powerpc/aix-glink-2d.s,
ld-powerpc/aix-glink-2-32.dd, ld-powerpc/aix-glink-2-64.dd,
ld-powerpc/aix-weak-1a.s, ld-powerpc/aix-weak-1b.s,
ld-powerpc/aix-weak-1-rel.hd, ld-powerpc/aix-weak-1-rel.nd,
ld-powerpc/aix-weak-1-dso.hd, ld-powerpc/aix-weak-1-dso.nd,
ld-powerpc/aix-weak-1-dso.dnd, ld-powerpc/aix-weak-1.ex,
ld-powerpc/aix-weak-2a.s, ld-powerpc/aix-weak-2a.ex,
ld-powerpc/aix-weak-2a.nd, ld-powerpc/aix-weak-2b.s,
ld-powerpc/aix-weak-2b.nd, ld-powerpc/aix-weak-2c.s,
ld-powerpc/aix-weak-2c.ex, ld-powerpc/aix-weak-2c.nd,
ld-powerpc/aix-weak-2c.od, ld-powerpc/aix-weak-3a.s,
ld-powerpc/aix-weak-3a.ex, ld-powerpc/aix-weak-3b.s,
ld-powerpc/aix-weak-3b.ex, ld-powerpc/aix-weak-3-32.d,
ld-powerpc/aix-weak-3-32.dd, ld-powerpc/aix-weak-3-64.d,
ld-powerpc/aix-weak-3-64.dd: New tests.
* ld-powerpc/aix52.exp: Run them. Replace tmp/aix-* with
tmp/aix64-* in 64-bit ld options.
2009-03-14 09:34:27 +00:00
|
|
|
{"Weak test 1 (rel)" "-r"
|
|
|
|
"" {aix-weak-1a.s aix-weak-1b.s}
|
|
|
|
{{nm {} aix-weak-1-rel.nd} {objdump -h aix-weak-1-rel.hd}}
|
|
|
|
"aix-weak-1.o"}
|
|
|
|
|
|
|
|
{"Weak test 1 (shared, nogc)" "-shared -bE:aix-weak-1.ex -bnogc"
|
|
|
|
"" {aix-weak-1a.s aix-weak-1b.s}
|
|
|
|
{{nm {} aix-weak-1-dso.nd} {objdump -h aix-weak-1-dso.hd}
|
|
|
|
{nm -D aix-weak-1-dso.dnd}}
|
|
|
|
"aix-weak-1-nogc.so"}
|
|
|
|
|
2009-03-14 09:35:06 +00:00
|
|
|
{"Weak test 1 (shared, gc)" "-shared -bE:aix-weak-1.ex"
|
|
|
|
"" {aix-weak-1a.s aix-weak-1b.s}
|
|
|
|
{{nm {} aix-weak-1-gcdso.nd} {objdump -h aix-weak-1-gcdso.hd}
|
|
|
|
{nm -D aix-weak-1-gcdso.dnd}}
|
|
|
|
"aix-weak-1-gc.so"}
|
|
|
|
|
include/coff/
* internal.h (C_AIX_WEAKEXT): New macro.
(C_WEAKEXT): Use the GNU definition in the generic part of the file,
and conditionally reset it to C_AIX_WEAKEXT in the XCOFF part of
the file.
(CSECT_SYM_P): New macro.
* xcoff.h (L_WEAK): Define.
(EXTERN_SYM_P): New macro.
bfd/
* coffcode.h (coff_pointerize_aux_hook): Update CSECT_SYM_P to
check whether a symbol has csect information.
(coff_print_aux): Likewise.
* coff-rs6000.c (_bfd_xcoff_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff_swap_aux_out): Likewise.
(xcoff_reloc_type_br): Handle defweak symbols too.
* coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff64_swap_aux_out): Likewise.
(xcoff64_reloc_type_br): Handle defweak symbols too.
* coffgen.c (coff_print_symbol): Handle auxillary function
information for C_AIX_WEAKEXT too.
* xcofflink.c (_bfd_xcoff_canonicalize_dynamic_symtab): Set BSF_WEAK
instead of BSF_GLOBAL if the L_WEAK flag is set.
(xcoff_dynamic_definition_p): New function.
(xcoff_link_add_dynamic_symbols): Use it to decide whether ldsym
defines h. Don't change h if ldsym isn't the definition. Otherwise,
always take the symbol class from the ldsym. Use weak bfd symbol
types for weak ldsyms.
(xcoff_link_add_symbols): Use CSECT_SYM_P and EXTERN_SYM_P.
Fix the check for whether a definition is from a shared object.
Allow redefinitions of weak symbols.
(xcoff_link_check_ar_symbols): Use EXTERN_SYM_P.
(xcoff_keep_symbol_p): Likewise.
(bfd_xcoff_size_dynamic_sections): Use CSECT_SYM_P.
(xcoff_link_input_bfd): Use CSECT_SYM_P and EXTERN_SYM_P.
Add .loader entries for C_AIX_WEAKEXT as well as C_EXT symbols,
but mark them as L_WEAK.
(xcoff_write_global_symbol): Treat weak symbols as C_AIX_WEAKEXT
instead of C_EXT if C_AIX_WEAKEXT == C_WEAKEXT.
gas/
* config/tc-ppc.c (ppc_frob_symbol): Add csect information for
C_AIX_WEAKEXT too.
ld/testsuite/
* ld-powerpc/aix-glink-2a.s, ld-powerpc/aix-glink-2a.ex,
ld-powerpc/aix-glink-2b.s, ld-powerpc/aix-glink-2c.s,
ld-powerpc/aix-glink-2c.ex, ld-powerpc/aix-glink-2d.s,
ld-powerpc/aix-glink-2-32.dd, ld-powerpc/aix-glink-2-64.dd,
ld-powerpc/aix-weak-1a.s, ld-powerpc/aix-weak-1b.s,
ld-powerpc/aix-weak-1-rel.hd, ld-powerpc/aix-weak-1-rel.nd,
ld-powerpc/aix-weak-1-dso.hd, ld-powerpc/aix-weak-1-dso.nd,
ld-powerpc/aix-weak-1-dso.dnd, ld-powerpc/aix-weak-1.ex,
ld-powerpc/aix-weak-2a.s, ld-powerpc/aix-weak-2a.ex,
ld-powerpc/aix-weak-2a.nd, ld-powerpc/aix-weak-2b.s,
ld-powerpc/aix-weak-2b.nd, ld-powerpc/aix-weak-2c.s,
ld-powerpc/aix-weak-2c.ex, ld-powerpc/aix-weak-2c.nd,
ld-powerpc/aix-weak-2c.od, ld-powerpc/aix-weak-3a.s,
ld-powerpc/aix-weak-3a.ex, ld-powerpc/aix-weak-3b.s,
ld-powerpc/aix-weak-3b.ex, ld-powerpc/aix-weak-3-32.d,
ld-powerpc/aix-weak-3-32.dd, ld-powerpc/aix-weak-3-64.d,
ld-powerpc/aix-weak-3-64.dd: New tests.
* ld-powerpc/aix52.exp: Run them. Replace tmp/aix-* with
tmp/aix64-* in 64-bit ld options.
2009-03-14 09:34:27 +00:00
|
|
|
{"Weak test 2 (library 1)" "-shared -bE:aix-weak-2a.ex"
|
|
|
|
"" {aix-weak-2a.s}
|
|
|
|
{{nm -D aix-weak-2a.nd}}
|
|
|
|
"aix-weak-2a.so"}
|
|
|
|
|
|
|
|
{"Weak test 2 (library 2)" "-shared -bE:aix-weak-2a.ex"
|
|
|
|
"" {aix-weak-2b.s}
|
|
|
|
{{nm -D aix-weak-2b.nd}}
|
|
|
|
"aix-weak-2b.so"}
|
|
|
|
|
|
|
|
{"Weak test 2 (main library)"
|
|
|
|
"-shared -bE:aix-weak-2c.ex tmpdir/aix-weak-2a.so tmpdir/aix-weak-2b.so"
|
|
|
|
"" {aix-weak-2c.s}
|
|
|
|
{{nm {} aix-weak-2c.nd} {objdump {-sj.data -R} aix-weak-2c.od}}
|
|
|
|
"aix-weak-2c.so"}
|
|
|
|
|
|
|
|
{"Weak test 3 (library)" "-shared -bE:aix-weak-3a.ex"
|
|
|
|
"" {aix-weak-3a.s}
|
|
|
|
{}
|
|
|
|
"aix-weak-3a.so"}
|
|
|
|
|
|
|
|
{"Weak test 3 (main, dynamic)" "-e.main tmpdir/aix-weak-3a.so"
|
|
|
|
"" {aix-weak-3b.s}
|
|
|
|
{{objdump -Dzrj.data aix-weak-3-SIZE.dd}}
|
|
|
|
"aix-weak-3"}
|
|
|
|
|
2009-03-14 09:18:22 +00:00
|
|
|
{"TOC test 1" "-shared -bE:aix-toc-1.ex"
|
|
|
|
"" {aix-toc-1a.s aix-toc-1b.s}
|
|
|
|
{{objdump -dr aix-toc-1-SIZE.dd}}
|
|
|
|
"aix-toc-1.so"}
|
2009-03-14 09:14:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach test $aix52tests {
|
|
|
|
foreach { name ldopts asopts sources tools output } $test {
|
|
|
|
run_aix_test 32 $name $ldopts $asopts $sources $tools $output
|
|
|
|
run_aix_test 64 $name $ldopts $asopts $sources $tools $output
|
|
|
|
}
|
|
|
|
}
|
include/coff/
* internal.h (C_AIX_WEAKEXT): New macro.
(C_WEAKEXT): Use the GNU definition in the generic part of the file,
and conditionally reset it to C_AIX_WEAKEXT in the XCOFF part of
the file.
(CSECT_SYM_P): New macro.
* xcoff.h (L_WEAK): Define.
(EXTERN_SYM_P): New macro.
bfd/
* coffcode.h (coff_pointerize_aux_hook): Update CSECT_SYM_P to
check whether a symbol has csect information.
(coff_print_aux): Likewise.
* coff-rs6000.c (_bfd_xcoff_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff_swap_aux_out): Likewise.
(xcoff_reloc_type_br): Handle defweak symbols too.
* coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff64_swap_aux_out): Likewise.
(xcoff64_reloc_type_br): Handle defweak symbols too.
* coffgen.c (coff_print_symbol): Handle auxillary function
information for C_AIX_WEAKEXT too.
* xcofflink.c (_bfd_xcoff_canonicalize_dynamic_symtab): Set BSF_WEAK
instead of BSF_GLOBAL if the L_WEAK flag is set.
(xcoff_dynamic_definition_p): New function.
(xcoff_link_add_dynamic_symbols): Use it to decide whether ldsym
defines h. Don't change h if ldsym isn't the definition. Otherwise,
always take the symbol class from the ldsym. Use weak bfd symbol
types for weak ldsyms.
(xcoff_link_add_symbols): Use CSECT_SYM_P and EXTERN_SYM_P.
Fix the check for whether a definition is from a shared object.
Allow redefinitions of weak symbols.
(xcoff_link_check_ar_symbols): Use EXTERN_SYM_P.
(xcoff_keep_symbol_p): Likewise.
(bfd_xcoff_size_dynamic_sections): Use CSECT_SYM_P.
(xcoff_link_input_bfd): Use CSECT_SYM_P and EXTERN_SYM_P.
Add .loader entries for C_AIX_WEAKEXT as well as C_EXT symbols,
but mark them as L_WEAK.
(xcoff_write_global_symbol): Treat weak symbols as C_AIX_WEAKEXT
instead of C_EXT if C_AIX_WEAKEXT == C_WEAKEXT.
gas/
* config/tc-ppc.c (ppc_frob_symbol): Add csect information for
C_AIX_WEAKEXT too.
ld/testsuite/
* ld-powerpc/aix-glink-2a.s, ld-powerpc/aix-glink-2a.ex,
ld-powerpc/aix-glink-2b.s, ld-powerpc/aix-glink-2c.s,
ld-powerpc/aix-glink-2c.ex, ld-powerpc/aix-glink-2d.s,
ld-powerpc/aix-glink-2-32.dd, ld-powerpc/aix-glink-2-64.dd,
ld-powerpc/aix-weak-1a.s, ld-powerpc/aix-weak-1b.s,
ld-powerpc/aix-weak-1-rel.hd, ld-powerpc/aix-weak-1-rel.nd,
ld-powerpc/aix-weak-1-dso.hd, ld-powerpc/aix-weak-1-dso.nd,
ld-powerpc/aix-weak-1-dso.dnd, ld-powerpc/aix-weak-1.ex,
ld-powerpc/aix-weak-2a.s, ld-powerpc/aix-weak-2a.ex,
ld-powerpc/aix-weak-2a.nd, ld-powerpc/aix-weak-2b.s,
ld-powerpc/aix-weak-2b.nd, ld-powerpc/aix-weak-2c.s,
ld-powerpc/aix-weak-2c.ex, ld-powerpc/aix-weak-2c.nd,
ld-powerpc/aix-weak-2c.od, ld-powerpc/aix-weak-3a.s,
ld-powerpc/aix-weak-3a.ex, ld-powerpc/aix-weak-3b.s,
ld-powerpc/aix-weak-3b.ex, ld-powerpc/aix-weak-3-32.d,
ld-powerpc/aix-weak-3-32.dd, ld-powerpc/aix-weak-3-64.d,
ld-powerpc/aix-weak-3-64.dd: New tests.
* ld-powerpc/aix52.exp: Run them. Replace tmp/aix-* with
tmp/aix64-* in 64-bit ld options.
2009-03-14 09:34:27 +00:00
|
|
|
|
2009-06-02 18:51:34 +00:00
|
|
|
run_dump_test "aix-glink-1-32"
|
|
|
|
run_dump_test "aix-glink-1-64"
|
|
|
|
run_dump_test "aix-glink-3-32"
|
|
|
|
run_dump_test "aix-glink-3-64"
|
include/coff/
* internal.h (C_AIX_WEAKEXT): New macro.
(C_WEAKEXT): Use the GNU definition in the generic part of the file,
and conditionally reset it to C_AIX_WEAKEXT in the XCOFF part of
the file.
(CSECT_SYM_P): New macro.
* xcoff.h (L_WEAK): Define.
(EXTERN_SYM_P): New macro.
bfd/
* coffcode.h (coff_pointerize_aux_hook): Update CSECT_SYM_P to
check whether a symbol has csect information.
(coff_print_aux): Likewise.
* coff-rs6000.c (_bfd_xcoff_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff_swap_aux_out): Likewise.
(xcoff_reloc_type_br): Handle defweak symbols too.
* coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff64_swap_aux_out): Likewise.
(xcoff64_reloc_type_br): Handle defweak symbols too.
* coffgen.c (coff_print_symbol): Handle auxillary function
information for C_AIX_WEAKEXT too.
* xcofflink.c (_bfd_xcoff_canonicalize_dynamic_symtab): Set BSF_WEAK
instead of BSF_GLOBAL if the L_WEAK flag is set.
(xcoff_dynamic_definition_p): New function.
(xcoff_link_add_dynamic_symbols): Use it to decide whether ldsym
defines h. Don't change h if ldsym isn't the definition. Otherwise,
always take the symbol class from the ldsym. Use weak bfd symbol
types for weak ldsyms.
(xcoff_link_add_symbols): Use CSECT_SYM_P and EXTERN_SYM_P.
Fix the check for whether a definition is from a shared object.
Allow redefinitions of weak symbols.
(xcoff_link_check_ar_symbols): Use EXTERN_SYM_P.
(xcoff_keep_symbol_p): Likewise.
(bfd_xcoff_size_dynamic_sections): Use CSECT_SYM_P.
(xcoff_link_input_bfd): Use CSECT_SYM_P and EXTERN_SYM_P.
Add .loader entries for C_AIX_WEAKEXT as well as C_EXT symbols,
but mark them as L_WEAK.
(xcoff_write_global_symbol): Treat weak symbols as C_AIX_WEAKEXT
instead of C_EXT if C_AIX_WEAKEXT == C_WEAKEXT.
gas/
* config/tc-ppc.c (ppc_frob_symbol): Add csect information for
C_AIX_WEAKEXT too.
ld/testsuite/
* ld-powerpc/aix-glink-2a.s, ld-powerpc/aix-glink-2a.ex,
ld-powerpc/aix-glink-2b.s, ld-powerpc/aix-glink-2c.s,
ld-powerpc/aix-glink-2c.ex, ld-powerpc/aix-glink-2d.s,
ld-powerpc/aix-glink-2-32.dd, ld-powerpc/aix-glink-2-64.dd,
ld-powerpc/aix-weak-1a.s, ld-powerpc/aix-weak-1b.s,
ld-powerpc/aix-weak-1-rel.hd, ld-powerpc/aix-weak-1-rel.nd,
ld-powerpc/aix-weak-1-dso.hd, ld-powerpc/aix-weak-1-dso.nd,
ld-powerpc/aix-weak-1-dso.dnd, ld-powerpc/aix-weak-1.ex,
ld-powerpc/aix-weak-2a.s, ld-powerpc/aix-weak-2a.ex,
ld-powerpc/aix-weak-2a.nd, ld-powerpc/aix-weak-2b.s,
ld-powerpc/aix-weak-2b.nd, ld-powerpc/aix-weak-2c.s,
ld-powerpc/aix-weak-2c.ex, ld-powerpc/aix-weak-2c.nd,
ld-powerpc/aix-weak-2c.od, ld-powerpc/aix-weak-3a.s,
ld-powerpc/aix-weak-3a.ex, ld-powerpc/aix-weak-3b.s,
ld-powerpc/aix-weak-3b.ex, ld-powerpc/aix-weak-3-32.d,
ld-powerpc/aix-weak-3-32.dd, ld-powerpc/aix-weak-3-64.d,
ld-powerpc/aix-weak-3-64.dd: New tests.
* ld-powerpc/aix52.exp: Run them. Replace tmp/aix-* with
tmp/aix64-* in 64-bit ld options.
2009-03-14 09:34:27 +00:00
|
|
|
run_dump_test "aix-weak-3-32"
|
|
|
|
run_dump_test "aix-weak-3-64"
|