[MC] Don't emit .symver redirected symbols to the symbol table
authorFangrui Song <maskray@google.com>
Mon, 19 Aug 2019 06:17:30 +0000 (06:17 +0000)
committerFangrui Song <maskray@google.com>
Mon, 19 Aug 2019 06:17:30 +0000 (06:17 +0000)
commit38426c114f6e50f8638bdd656f2f423151bc8eca
tree378fd850c1275e140d0662509282f3facf79b1dc
parentebb7ddc6330b28b8c7e53d4c68d3684c127a41c1
[MC] Don't emit .symver redirected symbols to the symbol table

GNU as keeps the original symbol in the symbol table for defined @ and
@@, but suppresses it in other cases (@@@ or undefined). The original
symbol is usually undesired:
In a shared object, the original symbol can be localized with a version
script, but it is hard to remove/localize in an archive:

1) a post-processing step removes the undesired original symbol
2) consumers (executable) of the archive are built with the
   version script

Moreover, it can cause linker issues like binutils PR/18703 if the
original symbol name and the base name of the versioned symbol is the
same (both ld.bfd and gold have some code to work around defined @ and
@@). In lld, if it sees f and f@v1:

  --version-script =(printf 'v1 {};') => f and f@v1
  --version-script =(printf 'v1 { f; };') => f@v1 and f@@v1

It can be argued that @@@ added on 2000-11-13 corrected the @ and @@ mistake.

This patch catches some more multiple version errors (defined @ and @@),
and consistently suppress the original symbol. This addresses all the
problems listed above.

If the user wants other aliases to the versioned symbol, they can copy
the original symbol to other symbol names with .set directive, e.g.

    .symver f, f@v1  # emit f@v1 but not f into .symtab
    .set f_impl, f   # emit f_impl into .symtab

llvm-svn: 369233
llvm/lib/MC/ELFObjectWriter.cpp
llvm/test/LTO/X86/symver-asm.ll
llvm/test/LTO/X86/symver-asm2.ll
llvm/test/MC/ARM/arm-elf-symver.s
llvm/test/MC/ELF/multiple-different-symver.s [deleted file]
llvm/test/MC/ELF/symver-multiple-version.s [new file with mode: 0644]
llvm/test/MC/ELF/symver.s
llvm/test/MC/PowerPC/ppc64-localentry-symbols.s