public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH RFC 0/5] Add a DWARF index cache
@ 2018-05-09 21:27 Simon Marchi
  2018-05-09 21:27 ` [PATCH RFC 2/5] Remove mapped_index::total_size Simon Marchi
                   ` (5 more replies)
  0 siblings, 6 replies; 20+ messages in thread
From: Simon Marchi @ 2018-05-09 21:27 UTC (permalink / raw)
  To: gdb-patches; +Cc: Simon Marchi

I made a quick and dirty prototype a while ago where GDB would automatically
save and lookup DWARF index files.  A few people told me that it was quite
useful, so I'm trying to make it suitable for merging.  I'm sending it as an
RFC first to get comments on the feature and the approach, and because there
are probably a few loose ends.  Patches 1-4 are mostly cleanup or preparatory,
the final one contains the actual feature.  The commit message of that last
patch also contains more details.

Simon Marchi (5):
  Rename some functions, index -> gdb_index
  Remove mapped_index::total_size
  Make index reading functions more modular
  Introduce scoped_mmapped_file
  Add DWARF index cache

 gdb/Makefile.in                               |   3 +
 gdb/build-id.h                                |  11 +
 gdb/common/pathstuff.c                        |  16 +
 gdb/common/pathstuff.h                        |  10 +
 gdb/common/scoped_fd.h                        |  17 +-
 gdb/common/scoped_mmapped_file.h              |  70 +++++
 gdb/dwarf-index-cache.c                       | 421 ++++++++++++++++++++++++++
 gdb/dwarf-index-cache.h                       |  86 ++++++
 gdb/dwarf-index-common.h                      |   5 +
 gdb/dwarf-index-write.c                       |  81 +++--
 gdb/dwarf-index-write.h                       |  34 +++
 gdb/dwarf2read.c                              | 257 +++++++++++-----
 gdb/dwarf2read.h                              |   5 +
 gdb/testsuite/boards/local-board.exp          |   1 +
 gdb/testsuite/gdb.base/index-cache.c          |  23 ++
 gdb/testsuite/gdb.base/index-cache.exp        | 204 +++++++++++++
 gdb/testsuite/gdb.base/maint.exp              |  23 ++
 gdb/testsuite/lib/mi-support.exp              |  16 +-
 gdb/unittests/scoped_mmapped_file-selftests.c |  95 ++++++
 19 files changed, 1270 insertions(+), 108 deletions(-)
 create mode 100644 gdb/common/scoped_mmapped_file.h
 create mode 100644 gdb/dwarf-index-cache.c
 create mode 100644 gdb/dwarf-index-cache.h
 create mode 100644 gdb/dwarf-index-write.h
 create mode 100644 gdb/testsuite/gdb.base/index-cache.c
 create mode 100644 gdb/testsuite/gdb.base/index-cache.exp
 create mode 100644 gdb/unittests/scoped_mmapped_file-selftests.c

-- 
2.7.4

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2018-07-09 20:56 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-09 21:27 [PATCH RFC 0/5] Add a DWARF index cache Simon Marchi
2018-05-09 21:27 ` [PATCH RFC 2/5] Remove mapped_index::total_size Simon Marchi
2018-05-09 23:08   ` Simon Marchi
2018-05-10 20:54   ` Tom Tromey
2018-05-18 20:26     ` Simon Marchi
2018-05-09 21:27 ` [PATCH RFC 1/5] Rename some functions, index -> gdb_index Simon Marchi
2018-05-10 20:40   ` Tom Tromey
2018-06-12  2:03     ` Simon Marchi
2018-05-09 21:27 ` [PATCH RFC 4/5] Introduce scoped_mmapped_file Simon Marchi
2018-05-10 21:04   ` Tom Tromey
2018-05-10 21:27     ` Simon Marchi
2018-05-12 15:49       ` Tom Tromey
2018-06-13  1:36       ` Simon Marchi
2018-05-09 21:27 ` [PATCH RFC 5/5] Add DWARF index cache Simon Marchi
2018-05-10 22:24   ` Tom Tromey
2018-07-09 20:56     ` Simon Marchi
2018-05-09 21:27 ` [PATCH RFC 3/5] Make index reading functions more modular Simon Marchi
2018-05-10 21:02   ` Tom Tromey
2018-05-10 21:18     ` Simon Marchi
2018-05-09 21:57 ` [PATCH RFC 0/5] Add a DWARF index cache Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).