aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1994-09-14 16:28:41 +0000
committerIan Lance Taylor <ian@airs.com>1994-09-14 16:28:41 +0000
commit1896790ef9595f05c97424f6f7914c0c15d402ea (patch)
treeb223467a1f04f20163f9162604c4c1768a89e9ed /binutils
parent335129a9777b078b3e9945398daa1f61e3034087 (diff)
downloadgdb-1896790ef9595f05c97424f6f7914c0c15d402ea.zip
gdb-1896790ef9595f05c97424f6f7914c0c15d402ea.tar.gz
gdb-1896790ef9595f05c97424f6f7914c0c15d402ea.tar.bz2
* nm.c: Include libiberty.h.
(sort_by_size): New static variable. (long_options): Add --size-sort. (usage): Mention --size-sort. (numeric_forward): Make static. Change from void * to PTR. (numeric_reverse): Likewise. (non_numeric_forward, non_numeric_reverse): Likewise. (sorters): Change declaration from void * to PTR. (size_forward, sort_symbol_by_size): New static functions. (display_rel_file): Handle sort_by_size. (filter_symbols): If sort_by_size, discard absolute and undefined symbols. * binutils.texi (nm): Document --size-sort. * nm.1: Document --size-sort. PR 3611.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog19
-rw-r--r--binutils/binutils.texi9
-rw-r--r--binutils/nm.17
3 files changed, 31 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 24b082b..727c1d8 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,20 @@
+Wed Sep 14 12:19:07 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
+
+ * nm.c: Include libiberty.h.
+ (sort_by_size): New static variable.
+ (long_options): Add --size-sort.
+ (usage): Mention --size-sort.
+ (numeric_forward): Make static. Change from void * to PTR.
+ (numeric_reverse): Likewise.
+ (non_numeric_forward, non_numeric_reverse): Likewise.
+ (sorters): Change declaration from void * to PTR.
+ (size_forward, sort_symbol_by_size): New static functions.
+ (display_rel_file): Handle sort_by_size.
+ (filter_symbols): If sort_by_size, discard absolute and undefined
+ symbols.
+ * binutils.texi (nm): Document --size-sort.
+ * nm.1: Document --size-sort.
+
Tue Sep 13 21:06:06 1994 Jeff Law (law@snake.cs.utah.edu)
* objcopy.c (copy_main): Initialize input_filename and
@@ -76,7 +93,6 @@ Mon Jul 25 12:58:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* objdump.c (objdump_print_address): Correct handling of end of
symbols when looking for next symbol with a different value.
-
Fri Jul 22 16:48:34 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
* nm.c (numeric_forward): Treat undefined symbols as "less than"
@@ -89,7 +105,6 @@ Fri Jul 22 16:48:34 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
spaces equivalent to the width of a printed bfd_vma, rather than
assuming that 8 will look right.
-
Fri Jul 22 10:36:50 1994 Steve Chamberlain (sac@jonny.cygnus.com)
* coffgrok.c (doit): Zero all fields of new structure.
diff --git a/binutils/binutils.texi b/binutils/binutils.texi
index aeb67fb..4dc1dde 100644
--- a/binutils/binutils.texi
+++ b/binutils/binutils.texi
@@ -567,9 +567,9 @@ The GNU linker @code{ld} is now described in a separate manual.
@smallexample
nm [ -a | --debug-syms ] [ -g | --extern-only ]
[ -B ] [ -C | --demangle ] [ -D | --dynamic ]
- [ -s | --print-armap ] [ -A | -o | --print-file-name ]
+ [ -s | --print-armap ] [ -A | -o | --print-file-name ]
[ -n | -v | --numeric-sort ] [ -p | --no-sort ]
- [ -r | --reverse-sort ] [ -u | --undefined-only ]
+ [ -r | --reverse-sort ] [ --size-sort ] [ -u | --undefined-only ]
[ -t @var{radix} | --radix=@var{radix} ] [ -P | --portability ]
[ --target=@var{bfdname} ] [ -f @var{format} | --format=@var{format} ]
[ --no-demangle ] [ -V | --version ] [ --help ] [ @var{objfile}@dots{} ]
@@ -706,6 +706,11 @@ contain definitions for which names.
Reverse the order of the sort (whether numeric or alphabetic); let the
last come first.
+@item --size-sort
+Sort symbols by size. The size is computed as the difference between
+the value of the symbol and the value of the symbol with the next higher
+value. The size of the symbol is printed, rather than the value.
+
@item -t @var{radix}
@itemx --radix=@var{radix}
Use @var{radix} as the radix for printing the symbol values. It must be
diff --git a/binutils/nm.1 b/binutils/nm.1
index aedabb4..4d3b3da 100644
--- a/binutils/nm.1
+++ b/binutils/nm.1
@@ -25,6 +25,7 @@ nm \- list symbols from object files.
.RB "[\|" \-n | \-\-numeric\-sort "\|]"
.RB "[\|" \-p | \-\-no\-sort "\|]"
.RB "[\|" \-r | \-\-reverse\-sort "\|]"
+.RB "[\|" \-\-size\-sort "\|]"
.RB "[\|" \-u | \-\-undefined\-only "\|]"
.RB "[\|" \-\-help "\|]"
.RB "[\|" \-\-version "\|]"
@@ -146,6 +147,12 @@ Reverse the sense of the sort (whether numeric or alphabetic); let the
last come first.
.TP
+.B \-\-size\-sort
+Sort symbols by size. The size is computed as the difference between
+the value of the symbol and the value of the symbol with the next higher
+value. The size of the symbol is printed, rather than the value.
+
+.TP
.B "\-t \fIradix"
.TP
.B "\-\-radix=\fIradix"