From 7d1cbe5a8a63cacee6ecdb01b05a2ded09bbc641 Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Fri, 19 Jun 2020 19:06:14 -0700 Subject: [PATCH] llvm-nm: Implement --special-syms. Differential Revision: https://reviews.llvm.org/D82251 --- docs/CommandGuide/llvm-nm.rst | 2 +- docs/ReleaseNotes.rst | 4 ++++ test/MC/AArch64/mapping-within-section.s | 2 +- test/tools/llvm-nm/AArch64/special-syms.test | 7 ++----- test/tools/llvm-nm/debug-syms.test | 4 ++-- tools/llvm-nm/llvm-nm.cpp | 19 ++++++++++++++++--- 6 files changed, 26 insertions(+), 12 deletions(-) diff --git a/docs/CommandGuide/llvm-nm.rst b/docs/CommandGuide/llvm-nm.rst index c47be8034ef..607c871ff7a 100644 --- a/docs/CommandGuide/llvm-nm.rst +++ b/docs/CommandGuide/llvm-nm.rst @@ -219,7 +219,7 @@ OPTIONS .. option:: --special-syms - Ignored. For GNU compatibility only. + Do not filter special symbols from the output. .. option:: --undefined-only, -u diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index 7d71d0c58a4..8d8da954ece 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -187,6 +187,10 @@ Changes to the LLVM tools * Added an option (--show-section-sizes) to llvm-dwarfdump to show the sizes of all debug sections within a file. +* llvm-nm now implements the flag ``--special-syms`` and will filter out special + symbols, i.e. mapping symbols on ARM and AArch64, by default. This matches + the GNU nm behavior. + Changes to LLDB =============== diff --git a/test/MC/AArch64/mapping-within-section.s b/test/MC/AArch64/mapping-within-section.s index c7c3bbe08be..07a2d3cc0fe 100644 --- a/test/MC/AArch64/mapping-within-section.s +++ b/test/MC/AArch64/mapping-within-section.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple=aarch64-none-linux-gnu -filetype=obj %s | llvm-nm - | FileCheck %s +// RUN: llvm-mc -triple=aarch64-none-linux-gnu -filetype=obj %s | llvm-nm --special-syms - | FileCheck %s .text // $x at 0x0000 diff --git a/test/tools/llvm-nm/AArch64/special-syms.test b/test/tools/llvm-nm/AArch64/special-syms.test index 8322cc4df86..75d1dfc3b6c 100644 --- a/test/tools/llvm-nm/AArch64/special-syms.test +++ b/test/tools/llvm-nm/AArch64/special-syms.test @@ -1,10 +1,7 @@ +## Test --special-syms flag. # RUN: yaml2obj %s -o %t -# Test --special-syms flag. Currently this flag is a no-op, so outputs with and without -# this flag should be identical. GNU nm doesn't show ARM and AArch64 special symbols -# without --special-syms, so this test is to be changed when/if we decide to implement -# GNU nm-like behavior in llvm-nm -# RUN: llvm-nm %t | FileCheck %s +# RUN: llvm-nm %t | count 0 # RUN: llvm-nm %t --special-syms | FileCheck %s !ELF diff --git a/test/tools/llvm-nm/debug-syms.test b/test/tools/llvm-nm/debug-syms.test index e58176588d3..0f970916499 100644 --- a/test/tools/llvm-nm/debug-syms.test +++ b/test/tools/llvm-nm/debug-syms.test @@ -1,6 +1,6 @@ # RUN: yaml2obj %s -o %t.o -# RUN: llvm-nm --debug-syms %t.o | FileCheck %s --implicit-check-not {{.}} --check-prefix SYMBOL -# RUN: llvm-nm -a %t.o | FileCheck %s --implicit-check-not {{.}} --check-prefix SYMBOL +# RUN: llvm-nm --special-syms --debug-syms %t.o | FileCheck %s --implicit-check-not {{.}} --check-prefix SYMBOL +# RUN: llvm-nm --special-syms -a %t.o | FileCheck %s --implicit-check-not {{.}} --check-prefix SYMBOL # SYMBOL: 0000000000000000 n $a # SYMBOL-NEXT: 0000000000000000 n $d diff --git a/tools/llvm-nm/llvm-nm.cpp b/tools/llvm-nm/llvm-nm.cpp index 4385e2aaa28..ecd1e21e15b 100644 --- a/tools/llvm-nm/llvm-nm.cpp +++ b/tools/llvm-nm/llvm-nm.cpp @@ -182,8 +182,10 @@ cl::opt JustSymbolName("just-symbol-name", cl::alias JustSymbolNames("j", cl::desc("Alias for --just-symbol-name"), cl::aliasopt(JustSymbolName), cl::Grouping); -cl::opt SpecialSyms("special-syms", - cl::desc("No-op. Used for GNU compatibility only")); +cl::opt + SpecialSyms("special-syms", + cl::desc("Do not filter special symbols from the output"), + cl::cat(NMCat)); cl::list SegSect("s", cl::multi_val(2), cl::ZeroOrMore, cl::value_desc("segment section"), cl::Hidden, @@ -733,6 +735,16 @@ static void writeFileName(raw_ostream &S, StringRef ArchiveName, } } +static bool isSpecialSym(SymbolicFile &Obj, StringRef Name) { + auto *ELFObj = dyn_cast(&Obj); + if (!ELFObj) + return false; + uint16_t EMachine = ELFObj->getEMachine(); + if (EMachine != ELF::EM_ARM && EMachine != ELF::EM_AARCH64) + return false; + return !Name.empty() && Name[0] == '$'; +} + static void sortAndPrintSymbolList(SymbolicFile &Obj, bool printName, StringRef ArchiveName, StringRef ArchitectureName) { @@ -822,7 +834,8 @@ static void sortAndPrintSymbolList(SymbolicFile &Obj, bool printName, bool Global = SymFlags & SymbolRef::SF_Global; bool Weak = SymFlags & SymbolRef::SF_Weak; if ((!Undefined && UndefinedOnly) || (Undefined && DefinedOnly) || - (!Global && ExternalOnly) || (Weak && NoWeakSymbols)) + (!Global && ExternalOnly) || (Weak && NoWeakSymbols) || + (!SpecialSyms && isSpecialSym(Obj, Name))) continue; if (PrintFileName) writeFileName(outs(), ArchiveName, ArchitectureName);