From fd5ccf52f5efb3a770a8114ff443e9ad00ddf950 Mon Sep 17 00:00:00 2001 From: rsandifo Date: Sat, 14 Mar 2009 09:14:29 +0000 Subject: [PATCH] ld/ * emultempl/aix.em (gld${EMULATION_NAME}_before_allocation): Mark .text, .data and .bss output sections as SEC_KEEP. ld/testsuite/ * ld-powerpc/aix-core-sec-1.s, ld-powerpc/aix-core-sec-1.ex, ld-powerpc/aix-core-sec-1.hd, ld-powerpc/aix-core-sec-2.s, ld-powerpc/aix-core-sec-2.ex, ld-powerpc/aix-core-sec-2.hd, ld-powerpc/aix-core-sec-3.s, ld-powerpc/aix-core-sec-3.ex, ld-powerpc/aix-core-sec-3.hd: New tests. * ld-powerpc/aix52.exp: New harness. --- ld/ChangeLog | 5 ++ ld/emultempl/aix.em | 23 +++++++- ld/testsuite/ChangeLog | 9 ++++ ld/testsuite/ld-powerpc/aix-core-sec-1.ex | 1 + ld/testsuite/ld-powerpc/aix-core-sec-1.hd | 11 ++++ ld/testsuite/ld-powerpc/aix-core-sec-1.s | 5 ++ ld/testsuite/ld-powerpc/aix-core-sec-2.ex | 1 + ld/testsuite/ld-powerpc/aix-core-sec-2.hd | 11 ++++ ld/testsuite/ld-powerpc/aix-core-sec-2.s | 5 ++ ld/testsuite/ld-powerpc/aix-core-sec-3.ex | 1 + ld/testsuite/ld-powerpc/aix-core-sec-3.hd | 11 ++++ ld/testsuite/ld-powerpc/aix-core-sec-3.s | 1 + ld/testsuite/ld-powerpc/aix52.exp | 89 +++++++++++++++++++++++++++++++ 13 files changed, 172 insertions(+), 1 deletion(-) create mode 100644 ld/testsuite/ld-powerpc/aix-core-sec-1.ex create mode 100644 ld/testsuite/ld-powerpc/aix-core-sec-1.hd create mode 100644 ld/testsuite/ld-powerpc/aix-core-sec-1.s create mode 100644 ld/testsuite/ld-powerpc/aix-core-sec-2.ex create mode 100644 ld/testsuite/ld-powerpc/aix-core-sec-2.hd create mode 100644 ld/testsuite/ld-powerpc/aix-core-sec-2.s create mode 100644 ld/testsuite/ld-powerpc/aix-core-sec-3.ex create mode 100644 ld/testsuite/ld-powerpc/aix-core-sec-3.hd create mode 100644 ld/testsuite/ld-powerpc/aix-core-sec-3.s create mode 100644 ld/testsuite/ld-powerpc/aix52.exp diff --git a/ld/ChangeLog b/ld/ChangeLog index 8e09dbf25d..50f8bc921e 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,10 @@ 2009-03-14 Richard Sandiford + * emultempl/aix.em (gld${EMULATION_NAME}_before_allocation): Mark + .text, .data and .bss output sections as SEC_KEEP. + +2009-03-14 Richard Sandiford + * configure.tgt: Extend AIX 5 behavior to AIX 6 and above. 2009-03-14 Dave Korn diff --git a/ld/emultempl/aix.em b/ld/emultempl/aix.em index ecb6645cf0..b30000b925 100644 --- a/ld/emultempl/aix.em +++ b/ld/emultempl/aix.em @@ -616,7 +616,12 @@ gld${EMULATION_NAME}_before_allocation (void) struct export_symbol_list *el; char *libpath; asection *special_sections[XCOFF_NUMBER_OF_SPECIAL_SECTIONS]; - int i; + static const char *const must_keep_sections[] = { + ".text", + ".data", + ".bss" + }; + unsigned int i; /* Handle the import and export files, if any. */ for (fl = import_files; fl != NULL; fl = fl->next) @@ -824,6 +829,22 @@ gld${EMULATION_NAME}_before_allocation (void) } } + /* Executables and shared objects must always have .text, .data + and .bss output sections, so that the header can refer to them. + The kernel refuses to load objects that have missing sections. */ + if (!link_info.relocatable) + for (i = 0; i < ARRAY_SIZE (must_keep_sections); i++) + { + asection *sec; + + sec = bfd_get_section_by_name (link_info.output_bfd, + must_keep_sections[i]); + if (sec == NULL) + einfo ("%P: can't find required output section %s\n", must_keep_sections[i]); + else + sec->flags |= SEC_KEEP; + } + before_allocation_default (); } diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 9279df1b27..a8baba1694 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,5 +1,14 @@ 2009-03-14 Richard Sandiford + * ld-powerpc/aix-core-sec-1.s, ld-powerpc/aix-core-sec-1.ex, + ld-powerpc/aix-core-sec-1.hd, ld-powerpc/aix-core-sec-2.s, + ld-powerpc/aix-core-sec-2.ex, ld-powerpc/aix-core-sec-2.hd, + ld-powerpc/aix-core-sec-3.s, ld-powerpc/aix-core-sec-3.ex, + ld-powerpc/aix-core-sec-3.hd: New tests. + * ld-powerpc/aix52.exp: New harness. + +2009-03-14 Richard Sandiford + * lib/ld-lib.exp (ar_simple_create): Add an "aropts" parameter. (run_ld_link_tests): Treat the second list element as "ar" options when creating an archive. Don't run the linker in this case. diff --git a/ld/testsuite/ld-powerpc/aix-core-sec-1.ex b/ld/testsuite/ld-powerpc/aix-core-sec-1.ex new file mode 100644 index 0000000000..257cc5642c --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix-core-sec-1.ex @@ -0,0 +1 @@ +foo diff --git a/ld/testsuite/ld-powerpc/aix-core-sec-1.hd b/ld/testsuite/ld-powerpc/aix-core-sec-1.hd new file mode 100644 index 0000000000..19d09e47ee --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix-core-sec-1.hd @@ -0,0 +1,11 @@ +#... +Sections: +.* + * 0 * \.text * 0+8 .* + * CONTENTS, ALLOC, LOAD, CODE + * 1 * \.data * 0+0 .* + * ALLOC, LOAD, DATA + * 2 * \.bss * 0+0 .* + * ALLOC + * 3 * \.loader .* + * CONTENTS, ALLOC, LOAD diff --git a/ld/testsuite/ld-powerpc/aix-core-sec-1.s b/ld/testsuite/ld-powerpc/aix-core-sec-1.s new file mode 100644 index 0000000000..edb466969a --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix-core-sec-1.s @@ -0,0 +1,5 @@ + .globl foo + .csect foo[RO] +foo: + .long 0x12345678 + .long 0xdeadbeef diff --git a/ld/testsuite/ld-powerpc/aix-core-sec-2.ex b/ld/testsuite/ld-powerpc/aix-core-sec-2.ex new file mode 100644 index 0000000000..257cc5642c --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix-core-sec-2.ex @@ -0,0 +1 @@ +foo diff --git a/ld/testsuite/ld-powerpc/aix-core-sec-2.hd b/ld/testsuite/ld-powerpc/aix-core-sec-2.hd new file mode 100644 index 0000000000..39facd81e0 --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix-core-sec-2.hd @@ -0,0 +1,11 @@ +#... +Sections: +.* + * 0 * \.text * 0+0 .* + * ALLOC, LOAD, CODE + * 1 * \.data * 0+8 .* + * CONTENTS, ALLOC, LOAD, DATA + * 2 * \.bss * 0+0 .* + * ALLOC + * 3 * \.loader .* + * CONTENTS, ALLOC, LOAD diff --git a/ld/testsuite/ld-powerpc/aix-core-sec-2.s b/ld/testsuite/ld-powerpc/aix-core-sec-2.s new file mode 100644 index 0000000000..357796ee38 --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix-core-sec-2.s @@ -0,0 +1,5 @@ + .globl foo + .csect foo[RW] +foo: + .long 0x12345678 + .long 0xdeadbeef diff --git a/ld/testsuite/ld-powerpc/aix-core-sec-3.ex b/ld/testsuite/ld-powerpc/aix-core-sec-3.ex new file mode 100644 index 0000000000..257cc5642c --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix-core-sec-3.ex @@ -0,0 +1 @@ +foo diff --git a/ld/testsuite/ld-powerpc/aix-core-sec-3.hd b/ld/testsuite/ld-powerpc/aix-core-sec-3.hd new file mode 100644 index 0000000000..f7acc39ec7 --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix-core-sec-3.hd @@ -0,0 +1,11 @@ +#... +Sections: +.* + * 0 * \.text * 0+0 .* + * ALLOC, LOAD, CODE + * 1 * \.data * 0+0 .* + * ALLOC, LOAD, DATA + * 2 * \.bss * 0+8 .* + * ALLOC + * 3 * \.loader .* + * CONTENTS, ALLOC, LOAD diff --git a/ld/testsuite/ld-powerpc/aix-core-sec-3.s b/ld/testsuite/ld-powerpc/aix-core-sec-3.s new file mode 100644 index 0000000000..df5293f6a5 --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix-core-sec-3.s @@ -0,0 +1 @@ + .comm foo,8 diff --git a/ld/testsuite/ld-powerpc/aix52.exp b/ld/testsuite/ld-powerpc/aix52.exp new file mode 100644 index 0000000000..09725573ca --- /dev/null +++ b/ld/testsuite/ld-powerpc/aix52.exp @@ -0,0 +1,89 @@ +# Expect script for AIX 5.2+ tests +# Copyright 2009 Free Software Foundation +# +# 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)" \ + $ldopts \ + "$asopts -a$size --defsym size=$size" \ + $sources \ + $tools \ + $output]] +} + +set aix52tests { + {"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"} +} + +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 + } +} -- 2.11.0