1. May 22, 2021
    • GDB Administrator's avatar
      Automatic date update in version.in · 33d93379
      GDB Administrator authored
      33d93379
    • Tom de Vries's avatar
      [gdb/testsuite] Add target board cc-with-gnu-debuglink.exp · 778ae9cc
      Tom de Vries authored
      Add target board cc-with-gnu-debuglink.exp that splits off debuginfo into a
      seperate .debug file and links to it using .gnu_debuglink.
      
      Tested on x86_64-linux.
      
      gdb/ChangeLog:
      
      2021-05-21  Tom de Vries  <tdevries@suse.de>
      
      	PR testsuite/25047
      	* contrib/cc-with-tweaks.sh: Handle -l.
      
      gdb/testsuite/ChangeLog:
      
      2021-05-21  Tom de Vries  <tdevries@suse.de>
      
      	PR testsuite/25047
      	* boards/cc-with-gnu-debuglink.exp: New file.
      778ae9cc
  2. May 21, 2021
    • Tankut Baris Aktemur's avatar
      testsuite/gdb.dwarf2: avoid dead code in dw2-inline-with-lexical-scope.c · ca43e660
      Tankut Baris Aktemur authored
      The test in gdb.dwarf2/dw2-inline-with-lexical-scope.c fails with icc.
      The reason is, icc did not emit code for a dead statement, which in
      turn caused some labels to be collapsed.  Fix this by replacing the
      dead code with assignment to a global value.  The statement itself
      does not change the test scenario.
      
      Also fix a whitespacing problem around an assignment operator.
      
      gdb/testsuite/ChangeLog:
      2021-05-21  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
      
      	* gdb.dwarf2/dw2-inline-with-lexical-scope.c (func): Replace
      	a dead code with an assignment to a global var.  Fix a
      	whitespacing problem around an assignment operator.
      ca43e660
    • Tom de Vries's avatar
      [gdb/breakpoint] Fix assert in jit_event_handler · 6d1a09b7
      Tom de Vries authored
      Consider a minimal test-case test.c:
      ...
      int main (void) { return 0; }
      ...
      which we can compile into llvm byte code using clang:
      ...
      $ clang -g -S -emit-llvm --target=x86_64-unknown-unknown-elf test.c
      ...
      and then run using lli, which uses the llvm jit:
      ...
      $ lli test.ll
      ...
      
      If we run this under gdb, we run into an assert:
      ...
      $ gdb -q -batch -ex run --args /usr/bin/lli test.ll
      Dwarf Error: Cannot not find DIE at 0x18a936e7 \
        [from module libLLVM.so.10-10.0.1-lp152.30.4.x86_64.debug]
      
      [Thread debugging using libthread_db enabled]
      Using host libthread_db library "/lib64/libthread_db.so.1".
      src/gdb/jit.c:1178: internal-error: \
        void jit_event_handler(gdbarch*, objfile*): \
        Assertion `jiter->jiter_data != nullptr' failed.
      ...
      
      This is caused by the following.
      
      When running jit_breakpoint_re_set_internal, we first handle
      libLLVM.so.10.debug, and set a jit breakpoint.
      
      Next we handle libLLVM.so.10:
      ...
      (gdb) p the_objfile.original_name
      $42 = 0x2494170 "libLLVM.so.10"
      ...
      but the minimal symbols we find are from libLLVM.so.10.debug:
      ...
      (gdb) p reg_symbol.objfile.original_name
      $43 = 0x38e7c50 "libLLVM.so.10-10.0.1-lp152.30.4.x86_64.debug"
      (gdb) p desc_symbol.objfile.original_name
      $44 = 0x38e7c50 "libLLVM.so.10-10.0.1-lp152.30.4.x86_64.debug"
      ...
      and consequently, the objf_data is the one from libLLVM.so.10.debug:
      ...
            jiter_objfile_data *objf_data
              = get_jiter_objfile_data (reg_symbol.objfile);
      ...
      and so we hit this:
      ...
            if (objf_data->cached_code_address == addr)
              continue;
      ...
      and no second jit breakpoint is inserted.
      
      Subsequently, the jit breakpoint is triggered and handled, but when finding
      the symbol for the breakpoint address we get:
      ...
      (gdb) p jit_bp_sym.objfile.original_name
      $52 = 0x2494170 "libLLVM.so.10"
      ...
      
      The assert 'jiter->jiter_data != nullptr' triggers because it checks
      libLLVM.so.10 while the one with jiter_data setup is libLLVM.so.10.debug.
      
      This fixes the assert:
      ...
             jiter_objfile_data *objf_data
      -        = get_jiter_objfile_data (reg_symbol.objfile);
      -        = get_jiter_objfile_data (the_objfile);
      ...
      but consequently we'll have two jit breakpoints, so we also make sure we don't
      set a jit breakpoint on separate debug objects like libLLVM.so.10.debug.
      
      Tested on x86_64-linux.
      
      gdb/ChangeLog:
      
      2021-05-21  Tom de Vries  <tdevries@suse.de>
      
      	PR breakpoint/27889
      	* jit.c (jit_breakpoint_re_set_internal): Skip separate debug
      	objects.  Call get_jiter_objfile_data with the_objfile.
      6d1a09b7
    • Luis Machado's avatar
      [Binutils] Update NT_ARM note types for readelf · 3b2bef8b
      Luis Machado authored
      binutils * readelf.c (get_note_type): Add missing NT_ARM_* entries.
      3b2bef8b
    • Luis Machado's avatar
      [AArch64] MTE corefile support · 894982bf
      Luis Machado authored
      bfd	* elf.c (elfcore_make_memtag_note_section): New function.
      	(elfcore_grok_note): Handle NT_MEMTAG note types.
      
      binutils* readelf.c (get_note_type): Handle NT_MEMTAG note types.
      
      include	* elf/common.h (NT_MEMTAG): New constant.
      	(NT_MEMTAG_TYPE_AARCH_MTE): New constant.
      894982bf
    • GDB Administrator's avatar
      Automatic date update in version.in · 75b969cc
      GDB Administrator authored
      75b969cc
    • Simon Marchi's avatar
      gdb: remove linespec_p typedef · 1487a14e
      Simon Marchi authored
      I guess this was used with the old VEC implementation, but there is no
      reason to have this typedef anymore.
      
      gdb/ChangeLog:
      
      	* linespec.c (linespec_p): Remove.  Replace all uses with
      	"linespec *".
      
      Change-Id: I4cea59ae1cd46985da9c08d3a69686846b1ad028
      1487a14e
    • Alexandra Hájková's avatar
      cli-script: use unique_ptr to not leak next struct · bb6203bf
      Alexandra Hájková authored
      In cli/cli-script.c, process_next_line() allocates memory
      which will eventually end up being assigned to the 'next'
      field in struct command_line.  However, in a case
      recurse_read_control_structure returns 'invalid_control'
      this memory is leaked. This commit uses std::unique_ptr
      as appropriate to prevent this leakage.
      
      This issue was found by coverity scanning.
      
      gdb/ChangeLog:
      
              * cli/cli-script.h (command_line_up): New unique_ptr typedef.
      	* cli/cli-script.c (multi_line_command_p): Use unique_ptr
              command_line_up instead of struct command_line.
      	(build_command_line): Likewise.
      	(get_command_line): Update the cmd function call parameter.
      	(process_next_line):  Use unique_ptr command_line_up instead
              of struct command_line.
      	(recurse_read_control_structure): Change the the type of
              next to command_line_up.
      	(read_command_lines_1): Change type of `next' to be
              command_line_up and update all references of `next'
              accordingly.
      bb6203bf
  3. May 20, 2021
    • Sergey Belyashov's avatar
      Fix overflow detection in the Z80 assembler. · 9a01ec4c
      Sergey Belyashov authored
       * config/tc-z80.c (emit_data_val): Warn on constant overflow.
       (signed_overflow): New function.
       (unsigned_overflow): New function.
       (is_overflow): Use new functions.
       (md_apply_fix): Use signed_overflow.
       * testsuite/gas/z80/ez80_adl_suf.d: Fix test.
       * testsuite/gas/z80/ez80_isuf.s: Likewise.
       * testsuite/gas/z80/ez80_z80_suf.d: Likewise.
      9a01ec4c
    • Alexandra Hájková's avatar
      Add myself to gdb/MAINTAINERS · ed3130b7
      Alexandra Hájková authored
          gdb/ChangeLog:
      
              * MAINTAINERS (Write After Approval): Add myself.
      ed3130b7
    • Alexandra Hájková's avatar
      Clean up my ChangeLog entry · a5523cc3
      Alexandra Hájková authored
      a5523cc3
    • Andrew Burgess's avatar
      gdb/bfd: avoid crash when architecture is forced to csky or riscv · 427e4066
      Andrew Burgess authored
      I built GDB with `--enable-targets=all`, then started GDB passing it
      an x86-64 executable, finally I ran 'maint selftest', and observed GDB
      crash like this:
      
        BFD: BFD (GNU Binutils) 2.36.50.20210519 assertion fail ../../src/bfd/hash.c:438
        Aborted (core dumped)
      
      The problem originates from two locations, for example in csky-dis.c
      (csky_get_disassembler) where we do this:
      
        const char *sec_name = NULL;
        ...
        sec_name = get_elf_backend_data (abfd)->obj_attrs_section;
        if (bfd_get_section_by_name (abfd, sec_name) != NULL)
          ...
      
      We end up in here because during the selftests GDB forces the
      architecture to be csky, but the BFD being accessed is still of type
      x86-64.  As a result obj_attrs_section returns NULL, which means we
      end up passing NULL to bfd_get_section_by_name.  If we follow the
      function calls from bfd_get_section_by_name we eventually end up in
      bfd_hash_hash, which asserts that the string (i.e. the name) is not
      NULL.
      
      The same crash can be reproduced in GDB without using the selftests,
      for example:
      
        (gdb) file x86_64.elf
        (gdb) start
        (gdb) set architecture csky
        (gdb) disassemble main
        Dump of assembler code for function main:
        BFD: BFD (GNU Binutils) 2.36.50.20210519 assertion fail ../../src/bfd/hash.c:438
        Aborted (core dumped)
      
      The fix I propose here is to have bfd_get_section_by_name return NULL
      if name is ever NULL.  For consistency I updated
      bfd_get_section_by_name_if in the same way, even though I'm not
      hitting any problems along that code path right now.
      
      I looked through the source tree and removed two NULL checks in
      bfd/dwarf2.c which are no longer needed, its possible that there are
      additional NULL checks that could be removed, I just didn't find them.
      
      bfd/ChangeLog:
      
      	* section.c (bfd_get_section_by_name): Return NULL if name is
      	NULL.
      	(bfd_get_section_by_name_if): Likewise.
      	* dwarf2.c (read_section): Remove unneeded NULL check.
      	(find_debug_info): Likewise.
      427e4066
    • Tom de Vries's avatar
      sim: ppc: fix Wpointer-sign warning · 8baee38b
      Tom de Vries authored
      When compiling with --enable-werror and CFLAGS="-O0 -g -Wall", we run into:
      ...
      src/sim/ppc/hw_memory.c: In function 'hw_memory_init_address':
      src/sim/ppc/hw_memory.c:194:75: error: pointer targets in passing \
        argument 4 of 'device_find_integer_array_property' differ in signedness \
        [-Werror=pointer-sign]
           int nr_cells
             = device_find_integer_array_property(me, "available", 0, &dummy);
                                                                      ^
      ...
      
      Fix this by changing the type of dummy.
      8baee38b
    • Will Schmidt's avatar
      [PATCH]rs6000,testsuite Add a powerpc64-prologue testcase. · 7f2b8718
      Will Schmidt authored
      Add a powerpc64-prologue testcase, this is based on the existing
      powerpc-prologue test, but updated for the powerpc64 (le) target.
      
      YYYY-MM-DD  Will Schmidt  <will_schmidt@vnet.ibm.com>
      
      gcc/testsuite/ChangeLog
      	* gdb.arch/powerpc64-prologue.c: New test to exercise prologues
      	for the powerpc64 LE target.
      	* gdb.arch/powerpc-prologue.exp: Test Harness.
      7f2b8718
    • Nicolas Boulenguez's avatar
      PR27888, fix link of gas with zlib by libtool 2.4.6 · d556135f
      Nicolas Boulenguez authored
      	PR 27888
      	* Makefile.am (ZLIB): Define.
      	(as_new_LDADD): Add it.
      	* Makefile.in: Regenerate.
      d556135f
    • GDB Administrator's avatar
      Automatic date update in version.in · 93b196f9
      GDB Administrator authored
      93b196f9
    • John Baldwin's avatar
      Mark tu_abbrev_offset::operator<() const. · 5433e20e
      John Baldwin authored
      clang 11 with libc++'s <algorithm> fails to match the existing
      operator<() for std::less<> since the method is not marked const.
      
      gdb/ChangeLog:
      
      	* dwarf2/read.c (tu_abbrev_offset::operator<): Mark const.
      5433e20e
    • Tom de Vries's avatar
      sim: ppc: fix some Wenum-compare warnings · 17bb1d80
      Tom de Vries authored
      When compiling with --enable-werror and CFLAGS="-O0 -g -Wall", we run into:
      ...
      src/sim/ppc/hw_phb.c: In function 'hw_phb_attach_address':
      src/sim/ppc/hw_phb.c:315:12: error: comparison between \
        'attach_type {aka enum _attach_type}' and \
        'enum <anonymous>' [-Werror=enum-compare]
         if (type != hw_phb_normal_decode
                  ^~
      ...
      
      Fix this by casting type to hw_phb_decode.
      17bb1d80
    • Tom de Vries's avatar
      sim: ppc: fix Wnonnull warning · bfff0efb
      Tom de Vries authored
      When compiling with --enable-werror and CFLAGS="-O0 -g -Wall", we run into:
      ...
      src/sim/ppc/emul_netbsd.c: In function 'do_gettimeofday':
      src/sim/ppc/emul_netbsd.c:770:16: error: null argument where non-null \
        required (argument 1) [-Werror=nonnull]
         int status = gettimeofday((t_addr != 0 ? &t : NULL),
                      ^~~~~~~~~~~~
      ...
      
      Fix this by unconditionally passing &t as first argument.
      bfff0efb
  4. May 19, 2021
    • Marco Barisione's avatar
      gdb: Move definitions of std::string overloads in ui_out to the header · 0d7e3cd1
      Marco Barisione authored
      These methods are just trivial wrappers around the versions accepting
      a char pointer.  By moving them to the header the compiler can inline
      them.
      
      gdb/ChangeLog:
      
      	* ui-out.c (ui_out::field_string): Move to ui-out.h.
      	(ui_out::text): Ditto.
      	* ui-out.h (class ui_out): Add definitions of
      	ui_out::field_string and ui_out::text which were previously
      	defined in ui-out.c.
      0d7e3cd1
    • Tom de Vries's avatar
      sim: ppc: fix some more Wunused-function warnings · 4156e386
      Tom de Vries authored
      When compiling with --enable-werror and CFLAGS="-O0 -g -Wall", we run into:
      ...
      In file included from src/sim/ppc/cpu.h:26:0,
                       from src/sim/ppc/mon.c:25,
                       from src/sim/ppc/inline.c:64,
                       from idecode.c:26:
      src/sim/ppc/device.h:788:8: error: 'device_event_queue_deschedule' \
        declared 'static' but never defined [-Werror=unused-function]
       (void) device_event_queue_deschedule
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ...
      
      This seems to be caused by the fact that the function is declared using
      INLINE_EVENT instead of INLINE_DEVICE.
      
      Fix this and a similar error in the same file.
      4156e386
    • Tom de Vries's avatar
      sim: ppc: fix some Wunused-function warnings · 8f09aa5b
      Tom de Vries authored
      When compiling with --enable-werror and CFLAGS="-O0 -g -Wall", we run into:
      ...
      In file included from src/sim/ppc/cpu.h:251:0,
                       from src/sim/ppc/emul_generic.h:24,
                       from src/sim/ppc/emul_generic.c:24:
      src/sim/ppc/cpu.c:76:1: error: 'cpu_create' defined but not used \
        [-Werror=unused-function]
       cpu_create(psim *system,
       ^~~~~~~~~~
      ...
      
      The function is defined as:
      ...
      INLINE_CPU\
      (cpu *)
      cpu_create(psim *system,
      ...
      which expands to:
      ...
      static cpu * __attribute__((__unused__))
      cpu_create(psim *system,
      ...
      
      The problem is that gcc does not associate the attribute to the function.
      I've filed a PR about this ( PR gcc/100670 ), which may or may not be valid.
      
      Work around/fix this by modifying the INLINE_* definitions in inline.h to move
      UNUSED to the start such that we have:
      ...
      __attribute__((__unused__)) static cpu *
      cpu_create(psim *system,
      ...
      8f09aa5b
    • John David Anglin's avatar
      Fix offset for ia64 PCREL60B relocation on HP-UX · ee22a1a3
      John David Anglin authored
      gas/ChangeLog:
      2021-05-19  John Buddery  <jvb@cyberscience.com>
      	PR 25599
      	* config/tc-ia64.c (emit_one_bundle): Increment fixup offset
      	by one for PCREL60B relocation on HP-UX.
      ee22a1a3
    • Marco Barisione's avatar
      gdb: Pass std::strings to ui_out::field_string () where convenient · 8dd8c8d4
      Marco Barisione authored
      While adding a ui_out::text () overload accepting a std::string, I
      noticed that several callers of ui_out::field_string () were converting
      std::string instances to char pointers even if not necessary.
      
      gdb/ChangeLog:
      
      	* ui-out.c (ui_out::field_string): Add missing style_argument
      	to the overload accepting a std::string, to make it equivalent
      	to the char pointer version.
      	* ui-out.h (class ui_out): Ditto.
      	* break-catch-sig.c (signal_catchpoint_print_one): Do not
      	convert std::strings to char pointers before passing them to
      	ui_out::field_string ().
      	* break-catch-throw.c (print_one_detail_exception_catchpoint):
      	Ditto.
      	* cli/cli-setshow.c (do_show_command): Ditto.
      	* disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
      	Ditto.
      	* infcmd.c (print_return_value_1): Ditto.
      	* inferior.c (print_inferior): Ditto.
      	* linux-thread-db.c (info_auto_load_libthread_db): Ditto.
      	* mi/mi-cmd-var.c (print_varobj): Ditto.
      	(mi_cmd_var_set_format): Ditto.
      	(mi_cmd_var_info_type): Ditto.
      	(mi_cmd_var_info_expression): Ditto.
      	(mi_cmd_var_evaluate_expression): Ditto.
      	(mi_cmd_var_assign): Ditto.
      	(varobj_update_one): Ditto.
      	* mi/mi-main.c (list_available_thread_groups): Ditto.
      	(mi_cmd_data_read_memory_bytes): Ditto.
      	(mi_cmd_trace_frame_collected): Ditto.
      	* osdata.c (info_osdata): Ditto.
      	* probe.c (info_probes_for_spops): Ditto.
      	* target-connection.c (print_connection): Ditto.
      	* thread.c (print_thread_info_1): Ditto.
      	* tracepoint.c (print_one_static_tracepoint_marker): Ditto.
      8dd8c8d4
    • Marco Barisione's avatar
      gdb: Add an overloaded ui_out::text accepting a const std::string & · 4915bfdc
      Marco Barisione authored
      gdb/ChangeLog:
      
      	* ui-out.h (class ui_out): Add ui_out::text accepting a constant
      	reference to a std::string.  Fix all callers using
      	std::string::c_str.
      	* ui-out.c (ui_out::text): Ditto.
      4915bfdc
    • Andrew Burgess's avatar
      gdb/testsuite: resolve duplicate test names in gdb.guile/*.exp · d9211df2
      Andrew Burgess authored
      This commit:
      
        commit ecf25064
        Date:   Thu May 13 15:42:20 2021 +0100
      
            gdb: fix pretty printing max depth behaviour
      
      Introduced a couple of duplicate tests, this commit resolves them by
      providing unique test names.
      
      gdb/testsuite/ChangeLog:
      
      	* gdb.guile/scm-pretty-print.exp: Add test names to resolve
      	duplicate test names.
      d9211df2
    • Tom de Vries's avatar
      [gdb/testsuite] Fix read1 timeout in gdb.base/info-types-c++.exp · 2129a942
      Tom de Vries authored
      When running test-case gdb.base/info-types-c++.exp with check-read1 I run
      into:
      ...
      425:    typedef const void * std::allocator_traits<std::allocator<std::\
        _Sp_counted_ptr_inplace<std::filesystem::__cxx11::\
        recursive_directory_iterator::_Dir_stack, std::allocator<std::filesystem::\
        __cxx11::recursive_directory_iterator::_Dir_stack>, \
        FAIL: gdb.base/info-types-c++.exp: info types (timeout)
      ...
      
      The corresponding gdb_test_multiple does contain an exp_continue which
      resets the timeout counter every time info for another file is printed, but
      this doesn't help for this timeout because it times out during printing info
      for a single file.
      
      Fix this by processing line-by-line.
      
      Tested on x86_64-linux, both with gcc-7.5.0 and gcc-4.8.5 (the latter is
      different because the "unsigned int" type is missing).
      
      gdb/testsuite/ChangeLog:
      
      2021-05-19  Tom de Vries  <tdevries@suse.de>
      
      	* gdb.base/info-types.exp.tcl: Scan info types output line-by-line.
      2129a942
    • Eli Schwartz's avatar
      Fix a build problem if ENABLE_CHECKING is not defined. · c485e475
      Eli Schwartz authored
      	* dwarf.c (ENABLE_CHECKING): Define to 0 if not previously set.
      c485e475
    • Nick Clifton's avatar
      Warn when the plugin interface runs out of file descriptors. · 83b0a686
      Nick Clifton authored
      	* plugin.c (bfd_plugin_open_input): Inform the user if the limit
      	on the number of open files is reached.  If possible, try to
      	increase this limit before failing.
      83b0a686
    • Alexandra Hájková's avatar
      inflow.c: Do not leak tty. · b534617f
      Alexandra Hájková authored
      In a case open() returns 0 tty might be leaked. While 0 should be
      stdin (and therefore is an unlikely return value from open()), it's
      still the case that the test should be for non-negative return values
      from open().
      
      gdb/ChangeLog:
      
      2021-05-11 Alexandra Hájková <ahajkova@redhat.com>
      
      	* inflow.c (new_tty): Do not leak tty.
      b534617f
    • Alan Modra's avatar
      PR27884, skip_attr_bytes: Assertion (data) <= (end) failed · 1b3892be
      Alan Modra authored
      	PR 27884
      	* dwarf.c (get_type_abbrev_from_form): Replace cu_offset_return
      	param with map_return, and return map for DW_FORM_ref_addr.
      	(get_type_signedness): Adjust calls to get_type_abbrev_from_form.
      	Pass returned cu map start and end to recursive call.
      	(read_and_display_attr_value): Similarly.
      1b3892be
    • Alan Modra's avatar
      PR27879, stack-buffer-overflow on sysdump · 9d9e2a34
      Alan Modra authored
      	PR 27879
      	* sysdump.c (getBARRAY): Sanity check size against max.
      	(getINT): Avoid UB shift left.
      9d9e2a34
    • GDB Administrator's avatar
      Automatic date update in version.in · 75933ce3
      GDB Administrator authored
      75933ce3
    • Mike Frysinger's avatar
      sim: depend on gnulib · 9cc11ab5
      Mike Frysinger authored
      We're going to start using gnulib in the sim, so make sure it exists.
      
      ChangeLog:
      
      	* Makefile.def: Add configure-sim dependency on all-gnulib.
      	* Makefile.in: Regenerated.
      9cc11ab5
    • Mike Frysinger's avatar
      config: delete unused sim macros · 19fa7881
      Mike Frysinger authored
      Nothing in gcc or binutils or gdb or anything anywhere uses these.
      
      config/
      
      	* acinclude.m4 (CYG_AC_PATH_SIM, CYG_AC_PATH_DEVO): Delete.
      19fa7881
  5. May 18, 2021
    • Job Noorman's avatar
      RISC-V: PR27814, Objdump crashes when disassembling a non-ELF RISC-V binary. · 113bb761
      Job Noorman authored
      2021-05-18  Job Noorman  <mtvec@pm.me>
      
      opcodes/
          PR 27814
          * riscv-dis.c (riscv_get_disassembler): Get elf attributes only for
          the elf objects.
      113bb761
    • GDB Administrator's avatar
      Automatic date update in version.in · 549f123c
      GDB Administrator authored
      549f123c
    • Tom Tromey's avatar
      Rename dwarf2/comp-unit.h · cd53fa40
      Tom Tromey authored
      Simon pointed out that dwarf2/cu.h and dwarf2/comp-unit.h seemingly
      mean the same thing.  He suggested renaming the latter to
      comp-unit-head.h, which is what this patch does.
      
      gdb/ChangeLog
      2021-05-17  Tom Tromey  <tom@tromey.com>
      
      	* dwarf2/read.h: Update include.
      	* dwarf2/read.c: Update include.
      	* dwarf2/line-header.c: Update include.
      	* dwarf2/cu.h: Update include.
      	* dwarf2/comp-unit-head.h: Rename from comp-unit.h.
      	* dwarf2/comp-unit-head.c: Rename from comp-unit.c.
      	* Makefile.in (COMMON_SFILES): Update.
      cd53fa40
    • Tom Tromey's avatar
      Change dwarf2_cu marking to use methods · 347212b8
      Tom Tromey authored
      This changes the dwarf2_cu marking functions to be methods on
      dwarf2_cu.
      
      gdb/ChangeLog
      2021-05-17  Tom Tromey  <tom@tromey.com>
      
      	* dwarf2/read.c (maybe_queue_comp_unit)
      	(dwarf2_per_objfile::age_comp_units): Update.
      	(dwarf2_add_dependence, dwarf2_mark_helper, dwarf2_mark): Move to
      	dwarf2_cu methods.
      	* dwarf2/cu.h (struct dwarf2_cu) <mark, clear_mark, is_marked,
      	add_dependence>: New methods.
      	<m_dependencies>: Add "m_" prefix.  Now private.
      	<m_mark>: Add "m_" prefix.
      	* dwarf2/cu.c (dwarf2_cu::dwarf2_cu): Update.
      	(dwarf2_mark_helper): New function.
      	(dwarf2_cu::mark, dwarf2_cu::add_dependence): New methods.
      347212b8