aboutsummaryrefslogtreecommitdiff
path: root/ld/plugin.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2024-07-09 01:30:19 -0700
committerH.J. Lu <hjl.tools@gmail.com>2024-07-09 01:37:35 -0700
commiteb7892c4019bd5d00175c0eb80eb0c5a47a42ca1 (patch)
tree4b2c8a1afc827974d57319b37aadf0cf8747b478 /ld/plugin.c
parentde9dfbb3859df7cfd0d3b70461459f521e2208e5 (diff)
downloadgdb-eb7892c4019bd5d00175c0eb80eb0c5a47a42ca1.zip
gdb-eb7892c4019bd5d00175c0eb80eb0c5a47a42ca1.tar.gz
gdb-eb7892c4019bd5d00175c0eb80eb0c5a47a42ca1.tar.bz2
LTO: Properly check wrapper symbol
Add wrapper_symbol to bfd_link_hash_entry and set it to true for wrapper symbol. Set wrap_status to wrapper if wrapper_symbol is true in LTO. Note: Calling unwrap_hash_lookup to check for the wrapper symbol works only when there is a definition for the wrapped symbol since references to the wrapped symbol have been redirected to the wrapper symbol. bfd/ PR ld/31956 * linker.c (bfd_wrapped_link_hash_lookup): Set wrapper_symbol for wrapper symbol. include/ PR ld/31956 * bfdlink.h (bfd_link_hash_entry): Add wrapper_symbol. ld/ PR ld/31956 * plugin.c (get_symbols): Set wrap_status to wrapper if wrapper_symbol is set. * testsuite/ld-plugin/lto.exp: Run PR ld/31956 tests. * testsuite/ld-plugin/pr31956a.c: New file. * testsuite/ld-plugin/pr31956b.c: Likewise. Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'ld/plugin.c')
-rw-r--r--ld/plugin.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/ld/plugin.c b/ld/plugin.c
index 8107841..03ee988 100644
--- a/ld/plugin.c
+++ b/ld/plugin.c
@@ -777,14 +777,9 @@ get_symbols (const void *handle, int nsyms, struct ld_plugin_symbol *syms,
if (syms[n].def != LDPK_UNDEF && syms[n].def != LDPK_WEAKUNDEF)
{
blhe = h;
- if (blhe && link_info.wrap_hash != NULL)
- {
- /* Check if a symbol is a wrapper symbol. */
- struct bfd_link_hash_entry *unwrap
- = unwrap_hash_lookup (&link_info, (bfd *) abfd, blhe);
- if (unwrap && unwrap != h)
- wrap_status = wrapper;
- }
+ /* Check if a symbol is a wrapper symbol. */
+ if (blhe && blhe->wrapper_symbol)
+ wrap_status = wrapper;
}
else
{