[PATCH] D56910: [llvm-readelf]Revert --dyn-symbols behaviour to make it GNU compatible, and add new --hash-symbols switch for old behaviour

James Henderson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 18 07:49:15 PST 2019


jhenderson created this revision.
jhenderson added reviewers: grimar, rupprecht, davide, khemant, jakehehrlich, sidneym, LukeCheeseman.
Herald added a subscriber: erik.pilkington.

In rL287786 <https://reviews.llvm.org/rL287786>, the behaviour of --dyn-symbols in llvm-readelf (but not llvm-readobj) was changed to print the dynamic symbols as derived from the hash table, rather than to print the dynamic symbol table contents directly. The original change was initially submitted without review, and some comments were made on the commit mailing list implying that the new behavious is GNU compatible. I argue that it is not:

- It does not include a null symbol.
- It prints the symbols based on an order derived from the hash table.
- It prints an extra column indicating which bucket it came from. This could break parsers that expect a fixed number of columns, with the first column being the symbol index.
- If the input happens to have both .hash and .gnu.hash section, it prints interpretations of them both, resulting in most symbols being printed twice.
- There is no way of just printing the raw dynamic symbol table, because --symbols also prints the static symbol table.

This patch reverts the --dyn-symbols behaviour back to its old behaviour of just printing the contents of the dynamic symbol table, similar to what is printed by --symbols. As the hashed interpretation is still desirable to validate the hash table, it puts it under a new switch "--hash-symbols". This is a no-op on all output forms except for GNU output style for ELF. If there is no hash table, it does nothing, unlike the previous behaviour which printed the raw dynamic symbol table, since the raw dynsym is available under --dyn-symbols.

The yaml input for the test is based on that in test/tools/llvm-readobj/demangle.test, but stripped down to the bare minimum to provide a valid dynamic symbol.

Note: some LLD tests needed updating. I will put up a separate review for those.


Repository:
  rL LLVM

https://reviews.llvm.org/D56910

Files:
  test/tools/llvm-readobj/gnu-hash-symbols.test
  test/tools/llvm-readobj/gnu-symbols.test
  tools/llvm-readobj/ELFDumper.cpp
  tools/llvm-readobj/ObjDumper.h
  tools/llvm-readobj/llvm-readobj.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D56910.182512.patch
Type: text/x-patch
Size: 15586 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190118/ef95b14c/attachment.bin>


More information about the llvm-commits mailing list