]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
bfd/
authorTristan Gingold <gingold@adacore.com>
Mon, 24 Sep 2012 12:22:49 +0000 (12:22 +0000)
committerTristan Gingold <gingold@adacore.com>
Mon, 24 Sep 2012 12:22:49 +0000 (12:22 +0000)
2012-09-18  H.J. Lu  <hongjiu.lu@intel.com>

PR ld/14591
* elf-bfd.h (_bfd_elf_merge_symbol): Add an argument to return
if the old symbol is weak.

* elf32-sh-symbian.c (sh_symbian_relocate_section): Update
_bfd_elf_merge_symbol call.

* elflink.c (_bfd_elf_merge_symbol): Add an argument to return
if the old symbol is weak.
(_bfd_elf_add_default_symbol): Update _bfd_elf_merge_symbol
call.
(elf_link_add_object_symbols): Don't update symbol type from a
weak definition.  Update symbol type from a common symbol when
overriding a weak symbol.

ld/testsuite/
2012-09-18  H.J. Lu  <hongjiu.lu@intel.com>

PR ld/14591
* ld-elf/comm-data.exp (run_ld_link_tests): Add comm-data3a and
comm-data3b tests.

* ld-ifunc/ifunc.exp (run_ld_link_exec_tests): New.

* ld-elf/comm-data3.sd: New file.
* ld-elf/comm-data3a.s: Likewise.
* ld-elf/comm-data3b.s: Likewise.
* ld-ifunc/ifunc-17a-i386.d: Likewise.
* ld-ifunc/ifunc-17a-x86-64.d: Likewise.
* ld-ifunc/ifunc-17a.s: Likewise.
* ld-ifunc/ifunc-17b-i386.d: Likewise.
* ld-ifunc/ifunc-17b-x86-64.d: Likewise.
* ld-ifunc/ifunc-17b.s: Likewise.
* ld-ifunc/ifunc-common-1.out: Likewise.
* ld-ifunc/ifunc-common-1a.c: Likewise.
* ld-ifunc/ifunc-common-1b.c: Likewise.

bfd/ChangeLog
bfd/elf-bfd.h
bfd/elf32-sh-symbian.c
bfd/elflink.c
ld/testsuite/ChangeLog
ld/testsuite/ld-elf/comm-data.exp
ld/testsuite/ld-ifunc/ifunc.exp

index 5516d3480e93b4cb36b7d5ffbb674b00e9bc2709..0309325f0fed3236c3c975183de32a0d0f438c9c 100644 (file)
@@ -1,3 +1,20 @@
+2012-09-18  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/14591
+       * elf-bfd.h (_bfd_elf_merge_symbol): Add an argument to return 
+       if the old symbol is weak.
+
+       * elf32-sh-symbian.c (sh_symbian_relocate_section): Update
+       _bfd_elf_merge_symbol call.
+
+       * elflink.c (_bfd_elf_merge_symbol): Add an argument to return
+       if the old symbol is weak.
+       (_bfd_elf_add_default_symbol): Update _bfd_elf_merge_symbol
+       call.
+       (elf_link_add_object_symbols): Don't update symbol type from a
+       weak definition.  Update symbol type from a common symbol when
+       overriding a weak symbol.
+
 2012-09-17  Walter Lee  <walt@tilera.com>
 
        * elf32-tilepro.c (tilepro_elf_relocate_section): Remove unused
index 6a44912fd48aba6c6c592159278b0991c1e440d0..2ae8538f040cb0c336f528425ea7fc64e921ff0f 100644 (file)
@@ -1967,7 +1967,7 @@ extern bfd_boolean _bfd_elf_maybe_strip_eh_frame_hdr
 
 extern bfd_boolean _bfd_elf_merge_symbol
   (bfd *, struct bfd_link_info *, const char *, Elf_Internal_Sym *,
-   asection **, bfd_vma *, unsigned int *,
+   asection **, bfd_vma *, bfd_boolean *, unsigned int *,
    struct elf_link_hash_entry **, bfd_boolean *,
    bfd_boolean *, bfd_boolean *, bfd_boolean *);
 
index 0882d52b9a4e1df3f17dd2bfea27e2941599437a..1f03dbc40e5d3c252707058c40f186780d4ff206 100644 (file)
@@ -497,7 +497,7 @@ sh_symbian_relocate_section (bfd *                  output_bfd,
              if (! _bfd_elf_merge_symbol (input_bfd, info,
                                           ptr->new_name, & new_sym,
                                           & psec, & new_value, NULL,
-                                          & new_hash, & skip,
+                                          NULL, & new_hash, & skip,
                                           & override, & type_change_ok,
                                           & size_change_ok))
                {
index 3ef3f9bf5f696b781e47593f3fbd5caa9b9e55d2..50e65efe652488eb8828e407aafac97320d3bb68 100644 (file)
@@ -938,6 +938,7 @@ _bfd_elf_merge_symbol (bfd *abfd,
                       Elf_Internal_Sym *sym,
                       asection **psec,
                       bfd_vma *pvalue,
+                      bfd_boolean *pold_weak,
                       unsigned int *pold_alignment,
                       struct elf_link_hash_entry **sym_hash,
                       bfd_boolean *skip,
@@ -1040,6 +1041,8 @@ _bfd_elf_merge_symbol (bfd *abfd,
   newweak = bind == STB_WEAK;
   oldweak = (h->root.type == bfd_link_hash_defweak
             || h->root.type == bfd_link_hash_undefweak);
+  if (pold_weak)
+    *pold_weak = oldweak;
 
   /* In cases involving weak versioned symbols, we may wind up trying
      to merge a symbol with itself.  Catch that here, to avoid the
@@ -1662,7 +1665,7 @@ _bfd_elf_add_default_symbol (bfd *abfd,
   size_change_ok = FALSE;
   sec = *psec;
   if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &sec, value,
-                             NULL, &hi, &skip, &override,
+                             NULL, NULL, &hi, &skip, &override,
                              &type_change_ok, &size_change_ok))
     return FALSE;
 
@@ -1771,7 +1774,7 @@ nondefault:
   size_change_ok = FALSE;
   sec = *psec;
   if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &sec, value,
-                             NULL, &hi, &skip, &override,
+                             NULL, NULL, &hi, &skip, &override,
                              &type_change_ok, &size_change_ok))
     return FALSE;
 
@@ -3865,6 +3868,8 @@ error_free_dyn:
       bfd_boolean size_change_ok;
       bfd_boolean type_change_ok;
       bfd_boolean new_weakdef;
+      bfd_boolean new_weak;
+      bfd_boolean old_weak;
       bfd_boolean override;
       bfd_boolean common;
       unsigned int old_alignment;
@@ -3997,6 +4002,7 @@ error_free_dyn:
 
       size_change_ok = FALSE;
       type_change_ok = bed->type_change_ok;
+      old_weak = FALSE;
       old_alignment = 0;
       old_bfd = NULL;
       new_sec = sec;
@@ -4142,7 +4148,7 @@ error_free_dyn:
            }
 
          if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec,
-                                     &value, &old_alignment,
+                                     &value, &old_weak, &old_alignment,
                                      sym_hash, &skip, &override,
                                      &type_change_ok, &size_change_ok))
            goto error_free_vers;
@@ -4204,10 +4210,11 @@ error_free_dyn:
       if (is_elf_hash_table (htab))
        h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
 
+      new_weak = (flags & BSF_WEAK) != 0;
       new_weakdef = FALSE;
       if (dynamic
          && definition
-         && (flags & BSF_WEAK) != 0
+         && new_weak
          && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
          && is_elf_hash_table (htab)
          && h->u.weakdef == NULL)
@@ -4336,7 +4343,9 @@ error_free_dyn:
            h->size = h->root.u.c.size;
 
          if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
-             && (definition || h->type == STT_NOTYPE))
+             && ((definition && !new_weak)
+                 || (old_weak && h->root.type == bfd_link_hash_common)
+                 || h->type == STT_NOTYPE))
            {
              unsigned int type = ELF_ST_TYPE (isym->st_info);
 
index 6623c4097175817d6d8f9e296f687c9d003394bf..be12587ff3143f0613a150544cd4dec7d736e1b5 100644 (file)
@@ -1,3 +1,24 @@
+2012-09-18  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/14591
+       * ld-elf/comm-data.exp (run_ld_link_tests): Add comm-data3a and
+       comm-data3b tests.
+
+       * ld-ifunc/ifunc.exp (run_ld_link_exec_tests): New.
+
+       * ld-elf/comm-data3.sd: New file.
+       * ld-elf/comm-data3a.s: Likewise.
+       * ld-elf/comm-data3b.s: Likewise.
+       * ld-ifunc/ifunc-17a-i386.d: Likewise.
+       * ld-ifunc/ifunc-17a-x86-64.d: Likewise.
+       * ld-ifunc/ifunc-17a.s: Likewise.
+       * ld-ifunc/ifunc-17b-i386.d: Likewise.
+       * ld-ifunc/ifunc-17b-x86-64.d: Likewise.
+       * ld-ifunc/ifunc-17b.s: Likewise.
+       * ld-ifunc/ifunc-common-1.out: Likewise.
+       * ld-ifunc/ifunc-common-1a.c: Likewise.
+       * ld-ifunc/ifunc-common-1b.c: Likewise.
+
 2012-09-10  Hans-Peter Nilsson  <hp@bitrange.com>
 
        * ld-mmix/sec-1.d, ld-mmix/sec-3.d: Force end-of-section symbols
index 2258afb5f4df68bd07b426f6b2d4c89f459caf3f..1c75f552160b0e8253f2a78ddd8d82aebab3fd93 100644 (file)
@@ -75,4 +75,24 @@ run_ld_link_tests [list \
        } \
        "comm-data" \
     ] \
+    [list \
+       "$testname 3a" \
+       "-static" \
+       "" \
+       { comm-data3a.s comm-data3b.s } \
+       { \
+           { readelf -s comm-data3.sd } \
+       } \
+       "comm-data3a" \
+    ] \
+    [list \
+       "$testname 3b" \
+       "-static" \
+       "" \
+       { comm-data3b.s comm-data3a.s } \
+       { \
+           { readelf -s comm-data3.sd } \
+       } \
+       "comm-data3b" \
+    ] \
 ]
index 3eef3a9e03afbc8c6ba60fb8ec966243f52f8aed..df913d89bdb6bcdf8989afded778dc34feef6ccc 100644 (file)
@@ -347,6 +347,27 @@ if { $verbose < 1 } {
     remote_file host delete "tmpdir/static_nonifunc_prog"
 }
 
+run_ld_link_exec_tests [] [list \
+    [list \
+       "Common symbol override ifunc test 1a" \
+       "-static" \
+       "" \
+       { ifunc-common-1a.c ifunc-common-1b.c } \
+       "ifunc-common-1a" \
+       "ifunc-common-1.out" \
+       "-g" \
+    ] \
+    [list \
+       "Common symbol override ifunc test 1b" \
+       "-static" \
+       "" \
+       { ifunc-common-1b.c ifunc-common-1a.c } \
+       "ifunc-common-1b" \
+       "ifunc-common-1.out" \
+       "-g" \
+    ] \
+]
+
 set test_list [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
 foreach t $test_list {
     # We need to strip the ".d", but can leave the dirname.