aboutsummaryrefslogtreecommitdiff
path: root/binutils/objdump.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2017-01-09 16:49:48 +0000
committerNick Clifton <nickc@redhat.com>2017-01-09 16:49:48 +0000
commitcd6581da62c32a391f9a4c2c5d248a11aa6fa8f7 (patch)
tree7918cbf311b6e85e5050fa58676060a4957e5f60 /binutils/objdump.c
parent20b52c88ea31f8a0af60d6172ab0da5f2ad616ee (diff)
downloadgdb-cd6581da62c32a391f9a4c2c5d248a11aa6fa8f7.zip
gdb-cd6581da62c32a391f9a4c2c5d248a11aa6fa8f7.tar.gz
gdb-cd6581da62c32a391f9a4c2c5d248a11aa6fa8f7.tar.bz2
Speed up objdump when displaying disassembly mixed with line number and source code information.
bfd * dwarf2.c (lookup_address_in_function_table): Return early if there are no functions in the given comp unit, or if the high address of the last function in the comp unit is less than the desired address. binutils * objdump.c (display_file): Add new parameter 'last_file'. If last_file is true, do not call bfd_close at the end of the function. (main): Set the value of the last_file parameter when calling display_file.
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r--binutils/objdump.c22
1 files changed, 18 insertions, 4 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c
index f61968b..c03dfc5 100644
--- a/binutils/objdump.c
+++ b/binutils/objdump.c
@@ -3616,7 +3616,7 @@ display_any_bfd (bfd *file, int level)
}
static void
-display_file (char *filename, char *target)
+display_file (char *filename, char *target, bfd_boolean last_file)
{
bfd *file;
@@ -3635,7 +3635,18 @@ display_file (char *filename, char *target)
display_any_bfd (file, 0);
- bfd_close (file);
+ /* This is an optimization to improve the speed of objdump, especially when
+ dumping a file with lots of associated debug informatiom. Calling
+ bfd_close on such a file can take a non-trivial amount of time as there
+ are lots of lists to walk and buffers to free. This is only really
+ necessary however if we are about to load another file and we need the
+ memory back. Otherwise, if we are about to exit, then we can save (a lot
+ of) time by only doing a quick close, and allowing the OS to reclaim the
+ memory for us. */
+ if (! last_file)
+ bfd_close (file);
+ else
+ bfd_close_all_done (file);
}
int
@@ -3913,10 +3924,13 @@ main (int argc, char **argv)
else
{
if (optind == argc)
- display_file ("a.out", target);
+ display_file ("a.out", target, TRUE);
else
for (; optind < argc;)
- display_file (argv[optind++], target);
+ {
+ display_file (argv[optind], target, optind == argc - 1);
+ optind++;
+ }
}
free_only_list ();