| 2016-12-22 Doug Evans <xdje42@gmail.com> |
| |
| * infrun.c (set_step_over_info): Add comment. |
| |
| 2016-12-22 Doug Evans <xdje42@gmail.com> |
| |
| * NEWS: Document new syntax for "mt print symbols", "mt print psymbols" |
| and "mt print msymbols" commands. |
| * psymtab.c (DEV_TTY): Delete. |
| (dump_psymtab_addrmap): Don't dump if psymtabs_addrmap is NULL. |
| (maintenance_print_psymbols): Rewrite for new syntax: |
| mt print psymbols [-objfile objfile] [-pc address] [outfile] |
| mt print psymbols [-objfile objfile] [-source source] [outfile] |
| (_initialize_psymtab): Update help text. |
| * symmisc.c (maintenance_print_symbols): Rewrite for new syntax: |
| mt print symbols [-pc address] [outfile] |
| mt print symbols [-objfile objfile] [-source source] [outfile] |
| (maintenance_print_msymbols): Rewrite for new syntax: |
| mt print msymbols [-objfile objfile] [outfile] |
| Only print symbols for the current progspace. |
| (_initialize_symmisc): Update help text. |
| |
| 2016-12-22 Simon Marchi <simon.marchi@ericsson.com> |
| |
| * ui-out.h (ui_out_begin, ui_out_end, ui_out_table_header, |
| ui_out_table_body, ui_out_field_int, ui_out_field_fmt_int, |
| ui_out_field_core_addr, ui_out_field_string, ui_out_field_stream, |
| ui_out_field_fmt, ui_out_field_skip, ui_out_spaces, ui_out_text, |
| ui_out_message, ui_out_wrap_hint, ui_out_flush, ui_out_test_flags, |
| ui_out_query_field, ui_out_is_mi_like_p, ui_out_redirect): |
| Remove, replace with a method in class ui_out. |
| (table_begin_ftype): Remove, replace with pure virtual method in |
| class ui_out. |
| (table_body_ftype): Likewise. |
| (table_end_ftype): Likewise. |
| (table_header_ftype): Likewise. |
| (ui_out_begin_ftype): Likewise. |
| (ui_out_end_ftype): Likewise. |
| (field_int_ftype): Likewise. |
| (field_skip_ftype): Likewise. |
| (field_string_ftype): Likewise. |
| (field_fmt_ftype): Likewise. |
| (spaces_ftype): Likewise. |
| (text_ftype): Likewise. |
| (message_ftype): Likewise. |
| (wrap_hint_ftype): Likewise. |
| (flush_ftype): Likewise. |
| (redirect_ftype): Likewise. |
| (data_destroy_ftype): Likewise. |
| (struct ui_out_impl): Remove, replace with class ui_out. |
| (ui_out_new): Remove. |
| (class ui_out): New class. |
| * ui-out.c (struct ui_out): Remove, replaced with class ui_out. |
| (current_level): Remove, replace with ui_out method. |
| (push_level): Likewise. |
| (pop_level): Likewise. |
| (uo_table_begin, uo_table_body, uo_table_end, uo_table_header, |
| uo_begin, uo_end, uo_field_int, uo_field_skip, uo_field_fmt, |
| uo_spaces, uo_text, uo_message, uo_wrap_hint, uo_flush, |
| uo_redirect, uo_field_string): Remove. |
| (ui_out_table_begin): Replace with ... |
| (ui_out::table_begin): ... this. |
| (ui_out_table_body): Replace with ... |
| (ui_out::table_body): ... this. |
| (ui_out_table_end): Replace with ... |
| (ui_out::table_end): ... this. |
| (ui_out_table_header): Replace with ... |
| (ui_out::table_header): ... this. |
| (ui_out_begin): Replace with ... |
| (ui_out::begin): ... this. |
| (ui_out_end): Replace with ... |
| (ui_out::end): ... this. |
| (ui_out_field_int): Replace with ... |
| (ui_out::field_int): ... this. |
| (ui_out_field_fmt_int): Replace with ... |
| (ui_out::field_fmt_int): ... this. |
| (ui_out_field_core_addr): Replace with ... |
| (ui_out::field_core_addr): ... this. |
| (ui_out_field_stream): Replace with ... |
| (ui_out::field_stream): ... this. |
| (ui_out_field_skip): Replace with ... |
| (ui_out::field_skip): ... this. |
| (ui_out_field_string): Replace with ... |
| (ui_out::field_string): ... this. |
| (ui_out_field_fmt): Replace with ... |
| (ui_out::field_fmt): ... this. |
| (ui_out_spaces): Replace with ... |
| (ui_out::spaces): ... this. |
| (ui_out_text): Replace with ... |
| (ui_out::text): ... this. |
| (ui_out_message): Replace with ... |
| (ui_out::message): ... this. |
| (ui_out_wrap_hint): Replace with ... |
| (ui_out::wrap_hint): ... this. |
| (ui_out_flush): Replace with ... |
| (ui_out::flush): ... this. |
| (ui_out_redirect): Replace with ... |
| (ui_out::redirect): ... this. |
| (ui_out_test_flags): Replace with ... |
| (ui_out::test_flags): ... this. |
| (ui_out_is_mi_like_p): Replace with ... |
| (ui_out::is_mi_like_p): ... this. |
| (verify_field): Replace with ... |
| (ui_out::verify_field): ... this. |
| (ui_out_query_field): Replace with ... |
| (ui_out::query_table_field): ... this. |
| (ui_out_data): Remove. |
| (ui_out_new): Remove, replace with ... |
| (ui_out::ui_out): ... this constructor. |
| (do_cleanup_table_end, make_cleanup_ui_out_tuple_begin_end, |
| do_cleanup_end, make_cleanup_ui_out_tuple_begin_end, |
| make_cleanup_ui_out_list_begin_end): Update fallouts of struct |
| ui_out -> class ui_out change. |
| * cli-out.c (cli_out_data): Remove. |
| (cli_uiout_dtor): Remove. |
| (cli_table_begin): Replace with ... |
| (cli_ui_out::do_table_begin): ... this new method. |
| (cli_table_body): Replace with ... |
| (cli_ui_out::do_table_body): ... this new method. |
| (cli_table_end): Replace with ... |
| (cli_ui_out::do_table_end): ... this new method. |
| (cli_table_header): Replace with ... |
| (cli_ui_out::do_table_header): ... this new method. |
| (cli_begin): Replace with ... |
| (cli_ui_out::do_begin): ... this new method. |
| (cli_end): Replace with ... |
| (cli_ui_out::do_end): ... this new method. |
| (cli_field_int): Replace with ... |
| (cli_ui_out::do_field_int): ... this new method. |
| (cli_field_skip): Replace with ... |
| (cli_ui_out::do_field_skip): ... this new method. |
| (cli_field_string): Replace with ... |
| (cli_ui_out::do_field_string): ... this new method. |
| (cli_field_fmt): Replace with ... |
| (cli_ui_out::do_field_fmt): ... this new method. |
| (cli_spaces): Replace with ... |
| (cli_ui_out::do_spaces): ... this new method. |
| (cli_text): Replace with ... |
| (cli_ui_out::do_text): ... this new method. |
| (cli_message): Replace with ... |
| (cli_ui_out::do_message): ... this new method. |
| (cli_wrap_hint): Replace with ... |
| (cli_ui_out::do_wrap_hint): ... this new method. |
| (cli_flush): Replace with ... |
| (cli_ui_out::do_flush): ... this new method. |
| (cli_redirect): Replace with ... |
| (cli_ui_out::do_redirect): ... this new method. |
| (out_field_fmt): Replace with ... |
| (cli_ui_out::out_field_fmt): ... this new method. |
| (field_separator): Replace with ... |
| (cli_ui_out::field_separator): ... this new method. |
| (cli_out_set_stream): Replace with ... |
| (cli_ui_out::set_stream): ... this new method. |
| (cli_ui_out_impl): Remove. |
| (cli_out_data_ctor): Remove. |
| (cli_ui_out_impl::cli_ui_out_impl): New constructor. |
| (cli_ui_out_impl::~cli_ui_out_impl): New destructor. |
| (cli_out_new): Change return type to cli_ui_out *, instantiate a |
| cli_ui_out. |
| * cli-out.h (cli_ui_out_data): Remove, replace with class |
| cli_ui_out. |
| (class cli_ui_out): New class. |
| (cli_ui_out_impl): Remove. |
| (cli_out_data_ctor): Remove. |
| (cli_out_new): Change return type to cli_ui_out*. |
| (cli_out_set_stream): Remove. |
| * cli/cli-interp.c (struct cli_interp) <cli_uiout>: Change type |
| to cli_ui_out*. |
| (cli_interpreter_resume): Adapt. |
| (cli_interpreter_exec): Adapt. |
| * mi/mi-out.c (mi_ui_out_data, mi_out_data): Remove. |
| (mi_ui_out_impl): Remove. |
| (mi_table_begin): Replace with ... |
| (mi_ui_out::do_table_begin): ... this. |
| (mi_table_body): Replace with ... |
| (mi_ui_out::do_table_body): ... this. |
| (mi_table_end): Replace with ... |
| (mi_ui_out::do_table_end): ... this. |
| (mi_table_header): Replace with ... |
| (mi_ui_out::do_table_header): ... this. |
| (mi_begin): Replace with ... |
| (mi_ui_out::do_begin): ... this. |
| (mi_end): Replace with ... |
| (mi_ui_out::do_end): ... this. |
| (mi_field_int): Replace with ... |
| (mi_ui_out::do_field_int): ... this. |
| (mi_field_skip): Replace with ... |
| (mi_ui_out::do_field_skip): ... this. |
| (mi_field_string): Replace with ... |
| (mi_ui_out::do_field_string): ... this. |
| (mi_field_fmt): Replace with ... |
| (mi_ui_out::do_field_fmt): ... this. |
| (mi_spaces): Replace with ... |
| (mi_ui_out::do_spaces): ... this. |
| (mi_text): Replace with ... |
| (mi_ui_out::do_text): ... this. |
| (mi_message): Replace with ... |
| (mi_ui_out::do_message): ... this. |
| (mi_wrap_hint): Replace with ... |
| (mi_ui_out::do_wrap_hint): ... this. |
| (mi_flush): Replace with ... |
| (mi_ui_out::do_flush): ... this. |
| (mi_redirect): Replace with ... |
| (mi_ui_out::do_redirect): |
| (field_separator): Replace with ... |
| (mi_ui_out::field_separator): |
| (mi_open): Replace with ... |
| (mi_ui_out::open): ... this. |
| (mi_close): Replace with ... |
| (mi_ui_out::close): ... this. |
| (mi_out_rewind): Replace with ... |
| (mi_ui_out::rewind): ... this. |
| (mi_out_put): Replace with ... |
| (mi_ui_out::put): ... this. |
| (mi_version): Replace with ... |
| (mi_ui_out::version): ... this. |
| (mi_out_data_ctor): Replace with ... |
| (mi_ui_out::mi_ui_out): ... this. |
| (mi_out_data_dtor): Replace with ... |
| (mi_ui_out::~mi_ui_out): ... this. |
| (mi_out_new): Change return type to mi_ui_out*, instantiate |
| an mi_ui_out object. |
| (as_mi_ui_out): New function. |
| (mi_version): Update fallouts of struct ui_out to class ui_out |
| transition. |
| (mi_out_put): Likewise. |
| (mi_out_rewind): Likewise. |
| * mi/mi-out.h (mi_out_new): Change return type to mi_ui_out*. |
| * tui/tui-out.c (tui_ui_out_data, tui_out_data, tui_ui_out_impl): |
| Remove. |
| (tui_field_int): Replace with ... |
| (tui_ui_out::do_field_int): ... this. |
| (tui_field_string): Replace with ... |
| (tui_ui_out::do_field_string): ... this. |
| (tui_field_fmt): Replace with ... |
| (tui_ui_out::do_field_fmt): ... this. |
| (tui_text): Replace with ... |
| (tui_ui_out::do_text): ... this. |
| (tui_out_new): Change return type to tui_ui_out*, instantiate |
| tui_ui_out object. |
| (tui_ui_out::tui_ui_out): New. |
| * tui/tui-out.h: New file. |
| * tui/tui.h (tui_out_new): Move declaration to tui/tui-out.h. |
| * tui/tui-io.c: Include tui/tui-out.h. |
| (tui_old_uiout): Change type to cli_ui_out*. |
| (tui_setup_io): Use dynamic_cast. |
| * tui/tui-io.h (tui_old_uiout): Change type to cli_ui_out*. |
| * tui/tui-interp.c (tui_resume): Adapt. |
| * ada-lang.c (print_it_exception): Update fallouts of struct |
| ui_out to class ui_out transition. |
| (print_one_exception): Likewise. |
| (print_mention_exception): Likewise. |
| * ada-tasks.c (print_ada_task_info): Likewise. |
| (info_task): Likewise. |
| (task_command): Likewise. |
| * auto-load.c (print_script): Likewise. |
| (auto_load_info_scripts): Likewise. |
| (info_auto_load_cmd): Likewise. |
| * break-catch-sig.c (signal_catchpoint_print_one): Likewise. |
| * break-catch-syscall.c (print_it_catch_syscall): Likewise. |
| (print_one_catch_syscall): Likewise. |
| * break-catch-throw.c (print_it_exception_catchpoint): Likewise. |
| (print_one_exception_catchpoint): Likewise. |
| (print_one_detail_exception_catchpoint): Likewise. |
| (print_mention_exception_catchpoint): Likewise. |
| * breakpoint.c (maybe_print_thread_hit_breakpoint): Likewise. |
| (print_solib_event): Likewise. |
| (watchpoint_check): Likewise. |
| (wrap_indent_at_field): Likewise. |
| (print_breakpoint_location): Likewise. |
| (output_thread_groups): Likewise. |
| (print_one_breakpoint_location): Likewise. |
| (breakpoint_1): Likewise. |
| (default_collect_info): Likewise. |
| (watchpoints_info): Likewise. |
| (print_it_catch_fork): Likewise. |
| (print_one_catch_fork): Likewise. |
| (print_it_catch_vfork): Likewise. |
| (print_one_catch_vfork): Likewise. |
| (print_it_catch_solib): Likewise. |
| (print_one_catch_solib): Likewise. |
| (print_it_catch_exec): Likewise. |
| (print_one_catch_exec): Likewise. |
| (mention): Likewise. |
| (print_it_ranged_breakpoint): Likewise. |
| (print_one_ranged_breakpoint): Likewise. |
| (print_one_detail_ranged_breakpoint): Likewise. |
| (print_mention_ranged_breakpoint): Likewise. |
| (print_it_watchpoint): Likewise. |
| (print_mention_watchpoint): Likewise. |
| (print_it_masked_watchpoint): Likewise. |
| (print_one_detail_masked_watchpoint): Likewise. |
| (print_mention_masked_watchpoint): Likewise. |
| (bkpt_print_it): Likewise. |
| (tracepoint_print_one_detail): Likewise. |
| (tracepoint_print_mention): Likewise. |
| (update_static_tracepoint): Likewise. |
| (tracepoints_info): Likewise. |
| (save_breakpoints): Likewise. |
| * cli/cli-cmds.c (complete_command): Likewise. |
| * cli/cli-logging.c (set_logging_redirect): Likewise. |
| (pop_output_files): Likewise. |
| (handle_redirections): Likewise. |
| * cli/cli-script.c (print_command_lines): Likewise. |
| * cli/cli-setshow.c (do_show_command): Likewise. |
| (cmd_show_list): Likewise. |
| * cp-abi.c (list_cp_abis): Likewise. |
| (show_cp_abi_cmd): Likewise. |
| * darwin-nat-info.c (darwin_debug_regions_recurse): Likewise. |
| * disasm.c (gdb_pretty_print_insn): Likewise. |
| (do_mixed_source_and_assembly_deprecated): Likewise. |
| (do_mixed_source_and_assembly): Likewise. |
| * gdb_bfd.c (print_one_bfd): Likewise. |
| (maintenance_info_bfds): Likewise. |
| * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Likewise. |
| * guile/scm-ports.c (ioscm_with_output_to_port_worker): Likewise. |
| * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Likewise. |
| * i386-tdep.c (i386_mpx_print_bounds): Likewise. |
| * infcmd.c (run_command_1): Likewise. |
| (print_return_value_1): Likewise. |
| * inferior.c (print_selected_inferior): Likewise. |
| (print_inferior): Likewise. |
| * infrun.c (print_end_stepping_range_reason): Likewise. |
| (print_signal_exited_reason): Likewise. |
| (print_exited_reason): Likewise. |
| (print_signal_received_reason): Likewise. |
| (print_no_history_reason): Likewise. |
| * interps.c (interp_set): Likewise. |
| * linespec.c (decode_line_full): Likewise. |
| * linux-thread-db.c (info_auto_load_libthread_db): Likewise. |
| * mi/mi-cmd-env.c (mi_cmd_env_pwd): Likewise. |
| (mi_cmd_env_path): Likewise. |
| (mi_cmd_env_dir): Likewise. |
| (mi_cmd_inferior_tty_show): Likewise. |
| * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Likewise. |
| (print_partial_file_name): Likewise. |
| (mi_cmd_file_list_exec_source_files): Likewise. |
| * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Likewise. |
| (mi_cmd_info_gdb_mi_command): Likewise. |
| * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth): Likewise. |
| (mi_cmd_stack_list_args): Likewise. |
| (list_arg_or_local): Likewise. |
| * mi/mi-cmd-var.c (print_varobj): Likewise. |
| (mi_cmd_var_create): Likewise. |
| (mi_cmd_var_delete): Likewise. |
| (mi_cmd_var_set_format): Likewise. |
| (mi_cmd_var_show_format): Likewise. |
| (mi_cmd_var_info_num_children): Likewise. |
| (mi_cmd_var_list_children): Likewise. |
| (mi_cmd_var_info_type): Likewise. |
| (mi_cmd_var_info_path_expression): Likewise. |
| (mi_cmd_var_info_expression): Likewise. |
| (mi_cmd_var_show_attributes): Likewise. |
| (mi_cmd_var_evaluate_expression): Likewise. |
| (mi_cmd_var_assign): Likewise. |
| (varobj_update_one): Likewise. |
| * mi/mi-interp.c (as_mi_interp): Likewise. |
| (mi_on_normal_stop_1): Likewise. |
| (mi_tsv_modified): Likewise. |
| (mi_breakpoint_created): Likewise. |
| (mi_breakpoint_modified): Likewise. |
| (mi_solib_loaded): Likewise. |
| (mi_solib_unloaded): Likewise. |
| (mi_command_param_changed): Likewise. |
| (mi_memory_changed): Likewise. |
| (mi_user_selected_context_changed): Likewise. |
| * mi/mi-main.c (print_one_inferior): Likewise. |
| (output_cores): Likewise. |
| (list_available_thread_groups): Likewise. |
| (mi_cmd_data_list_register_names): Likewise. |
| (mi_cmd_data_list_changed_registers): Likewise. |
| (output_register): Likewise. |
| (mi_cmd_data_evaluate_expression): Likewise. |
| (mi_cmd_data_read_memory): Likewise. |
| (mi_cmd_data_read_memory_bytes): Likewise. |
| (mi_cmd_list_features): Likewise. |
| (mi_cmd_list_target_features): Likewise. |
| (mi_cmd_add_inferior): Likewise. |
| (mi_execute_command): Likewise. |
| (mi_load_progress): Likewise. |
| (print_variable_or_computed): Likewise. |
| (mi_cmd_trace_frame_collected): Likewise. |
| * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Likewise. |
| * osdata.c (info_osdata_command): Likewise. |
| * probe.c (gen_ui_out_table_header_info): Likewise. |
| (print_ui_out_not_applicables): Likewise. |
| (print_ui_out_info): Likewise. |
| (info_probes_for_ops): Likewise. |
| (enable_probes_command): Likewise. |
| (disable_probes_command): Likewise. |
| * progspace.c (print_program_space): Likewise. |
| * python/py-breakpoint.c (bppy_get_commands): Likewise. |
| * python/py-framefilter.c (py_print_type): Likewise. |
| (py_print_value): Likewise. |
| (py_print_single_arg): Likewise. |
| (enumerate_args): Likewise. |
| (enumerate_locals): Likewise. |
| (py_print_args): Likewise. |
| (py_print_frame): Likewise. |
| * record-btrace.c (btrace_ui_out_decode_error): Likewise. |
| (btrace_call_history_insn_range): Likewise. |
| (btrace_call_history_src_line): Likewise. |
| (btrace_call_history): Likewise. |
| * remote.c (show_remote_cmd): Likewise. |
| * skip.c (skip_info): Likewise. |
| * solib.c (info_sharedlibrary_command): Likewise. |
| * source.c (print_source_lines_base): Likewise. |
| * spu-tdep.c (info_spu_event_command): Likewise. |
| (info_spu_signal_command): Likewise. |
| (info_spu_mailbox_list): Likewise. |
| (info_spu_dma_cmdlist): Likewise. |
| (info_spu_dma_command): Likewise. |
| (info_spu_proxydma_command): Likewise. |
| * stack.c (print_stack_frame): Likewise. |
| (print_frame_arg): Likewise. |
| (read_frame_arg): Likewise. |
| (print_frame_args): Likewise. |
| (print_frame_info): Likewise. |
| (print_frame): Likewise. |
| * symfile.c (load_progress): Likewise. |
| (generic_load): Likewise. |
| (print_transfer_performance): Likewise. |
| * thread.c (do_captured_list_thread_ids): Likewise. |
| (print_thread_info_1): Likewise. |
| (restore_selected_frame): Likewise. |
| (do_captured_thread_select): Likewise. |
| (print_selected_thread_frame): Likewise. |
| * top.c (execute_command_to_string): Likewise. |
| * tracepoint.c (tvariables_info_1): Likewise. |
| (trace_status_mi): Likewise. |
| (tfind_1): Likewise. |
| (print_one_static_tracepoint_marker): Likewise. |
| (info_static_tracepoint_markers_command): Likewise. |
| * utils.c (do_ui_out_redirect_pop): Likewise. |
| (fputs_maybe_filtered): Likewise. |
| |
| 2016-12-20 Pedro Alves <palves@redhat.com> |
| |
| * nto-tdep.c (nto_find_and_open_solib): Constify 'solib' |
| parameter. |
| * nto-tdep.h (nto_find_and_open_solib): Constify 'solib' |
| parameter. |
| * solib.c (solib_find_1, exec_file_find, solib_find): Constify |
| in_pathname' parameter. |
| * solist.h (struct target_so_ops) <find_and_open_solib>: Constify |
| 'soname' parameter. |
| (exec_file_find, solib_find): Constify 'in_pathname' parameter. |
| |
| 2016-12-20 Pedro Alves <palves@redhat.com> |
| Yao Qi <yao.qi@linaro.org> |
| |
| PR gdb/20977 |
| * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept): New |
| noexcept function, factored out from ... |
| (gdb_rl_callback_read_char_wrapper): ... this. |
| (gdb_rl_callback_handler): Mark noexcept. |
| |
| 2016-12-20 Antoine Tremblay <antoine.tremblay@ericsson.com> |
| |
| * .dir-locals.el: Set c++ mode for the directory and set indent |
| properly. |
| * gdb-code-style.el: Set c-set-offset 'innamespace as a safe value |
| to be used in .dir-locals.el. |
| |
| 2016-12-16 Bernhard Heckel <bernhard.heckel@intel.com> |
| |
| * darwin-nat-info.c (info_mach_region_command): Use expression_up. |
| |
| 2016-12-12 Yao Qi <yao.qi@linaro.org> |
| |
| PR tdep/20955 |
| * cris-tdep.c (cris_delayed_get_disassembler): Remove the |
| assert. |
| |
| 2016-12-09 Pedro Alves <palves@redhat.com> |
| |
| * Makefile.in (ALL_TARGET_OBS): Remove vax-obsd-tdep.o. |
| * alpha-fbsd-tdep.c (_initialize_alphafbsd_tdep): Adjust. |
| * alpha-nbsd-tdep.c: Move comment to _initialize_alphanbsd_tdep. |
| (alphanbsd_core_osabi_sniffer): Delete. |
| (_initialize_alphanbsd_tdep): No longer handle a.out. |
| * alpha-obsd-tdep.c (_initialize_alphaobsd_tdep): Adjust. |
| * amd64-fbsd-tdep.c (_initialize_amd64fbsd_tdep): Adjust. |
| * amd64-nbsd-tdep.c (_initialize_amd64nbsd_tdep): Adjust. |
| * amd64-obsd-tdep.c (amd64obsd_supply_regset) |
| (amd64obsd_combined_regset) |
| (amd64obsd_iterate_over_regset_sections, amd64obsd_core_init_abi): |
| Delete. |
| (_initialize_amd64obsd_tdep): Don't handle a.out. |
| * arm-nbsd-nat.c (struct md_core, fetch_core_registers) |
| (arm_netbsd_core_fns): Delete. |
| (_initialize_arm_netbsd_nat): Don't register arm_netbsd_core_fns. |
| * arm-nbsd-tdep.c (arm_netbsd_aout_init_abi) |
| (arm_netbsd_aout_osabi_sniffer): Delete. |
| (_initialize_arm_netbsd_tdep): Don't handle a.out. |
| * arm-obsd-tdep.c (armobsd_core_osabi_sniffer): Delete. |
| (_initialize_armobsd_tdep): Don't handle a.out. |
| * arm-tdep.c (arm_gdbarch_init): Remove bfd_target_aout_flavour |
| case. |
| * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Remove |
| SunOS a.out handling. |
| * configure.tgt (vax-*-netbsd* | vax-*-knetbsd*-gnu): Remove |
| vax-obsd-tdep.o from gdb_target_objs. |
| (vax-*-openbsd*): Likewise. |
| (*-*-freebsd*): Adjust default gdb_osabi. |
| (*-*-openbsd*): Likewise. |
| * dbxread.c (block_address_function_relative): Delete. |
| (dbx_symfile_read): Remove reference to |
| block_address_function_relative. |
| (dbx_symfile_read): Don't call read_dbx_dynamic_symtab. |
| (read_dbx_dynamic_symtab): Delete. |
| (process_one_symbol): Remove references to |
| block_address_function_relative. |
| * defs.h (GDB_OSABI_FREEBSD_AOUT, GDB_OSABI_NETBSD_AOUT): Remove. |
| (GDB_OSABI_FREEBSD_ELF): Rename to ... |
| (GDB_OSABI_FREEBSD): ... this. |
| (GDB_OSABI_NETBSD_ELF): Rename to ... |
| (GDB_OSABI_NETBSD): ... this. |
| (GDB_OSABI_OPENBSD_ELF): Rename to ... |
| (GDB_OSABI_OPENBSD): ... this. |
| (GDB_OSABI_HPUX_ELF, GDB_OSABI_HPUX_SOM): Remove. |
| * fbsd-tdep.c: Adjust comment. |
| * hppa-nbsd-tdep.c (_initialize_hppanbsd_tdep): Adjust. |
| * hppa-obsd-tdep.c (GDB_OSABI_NETBSD_CORE): Delete. |
| (hppaobsd_core_osabi_sniffer): Delete. |
| (_initialize_hppabsd_tdep): Don't handle a.out. |
| * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't handle |
| GDB_OSABI_HPUX_SOM. |
| (hppa_gdbarch_init): Likewise. |
| * i386-bsd-tdep.c (i386bsd_aout_osabi_sniffer) |
| (i386bsd_core_osabi_sniffer, _initialize_i386bsd_tdep): Delete. |
| * i386-fbsd-tdep.c (i386fbsdaout_init_abi): Delete. Merge bits |
| with ... |
| (i386fbsd_init_abi): ... this. |
| (_initialize_i386fbsd_tdep): Don't handle a.out. |
| * i386-nbsd-tdep.c (_initialize_i386nbsd_tdep): Adjust. |
| * i386-obsd-tdep.c (i386obsd_aout_supply_regset) |
| (i386obsd_aout_gregset) |
| (i386obsd_aout_iterate_over_regset_sections): Delete. |
| (i386obsd_init_abi): Merge with i386obsd_elf_init_abi. |
| (i386obsd_aout_init_abi): Delete. |
| (_initialize_i386obsd_tdep): Don't handle a.out. |
| * m68k-bsd-tdep.c (m68kobsd_sigtramp_cache_init) |
| (m68kobsd_sigtramp): Delete. |
| (m68kbsd_init_abi): Merge with ... |
| (m68kbsd_elf_init_abi): ... this, and delete it. |
| (m68kbsd_aout_init_abi): Delete. |
| (m68kbsd_aout_osabi_sniffer, m68kbsd_core_osabi_sniffer): Delete. |
| (_initialize_m68kbsd_tdep): Don't handle a.out. |
| * mips-nbsd-tdep.c (_initialize_mipsnbsd_tdep): Adjust. |
| * mips64-obsd-tdep.c (_initialize_mips64obsd_tdep): Adjust. |
| * osabi.c (gdb_osabi_names): Remove "a.out" entries. Drop "ELF" |
| suffixes. Remove "HP-UX" entries. |
| (generic_elf_osabi_sniff_abi_tag_sections): Adjust. |
| (generic_elf_osabi_sniffer): No longer handle GDB_OSABI_HPUX_ELF. |
| Adjust. |
| (_initialize_ppcfbsd_tdep): Adjust. |
| * ppc-nbsd-tdep.c (_initialize_ppcnbsd_tdep): Adjust. |
| * ppc-obsd-tdep.c (GDB_OSABI_NETBSD_CORE) |
| (ppcobsd_core_osabi_sniffer): Delete. |
| (_initialize_ppcobsd_tdep): Don't handle a.out. |
| * rs6000-tdep.c (rs6000_gdbarch_init): Adjust. |
| * sh-nbsd-tdep.c (GDB_OSABI_NETBSD_CORE) |
| (shnbsd_core_osabi_sniffer): Delete. |
| (_initialize_shnbsd_tdep): Don't handle a.out. |
| * solib.c (clear_solib): Don't handle SunOS/a.out. |
| * sparc-nbsd-tdep.c (sparc32nbsd_init_abi): Make extern. |
| (sparc32nbsd_aout_init_abi): Delete. |
| (sparc32nbsd_elf_init_abi): Merged into sparc32nbsd_init_abi. |
| (sparcnbsd_aout_osabi_sniffer): Delete. |
| (GDB_OSABI_NETBSD_CORE, sparcnbsd_core_osabi_sniffer): Delete. |
| (_initialize_sparcnbsd_tdep): No longer handle a.out. |
| * sparc-obsd-tdep.c (sparc32obsd_init_abi) |
| (_initialize_sparc32obsd_tdep): Adjust. |
| * sparc-tdep.h (sparc32nbsd_elf_init_abi): Rename to ... |
| (sparc32nbsd_init_abi): ... this. |
| * sparc64-fbsd-tdep.c (_initialize_sparc64fbsd_tdep): Adjust. |
| * sparc64-nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Adjust. |
| * sparc64-obsd-tdep.c (_initialize_sparc64obsd_tdep): Adjust. |
| * stabsread.c: Update comment. |
| * symmisc.c (print_objfile_statistics): Don't mention "a.out" in |
| output. |
| * vax-nbsd-tdep.c (_initialize_vaxnbsd_tdep): Adjust. |
| * vax-obsd-tdep.c: Delete file. |
| |
| 2016-12-09 Yao Qi <yao.qi@linaro.org> |
| |
| PR tdep/20954 |
| * rx-tdep.c (rx_psw_type): New function. |
| (rx_fpsw_type): New function. |
| (rx_register_type): Call rx_psw_type and rx_fpsw_type. |
| (rx_gdbarch_init): Move code to rx_psw_type and |
| rx_fpsw_type. |
| |
| 2016-12-09 Yao Qi <yao.qi@linaro.org> |
| |
| PR tdep/20953 |
| * rl78-tdep.c (rl78_psw_type): New function. |
| (rl78_register_type): Call rl78_psw_type. |
| (rl78_gdbarch_init): Move code to rl78_psw_type. |
| |
| 2016-12-09 Yao Qi <yao.qi@linaro.org> |
| |
| * aarch64-tdep.c (instruction_reader::read): Call |
| read_code_unsigned_integer instead of |
| read_memory_unsigned_integer. |
| |
| 2016-12-09 Yao Qi <yao.qi@linaro.org> |
| |
| * arm-tdep.c (skip_prologue_function): Call |
| read_code_unsigned_integer instead of |
| read_memory_unsigned_integer. |
| (thumb_analyze_prologue): Likewise. |
| (arm_analyze_load_stack_chk_guard): Likewise. |
| (arm_skip_stack_protector): Likewise. |
| (arm_analyze_prologue):Likewise. |
| (extend_buffer_earlier): Call target_read_code instead |
| of target_read_memory. |
| (arm_adjust_breakpoint_address): Likewise. |
| |
| 2016-12-09 Thomas Schwinge <thomas@codesourcery.com> |
| |
| * gnu-nat.c (gnu_create_inferior): After startup_inferior, call |
| prune_threads. |
| |
| * inferior.c (print_selected_inferior): Avoid PATH_MAX usage. |
| |
| 2016-12-08 Simon Marchi <simon.marchi@ericsson.com> |
| Thomas Schwinge <thomas@codesourcery.com> |
| |
| * gnu-nat.c (set_sig_thread_cmd): Use parse_thread_id instead of |
| global_thread_id_to_ptid. |
| |
| 2016-12-08 Thomas Schwinge <thomas@codesourcery.com> |
| |
| * config/i386/i386gnu.mh (%_S.o %_U.o): Add "-x c" to |
| "COMPILE.post". |
| * gnu-nat.c: #include Mach/Hurd headers before all others. Wrap |
| Mach/Hurd headers and MIG stubs' prototypes in 'extern "C"'. |
| * i386-gnu-nat.c: Likewise. |
| |
| * gnu-nat.c (proc_get_exception_port, proc_set_exception_port) |
| (INF_RESUME_MSGPORT_RPC, proc_get_state, _proc_get_exc_port) |
| (proc_steal_exc_port, proc_restore_exc_port, make_proc) |
| (inf_startup, inf_set_pid, inf_validate_procinfo) |
| (inf_validate_task_sc, inf_set_traced, inf_validate_procs) |
| (inf_signal, inf_continue, gnu_wait, S_exception_raise_request) |
| (do_mach_notify_dead_name, S_proc_wait_reply) |
| (S_msg_sig_post_untraced_reply, S_msg_sig_post_reply) |
| (port_msgs_queued, gnu_read_inferior, gnu_write_inferior) |
| (gnu_find_memory_regions, steal_exc_port, thread_takeover_sc_cmd) |
| (flush_inferior_icache): Instead of "error_t" use "kern_return_t". |
| * i386-gnu-nat.c (fetch_fpregs, store_fpregs, i386_gnu_dr_get) |
| (i386_gnu_dr_set): Likewise. |
| |
| * gnu-nat.c (set_task_pause_cmd, set_signals_cmd) |
| (set_exceptions_cmd): Add variants taking an "int arg" instead of |
| a "char *". Make the "char *" variants use the former. |
| (set_noninvasive_cmd): Also use the "int arg" variants. |
| |
| * gnu-nat.c (gnu_create_inferior): Move nested "trace_me" |
| function... |
| (gnu_ptrace_me): ... here. |
| |
| * i386-gnu-nat.c (i386_gnu_dr_set_control_one) |
| (i386_gnu_dr_set_addr_one): Explicitly cast "void *". |
| |
| 2016-12-07 Thomas Schwinge <thomas@codesourcery.com> |
| |
| * gnu-nat.c (set_sig_thread_cmd): Call global_thread_id_to_ptid |
| instead of thread_id_to_pid. |
| |
| 2016-12-06 Simon Marchi <simon.marchi@ericsson.com> |
| |
| * inferior.c (inferior_command): Remove duplicate |
| find_inferior_id call. |
| |
| 2016-12-06 Yao Qi <yao.qi@linaro.org> |
| |
| * frame.c (frame_register_unwind): Set *realnump if *lvalp is |
| lval_register. |
| * value.c (deprecated_value_next_frame_id_hack): Assert |
| value->lval is lval_register. |
| (deprecated_value_regnum_hack): Likewise. |
| |
| 2016-12-02 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.h: Include "common/enum-flags.h". |
| (enum ui_flags): Rename to ... |
| (enum ui_out_flag): ... this. |
| (ui_out_flags): Define enum flag type. |
| (ui_out_test_flags): Change type of parameter to ui_out_flags. |
| (ui_out_new): Likewise. |
| * ui-out.c (ui_out_test_flags): Likewise. |
| (ui_out_new): Likewise. |
| * cli-out.c (cli_out_new): Update variable type. |
| * mi/mi-out.c (mi_out_new): Likewise. |
| * tui/tui-out.c (tui_out_new): Likewise. |
| |
| 2016-12-02 Pedro Alves <palves@redhat.com> |
| |
| * NEWS: Mention that user commands now accept an unlimited number |
| of arguments. |
| * cli/cli-script.c: Include <vector>. |
| (struct string_view): New type. |
| (MAXUSERARGS): Delete. |
| (struct user_args): Now a C++ class. |
| (user_args_stack): New. |
| (struct scoped_user_args_level): New type. |
| (execute_user_command): Use scoped_user_args_level. |
| (arg_cleanup): Delete. |
| (setup_user_args): Deleted, and refactored as ... |
| (user_args::user_args): ... this new constructor. Limit of number |
| of arguments removed. |
| (insert_user_defined_cmd_args): Defer to user_args_stack. |
| (user_args::insert_args): New, bits based on old |
| insert_user_defined_cmd_args with limit of number of arguments |
| eliminated. |
| |
| 2016-12-02 Pedro Alves <palves@redhat.com> |
| |
| PR cli/20559 |
| * NEWS: Mention "eval" expands user-defined command arguments. |
| * cli/cli-script.c (execute_control_command): Adjust to rename. |
| (insert_args): Rename to ... |
| (insert_user_defined_cmd_args): ... this, and make extern. |
| * cli/cli-script.h (insert_user_defined_cmd_args): New |
| declaration. |
| * printcmd.c: Include "cli/cli-script.h". |
| (eval_command): Call insert_user_defined_cmd_args. |
| |
| 2016-12-02 Tom Tromey <tom@tromey.com> |
| |
| PR symtab/16264: |
| * dwarf2read.c (struct partial_die_info) <main_subprogram>: New |
| member. |
| (add_partial_symbol): Call set_objfile_main_name. |
| (read_partial_die): Handle DW_AT_main_subprogram. |
| <DW_AT_calling_convention>: don't call set_objfile_main_name, but |
| set main_subprogram flag. |
| |
| 2016-12-02 Simon Marchi <simon.marchi@ericsson.com> |
| |
| * tracefile-tfile.c (tfile_write_status): Adjust to renames. |
| * tracefile.c (trace_save_command): Rename to... |
| (tsave_command): ...this. |
| (_initialize_tracefile): Adjust to renames. |
| * tracepoint.c (trace_actions_command): Rename to... |
| (actions_command): ...this. |
| (trace_start_command): Rename to... |
| (tstart_command): ...this, and adjust to renames.. |
| (trace_stop_command): Rename to... |
| (tstop_command): ...this. |
| (trace_status_command): Rename to... |
| (tstatus_command): ...this, and adjust to renames. |
| (trace_find_command): Rename to... |
| (tfind_command): ...this. |
| (trace_find_pc_command): Rename to... |
| (tfind_pc_command): ...this. |
| (trace_find_tracepoint_command): Rename to... |
| (tfind_tracepoint_command): ...this. |
| (trace_find_line_command): Rename to... |
| (tfind_line_command): ...this. |
| (trace_find_range_command): Rename to... |
| (tfind_range_command): ...this. |
| (trace_find_outside_command): Rename to... |
| (tfind_outside_command): ...this. |
| (trace_dump_command): Rename to... |
| (tdump_command): ...this. |
| (tfind_1): Adjust to renames. |
| (trace_find_end_command): Rename to... |
| (tfind_end_command): ...this, and adjust to renames.. |
| (trace_status_mi): Adjust to renames. |
| (parse_trace_status): Adjust to renames. |
| (_initialize_tracepoint): Adjust to renames. |
| * tracepoint.h (enum trace_stop_reason) <tstop_command>: Rename |
| to... |
| <trace_stop_command>: ...this. |
| |
| 2016-12-02 Simon Marchi <simon.marchi@ericsson.com> |
| |
| * mi/mi-out.c (mi_ui_out_data) <suppress_output>: Remove. |
| (mi_table_body): Remove suppress_output check. |
| (mi_table_end): Likewise. |
| (mi_table_header): Likewise. |
| (mi_begin): Likewise. |
| (mi_end): Likewise. |
| (mi_field_int): Likewise. |
| (mi_field_string): Likewise. |
| (mi_field_fmt): Likewise. |
| (mi_out_data_ctor): Likewise. |
| |
| 2016-12-02 Yao Qi <yao.qi@linaro.org> |
| Pedro Alves <palves@redhat.com> |
| |
| * aarch64-tdep.c (aarch64_analyze_prologue): Recognize STR |
| instruction. |
| (aarch64_analyze_prologue_test): More tests. |
| |
| 2016-12-02 Yao Qi <yao.qi@linaro.org> |
| Pedro Alves <palves@redhat.com> |
| |
| * aarch64-tdep.c: Include "selftest.h". |
| (abstract_instruction_reader): New class. |
| (instruction_reader): New class. |
| (aarch64_analyze_prologue): Add new parameter reader. Call |
| reader.read instead of read_memory_unsigned_integer. |
| [GDB_SELF_TEST] (instruction_reader_test): New class. |
| (aarch64_analyze_prologue_test): New function. |
| (_initialize_aarch64_tdep) [GDB_SELF_TEST]: Register |
| selftests::aarch64_analyze_prologue_test. |
| * trad-frame.c (trad_frame_cache_zalloc): |
| (trad_frame_alloc_saved_regs): Add a new function. |
| * trad-frame.h (trad_frame_alloc_saved_regs): Declare. |
| |
| 2016-12-01 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (enum ui_out_table_state): Move to class |
| ui_out_table as ui_out_table::state. |
| (struct ui_out_table): Change to ... |
| (class ui_out_table): ... this. |
| <flag>: Remove. |
| <entry_level>: Rename to ... |
| <m_entry_level>: ... this. |
| <columns>: Rename to ... |
| <m_nr_cols>: ... this. |
| <id>: Rename to ... |
| <m_id>: ... this. |
| <headers>: Rename to ... |
| <m_headers>: ... this. |
| <headers_iterator>: Rename to ... |
| <m_headers_iterator>: ... this. |
| <start_body, append_header, start_row, get_next_header, |
| query_field, current_state, entry_level>: New methods. |
| (struct ui_out) <table>: Change type to unique_ptr to |
| ui_out_table. |
| (append_header_to_list, get_next_header, clear_header_list, |
| clear_table): Remove. |
| (ui_out_table_begin): Instantiate ui_out_table object. Update |
| table check. |
| (ui_out_table_body): Update table check, replace code with call |
| to ui_out_table::start_body. |
| (ui_out_table_end): Update table check, replace manual cleanup |
| with assignment of uiout->table unique_ptr to nullptr. |
| (ui_out_table_header): Update table check, replace call to |
| append_header_to_list with call to append_header method. |
| (ui_out_begin): Remove one table state check, update another. |
| Replace code with call to start_row method. |
| (verify_field): Update table checks. |
| (ui_out_query_field): Update table check, replace code with call |
| to query_field method. |
| (ui_out_new): Remove table initialization code. |
| |
| 2016-12-01 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (enum ui_out_table_state): New enum. |
| (struct ui_out_table) <body_flag>: Remove field. |
| <state>: New field. |
| (ui_out_table_begin): Replace usages of body_flag with state. |
| (ui_out_table_body): Likewise. |
| (ui_out_table_end): Likewise. |
| (ui_out_table_header): Likewise. |
| (ui_out_begin): Likewise. |
| (verify_field): Likewise. |
| (ui_out_new): Likewise. |
| |
| 2016-12-01 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.h (ui_out_begin_ftype): Remove level parameter. |
| (ui_out_end_ftype): Likewise. |
| * ui-out.c (struct ui_out) <level>: Replace field with a method |
| that dynamically computes the result. |
| (current_level): Get vector's back item instead of using |
| uiout->level. |
| (push_level): Make return type void. |
| (pop_level): Make return type void and update access to |
| ui_out::level. |
| (uo_begin): Remove level parameter. |
| (uo_end): Likewise. |
| (ui_out_table_begin): Update access to uiout::level. |
| (ui_out_begin): Don't read return value from push_level, call |
| uiout->level() instead, update call to uo_begin. |
| (ui_out_end): Don't read return value from pop_level, update |
| call to uo_end. |
| (verify_field): Update access to uiout->level. |
| (ui_out_new): Don't initialize ui_out::level, call push_level |
| to push the initial level instead of doing it by hand. |
| * cli-out.c (cli_begin): Remove level parameter. |
| (cli_end): Likewise. |
| * mi/mi-out.c (mi_begin): Likewise. |
| (mi_end): Likewise. |
| |
| 2016-12-01 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (struct ui_out_level): Replace with ... |
| (class ui_out_level): ... this. |
| (current_level): Update. |
| (push_level): Update. |
| (pop_level): Update. |
| (verify_field): Update. |
| (ui_out_new): Update. |
| |
| 2016-12-01 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (struct ui_out_hdr): Replace with ... |
| (class ui_out_hdr): ... this. |
| (append_header_to_list): Update. |
| (get_next_header): Update. |
| (ui_out_query_field): Update. |
| |
| 2016-12-01 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * mi/mi-out.c (mi_table_header): Change char * args to |
| std::string. |
| * cli-out.c (cli_table_header): Likewise. |
| * ui-out.h (table_header_ftype): Likewise. |
| (ui_out_table_header): Constify colhdr argument. |
| (ui_out_query_field): Constify col_name argument. |
| * ui-out.c (ui_out_hdr) <col_name, colhdr>: Change type to |
| std::string. |
| (uo_table_header): Change char * args to std::string. |
| (ui_out_table_header): Likewise. |
| (get_next_header): Constify colhdr argument and adapt. |
| (clear_header_list): Don't free col_name/colhdr fields. |
| (append_header_to_list): Change char * args to std::string and |
| adapt. |
| (verify_field): Constify variable. |
| (ui_out_query_field): Constify col_name argument and adapt. |
| * breakpoint.c (wrap_indent_at_field): Constify variable. |
| |
| 2016-12-01 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (struct ui_out_hdr) <next>: Remove. |
| (struct ui_out_table) <header_first, header_last, header_next>: Remove. |
| <headers, headers_iterator>: New fields. |
| (ui_out_table_body): Update for the new data structure. |
| (ui_out_begin): Likewise. |
| (clear_header_list): Likewise. |
| (append_header_to_list): Likewise. |
| (get_next_header): Likewise. |
| (ui_out_query_field): Likewise. |
| (ui_out_new): Likewise. |
| |
| 2016-11-30 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (struct ui_out_table) <id>: Change type to |
| std::string. |
| (ui_out_table_begin): Change tblid parameter type to |
| std::string, adapt code. |
| update following type change. |
| (clear_table): Update. |
| (ui_out_new): Update. |
| |
| 2016-11-30 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * cli-out.h (cli_ui_out_data) <streams>: Change type to |
| std::vector. |
| * cli-out.c: Remove vec.h include. |
| (cli_uiout_dtor): Update. |
| (cli_field_fmt): Update. |
| (cli_spaces): Update. |
| (cli_text): Update. |
| (cli_message): Update. |
| (cli_flush): Update. |
| (cli_redirect): Update. |
| (out_field_fmt): Update. |
| (field_separator): Update. |
| (cli_out_data_ctor): Update. |
| (cli_out_new): Update. |
| (cli_out_set_stream): Update. |
| |
| 2016-11-30 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * mi/mi-out.c: Remove vec.h include. |
| (mi_ui_out_data) <streams>: Change type to std::vector. |
| (mi_field_string): Update. |
| (mi_field_fmt): Update. |
| (mi_flush): Update. |
| (mi_redirect): Update. |
| (field_separator): Update. |
| (mi_open): Update. |
| (mi_close): Update. |
| (mi_out_buffered): Update. |
| (mi_out_rewind): Update. |
| (mi_out_put): Update. |
| (mi_out_data_ctor): Update. |
| (mi_out_data_dtor): Don't free streams. |
| |
| 2016-11-30 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (ui_out_level_p): Remove typedef. |
| (DEF_VEC_P (ui_out_level_p)): Remove definition. |
| (struct ui_out) <levels>: Change type to vector of unique_ptr of |
| ui_out_level. |
| (current_level): Update. |
| (push_level): Update. |
| (pop_level): Update, don't manually delete the ui_out_level |
| instance. |
| (ui_out_new): Update. |
| |
| 2016-11-30 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * cli-out.c (cli_uiout_dtor): Use delete instead of xfree. |
| (cli_out_new): Use new instead of XNEW. |
| * mi/mi-out.c (mi_out_data_dtor): Use delete instead of xfree. |
| (mi_out_new): Use new instead of XNEW. |
| * tui/tui-out.c (tui_out_new): Likewise. |
| * ui-out.c (push_level): Likewise. |
| (pop_level): Use delete instead of xfree. |
| (clear_header_list): Use delete instead of xfree. |
| (append_header_to_list): Use new instead of XNEW. |
| (ui_out_new): Likewise. |
| |
| 2016-11-30 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * disable-implicit-rules.mk: New file. |
| * Makefile.in: Include disable-implicit-rules.mk. |
| * data-directory/Makefile.in: Likewise. |
| * gnulib/Makefile.in: Likewise. |
| |
| 2016-11-30 Yao Qi <yao.qi@linaro.org> |
| |
| * arm-tdep.c (arm_scan_prologue): Read memory as unsigned integer. |
| (arm_exidx_unwind_sniffer): Likewise. |
| |
| 2016-11-28 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * record-full.c (record_full_open_1): Fix debug output. |
| |
| 2016-11-26 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * mi/mi-out.c (mi_message): Remove verbosity argument. |
| * ada-tasks.c (print_ada_task_info, info_task, task_command): |
| Update call. |
| * auto-load.c (auto_load_info_scripts): Likewise. |
| * breakpoint.c (breakpoint_1, watchpoints_info, tracepoints_info): |
| Likewise. |
| * cli-out.c (cli_message): Remove verbosity argument. |
| * inferior.c (print_inferior): Update call. |
| * linux-thread-db.c (info_auto_load_libthread_db): Likewise. |
| * probe.c (info_probes_for_ops): Likewise. |
| * skip.c (skip_info): Likewise. |
| * solib.c (info_sharedlibrary_command): Likewise. |
| * symfile.c (load_progress): Likewise. |
| * thread.c (print_thread_info_1): Likewise. |
| * ui-out.c (uo_message, ui_out_message): Remove verbosity argument. |
| (ui_out_get_verblvl): Remove. |
| * ui-out.h (ui_out_message): Remove verbosity argument. |
| (ui_out_get_verblvl): Remove. |
| (message_ftype): Remove verbosity argument. |
| |
| 2016-11-26 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * mi/mi-out.c (mi_wrap_hint): Constify argument. |
| * cli-out.c (cli_wrap_hint): Likewise. |
| * ui-out.c (ui_out_wrap_hint, uo_wrap_hint): Likewise. |
| * ui-out.h (ui_out_wrap_hint, wrap_hint_ftype): Likewise. |
| * utils.c (wrap_here): Likewise. |
| (wrap_indent): Constify. |
| * utils.h (wrap_here): Constify argument. |
| |
| 2016-11-26 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (uo_redirect): Return the return value from the |
| implementation function. |
| |
| 2016-11-26 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (ui_out_destroy, uo_data_destroy): Remove. |
| * ui-out.h (ui_out_destroy): Remove. |
| |
| 2016-11-26 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * mi/mi-out.c (ui_out_data): Rename to ... |
| (mi_ui_out_data): ... this. |
| |
| 2016-11-26 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (_initialize_ui_out): Remove. |
| (ui_out_set_flags): Remove. |
| (ui_out_clear_flags): Remove. |
| * ui-out.h (ui_out_begin_cleanup_end): Remove. |
| (ui_out_begin_cleanup_end): Remove. |
| (ui_out_set_flags): Remove. |
| (ui_out_clear_flags): Remove. |
| * mi/mi-out.c (_initialize_mi_out): Remove. |
| (mi_out_buffered): Remove. |
| * mi/mi-out.h (mi_out_buffered): Remove. |
| |
| 2016-11-26 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.h (struct ui_out_impl): Remove comment. |
| * ui-out.c (struct ui_out): Remove comment. |
| |
| 2016-11-25 John Baldwin <jhb@FreeBSD.org> |
| |
| * contrib/ari/gdb_ari.sh (no parameter function): Remove check. |
| |
| 2016-11-25 Simon Marchi <simon.marchi@ericsson.com> |
| |
| * Makefile.in: Fix typo. |
| |
| 2016-11-25 Simon Marchi <simon.marchi@ericsson.com> |
| |
| * record-full.c (record_full_resume): Fix typos in comment. |
| |
| 2016-11-25 Simon Marchi <simon.marchi@ericsson.com> |
| |
| * infcmd.c (interrupt_command): Fix typo in comment. |
| |
| 2016-11-24 John Baldwin <jhb@FreeBSD.org> |
| |
| * ada-lang.c (create_excep_cond_exprs): Do not use 'std::move'. |
| * ax-gdb.c (agent_eval_command_one): Likewise. |
| (agent_eval_command_one): Likewise. |
| * breakpoint.c (parse_cond_to_aexpr): Likewise. |
| (parse_cmd_to_aexpr): Likewise. |
| * dtrace-probe.c (dtrace_process_dof_probe): Likewise. |
| * parse.c (parse_expression_for_completion): Likewise. |
| |
| 2016-11-24 John Baldwin <jhb@FreeBSD.org> |
| |
| * common/new-op.c (operator new): Mark 'noexcept'. |
| (operator new[]): Likewise. |
| |
| 2016-11-24 Andreas Arnez <arnez@linux.vnet.ibm.com> |
| |
| * dwarf2loc.c (copy_bitwise): Use memcpy for the middle part, if |
| it is byte-aligned. |
| |
| 2016-11-24 Andreas Arnez <arnez@linux.vnet.ibm.com> |
| Pedro Alves <palves@redhat.com> |
| |
| * dwarf2loc.c (bits_to_str, check_copy_bitwise) |
| (copy_bitwise_tests): New functions. |
| (_initialize_dwarf2loc): Register the new function |
| copy_bitwise_tests as a unit test. |
| * selftest.c (run_self_tests): Improve the failure message's |
| wording and formatting. |
| |
| 2016-11-24 Andreas Arnez <arnez@linux.vnet.ibm.com> |
| |
| * dwarf2loc.c (extract_bits_primitive): Remove. |
| (extract_bits): Remove. |
| (copy_bitwise): Rewrite. Fixes a possible corruption that may |
| occur for non-byte-aligned copies. |
| |
| 2016-11-24 Andreas Arnez <arnez@linux.vnet.ibm.com> |
| |
| PR gdb/12616 |
| * dwarf2read.c (dwarf2_add_field): Handle the DWARF V4 attribute |
| DW_AT_data_bit_offset. |
| |
| 2016-11-23 Pedro Alves <palves@redhat.com> |
| |
| * Makefile.in (SFILES): Add common/run-time-clock.c. |
| (HFILES_NO_SRCDIR): Add common/run-time-clock.h. |
| (COMMON_OBS): Add run-time-clock.o. |
| * common/run-time-clock.c, common/run-time-clock.h: New files. |
| * defs.h (struct timeval, print_transfer_performance): Delete |
| declarations. |
| * event-loop.c (struct gdb_timer) <when>: Now a |
| std::chrono::steady_clock::time_point. |
| (create_timer): use std::chrono::steady_clock instead of |
| gettimeofday. Use new instead of malloc. |
| (delete_timer): Use delete instead of xfree. |
| (duration_cast_timeval): New. |
| (update_wait_timeout): Use std::chrono::steady_clock instead of |
| gettimeofday. |
| * maint.c: Include <chrono> instead of "gdb_sys_time.h", <time.h> |
| and "timeval-utils.h". |
| (scoped_command_stats::~scoped_command_stats) |
| (scoped_command_stats::scoped_command_stats): Use |
| std::chrono::steady_clock instead of gettimeofday. Use |
| user_cpu_time_clock instead of get_run_time. |
| * maint.h: Include "run-time-clock.h" and <chrono>. |
| (scoped_command_stats): <m_start_cpu_time>: Now a |
| user_cpu_time_clock::time_point. |
| <m_start_wall_time>: Now a std::chrono::steady_clock::time_point. |
| * mi/mi-main.c: Include "run-time-clock.h" and <chrono> instead of |
| "gdb_sys_time.h" and <sys/resource.h>. |
| (rusage): Delete. |
| (mi_execute_command): Use new instead of XNEW. |
| (mi_load_progress): Use std::chrono::steady_clock instead of |
| gettimeofday. |
| (timestamp): Rewrite in terms of std::chrono::steady_clock, |
| user_cpu_time_clock and system_cpu_time_clock. |
| (timeval_diff): Delete. |
| (print_diff): Adjust to use std::chrono::steady_clock, |
| user_cpu_time_clock and system_cpu_time_clock. |
| * mi/mi-parse.h: Include "run-time-clock.h" and <chrono> instead |
| of "gdb_sys_time.h". |
| (struct mi_timestamp): Change fields types to |
| std::chrono::steady_clock::time_point, user_cpu_time_clock::time |
| and system_cpu_time_clock::time_point, instead of struct timeval. |
| * symfile.c: Include <chrono> instead of <time.h> and |
| "gdb_sys_time.h". |
| (struct time_range): New. |
| (generic_load): Use std::chrono::steady_clock instead of |
| gettimeofday. |
| (print_transfer_performance): Replace timeval parameters with a |
| std::chrono::steady_clock::duration parameter. Adjust. |
| * utils.c: Include <chrono> instead of "timeval-utils.h", |
| "gdb_sys_time.h", and <time.h>. |
| (prompt_for_continue_wait_time): Now a |
| std::chrono::steady_clock::duration. |
| (defaulted_query, prompt_for_continue): Use |
| std::chrono::steady_clock instead of |
| gettimeofday/timeval_sub/timeval_add. |
| (reset_prompt_for_continue_wait_time): Use |
| std::chrono::steady_clock::duration instead of struct timeval. |
| (get_prompt_for_continue_wait_time): Return a |
| std::chrono::steady_clock::duration instead of struct timeval. |
| (vfprintf_unfiltered): Use std::chrono::steady_clock instead of |
| gettimeofday. Use std::string. Use '.' instead of ':'. |
| * utils.h: Include <chrono>. |
| (get_prompt_for_continue_wait_time): Return a |
| std::chrono::steady_clock::duration instead of struct timeval. |
| |
| 2016-11-22 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * Makefile.in: Fix whitespace formatting. |
| |
| 2016-11-22 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * Makefile.in (ALL_64_TARGET_OBS, ALL_TARGET_OBS, |
| HFILES_NO_SRCDIR, ALLDEPFILES): Rename files. |
| * alphabsd-nat.c: Rename to ... |
| * alpha-bsd-nat.c: ... this, adjust include. |
| * alphabsd-tdep.c: Rename to ... |
| * alpha-bsd-tdep.c: ... this, adjust include. |
| * alphabsd-tdep.h: Rename to ... |
| * alpha-bsd-tdep.h: ... this, adjust include barrier and comment. |
| * alphafbsd-tdep.c: Rename to ... |
| * alpha-fbsd-tdep.c: ... this. |
| * alphanbsd-tdep.c: Rename to ... |
| * alpha-nbsd-tdep.c: ... this, adjust include. |
| * alphaobsd-tdep.c: Rename to ... |
| * alpha-obsd-tdep.c: ... this, adjust include. |
| * amd64bsd-nat.c: Rename to ... |
| * amd64-bsd-nat.c: ... this, adjust include. |
| * amd64fbsd-nat.c: Rename to ... |
| * amd64-fbsd-nat.c: ... this, adjust include. |
| * amd64fbsd-tdep.c: Rename to ... |
| * amd64-fbsd-tdep.c: ... this, adjust include. |
| * amd64nbsd-nat.c: Rename to ... |
| * amd64-nbsd-nat.c: ... this. |
| * amd64nbsd-tdep.c: Rename to ... |
| * amd64-nbsd-tdep.c: ... this. |
| * amd64obsd-nat.c: Rename to ... |
| * amd64-obsd-nat.c: ... this. |
| * amd64obsd-tdep.c: Rename to ... |
| * amd64-obsd-tdep.c: ... this. |
| * amd64-tdep.h: Update comments. |
| * armbsd-tdep.c: Rename to ... |
| * arm-bsd-tdep.c: ... this. |
| * armnbsd-nat.c: Rename to ... |
| * arm-nbsd-nat.c: ... this. |
| * armnbsd-tdep.c: Rename to ... |
| * arm-nbsd-tdep.c: ... this. |
| * armobsd-tdep.c: Rename to ... |
| * arm-obsd-tdep.c: ... this. |
| * arm-tdep.h: Update comments. |
| * hppabsd-tdep.c: Rename to ... |
| * hppa-bsd-tdep.c: ... this, adjust include. |
| * hppabsd-tdep.h: Rename to ... |
| * hppa-bsd-tdep.h: ... this, adjust include barrier and comment. |
| * hppanbsd-nat.c: Rename to ... |
| * hppa-nbsd-nat.c: ... this. |
| * hppanbsd-tdep.c: Rename to ... |
| * hppa-nbsd-tdep.c: ... this, adjust include. |
| * hppaobsd-nat.c: Rename to ... |
| * hppa-obsd-nat.c: ... this. |
| * hppaobsd-tdep.c: Rename to ... |
| * hppa-obsd-tdep.c: ... this, adjust include. |
| * i386bsd-nat.c: Rename to ... |
| * i386-bsd-nat.c: ... this, adjust include. |
| * i386bsd-nat.h: Rename to ... |
| * i386-bsd-nat.h: ... this, adjust include barrier and comment. |
| * i386bsd-tdep.c: Rename to ... |
| * i386-bsd-tdep.c: ... this. |
| * i386fbsd-nat.c: Rename to ... |
| * i386-fbsd-nat.c: ... this, adjust include. |
| * i386fbsd-tdep.c: Rename to ... |
| * i386-fbsd-tdep.c: ... this, adjust include. |
| * i386fbsd-tdep.h: Rename to ... |
| * i386-fbsd-tdep.h: ... this, adjust include barrier and comment. |
| * i386gnu-nat.c: Rename to ... |
| * i386-gnu-nat.c: ... this. |
| * i386gnu-tdep.c: Rename to ... |
| * i386-gnu-tdep.c: ... this. |
| * i386nbsd-nat.c: Rename to ... |
| * i386-nbsd-nat.c: ... this, adjust include. |
| * i386nbsd-tdep.c: Rename to ... |
| * i386-nbsd-tdep.c: ... this. |
| * i386obsd-nat.c: Rename to ... |
| * i386-obsd-nat.c: ... this, adjust include. |
| * i386obsd-tdep.c: Rename to ... |
| * i386-obsd-tdep.c: ... this. |
| * i386v4-nat.c: Rename to ... |
| * i386-v4-nat.c: ... this. |
| * i386-tdep.h: Update comments. |
| * m68k-tdep.h: Update comments. |
| * m68kbsd-nat.c: Rename to ... |
| * m68k-bsd-nat.c: ... this. |
| * m68kbsd-tdep.c: Rename to ... |
| * m68k-bsd-tdep.c: ... this. |
| * m68klinux-nat.c: Rename to ... |
| * m68k-linux-nat.c: ... this. |
| * m68klinux-tdep.c: Rename to ... |
| * m68k-linux-tdep.c: ... this. |
| * m88kbsd-nat.c: Rename to ... |
| * m88k-bsd-nat.c: ... this. |
| * mipsnbsd-nat.c: Rename to ... |
| * mips-nbsd-nat.c: ... this, adjust include. |
| * mipsnbsd-tdep.c: Rename to ... |
| * mips-nbsd-tdep.c: ... this, adjust include. |
| * mipsnbsd-tdep.h: Rename to ... |
| * mips-nbsd-tdep.h: ... this, adjust include barrier and comment. |
| * mips64obsd-nat.c: Rename to ... |
| * mips64-obsd-nat.c: ... this. |
| * mips64obsd-tdep.c: Rename to ... |
| * mips64-obsd-tdep.c: ... this. |
| * ppcfbsd-nat.c: Rename to ... |
| * ppc-fbsd-nat.c: ... this, adjust include. |
| * ppcfbsd-tdep.c: Rename to ... |
| * ppc-fbsd-tdep.c: ... this, adjust include. |
| * ppcfbsd-tdep.h: Rename to ... |
| * ppc-fbsd-tdep.h: ... this, adjust include barrier and comment. |
| * ppcnbsd-nat.c: Rename to ... |
| * ppc-nbsd-nat.c: ... this, adjust include. |
| * ppcnbsd-tdep.c: Rename to ... |
| * ppc-nbsd-tdep.c: ... this, adjust include. |
| * ppcnbsd-tdep.h: Rename to ... |
| * ppc-nbsd-tdep.h: ... this, adjust include barrier and comment. |
| * ppcobsd-nat.c: Rename to ... |
| * ppc-obsd-nat.c: ... this, adjust include. |
| * ppcobsd-tdep.c: Rename to ... |
| * ppc-obsd-tdep.c: ... this, adjust include. |
| * ppcobsd-tdep.h: Rename to ... |
| * ppc-obsd-tdep.h: ... this, adjust include barrier and comment. |
| * shnbsd-nat.c: Rename to ... |
| * sh-nbsd-nat.c: ... this. |
| * shnbsd-tdep.c: Rename to ... |
| * sh-nbsd-tdep.c: ... this. |
| * sparcnbsd-nat.c: Rename to ... |
| * sparc-nbsd-nat.c: ... this. |
| * sparcnbsd-tdep.c: Rename to ... |
| * sparc-nbsd-tdep.c: ... this. |
| * sparcobsd-tdep.c: Rename to ... |
| * sparc-obsd-tdep.c: ... this. |
| * sparc64fbsd-nat.c: Rename to ... |
| * sparc64-fbsd-nat.c: ... this. |
| * sparc64fbsd-tdep.c: Rename to ... |
| * sparc64-fbsd-tdep.c: ... this. |
| * sparc64nbsd-nat.c: Rename to ... |
| * sparc64-nbsd-nat.c: ... this. |
| * sparc64nbsd-tdep.c: Rename to ... |
| * sparc64-nbsd-tdep.c: ... this. |
| * sparc64obsd-nat.c: Rename to ... |
| * sparc64-obsd-nat.c: ... this. |
| * sparc64obsd-tdep.c: Rename to ... |
| * sparc64-obsd-tdep.c: ... this. |
| * sparc64-tdep.h: Update comments. |
| * vaxbsd-nat.c: Rename to ... |
| * vax-bsd-nat.c: ... this. |
| * vaxnbsd-tdep.c: Rename to ... |
| * vax-nbsd-tdep.c: ... this. |
| * vaxobsd-tdep.c: Rename to ... |
| * vax-obsd-tdep.c: ... this. |
| * x86bsd-nat.h: Rename to ... |
| * x86-bsd-nat.h: ... this, adjust include barrier and comment. |
| * x86bsd-nat.c: Rename to ... |
| * x86-bsd-nat.c: ... this, adjust include. |
| * configure.tgt: Update renamed files. |
| * config/alpha/fbsd.mh: Update renamed files. |
| * config/alpha/nbsd.mh: Update renamed files. |
| * config/arm/nbsdelf.mh: Update renamed files. |
| * config/djgpp/fnchange.lst: Update renamed files. |
| * config/i386/fbsd.mh: Update renamed files. |
| * config/i386/fbsd64.mh: Update renamed files. |
| * config/i386/i386gnu.mh: Update renamed files. |
| * config/i386/i386sol2.mh: Update renamed files. |
| * config/i386/nbsd64.mh: Update renamed files. |
| * config/i386/nbsdelf.mh: Update renamed files. |
| * config/i386/obsd.mh: Update renamed files. |
| * config/i386/obsd64.mh: Update renamed files. |
| * config/i386/sol2-64.mh: Update renamed files. |
| * config/m68k/linux.mh: Update renamed files. |
| * config/m68k/nbsdelf.mh: Update renamed files. |
| * config/m68k/obsd.mh: Update renamed files. |
| * config/m88k/obsd.mh: Update renamed files. |
| * config/mips/nbsd.mh: Update renamed files. |
| * config/mips/obsd64.mh: Update renamed files. |
| * config/pa/nbsd.mh: Update renamed files. |
| * config/pa/obsd.mh: Update renamed files. |
| * config/powerpc/fbsd.mh: Update renamed files. |
| * config/powerpc/nbsd.mh: Update renamed files. |
| * config/powerpc/obsd.mh: Update renamed files. |
| * config/sh/nbsd.mh: Update renamed files. |
| * config/sparc/fbsd.mh: Update renamed files. |
| * config/sparc/nbsd64.mh: Update renamed files. |
| * config/sparc/nbsdelf.mh: Update renamed files. |
| * config/sparc/obsd64.mh: Update renamed files. |
| * config/vax/nbsdelf.mh: Update renamed files. |
| * config/vax/obsd.mh: Update renamed files. |
| |
| 2016-11-22 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * Makefile.in: Add comment about file lists ordering. |
| (SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_MI_OBS, SUBDIR_MI_SRCS, |
| SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS, SUBDIR_GCC_COMPILE_OBS, |
| SUBDIR_GCC_COMPILE_SRCS, SUBDIR_GUILE_OBS, SUBDIR_GUILE_SRCS, |
| SUBDIR_PYTHON_OBS, SUBDIR_PYTHON_SRCS, SUBDIR_GDBTK_OBS, |
| SUBDIR_GDBTK_SRCS, XMLFILES, REMOTE_OBS, ALL_64_TARGET_OBS, |
| ALL_TARGET_OBS, SFILES, HFILES_NO_SRCDIR, HFILES_WITH_SRCDIR, |
| COMMON_OBS, YYFILES, YYOBJ, generated_files, ALLDEPFILES): |
| Flatten list and order alphabetically. |
| * data-directory/Makefile.in: Add comment about file lists |
| ordering. |
| (GEN_SYSCALLS_FILES, PYTHON_FILE_LIST): Flatten list and order |
| alphabetically. |
| |
| 2016-11-22 Ambrogino Modigliani <ambrogino.modigliani@gmail.com> |
| |
| * contrib/expect-read1.sh: Fix spelling in comments. |
| * gdb_buildall.sh: Fix spelling in comments. |
| * gdb_mbuild.sh: Fix spelling in comments. |
| |
| 2016-11-22 Ambrogino Modigliani <ambrogino.modigliani@gmail.com> |
| |
| * configure.ac: Fix spelling in comments. |
| * configure: Regenerate. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * gdbarch.sh (software_single_step): Change parameter from frame_info |
| to regcache. |
| * gdbarch.c, gdbarch.h: Regenerated. |
| * aarch64-tdep.c (aarch64_software_single_step): Change parameter |
| from frame_info to regcache. Don't call get_current_regcache. |
| * alpha-tdep.c (alpha_deal_with_atomic_sequence): Likewise. |
| (alpha_software_single_step): Likewise. |
| * alpha-tdep.h (alpha_software_single_step): Update declaration. |
| * arm-linux-tdep.c (arm_linux_software_single_step): Likewise. |
| * arm-tdep.c (arm_software_single_step): Likewise. |
| * arm-tdep.h (arm_software_single_step): Likewise. |
| * breakpoint.c (insert_single_step_breakpoint): Pass regcache to |
| gdbarch_software_single_step. |
| * cris-tdep.c (cris_software_single_step): Change parameter from |
| frame_info to regcache. Don't call get_current_regcache. |
| * mips-tdep.c (mips_software_single_step): Likewise. |
| * mips-tdep.h (mips_software_single_step): Update declaration. |
| * moxie-tdep.c (moxie_software_single_step): Likewise. |
| * nios2-tdep.c (nios2_software_single_step): Likewise. |
| * ppc-tdep.h (ppc_deal_with_atomic_sequence): Update declaration. |
| * rs6000-aix-tdep.c (rs6000_software_single_step): Likewise. |
| * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Likewise. |
| * s390-linux-tdep.c (s390_software_single_step): Likewise. |
| * sparc-tdep.c (sparc_software_single_step): Likewise. |
| * spu-tdep.c (spu_software_single_step): Likewise. |
| * tic6x-tdep.c (tic6x_software_single_step): Likewise. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * spu-tdep.c (spu_software_single_step): Call get_regcache_arch |
| instead of get_frame_arch. Call regcache_read_pc instead of |
| get_frame_pc. Call regcache_raw_get_unsigned instead of |
| get_frame_register_unsigned. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * tic6x-tdep.c (tic6x_condition_true): Replace frame with |
| regcache. Call regcache_raw_get_signed instead of |
| get_frame_register_signed. |
| (tic6x_get_next_pc): Likewise. Caller updated. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * rs6000-aix-tdep.c (branch_dest): Replace parameter frame with |
| regcache. Call get_regcache_arch instead of get_frame_arch. |
| Call regcache_raw_get_unsigned instead of |
| get_frame_register_unsigned. |
| (rs6000_software_single_step): Likewise. |
| * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Call |
| get_regcache_arch instead of get_frame_arch. Call |
| regcache_read_pc instead of get_frame_pc. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * s390-linux-tdep.c (s390_software_single_step): Call |
| get_regcache_arch instead of get_frame_arch. Call |
| regcache_read_pc instead of get_frame_pc. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * sparc-tdep.c (sparc_analyze_control_transfer): Replace parameter |
| frame with regcache. Call get_current_frame. |
| (sparc_software_single_step): Call get_regcache_arch instead of |
| get_frame_arch. Call regcache_raw_get_unsigned instead of |
| get_frame_register_unsigned. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * nios2-tdep.c (nios2_get_next_pc): Replace parameter frame |
| with regcache. Call regcache_raw_get_signed instead of |
| get_frame_register_unsigned. |
| (nios2_software_single_step): Call get_regcache_arch |
| instead of get_frame_arch. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * moxie-tdep.c (moxie_software_single_step): Call |
| get_regcache_arch instead of get_frame_arch. Call |
| regcache_read_pc instead of get_frame_pc. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * mips-tdep.c (mips32_bc1_pc): Replace parameter frame with |
| regcache. Call regcache_raw_get_unsigned instead of |
| get_frame_register_unsigned. |
| (mips32_next_pc): Likewise. |
| (micromips_bc1_pc): Likewise. |
| (micromips_next_pc): Likewise. |
| (extended_mips16_next_pc): Likewise. |
| (mips16_next_pc): Likewise. |
| (mips_next_pc): Likewise. |
| (mips_software_single_step): Call get_regcache_arch instead |
| of get_frame_arch. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * cris-tdep.c (find_step_target): Replace parameter frame |
| with regcache. Call get_regcache_arch instead of |
| get_frame_arch. Call regcache_raw_get_unsigned instead of |
| get_frame_register_unsigned. |
| (cris_software_single_step): Call get_regcache_arch instead |
| of get_frame_arch. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * alpha-tdep.c (alpha_deal_with_atomic_sequence): Call |
| get_regcache_arch instead of get_frame_arch. Call |
| regcache_read_pc instead of get_frame_pc. |
| (alpha_next_pc): Replace parameter frame with regcache. |
| Call regcache_raw_get_unsigned instead of |
| get_frame_register_unsigned. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * aarch64-tdep.c (aarch64_software_single_step): Call |
| get_regcache_arch instead of get_frame_arch. Call |
| regcache_read_pc instead of get_frame_pc. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * regcache.c (regcache_raw_get_signed): New function. |
| * regcache.h (regcache_raw_get_signed): Declare. |
| |
| 2016-11-22 Yao Qi <yao.qi@linaro.org> |
| |
| * value.c (value_from_component): Use VALUE_NEXT_FRAME_ID |
| instead of VALUE_FROM_ID. |
| |
| 2016-11-21 Simon Marchi <simon.marchi@ericsson.com> |
| |
| * Makefile.in (%o: $(srcdir)/mi/%.c): Add missing POSTCOMPILE |
| step. |
| |
| 2016-11-21 Yao Qi <yao.qi@linaro.org> |
| |
| * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): |
| Don't call value_from_contents_and_address and |
| set_value_address. Call value_from_component. |
| * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): |
| Likewise. |
| * value.c (value_from_component): New function. |
| * value.h (value_from_component): Likewise. |
| * valarith.c (value_subscripted_rvalue): Call |
| value_from_component. |
| |
| 2016-11-19 Joel Brobecker <brobecker@adacore.com> |
| |
| * contrib/ari/gdb_ari.sh: Add detection of printf_vma and |
| sprintf_vma. |
| |
| 2016-11-18 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * Makefile.in (%.o: $(srcdir)/gdbtk/generic/%.c): Fix typo. |
| |
| 2016-11-17 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| (PYTHON_CFLAGS): Move up. |
| (%.o: $(srcdir)/arch/%.c): New rule. |
| (%.o: $(srcdir)/cli/%.c): New rule. |
| (%.o: $(srcdir)/common/%.c): New rule. |
| (%.o: $(srcdir)/compile/%.c): New rule. |
| (%.o: $(srcdir)/gdbtk/generic/%.c): New rule. |
| (%.o: $(srcdir)/guile/%.c): New rule. |
| (%.o: $(srcdir)/mi/%.c): New rule. |
| (%.o: $(srcdir)/nat/%.c): New rule. |
| (%.o: $(srcdir)/python/%.c): New rule. |
| (%.o: $(srcdir)/target/%.c): New rule. |
| (%.o: $(srcdir)/tui/%.c): New rule. |
| (cli-cmds.o): Remove. |
| (cli-decode.o): Likewise. |
| (cli-dump.o): Likewise. |
| (cli-interp.o): Likewise. |
| (cli-logging.o): Likewise. |
| (cli-script.o): Likewise. |
| (cli-setshow.o): Likewise. |
| (cli-utils.o): Likewise. |
| (compile.o): Likewise. |
| (compile-c-types.o): Likewise. |
| (compile-c-symbols.o): Likewise. |
| (compile-object-load.o): Likewise. |
| (compile-object-run.o): Likewise. |
| (compile-loc2c.o): Likewise. |
| (compile-c-support.o): Likewise. |
| (gdbtk.o): Likewise. |
| (gdbtk-bp.o): Likewise. |
| (gdbtk-cmds.o): Likewise. |
| (gdbtk-hooks.o): Likewise. |
| (gdbtk-interp.o): Likewise. |
| (gdbtk-main.o): Likewise. |
| (gdbtk-register.o): Likewise. |
| (gdbtk-stack.o): Likewise. |
| (gdbtk-varobj.o): Likewise. |
| (gdbtk-wrapper.o): Likewise. |
| (mi-cmd-break.o): Likewise. |
| (mi-cmd-catch.o): Likewise. |
| (mi-cmd-disas.o): Likewise. |
| (mi-cmd-env.o): Likewise. |
| (mi-cmd-file.o): Likewise. |
| (mi-cmd-info.o): Likewise. |
| (mi-cmds.o): Likewise. |
| (mi-cmd-stack.o): Likewise. |
| (mi-cmd-target.o): Likewise. |
| (mi-cmd-var.o): Likewise. |
| (mi-console.o): Likewise. |
| (mi-getopt.o): Likewise. |
| (mi-interp.o): Likewise. |
| (mi-main.o): Likewise. |
| (mi-out.o): Likewise. |
| (mi-parse.o): Likewise. |
| (mi-symbol-cmds.o): Likewise. |
| (mi-common.o): Likewise. |
| (signals.o): Likewise. |
| (common-utils.o): Likewise. |
| (gdb_vecs.o): Likewise. |
| (xml-utils.o): Likewise. |
| (ptid.o): Likewise. |
| (buffer.o): Likewise. |
| (filestuff.o): Likewise. |
| (format.o): Likewise. |
| (vec.o): Likewise. |
| (print-utils.o): Likewise. |
| (rsp-low.o): Likewise. |
| (errors.o): Likewise. |
| (common-debug.o): Likewise. |
| (cleanups.o): Likewise. |
| (common-exceptions.o |
| (posix-strerror.o): Likewise. |
| (mingw-strerror.o): Likewise. |
| (btrace-common.o): Likewise. |
| (fileio.o): Likewise. |
| (common-regcache.o): Likewise. |
| (signals-state-save-restore.o): Likewise. |
| (new-op.o): Likewise. |
| (waitstatus.o): Likewise. |
| (arm.o): Likewise. |
| (arm-linux.o): Likewise. |
| (arm-get-next-pcs.o): Likewise. |
| (x86-dregs.o): Likewise. |
| (linux-btrace.o): Likewise. |
| (linux-osdata.o): Likewise. |
| (linux-procfs.o): Likewise. |
| (linux-ptrace.o): Likewise. |
| (linux-waitpid.o): Likewise. |
| (mips-linux-watch.o): Likewise. |
| (ppc-linux.o): Likewise. |
| (linux-personality.o): Likewise. |
| (x86-linux.o): Likewise. |
| (x86-linux-dregs.o): Likewise. |
| (amd64-linux-siginfo.o): Likewise. |
| (linux-namespaces.o): Likewise. |
| (aarch64-linux-hw-point.o): Likewise. |
| (aarch64-linux.o): Likewise. |
| (aarch64-insn.o): Likewise. |
| (tui.o): Likewise. |
| (tui-command.o): Likewise. |
| (tui-data.o): Likewise. |
| (tui-disasm.o): Likewise. |
| (tui-file.o): Likewise. |
| (tui-hooks.o): Likewise. |
| (tui-interp.o): Likewise. |
| (tui-io.o): Likewise. |
| (tui-layout.o): Likewise. |
| (tui-out.o): Likewise. |
| (tui-regs.o): Likewise. |
| (tui-source.o): Likewise. |
| (tui-stack.o): Likewise. |
| (tui-win.o): Likewise. |
| (tui-windata.o): Likewise. |
| (tui-wingeneral.o): Likewise. |
| (tui-winsource.o): Likewise. |
| (guile.o): Likewise. |
| (scm-arch.o): Likewise. |
| (scm-auto-load.o): Likewise. |
| (scm-block.o): Likewise. |
| (scm-breakpoint.o): Likewise. |
| (scm-cmd.o): Likewise. |
| (scm-disasm.o): Likewise. |
| (scm-exception.o): Likewise. |
| (scm-frame.o): Likewise. |
| (scm-gsmob.o): Likewise. |
| (scm-iterator.o): Likewise. |
| (scm-lazy-string.o): Likewise. |
| (scm-math.o): Likewise. |
| (scm-objfile.o): Likewise. |
| (scm-param.o): Likewise. |
| (scm-ports.o): Likewise. |
| (scm-pretty-print.o): Likewise. |
| (scm-progspace.o): Likewise. |
| (scm-safe-call.o): Likewise. |
| (scm-string.o): Likewise. |
| (scm-symbol.o): Likewise. |
| (scm-symtab.o): Likewise. |
| (scm-type.o): Likewise. |
| (scm-utils.o): Likewise. |
| (scm-value.o): Likewise. |
| (python.o): Likewise. |
| (py-arch.o): Likewise. |
| (py-auto-load.o): Likewise. |
| (py-block.o): Likewise. |
| (py-bpevent.o): Likewise. |
| (py-breakpoint.o): Likewise. |
| (py-cmd.o): Likewise. |
| (py-continueevent.o): Likewise. |
| (py-xmethods.o): Likewise. |
| (py-event.o): Likewise. |
| (py-evtregistry.o): Likewise. |
| (py-evts.o): Likewise. |
| (py-exitedevent.o): Likewise. |
| (py-finishbreakpoint.o): Likewise. |
| (py-frame.o): Likewise. |
| (py-framefilter.o): Likewise. |
| (py-function.o): Likewise. |
| (py-gdb-readline.o): Likewise. |
| (py-inferior.o): Likewise. |
| (py-infevents.o): Likewise. |
| (py-infthread.o): Likewise. |
| (py-lazy-string.o): Likewise. |
| (py-linetable.o): Likewise. |
| (py-newobjfileevent.o): Likewise. |
| (py-objfile.o): Likewise. |
| (py-param.o): Likewise. |
| (py-prettyprint.o): Likewise. |
| (py-progspace.o): Likewise. |
| (py-signalevent.o): Likewise. |
| (py-stopevent.o): Likewise. |
| (py-symbol.o): Likewise. |
| (py-symtab.o): Likewise. |
| (py-threadevent.o): Likewise. |
| (py-type.o): Likewise. |
| (py-unwind.o): Likewise. |
| (py-utils.o): Likewise. |
| (py-value.o): Likewise. |
| (py-varobj.o): Likewise. |
| |
| 2016-11-17 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * Makefile.in (.c.o): Replace rule with ... |
| (%.o: %.c): ... this one. |
| (.po.gmo): Replace rule with ... |
| (%.gmo: %.po): ... this one. |
| (.po.pox): Replace rule with ... |
| (%.pox: %.po): ... this one. |
| (.y.c): Replace rule with ... |
| (%.c: %.y): ... this one. |
| (.l.c): Replace rule with ... |
| (%.c: %.l): ... this one. |
| (.SUFFIXES): Remove all instances. |
| |
| 2016-11-17 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * Makefile.in: Remove @GMAKE_TRUE@ prefixes and removes lines |
| prefixed with @GMAKE_FALSE@. Update comment related to non-GNU |
| make. |
| * configure.ac: Remove checks for the make program. |
| * configure: Re-generate. |
| |
| 2016-11-17 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * NEWS: Mention requirement of GNU make. |
| |
| 2016-11-17 Pedro Alves <palves@redhat.com> |
| |
| * c-exp.y (c_print_token): Use parser_fprintf instead of fprintf. |
| |
| 2016-11-17 Pedro Alves <palves@redhat.com> |
| |
| * ctf.c [USE_WIN32API] (mkdir): Delete. |
| |
| 2016-11-16 Pedro Alves <palves@redhat.com> |
| |
| * ada-lang.c (ada_value_primitive_packed_val): Use unique_ptr and |
| new gdb_byte[] instead of malloc and cleanups. |
| |
| 2016-11-17 Pedro Alves <palves@redhat.com> |
| |
| * tracepoint.c (collection_list::add_memrange): Add gdbarch |
| parameter. Use paddress instead of printf_vma. Adjust recursive |
| calls. |
| (collection_list::stringify): Use paddress and phex_nz instead of |
| sprintf_vma. Adjust add_memrange call. |
| * tracepoint.h (collection_list::add_memrange): Add gdbarch |
| parameter. |
| |
| 2016-11-16 Kevin Buettner <kevinb@redhat.com> |
| |
| * frame.c (get_prev_frame): Stash frame id for current frame |
| prior to computing frame id for previous frame. |
| |
| 2016-11-16 Kevin Buettner <kevinb@redhat.com> |
| |
| * python/py-unwind.c (pending_framepy_read_register): Use |
| value_of_register() instead of get_frame_register_value(). |
| |
| 2016-11-16 Kevin Buettner <kevinb@redhat.com> |
| |
| * value.h (VALUE_FRAME_ID): Rename to VALUE_NEXT_FRAME_ID. Update |
| comment. Create new VALUE_FRAME_ID which is defined in terms of |
| VALUE_NEXT_FRAME_ID. |
| (deprecated_value_frame_id_hack): Rename to |
| deprecated_value_next_frame_id_hack. |
| * dwarf2loc.c, findvar.c, frame-unwind.c, sentinel-frame.c, |
| valarith.c, valops.c, value.c: Adjust nearly all occurences of |
| VALUE_FRAME_ID to VALUE_NEXT_FRAME_ID. Add comments for those |
| which did not change. |
| * value.c (struct value): Rename frame_id field to next_frame_id. |
| Update comment. |
| (deprecated_value_frame_id_hack): Rename to |
| deprecated_value_next_frame_id_hack. |
| (value_fetch_lazy): Call frame_unwind_register_value() |
| instead of get_frame_register_value(). |
| * frame.c (get_prev_frame_id_by_id): New function. |
| * frame.h (get_prev_frame_id_by_id): Declare. |
| * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Make |
| VALUE_NEXT_FRAME_ID refer to the next frame. |
| * findvar.c (value_of_register_lazy): Likewise. |
| (default_value_from_register): Likewise. |
| (value_from_register): Likewise. |
| * frame_unwind.c (frame_unwind_got_optimized): Likewise. |
| * sentinel-frame.c (sentinel_frame_prev_register): Likewise. |
| * value.h (VALUE_FRAME_ID): Update comment describing this macro. |
| |
| 2016-11-16 Kevin Buettner <kevinb@redhat.com> |
| |
| * frame.h (enum frame_id_stack_status): Add FID_STACK_SENTINEL. |
| (struct frame_id): Increase number of bits required for storing |
| stack status to 3 from 2. |
| (sentinel_frame_id): New declaration. |
| (get_next_frame_sentinel_okay): Declare. |
| (frame_find_by_id_sentinel_okay): Declare. |
| * frame.c (current_frame): Rename this static global to... |
| (sentinel_frame): ...this static global, which has also been |
| moved an earlier location in the file. |
| (fprint_frame_id): Add case for sentinel frame id. |
| (get_frame_id): Return early for sentinel frame. |
| (sentinel_frame_id): Define. |
| (frame_find_by_id): Add case for sentinel_frame_id. |
| (create_sentinel_frame): Use sentinel_frame_id for this_id.value |
| instead of null_frame_id. |
| (get_current_frame): Add local declaration for `current_frame'. |
| Remove local declaration for `sentinel_frame.' |
| (get_next_frame_sentinel_okay): New function. |
| (reinit_frame_cache): Use `sentinel_frame' in place of |
| `current_frame'. |
| |
| 2016-11-15 Pedro Alves <palves@redhat.com> |
| |
| * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to |
| 38237baf99386101934cd93278023aa4ae523ec0. |
| * gnulib/configure, gnulib/config.in: Regenerate. |
| * gnulib/import/Makefile.am: Regenerate. |
| * gnulib/import/Makefile.in: Regenerate. |
| * gnulib/import/canonicalize-lgpl.c: Update. |
| * gnulib/import/extra/snippet/c++defs.h: Update. |
| * gnulib/import/m4/stdint.m4: Update. |
| * gnulib/import/m4/stdlib_h.m4: Update. |
| * gnulib/import/math.in.h: Update. |
| * gnulib/import/stdlib.in.h: Update. |
| * gnulib/import/sys_time.in.h: Update. |
| |
| 2016-11-15 Pedro Alves <palves@redhat.com> |
| |
| * common/common-defs.h: Update comment. |
| * common/gdb_unique_ptr.h: Update header comment and copyright |
| year. |
| (gdb::unique_ptr, gdb::move): Delete. |
| |
| 2016-11-15 Pedro Alves <palves@redhat.com> |
| |
| * ada-lang.c (create_excep_cond_exprs): Use std::move instead of |
| gdb::move. |
| * break-catch-throw.c (handle_gnu_v3_exceptions): Use |
| std::unique_ptr instead of gdb::unique_ptr. |
| * breakpoint.c (watch_command_1): Use std::move instead of |
| gdb::move. |
| * cli/cli-dump.c (dump_memory_to_file, restore_binary_file): Use |
| std::unique_ptr instead of gdb::unique_ptr. |
| * dtrace-probe.c (dtrace_process_dof_probe): Use std::move instead |
| of gdb::move. |
| * elfread.c (elf_read_minimal_symbols): Use std::unique_ptr |
| instead of gdb::unique_ptr. |
| * mi/mi-main.c (mi_cmd_data_read_memory): Use std::unique_ptr |
| instead of gdb::unique_ptr. |
| * parse.c (parse_expression_for_completion): Use std::move instead |
| of gdb::move. |
| * printcmd.c (display_command): std::move instead of gdb::move. |
| |
| 2016-11-14 Markus Metzger <markus.t.metzger@intel.com> |
| |
| * nat/linux-btrace.c (perf_event_read): Allow data_head < size. |
| * nat/linux-btrace.c (perf_event_read_all): Do not adjust size. |
| |
| 2016-11-12 Tom Tromey <tom@tromey.com> |
| |
| * rust-exp.y (super_name): Use std::vector. |
| (lex_number): Use std::string. |
| (convert_params_to_types): Return std::vector. |
| (convert_ast_to_type, convert_name): Update. |
| * rust-lang.c (rust_get_disr_info): Use unique_xmalloc_ptr. |
| |
| 2016-11-12 Tom Tromey <tom@tromey.com> |
| |
| * rust-lang.c (rust_get_disr_info): Use std::string in one more |
| spot. |
| |
| 2016-11-11 Yao Qi <yao.qi@linaro.org> |
| |
| * spu-tdep.c (spu_software_single_step): Don't call |
| get_frame_register_bytes, call get_frame_register_unsigned |
| instead. |
| |
| 2016-11-11 Yao Qi <yao.qi@linaro.org> |
| |
| * cp-valprint.c (cp_print_value): Remove local base_valaddr. |
| * extension-priv.h (struct extension_language_ops) |
| <apply_val_pretty_printer>: Remove the second parameter. |
| Remove const from "struct value *". Callers updated. |
| * extension.c (apply_ext_lang_val_pretty_printer): Update |
| comments. Remove parameter valaddr. Remove const from |
| "struct value *". |
| * extension.h (apply_ext_lang_val_pretty_printer): Update |
| declaration. |
| * guile/guile-internal.h (gdbscm_apply_val_pretty_printer): |
| Update declaration. |
| * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): |
| Remove parameter valaddr. Remove const from "struct value *". |
| * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): |
| Likewise. |
| * python/python-internal.h (gdbpy_apply_val_pretty_printer): |
| Update declaration. |
| |
| 2016-11-11 Yao Qi <yao.qi@linaro.org> |
| |
| * c-lang.h (cp_print_value_fields): Update declaration. |
| * cp-valprint.c (cp_print_value): Update declaration. |
| (cp_print_value_fields): Remove parameter valaddr. Callers |
| updated. |
| (cp_print_value): Likewise. |
| |
| 2016-11-09 Tom Tromey <tom@tromey.com> |
| |
| * varobj.h (varobj_get_display_hint): Change return type. |
| * varobj.c (varobj_get_display_hint): Return unique_xmalloc_ptr. |
| (varobj_value_get_print_value): Update. |
| * python/python.c (gdbpy_before_prompt_hook, gdbpy_print_stack) |
| (gdbpy_apply_type_printers): Update. |
| * python/python-internal.h (unicode_to_target_string) |
| (python_string_to_target_string, python_string_to_host_string) |
| (gdbpy_obj_to_string, gdbpy_exception_to_string) |
| (gdbpy_get_display_hint): Change return types. |
| * python/py-varobj.c (py_varobj_iter_next): Update. |
| * python/py-value.c (valpy_getitem, convert_value_from_python): |
| Update. |
| * python/py-utils.c (unicode_to_encoded_string) |
| (unicode_to_target_string, python_string_to_target_string) |
| (python_string_to_host_string, gdbpy_obj_to_string) |
| (gdbpy_exception_to_string): Return unique_xmalloc_ptr. |
| * python/py-unwind.c (pyuw_parse_register_id): Update. |
| * python/py-type.c (typy_getitem): Update. |
| * python/py-prettyprint.c (gdbpy_get_display_hint) |
| (print_stack_unless_memory_error, print_children) |
| (gdbpy_apply_val_pretty_printer): Update. |
| * python/py-param.c (set_parameter_value): Update. |
| (get_doc_string, call_doc_function): Return unique_xmalloc_ptr. |
| (get_set_value, get_show_value, compute_enum_values, parmpy_init): |
| Update. |
| * python/py-infthread.c (thpy_set_name): Update. |
| * python/py-function.c (fnpy_call, fnpy_init): Update. |
| * python/py-framefilter.c (extract_sym): Change "name" to |
| unique_xmalloc_ptr. |
| (enumerate_args, enumerate_locals): Update. |
| (py_print_frame): Use unique_xmalloc_ptr. |
| * python/py-frame.c (frapy_read_var): Update. Remove cleanup. |
| * python/py-cmd.c (cmdpy_function, cmdpy_completer, cmdpy_init): |
| Update. |
| * python/py-breakpoint.c (bppy_set_condition): Use |
| unique_xmalloc_ptr. |
| (bppy_init): Likewise. Remove cleanup. |
| (local_setattro): Update. |
| * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_list_children) |
| (varobj_update_one): Update. |
| |
| 2016-11-09 Pedro Alves <palves@redhat.com> |
| |
| * ax-gdb.c (agent_eval_command_one): Use std::move instead of |
| gdb::move. |
| * ax.h (agent_expr_up): Use std::unique_ptr instead of |
| gdb::unique_ptr. |
| * breakpoint.c (parse_cond_to_aexpr): Use std::move instead of |
| gdb::move. |
| * tracepoint.c (collection_list::collect_symbol): Likewise. |
| (collection_list::~collection_list): Delete. |
| (encode_actions_1): Use std::move instead of gdb::move. |
| (collection_list::add_aexpr): Use std::move instead of |
| unique_ptr::release. |
| * tracepoint.h (collection_list) <~collection_list>: Delete |
| declaration. |
| <m_aexprs>: Now a vector of agent_ptr_up. |
| |
| 2016-11-09 Pedro Alves <palves@redhat.com> |
| |
| * main.c (struct cmdarg): Add constructor. |
| (captured_main_1): Use vector::emplace_back. |
| * tracepoint.c (collection_list::add_memrange): Likewise. |
| |
| 2016-11-09 Andreas Arnez <arnez@linux.vnet.ibm.com> |
| |
| * tui/tui-winsource.c (tui_alloc_source_buffer): Remove |
| failed-xmalloc handling. |
| |
| 2016-11-09 Andreas Arnez <arnez@linux.vnet.ibm.com> |
| |
| * tui/tui-winsource.c (tui_alloc_source_buffer): Subtract |
| highlight box's overhead when calculating the content height. |
| |
| 2016-11-09 Andreas Arnez <arnez@linux.vnet.ibm.com> |
| |
| * tui/tui-disasm.c (tui_set_disassem_content): Fix calculation of |
| the longest disassembly line's length. |
| |
| 2016-11-09 Andreas Arnez <arnez@linux.vnet.ibm.com> |
| |
| * tui/tui-disasm.c (tui_set_disassem_content): Fix line buffer |
| overrun due to unchecked strcpy. |
| |
| 2016-11-09 Tristan Gingold <gingold@adacore.com> |
| |
| * darwin-nat.c (find_inferior_task_it): Fix indentation. |
| (find_inferior_notify_it): Remove. |
| (find_inferior_pid_it): New function. |
| (darwin_find_inferior_by_notify): Remove. |
| (darwin_find_inferior_by_pid): New function. |
| (darwin_find_new_inferior): New function. |
| (darwin_check_message_ndr): New function from |
| darwin_decode_exception_message. |
| (darwin_decode_exception_message): Call darwin_check_message_ndr. |
| Handle SIGTRAP addressed to an unknown task (when a task spawned). |
| (darwin_decode_notify_message): New function. |
| (darwin_decode_message): Handle unknown task. |
| (darwin_deallocate_threads): New function from darwin_mourn_inferior. |
| (darwin_mourn_inferior): Use darwin_deallocate_threads and |
| darwin_deallocate_exception_ports. |
| (darwin_deallocate_exception_ports): New function from |
| darwin_mourn_inferior. |
| (darwin_setup_exceptions): New function from darwin_attach_pid. |
| (darwin_setup_request_notification): Likewise. |
| (darwin_attach_pid): Call darwin_setup_request_notification and |
| darwin_setup_request_notification. |
| |
| 2016-11-08 Tom Tromey <tom@tromey.com> |
| |
| * python/py-framefilter.c (py_print_frame): Use |
| get_addr_from_python. Check for errors when getting line number. |
| |
| 2016-11-08 Yao Qi <yao.qi@linaro.org> |
| |
| * ada-lang.h (ada_val_print): Remove second parameter. Remove |
| const from "struct value *". |
| * ada-valprint.c (print_field_values): Remove const from |
| "struct value *". |
| (val_print_packed_array_elements): Likewise. |
| (print_variant_part): Likewise. |
| (ada_val_print_string): Likewise. |
| (ada_val_print_gnat_array): Likewise. |
| (ada_val_print_ptr): Likewise. |
| (ada_val_print_num): Likewise. |
| (ada_val_print_enum): Likewise. |
| (ada_val_print_flt): Likewise. |
| (ada_val_print_union): Likewise. |
| (ada_val_print_struct_union): Likewise. |
| (ada_val_print_ref): Likewise. |
| (ada_val_print_1): Remove second parameter. Remove const from |
| "struct value *". |
| (ada_val_print): Likewise. |
| * c-lang.h (c_val_print): Likewise. |
| * c-valprint.c (c_val_print_array): Remove const from |
| "struct value *". |
| (c_val_print_ptr): Likewise. |
| (c_val_print_struct): Likewise. |
| (c_val_print_union): Likewise. |
| (c_val_print_int): Likewise. |
| (c_val_print_memberptr): Likewise. |
| (c_val_print): Remove second parameter. Remove const from |
| "struct value *". All callers updated. |
| * cp-valprint.c (cp_print_value): Remove const from |
| "struct value *". |
| (cp_print_value_fields): Likewise. |
| (c_val_print_value): Likewise. |
| * d-lang.h (d_val_print): Remove second parameter. Remove const |
| from "struct value *". |
| * d-valprint.c (dynamic_array_type): Likewise. |
| (d_val_print): Likewise. |
| * f-lang.h (f_val_print): Likewise. |
| * f-valprint.c (f_val_print): Likewise. |
| * go-lang.h (go_val_print): Likewise. |
| * go-valprint.c (print_go_string): Likewise. |
| (go_val_print): Likewise. |
| * language.c (unk_lang_val_print): Likewise. |
| * language.h (struct language_defn) <la_val_print>: Likewise. |
| Update comments. |
| (LA_VAL_PRINT): Remove. |
| * m2-lang.h (m2_val_print): Remove const from |
| "struct value *". |
| * m2-valprint.c (m2_print_array_contents): Likewise. |
| (m2_val_print): Likewise. |
| * p-lang.h (pascal_val_print): Remove second parameter. Remove |
| const from "struct value *". |
| (pascal_object_print_value_fields): Likewise. |
| * p-valprint.c (pascal_val_print): Likewise. |
| (pascal_object_print_value_fields): Likewise. |
| (pascal_object_print_value): Likewise. |
| * rust-lang.c (rust_get_disr_info): Likewise. |
| (val_print_struct): Likewise. |
| (rust_val_print): Likewise. |
| * valprint.c (generic_val_print_array): Likewise. |
| (generic_val_print_ptr): Likewise. |
| (generic_val_print_memberptr): Likewise. |
| (generic_val_print_ref): Likewise. |
| (generic_val_print_enum): Likewise. |
| (generic_val_print_flags): Likewise. |
| (generic_val_print_func): Likewise. |
| (generic_val_print_bool): Likewise. |
| (generic_val_print_int): Likewise. |
| (generic_val_print_char): Likewise. |
| (generic_val_print_float): Likewise. |
| (generic_val_print_decfloat): Likewise. |
| (generic_val_print_complex): Likewise. |
| (generic_val_print): Likewise. |
| (val_print): Likewise. |
| (common_val_print): Likewise. |
| (val_print_type_code_flags): Likewise. |
| (val_print_scalar_formatted): Likewise. |
| (val_print_array_elements): Likewise. |
| * valprint.h (val_print_array_elements): Update declaration. |
| (val_print_scalar_formatted): Likewise. |
| (generic_val_print): Likewise. |
| * value.h (val_print): Likewise. |
| |
| 2016-11-08 Yao Qi <yao.qi@linaro.org> |
| |
| * mt-tdep.c (mt_registers_info): Call |
| get_frame_register_value instead of |
| deprecated_frame_register_read. |
| * sh64-tdep.c (sh64_do_register): Likewise. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * ax.h (agent_expr_p): Delete. |
| (DEF_VEC_P (agent_expr_p)): Delete. |
| * breakpoint.c (build_target_condition_list) |
| (build_target_command_list): Adjust to use of std::vector. |
| (bp_location_dtor): Remove now unnecessary VEC_free calls. |
| * breakpoint.h: Include <vector>. |
| (struct bp_target_info) <conditions, tcommands>: Now |
| std::vector's. |
| * remote.c (remote_add_target_side_condition): bp_tgt->conditions |
| is now a std::vector; adjust. |
| (remote_add_target_side_commands, remote_insert_breakpoint): |
| bp_tgt->tcommands is now a std::vector; adjust. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * ax-gdb.c (is_nontrivial_conversion): Use agent_expr_up. |
| (gen_trace_for_var, gen_trace_for_expr, gen_eval_for_expr) |
| (gen_trace_for_return_address, gen_printf): Use and return an |
| agent_expr_up. Don't use make_cleanup_free_agent_expr. |
| (agent_eval_command_one, maint_agent_printf_command): Use |
| agent_expr_up. Don't use make_cleanup_free_agent_expr. |
| * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var) |
| (gen_trace_for_return_address, gen_eval_for_expr, gen_printf): Use |
| agent_expr_up. |
| * ax-general.c (new_agent_expr): Rename to ... |
| (agent_expr::agent_expr): ... this, and now a constructor. |
| (free_agent_expr): Rename to ... |
| (agent_expr::~agent_exp): ... this, and now a destructor. |
| (do_free_agent_expr_cleanup, make_cleanup_free_agent_expr): |
| Delete. |
| * ax.h (struct agent_expr): Add ctor/dtor. |
| (agent_expr_up): New typedef. |
| (new_agent_expr, free_agent_expr, make_cleanup_free_agent_expr): |
| Delete declarations. |
| * breakpoint.c (parse_cond_to_aexpr): Use and return an |
| agent_expr_up. Don't use make_cleanup_free_agent_expr. |
| (build_target_condition_list): Adjust to use agent_expr_up. |
| (parse_cmd_to_aexpr): Use and return an agent_expr_up. Don't use |
| make_cleanup_free_agent_expr. |
| (build_target_command_list): Adjust to use agent_expr_up. |
| (force_breakpoint_reinsertion): Adjust to use agent_expr_up. |
| (bp_location_dtor): Remove unnecessary free_agent_expr and xfree |
| calls. |
| * breakpoint.h (struct bp_target_info) <cond_bytecode, |
| cmd_bytecode>: Now agent_expr_up's. |
| * remote.c (remote_download_tracepoint): Adjust to use |
| agent_expr_up and remove use of make_cleanup_free_agent_expr. |
| * tracepoint.c (validate_actionline, collect_symbol): Adjust to |
| use agent_expr_up and remove uses of make_cleanup_free_agent_expr. |
| (collection_list::~collection_list): Call delete instead of |
| free_agent_expr. |
| (encode_actions_1): Adjust to use agent_expr_up and remove uses of |
| make_cleanup_free_agent_expr. |
| (add_aexpr): Change parameter type to agent_expr_up; Return a raw |
| agent_expr pointer. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * ada-lang.c (ada_name_for_lookup, type_as_string): Use and return |
| std::string. |
| (type_as_string_and_cleanup): Delete. |
| (ada_lookup_struct_elt_type): Use type_as_string. |
| * ada-lang.h (ada_name_for_lookup): Now returns std::string. |
| * ada-varobj.c (ada_varobj_scalar_image): Return a std::string. |
| (ada_varobj_describe_child): Make 'child_name' and |
| 'child_path_expr' parameters std::string pointers. |
| (ada_varobj_describe_struct_child, ada_varobj_describe_ptr_child): |
| Likewise, and use string_printf. |
| (ada_varobj_describe_simple_array_child) |
| (ada_varobj_describe_child): Likewise. |
| (ada_varobj_get_name_of_child, ada_varobj_get_path_expr_of_child) |
| (ada_varobj_get_value_image) |
| (ada_varobj_get_value_of_array_variable) |
| (ada_varobj_get_value_of_variable, ada_name_of_variable) |
| (ada_name_of_child, ada_path_expr_of_child) |
| (ada_value_of_variable): Now returns std::string. Use |
| string_printf. |
| (ada_value_of_child): Adjust. |
| * break-catch-throw.c (check_status_exception_catchpoint): Adjust |
| to use std::string. |
| * breakpoint.c (watch_command_1): Adjust to use std::string. |
| * c-lang.c (c_get_string): Adjust to use std::string. |
| * c-typeprint.c (print_name_maybe_canonical): Use std::string. |
| * c-varobj.c (varobj_is_anonymous_child): Use ==/!= std::string |
| operators. |
| (c_name_of_variable): Now returns a std::string. |
| (c_describe_child): The 'cname' and 'cfull_expression' output |
| parameters are now std::string pointers. Adjust. |
| (c_name_of_child, c_path_expr_of_child, c_value_of_variable) |
| (cplus_number_of_children): Adjust to use std::string and |
| string_printf. |
| (cplus_name_of_variable): Now returns a std::string. |
| (cplus_describe_child): The 'cname' and 'cfull_expression' output |
| parameters are now std::string pointers. Adjust. |
| (cplus_name_of_child, cplus_path_expr_of_child) |
| (cplus_value_of_variable): Now returns a std::string. |
| * cp-abi.c (cplus_typename_from_type_info): Return std::string. |
| * cp-abi.h (cplus_typename_from_type_info): Return std::string. |
| (struct cp_abi_ops) <get_typename_from_type_info>: Return |
| std::string. |
| * cp-support.c (inspect_type): Use std::string. |
| (cp_canonicalize_string_full, cp_canonicalize_string_no_typedefs) |
| (cp_canonicalize_string): Return std::string and adjust. |
| * cp-support.h (cp_canonicalize_string) |
| (cp_canonicalize_string_no_typedefs, cp_canonicalize_string_full): |
| Return std::string. |
| * dbxread.c (read_dbx_symtab): Use std::string. |
| * dwarf2read.c (dwarf2_canonicalize_name): Adjust to use std::string. |
| * gdbcmd.h (lookup_struct_elt_type): Adjust to use std::string. |
| * gnu-v3-abi.c (gnuv3_get_typeid): Use std::string. |
| (gnuv3_get_typename_from_type_info): Return a std::string and |
| adjust. |
| (gnuv3_get_type_from_type_info): Adjust to use std::string. |
| * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use |
| std::string. |
| * infcmd.c (print_return_value_1): Adjust to use std::string. |
| * linespec.c (find_linespec_symbols): Adjust to |
| demangle_for_lookup API change. Use std::string. |
| * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_set_format) |
| (mi_cmd_var_info_type, mi_cmd_var_info_path_expression) |
| (mi_cmd_var_info_expression, mi_cmd_var_evaluate_expression) |
| (mi_cmd_var_assign, varobj_update_one): Adjust to use std::string. |
| * minsyms.c (lookup_minimal_symbol): Use std::string. |
| * python/py-varobj.c (py_varobj_iter_next): Use new instead of |
| XNEW. vitem->name is a std::string now, adjust. |
| * rust-exp.y (convert_ast_to_type, convert_name): Adjust to use |
| std::string. |
| * stabsread.c (define_symbol): Adjust to use std::string. |
| * symtab.c (demangle_for_lookup): Now returns 'const char *'. Add |
| a demangle_result_storage parameter. Use it for storage. |
| (lookup_symbol_in_language) |
| (lookup_symbol_in_objfile_from_linkage_name): Adjust to new |
| demangle_for_lookup API. |
| * symtab.h (struct demangle_result_storage): New type. |
| (demangle_for_lookup): Now returns 'const char *'. Add a |
| demangle_result_storage parameter. |
| * typeprint.c (type_to_string): Return std::string and use |
| ui_file_as_string. |
| * value.h (type_to_string): Change return type to std::string. |
| * varobj-iter.h (struct varobj_item) <name>: Now a std::string. |
| (varobj_iter_delete): Use delete instead of xfree. |
| * varobj.c (create_child): Return std::string instead of char * in |
| output parameter. |
| (name_of_variable, name_of_child, my_value_of_variable): Return |
| std::string instead of char *. |
| (varobj_create, varobj_get_handle): Constify 'objname' parameter. |
| Adjust to std::string fields. |
| (varobj_get_objname): Return a const char * instead of a char *. |
| (varobj_get_expression): Return a std::string. |
| (varobj_list_children): Adjust to use std::string. |
| (varobj_get_type): Return a std::string. |
| (varobj_get_path_expr): Return a const char * instead of a char *. |
| Adjust to std::string fields. |
| (varobj_get_formatted_value, varobj_get_value): Return a |
| std::string. |
| (varobj_set_value): Change type of 'expression' parameter to |
| std::string. Use std::string. |
| (install_new_value): Use std::string. |
| (delete_variable_1): Adjust to use std::string. |
| (create_child): Change the 'name' parameter to a std::string |
| reference. Swap it into the new item's name. |
| (create_child_with_value): Swap item's name into the new child's |
| name. Use string_printf. |
| (new_variable): Use new instead of XNEW. |
| (free_variable): Don't xfree fields that are now std::string. |
| (name_of_variable, name_of_child): Now returns std::string. |
| (value_of_root): Adjust to use std::string. |
| (my_value_of_variable, varobj_value_get_print_value): Return |
| and use std::string. |
| (varobj_value_get_print_value): Adjust to use ui_file_as_string |
| and std::string. |
| * varobj.h (struct varobj) <name, path_expr, obj_name, |
| print_value>: Now std::string's. |
| <name_of_variable, name_of_child, path_expr_of_child, |
| value_of_variable>: Return std::string. |
| (varobj_create, varobj_get_handle): Constify 'objname' parameter. |
| (varobj_get_objname): Return a const char * instead of a char *. |
| (varobj_get_expression, varobj_get_type): Return a std::string. |
| (varobj_get_path_expr): Return a const char * instead of a char *. |
| (varobj_get_formatted_value, varobj_get_value): Return a |
| std::string. |
| (varobj_set_value): Constify 'expression' parameter. |
| (varobj_value_get_print_value): Return a std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * language.c (add_language): Use ui_file_as_string and adjust to |
| use std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| Tom Tromey <tom@tromey.com> |
| |
| * rust-lang.c (struct disr_info) <name>: Now a std::string. |
| (rust_get_disr_info): Use ui_file_as_string and adjust to use |
| std::string. |
| (rust_val_print): Adjust to use std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * infrun.c (print_target_wait_results): Use ui_file_as_string and |
| std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * ada-lang.c (type_as_string): Use ui_file_as_string and return |
| std::string. |
| (type_as_string_and_cleanup): Delete. |
| (ada_lookup_struct_elt_type): Use type_as_string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * gdbarch.sh (verify_gdbarch): Use ui_file_as_string and |
| std::string. |
| * gdbarch.c: Regenerate. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * c-exp.y (OPERATOR NEW): Adjust to use ui_file_as_string and |
| std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * c-lang.h (c_compute_program): Now returns std::string. |
| * compile/compile-internal.h (class compile_file_names): New |
| class. |
| * compile/compile-object-load.c (compile_object_load): Replace |
| object_file and source_file parameters with a compile_file_names |
| parameter. Adjust. |
| * compile-object-load.h: Include "compile-internal.h". |
| (compile_object_load): Replace object_file and source_file |
| parameters with a compile_file_names parameter. |
| * compile/compile-c-support.c (c_compute_program): Now returns a |
| std::string. Use ui_file_as_string. |
| * compile/compile.c (get_new_file_names): Remove parameters and |
| return a compile_file_names instead. |
| (compile_to_object): Now returns a compile_file_names. Use |
| ui_file_as_string. |
| (eval_compile_command): Use compile_file_names. |
| * language.h (struct language_defn) <la_compute_program>: Now |
| returns std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * cli/cli-setshow.c (do_show_command): Adjust to use |
| ui_file_as_string and std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * remote.c (escape_buffer): Use ui_file_as_string and return |
| std::string. |
| (putpkt_binary, read_frame): Adjust to use std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * python/py-arch.c (archpy_disassemble): Use ui_file_as_string and |
| std::string. |
| * python/py-breakpoint.c (bppy_get_commands): Use |
| ui_file_as_string and std::string. |
| * python/py-frame.c (frapy_str): Likewise. |
| * python/py-type.c (typy_str): Likewise. |
| * python/py-unwind.c (unwind_infopy_str): Likewise. |
| * python/py-value.c (valpy_str): Likewise. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * printcmd.c (eval_command): Use ui_file_as_string and |
| std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * top.c (quit_confirm): Use ui_file_as_string and std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * gdbcmd.h (execute_command_to_string): Now returns std::string. |
| (lookup_struct_elt_type): Adjust to use std::string. |
| * top.c (execute_command_to_string): Use ui_file_as_string and |
| return std::string. |
| * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use |
| std::string. |
| * python/python.c (execute_gdb_command): Adjust to use |
| std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use |
| ui_file_as_string and adjust to use std::string. |
| * guile/scm-disasm.c (gdbscm_arch_disassemble): Likewise. |
| * guile/scm-frame.c (frscm_print_frame_smob): Likewise. |
| * guile/scm-type.c (tyscm_type_name): Use ui_file_as_string and |
| adjust to use std::string. Throw exception directly instead of |
| returning it in EXCP output parameter. |
| (tyscm_print_type_smob, gdbscm_type_print_name): Adjust to |
| tyscm_type_name interface change. |
| * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print): |
| Use ui_file_as_string and std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * arm-tdep.c (_initialize_arm_tdep): Use ui_file_as_string and |
| std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * utils.c (error_stream): Use ui_file_as_string and std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * ui-out.c (ui_out_field_stream): Use ui_file_as_string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * ada-valprint.c (ada_print_floating): Use ui_file_as_string and |
| std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * xtensa-tdep.c (xtensa_verify_config): Use ui_file_as_string and |
| std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * dwarf2read.c (dwarf2_compute_name): Use ui_file_as_string and |
| std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * mi/mi-main.c (print_variable_or_computed): Constify 'expression' |
| parameter. |
| (mi_cmd_trace_frame_collected): Call encode_actions instead of |
| encode_actions_and_make_cleanup. Adjust to use std::vector. |
| * tracepoint.c (memrange_cmp): Delete. |
| (memrange_comp): New. |
| (memrange_sortmerge): Take a memrange vector as parameter instead |
| of a collection_list. Use std::sort instead of qsort. |
| (add_register): Now a method of collection_list. Adjust to m_ |
| prefix of data fields. |
| (add_memrange): Now a method of collection_list. Adjust to m_ |
| prefix of data fields. Adjust to use std::vector. |
| (collect_symbol): Now a method of collection_list. Adjust to m_ |
| prefix of data fields. |
| (do_collect_symbol): Adjust. Call add_wholly_collected instead of |
| accessing the vector directly. |
| (collection_list::add_wholly_collected): New. |
| (add_local_symbols): Now a method of collection_list. |
| (add_static_trace_data): Now a method of collection_list. Adjust |
| to use bool. |
| (clear_collection_list, do_clear_collection_list): Delete. |
| (init_collection_list): Delete. |
| (collection_list::collection_list): New. |
| (collection_list::~collection_list): New. |
| (stringify_collection_list): Rename to ... |
| (collection_list::stringify): ... this and adjust to being a |
| method of collection_list. Adjust to use of std::vector. |
| (append_exp): Now a method of collection_list. Use |
| ui_file_as_string. Adjust to std::vector. |
| (collection_list::finish): New. |
| (encode_actions_1): Adjust. |
| (encode_actions_and_make_cleanup): Rename to ... |
| (encode_actions)... this. No longer returns a cleanup. No longer |
| call init_collection_list nor install do_clear_collection_list |
| cleanups. Call collection_list::finish instead of |
| memrange_sortmerge directly. |
| (encode_actions_rsp): Adjust to call encode_actions instead of |
| encode_actions_and_make_cleanup. Adjust to method renames. |
| (add_aexpr): Now a method of collection_list. |
| * tracepoint.h: Include <vector> and <string>. |
| (struct memrange): Add constructors. |
| (struct collection_list): Now a class. |
| (class collection_list) <collection_list, ~collection_list, |
| add_wholly_collected, append_exp, add_aexpr, add_register, |
| add_memrange, collect_symbol, add_local_symbols, |
| add_static_trace_data, finish, stringify, wholly_collected, and |
| computed>: New methods. |
| <regs_mask>: Rename to ... |
| <m_regs_mask>: ... this. |
| <listsize, next_memrange, list>: Delete fields. |
| <m_memranges>: New field. |
| <aexpr_listsize, next_aexpr_elt, aexpr_list>: Delete fields. |
| <m_aexprs>: New field. |
| <strace_data>: Rename to ... |
| <m_strace_data>: ... this. Now a bool. |
| <wholly_collected>: Rename to ... |
| <m_wholly_collected>: ... this. Now a std::vector<std::string>. |
| <computed>: Rename to ... |
| <m_computed>: ... this. Now a std::vector<std::string>. |
| (encode_actions_and_make_cleanup): Delete declaration. |
| (encode_actions): New declaration. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * ui-file.c (do_ui_file_as_string, ui_file_as_string): New |
| functions. |
| * ui-file.h: Include <string>. |
| (ui_file_as_string): New declaration. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * ada-lang.c (ada_read_renaming_var_value): Use expression_up. |
| (struct ada_catchpoint_location) <excep_cond_expr>: Now an |
| expression_up. |
| (ada_catchpoint_location_dtor): Reset excep_cond_expr instead of |
| using xfree. |
| (create_excep_cond_exprs): Use expression_up and gdb::move. |
| (allocate_location_exception): Use new instead of XNEW. |
| (should_stop_exception): Likewise. Adjust to use expression_up. |
| (create_ada_exception_catchpoint): Use new instead of XNEW. |
| * ax-gdb.c (agent_eval_command_one): Use expression_up instead of |
| cleanups. |
| (maint_agent_printf_command): Use expression_up. |
| * break-catch-sig.c (create_signal_catchpoint): Use new instead of |
| XNEW. |
| * break-catch-syscall.c (create_syscall_event_catchpoint): |
| Likewise. |
| * break-catch-throw.c (handle_gnu_v3_exceptions): Use new instead |
| of XCNEW. Use gdb::unique_ptr instead of cleanups. |
| * breakpoint.c (set_breakpoint_condition, update_watchpoint) |
| (parse_cmd_to_aexpr, watchpoint_check) |
| (bpstat_check_breakpoint_conditions, watchpoint_locations_match): |
| Adjust to use expression_up. |
| (init_bp_location): Adjust. |
| (free_bp_location): Use delete instead of xfree. |
| (set_raw_breakpoint_without_location, set_raw_breakpoint) |
| (add_solib_catchpoint, create_fork_vfork_event_catchpoint) |
| (new_single_step_breakpoint, create_breakpoint_sal): Use new |
| instead of XNEW. |
| (find_condition_and_thread): Adjust to use expression_up. |
| (create_breakpoint): Use new instead of XNEW. |
| (dtor_watchpoint): Don't xfree expression pointers, they're |
| unique_ptr's now. |
| (insert_watchpoint, remove_watchpoint): Adjust. |
| (watch_command_1): Use expression_up. Use new instead of XCNEW. |
| (catch_exec_command_1): Use new instead of XNEW. |
| (bp_location_dtor): Don't xfree expression pointers, they're |
| unique_ptr's now. |
| (base_breakpoint_allocate_location) |
| (strace_marker_create_breakpoints_sal): Use new instead of XNEW. |
| (delete_breakpoint): Use delete instead of xfree. |
| * breakpoint.h (struct bp_location) <cond>: Now an |
| unique_ptr<expression> instead of a raw pointer. |
| (struct watchpoint) <exp, cond_exp>: Likewise. |
| * cli/cli-script.c (execute_control_command): Use expression_up |
| instead of cleanups. |
| * dtrace-probe.c (dtrace_process_dof_probe): Use expression_up. |
| * eval.c (parse_and_eval_address, parse_and_eval_long) |
| (parse_and_eval, parse_to_comma_and_eval, parse_and_eval_type): |
| Use expression_up instead of cleanups. |
| * expression.h (expression_up): New typedef. |
| (parse_expression, parse_expression_with_language, parse_exp_1): |
| Change return type to expression_up. |
| * mi/mi-main.c (mi_cmd_data_evaluate_expression) |
| (print_variable_or_computed): Use expression_up. |
| * objc-lang.c (print_object_command): Use expression_up instead of |
| cleanups. |
| * parse.c (parse_exp_1, parse_exp_in_context) |
| (parse_exp_in_context_1, parse_expression) |
| (parse_expression_with_language): Return an expression_up instead |
| of a raw pointer. |
| (parse_expression_for_completion): Use expression_up. |
| * printcmd.c (struct display) <exp>: Now an expression_up instead |
| of a raw pointer. |
| (print_command_1, output_command_const, set_command, x_command): |
| Use expression_up instead of cleanups. |
| (display_command): Likewise. Use new instead of XNEW. |
| (free_display): Use delete instead of xfree. |
| (do_one_display): Adjust to use expression_up. |
| * remote.c (remote_download_tracepoint): Likewise. |
| * stack.c (return_command): Likewise. |
| * tracepoint.c (validate_actionline, encode_actions_1): Use |
| expression_up instead of cleanups. |
| * typeprint.c (whatis_exp, maintenance_print_type): Likewise. |
| * value.c (init_if_undefined_command): Likewise. |
| * varobj.c (struct varobj_root) <exp>: Now an expression_up |
| instead of a raw pointer. |
| (varobj_create): Adjust. |
| (varobj_set_value): Use an expression_up instead of cleanups. |
| (new_root_variable): Use new instead of XNEW. |
| (free_variable): Use delete instead of xfree. |
| (value_of_root_1): Use std::swap. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * cli/cli-script.c (execute_control_command): Use std::string |
| instead of cleanups. |
| (locate_arg): Constify return type. |
| (insert_args): Constify paremeter. Simplify using std::string. |
| Return a std::string. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * breakpoint.c (struct commands_info) <arg>: Constify. |
| (commands_command_1): Constify 'arg' parameter. Use std::string |
| and string_printf. |
| (commands_from_control_command): Constify 'arg' parameter. |
| (map_breakpoint_numbers): Constify 'args' parameter. |
| * breakpoint.h (commands_from_control_command): Constify 'arg' |
| parameter. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * cli/cli-script.c (execute_control_command): Assume insert_args |
| never returns NULL. |
| (insert_args): Assume xmalloc never returns NULL. |
| |
| 2016-11-08 Pedro Alves <palves@redhat.com> |
| |
| * Makefile.in (COMMON_OBS): Add utils-selftests.o. |
| * common/common-utils.c (string_printf): New function. |
| * common/common-utils.h: Include <string>. |
| (string_printf): Declare. |
| * utils-selftests.c: New file. |
| |
| 2016-11-08 Yao Qi <yao.qi@linaro.org> |
| |
| * aarch64-tdep.c (aarch64_software_single_step): Return |
| VEC (CORE_ADDR) *. Return NULL instead of 0. Don't call |
| insert_single_step_breakpoint. |
| * alpha-tdep.c (alpha_deal_with_atomic_sequence): Likewise. |
| (alpha_software_single_step): Likewise. |
| * alpha-tdep.h (alpha_software_single_step): Update declaration. |
| * arm-linux-tdep.c (arm_linux_software_single_step): Return |
| VEC (CORE_ADDR) *. Return NULL instead of 0. |
| * arm-tdep.c (arm_software_single_step): Return NULL instead of 0. |
| * arm-tdep.h (arm_software_single_step): Update declaration. |
| * breakpoint.c (insert_single_step_breakpoints): New function. |
| * breakpoint.h (insert_single_step_breakpoints): Declare. |
| * cris-tdep.c (cris_software_single_step): Return |
| VEC (CORE_ADDR) *. Don't call insert_single_step_breakpoint. |
| * gdbarch.sh (software_single_step): Change it to return |
| VEC (CORE_ADDR) *. |
| * gdbarch.c, gdbarch.h: Regenerated. |
| * infrun.c (maybe_software_singlestep): Adjust. |
| * mips-tdep.c (mips_deal_with_atomic_sequence): Return |
| VEC (CORE_ADDR) *. Don't call insert_single_step_breakpoint. |
| (micromips_deal_with_atomic_sequence): Likewise. |
| (deal_with_atomic_sequence): Likewise. |
| (mips_software_single_step): Likewise. |
| * mips-tdep.h (mips_software_single_step): Update declaration. |
| * moxie-tdep.c (moxie_software_single_step): Likewise. |
| * nios2-tdep.c (nios2_software_single_step): Likewise. |
| * ppc-tdep.h (ppc_deal_with_atomic_sequence): Update |
| declaration. |
| * record-full.c (record_full_resume): Adjust. |
| (record_full_wait_1): Likewise. |
| * rs6000-aix-tdep.c (rs6000_software_single_step): Return |
| VEC (CORE_ADDR) *. Don't call insert_single_step_breakpoint. |
| * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Return |
| VEC (CORE_ADDR) *. Don't call insert_single_step_breakpoint. |
| * s390-linux-tdep.c (s390_software_single_step): Likewise. |
| * sparc-tdep.c (sparc_software_single_step): Likewise. |
| * spu-tdep.c (spu_software_single_step): Likewise. |
| * tic6x-tdep.c (tic6x_software_single_step): Likewise. |
| |
| 2016-11-08 Yao Qi <yao.qi@linaro.org> |
| |
| * arm-linux-tdep.c (arm_linux_software_single_step): Write |
| adjusted address back to vector. Call insert_single_step_breakpoint |
| in a new loop. |
| * arm-tdep.c (arm_software_single_step): Likewise. |
| |
| 2016-11-08 Yao Qi <yao.qi@linaro.org> |
| |
| * arm-linux-tdep.c (arm_linux_software_single_step): Don't |
| call arm_insert_single_step_breakpoint, call |
| insert_single_step_breakpoint instead. |
| * arm-tdep.c (arm_insert_single_step_breakpoint): Remove. |
| (arm_software_single_step): Don't call |
| arm_insert_single_step_breakpoint, call |
| insert_single_step_breakpoint instead. |
| * arm-tdep.h (arm_insert_single_step_breakpoint): Remove |
| declaration. |
| |
| 2016-11-08 Cordian A. Daniluk <th3c0r1uk@gmail.com> |
| |
| PR breakpoints/20739 |
| * breakpoint.c (check_fast_tracepoint_sals): Don't print duplicate |
| 0x prefix. |
| |
| 2016-11-08 Yao Qi <yao.qi@linaro.org> |
| |
| * rust-lang.c (val_print_struct): Fix indentation. |
| |
| 2016-11-08 Lionel Flandrin <lionel@svkt.org> |
| |
| * remote.c (process_g_packet): Detect truncated registers in 'g' |
| packets and raise an error. |
| |
| 2016-11-07 Doug Evans <dje@google.com> |
| |
| * guile/scm-value.c (gdbscm_value_field): Fix call to value_struct_elt. |
| * python/py-value.c (valpy_getitem): Ditto. |
| |
| 2016-11-07 Doug Evans <dje@google.com> |
| |
| * i386-tdep.c (i386_gdbarch_init): Add comments. |
| |
| 2016-11-07 Doug Evans <dje@google.com> |
| |
| * python/py-unwind.c (unwind_infopy_str): Fix use of VEC_iterate. |
| |
| 2016-11-07 Doug Evans <dje@google.com> |
| |
| * configure.tgt (x86_64-*-elf*): Remove i386bsd-tdep.o. |
| |
| 2016-11-04 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * maint.c (scoped_command_stats::scoped_command_stats): Fix typo. |
| * ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Likewise. |
| * ppcobsd-tdep.c (_initialize_ppcobsd_tdep): Likewise. |
| * ui-out.c (ui_out_new): Likewise. |
| * utils.c (init_page_info): Likewise. |
| (reset_prompt_for_continue_wait_time): Likewise. |
| * windows-nat.c (windows_init_thread_list): Likewise. |
| * xtensa-tdep.c (call0_analyze_prologue): Likewise. |
| |
| 2016-10-29 Manish Goregaokar <manish@mozilla.com> |
| |
| * rust-exp.y: Parse `sizeof(exp)` as `UNOP_SIZEOF`. |
| |
| 2016-10-28 Manish Goregaokar <manish@mozilla.com> |
| |
| * rust-lang.c (rust_union_is_untagged): Add function to check if a |
| union is an untagged union. |
| (rust_val_print): Handle printing of untagged union values. |
| (rust_print_type): Handle printing of untagged union types. |
| (rust_evaluate_subexp): Handle evaluating field access on untagged |
| unions. |
| |
| 2016-10-27 Manish Goregaokar <manish@mozilla.com> |
| |
| * rust-lang.c (rust_get_disr_info): Treat univariant enums without |
| discriminants as encoded enums with a real field. |
| * rust-lang.c (rust_evaluate_subexp): Handle field access on |
| encoded struct-like enums. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * Makefile.in (.y.c): Replace YY_NULL with YY_NULLPTR. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| Pedro Alves <palves@redhat.com> |
| |
| * aarch64-tdep.c (aarch64_default_breakpoint): Change it to |
| constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (aarch64_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * alpha-tdep.c (break_insn): Rename to alpha_break_insn. |
| Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (alpha_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * arc-tdep.c (arc_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * arch-utils.h (GDBARCH_BREAKPOINT_MANIPULATION): Remove. |
| (struct bp_manipulation): New. |
| (SET_GDBARCH_BREAKPOINT_MANIPULATION): Remove. |
| (struct bp_manipulation_endian): New. |
| (BP_MANIPULATION): New. |
| (BP_MANIPULATION_ENDIAN): New. |
| * arm-tdep.c (arm_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * avr-tdep.c (avr_break_insn): Change it constexpr. |
| (avr_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * bfin-tdep.c (bfin_gdbarch_init): Likewise. |
| * cris-tdep.c (cris_gdbarch_init): Likewise. |
| * frv-tdep.c (breakpoint): Rename it to frv_break_insn, and |
| change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (frv_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * ft32-tdep.c (breakpoint): Rename it to ft32_break_insn and |
| change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (ft32_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * h8300-tdep.c (breakpoint): Rename it to h8300_break_insn. |
| Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (h8300_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * hppa-tdep.c (breakpoint): Rename it to h8300_break_insn. |
| Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (hppa_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * i386-tdep.c (break_insn): Rename it to i386_break_insn. |
| Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (i386_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * iq2000-tdep.c (iq2000_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * lm32-tdep.c (breakpoint): Rename it to lm32_break_insn and |
| change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (lm32_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * m32c-tdep.c (break_insn): Rename it to m32c_break_insn and change |
| its type to constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (m32c_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * m32r-tdep.c (m32r_gdbarch_init): Likewise. |
| * m68hc11-tdep.c (breakpoint): Rename it to m68hc11_break_insn and |
| change its type to constexpr. |
| Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (m68hc11_gdbarch_init): Don't use SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * m68k-tdep.c (break_insn): Rename it to m68k_break_insn and change |
| its type to constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (m68k_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * m88k-tdep.c (break_insn): Rename it to m88k_break_insn and change |
| its type to constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (m88k_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * mep-tdep.c (breakpoint): Rename it to mep_break_insn and change |
| its type to constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (mep_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * microblaze-tdep.c (break_insn): Rename it to |
| microblaze_break_insn and change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (microblaze_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * mips-tdep.c (mips_gdbarch_init): Likewise. |
| * mn10300-tdep.c (breakpoint): Rename it to mn10300_break_insn and |
| change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (mn10300_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * moxie-tdep.c (breakpoint): Rename it to moxie_break_insn and |
| change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (moxie_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * msp430-tdep.c (breakpoint): Rename it to msp430_break_insn |
| and change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (msp430_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * mt-tdep.c (mt_gdbarch_init): Likewise. |
| * nds32-tdep.c (break_insn): Rename it to nds32_break_insn |
| and change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (nds32_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * nios2-tdep.c (nios2_gdbarch_init): Likewise. |
| * rl78-tdep.c (breakpoint): Rename it to rl78_break_ins |
| and change its type to rl78_break_insn. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (rl78_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * rs6000-tdep.c (big_breakpoint): Change its type to |
| constexpr. |
| (little_breakpoint): Likewise. |
| Don't use GDBARCH_BREAKPOINT_MANIPULATION_ENDIAN. |
| (rs6000_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * rx-tdep.c (breakpoint): Rename it to rx_break_insn and |
| change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (rx_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * s390-linux-tdep.c (breakpoint): Rename it to s390_break_insn |
| and change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION |
| (s390_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * score-tdep.c (score_gdbarch_init): Likewise. |
| * sh-tdep.c (sh_gdbarch_init): Likewise. |
| * sh64-tdep.c (sh64_gdbarch_init): Likewise. |
| * sparc-tdep.c (break_insn): Rename it to sparc_break_insn |
| and change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (sparc32_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * spu-tdep.c (breakpoint): Rename it to spu_break_insn and change |
| its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (spu_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * tic6x-tdep.c (tic6x_gdbarch_init): Likewise. |
| * tilegx-tdep.c (breakpoint): Rename it to tilegx_break_insn |
| and change its type to constexpr. Don't use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (tilegx_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * v850-tdep.c (v850_gdbarch_init): Likewise. |
| * vax-tdep.c (break_insn): Rename it to vax_break_insn and |
| change its type to constexpr. |
| Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (vax_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * xstormy16-tdep.c (breakpoint): Rename it to |
| xstormy16_break_insn and change its type to constexpr. |
| Don't use GDBARCH_BREAKPOINT_MANIPULATION. |
| (xstormy16_gdbarch_init): Don't use |
| SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * xtensa-tdep.c (xtensa_gdbarch_init): Likewise. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * arm-tdep.c (arm_override_mode): Remove. |
| (arm_pc_is_thumb): Update. |
| (arm_insert_single_step_breakpoint): Update. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * arch-utils.c (default_breakpoint_kind_from_current_state): |
| New function. |
| * arch-utils.h (default_breakpoint_kind_from_current_state): |
| Declare. |
| * arm-tdep.c (arm_breakpoint_kind_from_current_state): New |
| function. |
| (arm_gdbarch_init): Call |
| set_gdbarch_breakpoint_kind_from_current_state. |
| * breakpoint.c (breakpoint_kind): Call |
| gdbarch_breakpoint_kind_from_current_state for single step |
| breakpoint. Update comments. |
| * gdbarch.sh (breakpoint_kind_from_current_state): New. |
| * gdbarch.c, gdbarch.h: Regenerate. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * arch-utils.c (default_breakpoint_from_pc): New function. |
| * arch-utils.h (GDBARCH_BREAKPOINT_FROM_PC): Remove. |
| (GDBARCH_BREAKPOINT_MANIPULATION): Don't use |
| GDBARCH_BREAKPOINT_FROM_PC. |
| (SET_GDBARCH_BREAKPOINT_MANIPULATION): Don't call |
| set_gdbarch_breakpoint_from_pc. |
| (default_breakpoint_from_pc): Remove declaration. |
| * gdbarch.sh (breakpoint_from_pc): Add its default implementation. |
| * gdbarch.c, gdbarch.h: Regenerate. |
| * arm-tdep.c: Don't use GDBARCH_BREAKPOINT_FROM_PC. |
| * arc-tdep.c, bfin-tdep.c, cris-tdep.c, iq2000-tdep.c: Likewise. |
| * m32r-tdep.c, mips-tdep.c, mt-tdep.c: Likewise. |
| * nios2-tdep.c, score-tdep.c, sh-tdep.c: Likewise. |
| * sh64-tdep.c, tic6x-tdep.c, v850-tdep.c, xtensa-tdep.c: Likewise. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * arch-utils.c (default_remote_breakpoint_from_pc): Remove. |
| * arch-utils.h (default_remote_breakpoint_from_pc): Remove. |
| * arm-tdep.c (arm_remote_breakpoint_from_pc): Remove. |
| (arm_gdbarch_init): Don't call |
| set_gdbarch_remote_breakpoint_from_pc. |
| * gdbarch.sh (remote_breakpoint_from_pc): Remove. |
| * gdbarch.c, gdbarch.h: Regenerate. |
| * mips-tdep.c (mips_remote_breakpoint_from_pc): Remove. |
| (mips_gdbarch_init): Don't call |
| set_gdbarch_remote_breakpoint_from_pc. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * breakpoint.h (struct bp_target_info) <placed_size>: Remove. |
| <kind>: New field. |
| Update all users. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * arch-utils.h (GDBARCH_BREAKPOINT_MANIPULATION): Define |
| breakpoint_kind_from_pc and sw_breakpoint_from_kind. |
| (GDBARCH_BREAKPOINT_MANIPULATION_ENDIAN): Likewise. |
| (SET_GDBARCH_BREAKPOINT_MANIPULATION): Call |
| set_gdbarch_breakpoint_kind_from_pc and |
| set_gdbarch_sw_breakpoint_from_kind. |
| * arm-tdep.c: Add comments. |
| * bfin-tdep.c: Likewise. |
| * breakpoint.c (breakpoint_kind): New function. |
| (insert_bp_location): Set target_info.placed_size and |
| target_info.placed_address. |
| (bkpt_insert_location): Likewise. |
| * cris-tdep.c: Add comments. |
| * gdbarch.sh (breakpoint_kind_from_pc): New. |
| (sw_breakpoint_from_kind): New. |
| * gdbarch.c, gdbarch.h: Regenerated. |
| * ia64-tdep.c (ia64_memory_insert_breakpoint): Don't set |
| bp_tgt->placed_size. |
| (ia64_memory_remove_breakpoint): Don't assert |
| bp_tgt->placed_size. |
| (ia64_breakpoint_kind_from_pc): New function. |
| (ia64_gdbarch_init): Install ia64_breakpoint_kind_from_pc. |
| * m32r-tdep.c (m32r_memory_insert_breakpoint): Don't set |
| bp_tgt->placed_size. |
| * mem-break.c (default_memory_insert_breakpoint): Don't set |
| bp_tgt->placed_size. Call gdbarch_sw_breakpoint_from_kind. |
| (default_memory_remove_breakpoint): Call |
| gdbarch_sw_breakpoint_from_kind. |
| (memory_validate_breakpoint): Don't check bp_tgt->placed_size. |
| * mips-tdep.c: Add comments. |
| * mt-tdep.c: Likewise. |
| * nios2-tdep.c: Likewise. |
| * record-full.c (record_full_insert_breakpoint): Don't call |
| gdbarch_breakpoint_from_pc. Don't set bp_tgt->placed_address |
| and bp_tgt->placed_size. |
| * remote.c (remote_insert_breakpoint): Don't call |
| gdbarch_remote_breakpoint_from_pc. Use bp_tgt->placed_size. |
| Don't set bp_tgt->placed_address and bp_tgt->placed_size. |
| (remote_insert_hw_breakpoint): Likewise. |
| * score-tdep.c: Likewise. |
| * sh-tdep.c: Likewise. |
| * tic6x-tdep.c: Likewise. |
| * v850-tdep.c: Likewise. |
| * xtensa-tdep.c: Likewise. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * arch-utils.h (GDBARCH_BREAKPOINT_FROM_PC): New macro. |
| (GDBARCH_BREAKPOINT_MANIPULATION_ENDIAN): New macro. |
| * arm-tdep.c (arm_breakpoint_from_pc): Remove. |
| (arm_breakpoint_kind_from_pc): New function. |
| (arm_sw_breakpoint_from_kind): New function. |
| (arm_breakpoint_from_pc): Call arm_breakpoint_kind_from_pc |
| and arm_sw_breakpoint_from_kind. |
| Use GDBARCH_BREAKPOINT_FROM_PC. |
| (arm_remote_breakpoint_from_pc): Call |
| arm_breakpoint_kind_from_pc. |
| (arm_gdbarch_init): Replace set_gdbarch_breakpoint_from_pc |
| with SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * arc-tdep.c: Likewise. |
| * bfin-tdep.c: Likewise. |
| * cris-tdep.c: Likewise. |
| * iq2000-tdep.c: Likewise. |
| * m32r-tdep.c: Likewise. |
| * mips-tdep.c: Likewise. |
| * mt-tdep.c: Likewise. |
| * nios2-tdep.c: Likewise. |
| * rs6000-tdep.c: Likewise. |
| * score-tdep.c: Likewise. |
| * sh-tdep.c: Likewise. |
| * sh64-tdep.c: Likewise. |
| * tic6x-tdep.c: Likewise. |
| * v850-tdep.c: Likewise. |
| * xtensa-tdep.c: Likewise. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * mips-tdep.c (mips_breakpoint_kind): New enum. |
| (mips_breakpoint_from_pc): Use it. |
| (mips_remote_breakpoint_from_pc): Likewise. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * arch-utils.h (GDBARCH_BREAKPOINT_MANIPULATION): New macro. |
| (SET_GDBARCH_BREAKPOINT_MANIPULATION): New macro. |
| aarch64-tdep.c (aarch64_breakpoint_from_pc): Remove. Use |
| GDBARCH_BREAKPOINT_MANIPULATION. |
| (aarch64_gdbarch_init): Replace set_gdbarch_breakpoint_from_pc |
| with SET_GDBARCH_BREAKPOINT_MANIPULATION. |
| * alpha-tdep.c: Likewise. |
| * avr-tdep.c: Likewise. |
| * frv-tdep.c: Likewise. |
| * ft32-tdep.c: Likewise. |
| * h8300-tdep.c: Likewise. |
| * hppa-tdep.c: Likewise. |
| * i386-tdep.c: Likewise. |
| * lm32-tdep.c: Likewise. |
| * m32c-tdep.c: Likewise. |
| * m68hc11-tdep.c: Likewise. |
| * m68k-tdep.c: Likewise. |
| * m88k-tdep.c: Likewise. |
| * mep-tdep.c: Likewise. |
| * microblaze-tdep.c: Likewise. |
| * mn10300-tdep.c: Likewise. |
| * moxie-tdep.c: Likewise. |
| * msp430-tdep.c: Likewise. |
| * rl78-tdep.c: Likewise. |
| * rx-tdep.c: Likewise. |
| * s390-linux-tdep.c: Likewise. |
| * sparc-tdep.c: Likewise. |
| * spu-tdep.c: Likewise. |
| * tilegx-tdep.c: Likewise. |
| * vax-tdep.c: Likewise. |
| * xstormy16-tdep.c: Likewise. |
| |
| 2016-11-03 Yao Qi <yao.qi@linaro.org> |
| |
| * mem-break.c (default_memory_insert_breakpoint): Don't check |
| 'bp' against NULL. |
| * microblaze-linux-tdep.c (microblaze_linux_memory_remove_breakpoint): |
| Likewise. |
| * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Likewise. |
| |
| 2016-11-02 Tom Tromey <tom@tromey.com> |
| |
| * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type): Rename |
| from impl_get_base_type. Rewrite. |
| (struct dwarf_expr_baton): Remove. |
| (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value): Save and |
| restore more fields. |
| (symbol_needs_eval_context::get_frame_pc): New method. |
| * dwarf2expr.h (dwarf_expr_context::get_base_type): Now public, |
| virtual. |
| (dwarf_expr_context::impl_get_base_type): Remove. |
| * dwarf2expr.c (dwarf_expr_context::get_base_type): Remove. |
| |
| 2016-10-31 Maciej W. Rozycki <macro@imgtec.com> |
| |
| * configure.ac <mips-sgi-irix5*>: Remove <sys/proc.h> _KMEMUSER |
| workaround. |
| * configure: Regenerate. |
| * config.in: Regenerate. |
| |
| 2016-10-31 Maciej W. Rozycki <macro@imgtec.com> |
| |
| * mips-tdep.c (mips_r3041_reg_names): Remove. |
| (mips_breakpoint_from_pc): Remove IDT and PMON breakpoint |
| encodings. |
| |
| 2016-10-31 Maciej W. Rozycki <macro@imgtec.com> |
| |
| * defs.h (gdb_osabi): Remove GDB_OSABI_IRIX enum value. |
| * osabi.c (gdb_osabi_names): Remove "Irix" entry. |
| * mips-tdep.c (mips_irix_reg_names): Remove. |
| (mips_register_type): Remove GDB_OSABI_IRIX code. |
| (mips_pseudo_register_type): Likewise. |
| (mips_breakpoint_from_pc): Likewise. |
| (mips_gdbarch_init): Likewise. |
| |
| 2016-10-29 Pedro Alves <palves@redhat.com> |
| |
| * NEWS: Clarify C++ requirement. |
| |
| 2016-10-29 Pedro Alves <palves@redhat.com> |
| |
| * NEWS: Adjust to mention C++11 requirement. |
| |
| 2016-10-29 Eli Zaretskii <eliz@gnu.org> |
| |
| * NEWS: Mention support for redirection on MS-Windows. |
| |
| * windows-nat.c (redir_open, redir_set_redirection) |
| (redirect_inferior_handles) [!__CYGWIN__]: New functions. |
| (windows_create_inferior) [!__CYGWIN__]: Use |
| 'redirect_inferior_handles' to redirect standard handles of the |
| debuggee if the command line requests that. |
| |
| 2016-10-28 Pedro Alves <palves@redhat.com> |
| |
| * Makefile.in (CXX_DIALECT): Get from configure. |
| (COMPILE.pre, CC_LD): Append $(CXX_DIALECT). |
| (FLAGS_TO_PASS): Pass CXX_DIALECT. |
| * acinclude.m4: Include ax_cxx_compile_stdcxx.m4. |
| * ax_cxx_compile_stdcxx.m4: Add FSF copyright header. Set and |
| AC_SUBST CXX_DIALECT instead of changing CXX/CXXCPP. |
| * configure.ac: Call AX_CXX_COMPILE_STDCXX. |
| * config.in: Regenerate. |
| * configure: Regenerate. |
| |
| 2016-10-28 Pedro Alves <palves@redhat.com> |
| |
| * ax_cxx_compile_stdcxx.m4: New file. |
| |
| 2016-10-28 Pedro Alves <palves@redhat.com> |
| |
| * maint.c (scoped_command_stats::scoped_command_stats): Clear |
| m_space_enabled, m_time_enabled and m_symtab_enabled. |
| |
| 2016-10-28 Markus Metzger <markus.t.metzger@intel.com> |
| |
| * btrace.c (bfun_s): New typedef. |
| (ftrace_update_caller): Print caller in debug dump. |
| (ftrace_get_caller, ftrace_match_backtrace, ftrace_fixup_level) |
| (ftrace_compute_global_level_offset, ftrace_connect_bfun) |
| (ftrace_connect_backtrace, ftrace_bridge_gap, btrace_bridge_gaps): New. |
| (btrace_compute_ftrace_bts): Pass vector of gaps. Collect gaps. |
| (btrace_compute_ftrace_pt): Likewise. |
| (btrace_compute_ftrace): Split into this, ... |
| (btrace_compute_ftrace_1): ... this, and ... |
| (btrace_finalize_ftrace): ... this. Call btrace_bridge_gaps. |
| |
| 2016-10-28 Markus Metzger <markus.t.metzger@intel.com> |
| |
| * btrace.c (ftrace_new_return): Start from the previous function's |
| level if we can't find a matching call for a return. |
| |
| 2016-10-28 Markus Metzger <markus.t.metzger@intel.com> |
| |
| * btrace.c (ftrace_update_function): Update tail call heuristic. |
| |
| 2016-10-28 Markus Metzger <markus.t.metzger@intel.com> |
| |
| * btrace.c (btrace_compute_ftrace_bts, ftrace_add_pt): Allow |
| leading gaps. |
| * record-btrace.c (record_btrace_single_step_forward) |
| (record_btrace_single_step_backward): Jump back to last |
| instruction if step ends at a gap. |
| (record_btrace_goto_begin): Skip gaps. |
| |
| 2016-10-28 Markus Metzger <markus.t.metzger@intel.com> |
| |
| * btrace.c (ftrace_add_pt): Fix gap indication. Add warning for non- |
| contiguous trace and overflow. Rephrase trace decode warning and print |
| instruction number. Remove dead gaps warning. |
| (btrace_compute_ftrace_bts): Rephrase warnings and print instruction |
| number. |
| |
| 2016-10-25 Sandra Loosemore <sandra@codesourcery.com> |
| Luis Machado <lgustavo@codesourcery.com> |
| Pedro Alves <palves@redhat.com> |
| |
| PR gdb/20569 |
| * exceptions.c (exception_print_same): Moved here from exec.c. |
| * exceptions.h (exception_print_same): Declare. |
| * exec.h: Include "symfile-add-flags.h". |
| (try_open_exec_file): New declaration. |
| * exec.c (exception_print_same): Moved to exceptions.c. |
| (try_open_exec_file): New function. |
| (exec_file_locate_attach): Rename exec_file and full_exec_path |
| variables to avoid confusion between target and host pathnames. |
| Move pathname processing logic to exec_file_find. Do not return |
| early if pathname lookup fails; Call try_open_exec_file. |
| * infrun.c (follow_exec): Split and rename execd_pathname variable |
| to avoid confusion between target and host pathnames. Warn if |
| pathname lookup fails. Pass target pathname to |
| target_follow_exec, not hostpathname. Call try_open_exec_file. |
| * main.c (symbol_file_add_main_adapter): New function. |
| (captured_main_1): Use it. |
| * solib-svr4.c (open_symbol_file_object): Adjust to pass |
| symfile_add_flags to symbol_file_add_main. |
| * solib.c (exec_file_find): Incorporate fallback logic for relative |
| pathnames formerly in exec_file_locate_attach. |
| * symfile.c (symbol_file_add_main, symbol_file_add_main_1): |
| Replace 'from_tty' parameter with a symfile_add_file. |
| (symbol_file_command): Adjust to pass symfile_add_flags to |
| symbol_file_add_main. |
| * symfile.h (symbol_file_add_main): Replace 'from_tty' parameter |
| with a symfile_add_file. |
| |
| 2016-10-26 Pedro Alves <palves@redhat.com> |
| |
| * coffread.c (coff_symfile_read): Use symfile_add_flags. |
| * dbxread.c (dbx_symfile_read): Ditto. |
| * elfread.c (elf_symfile_read): Ditto. |
| * inferior.h: Include symfile-add-flags.h. |
| (struct inferior) <symfile_flags>: Now symfile_add_flags. |
| * machoread.c (macho_add_oso_symfile, macho_symfile_read_all_oso) |
| (macho_symfile_read, mipscoff_symfile_read): Use |
| symfile_add_flags. |
| * objfile-flags.h: New file. |
| * objfiles.c (allocate_objfile): Use objfile_flags. |
| * objfiles.h: Include objfile-flags.h. |
| (struct objfile) <flags>: Now an objfile_flags. |
| (OBJF_REORDERED, OBJF_SHARED, OBJF_READNOW, OBJF_USERLOADED) |
| (OBJF_PSYMTABS_READ, OBJF_MAINLINE, OBJF_NOT_FILENAME): Delete. |
| Converted to an enum-flags in objfile-flags.h. |
| (allocate_objfile): Use objfile_flags. |
| * python/py-objfile.c (objfpy_add_separate_debug_file): Remove |
| unnecessary local. |
| * solib.c (solib_read_symbols, solib_add) |
| (reload_shared_libraries_1): Use symfile_add_flags. |
| * solib.h: Include "symfile-add-flags.h". |
| (solib_read_symbols): Use symfile_add_flags. |
| * symfile-add-flags.h: New file. |
| * symfile-debug.c (debug_sym_read): Use symfile_add_flags. |
| * symfile-mem.c (symbol_file_add_from_memory): Use |
| symfile_add_flags. |
| * symfile.c (read_symbols, syms_from_objfile_1) |
| (syms_from_objfile, finish_new_objfile): Use symfile_add_flags. |
| (symbol_file_add_with_addrs): Use symfile_add_flags and |
| objfile_flags. |
| (symbol_file_add_separate): Use symfile_add_flags. |
| (symbol_file_add_from_bfd, symbol_file_add): Use symfile_add_flags |
| and objfile_flags. |
| (symbol_file_add_main_1): : Use objfile_flags. Fix add_flags vs |
| flags confusion. |
| (symbol_file_command): Use objfile_flags. |
| (add_symbol_file_command): Use symfile_add_flags and |
| objfile_flags. |
| (clear_symtab_users): Use symfile_add_flags. |
| * symfile.h: Include "symfile-add-flags.h" and "objfile-flags.h". |
| (struct sym_fns) <sym_read>: Use symfile_add_flags. |
| (clear_symtab_users): Use symfile_add_flags. |
| (enum symfile_add_flags): Delete, moved to symfile-add-flags.h and |
| converted to enum-flags. |
| (symbol_file_add, symbol_file_add_from_bfd) |
| (symbol_file_add_separate): Use symfile_add_flags. |
| * xcoffread.c (xcoff_initial_scan): Use symfile_add_flags. |
| |
| 2016-10-26 Pedro Alves <palves@redhat.com> |
| |
| * inferior.h (ALL_NON_EXITED_INFERIORS): New macro. |
| * infrun.c (do_target_resume): Call target_commit_resume. |
| (proceed): Defer target_commit_resume while looping over threads, |
| resuming them. Call target_commit_resume at the end. |
| * record-btrace.c (record_btrace_commit_resume): New function. |
| (init_record_btrace_ops): Install it as to_commit_resume method. |
| * record-full.c (record_full_commit_resume): New function. |
| (record_full_wait_1): Call the beneath target's to_commit_resume |
| method. |
| (init_record_full_ops): Install record_full_commit_resume as |
| to_commit_resume method. |
| * remote.c (struct private_thread_info) <last_resume_step, |
| last_resume_sig, vcont_resumed>: New fields. |
| (remote_add_thread): Set the new thread's vcont_resumed flag. |
| (demand_private_info): Delete. |
| (get_private_info_thread, get_private_info_ptid): New functions. |
| (remote_update_thread_list): Adjust. |
| (process_initial_stop_replies): Clear the thread's vcont_resumed |
| flag. |
| (remote_resume): If connected in non-stop mode, record the resume |
| request and return early. |
| (struct private_inferior): New. |
| (struct vcont_builder): New. |
| (vcont_builder_restart, vcont_builder_flush) |
| (vcont_builder_push_action): New functions. |
| (MAX_ACTION_SIZE): New macro. |
| (remote_commit_resume): New function. |
| (thread_pending_fork_status, is_pending_fork_parent_thread): New |
| functions. |
| (check_pending_event_prevents_wildcard_vcont_callback) |
| (check_pending_events_prevent_wildcard_vcont): New functions. |
| (process_stop_reply): Adjust. Clear the thread's vcont_resumed |
| flag. |
| (init_remote_ops): Install remote_commit_resume. |
| * target-delegates.c: Regenerate. |
| * target.c (defer_target_commit_resume): New global. |
| (target_commit_resume, make_cleanup_defer_target_commit_resume): |
| New functions. |
| * target.h (struct target_ops) <to_commit_resume>: New field. |
| (target_resume): Update comments. |
| (target_commit_resume): New declaration. |
| |
| 2016-10-26 Pedro Alves <palves@redhat.com> |
| |
| * inferior.c (exit_inferior_1): Free 'priv'. |
| |
| 2016-10-26 Pedro Alves <palves@redhat.com> |
| |
| * remote.c (remote_resume_with_hc): New function, factored out |
| from ... |
| (remote_resume): ... this. Always try vCont first. |
| (remote_vcont_resume): Rename to ... |
| (remote_resume_with_vcont): ... this. Bail out if execution |
| direction is reverse. |
| |
| 2016-10-25 Pedro Alves <palves@redhat.com> |
| |
| * dwarf2expr.h (struct dwarf_expr_context) <~dwarf_expr_context>: |
| Make virtual. |
| |
| 2016-10-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> |
| |
| PR build/20712 |
| * defs.h: Remove obsolete comment |
| (atof): Remove. |
| * procfs.c (do_destroy_procinfo_cleanup): Add cast. |
| (sysset_t_alloc): Likewise. |
| (proc_set_traced_sysentry): Likewise. |
| (proc_set_traced_sysexit): Likewise. |
| [!PIOCLSTATUS && NEW_PROC_API] (do_closedir_cleanup): Likewise. |
| (proc_get_LDT_entry): Initiate cleanups before returns. |
| (procfs_wait): Use GDB_SIGNAL_0. |
| (procfs_corefile_thread_callback): Add cast. |
| * sol-thread.c (td_log_ftype, td_ta_new_ftype, td_ta_delete_ftype) |
| (td_init_ftype, td_ta_get_ph_ftype, td_ta_get_nthreads_ftype) |
| (td_ta_tsd_iter_ftype, td_ta_thr_iter_ftype) |
| (td_thr_validate_ftype, td_thr_tsd_ftype, td_thr_get_info_ftype) |
| (td_thr_getfpregs_ftype, td_thr_getxregsize_ftype) |
| (td_thr_getxregs_ftype, td_thr_sigsetmask_ftype) |
| (td_thr_setprio_ftype, td_thr_setsigpending_ftype) |
| (td_thr_setfpregs_ftype, td_thr_setxregs_ftype) |
| (td_ta_map_id2thr_ftype, td_ta_map_lwp2thr_ftype) |
| (td_thr_getgregs_ftype, td_thr_setgregs_ftype): New typedefs. |
| (p_td_log, p_td_ta_new, p_td_ta_delete, p_td_init, p_td_ta_get_ph) |
| (p_td_ta_get_nthreads, p_td_ta_tsd_iter, p_td_ta_thr_iter) |
| (p_td_thr_validate, p_td_thr_tsd, p_td_thr_get_info) |
| (p_td_thr_getfpregs, p_td_thr_getxregsize, p_td_thr_getxregs) |
| (p_td_thr_sigsetmask, p_td_thr_setprio, p_td_thr_setsigpending) |
| (p_td_thr_setfpregs, p_td_thr_setxregs, p_td_ta_map_id2thr) |
| (p_td_ta_map_lwp2thr, p_td_thr_getgregs, p_td_thr_setgregs): Use them. |
| (ps_pdread): Add cast. |
| (ps_ptread): Likewise. |
| (resolve): Likewise. |
| * top.c (gdb_safe_append_history): Print pid_t as long. |
| |
| 2016-10-25 Pedro Alves <palves@redhat.com> |
| |
| * common/common-defs.h (__STDC_FORMAT_MACROS): Define. |
| |
| 2016-10-25 Pedro Alves <palves@redhat.com> |
| |
| * common/new-op.c: Add comment about -fsanitize=address. |
| |
| 2016-10-25 Pedro Alves <palves@redhat.com> |
| |
| * common/common-defs.h (__STDC_CONSTANT_MACROS) |
| (__STDC_LIMIT_MACROS): Define. |
| |
| 2016-10-25 Yao Qi <yao.qi@linaro.org> |
| |
| PR gdb/20716 |
| * common/new-op.c (__has_feature): New macro. |
| Don't override operator new if asan is used. |
| |
| 2016-10-24 Luis Machado <lgustavo@codesourcery.com> |
| |
| * exec.c (exec_file_locate_attach): Prevent NULL pointer dereference |
| when duplicating a string. |
| |
| 2016-10-24 Luis Machado <lgustavo@codesourcery.com> |
| |
| * exec.c (exception_print_same): Fix string comparison to use |
| statically-allocated ones. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * dwarf2expr.h (class dwarf_expr_context) |
| <get_frame_base, get_frame_cfa, get_tls_address, dwarf_call, |
| push_dwarf_block_entry_value, get_addr_index, get_object_address>: |
| Now pure virtual. |
| * dwarf2-frame.c (class dwarf_expr_executor) |
| <get_frame_base, get_frame_cfa, get_tls_address, dwarf_call, |
| push_dwarf_block_entry_value, get_addr_index, get_object_address>: |
| New methods. |
| <invalid>: New method. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * minsyms.h (minimal_symbol_reader::record_full): "copy_name" now |
| a bool. |
| (record, record_with_info): Update. |
| * minsyms.c (record): Fix indentation. |
| (record_full): Fix indentation. Update for type change. |
| * elfread.c (record_minimal_symbol): "copy_name" now a bool. |
| (elf_symtab_read): "copy_names" now a bool. |
| (elf_rel_plt_read, elf_read_minimal_symbols): Update. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * main.c: Include <vector>. |
| (cmdarg_s): Remove typedef. Don't define VEC. |
| (captured_main_1): Use vector, not VEC. Remove cleanups. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * dwarf2loc.c (struct dwarf_expr_context_funcs): Don't declare. |
| (dwarf_expr_read_addr_from_reg, dwarf_expr_get_reg_value) |
| (dwarf_expr_read_mem, dwarf_expr_frame_base): Rename; turn into |
| methods. |
| (get_frame_pc_for_per_cu_dwarf_call): New function. |
| (dwarf_expr_frame_cfa, dwarf_expr_frame_pc) |
| (dwarf_expr_tls_address): Rename; turn into methods. |
| (per_cu_dwarf_call): Remove arguments. Use |
| get_frame_pc_for_per_cu_dwarf_call. |
| (dwarf_evaluate_loc_desc): New class. |
| (dwarf_expr_dwarf_call, dwarf_expr_context) |
| (dwarf_expr_push_dwarf_reg_entry_value) |
| (dwarf_expr_get_addr_index, dwarf_expr_get_obj_addr): Rename; turn |
| into methods. |
| (dwarf_expr_ctx_funcs): Remove. |
| (dwarf2_evaluate_loc_desc_full): Update. |
| (dwarf2_locexpr_baton_eval): Update. |
| (symbol_needs_eval_context): New class. |
| (symbol_needs_read_addr_from_reg, symbol_needs_get_reg_value) |
| (symbol_needs_read_mem, symbol_needs_frame_base) |
| (symbol_needs_frame_cfa, symbol_needs_tls_address) |
| (symbol_needs_dwarf_call, needs_dwarf_reg_entry_value): Rename; |
| turn into methods. |
| (needs_get_addr_index, needs_get_obj_addr): Remove; turn into |
| methods. |
| (symbol_needs_ctx_funcs): Remove. |
| (dwarf2_loc_desc_get_symbol_read_needs): Update. |
| * dwarf2expr.h (struct dwarf_expr_context_funcs): Remove; turn |
| contents into methods. |
| (struct dwarf_expr_context) <baton, funcs>: Remove. |
| <read_addr_from_reg, get_reg_value, read_mem, get_frame_base, |
| get_frame_cfa, get_frame_pc, get_tls_address, dwarf_call, |
| impl_get_base_type, push_dwarf_block_entry_value, get_addr_index, |
| get_object_address>: Declare new methods. |
| (ctx_no_get_frame_base, ctx_no_get_frame_cfa) |
| (ctx_no_get_frame_pc, ctx_no_get_tls_address, ctx_no_dwarf_call) |
| (ctx_no_get_base_type, ctx_no_push_dwarf_reg_entry_value) |
| (ctx_no_get_addr_index): Don't declare. |
| * dwarf2expr.c (get_base_type): Use impl_get_base_type. |
| (execute_stack_op): Update. |
| (ctx_no_get_frame_base, ctx_no_get_frame_cfa) |
| (ctx_no_get_frame_pc, ctx_no_get_tls_address, ctx_no_dwarf_call) |
| (ctx_no_get_base_type, ctx_no_push_dwarf_reg_entry_value) |
| (ctx_no_get_addr_index): Remove; now methods on |
| dwarf_expr_context. |
| * dwarf2-frame.c (read_addr_from_reg): Take a frame_info, not a |
| baton. |
| (class dwarf_expr_executor): New class. |
| (get_reg_value, read_mem): Rename, turn into methods. |
| (execute_stack_op): Use dwarf_expr_executor. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * dwarf2loc.c (per_cu_dwarf_call) |
| (dwarf_expr_push_dwarf_reg_entry_value) |
| (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval) |
| (needs_dwarf_reg_entry_value) |
| (dwarf2_loc_desc_get_symbol_read_needs): Update. |
| * dwarf2expr.h (dwarf_expr_context) <push_address, eval, fetch, |
| fetch_address, fetch_in_stack_memory, address_type, grow_stack, |
| push, stack_empty_p, add_piece, get_base_type, execute_stack_op, |
| pop>: New method declarations. |
| (dwarf_expr_push_address, dwarf_expr_eval, dwarf_expr_fetch) |
| (dwarf_expr_fetch_address, dwarf_expr_fetch_in_stack_memory): |
| Don't declare. |
| * dwarf2expr.c (address_type, grow_stack, push, push_address) |
| (pop, fetch, fetch_address, fetch_in_stack_memory) |
| (stack_empty_p, add_piece, eval, get_base_type) |
| (execute_stack_op): Rename. Turn into methods. |
| * dwarf2-frame.c (execute_stack_op): Update. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Stack-allocate |
| dwarf_expr_context. Remove cleanups. |
| (dwarf2_locexpr_baton_eval) |
| (dwarf2_loc_desc_get_symbol_read_needs): Likewise. |
| * dwarf2expr.h (dwarf_expr_context, ~dwarf_expr_context): Add |
| constructors and destructors. |
| (new_dwarf_expr_context, free_dwarf_expr_context) |
| (make_cleanup_free_dwarf_expr_context): Don't declare. |
| * dwarf2-frame.c (execute_stack_op): Stack-allocate |
| dwarf_expr_context. Remove cleanups. |
| (dwarf_expr_context): Rename from new_dwarf_expr_context. Turn |
| into constructor. |
| (free_dwarf_expr_context, free_dwarf_expr_context_cleanup): |
| Remove. |
| (~dwarf_expr_context): Rename from |
| make_cleanup_free_dwarf_expr_context. Turn into destructor. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * dwarf2loc.c: Include <vector>. |
| (read_pieced_value, write_pieced_value) |
| (dwarf2_compile_expr_to_ax): Use std::vector. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * stack.c (print_stack_frame_to_uiout): Use scoped_restore. |
| * ui-out.c (make_cleanup_restore_current_uiout) |
| (restore_current_uiout_cleanup): Remove. |
| * infrun.c (print_stop_event): Use scoped_restore. |
| * ui-out.h (make_cleanup_restore_current_uiout): Don't declare. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * elfread.c (elf_read_minimal_symbols): Use gdb::unique_ptr. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * cli/cli-dump.c (dump_memory_to_file): Use gdb::unique_ptr. |
| (restore_binary_file): Likewise. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * maint.h (scoped_command_stats): New class. |
| (make_command_stats_cleanup): Don't declare. |
| * maint.c (struct cmd_stats): Remove. |
| (~scoped_command_stats): Rename from report_command_stats. Now a |
| destructor. |
| (scoped_command_stats): Rename from make_command_stats_cleanup. |
| Now a constructor. |
| * main.c (captured_main_1): New function. Use |
| scoped_command_stats. |
| (captured_main): Call captured_main_1. |
| * event-top.c (command_handler): Use scoped_command_stats. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * mi/mi-main.c (mi_cmd_data_read_memory): Use gdb::unique_ptr. |
| Remove some cleanups. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * tui/tui-interp.c (tui_on_normal_stop, tui_on_signal_received) |
| (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited) |
| (tui_on_no_history, tui_on_user_selected_context_changed): |
| Update. |
| * top.h (switch_thru_all_uis): New class. |
| (SWITCH_THRU_ALL_UIS): Rewrite. |
| (make_cleanup_restore_current_ui, switch_thru_all_uis_init) |
| (switch_thru_all_uis_cond, switch_thru_all_uis_next): Don't |
| declare. |
| * mi/mi-interp.c (mi_new_thread, mi_thread_exit) |
| (mi_record_changed, mi_inferior_added, mi_inferior_appeared) |
| (mi_inferior_exit, mi_inferior_removed, mi_on_signal_received) |
| (mi_on_end_stepping_range, mi_on_signal_exited, mi_on_exited) |
| (mi_on_no_history, mi_on_normal_stop, mi_traceframe_changed) |
| (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified) |
| (mi_breakpoint_created, mi_breakpoint_deleted) |
| (mi_breakpoint_modified, mi_output_running_pid, mi_on_resume) |
| (mi_solib_loaded, mi_solib_unloaded, mi_command_param_changed) |
| (mi_memory_changed, mi_user_selected_context_changed): Update. |
| * infrun.c (all_uis_check_sync_execution_done) |
| (all_uis_on_sync_execution_starting, normal_stop): Update. |
| * event-top.c (restore_ui_cleanup) |
| (make_cleanup_restore_current_ui, switch_thru_all_uis_init) |
| (switch_thru_all_uis_cond, switch_thru_all_uis_next): Remove. |
| * cli/cli-interp.c (cli_on_normal_stop, cli_on_signal_received) |
| (cli_on_end_stepping_range, cli_on_signal_exited, cli_on_exited) |
| (cli_on_no_history, cli_on_user_selected_context_changed): |
| Update. |
| * breakpoint.c (watchpoint_check): Update. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab): Add |
| "reader" argument. Update. |
| (xcoff_initial_scan): Update. |
| * symfile.h (mdebug_build_psymtabs): Add "reader" argument. |
| * mipsread.c (mipscoff_symfile_read): Update. |
| (read_alphacoff_dynamic_symtab): Add "reader" argument. Update. |
| * minsyms.h (minimal_symbol_reader) <record, record_full>: |
| Declare. |
| <m_msym_bunch, m_msym_bunch_index, m_msym_count>: New members. |
| <record_with_info>: New function, renamed from |
| prim_record_minimal_symbol_and_info. |
| * minsyms.c (msym_bunch, msym_bunch_index, msym_count): Remove |
| globals. |
| (minimal_symbol_reader): Initialize new members. |
| (minimal_symbol_reader::record): Renamed from |
| prim_record_minimal_symbol. |
| (minimal_symbol_reader::record_full): Renamed from |
| prim_record_minimal_symbol_full. |
| (prim_record_minimal_symbol_and_info): Move to minsyms.h; rename. |
| * mdebugread.c (mdebug_build_psymtabs, parse_partial_symbols) |
| (record_minimal_symbol): Add "reader" argument. Update. |
| (elfmdebug_build_psymtabs): Update. |
| * machoread.c (macho_symtab_add_minsym, macho_symtab_read): Add |
| "reader" argument. Update. |
| (macho_symfile_read): Update. |
| * elfread.c (record_minimal_symbol, elf_symtab_read) |
| (elf_rel_plt_read): Add "reader" argument. Update. |
| (elf_read_minimal_symbols): Update. |
| * dbxread.c (record_minimal_symbol, read_dbx_dynamic_symtab) |
| (read_dbx_symtab): Add "reader" argument. Update. |
| (dbx_symfile_read): Update. |
| * coffread.c (record_minimal_symbol, coff_symtab_read): Add |
| "reader" argument. Update. |
| (coff_symfile_read): Update. |
| * coff-pe-read.h (read_pe_exported_syms): Add "reader" argument. |
| * coff-pe-read.c (add_pe_exported_sym, add_pe_forwarded_sym) |
| (read_pe_exported_syms): Add "reader" argument. Update. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * xcoffread.c (xcoff_initial_scan): Update. |
| * mipsread.c (mipscoff_symfile_read): Update. |
| * minsyms.c (minimal_symbol_reader): Add obj argument. |
| Initialize member. |
| (install): Remove objfile argument. Update. |
| * mdebugread.c (elfmdebug_build_psymtabs): Update. |
| * machoread.c (macho_symfile_read): Update. |
| * elfread.c (elf_read_minimal_symbols): Update. |
| * dbxread.c (dbx_symfile_read): Update. |
| * coffread.c (coff_symfile_read): Update. |
| * minsyms.h (minimal_symbol_reader): Add m_objfile member. |
| (constructor): Add objfile argument. |
| (minimal_symbol_reader::install): Remove objfile argument. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * xcoffread.c (xcoff_initial_scan): Use |
| minimal_symbol_reader. |
| * mipsread.c (mipscoff_symfile_read): Use |
| minimal_symbol_reader. |
| * minsyms.h (minimal_symbol_reader): New class. |
| (init_minimal_symbol_collection) |
| (make_cleanup_discard_minimal_symbols, install_minimal_symbols): |
| Don't declare. |
| * minsyms.c (minimal_symbol_reader): Renamed from |
| init_minimal_symbol_collection, turned into constructor. |
| (~minimal_symbol_reader): Renamed from |
| do_discard_minimal_symbols_cleanup, turned into destructor. |
| (make_cleanup_discard_minimal_symbols): Remove. |
| (minimal_symbol_reader::install): Rename form |
| install_minimal_symbols. |
| * mdebugread.c (elfmdebug_build_psymtabs): Use |
| minimal_symbol_reader. |
| * machoread.c (macho_symfile_read): Use |
| minimal_symbol_reader. |
| * elfread.c (elf_read_minimal_symbols): Use |
| minimal_symbol_reader. |
| * dbxread.c (dbx_symfile_read): Use minimal_symbol_reader. |
| * coffread.c (coff_symfile_read): Use |
| minimal_symbol_reader. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * top.c (new_ui_command, wait_sync_command_done) |
| (gdb_readline_wrapper): Use scoped_restore. |
| * infrun.c (fetch_inferior_event): Use scoped_restore. |
| * infcall.c (call_thread_fsm_should_stop): Use scoped_restore. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * utils.c (make_cleanup_restore_ui_file, do_restore_ui_file) |
| (struct restore_ui_file_closure): Remove. |
| * utils.h (make_cleanup_restore_ui_file): Don't declare. |
| * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use |
| scoped_restore. |
| * top.c (execute_command_to_string): Use scoped_restore. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * common/scoped_restore.h: New file. |
| * utils.h: Include scoped_restore.h. |
| * top.c (execute_command_to_string): Use scoped_restore. |
| * python/python.c (python_interactive_command): Use |
| scoped_restore. |
| (python_command, execute_gdb_command): Likewise. |
| * printcmd.c (do_one_display): Use scoped_restore. |
| * mi/mi-main.c (exec_continue): Use scoped_restore. |
| * mi/mi-cmd-var.c (mi_cmd_var_assign): Use scoped_restore. |
| * linux-fork.c (checkpoint_command): Use scoped_restore. |
| * infrun.c (restore_execution_direction): Remove. |
| (fetch_inferior_event): Use scoped_restore. |
| * compile/compile.c (compile_file_command): Use |
| scoped_restore. |
| (compile_code_command, compile_print_command): Likewise. |
| * cli/cli-script.c (execute_user_command): Use |
| scoped_restore. |
| (while_command, if_command, script_from_file): Likewise. |
| * arm-tdep.c (arm_insert_single_step_breakpoint): Use |
| scoped_restore. |
| |
| 2016-10-21 Tom Tromey <tom@tromey.com> |
| |
| * xcoffread.c (read_xcoff_symtab): Make "filestring" const. |
| |
| 2016-10-21 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com> |
| Ulrich Weigand <uweigand@de.ibm.com> |
| |
| * xcoffread.c (read_xcoff_symtab): Make name of current file as |
| pst->filename instead of _start_ in AIX. |
| |
| 2016-10-21 Philipp Rudo <prudo@linux.vnet.ibm.com> |
| |
| * solist.h (struct target_so_ops): Delete special_symbol_handling |
| hook. |
| * solib.c (solib_add, reload_shared_libraries): Adjust. |
| * solib-aix.c (solib_aix_special_symbol_handling): Delete |
| (_initialize_solib_aix): Adjust |
| * solib-darwin.c (darwin_special_symbol_handling): Delete |
| (_initialize_darwin_solib): Adjust |
| * solib-dsbt.c (dsbt_special_symbol_handling): Delete |
| (_initialize_dsbt_solib): Adjust |
| * solib-frv.c (frv_special_symbol_handling): Delete |
| (_initialize_frv_solib): Adjust |
| * solib-svr4.c (svr4_special_symbol_handling): Delete |
| (_initialize_svr4_solib): Adjust |
| * solib-target.c (solib_target_special_symbol_handling): Delete |
| (_initialize_solib_target): Adjust |
| |
| 2016-10-20 Yao Qi <yao.qi@linaro.org> |
| |
| * configure.tgt: Don't configure if target is *-*-vxworks*. |
| |
| 2016-10-19 Pedro Alves <palves@redhat.com> |
| |
| * config.in: Regenerate. |
| |
| 2016-10-18 Pedro Alves <palves@redhat.com> |
| |
| * common/common-defs.h (__STDC_CONSTANT_MACROS) |
| (__STDC_LIMIT_MACROS): Delete. |
| |
| 2016-10-18 Pedro Alves <palves@redhat.com> |
| |
| * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to |
| 2692e23a48e21f6daa029e8af9f1a143b7532f47. |
| * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: |
| Regenerate. |
| * gnulib/import/Makefile: Update. |
| * gnulib/import/alloca: Update. |
| * gnulib/import/basename-lgpl: Update. |
| * gnulib/import/canonicalize-lgpl: Update. |
| * gnulib/import/config: Update. |
| * gnulib/import/dirent: Update. |
| * gnulib/import/dirfd: Update. |
| * gnulib/import/dirname-lgpl: Update. |
| * gnulib/import/dirname.h: Update. |
| * gnulib/import/dosname.h: Update. |
| * gnulib/import/errno: Update. |
| * gnulib/import/extra/snippet/arg-nonnull.h: Update. |
| * gnulib/import/extra/snippet/c++defs.h: Update. |
| * gnulib/import/extra/snippet/warn-on-use.h: Update. |
| * gnulib/import/extra/update-copyright: Update. |
| * gnulib/import/flexmember.h: Update. |
| * gnulib/import/float+.h: Update. |
| * gnulib/import/float: Update. |
| * gnulib/import/float: Update. |
| * gnulib/import/fnmatch: Update. |
| * gnulib/import/fnmatch: Update. |
| * gnulib/import/fnmatch_loop: Update. |
| * gnulib/import/fpucw.h: Update. |
| * gnulib/import/frexp: Update. |
| * gnulib/import/frexpl: Update. |
| * gnulib/import/gettimeofday: Update. |
| * gnulib/import/hard-locale: Update. |
| * gnulib/import/hard-locale.h: Update. |
| * gnulib/import/inttypes: Update. |
| * gnulib/import/isnan: Update. |
| * gnulib/import/isnand-nolibm.h: Update. |
| * gnulib/import/isnand: Update. |
| * gnulib/import/isnanl-nolibm.h: Update. |
| * gnulib/import/isnanl: Update. |
| * gnulib/import/itold: Update. |
| * gnulib/import/limits: Update. |
| * gnulib/import/localcharset: Update. |
| * gnulib/import/localcharset.h: Update. |
| * gnulib/import/lstat: Update. |
| * gnulib/import/m4/00gnulib: Update. |
| * gnulib/import/m4/absolute-header: Update. |
| * gnulib/import/m4/alloca: Update. |
| * gnulib/import/m4/canonicalize: Update. |
| * gnulib/import/m4/codeset: Update. |
| * gnulib/import/m4/configmake: Update. |
| * gnulib/import/m4/dirent_h: Update. |
| * gnulib/import/m4/dirfd: Update. |
| * gnulib/import/m4/dirname: Update. |
| * gnulib/import/m4/double-slash-root: Update. |
| * gnulib/import/m4/eealloc: Update. |
| * gnulib/import/m4/errno_h: Update. |
| * gnulib/import/m4/exponentd: Update. |
| * gnulib/import/m4/exponentl: Update. |
| * gnulib/import/m4/extensions: Update. |
| * gnulib/import/m4/extern-inline: Update. |
| * gnulib/import/m4/fcntl-o: Update. |
| * gnulib/import/m4/flexmember: Update. |
| * gnulib/import/m4/float_h: Update. |
| * gnulib/import/m4/fnmatch: Update. |
| * gnulib/import/m4/fpieee: Update. |
| * gnulib/import/m4/frexp: Update. |
| * gnulib/import/m4/frexpl: Update. |
| * gnulib/import/m4/gettimeofday: Update. |
| * gnulib/import/m4/glibc21: Update. |
| * gnulib/import/m4/gnulib-cache: Update. |
| * gnulib/import/m4/gnulib-common: Update. |
| * gnulib/import/m4/gnulib-comp: Update. |
| * gnulib/import/m4/gnulib-tool: Update. |
| * gnulib/import/m4/hard-locale: Update. |
| * gnulib/import/m4/include_next: Update. |
| * gnulib/import/m4/inttypes-pri: Update. |
| * gnulib/import/m4/inttypes: Update. |
| * gnulib/import/m4/isnand: Update. |
| * gnulib/import/m4/isnanl: Update. |
| * gnulib/import/m4/largefile: Update. |
| * gnulib/import/m4/limits-h: Update. |
| * gnulib/import/m4/localcharset: Update. |
| * gnulib/import/m4/locale-fr: Update. |
| * gnulib/import/m4/locale-ja: Update. |
| * gnulib/import/m4/locale-zh: Update. |
| * gnulib/import/m4/longlong: Update. |
| * gnulib/import/m4/lstat: Update. |
| * gnulib/import/m4/malloc: Update. |
| * gnulib/import/m4/malloca: Update. |
| * gnulib/import/m4/math_h: Update. |
| * gnulib/import/m4/mbrtowc: Update. |
| * gnulib/import/m4/mbsinit: Update. |
| * gnulib/import/m4/mbsrtowcs: Update. |
| * gnulib/import/m4/mbstate_t: Update. |
| * gnulib/import/m4/memchr: Update. |
| * gnulib/import/m4/memmem: Update. |
| * gnulib/import/m4/mmap-anon: Update. |
| * gnulib/import/m4/multiarch: Update. |
| * gnulib/import/m4/nocrash: Update. |
| * gnulib/import/m4/off_t: Update. |
| * gnulib/import/m4/pathmax: Update. |
| * gnulib/import/m4/rawmemchr: Update. |
| * gnulib/import/m4/readlink: Update. |
| * gnulib/import/m4/rename: Update. |
| * gnulib/import/m4/rmdir: Update. |
| * gnulib/import/m4/signal_h: Update. |
| * gnulib/import/m4/ssize_t: Update. |
| * gnulib/import/m4/stat: Update. |
| * gnulib/import/m4/stdbool: Update. |
| * gnulib/import/m4/stddef_h: Update. |
| * gnulib/import/m4/stdint: Update. |
| * gnulib/import/m4/stdio_h: Update. |
| * gnulib/import/m4/stdlib_h: Update. |
| * gnulib/import/m4/strchrnul: Update. |
| * gnulib/import/m4/string_h: Update. |
| * gnulib/import/m4/strstr: Update. |
| * gnulib/import/m4/strtok_r: Update. |
| * gnulib/import/m4/sys_socket_h: Update. |
| * gnulib/import/m4/sys_stat_h: Update. |
| * gnulib/import/m4/sys_time_h: Update. |
| * gnulib/import/m4/sys_types_h: Update. |
| * gnulib/import/m4/time_h: Update. |
| * gnulib/import/m4/unistd_h: Update. |
| * gnulib/import/m4/warn-on-use: Update. |
| * gnulib/import/m4/wchar_h: Update. |
| * gnulib/import/m4/wchar_t: Update. |
| * gnulib/import/m4/wctype_h: Update. |
| * gnulib/import/m4/wint_t: Update. |
| * gnulib/import/malloc: Update. |
| * gnulib/import/malloca: Update. |
| * gnulib/import/malloca.h: Update. |
| * gnulib/import/math: Update. |
| * gnulib/import/math: Update. |
| * gnulib/import/mbrtowc: Update. |
| * gnulib/import/mbsinit: Update. |
| * gnulib/import/mbsrtowcs-impl.h: Update. |
| * gnulib/import/mbsrtowcs-state: Update. |
| * gnulib/import/mbsrtowcs: Update. |
| * gnulib/import/memchr: Update. |
| * gnulib/import/memmem: Update. |
| * gnulib/import/pathmax.h: Update. |
| * gnulib/import/rawmemchr: Update. |
| * gnulib/import/readlink: Update. |
| * gnulib/import/ref-add.sin: Update. |
| * gnulib/import/ref-del.sin: Update. |
| * gnulib/import/rename: Update. |
| * gnulib/import/rmdir: Update. |
| * gnulib/import/same-inode.h: Update. |
| * gnulib/import/signal: Update. |
| * gnulib/import/stat: Update. |
| * gnulib/import/stdbool: Update. |
| * gnulib/import/stddef: Update. |
| * gnulib/import/stdint: Update. |
| * gnulib/import/stdio: Update. |
| * gnulib/import/stdlib: Update. |
| * gnulib/import/str-two-way.h: Update. |
| * gnulib/import/strchrnul: Update. |
| * gnulib/import/streq.h: Update. |
| * gnulib/import/string: Update. |
| * gnulib/import/stripslash: Update. |
| * gnulib/import/strnlen1: Update. |
| * gnulib/import/strnlen1.h: Update. |
| * gnulib/import/strstr: Update. |
| * gnulib/import/strtok_r: Update. |
| * gnulib/import/sys_stat: Update. |
| * gnulib/import/sys_time: Update. |
| * gnulib/import/sys_types: Update. |
| * gnulib/import/time: Update. |
| * gnulib/import/unistd: Update. |
| * gnulib/import/unistd: Update. |
| * gnulib/import/verify.h: Update. |
| * gnulib/import/wchar: Update. |
| * gnulib/import/wctype: Update. |
| * gnulib/import/flexmember.h: New file. |
| * gnulib/import/hard-locale.c: New file. |
| * gnulib/import/hard-locale.h: New file. |
| * gnulib/import/limits.in.h: New file. |
| * gnulib/import/m4/flexmember.m4: New file. |
| * gnulib/import/m4/hard-locale.m4: New file. |
| * gnulib/import/m4/limits-h.m4: New file. |
| |
| 2016-10-18 Pedro Alves <palves@redhat.com> |
| |
| * common/common-defs.h: Include "gdb_unique_ptr.h". |
| * common/gdb_unique_ptr.h: New. |
| |
| 2016-10-18 Maciej W. Rozycki <macro@imgtec.com> |
| |
| * i386-tdep.c (i386_mpx_info_bounds): Make sure the architecture |
| is `bfd_arch_i386' before proceeding. |
| (i386_mpx_set_bounds): Likewise. |
| |
| 2016-10-18 Maciej W. Rozycki <macro@imgtec.com> |
| |
| * tilegx-tdep.c (tilegx_analyze_prologue): Use the `long long' |
| type for `operands'. |
| |
| 2016-10-17 Simon Marchi <simon.marchi@ericsson.com> |
| |
| * mi/mi-main.c (mi_cmd_trace_save): Check if argument is present |
| before using it. |
| |
| 2016-10-17 Pedro Alves <palves@redhat.com> |
| |
| * charset.h (class wchar_iterator) [PHONY_ICONV] <m_desc>: Use |
| 'int' as type. |
| |
| 2016-10-14 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com> |
| Ulrich Weigand <uweigand@de.ibm.com> |
| |
| * solib-aix.c (solib_aix_bfd_open): Call solib_find so that sysroot |
| path is set properly if program has a dependency on .a archive and |
| sysroot is set via set sysroot command. |
| |
| 2016-10-14 Markus Metzger <markus.t.metzger@intel.com> |
| |
| * nat/linux-btrace.c: Remove leftover comment. |
| |
| 2016-10-14 Eli Zaretskii <eliz@gnu.org> |
| |
| * common/common-defs.h [HAVE_STRINGS_H]: Include strings.h if |
| available, to get prototypes of 'strcasecmp' and 'strncasecmp'. |
| |
| 2016-10-13 Pedro Alves <palves@redhat.com> |
| |
| * contrib/ari/gdb_ari.sh (boolean): Suggest bool instead. |
| (false, true): Remove checks. |
| |
| 2016-10-12 Tom Tromey <tom@tromey.com> |
| |
| * machoread.c (macho_symfile_read_all_oso): Use std::string. |
| |
| 2016-10-12 Tom Tromey <tom@tromey.com> |
| |
| * tracepoint.c (trace_dump_command): Remove unnecessary |
| null_cleanup. |
| |
| 2016-10-12 Tom Tromey <tom@tromey.com> |
| |
| * valprint.c (generic_emit_char, count_next_character) |
| (generic_printstr): Update. |
| * charset.c (struct wchar_iterator): Move to charset.h. |
| (wchar_iterator::wchar_iterator): Rename from |
| make_wchar_iterator, turn into a constructor. |
| (wchar_iterator::~wchar_iterator): Rename from |
| do_cleanup_iterator, turn into a destructor. |
| (make_cleanup_wchar_iterator): Remove. |
| (wchar_iterator::iterate): Rename from wchar_iterate. Remove |
| "iter" argument. Update. |
| * charset.h: Include <vector>. |
| (class wchar_iterator): New class, from old struct |
| wchar_iterator. |
| (make_wchar_iterator, make_cleanup_wchar_iterator): Don't |
| declare. |
| |
| 2016-10-12 Tom Tromey <tom@tromey.com> |
| |
| * selftest.c: Include <vector>, not "vec.h". |
| (self_test_function_ptr): Remove. |
| (tests): Now a std::vector. |
| (register_self_test, run_self_tests): Update. |
| |
| 2016-10-13 Pedro Alves <palves@redhat.com> |
| Tom Tromey <tom@tromey.com> |
| |
| * tid-parse.h (tid_range_parser): New class. |
| (enum tid_range_state): Move into tid_range_parser's scope. |
| Remove TID_RANGE_ prefix from all values. |
| (tid_range_parser_get_tid, tid_range_parser_get_tid_range) |
| (tid_range_parser_star_range, tid_range_parser_finished) |
| (tid_range_parser_skip, tid_range_parser_qualified): Don't |
| declare. |
| (tid_is_in_list): Update comment. |
| * tid-parse.c (tid_range_parser::tid_range_parser): New. |
| (init, finished, get_string, skip, tid_is_qualified) |
| (get_tid_or_range, get_tid_range, get_tid, star_range): Rename; |
| turn into methods. |
| (tid_is_in_list): Adjust. |
| * cli/cli-utils.h (number_or_range_parser): New class. |
| (init_number_or_range, get_number_or_range) |
| (number_range_setup_range): Don't declare. |
| * cli/cli-utils.c |
| (number_or_range_parser::number_or_range_parser): New. |
| (init_number_or_range, get_number_or_range) |
| (number_range_setup_range): Rename; turn into methods. |
| (number_is_in_list): Adjust. |
| * breakpoint.c (map_breakpoint_numbers): Adjust. Use bool. |
| (trace_pass_command, get_tracepoint_by_number): Adjust. |
| * breakpoint.h (get_tracepoint_by_number): Adjust. |
| * inferior.c (detach_inferior_command, kill_inferior_command) |
| (remove_inferior_command): Adjust. |
| * linespec.c (decode_line_2): Adjust. |
| * memattr.c (mem_enable_command, mem_disable_command) |
| (mem_delete_command): Adjust. |
| * printcmd.c (map_display_numbers): Adjust. |
| * reverse.c (delete_bookmark_command, bookmarks_info): Adjust. |
| * thread.c (thread_apply_command): Adjust. |
| |
| 2016-10-12 Anton Kolesov <anton.kolesov@synopsys.com> |
| |
| * arc-newlib-tdep.c: New file. |
| * configure.tgt: Add newlib support for ARC. |
| |
| 2016-10-12 Anton Kolesov <anton.kolesov@synopsys.com> |
| |
| * arc-tdep.h (struct gdbarch_tdep) <jb_pc>: New field. |
| * arc-tdep.c (arc_get_longjmp_target): New function. |
| (arc_gdbarch_init): Set get_longjmp_target if jb_pc is non-negative. |
| (arc_dump_tdep): Print jb_pc. |
| |
| 2016-10-12 Anton Kolesov <anton.kolesov@synopsys.com> |
| |
| * arc-tdep.h (struct gdbarch_tdep): New. |
| * arc-tdep.c (arc_gdbarch_init): Allocate gdbarch_tdep. |
| |
| 2016-10-12 Yao Qi <yao.qi@linaro.org> |
| |
| PR tdep/20682 |
| * aarch64-tdep.c: Replace 32 with AARCH64_D_REGISTER_COUNT. |
| (aarch64_analyze_prologue): Extend array 'regs' for D registers. |
| Assert that operand 0 and 1 can be X or D registers. Update |
| register number for D registers. Update registers in frame |
| cache. |
| * aarch64-tdep.h (AARCH64_D_REGISTER_COUNT): New macro. |
| |
| 2016-10-10 Yao Qi <yao.qi@linaro.org> |
| |
| * arch/arm.h (enum arm_breakpoint_kinds): New. |
| * arm-tdep.c (arm_remote_breakpoint_from_pc): Use |
| ARM_BP_KIND_THUMB2. |
| |
| 2016-10-10 Yao Qi <yao.qi@linaro.org> |
| |
| * m32c-tdep.c (m32c_gdbarch_init): Rename local 'arch' by |
| 'gdbarch'. |
| |
| 2016-10-10 Yao Qi <yao.qi@linaro.org> |
| |
| * v850-tdep.c (v850_breakpoint_from_pc): Use the right |
| breakpoint instruction. |
| (v850_dbtrap_breakpoint_from_pc): Remove. |
| (v850_gdbarch_init): Update. |
| |
| 2016-10-08 Simon Marchi <simon.marchi@polymtl.ca> |
| |
| * ui-out.c (push_level): Remove "id" parameter. |
| (ui_out_begin): Update call. |
| |
| 2016-10-07 Joel Brobecker <brobecker@adacore.com> |
| |
| GDB 7.12 released. |
| |
| 2016-10-07 Markus Metzger <markus.t.metzger@intel.com> |
| |
| * python/python.c (gdbpy_decode_line): Call |
| string_to_event_location_basic instead of new_linespec_location. |
| |
| 2016-10-06 Sergio Durigan Junior <sergiodj@redhat.com> |
| |
| * target.c (target_supports_multi_process): New function, moved |
| from... |
| * target.h (target_supports_multi_process): ... here. Remove |
| macro. |
| * target/target.h (target_supports_multi_process): New prototype. |
| |
| 2016-10-06 Pedro Alves <palves@redhat.com> |
| |
| * cp-valprint.c (vtbl_ptr_name): Write "extern const" instead of |
| EXPORTED_CONST. |
| * stub-termcap.c: Remove __cplusplus checks. |