[llvm] r345495 - [llvm-objdump] Add '--full-contents' as alias for '-s'
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 29 03:05:39 PDT 2018
Author: jhenderson
Date: Mon Oct 29 03:05:39 2018
New Revision: 345495
URL: http://llvm.org/viewvc/llvm-project?rev=345495&view=rev
Log:
[llvm-objdump] Add '--full-contents' as alias for '-s'
This fixes PR39404.
Reviewed By: jhenderson
Patch by Xing Guo
Differential Revision: https://reviews.llvm.org/D53576
Added:
llvm/trunk/test/tools/llvm-objdump/full-contents.test
Modified:
llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp
Added: llvm/trunk/test/tools/llvm-objdump/full-contents.test
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/llvm-objdump/full-contents.test?rev=345495&view=auto
==============================================================================
--- llvm/trunk/test/tools/llvm-objdump/full-contents.test (added)
+++ llvm/trunk/test/tools/llvm-objdump/full-contents.test Mon Oct 29 03:05:39 2018
@@ -0,0 +1,47 @@
+# RUN: yaml2obj %s > %t
+# RUN: llvm-objdump --full-contents %t > %t.out1
+# RUN: llvm-objdump -s %t > %t.out2
+# RUN: cmp %t.out1 %t.out2
+# RUN: FileCheck %s --input-file=%t.out1
+
+# CHECK: .bss
+# CHECK-NEXT: <skipping contents of bss section at [0000, 0040)>
+# CHECK: .text
+# CHECK-NEXT: 0000 01234567 .#Eg
+# CHECK: .user-defined
+# CHECK-NEXT: 0000 76543210 vT2.
+# CHECK: .empty-section
+# CHECK-NEXT: <skipping contents of bss section at [0000, 0020)>
+# CHECK: .symtab
+# CHECK: .strtab
+# CHECK: .shstrtab
+
+!ELF
+FileHeader:
+ Class: ELFCLASS64
+ Data: ELFDATA2LSB
+ Type: ET_EXEC
+ Machine: EM_X86_64
+Sections:
+ - Name: .bss
+ Type: SHT_NOBITS
+ Flags: [ SHF_ALLOC ]
+ AddressAlign: 0x0000000000000010
+ Size: 64
+ - Name: .text
+ Type: SHT_PROGBITS
+ Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
+ AddressAlign: 0x0000000000000010
+ Content: "01234567"
+ Size: 4
+ - Name: .user-defined
+ Type: SHT_PROGBITS
+ Flags: [ SHF_ALLOC ]
+ AddressAlign: 0x0000000000000010
+ Content: "76543210"
+ Size: 4
+ - Name: .empty-section
+ Type: SHT_NOBITS
+ Flags: [ SHF_ALLOC ]
+ AddressAlign: 0x0000000000000010
+ Size: 32
Modified: llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp?rev=345495&r1=345494&r2=345495&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp (original)
+++ llvm/trunk/tools/llvm-objdump/llvm-objdump.cpp Mon Oct 29 03:05:39 2018
@@ -116,7 +116,11 @@ DynamicRelocationsd("R", cl::desc("Alias
cl::aliasopt(DynamicRelocations));
cl::opt<bool>
-llvm::SectionContents("s", cl::desc("Display the content of each section"));
+ llvm::SectionContents("full-contents",
+ cl::desc("Display the content of each section"));
+static cl::alias SectionContentsShort("s",
+ cl::desc("Alias for --full-contents"),
+ cl::aliasopt(SectionContents));
cl::opt<bool>
llvm::SymbolTable("t", cl::desc("Display the symbol table"));
More information about the llvm-commits
mailing list