2005-09-07 18:57:23 +00:00
|
|
|
2004-11-18 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
* dwarf2read.c: Include "top.c".
|
|
|
|
(dwarf2_has_info): Check for readnever_symbol_files.
|
|
|
|
* symfile.c (readnever_symbol_files): Define.
|
|
|
|
* top.h (readnever_symbol_files): Declare.
|
|
|
|
* main.c (captured_main): Add --readnever option.
|
|
|
|
(print_gdb_help): Ditto.
|
|
|
|
|
|
|
|
2004-11-18 Andrew Cagney <cagney@gnu.org>
|
|
|
|
|
|
|
|
* gdb.texinfo (File Options): Document --readnever.
|
|
|
|
|
2017-04-21 12:47:41 +00:00
|
|
|
Index: gdb-7.99.90.20170420/gdb/doc/gdb.texinfo
|
2008-07-14 09:09:04 +00:00
|
|
|
===================================================================
|
2017-04-21 12:47:41 +00:00
|
|
|
--- gdb-7.99.90.20170420.orig/gdb/doc/gdb.texinfo 2017-04-20 22:29:39.179740076 +0200
|
|
|
|
+++ gdb-7.99.90.20170420/gdb/doc/gdb.texinfo 2017-04-20 22:29:40.924751096 +0200
|
2017-02-27 21:30:32 +00:00
|
|
|
@@ -1037,6 +1037,12 @@
|
2005-09-07 18:57:23 +00:00
|
|
|
the default, which is to read it incrementally as it is needed.
|
|
|
|
This makes startup slower, but makes future operations faster.
|
|
|
|
|
|
|
|
+@item --readnever
|
|
|
|
+@cindex @code{--readnever}
|
|
|
|
+Do not read each symbol file's symbolic debug information. This makes
|
|
|
|
+startup faster but at the expense of not being able to perform
|
|
|
|
+symbolic debugging.
|
|
|
|
+
|
|
|
|
@end table
|
|
|
|
|
2008-07-14 09:09:04 +00:00
|
|
|
@node Mode Options
|
2017-04-21 12:47:41 +00:00
|
|
|
Index: gdb-7.99.90.20170420/gdb/main.c
|
2008-07-14 09:09:04 +00:00
|
|
|
===================================================================
|
2017-04-21 12:47:41 +00:00
|
|
|
--- gdb-7.99.90.20170420.orig/gdb/main.c 2017-04-20 22:29:39.182740095 +0200
|
|
|
|
+++ gdb-7.99.90.20170420/gdb/main.c 2017-04-20 22:29:40.925751103 +0200
|
2017-02-27 21:30:32 +00:00
|
|
|
@@ -615,6 +615,7 @@
|
2015-05-31 18:47:21 +00:00
|
|
|
{"tui", no_argument, 0, OPT_TUI},
|
2005-09-07 18:57:23 +00:00
|
|
|
{"dbx", no_argument, &dbx_commands, 1},
|
|
|
|
{"readnow", no_argument, &readnow_symbol_files, 1},
|
|
|
|
+ {"readnever", no_argument, &readnever_symbol_files, 1},
|
|
|
|
{"r", no_argument, &readnow_symbol_files, 1},
|
|
|
|
{"quiet", no_argument, &quiet, 1},
|
|
|
|
{"q", no_argument, &quiet, 1},
|
2017-04-21 12:47:41 +00:00
|
|
|
@@ -1254,6 +1255,7 @@
|
2013-08-02 20:26:03 +00:00
|
|
|
--se=FILE Use FILE as symbol file and executable file.\n\
|
|
|
|
--symbols=SYMFILE Read symbols from SYMFILE.\n\
|
2005-09-07 18:57:23 +00:00
|
|
|
--readnow Fully read symbol files on first access.\n\
|
|
|
|
+ --readnever Do not read symbol files.\n\
|
2013-08-02 20:26:03 +00:00
|
|
|
--write Set writing into executable and core files.\n\n\
|
2005-09-07 18:57:23 +00:00
|
|
|
"), stream);
|
|
|
|
fputs_unfiltered (_("\
|
2017-04-21 12:47:41 +00:00
|
|
|
Index: gdb-7.99.90.20170420/gdb/symfile.c
|
2008-07-14 09:09:04 +00:00
|
|
|
===================================================================
|
2017-04-21 12:47:41 +00:00
|
|
|
--- gdb-7.99.90.20170420.orig/gdb/symfile.c 2017-04-20 22:29:39.183740101 +0200
|
|
|
|
+++ gdb-7.99.90.20170420/gdb/symfile.c 2017-04-20 22:29:40.926751109 +0200
|
2017-02-27 21:30:32 +00:00
|
|
|
@@ -79,6 +79,7 @@
|
2005-09-07 18:57:23 +00:00
|
|
|
|
2011-01-17 15:31:43 +00:00
|
|
|
/* Global variables owned by this file. */
|
|
|
|
int readnow_symbol_files; /* Read full symbols immediately. */
|
2005-09-07 18:57:23 +00:00
|
|
|
+int readnever_symbol_files; /* Never read full symbols. */
|
|
|
|
|
2013-01-19 22:41:55 +00:00
|
|
|
/* Functions this file defines. */
|
2005-09-07 18:57:23 +00:00
|
|
|
|
2017-04-21 12:47:41 +00:00
|
|
|
Index: gdb-7.99.90.20170420/gdb/dwarf2read.c
|
2008-07-14 09:09:04 +00:00
|
|
|
===================================================================
|
2017-04-21 12:47:41 +00:00
|
|
|
--- gdb-7.99.90.20170420.orig/gdb/dwarf2read.c 2017-04-20 22:29:39.190740145 +0200
|
|
|
|
+++ gdb-7.99.90.20170420/gdb/dwarf2read.c 2017-04-20 22:29:57.973858766 +0200
|
|
|
|
@@ -73,6 +73,7 @@
|
2017-02-27 21:30:32 +00:00
|
|
|
#include "common/function-view.h"
|
2017-04-21 12:47:41 +00:00
|
|
|
#include "common/gdb_optional.h"
|
|
|
|
#include "common/underlying.h"
|
2008-12-14 14:05:20 +00:00
|
|
|
+#include "top.h"
|
2005-09-07 18:57:23 +00:00
|
|
|
|
2008-12-14 14:05:20 +00:00
|
|
|
#include <fcntl.h>
|
2015-01-08 20:53:17 +00:00
|
|
|
#include <sys/types.h>
|
2017-04-21 12:47:41 +00:00
|
|
|
@@ -2208,7 +2209,8 @@
|
2011-07-22 22:41:56 +00:00
|
|
|
(void *) names);
|
2010-07-21 21:30:20 +00:00
|
|
|
dwarf2_per_objfile->objfile = objfile;
|
2009-08-04 05:37:29 +00:00
|
|
|
}
|
2014-02-07 18:38:14 +00:00
|
|
|
- return (!dwarf2_per_objfile->info.is_virtual
|
|
|
|
+ return !readnever_symbol_files &&
|
|
|
|
+ (!dwarf2_per_objfile->info.is_virtual
|
2015-11-03 21:28:36 +00:00
|
|
|
&& dwarf2_per_objfile->info.s.section != NULL
|
2014-02-07 18:38:14 +00:00
|
|
|
&& !dwarf2_per_objfile->abbrev.is_virtual
|
2015-11-03 21:28:36 +00:00
|
|
|
&& dwarf2_per_objfile->abbrev.s.section != NULL);
|
2017-04-21 12:47:41 +00:00
|
|
|
Index: gdb-7.99.90.20170420/gdb/top.h
|
2008-07-14 09:09:04 +00:00
|
|
|
===================================================================
|
2017-04-21 12:47:41 +00:00
|
|
|
--- gdb-7.99.90.20170420.orig/gdb/top.h 2017-04-20 22:29:39.191740152 +0200
|
|
|
|
+++ gdb-7.99.90.20170420/gdb/top.h 2017-04-20 22:29:40.932751147 +0200
|
2017-02-27 21:30:32 +00:00
|
|
|
@@ -269,6 +269,7 @@
|
2005-09-07 18:57:23 +00:00
|
|
|
|
|
|
|
/* From random places. */
|
|
|
|
extern int readnow_symbol_files;
|
|
|
|
+extern int readnever_symbol_files;
|
|
|
|
|
2011-01-01 00:27:30 +00:00
|
|
|
/* Perform _initialize initialization. */
|
2005-09-07 18:57:23 +00:00
|
|
|
extern void gdb_init (char *);
|