From: Simon Marchi Date: Thu, 29 Aug 2024 16:31:31 +0000 (-0400) Subject: gdb/dwarf2: cleanup includes X-Git-Tag: gdb-16-branchpoint~1023 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5afccc7e45964ed2f339c8f3ff7186a80a2bdb0;p=thirdparty%2Fbinutils-gdb.git gdb/dwarf2: cleanup includes Cleanup includes in dwarf2/*. 1. Add the necessary includes so that clangd reports no errors when opening header files. This ensures that header files include what they use. 2. Remove all includes reported as unused by clangd (except gdb-safe-ctype.h, which I think does some magic that affects what follows). Built-tested --enable-threading at "yes" and "no", since there are some portions of code gated by `#ifdef CXX_STD_THREAD`. Change-Id: I21debffcd7c2caf90f08e1e0fbba3ce30422d042 Approved-By: Tom Tromey --- diff --git a/gdb/dwarf2/abbrev-cache.c b/gdb/dwarf2/abbrev-cache.c index b87206c2c4e..7e1ff9ceb15 100644 --- a/gdb/dwarf2/abbrev-cache.c +++ b/gdb/dwarf2/abbrev-cache.c @@ -17,7 +17,6 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#include "dwarf2/read.h" #include "dwarf2/abbrev-cache.h" /* Hash function for an abbrev table. */ diff --git a/gdb/dwarf2/abbrev.c b/gdb/dwarf2/abbrev.c index 359a0094872..bae8d8b3bed 100644 --- a/gdb/dwarf2/abbrev.c +++ b/gdb/dwarf2/abbrev.c @@ -24,9 +24,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#include "dwarf2/read.h" #include "dwarf2/abbrev.h" #include "dwarf2/leb.h" +#include "dwarf2/section.h" #include "bfd.h" /* Hash function for an abbrev. */ diff --git a/gdb/dwarf2/abbrev.h b/gdb/dwarf2/abbrev.h index 1fb90fdeafa..7eda95179da 100644 --- a/gdb/dwarf2/abbrev.h +++ b/gdb/dwarf2/abbrev.h @@ -27,7 +27,11 @@ #ifndef GDB_DWARF2_ABBREV_H #define GDB_DWARF2_ABBREV_H +#include "dwarf2.h" +#include "gdbsupport/gdb-hashtab.h" +#include "gdbsupport/gdb_obstack.h" #include "hashtab.h" +#include "types.h" struct attr_abbrev { diff --git a/gdb/dwarf2/attribute.h b/gdb/dwarf2/attribute.h index 3b971adbe2a..115d006e271 100644 --- a/gdb/dwarf2/attribute.h +++ b/gdb/dwarf2/attribute.h @@ -29,7 +29,6 @@ #include "dwarf2.h" #include "dwarf2/types.h" -#include /* Blocks are a bunch of untyped bytes. */ struct dwarf_block diff --git a/gdb/dwarf2/cooked-index.c b/gdb/dwarf2/cooked-index.c index c9e46af32ae..41aa9d0da58 100644 --- a/gdb/dwarf2/cooked-index.c +++ b/gdb/dwarf2/cooked-index.c @@ -24,6 +24,7 @@ #include "cp-support.h" #include "c-lang.h" #include "ada-lang.h" +#include "dwarf2/tag.h" #include "event-top.h" #include "exceptions.h" #include "split-name.h" @@ -32,6 +33,8 @@ #include #include "gdbsupport/gdb-safe-ctype.h" #include "gdbsupport/selftest.h" +#include "gdbsupport/task-group.h" +#include "gdbsupport/thread-pool.h" #include #include #include "cli/cli-cmds.h" diff --git a/gdb/dwarf2/cooked-index.h b/gdb/dwarf2/cooked-index.h index fa8b2fc7ec7..e9f13c97be0 100644 --- a/gdb/dwarf2/cooked-index.h +++ b/gdb/dwarf2/cooked-index.h @@ -24,22 +24,16 @@ #include "dwarf2/types.h" #include "symtab.h" #include "hashtab.h" -#include "dwarf2/index-common.h" -#include #include "quick-symbol.h" #include "gdbsupport/gdb_obstack.h" #include "addrmap.h" #include "gdbsupport/iterator-range.h" -#include "gdbsupport/thread-pool.h" #include "dwarf2/mapped-index.h" #include "dwarf2/read.h" -#include "dwarf2/tag.h" #include "dwarf2/abbrev-cache.h" #include "dwarf2/parent-map.h" #include "gdbsupport/range-chain.h" -#include "gdbsupport/task-group.h" #include "complaints.h" -#include "run-on-main-thread.h" #if CXX_STD_THREAD #include diff --git a/gdb/dwarf2/dwz.h b/gdb/dwarf2/dwz.h index 5e6c1fa93a9..3ec3af1a819 100644 --- a/gdb/dwarf2/dwz.h +++ b/gdb/dwarf2/dwz.h @@ -25,6 +25,7 @@ #include "dwarf2/section.h" struct dwarf2_per_bfd; +struct dwarf2_per_objfile; /* This represents a '.dwz' file. */ diff --git a/gdb/dwarf2/frame-tailcall.c b/gdb/dwarf2/frame-tailcall.c index c4890682274..6ecf8a0b15d 100644 --- a/gdb/dwarf2/frame-tailcall.c +++ b/gdb/dwarf2/frame-tailcall.c @@ -22,9 +22,7 @@ #include "dwarf2/frame-tailcall.h" #include "dwarf2/loc.h" #include "frame-unwind.h" -#include "block.h" #include "hashtab.h" -#include "gdbtypes.h" #include "regcache.h" #include "value.h" #include "dwarf2/frame.h" diff --git a/gdb/dwarf2/frame.c b/gdb/dwarf2/frame.c index 9ebf3ac4ac4..79ef065bfcb 100644 --- a/gdb/dwarf2/frame.c +++ b/gdb/dwarf2/frame.c @@ -25,7 +25,6 @@ #include "frame.h" #include "frame-base.h" #include "frame-unwind.h" -#include "gdbcore.h" #include "gdbtypes.h" #include "symtab.h" #include "objfiles.h" @@ -37,7 +36,6 @@ #include "dwarf2/frame.h" #include "dwarf2/read.h" #include "dwarf2/public.h" -#include "ax.h" #include "dwarf2/loc.h" #include "dwarf2/frame-tailcall.h" #include "gdbsupport/gdb_binary_search.h" diff --git a/gdb/dwarf2/index-cache.c b/gdb/dwarf2/index-cache.c index c11b0164aa4..a04d5d662d8 100644 --- a/gdb/dwarf2/index-cache.c +++ b/gdb/dwarf2/index-cache.c @@ -28,8 +28,6 @@ #include "dwarf2/index-write.h" #include "dwarf2/read.h" #include "dwarf2/dwz.h" -#include "objfiles.h" -#include "gdbsupport/selftest.h" #include #include #include "run-on-main-thread.h" diff --git a/gdb/dwarf2/index-cache.h b/gdb/dwarf2/index-cache.h index 95f217ed961..08a2d56493c 100644 --- a/gdb/dwarf2/index-cache.h +++ b/gdb/dwarf2/index-cache.h @@ -20,9 +20,7 @@ #ifndef DWARF_INDEX_CACHE_H #define DWARF_INDEX_CACHE_H -#include "dwarf2/index-common.h" #include "gdbsupport/array-view.h" -#include "symfile.h" class dwarf2_per_bfd; class index_cache; diff --git a/gdb/dwarf2/index-write.c b/gdb/dwarf2/index-write.c index 2a50e3b6c2d..a845d878715 100644 --- a/gdb/dwarf2/index-write.c +++ b/gdb/dwarf2/index-write.c @@ -28,7 +28,6 @@ #include "gdbsupport/gdb_unlinker.h" #include "gdbsupport/pathstuff.h" #include "gdbsupport/scoped_fd.h" -#include "complaints.h" #include "dwarf2/index-common.h" #include "dwarf2/cooked-index.h" #include "dwarf2.h" @@ -44,9 +43,7 @@ #include #include -#include #include -#include #include #include diff --git a/gdb/dwarf2/line-header.h b/gdb/dwarf2/line-header.h index c068dff70a3..7da59725c98 100644 --- a/gdb/dwarf2/line-header.h +++ b/gdb/dwarf2/line-header.h @@ -20,6 +20,10 @@ #ifndef DWARF2_LINE_HEADER_H #define DWARF2_LINE_HEADER_H +#include "dwarf2/types.h" + +struct dwarf2_per_objfile; + /* dir_index is 1-based in DWARF 4 and before, and is 0-based in DWARF 5 and later. */ typedef int dir_index; diff --git a/gdb/dwarf2/loc.c b/gdb/dwarf2/loc.c index 80c86bb850f..3a47805ab3a 100644 --- a/gdb/dwarf2/loc.c +++ b/gdb/dwarf2/loc.c @@ -41,7 +41,6 @@ #include "dwarf2/frame.h" #include "dwarf2/leb.h" #include "compile/compile.h" -#include "gdbsupport/selftest.h" #include #include #include diff --git a/gdb/dwarf2/macro.h b/gdb/dwarf2/macro.h index 586f5d5ee9a..7ef2134b3a2 100644 --- a/gdb/dwarf2/macro.h +++ b/gdb/dwarf2/macro.h @@ -21,6 +21,8 @@ #define GDB_DWARF2_MACRO_H struct buildsym_compunit; +struct dwarf2_per_objfile; +struct dwarf2_section_info; extern void dwarf_decode_macros (dwarf2_per_objfile *per_objfile, buildsym_compunit *builder, diff --git a/gdb/dwarf2/mapped-index.h b/gdb/dwarf2/mapped-index.h index b4f6483ea92..e7dd8e92507 100644 --- a/gdb/dwarf2/mapped-index.h +++ b/gdb/dwarf2/mapped-index.h @@ -20,7 +20,9 @@ #ifndef GDB_DWARF2_MAPPED_INDEX_H #define GDB_DWARF2_MAPPED_INDEX_H +#include "dwarf2/index-common.h" #include "language.h" +#include "quick-symbol.h" /* An index into a (C++) symbol name component in a symbol name as recorded in the mapped_index's symbol table. For each C++ symbol diff --git a/gdb/dwarf2/parent-map.h b/gdb/dwarf2/parent-map.h index f070d505356..5a94bd9beff 100644 --- a/gdb/dwarf2/parent-map.h +++ b/gdb/dwarf2/parent-map.h @@ -20,7 +20,9 @@ #ifndef GDB_DWARF2_PARENT_MAP_H #define GDB_DWARF2_PARENT_MAP_H -#include +#include "addrmap.h" +#include "dwarf2/types.h" +#include "gdbsupport/gdb_obstack.h" class cooked_index_entry; diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index 6c503c62941..769ca91facc 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -48,6 +48,7 @@ #include "bfd.h" #include "elf-bfd.h" #include "event-top.h" +#include "gdbsupport/task-group.h" #include "symtab.h" #include "gdbtypes.h" #include "objfiles.h" @@ -70,7 +71,6 @@ #include "go-lang.h" #include "valprint.h" #include "gdbcore.h" -#include "gdb/gdb-index.h" #include "gdb_bfd.h" #include "f-lang.h" #include "source.h" @@ -92,7 +92,6 @@ #include #include "dwarf2/abbrev-cache.h" #include "cooked-index.h" -#include "split-name.h" #include "gdbsupport/thread-pool.h" #include "run-on-main-thread.h" #include "dwarf2/parent-map.h" diff --git a/gdb/dwarf2/read.h b/gdb/dwarf2/read.h index 40e1f555b77..b23972b7a4e 100644 --- a/gdb/dwarf2/read.h +++ b/gdb/dwarf2/read.h @@ -28,7 +28,6 @@ #include "dwarf2/mapped-index.h" #include "dwarf2/section.h" #include "dwarf2/cu.h" -#include "filename-seen-cache.h" #include "gdbsupport/gdb_obstack.h" #include "gdbsupport/hash_enum.h" #include "gdbsupport/function-view.h"