diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-08-16 06:46:44 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-08-16 06:46:44 -0700 |
commit | eb09df162bafa67abee713be594a99bd20bd6825 (patch) | |
tree | 8cea62798489a53661cacaa7eab76421d8340463 /gas/symbols.h | |
parent | 70069e7823d412a01d983379504222c557319cbd (diff) | |
download | binutils-eb09df162bafa67abee713be594a99bd20bd6825.zip binutils-eb09df162bafa67abee713be594a99bd20bd6825.tar.gz binutils-eb09df162bafa67abee713be594a99bd20bd6825.tar.bz2 |
as: Replace the removed symbol with the versioned symbol
When a symbol removed by .symver is used in relocation and there is one
and only one versioned symbol, don't remove the symbol. Instead, mark
it to be removed and replace the removed symbol used in relocation with
the versioned symbol before generating relocation.
PR gas/28157
* symbols.c (symbol_flags): Add removed.
(symbol_entry_find): Updated.
(symbol_mark_removed): New function.
(symbol_removed_p): Likewise.
* symbols.h (symbol_mark_removed): New prototype.
(symbol_removed_p): Likewise.
* write.c (write_relocs): Call obj_fixup_removed_symbol on
removed fixp->fx_addsy and fixp->fx_subsy if defined.
(set_symtab): Don't add a symbol if symbol_removed_p returns true.
* config/obj-elf.c (elf_frob_symbol): Don't remove the symbol
if it is used on relocation. Instead, mark it as to be removed
and issue an error if the symbol has more than one versioned name.
(elf_fixup_removed_symbol): New function.
* config/obj-elf.h (elf_fixup_removed_symbol): New prototype.
(obj_fixup_removed_symbol): New.
* testsuite/gas/symver/symver11.d: Updated expected error
message.
* testsuite/gas/symver/symver16.d: New file.
* testsuite/gas/symver/symver16.s: Likewise.
Diffstat (limited to 'gas/symbols.h')
-rw-r--r-- | gas/symbols.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gas/symbols.h b/gas/symbols.h index 91f6988..317252c 100644 --- a/gas/symbols.h +++ b/gas/symbols.h @@ -193,6 +193,8 @@ extern int symbol_mri_common_p (symbolS *); extern void symbol_mark_written (symbolS *); extern void symbol_clear_written (symbolS *); extern int symbol_written_p (symbolS *); +extern void symbol_mark_removed (symbolS *); +extern int symbol_removed_p (symbolS *); extern void symbol_mark_resolved (symbolS *); extern int symbol_resolved_p (symbolS *); extern int symbol_section_p (symbolS *); |