[PATCH] D63588: [llvm-nm] Generalize symbol types 'N' and 'n'
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 20 00:04:58 PDT 2019
MaskRay updated this revision to Diff 205743.
MaskRay added a comment.
Improve the test
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D63588/new/
https://reviews.llvm.org/D63588
Files:
test/tools/llvm-nm/nonalloc.test
tools/llvm-nm/llvm-nm.cpp
Index: tools/llvm-nm/llvm-nm.cpp
===================================================================
--- tools/llvm-nm/llvm-nm.cpp
+++ tools/llvm-nm/llvm-nm.cpp
@@ -907,22 +907,17 @@
return 'b';
if (Flags & ELF::SHF_ALLOC)
return Flags & ELF::SHF_WRITE ? 'd' : 'r';
- }
- if (SymI->getELFType() == ELF::STT_SECTION) {
- Expected<StringRef> Name = SymI->getName();
- if (!Name) {
- consumeError(Name.takeError());
+ StringRef SecName;
+ if (SecI->getName(SecName))
return '?';
- }
- return StringSwitch<char>(*Name)
- .StartsWith(".debug", 'N')
- .StartsWith(".note", 'n')
- .StartsWith(".comment", 'n')
- .Default('?');
+ if (SecName.startswith(".debug"))
+ return 'N';
+ if (!(Flags & ELF::SHF_WRITE))
+ return 'n';
}
- return 'n';
+ return '?';
}
static char getSymbolNMTypeChar(COFFObjectFile &Obj, symbol_iterator I) {
Index: test/tools/llvm-nm/nonalloc.test
===================================================================
--- test/tools/llvm-nm/nonalloc.test
+++ test/tools/llvm-nm/nonalloc.test
@@ -1,7 +1,11 @@
# RUN: yaml2obj %s -o %t
# RUN: llvm-nm --no-sort %t | FileCheck %s
-# CHECK: n debug_info_main
+# CHECK: N debug_info_main
+# CHECK: n readonly_local
+# CHECK: ? writable_local
+# CHECK: N readonly_global
+# CHECK: ? writable_global
!ELF
FileHeader:
@@ -12,6 +16,22 @@
Sections:
- Name: .debug_info
Type: SHT_PROGBITS
+ - Name: .readonly
+ Type: SHT_PROGBITS
+ - Name: .writable
+ Type: SHT_PROGBITS
+ Flags: [SHF_WRITE]
Symbols:
- Name: debug_info_main
Section: .debug_info
+ - Name: readonly_local
+ Section: .readonly
+ - Name: writable_local
+ Section: .writable
+
+ - Name: readonly_global
+ Binding: STB_GLOBAL
+ Section: .readonly
+ - Name: writable_global
+ Binding: STB_GLOBAL
+ Section: .writable
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63588.205743.patch
Type: text/x-patch
Size: 1912 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190620/b4c51b0c/attachment.bin>
More information about the llvm-commits
mailing list