gdb: introduce displaced_step_closure_up type alias
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index e61b08b49c8aeb85c76439f2997c67a97fc4a9ae..adf86d546ec88eaefb9b03d44a0816ac59be8511 100644 (file)
@@ -1,3 +1,574 @@
+2020-02-14  Simon Marchi  <simon.marchi@efficios.com>
+
+       * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Use
+       displaced_step_closure_up.
+       * aarch64-tdep.h (aarch64_displaced_step_copy_insn): Likewise.
+       (struct displaced_step_closure_up):
+       * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
+       * amd64-tdep.h (amd64_displaced_step_copy_insn): Likewise.
+       * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn):
+       Likewise.
+       * gdbarch.sh (displaced_step_copy_insn): Likewise.
+       * gdbarch.c, gdbarch.h: Re-generate.
+       * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Use
+       displaced_step_closure_up.
+       * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
+       * i386-tdep.h (i386_displaced_step_copy_insn): Likewise.
+       * infrun.h (displaced_step_closure_up): New type alias.
+       (struct displaced_step_inferior_state) <step_closure>: Change
+       type to displaced_step_closure_up.
+       * rs6000-tdep.c (ppc_displaced_step_copy_insn): Use
+       displaced_step_closure_up.
+       * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
+
+2020-02-14  Simon Marchi  <simon.marchi@efficios.com>
+
+       * gdbarch.sh (displaced_step_copy_insn): Change return type to an
+       std::unique_ptr.
+       * gdbarch.c: Re-generate.
+       * gdbarch.h: Re-generate.
+       * infrun.c (displaced_step_prepare_throw): Adjust to std::unique_ptr
+       change.
+       * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Change return
+       type to std::unique_ptr.
+       * aarch64-tdep.h (aarch64_displaced_step_copy_insn): Likewise.
+       * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
+       * amd64-tdep.h (amd64_displaced_step_copy_insn): Likewise.
+       * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
+       * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Likewise.
+       * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
+       * i386-tdep.h (i386_displaced_step_copy_insn): Likewise.
+       * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
+       * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
+
+2020-02-14  Simon Marchi  <simon.marchi@efficios.com>
+
+       * infrun.c (get_displaced_step_closure_by_addr): Adjust to
+       std::unique_ptr.
+       (displaced_step_clear): Rename to...
+       (displaced_step_reset): ... this.  Just call displaced->reset ().
+       (displaced_step_clear_cleanup): Rename to...
+       (displaced_step_reset_cleanup): ... this.
+       (displaced_step_prepare_throw): Adjust to std::unique_ptr.
+       (displaced_step_fixup): Likewise.
+       (resume_1): Likewise.
+       (handle_inferior_event): Restore child's memory before calling
+       displaced_step_fixup on the parent.
+       * infrun.h (displaced_step_inferior_state) <reset>: Adjust
+       to std::unique_ptr.
+       <step_closure>: Change type to std::unique_ptr.
+
+2020-02-08  Joel Brobecker  <brobecker@adacore.com>
+
+       * version.in: Set GDB version number to 9.1.
+
+2020-02-05  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR gdb/25190:
+        * gdb/remote-sim.c (gdb_os_write_stderr): Update.
+        * gdb/remote.c (remote_console_output): Update.
+        * gdb/ui-file.c (fputs_unfiltered): Rename to...
+        (ui_file_puts): ...this.
+        * gdb/ui-file.h (ui_file_puts): Add declaration.
+        * gdb/utils.c (emit_style_escape): Update.
+        (flush_wrap_buffer): Update.
+        (fputs_maybe_filtered): Update.
+        (fputs_unfiltered): Add function.
+
+2020-02-05  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+        * gdb/event-loop.c (gdb_wait_for_event): Update.
+        * gdb/printcmd.c (printf_command): Update.
+        * gdb/remote-fileio.c (remote_fileio_func_write): Update.
+        * gdb/remote-sim.c (gdb_os_flush_stdout): Update.
+        (gdb_os_flush_stderr): Update.
+        * gdb/remote.c (remote_console_output): Update.
+        * gdb/ui-file.c (gdb_flush): Rename to...
+        (ui_file_flush): ...this.
+        (stderr_file::write): Update.
+        (stderr_file::puts): Update.
+        * gdb/ui-file.h (gdb_flush): Rename to...
+        (ui_file_flush): ...this.
+        * gdb/utils.c (gdb_flush): Add function.
+        * gdb/utils.h (gdb_flush): Add declaration.
+
+2020-02-07  Tom Tromey  <tromey@adacore.com>
+
+       PR breakpoints/24915:
+       * source.c (find_and_open_source): Do not check basenames_may_differ.
+
+2020-01-10  Christian Biesinger  <cbiesinger@google.com>
+
+       * gdbsupport/common-defs.h: Don't define _FORTIFY_SOURCE on MinGW.
+
+2020-01-07  Tom Tromey  <tromey@adacore.com>
+
+       PR build/24937:
+       * stap-probe.c (class stap_static_probe_ops): Add constructor.
+
+2020-01-06  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * stack.c (print_frame_info): Move disassemble_next_line code
+       inside source_print block.
+
+2020-01-01  Joel Brobecker  <brobecker@adacore.com>
+
+       * gdbarch.sh: Update copyright year range of generated files.
+
+2020-01-01  Joel Brobecker  <brobecker@adacore.com>
+
+       Update copyright year range in all the GDB files automatically
+       handled by our copyright.py script.
+
+2020-01-01  Joel Brobecker  <brobecker@adacore.com>
+
+       * copyright.py: Convert to Python 3.
+
+2020-01-01  Joel Brobecker  <brobecker@adacore.com>
+
+       * copyright.py: Adapt after move of gnulib directory from gdb
+       directory to toplevel directory.
+
+2020-01-01  Joel Brobecker  <brobecker@adacore.com>
+
+       * copyright.py (main): Exit if run from the wrong directory.
+
+2020-01-01  Joel Brobecker  <brobecker@adacore.com>
+
+       * top.c (print_gdb_version): Change copyright year to 2020.
+
+2019-12-26  Christian Biesinger  <cbiesinger@google.com>
+
+       * configure: Regenerate.
+       * configure.ac: Quote variable arguments of test.
+       * gdbsupport/common.m4: Likewise.
+
+2019-12-21  Eli Zaretskii  <eliz@gnu.org>
+
+       * top.c (print_gdb_configuration): Print "--with-xxhash" or
+       "--without-xxhash" according to HAVE_LIBXXHASH.
+
+2019-12-18  Tom Tromey  <tromey@adacore.com>
+
+       PR build/25268:
+       * gdbsupport/thread-pool.c (set_thread_name): Expect "int" return
+       type on macOS.  Add comment.
+
+2019-12-18  Tom Tromey  <tromey@adacore.com>
+
+       PR build/25250:
+       * ui-out.c (ui_out::vmessage): Update.
+       * ui-out.h (enum class field_kind) <FIELD_STRING, FIELD_SIGNED>:
+       Rename.
+       (string_field): Update.
+       (signed_field): Update.
+
+2019-12-16  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * jit.c (finalize_symtab): Set gdb_block_iter_tmp in loop.
+
+2019-12-11  Joel Brobecker  <brobecker@adacore.com>
+
+       * version.in: Set GDB version number to 9.0.90.DATE-git.
+
+2019-12-11  Joel Brobecker  <brobecker@adacore.com>
+
+       GDB 9.0.90 released.
+
+2019-12-11  Joel Brobecker  <brobecker@adacore.com>
+
+       * version.in: Set GDB version number to 9.0.90.
+
+2019-12-11  Joel Brobecker  <brobecker@adacore.com>
+
+       * NEWS: Change "Changes since GDB 8.3" into "Changes in GDB 9".
+
+2019-12-11  Joel Brobecker  <brobecker@adacore.com>
+
+       GDB 9 branch created (27f7b2f64062ac9e52afc60509263c2702a9ebd0):
+       * version.in: Bump version to 9.0.90.DATE-git.
+
+2019-12-11  Tom Tromey  <tromey@adacore.com>
+
+       PR build/25268:
+       * gdbsupport/thread-pool.c (set_thread_name): New function.
+       (thread_pool::set_thread_count): Don't call pthread_setname_np.
+       (thread_pool::thread_function): Call set_thread_name.
+
+2019-12-11  Tom Tromey  <tromey@adacore.com>
+
+       * fbsd-tdep.c (fbsd_core_info_proc_status): Cast result of
+       bfd_get_signed_8.
+
+2019-12-11  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
+
+       * NEWS: Document -raw-values option and the related setting commands.
+       * printcmd.c (print_command_parse_format): Do not set opts->raw off,
+       only set it on when /r is given.
+       * valprint.c (value_print_option_defs): New element raw-values.
+       * Makefile.in: Add the new file.
+
+2019-12-10  Christian Biesinger  <cbiesinger@google.com>
+
+       * gdbsupport/safe-strerror.c: Supress the unused function warning
+       for select_strerror_r.
+
+2019-12-10  Christian Biesinger  <cbiesinger@google.com>
+
+       * config.in: Regenerate.
+       * configure: Regenerate.
+       * gdbsupport/agent.c (gdb_connect_sync_socket): Call
+       safe_strerror instead of strerror.
+       * gdbsupport/common.m4: Don't check for strerror.
+       * gdbsupport/safe-strerror.c: Support both the glibc version
+       of strerror_r and the XSI version.
+
+2019-12-10  Tom Tromey  <tromey@adacore.com>
+
+       * ada-typeprint.c (print_choices): Use a single "?".
+       (print_variant_part): Print "?" if the discriminant name
+       is not known.
+
+2019-12-10  George Barrett  <bob@bob131.so>
+
+       Fix scripted probe breakpoints.
+       * breakpoint.c (tracepoint_probe_breakpoint_ops): Move
+       declaration forward.
+       (breakpoint_ops_for_event_location_type)
+       (breakpoint_ops_for_event_location): Add function definitions.
+       (break_command_1, trace_command): Use
+       breakpoint_ops_for_event_location.
+       * breakpoint.h (breakpoint_ops_for_event_location): Add function
+       declarations.
+       * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Use
+       breakpoint_ops_for_event_location.
+       * python/py-breakpoint.c (bppy_init): Use
+       breakpoint_ops_for_event_location.
+
+2019-12-09  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       * gdbtypes.c (rank_one_type): Return INCOMPATIBLE_TYPE_BADNESS
+       when ranking an lvalue argument for an rvalue parameter.
+
+2019-12-08  Wataru Ashihara  <wataash@wataash.com>
+
+       * darwin-nat.c (darwin_nat_target::create_inferior): Fix
+       template argument for scoped_restore_tmpl from bool to int.
+
+2019-12-07  Keith Seitz  <keiths@redhat.com>
+
+       * build-id.c (build_id_bfd_get): Permit bfd_core, too.
+       (build_id_to_debug_bfd): Make static, rewriting to use
+       build_id_to_bfd_suffix.
+       (build_id_to_bfd_suffix): Copy of build_id_to_debug_bfd,
+       adding `suffix' parameter. Append SUFFIX to file names
+       when searching for matching files.
+       (build_id_to_debug_bfd): Use build_id_to_bfd_suffix.
+       (build_id_to_exec_bfd): Likewise.
+       * build-id.h (build_id_to_debug_bfd): Clarify that function
+       searches for BFD of debug info file.
+       (build_id_to_exec_bfd): Declare.
+       * corelow.c: Include build-id.h.
+       (locate_exec_from_corefile_build_id): New function.
+       (core_target_open): If no executable BFD is found,
+       search for a core file BFD using build-id.
+
+2019-12-06  Christian Biesinger  <cbiesinger@google.com>
+
+       * bcache.c: Put in namespace gdb.
+       * bcache.h: Likewise.
+       * gdbtypes.c (check_types_worklist): Update.
+       (types_deeply_equal): Update.
+       * macrotab.c (struct macro_table) <bcache>: Update.
+       (new_macro_table): Update.
+       * macrotab.h (struct bcache): Put this forward declaration
+       inside namespace gdb.
+       (new_macro_table): Update.
+       * objfiles.h (struct objfile_per_bfd_storage) <filename_cache>:
+       Update.
+       <macro_cache>: Update.
+       * psymtab.h: (psymtab_storage) <psymbol_cache>: Update.
+
+2019-12-06  Tom de Vries  <tdevries@suse.de>
+
+       PR symtab/24971
+       * block.c (best_symbol, better_symbol): New function.
+       (block_lookup_symbol_primary, block_lookup_symbol): Prefer def over
+       decl.
+
+2019-12-06  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       * gdbtypes.h: Define the REFERENCE_SEE_THROUGH_BADNESS value.
+       * gdbtypes.c (rank_one_type): Use REFERENCE_SEE_THROUGH_BADNESS
+       for ranking see-through reference cases.
+
+2019-12-06  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
+       * stack.c (faas_command): Check a command is provided.
+       * thread.c (taas_command, tfaas_command): Likewise.
+
+2019-12-05  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
+       * inferior.c (prune_inferiors):  Only call delete_inferior,
+       Do not modify the inferior list.
+
+2019-12-05  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * c-exp.y: Update calls to lookup_typename,
+       lookup_signed_typename and lookup_unsigned_typename.
+       * c-lang.c (evaluate_subexp_c): Likewise.
+       * cp-namespace.c (cp_lookup_symbol_imports_or_template):
+       Likewise.
+       * eval.c (binop_promote): Likewise.
+       * gdbtypes.c (lookup_typename): Remove gdbarch parameter.
+       (lookup_unsigned_typename): Likewise.
+       (lookup_signed_typename): Likewise.
+       * gdbtypes.h (lookup_unsigned_typename): Likewise.
+       (lookup_signed_typename): Likewise.
+       (lookup_typename): Likewise.
+       * guile/scm-type.c (tyscm_lookup_typename): Update calls to
+       lookup_typename, lookup_signed_typename,
+       lookup_unsigned_typename.
+       * m2-exp.y: Likewise.
+       * printcmd.c (printf_wide_c_string): Likewise.
+       (ui_printf): Likewise.
+       * python/py-type.c (typy_lookup_typename): Likewise.
+       * python/py-xmethods.c (python_xmethod_worker::invoke):
+       Likewise.
+       * rust-exp.y: Likewise.
+
+2019-12-04  Christian Biesinger  <cbiesinger@google.com>
+
+       * configure.nat (obsd64): Add missing files x86-nat.o and
+       nat/x86-dregs.o.
+
+2019-12-04  Tom Tromey  <tom@tromey.com>
+
+       * valprint.c (val_print_string): Use metadata_style.
+       * go-valprint.c (print_go_string): Use metadata style.
+       * p-valprint.c (pascal_object_print_static_field): Use metadata
+       style.
+       * cp-valprint.c (cp_print_static_field): Use metadata style.
+
+2019-12-04  Andrew Burgess  <andrew.burgess@embecosm.com>
+           Chris January  <chris.january@arm.com>
+
+       * f-exp.y (COMPLEX_KEYWORD, SINGLE, DOUBLE, PRECISION): New
+       tokens.
+       (typebase): New patterns for complex, single/double precision, and
+       single/double complex.
+       (f77_keywords): Change token for complex keyword, and add single,
+       double, and precision keywords.
+
+2019-12-04  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * avr-tdep.c (_initialize_avr_tdep): Improve help of command
+       "info io_registers".
+
+2019-12-04  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * regcache.c (cooked_read_test): Initialize thread list of
+       mock_inferior.
+
+2019-12-04  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * aarch64-linux-tdep.c: Remove includes.
+
+2019-12-04  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * aarch64-tdep.c: Remove includes.
+
+2019-12-04  Simon Marchi  <simon.marchi@efficios.com>
+
+       * filtered-iterator.h (filtered_iterator) <operator==,
+       operator!=>: Compare wrapped iterators, not wrapped pointers.
+       * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
+       unittests/filtered_iterator-selftests.c.
+       * unittests/filtered_iterator-selftests.c: New file.
+
+2019-12-04  Tom Tromey  <tromey@adacore.com>
+
+       * gdbtypes.c (create_range_type): Inherit endianity
+       from base type.
+
+2019-12-04  Tom Tromey  <tromey@adacore.com>
+
+       * ada-lang.c (decode_constrained_packed_array)
+       (ada_value_assign, value_assign_to_component): Update.
+       * dwarf2loc.c (rw_pieced_value, access_memory)
+       (dwarf2_compile_expr_to_ax): Update.
+       * dwarf2read.c (dwarf2_add_field): Update.
+       * eval.c (evaluate_subexp_standard): Update.
+       * gdbarch.c, gdbarch.h: Rebuild.
+       * gdbarch.sh (bits_big_endian): Remove.
+       * gdbtypes.h (union field_location): Update comment.
+       * target-descriptions.c (make_gdb_type): Update.
+       * valarith.c (value_bit_index): Update.
+       * value.c (struct value) <bitpos>: Update comment.
+       (unpack_bits_as_long, modify_field): Update.
+       * value.h (value_bitpos): Update comment.
+
+2019-12-04  Tom Tromey  <tromey@adacore.com>
+
+       * gdbtypes.c (type_byte_order): Move earlier.  Assert for unknown
+       endian-ness.
+
+2019-12-04  Tom Tromey  <tromey@adacore.com>
+
+       * dwarf2read.c (dwarf2_init_float_type)
+       (dwarf2_init_complex_target_type): Add byte_order parameter.
+       (read_base_type): Compute byte order earlier.
+       * gdbtypes.c (init_float_type): Add byte_order parameter.
+       * gdbtypes.h (init_float_type): Add byte_order parameter.
+
+2019-12-04  Tom Tromey  <tromey@adacore.com>
+
+       * unittests/tui-selftests.c: Conditionally include tui-winsource.h.
+
+2019-12-04  Tom Tromey  <tromey@adacore.com>
+
+       * dwarf2read.c (process_structure_scope): Initialize
+       "discr_offset".
+
+2019-12-04  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * mi/mi-symbol-cmds.c (mi_symbol_info): Take extra parameter, and
+       add it into the search spec.
+       (parse_max_results_option): New function.
+       (mi_info_functions_or_variables): Parse -max-results flag and pass
+       it to mi_symbol_info.
+       (mi_cmd_symbol_info_modules): Likewise.
+       (mi_cmd_symbol_info_types): Likewise.
+       * symtab.c (global_symbol_searcher::add_matching_symbols): Change
+       return type to bool, change result container into a set, and don't
+       add new results if we have enough already.
+       (global_symbol_searcher::add_matching_msymbols): Change return
+       type to bool, and don't add new results if we have enough already.
+       (sort_search_symbols_remove_dups): Delete.
+       (global_symbol_searcher::search): Early exit from search loop when
+       we have enough results.  Use a std::set to collect the results
+       from calling add_matching_symbols.
+       * symtab.h (global_symbol_searcher) <set_max_seach_results>: New
+       member function.
+       (global_symbol_searcher) <m_max_search_results>: New member
+       variable.
+       (global_symbol_searcher) <add_matching_symbols>: Update header
+       comment and change return type to bool.
+       (global_symbol_searcher) <add_matching_msymbols>: Update header
+       comment and change return type to bool.
+
+2019-12-04  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * symtab.c (symbol_search::compare_search_syms): Update header
+       comment.
+       (global_symbol_searcher::is_suitable_msymbol): New function.
+       (global_symbol_searcher::expand_symtabs): New function.
+       (global_symbol_searcher::add_matching_symbols): New function.
+       (global_symbol_searcher::add_matching_msymbols): New function.
+       (global_symbol_searcher::search): Move most of the content
+       into the new functions above, and call them as needed.
+       * symtab.h (global_symbol_searcher) <expand_symtabs>: New member
+       function.
+       (global_symbol_searcher) <add_matching_symbols>: New member
+       function.
+       (global_symbol_searcher) <add_matching_msymbols>: New member
+       function.
+       (global_symbol_searcher) <is_suitable_msymbol>: New member
+       function.
+
+2019-12-04  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * mi/mi-cmds.c (mi_cmds): Add -symbol-info-module-functions and
+       -symbol-info-module-variables entries.
+       * mi/mi-cmds.h (mi_cmd_symbol_info_module_functions): Declare.
+       (mi_cmd_symbol_info_module_variables): Declare.
+       * mi/mi-symbol-cmds.c
+       (module_symbol_search_iterator): New typedef.
+       (output_module_symbols_in_single_module_and_file): New function.
+       (output_module_symbols_in_single_module): New function.
+       (mi_info_module_functions_or_variables): New function.
+       (mi_cmd_symbol_info_module_functions): New function.
+       (mi_cmd_symbol_info_module_variables): New function.
+       * NEWS: Mention new MI command.
+
+2019-12-03  Christian Biesinger  <cbiesinger@google.com>
+
+       * bcache.c (hash): Remove.
+       (hash_continue): Remove.
+       * bcache.h (hash): Remove.
+       (hash_continue): Remove.
+       (struct bcache) <ctor>: Update.
+       * psymtab.c (psymbol_hash): Update.
+       * stabsread.c (hashname): Update.
+       * utils.h (fast_hash): Add an argument for a start value,
+       defaulting to zero.
+
+2019-12-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
+       * symtab.c (symbol_cache_clear_slot):  Move close to cleared type.
+       (destroy_block_symbol_cache): New function.
+       (symbol_cache:~symbol_cache) Call destroy_block_symbol_cache.
+       (resize_symbol_cache): Likewise.
+
+2019-12-02  Tom Tromey  <tom@tromey.com>
+
+       * unittests/tui-selftests.c (run_tests): Make conditional.
+       (_initialize_tui_selftest): Make conditional.
+
+2019-12-02  Christian Biesinger  <cbiesinger@google.com>
+
+       * aix-thread.c (debug_aix_thread): Change type to bool.
+
+2019-12-02  Luis Machado  <luis.machado@linaro.org>
+
+       * infrun.c (follow_fork_inferior): Remove outdated FIXME comment.
+
+2019-12-01  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * dwarf2read.c (read_tag_string_type): Read the fields required to
+       make a dynamic string, and possibly create a dynamic range for the
+       string.
+       (attr_to_dynamic_prop): Setup is_reference based on the type of
+       attribute being processed.
+       * gdbtypes.c (is_dynamic_type_internal): Handle TYPE_CODE_STRING.
+       (resolve_dynamic_array): Rename to...
+       (resolve_dynamic_array_or_string): ...this, update header comment,
+       and accept TYPE_CODE_STRING.
+       (resolve_dynamic_type_internal): Handle TYPE_CODE_STRING.
+
+2019-12-01  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * dwarf2read.c (dwarf2_per_cu_int_type): New function, takes most
+       of its implementation from...
+       (dwarf2_per_cu_addr_sized_int_type): ...here, which now just calls
+       the new function.
+
+2019-12-01  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * dwarf2read.c (read_subrange_type): Read bit and byte stride and
+       create a range with stride where appropriate.
+       * f-valprint.c: Include 'gdbarch.h'.
+       (f77_print_array_1): Take the stride into account when walking the
+       array.  Also convert the stride into addressable units.
+       * gdbtypes.c (create_range_type): Initialise the stride to
+       constant zero.
+       (create_range_type_with_stride): New function, initialise the
+       range as normal, and then setup the stride.
+       (has_static_range): Include the stride here.  Also change the
+       return type to bool.
+       (create_array_type_with_stride): Consider the range stride if the
+       array isn't given its own stride.
+       (resolve_dynamic_range): Resolve the stride if needed.
+       * gdbtypes.h (struct range_bounds) <stride>: New member variable.
+       (struct range_bounds) <flag_is_byte_stride>: New member variable.
+       (TYPE_BIT_STRIDE): Define.
+       (TYPE_ARRAY_BIT_STRIDE): Define.
+       (create_range_type_with_stride): Declare.
+       * valarith.c (value_subscripted_rvalue): Take range stride into
+       account when walking the array.
+
+2019-12-01  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-win.c (tui_all_windows_info): Treat inactive TUI
+       specially.
+
 2019-12-01  Tom Tromey  <tom@tromey.com>
 
        * tui/tui-winsource.c (tui_copy_source_line): Don't advance past
This page took 0.031854 seconds and 4 git commands to generate.