X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2FChangeLog;h=03419812a03b37bc8773df68a58ed5ad8ee1f4d5;hb=3ca60c57a715bbefc091949dd2381bab1b124715;hp=8e03dbf883fa41341ca2669069348591cf528d76;hpb=b6fb1ee51c9a773d2d6044993af6c0fd7499638f;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8e03dbf883..03419812a0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,1104 @@ +2019-02-20 Tom Tromey + + * findcmd.c (_initialize_mem_search): Use upper case for + metasyntactic variables. + +2019-02-20 Alan Hayward + + * aarch64-tdep.c (aarch64_add_reggroups): New function. + (aarch64_gdbarch_init): Call aarch64_add_reggroups. + +2019-02-19 Simon Marchi + + * top.h (source_file_name): Change to std::string. + * top.c (source_file_name): Likewise. + (command_line_input): Adjust. + * cli/cli-script.c (script_from_file): Adjust. + +2019-02-19 Tom Tromey + + * ravenscar-thread.c + (ravenscar_thread_target::update_thread_list): Don't call + ada_build_task_list. + * ada-lang.h (ada_build_task_list): Don't declare. + * ada-tasks.c (struct ada_tasks_inferior_data) + : Now bool. + (read_known_tasks, ada_task_list_changed) + (ada_tasks_invalidate_inferior_data): Update. + (read_known_tasks_array): Return bool. + (read_known_tasks_list): Likewise. + (read_known_tasks): Return void. + (ada_build_task_list): Now static. + +2019-02-18 Andrew Burgess + + * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR + and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch. + +2019-02-18 Philippe Waroquiers + + * ada-task.c (_initialize_tasks): Use 'with_cleanup' register + variant for ada_tasks_pspace_data_handle and + ada_tasks_inferior_data_handle. + (ada_tasks_pspace_data_cleanup): New function. + (ada_tasks_inferior_data_cleanup): New function. + +2019-02-17 Tom Tromey + + * macrotab.h (macro_source_fullname): Return a std::string. + * macrotab.c (macro_include, check_for_redefinition) + (macro_undef, macro_lookup_definition, foreach_macro) + (foreach_macro_in_scope): Update. + (macro_source_fullname): Return a std::string. + * macrocmd.c (show_pp_source_pos): Update. + +2019-02-17 Tom Tromey + + * macrocmd.c (show_pp_source_pos): Style the file names. + +2019-02-17 Tom Tromey + + PR tui/24197: + * tui/tui-source.c (tui_set_source_content_nil): Rewrite. + +2019-02-17 Tom Tromey + + * ada-lang.c (user_select_syms): Use filtered printing. + * utils.c (wrap_style): New global. + (desired_style): Remove. + (emit_style_escape): Add stream parameter. + (set_output_style, reset_terminal_style, prompt_for_continue): + Update. + (flush_wrap_buffer): Only flush gdb_stdout. + (wrap_here): Set wrap_style. + (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't + treat escape sequences as a character. Change when wrap buffer is + flushed. + (fputs_styled): Do not set the output style when the default is + requested. + * ui-style.h (struct ui_file_style) : New method. + * source.c (print_source_lines_base): Emit escape sequences in one + piece. + +2019-02-17 Joel Brobecker + + * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as + integers and enumeration types. + +2019-02-17 Joel Brobecker + + * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol + instead of lookup_symbol_in_language + (do_exact_match): New function. + (ada_get_symbol_name_matcher): Return do_exact_match when + doing a verbatim match. + +2019-02-15 Tom Tromey + + * ravenscar-thread.c (ravenscar_thread_target::resume) + (ravenscar_thread_target::wait): Special case wildcard requests. + +2019-02-15 Tom Tromey + + * ravenscar-thread.c (base_ptid): Remove. + (struct ravenscar_thread_target) : New method. + : New member. + : Declare methods. + : Add constructor. + (ravenscar_thread_target::task_is_currently_active) + (ravenscar_thread_target::update_inferior_ptid) + (ravenscar_runtime_initialized): Rename. Now methods. + (ravenscar_thread_target::resume, ravenscar_thread_target::wait) + (ravenscar_thread_target::update_thread_list): Update. + (ravenscar_thread_target::active_task): Now method. + (ravenscar_thread_target::store_registers) + (ravenscar_thread_target::prepare_to_store) + (ravenscar_thread_target::prepare_to_store) + (ravenscar_thread_target::mourn_inferior): Update. + (ravenscar_inferior_created): Use "new" to create target. + (ravenscar_thread_target::get_ada_task_ptid): Update. + (_initialize_ravenscar): Don't initialize base_ptid. + (ravenscar_ops): Remove global. + +2019-02-15 Tom Tromey + + * target.h (push_target): Declare new overload. + * target.c (push_target): New overload, taking an rvalue reference. + * remote.c (remote_target::open_1): Use push_target overload. + * corelow.c (core_target_open): Use push_target overload. + +2019-02-15 Tom Tromey + + * ravenscar-thread.c (is_ravenscar_task) + (ravenscar_task_is_currently_active): Return bool. + (ravenscar_update_inferior_ptid, get_running_thread_msymbol) + (_initialize_ravenscar): Remove "(void)". + (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise. + Return bool. + +2019-02-15 Tom Tromey + + * ravenscar-thread.c (ravenscar_runtime_initializer) + (has_ravenscar_runtime, get_running_thread_id) + (ravenscar_thread_target::resume): Fix indentation. + +2019-02-15 Tom Tromey + + * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive + from ravenscar_arch_ops. + (sparc_ravenscar_ops::fetch_registers) + (sparc_ravenscar_ops::store_registers): Now methods. + (sparc_ravenscar_prepare_to_store): Remove. + (sparc_ravenscar_ops): Redefine. + * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual + methods and destructor. Remove members. + * ravenscar-thread.c (ravenscar_thread_target::fetch_registers) + (ravenscar_thread_target::store_registers) + (ravenscar_thread_target::prepare_to_store): Update. + * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store): + Remove. + (struct ppc_ravenscar_powerpc_ops): Derive from + ravenscar_arch_ops. + (ppc_ravenscar_powerpc_ops::fetch_registers) + (ppc_ravenscar_powerpc_ops::store_registers): Now methods. + (ppc_ravenscar_powerpc_ops): Redefine. + (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops. + (ppc_ravenscar_e500_ops::fetch_registers) + (ppc_ravenscar_e500_ops::store_registers): Now methods. + (ppc_ravenscar_e500_ops): Redefine. + * aarch64-ravenscar-thread.c + (aarch64_ravenscar_generic_prepare_to_store): Remove. + (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops. + (aarch64_ravenscar_fetch_registers) + (aarch64_ravenscar_store_registers): Now methods. + (aarch64_ravenscar_ops): Redefine. + +2019-02-15 Tom Tromey + + * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint) + (ravenscar_thread_target::stopped_by_hw_breakpoint) + (ravenscar_thread_target::stopped_by_watchpoint) + (ravenscar_thread_target::stopped_data_address) + (ravenscar_thread_target::core_of_thread): Use scoped_restore. + +2019-02-15 Tom Tromey + + * ravenscar-thread.c: Fix some typos. + +2019-02-15 Philippe Waroquiers + Tom Tromey + + * ada-lang.c (ada_exception_sal): Change addr_string to a + std::string. + (create_ada_exception_catchpoint): Update. + +2019-02-15 Philippe Waroquiers + Tom Tromey + + * breakpoint.c (~bp_location): Rename from bp_location_dtor. + (bp_location_ops): Remove. + (base_breakpoint_allocate_location): Update. + (free_bp_location): Update. + * ada-lang.c (class ada_catchpoint_location) + : Remove ops parameter. + (ada_catchpoint_location_dtor): Remove. + (ada_catchpoint_location_ops): Remove. + (allocate_location_exception): Update. + * breakpoint.h (struct bp_location_ops): Remove. + (class bp_location) : Remove bp_location_ops + parameter. + <~bp_location>: Add destructor. + : Remove. + +2019-02-14 Thomas Schwinge + Pedro Alves + + * remote.c (remote_target::remote_parse_stop_reply): Avoid using + 'PATH_MAX'. + +2019-02-14 David Michael + Samuel Thibault + Thomas Schwinge + + * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply) + (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes. + +2019-02-14 Thomas Schwinge + + * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg) + (check_empty): Use "const char *". + + * gnu-nat.c (gnu_nat_target::detach): Instead of + 'detach_inferior (pid)' call + 'detach_inferior (find_inferior_pid (pid))'. + + * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add + 'nat/fork-inferior.o'. + * gnu-nat.c: #include "nat/fork-inferior.h". + + * gnu-nat.c (gnu_nat_target::detach): Instead of + 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'. + * gnu-nat.h: #include "inf-child.h". + * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to + 'i386_gnu_nat_target::fetch_registers'. + (gnu_store_registers): Rename/move to + 'i386_gnu_nat_target::store_registers'. + + * config/i386/nm-i386gnu.h: Don't "#include" any files. + * gnu-nat.h (mach_thread_info): New function. + * gnu-nat.c (thread_takeover_sc_cmd): Use it. + + * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove. + +2019-02-14 Frederic Konrad + + * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE. + +2019-02-14 Joel Brobecker + + * windows-nat.c (windows_add_thread): Add new parameter + "main_thread_p" with default value set to false. Update + function documentation as well as all callers. + (windows_delete_thread): Likewise. + (fake_create_process): Update call to windows_add_thread. + (get_windows_debug_event) + : Likewise. + : Update + call to windows_delete_thread. + +2019-02-13 Simon Marchi + + * MAINTAINERS: Add Andrew Burgess as global maintainer. + +2019-02-12 John Baldwin + + * symfile.c (find_separate_debug_file): Use canonical path of + sysroot with child_path instead of gdb_sysroot if it is valid. + +2019-02-12 John Baldwin + + * symfile.c (find_separate_debug_file): Use child_path to + determine if an object file is under a sysroot. + +2019-02-12 John Baldwin + + * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add + unittests/child-path-selftests.c. + * common/pathstuff.c (child_path): New function. + * common/pathstuff.h (child_path): New prototype. + * unittests/child-path-selftests.c: New file. + +2019-02-12 John Baldwin + + * symfile.c (find_separate_debug_file): Look for separate debug + files in debug directories under the sysroot. + +2019-02-12 Philippe Waroquiers + + * symtab.h (struct minimal_symbol data_p): New const method. + (struct minimal_symbol text_p): Likewise. + * symtab.c (output_source_filename): Use file name style + to print file name. + (print_symbol_info): Likewise. + (print_msymbol_info): Use address style to print addresses. + Use function name style to print executable text symbols. + (expand_symtab_containing_pc): Use data_p. + (find_pc_sect_compunit_symtab): Likewise. + +2019-02-12 Philippe Waroquiers + + * breakpoint.c (describe_other_breakpoints): Use address style + to print addresses. + (say_where): Likewise. + +2019-02-12 Philippe Waroquiers + + * ada-typeprint.c (print_func_type): Print function name + style to print function name. + * c-typeprint.c (c_print_type_1): Likewise. + +2019-02-11 Alan Hayward + + * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check + for execve. + +2019-02-10 Philippe Waroquiers + + * c-exp.y (direct_abs_decl): Use emplace_back to record the + type_stack. + +2019-02-10 Joel Brobecker + + * ada-varobj.c (ada_value_is_changeable_p): Add handling of + TYPE_CODE_REF types. + +2019-02-08 Jim Wilson + + * riscv-linux-tdep.c (riscv_linux_fregmap): New. + (riscv_linux_fregset): New. + (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section. + +2019-02-07 Tom Tromey + + * thread.c (thread_cancel_execution_command): Update. + * thread-fsm.h (struct thread_fsm): Add constructor, destructor, + methods. + (struct thread_fsm_ops): Remove. + (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up) + (thread_fsm_should_stop, thread_fsm_return_value) + (thread_fsm_set_finished, thread_fsm_finished_p) + (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop): + Don't declare. + * mi/mi-interp.c (mi_on_normal_stop_1): Update. + * infrun.c (clear_proceed_status_thread) + (clean_up_just_stopped_threads_fsms, fetch_inferior_event) + (print_stop_event): Update. + * infcmd.c (struct step_command_fsm): Inherit from thread_fsm. + Add constructor. + (step_command_fsm_ops): Remove. + (new_step_command_fsm): Remove. + (step_1): Update. + (step_command_fsm::should_stop): Rename from + step_command_fsm_should_stop. + (step_command_fsm::clean_up): Rename from + step_command_fsm_clean_up. + (step_command_fsm::do_async_reply_reason): Rename from + step_command_fsm_async_reply_reason. + (struct until_next_fsm): Inherit from thread_fsm. Add + constructor. + (until_next_fsm_ops): Remove. + (new_until_next_fsm): Remove. + (until_next_fsm::should_stop): Rename from + until_next_fsm_should_stop. + (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up. + (until_next_fsm::do_async_reply_reason): Rename from + until_next_fsm_async_reply_reason. + (struct finish_command_fsm): Inherit from thread_fsm. Add + constructor. Change type of breakpoint. + (finish_command_fsm_ops): Remove. + (new_finish_command_fsm): Remove. + (finish_command_fsm::should_stop): Rename from + finish_command_fsm_should_stop. + (finish_command_fsm::clean_up): Rename from + finish_command_fsm_clean_up. + (finish_command_fsm::return_value): Rename from + finish_command_fsm_return_value. + (finish_command_fsm::do_async_reply_reason): Rename from + finish_command_fsm_async_reply_reason. + (finish_command): Update. + * infcall.c (struct call_thread_fsm): Inherit from thread_fsm. + Add constructor. + (call_thread_fsm_ops): Remove. + (call_thread_fsm::call_thread_fsm): Rename from + new_call_thread_fsm. + (call_thread_fsm::should_stop): Rename from + call_thread_fsm_should_stop. + (call_thread_fsm::should_notify_stop): Rename from + call_thread_fsm_should_notify_stop. + (run_inferior_call, call_function_by_hand_dummy): Update. + * cli/cli-interp.c (should_print_stop_to_console): Update. + * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm. + Add constructor. Change type of location_breakpoint, + caller_breakpoint. + (until_break_fsm_ops): Remove. + (new_until_break_fsm): Remove. + (until_break_fsm::should_stop): Rename from + until_break_fsm_should_stop. + (until_break_fsm::clean_up): Rename from + until_break_fsm_clean_up. + (until_break_fsm::do_async_reply_reason): Rename from + until_break_fsm_async_reply_reason. + (until_break_command): Update. + * thread-fsm.c: Remove. + * Makefile.in (COMMON_SFILES): Remove thread-fsm.c. + +2019-02-07 Tom Tromey + + * yy-remap.h: Add include guard. + * xtensa-tdep.h: Add include guard. + * xcoffread.h: Rename include guard. + * varobj-iter.h: Add include guard. + * tui/tui.h: Rename include guard. + * tui/tui-winsource.h: Rename include guard. + * tui/tui-wingeneral.h: Rename include guard. + * tui/tui-windata.h: Rename include guard. + * tui/tui-win.h: Rename include guard. + * tui/tui-stack.h: Rename include guard. + * tui/tui-source.h: Rename include guard. + * tui/tui-regs.h: Rename include guard. + * tui/tui-out.h: Rename include guard. + * tui/tui-layout.h: Rename include guard. + * tui/tui-io.h: Rename include guard. + * tui/tui-hooks.h: Rename include guard. + * tui/tui-file.h: Rename include guard. + * tui/tui-disasm.h: Rename include guard. + * tui/tui-data.h: Rename include guard. + * tui/tui-command.h: Rename include guard. + * tic6x-tdep.h: Add include guard. + * target/waitstatus.h: Rename include guard. + * target/wait.h: Rename include guard. + * target/target.h: Rename include guard. + * target/resume.h: Rename include guard. + * target-float.h: Rename include guard. + * stabsread.h: Add include guard. + * rs6000-tdep.h: Add include guard. + * riscv-fbsd-tdep.h: Add include guard. + * regformats/regdef.h: Rename include guard. + * record.h: Rename include guard. + * python/python.h: Rename include guard. + * python/python-internal.h: Rename include guard. + * python/py-stopevent.h: Rename include guard. + * python/py-ref.h: Rename include guard. + * python/py-record.h: Rename include guard. + * python/py-record-full.h: Rename include guard. + * python/py-record-btrace.h: Rename include guard. + * python/py-instruction.h: Rename include guard. + * python/py-events.h: Rename include guard. + * python/py-event.h: Rename include guard. + * procfs.h: Add include guard. + * proc-utils.h: Add include guard. + * p-lang.h: Add include guard. + * or1k-tdep.h: Rename include guard. + * observable.h: Rename include guard. + * nto-tdep.h: Rename include guard. + * nat/x86-linux.h: Rename include guard. + * nat/x86-linux-dregs.h: Rename include guard. + * nat/x86-gcc-cpuid.h: Add include guard. + * nat/x86-dregs.h: Rename include guard. + * nat/x86-cpuid.h: Rename include guard. + * nat/ppc-linux.h: Rename include guard. + * nat/mips-linux-watch.h: Rename include guard. + * nat/linux-waitpid.h: Rename include guard. + * nat/linux-ptrace.h: Rename include guard. + * nat/linux-procfs.h: Rename include guard. + * nat/linux-osdata.h: Rename include guard. + * nat/linux-nat.h: Rename include guard. + * nat/linux-namespaces.h: Rename include guard. + * nat/linux-btrace.h: Rename include guard. + * nat/glibc_thread_db.h: Rename include guard. + * nat/gdb_thread_db.h: Rename include guard. + * nat/gdb_ptrace.h: Rename include guard. + * nat/fork-inferior.h: Rename include guard. + * nat/amd64-linux-siginfo.h: Rename include guard. + * nat/aarch64-sve-linux-sigcontext.h: Rename include guard. + * nat/aarch64-sve-linux-ptrace.h: Rename include guard. + * nat/aarch64-linux.h: Rename include guard. + * nat/aarch64-linux-hw-point.h: Rename include guard. + * mn10300-tdep.h: Add include guard. + * mips-linux-tdep.h: Add include guard. + * mi/mi-parse.h: Rename include guard. + * mi/mi-out.h: Rename include guard. + * mi/mi-main.h: Rename include guard. + * mi/mi-interp.h: Rename include guard. + * mi/mi-getopt.h: Rename include guard. + * mi/mi-console.h: Rename include guard. + * mi/mi-common.h: Rename include guard. + * mi/mi-cmds.h: Rename include guard. + * mi/mi-cmd-break.h: Rename include guard. + * m2-lang.h: Add include guard. + * location.h: Rename include guard. + * linux-record.h: Rename include guard. + * linux-nat.h: Add include guard. + * linux-fork.h: Add include guard. + * i386-darwin-tdep.h: Rename include guard. + * hppa-linux-offsets.h: Add include guard. + * guile/guile.h: Rename include guard. + * guile/guile-internal.h: Rename include guard. + * gnu-nat.h: Rename include guard. + * gdb-stabs.h: Rename include guard. + * frv-tdep.h: Add include guard. + * f-lang.h: Add include guard. + * event-loop.h: Add include guard. + * darwin-nat.h: Rename include guard. + * cp-abi.h: Rename include guard. + * config/sparc/nm-sol2.h: Rename include guard. + * config/nm-nto.h: Rename include guard. + * config/nm-linux.h: Add include guard. + * config/i386/nm-i386gnu.h: Rename include guard. + * config/djgpp/nl_types.h: Rename include guard. + * config/djgpp/langinfo.h: Rename include guard. + * compile/gcc-cp-plugin.h: Add include guard. + * compile/gcc-c-plugin.h: Add include guard. + * compile/compile.h: Rename include guard. + * compile/compile-object-run.h: Rename include guard. + * compile/compile-object-load.h: Rename include guard. + * compile/compile-internal.h: Rename include guard. + * compile/compile-cplus.h: Rename include guard. + * compile/compile-c.h: Rename include guard. + * common/xml-utils.h: Rename include guard. + * common/x86-xstate.h: Rename include guard. + * common/version.h: Rename include guard. + * common/vec.h: Rename include guard. + * common/tdesc.h: Rename include guard. + * common/selftest.h: Rename include guard. + * common/scoped_restore.h: Rename include guard. + * common/scoped_mmap.h: Rename include guard. + * common/scoped_fd.h: Rename include guard. + * common/safe-iterator.h: Rename include guard. + * common/run-time-clock.h: Rename include guard. + * common/refcounted-object.h: Rename include guard. + * common/queue.h: Rename include guard. + * common/ptid.h: Rename include guard. + * common/print-utils.h: Rename include guard. + * common/preprocessor.h: Rename include guard. + * common/pathstuff.h: Rename include guard. + * common/observable.h: Rename include guard. + * common/netstuff.h: Rename include guard. + * common/job-control.h: Rename include guard. + * common/host-defs.h: Rename include guard. + * common/gdb_wait.h: Rename include guard. + * common/gdb_vecs.h: Rename include guard. + * common/gdb_unlinker.h: Rename include guard. + * common/gdb_unique_ptr.h: Rename include guard. + * common/gdb_tilde_expand.h: Rename include guard. + * common/gdb_sys_time.h: Rename include guard. + * common/gdb_string_view.h: Rename include guard. + * common/gdb_splay_tree.h: Rename include guard. + * common/gdb_setjmp.h: Rename include guard. + * common/gdb_ref_ptr.h: Rename include guard. + * common/gdb_optional.h: Rename include guard. + * common/gdb_locale.h: Rename include guard. + * common/gdb_assert.h: Rename include guard. + * common/filtered-iterator.h: Rename include guard. + * common/filestuff.h: Rename include guard. + * common/fileio.h: Rename include guard. + * common/environ.h: Rename include guard. + * common/common-utils.h: Rename include guard. + * common/common-types.h: Rename include guard. + * common/common-regcache.h: Rename include guard. + * common/common-inferior.h: Rename include guard. + * common/common-gdbthread.h: Rename include guard. + * common/common-exceptions.h: Rename include guard. + * common/common-defs.h: Rename include guard. + * common/common-debug.h: Rename include guard. + * common/cleanups.h: Rename include guard. + * common/buffer.h: Rename include guard. + * common/btrace-common.h: Rename include guard. + * common/break-common.h: Rename include guard. + * cli/cli-utils.h: Rename include guard. + * cli/cli-style.h: Rename include guard. + * cli/cli-setshow.h: Rename include guard. + * cli/cli-script.h: Rename include guard. + * cli/cli-interp.h: Rename include guard. + * cli/cli-decode.h: Rename include guard. + * cli/cli-cmds.h: Rename include guard. + * charset-list.h: Add include guard. + * buildsym-legacy.h: Rename include guard. + * bfin-tdep.h: Add include guard. + * ax.h: Rename include guard. + * arm-linux-tdep.h: Add include guard. + * arm-fbsd-tdep.h: Add include guard. + * arch/xtensa.h: Rename include guard. + * arch/tic6x.h: Add include guard. + * arch/i386.h: Add include guard. + * arch/arm.h: Rename include guard. + * arch/arm-linux.h: Rename include guard. + * arch/arm-get-next-pcs.h: Rename include guard. + * arch/amd64.h: Add include guard. + * arch/aarch64-insn.h: Rename include guard. + * arch-utils.h: Rename include guard. + * annotate.h: Add include guard. + * amd64-darwin-tdep.h: Rename include guard. + * aarch64-linux-tdep.h: Add include guard. + * aarch64-fbsd-tdep.h: Add include guard. + * aarch32-linux-nat.h: Add include guard. + +2019-02-06 Philippe Waroquiers + + * macrotab.c (macro_define_internal): New function that + factorizes macro_define_object_internal and macro_define_function + code. + (macro_define_object_internal): Use macro_define_internal. + (macro_define_function): Likewise. + +2019-02-06 Philippe Waroquiers + + * macrocmd.c (extract_identifier): Return + a gdb::unique_xmalloc_ptr instead of a char *, and update + callers. + +2019-02-06 John Baldwin + + * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces. + +2019-02-05 Tom Tromey + + * target.c (target_stack::unpush): Move assertion earlier. + +2019-01-30 Tom Tromey + + PR python/23615: + * python/python.c (execute_gdb_command): Use gdbpy_allow_threads. + (gdbpy_parse_and_eval): Likewise. + * python/python-internal.h (gdbpy_allow_threads): New class. + +2019-01-28 John Baldwin + + * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap) + (aarch64_fbsd_fpregmap): Move earlier. + (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete. + (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap + instead of individual calls to trad_frame_set_reg_addr. + * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move + earlier. + (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete. + (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap + instead of individual calls to trad_frame_set_reg_addr. + +2019-01-28 Alan Hayward + + * CONTRIBUTE: Replace contribution list with wiki link. + +2019-01-25 Tom Tromey + + * Makefile.in (GDB_CFLAGS): Don't add -I for common. + +2019-01-25 Tom Tromey + + * xtensa-linux-nat.c: Fix common/ includes. + * xml-support.h: Fix common/ includes. + * xml-support.c: Fix common/ includes. + * x86-linux-nat.c: Fix common/ includes. + * windows-nat.c: Fix common/ includes. + * varobj.h: Fix common/ includes. + * varobj.c: Fix common/ includes. + * value.c: Fix common/ includes. + * valops.c: Fix common/ includes. + * utils.c: Fix common/ includes. + * unittests/xml-utils-selftests.c: Fix common/ includes. + * unittests/utils-selftests.c: Fix common/ includes. + * unittests/unpack-selftests.c: Fix common/ includes. + * unittests/tracepoint-selftests.c: Fix common/ includes. + * unittests/style-selftests.c: Fix common/ includes. + * unittests/string_view-selftests.c: Fix common/ includes. + * unittests/scoped_restore-selftests.c: Fix common/ includes. + * unittests/scoped_mmap-selftests.c: Fix common/ includes. + * unittests/scoped_fd-selftests.c: Fix common/ includes. + * unittests/rsp-low-selftests.c: Fix common/ includes. + * unittests/parse-connection-spec-selftests.c: Fix common/ + includes. + * unittests/optional-selftests.c: Fix common/ includes. + * unittests/offset-type-selftests.c: Fix common/ includes. + * unittests/observable-selftests.c: Fix common/ includes. + * unittests/mkdir-recursive-selftests.c: Fix common/ includes. + * unittests/memrange-selftests.c: Fix common/ includes. + * unittests/memory-map-selftests.c: Fix common/ includes. + * unittests/lookup_name_info-selftests.c: Fix common/ includes. + * unittests/function-view-selftests.c: Fix common/ includes. + * unittests/environ-selftests.c: Fix common/ includes. + * unittests/copy_bitwise-selftests.c: Fix common/ includes. + * unittests/common-utils-selftests.c: Fix common/ includes. + * unittests/cli-utils-selftests.c: Fix common/ includes. + * unittests/array-view-selftests.c: Fix common/ includes. + * ui-file.c: Fix common/ includes. + * tui/tui-io.c: Fix common/ includes. + * tracepoint.h: Fix common/ includes. + * tracepoint.c: Fix common/ includes. + * tracefile-tfile.c: Fix common/ includes. + * top.h: Fix common/ includes. + * top.c: Fix common/ includes. + * thread.c: Fix common/ includes. + * target/waitstatus.h: Fix common/ includes. + * target/waitstatus.c: Fix common/ includes. + * target.h: Fix common/ includes. + * target.c: Fix common/ includes. + * target-memory.c: Fix common/ includes. + * target-descriptions.c: Fix common/ includes. + * symtab.h: Fix common/ includes. + * symfile.c: Fix common/ includes. + * stap-probe.c: Fix common/ includes. + * spu-linux-nat.c: Fix common/ includes. + * sparc-nat.c: Fix common/ includes. + * source.c: Fix common/ includes. + * solib.c: Fix common/ includes. + * solib-target.c: Fix common/ includes. + * ser-unix.c: Fix common/ includes. + * ser-tcp.c: Fix common/ includes. + * ser-pipe.c: Fix common/ includes. + * ser-base.c: Fix common/ includes. + * selftest-arch.c: Fix common/ includes. + * s12z-tdep.c: Fix common/ includes. + * rust-exp.y: Fix common/ includes. + * rs6000-aix-tdep.c: Fix common/ includes. + * riscv-tdep.c: Fix common/ includes. + * remote.c: Fix common/ includes. + * remote-notif.h: Fix common/ includes. + * remote-fileio.h: Fix common/ includes. + * remote-fileio.c: Fix common/ includes. + * regcache.h: Fix common/ includes. + * regcache.c: Fix common/ includes. + * record-btrace.c: Fix common/ includes. + * python/python.c: Fix common/ includes. + * python/py-type.c: Fix common/ includes. + * python/py-inferior.c: Fix common/ includes. + * progspace.h: Fix common/ includes. + * producer.c: Fix common/ includes. + * procfs.c: Fix common/ includes. + * proc-api.c: Fix common/ includes. + * printcmd.c: Fix common/ includes. + * ppc-linux-nat.c: Fix common/ includes. + * parser-defs.h: Fix common/ includes. + * osdata.c: Fix common/ includes. + * obsd-nat.c: Fix common/ includes. + * nat/x86-linux.c: Fix common/ includes. + * nat/x86-linux-dregs.c: Fix common/ includes. + * nat/x86-dregs.h: Fix common/ includes. + * nat/x86-dregs.c: Fix common/ includes. + * nat/ppc-linux.c: Fix common/ includes. + * nat/mips-linux-watch.h: Fix common/ includes. + * nat/mips-linux-watch.c: Fix common/ includes. + * nat/linux-waitpid.c: Fix common/ includes. + * nat/linux-ptrace.h: Fix common/ includes. + * nat/linux-ptrace.c: Fix common/ includes. + * nat/linux-procfs.c: Fix common/ includes. + * nat/linux-personality.c: Fix common/ includes. + * nat/linux-osdata.c: Fix common/ includes. + * nat/linux-namespaces.c: Fix common/ includes. + * nat/linux-btrace.h: Fix common/ includes. + * nat/linux-btrace.c: Fix common/ includes. + * nat/fork-inferior.c: Fix common/ includes. + * nat/amd64-linux-siginfo.c: Fix common/ includes. + * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes. + * nat/aarch64-linux.c: Fix common/ includes. + * nat/aarch64-linux-hw-point.h: Fix common/ includes. + * nat/aarch64-linux-hw-point.c: Fix common/ includes. + * namespace.h: Fix common/ includes. + * mips-linux-tdep.c: Fix common/ includes. + * minsyms.c: Fix common/ includes. + * mi/mi-parse.h: Fix common/ includes. + * mi/mi-main.c: Fix common/ includes. + * mi/mi-cmd-env.c: Fix common/ includes. + * memrange.h: Fix common/ includes. + * memattr.c: Fix common/ includes. + * maint.h: Fix common/ includes. + * maint.c: Fix common/ includes. + * main.c: Fix common/ includes. + * machoread.c: Fix common/ includes. + * location.c: Fix common/ includes. + * linux-thread-db.c: Fix common/ includes. + * linux-nat.c: Fix common/ includes. + * linux-fork.c: Fix common/ includes. + * inline-frame.c: Fix common/ includes. + * infrun.c: Fix common/ includes. + * inflow.c: Fix common/ includes. + * inferior.h: Fix common/ includes. + * inferior.c: Fix common/ includes. + * infcmd.c: Fix common/ includes. + * inf-ptrace.c: Fix common/ includes. + * inf-child.c: Fix common/ includes. + * ia64-linux-nat.c: Fix common/ includes. + * i387-tdep.c: Fix common/ includes. + * i386-tdep.c: Fix common/ includes. + * i386-linux-tdep.c: Fix common/ includes. + * i386-linux-nat.c: Fix common/ includes. + * i386-go32-tdep.c: Fix common/ includes. + * i386-fbsd-tdep.c: Fix common/ includes. + * i386-fbsd-nat.c: Fix common/ includes. + * guile/scm-type.c: Fix common/ includes. + * guile/guile.c: Fix common/ includes. + * go32-nat.c: Fix common/ includes. + * gnu-nat.c: Fix common/ includes. + * gdbthread.h: Fix common/ includes. + * gdbarch-selftests.c: Fix common/ includes. + * gdb_usleep.c: Fix common/ includes. + * gdb_select.h: Fix common/ includes. + * gdb_bfd.c: Fix common/ includes. + * gcore.c: Fix common/ includes. + * fork-child.c: Fix common/ includes. + * findvar.c: Fix common/ includes. + * fbsd-nat.c: Fix common/ includes. + * event-top.c: Fix common/ includes. + * event-loop.c: Fix common/ includes. + * dwarf2read.c: Fix common/ includes. + * dwarf2loc.c: Fix common/ includes. + * dwarf2-frame.c: Fix common/ includes. + * dwarf-index-cache.c: Fix common/ includes. + * dtrace-probe.c: Fix common/ includes. + * disasm-selftests.c: Fix common/ includes. + * defs.h: Fix common/ includes. + * csky-tdep.c: Fix common/ includes. + * cp-valprint.c: Fix common/ includes. + * cp-support.h: Fix common/ includes. + * cp-support.c: Fix common/ includes. + * corelow.c: Fix common/ includes. + * completer.h: Fix common/ includes. + * completer.c: Fix common/ includes. + * compile/compile.c: Fix common/ includes. + * compile/compile-loc2c.c: Fix common/ includes. + * compile/compile-cplus-types.c: Fix common/ includes. + * compile/compile-cplus-symbols.c: Fix common/ includes. + * command.h: Fix common/ includes. + * cli/cli-dump.c: Fix common/ includes. + * cli/cli-cmds.c: Fix common/ includes. + * charset.c: Fix common/ includes. + * build-id.c: Fix common/ includes. + * btrace.h: Fix common/ includes. + * btrace.c: Fix common/ includes. + * breakpoint.h: Fix common/ includes. + * breakpoint.c: Fix common/ includes. + * ax.h: + (enum agent_op): Fix common/ includes. + * ax-general.c (struct aop_map): Fix common/ includes. + * ax-gdb.c: Fix common/ includes. + * auxv.c: Fix common/ includes. + * auto-load.c: Fix common/ includes. + * arm-tdep.c: Fix common/ includes. + * arch/riscv.c: Fix common/ includes. + * arch/ppc-linux-common.c: Fix common/ includes. + * arch/i386.c: Fix common/ includes. + * arch/arm.c: Fix common/ includes. + * arch/arm-linux.c: Fix common/ includes. + * arch/arm-get-next-pcs.c: Fix common/ includes. + * arch/amd64.c: Fix common/ includes. + * arch/aarch64.c: Fix common/ includes. + * arch/aarch64-insn.c: Fix common/ includes. + * arch-utils.c: Fix common/ includes. + * amd64-windows-tdep.c: Fix common/ includes. + * amd64-tdep.c: Fix common/ includes. + * amd64-sol2-tdep.c: Fix common/ includes. + * amd64-obsd-tdep.c: Fix common/ includes. + * amd64-nbsd-tdep.c: Fix common/ includes. + * amd64-linux-tdep.c: Fix common/ includes. + * amd64-linux-nat.c: Fix common/ includes. + * amd64-fbsd-tdep.c: Fix common/ includes. + * amd64-fbsd-nat.c: Fix common/ includes. + * amd64-dicos-tdep.c: Fix common/ includes. + * amd64-darwin-tdep.c: Fix common/ includes. + * agent.c: Fix common/ includes. + * ada-lang.h: Fix common/ includes. + * ada-lang.c: Fix common/ includes. + * aarch64-tdep.c: Fix common/ includes. + +2019-01-25 Tom Tromey + + * common/create-version.sh: Use common/version.h. + +2019-01-24 Pedro Alves + + * infrun.c (signal_stop, signal_print, signal_program) + (signal_catch, signal_pass): Now arrays instead of pointers. + (update_signals_program_target, do_target_resume) + (signal_catch_update, handle_command, _initialize_infrun): Adjust. + * linux-nat.c (linux_nat_target::pass_signals) + (linux_nat_target::create_inferior, linux_nat_target::attach): + Adjust. + * linux-nat.h (linux_nat_target::pass_signals): Adjust. + * nto-procfs.c (nto_procfs_target::pass_signals): Adjust. + * procfs.c (procfs_target::pass_signals): Adjust. + * record-full.c (record_full_target::resume): Adjust. + * remote.c (remote_target::pass_signals) + (remote_target::program_signals): Adjust. + * target-debug.h (target_debug_print_signals): Now takes a + gdb::array_view as parameter. Adjust. + * target.h (target_ops) : Replace + pointer and length parameters with gdb::array_view. + (target_pass_signals, target_program_signals): Likewise. + * target-delegates.c: Regenerate. + +2019-01-24 Pedro Alves + + * common/forward-scope-exit.h + (forward_scope_exit::forward_scope_exit): Pass arguments to + m_bind_function directly, instead of creating a std::bind and + copying that. + +2019-01-24 Alan Hayward + + * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check + for static members. + (pass_in_v_vfp_candidate): Likewise. + +2019-01-23 Tom Tromey + Pedro Alves + + * regcache.c (class regcache_invalidator): Remove. + (regcache::raw_write): Use make_scope_exit. + +2019-01-23 Tom Tromey + + * ui-out.h (class ui_out_emit_type): Update comment. + +2019-01-23 Tom Tromey + + * infrun.c (fetch_inferior_event): Update comment. + +2019-01-23 Tom Tromey + Pedro Alves + + * infrun.c (reinstall_readline_callback_handler_cleanup): Remove + parameter. + (fetch_inferior_event): Use SCOPE_EXIT. + + +2019-01-23 Tom Tromey + Pedro Alves + + * infrun.c (disable_thread_events): Delete. + (stop_all_threads): Use SCOPE_EXIT. + +2019-01-23 Tom Tromey + Pedro Alves + + * symfile.c: Include forward-scope-exit.h. + (clear_symtab_users_cleanup): Replace forward declaration with + a FORWARD_SCOPE_EXIT. + (syms_from_objfile_1): Use the forward_scope_exit and + gdb::optional instead of cleanup_function. + (reread_symbols): Use the forward_scope_exit instead of + cleanup_function. + (clear_symtab_users_cleanup): Remove function. + +2019-01-23 Tom Tromey + Pedro Alves + + * linux-nat.c: Include scope-exit.h. + (cleanup_target_stop): Remove. + (linux_nat_target::static_tracepoint_markers_by_strid): Use + SCOPE_EXIT. + +2019-01-23 Tom Tromey + Pedro Alves + + * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove. + (call_function_by_hand_dummy): Use SCOPE_EXIT. + +2019-01-23 Tom Tromey + Andrew Burgess + Pedro Alves + + * infrun.c (fetch_inferior_event): Use scope_exit. + * utils.h (make_bpstat_clear_actions_cleanup): Don't declare. + * top.c (execute_command): Use scope_exit. + * breakpoint.c (bpstat_do_actions): Use scope_exit. + * utils.c (do_bpstat_clear_actions_cleanup) + (make_bpstat_clear_actions_cleanup): Remove. + +2019-01-23 Tom Tromey + Pedro Alves + + * infrun.c: Include "common/scope-exit.h" + (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove. + (wait_for_inferior): Use SCOPE_EXIT. + (fetch_inferior_event): Use scope_exit. + +2019-01-23 Tom Tromey + Pedro Alves + + * breakpoint.c (create_breakpoint): Remove cleanup. + +2019-01-23 Tom Tromey + Andrew Burgess + Pedro Alves + +2019-01-23 Pedro Alves + + * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT. + +2019-01-23 Pedro Alves + Andrew Burgess + + * gdbthread.h: Include "common/forward-scope-exit.h". + (scoped_finish_thread_state): Redefine custom class in terms of + forward_scope_exit. + +2019-01-23 Pedro Alves + Andrew Burgess + + * common/forward-scope-exit.h: New file. + +2019-01-23 Pedro Alves + Andrew Burgess + Tom Tromey + + * common/scope-exit.h: New file. + +2019-01-23 Pedro Alves + + * common/preprocessor.h (ESC): Rename to ... + (ESC_PARENS): ... this. + * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2) + (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust. + +2019-01-23 Tom Tromey + + * language.h (class scoped_switch_to_sym_language_if_auto): + Initialize m_lang in both cases. + +2019-01-23 Alan Hayward + + * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW + with XCNEW. + +2019-01-22 Tom Tromey + + * corelow.c: Do not include sys/file.h. + +2019-01-22 Tom Tromey + + * tui/tui-wingeneral.h: Include gdb_curses.h. + +2019-01-22 Tom Tromey + + * source-cache.h (class source_cache) : Rename "lines" parameter. + +2019-01-22 Tom Tromey + + * remote-fileio.h (struct remote_target): Declare. + +2019-01-22 Tom Tromey + + * python/py-arch.c: Do not include py-ref.h. + * python/py-bpevent.c: Do not include py-ref.h. + * python/py-cmd.c: Do not include py-ref.h. + * python/py-continueevent.c: Do not include py-ref.h. + * python/py-event.h: Do not include py-ref.h. + * python/py-evtregistry.c: Do not include py-ref.h. + * python/py-finishbreakpoint.c: Do not include py-ref.h. + * python/py-frame.c: Do not include py-ref.h. + * python/py-framefilter.c: Do not include py-ref.h. + * python/py-function.c: Do not include py-ref.h. + * python/py-infevents.c: Do not include py-ref.h. + * python/py-linetable.c: Do not include py-ref.h. + * python/py-objfile.c: Do not include py-ref.h. + * python/py-param.c: Do not include py-ref.h. + * python/py-prettyprint.c: Do not include py-ref.h. + * python/py-progspace.c: Do not include py-ref.h. + * python/py-symbol.c: Do not include py-ref.h. + * python/py-symtab.c: Do not include py-ref.h. + * python/py-type.c: Do not include py-ref.h. + * python/py-unwind.c: Do not include py-ref.h. + * python/py-utils.c: Do not include py-ref.h. + * python/py-value.c: Do not include py-ref.h. + * python/py-varobj.c: Do not include py-ref.h. + * python/py-xmethods.c: Do not include py-ref.h. + * python/python.c: Do not include py-ref.h. + * varobj.c: Do not include py-ref.h. + +2019-01-22 Tom Tromey + + * objfiles.h (struct objfile_per_bfd_storage): Use "struct" + keyword for bcache. + +2019-01-22 Tom Tromey + + * compile/compile-cplus-types.c: Remove a comment by #include. + +2019-01-22 Tom Tromey + + * compile/gcc-c-plugin.h: Include compile-internal.h. + +2019-01-22 Tom Tromey + + * stabsread.c (EXTERN): Do not define. + (symnum, next_symbol_text_func, processing_gcc_compilation) + (within_function, global_sym_chain, global_stabs) + (previous_stab_code, this_object_header_files) + (n_this_object_header_files) + (n_allocated_this_object_header_files): Define. + * stabsread.h (EXTERN): Never define. Use "extern". + 2019-01-22 Philippe Waroquiers * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for