]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Properly mark the plugin symbol undefined
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 6 Feb 2015 12:25:36 +0000 (04:25 -0800)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 6 Feb 2015 12:29:35 +0000 (04:29 -0800)
Mark the unused plugin defined symbol in elf_link_input_bfd instead of
_bfd_elf_fix_symbol_flags.  Limit the PR ld/12365 test to x86 targets.

bfd/

PR ld/12365
PR ld/14272
* elflink.c (_bfd_elf_fix_symbol_flags): Revert the last change.
(elf_link_input_bfd): Mark the plugin symbol undefined if it is
referenced from a non-IR file.

ld/testsuite/

PR ld/12365
PR ld/14272
* ld-plugin/lto.exp: Run the PR ld/12365 test only for x86 targets.
* ld-plugin/plugin-7.d: Updated.
* ld-plugin/plugin-8.d: Likewise.

bfd/ChangeLog
bfd/elflink.c
ld/testsuite/ChangeLog
ld/testsuite/ld-plugin/lto.exp
ld/testsuite/ld-plugin/plugin-7.d
ld/testsuite/ld-plugin/plugin-8.d

index f12a610b6dec5dda94875cba1513a87030080f14..1220455896a2da8467ef17a70f33acfe2ece1595 100644 (file)
@@ -1,3 +1,11 @@
+2015-02-06  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/12365
+       PR ld/14272
+       * elflink.c (_bfd_elf_fix_symbol_flags): Revert the last change.
+       (elf_link_input_bfd): Mark the plugin symbol undefined if it is
+       referenced from a non-IR file.
+
 2015-02-06  Nick Clifton  <nickc@redhat.com>
 
        PR binutils/17512
index 604cfb6d8ff5dfcb9d95f32881bd872e95c5fb4d..e8c4ad48c46591a32d6836f08ad225c9b9de5e3a 100644 (file)
@@ -2423,20 +2423,6 @@ _bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
     }
   else
     {
-      /* If a plugin symbol is referenced from a non-IR file, mark
-         the symbol as undefined, except for symbol for linker
-        created section.  */
-      if (h->root.non_ir_ref
-         && (h->root.type == bfd_link_hash_defined
-             || h->root.type == bfd_link_hash_defweak)
-         && (h->root.u.def.section->flags & SEC_LINKER_CREATED) == 0
-         && h->root.u.def.section->owner != NULL
-         && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)
-       {
-         h->root.type = bfd_link_hash_undefined;
-         h->root.u.undef.abfd = h->root.u.def.section->owner;
-       }
-
       /* Unfortunately, NON_ELF is only correct if the symbol
         was first seen in a non-ELF file.  Fortunately, if the symbol
         was first seen in an ELF file, we're probably OK unless the
@@ -9807,6 +9793,22 @@ elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
 
                  s_type = h->type;
 
+                 /* If a plugin symbol is referenced from a non-IR file,
+                    mark the symbol as undefined, except for symbol for
+                    linker created section.  */
+                 if (h->root.non_ir_ref
+                     && (h->root.type == bfd_link_hash_defined
+                         || h->root.type == bfd_link_hash_defweak)
+                     && (h->root.u.def.section->flags
+                         & SEC_LINKER_CREATED) == 0
+                     && h->root.u.def.section->owner != NULL
+                     && (h->root.u.def.section->owner->flags
+                         & BFD_PLUGIN) != 0)
+                   {
+                     h->root.type = bfd_link_hash_undefined;
+                     h->root.u.undef.abfd = h->root.u.def.section->owner;
+                   }
+
                  ps = NULL;
                  if (h->root.type == bfd_link_hash_defined
                      || h->root.type == bfd_link_hash_defweak)
index 1041bd1b3d810bf7e10831f30b1029b7ef86c055..075016bf757caf1cbec364de94b16ca7074b6145 100644 (file)
@@ -1,3 +1,11 @@
+2015-02-06  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/12365
+       PR ld/14272
+       * ld-plugin/lto.exp: Run the PR ld/12365 test only for x86 targets.
+       * ld-plugin/plugin-7.d: Updated.
+       * ld-plugin/plugin-8.d: Likewise.
+
 2015-02-04  H.J. Lu  <hongjiu.lu@intel.com>
 
        *  ld-plugin/lto.exp: Pass -flto-partition=none to the PR
index 065e1bbcd087774ae9bcdca4944caf1f15a9dc1c..6d9500bcf7f8a92edae8d1bc7137eff43e85eae8 100644 (file)
@@ -383,12 +383,23 @@ if {![string match "" $catch_output]} {
 
 if { [at_least_gcc_version 4 7] } {
     # Check expected LTO linker errors.
-    set testname "PR ld/12365"
-    set exec_output [run_host_cmd "$CC" "-O2 -flto -flto-partition=none -fuse-linker-plugin tmpdir/pr12365a.o tmpdir/pr12365b.o tmpdir/pr12365c.o"]
-    if { [ regexp "undefined reference to `my_bcopy'" $exec_output ] } {
-       pass $testname
-    } {
-       fail $testname
+    # Since the asm symbol name hack in pr12365b.c doesn't work on all
+    # targets, run PR ld/12365 tests only for known targets.
+    if { ([istarget "i?86-*-elf*"]
+          || (([istarget "i?86-*-linux*"] || [istarget "i?86-*-gnu*"])
+               && ![istarget "*-*-*aout*"]
+               && ![istarget "*-*-*oldld*"])
+          || [istarget "i?86-*-nacl*"]
+          || [istarget "x86_64-*-nacl*"]
+          || [istarget "x86_64-*-linux*"]
+          || [istarget "amd64-*-linux*"]) } {
+       set testname "PR ld/12365"
+       set exec_output [run_host_cmd "$CC" "-O2 -flto -flto-partition=none -fuse-linker-plugin tmpdir/pr12365a.o tmpdir/pr12365b.o tmpdir/pr12365c.o"]
+       if { [ regexp "undefined reference to `my_bcopy'" $exec_output ] } {
+           pass $testname
+       } {
+           fail $testname
+       }
     }
     set testname "PR ld/12942 (3)"
     set exec_output [run_host_cmd "$CXX" "-O2 -flto -fuse-linker-plugin tmpdir/pr12942b.o tmpdir/pr12942a.o"]
index 28a7036c720456395e2c335719459bcd32ad346f..d1c159c4f311d6164965d79cb28a7b3c030f3375 100644 (file)
@@ -28,6 +28,7 @@ hook called: claim_file tmpdir/func.o \[@0/.* CLAIMED
 hook called: claim_file tmpdir/text.o \[@0/.* not claimed
 #...
 hook called: all symbols read.
-`_?func' referenced in section `\.text.*' of tmpdir/main.o: defined in discarded section .*
+tmpdir/main.o: In function `main':
+.*main.c.*: undefined reference to `func'
 hook called: cleanup.
 #...
index 8170b542c930dc2c7f89a040ceb305c546bcceea..2c7a15b24142824bb9985f34bf43a7aaa7353d9e 100644 (file)
@@ -32,6 +32,7 @@ hook called: claim_file tmpdir/text.o \[@0/.* not claimed
 hook called: all symbols read.
 Sym: '_?func' Resolution: LDPR_PREVAILING_DEF
 Sym: '_?func2' Resolution: LDPR_PREVAILING_DEF_IRONLY
-`_?func' referenced in section `\.text.*' of tmpdir/main.o: defined in discarded section .*
+tmpdir/main.o: In function `main':
+.*main.c.*: undefined reference to `func'
 hook called: cleanup.
 #...