X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2FChangeLog;h=22a473a4037f698c22a76d8a40f98a43641bc7a7;hb=fdbc98707b0ab48fd8ca3ac37acefa120496baf6;hp=8d8a6789ab3809456921fc04df2552dcbbe5a2b1;hpb=81f47ac29f8cdb888f2d81c5daa9bfc4747738aa;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8d8a6789ab..adc56b4989 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,2126 @@ +2019-07-03 Pedro Alves + + * NEWS (New commands): Mention "with" and "maint with". + * cli/cli-cmds.c (with_command_1, with_command_completer_1) + (with_command, with_command_completer): New. + (pipe_command): Adjust to new repeat_previous + interface. + (_initialize_cli_cmds): Install the "with" command and its "w" + alias. + * cli/cli-cmds.h (with_command_1, with_command_completer_1): New + declarations. + * cli/cli-setshow.c (parse_cli_var_uinteger) + (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty + argument strings for all var_types. + (get_setshow_command_value_string): New, factored out from ... + (do_show_command): ... this. + * cli/cli-setshow.h: Include . + (get_setshow_command_value_string): Declare. + * command.h (repeat_previous): Now returns const char *. Adjust + comment. + * maint.c: Include "cli/cli-cmds.h". + (maintenance_with_cmd, maintenance_with_cmd_completer): New. + (_initialize_maint_cmds): Register the "maintenance with" command. + * top.c (repeat_previous): Move bits from pipe_command here: + Return the saved command line, if any; error out if there's no + command to relaunch. + +2019-07-03 Pedro Alves + + * NEWS (New commands): Mention "maint set/show test-settings" + instead of "maint test-settings". + * maint-test-settings.c (maintenance_test_settings_list): Delete. + (maintenance_test_settings_set_list): Rename to ... + (maintenance_set_test_settings_list): ... this. + (maintenance_test_settings_show_list): Rename to ... + (maintenance_show_test_settings_list): ... this. + (maintenance_test_settings_cmd): Delete. + (maintenance_test_settings_set_cmd): ... + (maintenance_set_test_settings_cmd): ... this. + (maintenance_test_settings_show_cmd): ... + (maintenance_show_test_settings_cmd): ... this. + (maintenance_test_settings_show_value_cmd): + (maintenance_show_test_settings_value_cmd): ... this. + (_initialize_maint_test_settings): No longer install the "maint + test-settings" prefix command. Rename "maint test-settings set" + to "maint set test-settings", and "maint test-settings show" to + "maint show test-settings". Adjust all subcommands. + +2019-07-03 Pedro Alves + + * maint-test-settings.c: Fix file's intro comment. Replace all + references to "test-options" with references to "test-settings", + in comments. + +2019-07-03 Pedro Alves + + * maint-test-settings.c (maintenance_test_settings_xxx) + (maintenance_test_settings_yyy, maintenance_test_settings_zzz): + New. + (maintenance_test_settings_enums): Use them. + (maintenance_test_settings_enum): Default to + maintenance_test_settings_xxx. + (_initialize_maint_test_settings): Initialize + MAINTENANCE_TEST_SETTINGS_FILENAME. + +2019-07-02 Simon Marchi + + * breakpoint.h (remove_breakpoints_inf): Change return type to + void, move function documentation here. + * breakpoint.c (remove_breakpoints_inf): Change return type to + void, move function documentation to header. + +2019-07-02 Pedro Alves + + * NEWS (Completion improvements): Mention "info threads". + * thread.c (struct info_threads_opts, info_threads_option_defs) + (make_info_threads_options_def_group): New. + (info_threads_command): Use gdb::option::process_options. + (info_threads_command_completer): New. + (_initialize_thread): Use gdb::option::build_help to build the + help text for "info threads". + +2019-07-02 Simon Marchi + + * defs.h (generic_load): Move from here... + * symfile.h (generic_load): ... to here. Rename name parameter + to args. + * symfile.c (generic_load): Add comment. + +2019-07-01 Tom Tromey + + * dwarf2read.c + (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist + declaration of without_params. Fix formatting. + +2019-07-01 Tom Tromey + + * ada-exp.y (find_primitive_type): Update. + * ada-lang.h (ada_lookup_symbol): Update. + * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this" + parameter. + (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update. + +2019-06-28 Sergio Durigan Junior + + PR breakpoints/24541 + * gdbarch.c: Regenerate. + * gdbarch.h: Regenerate. + * gdbarch.sh: Add 'stap_adjust_register'. + * i386-tdep.c: Include ''. + (i386_stap_adjust_register): New function. + (i386_elf_init_abi): Register 'i386_stap_adjust_register'. + * stap-probe.c (stap_parse_register_operand): Call + 'gdbarch_stap_adjust_register'. + +2019-06-28 Sergio Durigan Junior + + PR python/24742 + https://bugzilla.redhat.com/show_bug.cgi?id=1723564 + * python/python.c (do_start_initialization): Use 'xmalloc' + instead of 'PyMem_Malloc'. + +2019-06-28 Tom Tromey + + * dwarf2read.c (partial_die_info::read): Prefer the linkage name + for Ada. + +2019-06-27 Tom Tromey + + * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to + objfile_key. + (arm_find_mapping_symbol, arm_record_special_symbol) + (_initialize_arm_tdep): Update. + (arm_objfile_data_free): Remove. + +2019-06-27 Tom Tromey + + * cp-valprint.c (cp_print_value_fields): Pass opts, not options, + to cp_print_static_field. + +2019-06-26 Tom Tromey + + * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove. + * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't + declare. + +2019-06-26 Alan Hayward + + * features/aarch64-core.c (create_feature_aarch64_core): + Regenerate. + * features/aarch64-core.xml: Add cpsr flags. + +2019-06-26 Alan Hayward + + * arm-tdep.c (arm_gnu_triplet_regexp): New function. + (arm_gdbarch_init): Add arm_gnu_triplet_regexp. + +2019-06-25 Simon Marchi + + * arm-tdep.c (struct arm_per_objfile) : New + field. + (arm_find_mapping_symbol): Sort mapping symbol vectors on first + use. + (arm_record_special_symbol): Don't insert new symbol in sorted + position, push it at the end. + +2019-06-25 Simon Marchi + + * arm-tdep.c (struct arm_mapping_symbol) (operator <): New. + (arm_mapping_symbol_s): Remove. + (DEF_VEC_O(arm_mapping_symbol_s)): Remove. + (arm_mapping_symbol_vec): New typedef. + (struct arm_per_objfile): Add constructor. + : Change type to + std::unique_ptr. + (arm_compare_mapping_symbols): Remove. + (arm_find_mapping_symbol): Adjust to section_maps type change. + (arm_objfile_data_free): Call delete on arm_per_objfile. + (arm_record_special_symbol): Adjust to section_maps type change. + Allocate arm_per_objfile with new. + +2019-06-25 Philippe Waroquiers + + * cli/cli-cmds.c (alias_command): Compare the alias prefix + with the command prefix. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (tui_delete_win): Remove "return". + * tui/tui-data.c (~tui_gen_win_info): Remove "if". + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (init_and_make_win): Assert on unrecognized + type. + * tui/tui-data.h (struct tui_gen_win_info): Make constructor + protected. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.c + (tui_source_window_base::set_is_exec_point_at): Add check against + LOA_ADDRESS. + +2019-06-25 Tom Tromey + + * tui/tui-source.c (tui_set_source_content): Don't check before + xfree. + * tui/tui-disasm.c (tui_disassemble): Don't check before xfree. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.h (tui_update_source_window_as_is) + (tui_alloc_source_buffer, tui_line_is_displayed) + (tui_addr_is_displayed): Change type of win_info. + * tui/tui-winsource.c (tui_update_source_window_as_is) + (tui_clear_source_content, tui_show_source_line) + (tui_show_source_content, tui_source_window_base::refill) + (tui_source_window_base::set_is_exec_point_at) + (tui_source_window_base::set_is_exec_point_at) + (tui_update_breakpoint_info, tui_set_exec_info_content): Update. + (tui_alloc_source_buffer, tui_line_is_displayed) + (tui_addr_is_displayed): Change type of win_info. Update. + * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights) + (tui_source_window_base::do_make_visible_with_new_height): + Update. + * tui/tui-source.c (tui_set_source_content) + (tui_set_source_content_nil) + (tui_source_window::do_scroll_vertical): Update. + * tui/tui-layout.c (show_layout): Update. + * tui/tui-disasm.c (tui_set_disassem_content) + (tui_disasm_window::do_scroll_vertical): Update. + * tui/tui-data.h (tui_win_content): Remove. + (struct tui_gen_win_info) : Remove. + (struct tui_source_element): Add initializers and destructor. + (union tui_which_element, struct tui_win_element): Remove. + (struct tui_source_window_base) : New field. + (struct tui_data_window): Remove destructor. + (tui_alloc_content, tui_free_win_content) + (tui_free_all_source_wins_content): Don't declare. + * tui/tui-data.c (tui_initialize_static_data): Update. + (init_content_element, tui_alloc_content): Remove. + (~tui_gen_win_info): Update. + (~tui_data_window, tui_free_all_source_wins_content) + (tui_free_win_content, free_content, free_content_elements): + Remove. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.h (tui_clear_source_content) + (tui_erase_source_content, tui_show_source_content): Change type + of win_info. + * tui/tui-winsource.c (tui_clear_source_content) + (tui_erase_source_content, tui_show_source_content): Change type + of win_info. + * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update. + * tui/tui-source.h (tui_set_source_content_nil): Change type of + win_info. + * tui/tui-source.c (tui_set_source_content_nil): Change type of + win_info. + * tui/tui-layout.c (show_source_or_disasm_and_command): Update. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.c (tui_clear_source_content) + (tui_source_window_base::set_is_exec_point_at): Update. + * tui/tui-source.c (tui_set_source_content_nil): Update. + * tui/tui-data.h (struct tui_source_element) : Now + a bool. + * tui/tui-data.c (init_content_element): Update. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update. + * tui/tui-win.c (make_invisible_and_set_new_height): Update. + * tui/tui-layout.c (init_and_make_win): Update. + * tui/tui.h (enum tui_win_type): Update. + * tui/tui-data.h (tui_win_is_auxiliary): Rename from + tui_win_is_auxillary. + * tui/tui-data.c (tui_win_is_auxiliary): Rename from + tui_win_is_auxillary. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update. + * tui/tui-windata.c (tui_data_window::first_data_item_displayed) + (tui_delete_data_content_windows, tui_display_all_data) + (tui_data_window::do_scroll_vertical, tui_display_data_from): + Update. + * tui/tui-win.c (tui_data_window::set_new_height): Simplify. + * tui/tui-regs.c (tui_last_regs_line_no) + (tui_line_from_reg_element_no, tui_first_reg_element_no_inline) + (tui_show_registers): Update. + (tui_show_register_group): Return void. Update. + (tui_display_registers_from, tui_display_reg_element_at_line) + (tui_display_registers_from_line, tui_check_register_values): + Update. + * tui/tui-data.h (union tui_which_element) : Remove + member. + (struct tui_data_window) : Now a std::vector. + : Remove. + (tui_add_content_elements, tui_free_data_content): Don't declare. + * tui/tui-data.c (tui_data_window::clear_detail): Update. + (init_content_element): Remove DATA_WIN case. Add assert. + (tui_add_content_elements): Remove. + (tui_data_window): Update. + (tui_free_data_content): Remove. + (free_content_elements): Remove DATA_WIN case. + +2019-06-25 Tom Tromey + + * tui/tui-data.c (tui_data_item_window): Update. + * tui/tui-windata.h (tui_check_data_values): Don't declare. + * tui/tui-windata.c (tui_display_all_data) + (tui_display_data_from_line): Update. + (tui_check_data_values): Remove. + * tui/tui-regs.c (tui_show_register_group) + (tui_display_reg_element_at_line): Update. + * tui/tui-hooks.c (tui_register_changed) + (tui_refresh_frame_and_register_information): Call + tui_check_register_values. + * tui/tui-data.h (struct tui_data_window) : Remove. + (enum tui_data_type): Remove. + + * tui/tui-data.c (tui_data_window::clear_detail) + (~tui_data_window): Update. + +2019-06-25 Tom Tromey + + * tui/tui-windata.h (tui_first_data_item_displayed): Don't + declare. + * tui/tui-windata.c (tui_data_window::first_data_item_displayed): + Rename from tui_first_data_item_displayed. Update. + (tui_data_window::refresh_all) + (tui_data_window::do_scroll_vertical): Update. + * tui/tui-data.h (struct tui_data_window) + : Declare new method. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (tui_init_generic_part): Don't declare. + * tui/tui-data.c (tui_init_generic_part): Remove, moving + contents... + (tui_initialize_static_data): ...here. + +2019-06-25 Tom Tromey + + * tui/tui-regs.c (tui_show_registers, tui_show_register_group) + (tui_display_registers_from, tui_check_register_values): Update. + (tui_display_register): Remove win_info parameter; update. + (tui_get_register): Change type of parameters. + * tui/tui-data.h (struct tui_data_element): Remove. + (union tui_which_element) : Remove. + : Change type. + (struct tui_data_item_window): New. + * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN + case. Add assert. + (~tui_data_item_window): New destructor. + (free_content_elements): Remove DATA_ITEM_WIN case. + +2019-06-25 Tom Tromey + + * tui/tui.h (enum tui_win_type) : + Remove. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (struct tui_command_element): Remove. + (union tui_which_element) : Remove. + * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add + assert. + (free_content_elements): Remove CMD_WIN case. + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (tui_set_layout): Update. + * tui/tui-data.h (struct tui_layout_def) : Remove. + * tui/tui-data.c (layout_def): Update. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (tui_refresh_all): Update. + * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights) + (tui_source_window_base::set_new_height): Update. + * tui/tui-stack.c (tui_make_status_line): Change parameter type. + Update. + (tui_set_locator_fullname, tui_set_locator_info) + (tui_show_frame_info): Update. + * tui/tui-source.c (tui_set_source_content) + (tui_source_is_displayed): Update. + * tui/tui-layout.c (show_source_disasm_command, show_data) + (show_source_or_disasm_and_command): Update. + * tui/tui-disasm.c (tui_set_disassem_content) + (tui_get_begin_asm_address): Update. + * tui/tui-data.h (struct tui_locator_element): Remove. + (union tui_which_element) : Remove. + (struct tui_locator_window): New. + (tui_locator_win_info_ptr): Change return type. + * tui/tui-data.c (_locator): Change type. + (tui_locator_win_info_ptr): Change return type. + (init_content_element): Remove LOCATOR_WIN case. Add assert. + (tui_alloc_content): Add assert. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.c + (tui_exec_info_window::maybe_allocate_content): New method. + (tui_set_exec_info_content, tui_show_exec_info_content): Update. + * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case. + (make_source_or_disasm_window): Add cast. + * tui/tui-data.h (union tui_which_element) : + Remove. + (struct tui_source_info): New. + (struct tui_source_window_base) : Change type. + * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN + case, and add assert. + (tui_alloc_content): Add assert. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (tui_alloc_win_info): Don't declare. + * tui/tui-layout.c (init_and_make_win): Use "new" directly. + * tui/tui-data.c (tui_alloc_win_info): Remove. + +2019-06-25 Tom Tromey + + * tui/tui-win.c (tui_set_win_focus_to): Don't check window type. + * tui/tui-wingeneral.c (tui_unhighlight_win): Check + can_highlight. + +2019-06-25 Tom Tromey + + * tui/tui-win.c (tui_source_window_base::update_tab_width): Call + make_visible_with_new_height method. + (tui_win_info::make_visible_with_new_height): New method. + (tui_source_window_base::do_make_visible_with_new_height) + (tui_data_window::do_make_visible_with_new_height) + (tui_cmd_window::do_make_visible_with_new_height): New methods. + (make_visible_with_new_height): Remove. + (tui_resize_all, tui_adjust_win_heights): Use + make_visible_with_new_height method. + * tui/tui-data.h (struct tui_win_info) + : + New methods. + (struct tui_source_window_base, struct tui_data_window) + (struct tui_cmd_window) : New + methods. + +2019-06-25 Tom Tromey + + * tui/tui-win.c (tui_source_window_base::update_tab_width): New + method. + (update_tab_width): Call update_tab_width method. + * tui/tui-data.h (struct tui_win_info) + (struct tui_source_window_base) : New methods. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it" + parameter. + * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it" + parameter. + (tui_gen_win_info::make_visible): Update. + * tui/tui-layout.c (init_and_make_win): Change type of "box_it" + parameter. + * tui/tui-data.h (enum tui_box): New enum. + (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines. + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (make_source_or_disasm_window): Always use + init_and_make_win for EXEC_INFO_WIN. + * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No + longer inline. + (struct tui_win_info) <~tui_win_info>: Inline. + (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr): + Don't declare. + * tui/tui-data.c (source_win, disasm_win): Remove globals. + (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr): + Remove. + (tui_initialize_static_data): Update. + (~tui_gen_win_info): Handle more cleanup here. + (~tui_source_window_base): Delete "execution_info". + (~tui_win_info): Move code to ~tui_gen_win_info; remove. + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (make_command_window): Don't set + can_highlight. + (show_source_disasm_command): Call the reset method. + (show_data): Don't set can_highlight. Call the reset method. + (tui_gen_win_info::reset): Rename from init_gen_win_info + (init_and_make_win): Simplify. Return tui_gen_win_info. + (show_source_or_disasm_and_command): Call the reset method. + * tui/tui-data.h (struct tui_gen_win_info) : New method. + (struct tui_cmd_window): Set can_highlight. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename + from make_visible. + (tui_make_visible, tui_make_invisible): Rewrite. + (tui_win_info::make_visible): Remove. + (tui_source_window_base::make_visible): Update. + * tui/tui-data.h (struct tui_gen_win_info) : New + method. Moved from... + (struct tui_win_info) : ...here. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.c + (tui_source_window_base::do_scroll_horizontal): Remove direction + parameter. + * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove + direction parameter. + * tui/tui-win.c (tui_win_info::forward_scroll) + (tui_win_info::backward_scroll, tui_win_info::left_scroll) + (tui_win_info::right_scroll): Update. + * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove + direction parameter. + * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove + direction parameter. + * tui/tui-data.h (enum tui_scroll_direction): Remove. + (struct tui_win_info) : + Remove direction parameter. + (struct tui_source_window_base, struct tui_source_window) + (struct tui_disasm_window, struct tui_data_window) + (struct tui_cmd_window): Update. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.h (tui_set_exec_info_content) + (tui_show_exec_info_content, tui_erase_exec_info_content) + (tui_clear_exec_info_content, tui_update_exec_info): Change + argument to tui_source_window_base. + * tui/tui-winsource.c (tui_set_exec_info_content) + (tui_show_exec_info_content, tui_erase_exec_info_content) + (tui_clear_exec_info_content, tui_update_exec_info): Change + argument to tui_source_window_base. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.h (tui_set_exec_info_content): Return void. + * tui/tui-winsource.c (tui_set_exec_info_content): Return void. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL + check. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.h (tui_alloc_source_buffer): Change return + type to void. + * tui/tui-winsource.c (tui_alloc_source_buffer): Change return + type to void. + * tui/tui-source.c (tui_set_source_content): Update. + * tui/tui-disasm.c (tui_set_disassem_content): Update. + +2019-06-25 Tom Tromey + + * tui/tui-win.c (window_name_completer, tui_set_focus) + (tui_all_windows_info): Use name method. + * tui/tui-data.h (struct tui_gen_win_info) + (struct tui_source_window, struct tui_disasm_window) + (struct tui_data_window, struct tui_cmd_window) : New + method. + (tui_win_name): Don't declare. + * tui/tui-data.c (tui_partial_win_by_name): Use name method. + (tui_win_name): Remove. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.h (tui_update_source_window) + (tui_update_source_window_as_is): Change parameter type. + * tui/tui-winsource.c (tui_update_source_window): Change win_info + to be a tui_source_window_base. + (tui_update_source_window_as_is): Likewise. + * tui/tui-win.c (make_visible_with_new_height): Update. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.c (tui_erase_source_content) + (tui_show_source_content, tui_show_exec_info_content) + (tui_erase_exec_info_content): Use refresh_window method. + * tui/tui-wingeneral.h (tui_refresh_win): Don't declare. + * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename + from tui_refresh_win. + (tui_data_window::refresh_window): New method. + (tui_win_info::refresh, tui_source_window_base::refresh) + (tui_refresh_all): Use refresh_window method. + * tui/tui-stack.c (tui_show_locator_content): Call refresh_window + method. + * tui/tui-regs.c (tui_display_register): Call refresh_window + method. + * tui/tui-layout.c (show_source_disasm_command) + (show_source_or_disasm_and_command): Call refresh_window method. + * tui/tui-data.h (struct tui_gen_win_info) + (struct tui_data_window, struct tui_cmd_window) : + New method. + +2019-06-25 Tom Tromey + + * tui/tui.c (tui_rl_other_window, tui_enable) + (tui_is_window_visible, tui_get_command_dimension): Update. + * tui/tui-winsource.c (tui_update_source_window_as_is) + (tui_clear_source_content, tui_erase_source_content) + (tui_show_source_line, tui_source_window_base::refill) + (tui_source_window_base::do_scroll_horizontal) + (tui_source_window_base::set_is_exec_point_at) + (tui_update_breakpoint_info, tui_set_exec_info_content) + (tui_alloc_source_buffer, tui_line_is_displayed) + (tui_addr_is_displayed): Update. + * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win) + (tui_check_and_display_highlight_if_needed) + (tui_win_info::make_visible, tui_win_info::refresh) + (tui_refresh_all): Update. + * tui/tui-windata.c (tui_first_data_item_displayed) + (tui_delete_data_content_windows, tui_erase_data_content) + (tui_display_all_data, tui_data_window::refresh_all) + (tui_check_data_values): Update. + * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes) + (tui_set_win_focus_to, tui_win_info::forward_scroll) + (tui_win_info::backward_scroll, tui_refresh_all_win) + (tui_resize_all, tui_set_focus, tui_all_windows_info) + (update_tab_width, tui_set_win_height, tui_adjust_win_heights) + (tui_source_window_base::set_new_height) + (tui_data_window::set_new_height) + (make_invisible_and_set_new_height) + (make_visible_with_new_height, new_height_ok) + (parse_scrolling_args): Update. + * tui/tui-stack.c (tui_show_frame_info): Update. + * tui/tui-source.c (tui_set_source_content) + (tui_set_source_content_nil, tui_source_is_displayed) + (tui_source_window::do_scroll_vertical): Update. + * tui/tui-regs.c (tui_show_registers, tui_show_register_group) + (tui_display_registers_from, tui_display_reg_element_at_line) + (tui_check_register_values, tui_reg_command): Update. + * tui/tui-layout.c (tui_default_win_height) + (show_source_disasm_command, show_data, init_and_make_win) + (show_source_or_disasm_and_command): Update. + * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts) + (tui_redisplay_readline, tui_mld_flush) + (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig) + (tui_getc): Update. + * tui/tui-disasm.c (tui_set_disassem_content) + (tui_disasm_window::do_scroll_vertical): Update. + * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: + Now virtual. + (struct tui_win_info): Derive from tui_gen_win_info. + <~tui_win_info>: Mark as override. + : Remove member. + * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win) + (tui_prev_win, tui_partial_win_by_name, tui_win_info) + (~tui_data_window, ~tui_win_info) + (tui_free_all_source_wins_content): Update. + * tui/tui-command.c (tui_refresh_cmd_win): Update. + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (init_and_make_win): Use new. + * tui/tui-data.h (struct tui_gen_win_info): Add constructor, + destructor, initializers. + (tui_alloc_generic_win_info): Don't declare. + * tui/tui-data.c (_locator): Add argument to constructor. + (source_win, disasm_win): New globals. + (exec_info): Remove. + (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr): + Update. + (tui_alloc_generic_win_info): Remove. + (init_content_element): Use new. + (tui_win_info::tui_win_info): Update. + (free_content_elements) : Use delete. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (tui_refresh_win): Update. + * tui/tui-windata.c (tui_first_data_item_displayed) + (tui_delete_data_content_windows): Update. + * tui/tui-win.c (tui_data_window::set_new_height): Update. + * tui/tui-regs.c (tui_show_registers, tui_show_register_group) + (tui_display_registers_from, tui_check_register_values): Update. + * tui/tui-data.h (union tui_which_element) : Now a + pointer. + * tui/tui-data.c (init_content_element): Update. Allocate the new + window. + (tui_free_data_content): Update. + (free_content_elements) : Free the window. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win): + Update. + * tui/tui-layout.c (make_command_window) + (show_source_disasm_command, show_data, init_and_make_win) + (show_source_or_disasm_and_command): Update. + * tui/tui-data.h (struct tui_win_info) : New + method. + : Now bool. + (tui_set_win_highlight): Don't declare. + * tui/tui-data.c (tui_set_win_highlight): Remove. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (make_visible): Remove check of window + type. + +2019-06-25 Tom Tromey + + * tui/tui-win.c (tui_win_info::max_height) + (tui_cmd_window::max_height): New methods. + (new_height_ok): Call max_height. + * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window) + : New method. + +2019-06-25 Tom Tromey + + * tui/tui-win.c (tui_source_window_base::set_new_height) + (tui_data_window::set_new_height): New methods. + (make_invisible_and_set_new_height): Call set_new_height method. + * tui/tui-data.h (struct tui_win_info) + (struct tui_source_window_base, struct tui_data_window) + : New method. + +2019-06-25 Tom Tromey + + * tui/tui.c (tui_rl_other_window): Call the refresh_all method. + * tui/tui-windata.c (tui_data_window::refresh_all): Rename from + tui_refresh_data_win. + * tui/tui-win.c (tui_source_window_base::refresh_all): New + method. + (tui_refresh_all_win): Call the refresh_all method. + (tui_set_focus): Likewise. + * tui/tui-data.h (struct tui_win_info) : New method. + (struct tui_source_window_base, struct tui_data_window) : + Likewise. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.h (tui_refill_source_window) + (tui_set_is_exec_point_at): Don't declare. + * tui/tui-winsource.c (tui_update_source_windows_with_addr) + (tui_source_window_base::refill): Rename from + tui_refill_source_window. + (tui_source_window_base::do_scroll_horizontal): Update. + (tui_source_window_base::set_is_exec_point_at): Rename from + tui_set_is_exec_point_at. + (tui_update_all_breakpoint_info): Update. + * tui/tui-stack.c (tui_show_frame_info): Update. + * tui/tui-layout.c (show_data): Add cast. + * tui/tui-hooks.c (tui_redisplay_source): Call refill method. + * tui/tui-data.h (struct tui_source_window_base) : New methods. + (tui_source_windows, tui_add_to_source_windows): Update types. + (tui_add_to_source_windows): Remove redundant declaration. + * tui/tui-data.c (source_windows): Store tui_source_window_base. + (tui_source_windows): Change return type. + (tui_clear_source_windows_detail): Update. + (tui_add_to_source_windows): Change type of parameter. + (tui_free_all_source_wins_content): Update. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (tui_win_info::refresh) + (tui_source_window_base::refresh): New methods. + (tui_refresh_all): Call the refresh method. + * tui/tui-data.h (struct tui_win_info) + (struct tui_source_window_base) : New method. + +2019-06-25 Tom Tromey + + * tui/tui.h (tui_is_window_visible): Return bool. + * tui/tui.c (tui_is_window_visible): Return bool. + * tui/tui-wingeneral.c (tui_make_window, make_visible) + (tui_make_visible, tui_make_invisible) + (tui_win_info::make_visible) + (tui_source_window_base::make_visible, make_all_visible) + (tui_make_all_visible, tui_make_all_invisible): Update. + * tui/tui-windata.c (tui_delete_data_content_windows): Update. + * tui/tui-data.h (struct tui_gen_win_info) : Now + bool. + (struct tui_win_info, struct tui_source_window_base) + (struct tui_cmd_window) : Change parameter to bool. + * tui/tui-data.c (tui_init_generic_part): Update. + +2019-06-25 Tom Tromey + + * tui/tui-wingeneral.c (tui_win_info::make_visible) + (tui_source_window_base::make_visible): New methods. + (make_all_visible): Make method call. + * tui/tui-data.h (struct tui_win_info) : New method. + (struct tui_source_window_base, struct tui_cmd_window): Override + make_visible. + (tui_win_is_source_type): Don't declare. + * tui/tui-data.c (tui_win_is_source_type): Remove. + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (show_source_or_disasm_and_command): Remove + NULL check. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window): + Inline constructor. Add initializers for members. + * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove + constructors; now inline in class. + +2019-06-25 Tom Tromey + + * tui/tui-regs.c (tui_show_registers): Update. + * tui/tui-data.h (struct tui_data_window) : Now + bool. + * tui/tui-data.c (tui_data_window::clear_detail) + (tui_data_window): Update. + +2019-06-25 Tom Tromey + + * tui/tui-windata.c (tui_display_all_data) + (tui_display_data_from_line, tui_display_data_from) + (tui_check_data_values, tui_data_window::do_scroll_vertical): + Update. + * tui/tui-regs.c (tui_last_regs_line_no) + (tui_line_from_reg_element_no, tui_first_reg_element_no_inline) + (tui_show_registers, tui_show_register_group) + (tui_display_registers_from, tui_display_reg_element_at_line) + (tui_display_registers_from_line, tui_check_register_values) + (tui_reg_next, tui_reg_prev): Update. + * tui/tui-layout.c (tui_set_layout, show_data): Update. + * tui/tui-data.h (struct tui_data_info): Remove. Move contents to + tui_data_window. + (struct tui_win_info) : Remove. Add new fields from + tui_data_info. + (TUI_DATA_WIN): Add cast. + * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window) + (~tui_data_window): Simplify. + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (show_source_disasm_command) + (show_source_or_disasm_and_command): Update. + * tui/tui-io.c (update_cmdwin_start_line) + (tui_redisplay_readline): Update. + * tui/tui-data.h (struct tui_command_info): Remove. + (struct tui_win_info) : Remove command_info member. + (struct tui_data_window) : New member, from + tui_command_info. + (TUI_CMD_WIN): Add casts. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.c (tui_update_source_window) + (tui_refill_source_window) + (tui_source_window_base::do_scroll_horizontal) + (tui_update_breakpoint_info, tui_set_exec_info_content) + (tui_show_exec_info_content, tui_erase_exec_info_content) + (tui_clear_exec_info_content): Update. + * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all): + Update. + * tui/tui-win.c (make_invisible_and_set_new_height) + (make_visible_with_new_height): Update. + * tui/tui-source.c (tui_set_source_content) + (tui_show_symtab_source): Update. + * tui/tui-layout.c (extract_display_start_addr) + (show_source_disasm_command, show_data) + (make_source_or_disasm_window) + (show_source_or_disasm_and_command): Update. + * tui/tui-disasm.c (tui_set_disassem_content): Simplify. + (tui_disasm_window::do_scroll_vertical): Remove shadowing + "gdbarch". + * tui/tui-data.h (struct tui_source_info): Remove. Move contents + to tui_source_window_base. + (struct tui_win_info) : Remove source_info member. + (struct tui_source_window_base) : Inline. + Move contents from tui_source_info; rename has_locator member to + m_has_locator. + (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts. + * tui/tui-data.c (tui_source_window_base::has_locator): Move to + header file. + (tui_source_window_base::clear_detail, ~tui_source_window_base): + Simplify. + (tui_free_all_source_wins_content): Cast to + tui_source_window_base. + +2019-06-25 Tom Tromey + + * tui/tui-win.c (make_invisible_and_set_new_height) + (make_visible_with_new_height): Call has_locator method. + * tui/tui-layout.c (show_source_disasm_command, show_data) + (show_source_or_disasm_and_command): Update for bool change. + * tui/tui-data.h (struct tui_source_info) : Now bool. + (tui_win_info) : New method. + (struct tui_source_window_base) : New method. + (tui_win_has_locator): Don't declare. + * tui/tui-data.c (tui_source_window_base::has_locator): Rename + from tui_win_has_locator. + (tui_source_window_base): Use false, not FALSE. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (tui_clear_win_detail): Don't declare. + * tui/tui-data.c (tui_clear_source_windows_detail): Call the + clear_detail method directly. + (tui_clear_win_detail): Remove. + +2019-06-25 Tom Tromey + + * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use + "this", not TUI_DISASM_WIN. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't + declare. + * tui/tui-winsource.c + (tui_source_window_base::do_scroll_horizontal): Rename from + tui_horizontal_source_scroll. + * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare. + * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename + from tui_vertical_data_scroll. + * tui/tui-win.h (tui_scroll): Don't declare. + * tui/tui-win.c (tui_win_info::forward_scroll) + (tui_win_info::backward_scroll, tui_win_info::left_scroll) + (tui_win_info::right_scroll): Rename and update. + (tui_scroll_forward_command, tui_scroll_backward_command) + (tui_scroll_left_command, tui_scroll_right_command): Update. + (tui_scroll): Remove. + * tui/tui-source.h: Don't declare tui_vertical_source_scroll. + * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename + from tui_vertical_source_scroll. + * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare. + * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename + from tui_vertical_disassem_scroll. + * tui/tui-data.h (struct tui_win_info) : New methods. + : + Likewise. + (struct tui_source_window_base): Add do_scroll_horizontal. + (struct tui_source_window, struct tui_disasm_window): Add + do_scroll_vertical. + (struct tui_data_window, struct tui_cmd_window): Add + do_scroll_horizontal and do_scroll_vertical. + * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (struct tui_source_window_base): New struct. + (struct tui_source_window): Derive from tui_source_window_base. + (struct tui_disasm_window): New struct. + * tui/tui-data.c (tui_source_window_base::clear_detail): Rename + from tui_source_window::clear_detail. + (tui_source_window_base): Rename from tui_source_window. + (~tui_source_window_base): Rename from ~tui_source_window. + (tui_alloc_win_info): Create a tui_disasm_window. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (struct tui_source_window) + (struct tui_data_window): Declare destructors. + * tui/tui-data.c (~tui_source_window, ~tui_data_window): New + destructors. + (tui_win_info): Simplify. + +2019-06-25 Tom Tromey + + * tui/tui-winsource.c (tui_display_main) + (tui_update_source_windows_with_addr) + (tui_update_all_breakpoint_info): Update. + * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights) + (new_height_ok, parse_scrolling_args): Update. + * tui/tui-stack.c (tui_show_frame_info): Update. + * tui/tui-data.h (struct tui_list): Remove. + (tui_source_windows): Return a reference to a std::vector. + * tui/tui-data.c (source_windows): Now a std::vector. + (tui_source_windows): Change return type. + (tui_clear_source_windows): Rewrite. + (tui_clear_source_windows_detail, tui_add_to_source_windows) + (tui_free_all_source_wins_content): Rewrite. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (struct tui_win_info, struct tui_source_window) + (struct tui_data_window, struct tui_cmd_window): Declare + clear_detail method. + * tui/tui-data.c (tui_source_window::clear_detail) + (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New + methods. + (tui_clear_win_detail): Simplify. + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (make_source_window, make_disasm_window) + (make_source_or_disasm_window): Remove win_info_ptr parameter. + Return the new window. + (show_source_disasm_command, show_data) + (show_source_or_disasm_and_command): Update. + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (make_command_window): Remove win_info_ptr + parameter. Return the new window. + (show_source_disasm_command): Update and remove NULL check. + (show_source_or_disasm_and_command): Update. + +2019-06-25 Tom Tromey + + * tui/tui-layout.c (init_and_make_win): Remove NULL check. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (struct tui_win_info): Make constructor + protected. Make destructor virtual. Add initializers. + (tui_source_window, tui_data_window, tui_cmd_window): New + classes. + * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a + constructor. Add "type" parameter. + (tui_source_window, tui_data_window, tui_cmd_window): New + constructors. + (tui_alloc_win_info): Instantiate the appropriate subclass. + +2019-06-25 Tom Tromey + + * tui/tui-win.c (tui_resize_all): Use delete. + * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare + destructor. + (tui_free_window): Don't declare. + * tui/tui-data.c (~tui_win_info): Rename from tui_free_window. + Update. + +2019-06-25 Tom Tromey + + * tui/tui-data.h (struct tui_win_info): Add constructor. + * tui/tui-data.c (tui_alloc_win_info): Use new. + (tui_free_window): Use delete. + +2019-06-22 Tom Tromey + + * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't + declare. + * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove. + +2019-06-22 Tom Tromey + + * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't + declare. + * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove. + +2019-06-22 Tom de Vries + + * dwarf2read.c (create_addrmap_from_aranges) + (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest + instead of '%zu'. + +2019-06-21 Simon Marchi + + * dwarf2read.h (dwarf2_section_info_def): Remove. + (DEF_VEC_O (dwarf2_section_info_def)): Remove. + * dwarf2read.c (struct dwo_sections) : Change type to + std::vector. + (struct dwo_file) <~dwo_file>: Remove. + (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free + types field. + (dwarf2_per_objfile::locate_sections): Adjust to std::vector. + (dwarf2_read_debug_names): Likewise. + (create_debug_types_hash_table): Change parameter type to + array_view, adjust code accordingly. + (dwarf2_locate_dwo_sections): Adjust to std::vector. + (partial_die_info::fixup): Likewise. + (determine_prefix): Likewise. + * dwarf-index-write.c (write_psymtabs_to_index): Adjust. + +2019-06-21 Simon Marchi + + * dwarf2read.c (struct dwo_file) : Change type to + gdb_bfd_ref_ptr. + <~dwo_file>: Remove call to gdb_bfd_unref. + (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call + gdb_bfd_ref_ptr::get. + +2019-06-21 Simon Marchi + + * dwarf2read.h (struct dwarf2_per_objfile) : Change + type to htab_up. + * dwarf2read.c (struct dwo_file): Initialize fields. + <~dwo_file>: New. + (free_dwo_file): Remove, move content to ~dwo_file. + (struct dwo_file_deleter): Remove. + (dwo_file_up>: Remove custom deleter. + (free_dwo_files): Remove. + (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free + dwo_files. + (process_skeletonless_type_units): Call unique_ptr::get. + (allocate_dwo_file_hash_table): Add deleter to created hash + table. Change return type to htab_up. + (lookup_dwo_file_slot): Don't memset dwo_file, call + unique_ptr::get. + (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new. + (create_dwo_unit_in_dwp_v2): Likewise. + (open_and_init_dwo_file): Likewise. + (free_dwo_file_from_slot): Remove. + +2019-06-21 Simon Marchi + + * dwarf2read.h (struct dwarf2_section_info) : Change type to bool. + * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use + true instead of 1. + +2019-06-19 Tom Tromey + + * tui/tui-data.h (tui_init_content_element): Don't declare. + +2019-06-19 Tom Tromey + + * tui/tui-data.h (tui_init_win_info): Don't declare. + +2019-06-19 Tom de Vries + + * dwarf2read.h (abstract_to_concrete): Change type to + std::unordered_map, + gdb::hash_enum>. + +2019-06-19 Tom Tromey + + * ada-lang.c (ada_evaluate_subexp) : Handle + EVAL_AVOID_SIDE_EFFECTS specially. + +2019-06-19 Tom Tromey + + * source-cache.c (highlighter): New global. + (source_cache::get_source_lines): Create a highlighter on demand. + +2019-06-18 Andrew Burgess + + * defs.h (deprecated_interactive_hook): Delete declaration. + * interps.c (clear_interpreter_hooks): Remove use of + deprecated_interactive_hook. + * top.c (deprecated_interactive_hook): Delete definition. + * utils.c (maybe_quit): Remove use of deprecated_interactive_hook. + +2019-06-18 Tom de Vries + + PR gdb/24515 + * dwarf2read.h (abstract_to_concrete): Change type from + std::unordered_map> to + std::unordered_map>. + * dwarf2read.c (read_variable): Update. + (dwarf2_fetch_die_loc_sect_off): Update. + +2019-06-17 Tom de Vries + + PR gdb/24617 + * common/pathstuff.c (child_path): Make sure parent_len > 0 before + accessing parent[parent_len - 1]. + +2019-06-17 Paul Pluzhnikov + + PR gdb/24364 + * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't + call dtrace_process_dof with NULL dof. + +2019-06-16 Tom de Vries + + PR gdb/24445 + * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable. + +2019-06-16 Tom Tromey + + * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win) + (make_all_visible): Use address of member. + +2019-06-16 Tom Tromey + + * tui/tui-data.c (tui_clear_win_detail, init_win_info) + (tui_free_window, free_content, free_content_elements): Remove + unnecessary cast. + * tui/tui-windata.c (tui_display_all_data): Remove unnecessary + cast. + * tui/tui-regs.c (tui_show_register_group) + (tui_display_registers_from, tui_display_reg_element_at_line): + Remove unnecessary cast. + +2019-06-16 Andrew Burgess + + * linux-nat.c (normal_mask): Delete. + (_initialize_linux_nat): Don't initialise normal_mask. + +2019-06-16 Simon Marchi + + PR gdb/24445 + * dwarf-index-write.h (write_psymtabs_to_index): Add + dwz_basename parameter. + * dwarf-index-write.c (write_gdbindex): Move file writing to + write_gdbindex_1. Change return type void. + (assert_file_size): Move up, remove filename parameter. + (write_gdbindex_1): New function. + (write_debug_names): Change return type to void, call + assert_file_size. + (struct index_wip_file): New struct. + (write_psymtabs_to_index): Add dwz_basename parameter. Move + file logic to index_wip_file. Write index for dwz file if + needed. + (save_gdb_index_command): Pass basename of dwz file, if present. + * dwarf-index-cache.c (index_cache::store): Obtain and pass + build-id of dwz file, if present. + * dwarf2read.c (struct dwz_file): Move to dwarf2read.h. + (dwarf2_get_dwz_file): Likewise. + * dwarf2read.h (struct dwz_file): Move from dwarf2read.c. + (dwarf2_get_dwz_file): Likewise. + +2019-06-16 Tom Tromey + + * coffread.c (process_coff_symbol): Use xstrdup. + * value.c (create_internalvar): Use xstrdup. + +2019-06-16 Tom Tromey + + * valops.c (value_cast, value_slice): Remove unnecessary cast. + * breakpoint.c (stopin_command, stopat_command) + (until_break_command, decode_location_default): Remove unnecessary + cast. + * utils.c (subset_compare): Remove unnecessary cast. + * ada-lang.c (ada_update_initial_language): Remove unnecessary + cast. + * linespec.c (decode_line_with_last_displayed): Remove unnecessary + cast. + * infcmd.c (path_command): Remove unnecessary cast. + * coffread.c (decode_type): Remove unnecessary cast. + * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast. + * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast. + * tui/tui-stack.c (tui_show_locator_content) + (tui_show_frame_info): Remove unnecessary cast. + * tui/tui-win.c (tui_scroll_forward_command) + (tui_scroll_backward_command, tui_set_focus, tui_set_win_height) + (parse_scrolling_args): Remove unnecessary cast. + * tui/tui-data.c (init_win_info, tui_del_window) + (tui_free_window, tui_del_data_windows, tui_free_data_content) + (free_content_elements): Remove unnecessary cast. + * tui/tui-windata.c (tui_first_data_item_displayed): Remove + unnecessary cast. + * tui/tui-source.c (tui_set_source_content) + (tui_vertical_source_scroll): Remove unnecessary cast. + * tui/tui-layout.c (tui_default_win_height): Remove unnecessary + cast. + * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast. + * tui/tui-regs.c (tui_display_registers_from) + (tui_display_register): Remove unnecessary cast. + * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win) + (tui_unhighlight_win, tui_highlight_win, tui_make_window) + (make_visible): Remove unnecessary cast. + * tui/tui-winsource.c (tui_erase_source_content) + (tui_update_breakpoint_info, tui_set_exec_info_content): Remove + unnecessary cast. + * ax-gdb.c (agent_command_1): Remove unnecessary cast. + * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast. + * stabsread.c (read_type, read_array_type, read_range_type): + Remove unnecessary cast. + * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast. + (parse_symbol, parse_type, upgrade_type, parse_external) + (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove + unnecessary cast. + * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast. + +2019-06-16 Tom Tromey + + * tui/tui-data.c (tui_alloc_generic_win_info) + (tui_alloc_win_info, tui_add_content_elements): Remove NULL + checks. + +2019-06-16 Bernhard Heckel + Andrew Burgess + + * f-typeprint.c (f_print_type): Don't return early for not + associated or not allocated types. + (f_type_print_varspec_suffix): Add print_rank parameter and print + ranks of array types in case they dangling. + (f_type_print_base): Add print_rank parameter. + +2019-06-15 Andrew Burgess + + * NEWS: Mention new MI commands. + * break-catch-throw.c (enum exception_event_kind): Move to + breakpoint.h. + (print_mention_exception_catchpoint): Output text as a single + message. + (catch_exception_command_1): Rename to... + (catch_exception_event): ...this, make non-static, update header + command, and change some parameter types. + (catch_catch_command): Update for changes to + catch_exception_command_1. + (catch_throw_command): Likewise. + (catch_rethrow_command): Likewise. + * breakpoint.c (enum exception_event_kind): Delete. + * breakpoint.h (enum exception_event_kind): Moved here from + break-catch-throw.c. + (catch_exception_event): Declare. + * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function. + (mi_cmd_catch_throw): New function. + (mi_cmd_catch_rethrow): New function. + (mi_cmd_catch_catch): New function. + * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and + 'catch-catch' entries. + * mi/mi-cmds.h (mi_cmd_catch_throw): Declare. + (mi_cmd_catch_rethrow): Declare. + (mi_cmd_catch_catch): Declare. + +2019-06-15 Andrew Burgess + + * annotate.c (annotate_source_line): Change return type to void, + update implementation to match. + * annotate.h (annotate_source_line): Change return type to void, + update header comment. + * stack.c (print_frame_info): Don't change what frame information + is printed based on whether annotations are on or not. + +2019-06-15 Andrew Burgess + + * annotate.c: Add 'source.h' and 'objfiles.h' includes. + (annotate_source): Make static. + (annotate_source_line): Moved from source.c and renamed from + identify_source_line. Update the return type. + * annotate.h (annotate_source): Delete declaration. + (annotate_source_line): Declaration moved from source.h, and + renamed from identify_source_line. Return type updated. + * source.c (identify_source_line): Moved to annotate.c and renamed + to annotate_source_line. + (info_line_command): Remove check of annotation_level. + * source.h (identify_source_line): Move declaration to annotate.h + and rename to annotate_source_line. + * stack.c: Add 'annotate.h' include. + (print_frame_info): Remove check of annotation_level before + calling annotate_source_line. + +2019-06-15 Andrew Burgess + + * source-cache.c (source_cache::get_plain_source_lines): Use + open_source_file_with_line_charpos instead of just + open_source_file, remove call to find_source_lines. + (source_cache::get_source_lines): Likewise. + * source.c (find_source_lines): Make static. + (get_filename_and_charpos): Renamed into... + (open_source_file_with_line_charpos): ..this along with changes to + return a scoped_fd, and some other minor clean ups. + (identify_source_line): Use open_source_file_with_line_charpos. + (search_command_helper): Use open_source_file_with_line_charpos + instead of just open_source_file, remove call to + find_source_lines. + * source.h (open_source_file_with_line_charpos): Declare new + function. + (find_source_lines): Delete declaration. + +2019-06-15 Andrew Burgess + + * source.c (get_filename_and_charpos): Remove fullname + parameter. + (identify_source_line): Update call to get_filename_and_charpos. + +2019-06-14 Tom Tromey + + PR gdb/24502: + * ui-style.h (skip_ansi_escape): Update comment. + * ui-file.h (class no_terminal_escape_file): New class. + * ui-file.c (no_terminal_escape_file::write) + (no_terminal_escape_file::puts): New methods. + * cli/cli-logging.c (handle_redirections): Use + no_terminal_escape_file. + +2019-06-14 Tom Tromey + + * NEWS: Move convenience variable news above Python news. + +2019-06-14 Tom Tromey + + * gnulib: Move directory to top-level. + * configure.ac: Don't configure gnulib. + * configure: Rebuild. + * common/common-defs.h: Use new path to gnulib. + * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib. + (GNULIB_H): Remove. + (INCGNU): Look in new gnulib location. + (HFILES_NO_SRCDIR): Remove gnulib files. + (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib. + (generated_files): Remove GNULIB_H. + ($(LIBGNU), all-lib): Remove targets. + (distclean): Don't mention GNULIB_BUILDDIR. + ($(GNULIB_BUILDDIR)/Makefile): Remove target. + +2019-06-14 Tom Tromey + + * symfile.c (add_symbol_file_command): Remove obsolete comment. + Warn if symbol file does not provide any symbols. + +2019-06-14 Tom Tromey + + * source.c (find_and_open_source): Respect basenames_may_differ. + +2019-06-14 Andrew Burgess + + * annotate.c (annotate_breakpoints_invalid): Make use of + scoped_restore_terminal_state. + (annotate_frames_invalid): Likewise. + +2019-06-14 Tom Tromey + + * ada-lang.c (ada_evaluate_subexp) : Always + allow assignment to an internalvar. + +2019-06-14 Tom Tromey + + * ada-lex.l: Allow "_" in attribute names. + +2019-06-14 Tom Tromey + + PR gdb/24653: + * regcache.c (registers_changed): Don't call alloca. + * top.c (execute_command): Don't call alloca. + +2019-06-13 Pedro Alves + + * cli/cli-setshow.c (cli/cli-setshow.c): New parameter + 'expression'. When parsing an expression, error out if there's + junk after "unlimited". + (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited) + (do_set_command): Adjust calls to is_unlimited_literal. + +2019-06-13 Pedro Alves + + * compile/compile.c (make_compile_options_def_group): Add braces + around array_view initializer. + * thread.c (make_thread_apply_all_options_def_group) + (make_thread_apply_all_options_def_group): Likewise. + +2019-06-13 Pedro Alves + + * NEWS (New commands): Mention "maint test-options + require-delimiter", "maint test-options unknown-is-error", "maint + test-options unknown-is-operand" and "maint show + test-options-completion-result". + (New command options, command completion): New section. + (Completion improvements): New section. + Mention that you can abbreviate "unlimited". + +2019-06-13 Pedro Alves + + * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete. + * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete. + * unittests/cli-utils-selftests.c (test_parse_flags) + (test_parse_flags_qcs): Delete. + (test_cli_utils): Don't call deleted functions. + +2019-06-13 Pedro Alves + + * thread.c: Include "cli/cli-option.h". + (tp_array_compar_ascending): Global. + (tp_array_compar): Delete function. + (tp_array_compar_ascending, tp_array_compar_descending): New + functions. + (ascending_option_def, qcs_flag_option_def) + (thr_qcs_flags_option_defs) + (make_thread_apply_all_options_def_group) + (make_thread_apply_options_def_group): New. + (thread_apply_all_command): Use gdb::option::process_options. + (thread_apply_command_completer) + (thread_apply_all_command_completer): New. + (thread_apply_command): Use gdb::option::process_options. + (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it + with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help + to generate help text of "thread apply". Adjust "taas"'s help. + * tid-parse.c (tid_range_parser::in_thread_range): New method. + * tid-parse.h (tid_range_parser::in_thread_range): New method. + +2019-06-13 Pedro Alves + + * thread.c (thread_apply_command): Check for invalid TID with + isdigit instead of !isalpha. + +2019-06-13 Pedro Alves + + * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs. + (validate_flags_qcs): New. + * cli/cli-utils.h (struct qcs_flags): Change field types to int. + (validate_flags_qcs): Declare. + * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New. + (make_frame_apply_options_def_group): New. + (frame_apply_command_count): Process options with + gdb::option::process_options. + (frame_apply_completer): New. + (frame_apply_level_completer, frame_apply_all_completer) + (frame_apply_completer): New. + (_initialize_stack): Update help of "frame apply", "frame apply + level", "frame apply all" and "faas" to mention supported options + and install command completers. + * stack.h (frame_apply_all_completer): Declare. + * thread.c: Include "stack.h". + (tfaas_command): Add "--". + (_initialize_thread): Update help "tfaas" to mention supported + options and install command completer. + +2019-06-13 Pedro Alves + + * completer.c (complete_nested_command_line): New. + (gdb_completion_word_break_characters_throw): Add assertion. + * completer.h (complete_nested_command_line): Declare. + +2019-06-13 Pedro Alves + + * stack.c (parse_backtrace_qualifiers): New. + (backtrace_command): Use it. + (backtrace_command_completer): Complete on qualifiers. + +2019-06-13 Pedro Alves + + * frame.c: Include "cli/cli-option.h. + (user_set_backtrace_options): New. + (backtrace_past_main, backtrace_past_entry, backtrace_limit): + Delete. + (get_prev_frame): Adjust. + (boolean_option_def, uinteger_option_def) + (set_backtrace_option_defs): New. + (_initialize_frame): Adjust and use + gdb::option::add_setshow_cmds_for_options to install "set + backtrace past-main" and "set backtrace past-entry". + * frame.h: Include "cli/cli-option.h". + (struct frame_print_options): Forward declare. + (print_frame_arguments_all, print_frame_arguments_scalars) + (print_frame_arguments_none): Declare. + (print_entry_values): Delete declaration. + (struct frame_print_options, user_frame_print_options): New. + (struct set_backtrace_options): New. + (set_backtrace_option_defs, user_set_backtrace_options): Declare. + * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames) + (mi_cmd_stack_list_locals, mi_cmd_stack_list_args) + (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS. + (list_args_or_locals): Add frame_print_options parameter. + (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS. + * python/py-framefilter.c (enumerate_args): Pass down + USER_FRAME_PRINT_OPTIONS. + * stack.c: Include "cli/cli-option.h". + (print_frame_arguments_all, print_frame_arguments_scalars) + (print_frame_arguments_none): Declare. + (print_raw_frame_arguments, print_entry_values): Delete. + (user_frame_print_options): New. + (boolean_option_def, enum_option_def, frame_print_option_defs): + New. + (struct backtrace_cmd_options): New. + (bt_flag_option_def): New. + (backtrace_command_option_defs): New. + (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS. + (print_frame_arg, read_frame_arg, print_frame_args) + (print_frame_info, print_frame): Add frame_print_options parameter + and use it. + (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS. + (backtrace_command_1): Add frame_print_options and + backtrace_cmd_options parameters and use them. + (make_backtrace_options_def_group): New. + (backtrace_command): Process command options with + gdb::option::process_options. + (backtrace_command_completer): New. + (_initialize_stack): Extend "backtrace"'s help to mention + supported options. Install completer for "backtrace". + Install some settings commands with add_setshow_cmds_for_options. + +2019-06-13 Pedro Alves + + * NEWS (Changed commands): Mention set/show print raw-frame-arguments, + and that "set/show print raw frame-arguments" are now deprecated. + + * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the + command. + * command.h (add_setshow_boolean_cmd): Return cmd_list_element *. + * stack.c (_initialize_stack): Install "set/show print + raw-frame-arguments", and deprecate "set/show print raw + frame-arguments". + * valprint.c (_initialize_valprint): Deprecate "set/show print + raw". + +2019-06-13 Pedro Alves + + * compile/compile.c (struct compile_options): New. + (compile_flag_option_def, compile_command_option_defs) + (make_compile_options_def_group): New. + (compile_file_command): Handle options with + gdb::option::process_options. + (compile_file_command_completer): New function. + (compile_code_command): Handle options with + gdb::option::process_options. + (compile_code_command_completer): New function. + (_initialize_compiler): Install completers for "compile code" and + "compile file". Mention available options in "compile code" and + "compile code"'s help. + * completer.c (advance_to_completion_word): New, factored out from + ... + (advance_to_expression_complete_word_point): ... this. + (advance_to_filename_complete_word_point): New. + * completer.h (advance_to_filename_complete_word_point): New + declaration. + +2019-06-13 Pedro Alves + + * compile/compile.c: Include "cli/cli-option.h". + (compile_print_value): Scope data pointer is now a + value_print_options pointer; adjust. + (compile_print_command): Process options. Scope data pointer is + now a value_print_options pointer; adjust. + (_initialize_compile): Update "compile print"'s help to include + supported options. Install a completer for "compile print". + * cp-valprint.c (show_vtblprint, show_objectprint) + (show_static_field_print): Delete. + (_initialize_cp_valprint): Don't install "set print + static-members", "set print vtbl", "set print object" here. + * printcmd.c: Include "cli/cli-option.h" and + "common/gdb_optional.h". + (print_command_parse_format): Rework to fill in a + value_print_options instead of a format_data. + (print_value): Change parameter type from format_data pointer to + value_print_options reference. Adjust. + (print_command_1): Process options. Adjust to pass down a + value_print_options. + (print_command_completer): New. + (_initialize_printcmd): Install print_command_completer as + handle_brkchars completer for the "print" command. Update + "print"'s help to include supported options. + * valprint.c: Include "cli/cli-option.h". + (show_vtblprint, show_objectprint, show_static_field_print): Moved + here from cp-valprint.c. + (boolean_option_def, uinteger_option_def) + (value_print_option_defs, make_value_print_options_def_group): + New. Use gdb::option::add_setshow_cmds_for_options to install + "set print elements", "set print null-stop", "set print repeats", + "set print pretty", "set print union", "set print array", "set + print address", "set print symbol", "set print array-indexes". + * valprint.h: Include and "cli/cli-option.h". + (make_value_print_options_def_group): Declare. + (print_value): Change parameter type from format_data pointer to + value_print_options reference. + (print_command_completer): Declare. + +2019-06-13 Pedro Alves + + * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c. + (COMMON_SFILES): Add maint-test-settings.c. + * cli/cli-decode.c (boolean_enums): New global, factored out from + ... + (add_setshow_boolean_cmd): ... here. + * cli/cli-decode.h (boolean_enums): Declare. + * cli/cli-option.c: New file. + * cli/cli-option.h: New file. + * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New, + factored out from ... + (parse_cli_boolean_value(const char *)): ... this. + (is_unlimited_literal): Change parameter type to pointer to + pointer. Adjust and advance ARG pointer. + (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited) + (parse_cli_var_enum): New, factored out from ... + (do_set_command): ... this. Adjust. + * cli/cli-setshow.h (parse_cli_boolean_value) + (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited) + (parse_cli_var_enum): Declare. + * cli/cli-utils.c: Include "cli/cli-option.h". + (get_ulongest): New. + * cli/cli-utils.h (get_ulongest): Declare. + (check_for_argument): New overloads. + * maint-test-options.c: New file. + +2019-06-13 Pedro Alves + + * cli/cli-utils.c (number_or_range_parser::get_number): Do not + parse a range if "-" is at the end of the string. + +2019-06-13 Pedro Alves + + * cli/cli-setshow.c (parse_auto_binary_operation) + (parse_cli_boolean_value): Don't allow "o". + +2019-06-13 Pedro Alves + + * Makefile.in (COMMON_SFILES): Add maint-test-settings.c. + * NEWS: Mention maint test-settings KIND. + * maint-test-settings.c: New file. + +2019-06-13 Pedro Alves + + * cli/cli-decode.c (add_setshow_cmd_full): Remove "show" + completer. + (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove + "set" completers. + +2019-06-13 Pedro Alves + + * cli/cli-setshow.c (do_set_command) : Detect junk + after item. + +2019-06-13 Pedro Alves + + * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations. + +2019-06-13 Pedro Alves + + * ax-gdb.c (agent_command_1): Remove skip_spaces call. + * breakpoint.c (watch_maybe_just_location): Remove skip_spaces + call. + * cli/cli-cmds.c (apropos_command): Remove skip_spaces call. + * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces + calls. + (check_for_argument): Skip spaces after argument. + +2019-06-13 Pedro Alves + + * thread.c (thread_apply_command): Adjust TID parsing. + * tid-parse.c (tid_range_parser::finished): Ensure parsing end is + detected before end of string. + (tid_is_in_list): Error out if LIST is invalid. + +2019-06-13 Pedro Alves + + * completer.c (complete_line_internal_1): Rewind completion word + point. + (completion_tracker::advance_custom_word_point_by): Change + parameter type to int. + * completer.h (completion_tracker::advance_custom_word_point_by): + Likewise. + +2019-06-13 Pedro Alves + + * completer.c (advance_to_completion_word): Handle delimiters. + +2019-06-11 Bernhard Heckel + + * dwarf2read.c (add_partial_symbol): Skip nameless modules. + +2019-06-11 Tom Tromey + + * common/common-utils.c (xmalloc, xrealloc, xcalloc) + (xmalloc_failed): Move to alloc.c. + * alloc.c: New file. + * Makefile.in (COMMON_SFILES): Add alloc.c. + +2019-06-11 Tom Tromey + + * nat/linux-waitpid.c: Don't include server.h. + (linux_debug): Remove. + (my_waitpid): Update. + +2019-06-11 Tom Tromey + + * infcall.c (_initialize_infcall): Remove trailing newline from + help. + * user-regs.c (_initialize_user_regs): Remove trailing newline + from help. + * typeprint.c (_initialize_typeprint): Remove trailing newline + from help. + * reverse.c (_initialize_reverse): Remove trailing newlines from + help. + * tracepoint.c (_initialize_tracepoint): Remove trailing newlines + from help. + * language.c (add_set_language_command): Remove trailing newline + from help. + * infcmd.c (_initialize_infcmd): Remove trailing newlines from + help. + * disasm.c (_initialize_disasm): Remove trailing newline from + help. + * top.c (init_main): Remove trailing newline from help. + * interps.c (_initialize_interpreter): Remove trailing newline + from help. + * btrace.c (_initialize_btrace): Remove trailing newlines from + help. + * breakpoint.c (_initialize_breakpoint): Remove trailing newline + from help. + * python/python.c (_initialize_python): Remove trailing newline + from help. + * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from + help. + * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines + from help. Reformat some text. + * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline + from help. + * tui/tui-layout.c (_initialize_tui_layout): Remove trailing + newline from help. + +2019-06-11 Tom Tromey + + * darwin-nat.c (darwin_decode_exception_message) + (darwin_decode_message, darwin_nat_target::kill): Fix shadowing. + +2019-06-10 Andrew Burgess + + * valops.c (value_slice): Check for not allocated or not + associated values. + +2019-06-10 Tom de Vries + + PR gdb/24618 + * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make + sure an empty slot (defined by a 32-bit zero pair) is recognized as + invalid. + +2019-06-10 Tom de Vries + + PR gdb/24611 + * linespec.c (linespec_lexer_lex_string): Remove incorrect + "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert. + +2019-06-10 Tom de Vries + + PR symtab/24545 + * symtab.c (struct demangled_name_entry): Add language field. + (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate + static minimal symbol". Set and use language field. + +2019-06-10 Tom Tromey + + * ada-lang.c (_initialize_ada_language): Update help text. + +2019-06-10 Tom Tromey + + * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning + with a newline. + * guile/guile.c (handle_boot_error): Don't end warning with a + newline. + * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end + warning with a newline. + * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a + newline. + (s12z_frame_cache): Likewise. + * dwarf-index-cache.c (index_cache::store): Don't end warning with + a newline. + * solib-svr4.c (disable_probes_interface): Don't end warning with + a newline. + * nat/fork-inferior.c (fork_inferior): Don't end warning with a + newline. + * python/python.c (do_finish_initialization): Don't end warning + with a newline. + +2019-06-10 Tom Tromey + + * python/py-breakpoint.c (gdbpy_breakpoint_created) + (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use + gdbpy_enter. + +2019-06-10 Tom Tromey + + * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile + data. + (elf_new_init): Don't call stabsread_new_init. + * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data. + (elfstab_build_psymtabs): Likewise. Call stabsread_new_init. + * coffread.c (coff_symfile_init): Don't set the dbx objfile data. + +2019-06-10 Tom de Vries + + PR symtab/16264 + PR symtab/24517 + * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram. + +2019-06-06 Руслан Ижбулатов + + * source.c (find_and_open_source): Also rewrite relative file + names. + +2019-04-26 Amos Bird + + * annotate.c (annotate_thread_exited): Add "thread-exited" + annotation. + +2019-06-06 Tom Tromey + + * maint.h (class scoped_command_stats): Use + DISABLE_COPY_AND_ASSIGN. + : New method. + * maint.c (scoped_command_stats, ~scoped_command_stats): Call + print_time. + (scoped_command_stats::print_time): New method. + +2019-06-05 Andrew Burgess + + * riscv-tdep.c (riscv_insn::decode): Gracefully ignore + instructions of lengths 6 or 8 bytes. + +2019-06-04 Pedro Alves + + * common/gdb_unique_ptr.h (make_unique_xstrdup): New. + + * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup. + * breakpoint.c (condition_completer): Likewise. + * cli/cli-dump.c (scan_expression): Likewise. + * common/filestuff.c (mkdir_recursive): Likewise. + * common/gdb_tilde_expand.c (gdb_tilde_expand_up) + * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile) + (gdb_abspath): Likewise. + * compile/compile-cplus-types.c + (compile_cplus_instance::decl_name): Likewise. + * completer.c (complete_explicit_location): + (signal_completer, reg_or_group_completer_1): Likewise. + * cp-support.c (cp_remove_params_if_any): Likewise. + * fbsd-tdep.c (fbsd_core_vnode_path): Likewise. + * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise. + * infcmd.c (strip_bg_char): Likewise. + * linespec.c (copy_token_string): Likewise. + * mi/mi-main.c (output_cores): Likewise. + * psymtab.c (psymtab_search_name): + * symfile.c (test_set_ext_lang_command): Likewise. + * target.c (target_fileio_read_stralloc): Likewise. + * tui/tui-regs.c (tui_reggroup_completer): Likewise. + * value.c (complete_internalvar): Likewise. + +2019-06-04 Christian Biesinger + + Add objfile property to gdb.Type. + * NEWS: Mention Python API addition. + * python/py-type.c (typy_get_objfile): New method. + +2019-06-03 Philippe Waroquiers + + * NEWS: Mention the new set|show style [title|highlight]. + Mention changes to "show style", "help" and "apropos". + +2019-06-03 Philippe Waroquiers + + * cli/cli-decode.h (apropos_cmd): Add verbose argument. + * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command + instead of print_help_for_command. + (print_doc_of_command): New function. + (help_list): Add 'apropos -v word' suggestion. + (print_help_for_command): Style the command name using title style. + * cli/cli-cmds.c (apropos_command): Parse optional -v flag. + (_initialize_cli_cmds): Describe -v in apropos_command help. + +2019-06-03 Philippe Waroquiers + + * cli/cli-style.h (cli_style_option): Add name in constructor, + add m_name class member, add constructor with intensity, + add name class function. + (cli_style_option::add_setshow_commands): Remove name argument. + (highlight_style, title_style): New styles. + * cli/cli-style.c (do_show): New function that shows a style + characteristic styling the style name with itself. + (set_style_name): New function. + (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments. + Update all callers according to the changes in cli/cli-style.h. + * utils.h (fputs_highlighted): New function. + * utils.c (fputs_highlighted): Likewise. + +2019-05-31 Philippe Waroquiers + + * NEWS: Mention new pipe command and new convenience variables. + +2019-05-31 Philippe Waroquiers + + * cli/cli-cmds.c (pipe_command): New function. + (_initialize_cli_cmds): Call add_com for pipe_command. + Define | as an alias for pipe. + (exit_status_set_internal_vars): New function. + (shell_escape): Call exit_status_set_internal_vars. + cli/cli-decode.c (find_command_name_length): Recognize | as + a single character command. + +2019-05-31 Philippe Waroquiers + + * gdbcmd.h (execute_command_to_ui_file): New declaration. + top.c (execute_command_to_ui_file): New function, mostly a copy + of execute_command_to_string. + (execute_command_to_string): Implement by calling + execute_command_to_ui_file. + +2019-05-31 Philippe Waroquiers + + * top.h (saved_command_line): Remove declaration. + * top.c (previous_saved_command_line, previous_repeat_arguments): + New variables. + (saved_command_line): Make static, define together with other + 'repeat variables'. + (dont_repeat): Clear repeat_arguments. + (repeat_previous, get_saved_command_line, save_command_line): + New functions. + (gdb_init): Initialize saved_command_line + and previous_saved_command_line. + * main.c (captured_main_1): Remove saved_command_line initialization. + * event-top.c (handle_line_of_input): Update to use + the new 'repeat' related functions instead of direct access to + saved_command_line. + * command.h (repeat_previous, get_saved_command_line, + save_command_line): New declarations. + (dont_repeat): Add comment. + +2019-05-30 Tom Tromey + + * gdbtypes.h (struct range_bounds) : + Fix comment. + (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment. + +2019-05-30 Jan Vrany + + PR cli/24587 + * completer.c (complete): Initialize variable word. + +2019-05-29 Sergio Durigan Junior + + Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192 + Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008 + * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if + 'body' is NULL to the outter 'if', protecting the '!is_define' + situation as well. + +2019-05-29 Tom Tromey + + * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name. + (dwarf_unknown): New function. + (dwarf_tag_name, dwarf_attr_name, dwarf_form_name) + (dwarf_type_encoding_name): Use dwarf_unknown. + +2019-05-29 Tom Tromey + + PR c++/20020: + * cp-valprint.c (cp_print_value_fields): Call + cp_print_static_field inside "try". + +2019-05-29 Tom Tromey + + * inflow.c (struct terminal_info): Add default operator=. + * configure: Rebuild. + * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy, + -Wdeprecated-copy-dtor, -Wredundant-move. + +2019-05-29 Tom Tromey + + * NEWS: Add entry. + * infcmd.c (print_return_value_1): Handle finish_print + option. + (show_print_finish): New function. + (_initialize_infcmd): Add "set/show print finish" commands. + * valprint.c (user_print_options): Initialize new member. + * valprint.h (struct value_print_options) : New + member. + +2019-05-28 Tom Tromey + + * ada-lang.c (ada_remove_Xbn_suffix) + (find_old_style_renaming_symbol) + (parse_old_style_renaming): Remove. + (ada_find_renaming_symbol): Don't call + find_old_style_renaming_symbol. + (ada_is_renaming_symbol): Rename from + ada_find_renaming_symbol. Remove "block" parameter. Return + bool. Now static. + (ada_read_var_value): Update and simplify. + * ada-exp.y (write_var_or_type): Remove old code. + +2019-05-28 Alan Hayward + + * event-top.c: Remove include comment. + * inflow.c (class scoped_ignore_sigttou): Move from here... + * inflow.h (class scoped_ignore_sigttou): ...to here. + * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain. + * top.c: Remove include comment. + +2019-05-27 Tom Tromey + + * NEWS: Fix typo. + +2019-05-22 Tom Tromey + + * target.c (target_follow_exec): Constify parameter. + * target-delegates.c: Rebuild. + * remote.c (remote_target::follow_exec): Constify parameter. + * infrun.c (follow_exec): Constify parameter. + * target.h (struct target_ops) : Constify parameter. + (target_follow_exec): Likewise. + +2019-05-22 Alan Hayward + + * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat + DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets. + +2019-05-22 Alan Hayward + + * NEWS: Add debugredirect and testsuite sections. + +2019-05-22 Simon Cook + + * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from + target descriptions using exclusively floating point register name + aliases. + +2019-05-21 Andrew Burgess + + PR gdb/18644: + * f-lang.c (build_fortran_types): Handle the case where + gdbarch_floatformat_for_type returns a nullptr. + +2019-05-21 Tom de Vries + + PR cli/24587 + * cli/cli-cmds.c (complete_command): Fix use of unitialized variable. + +2019-05-18 Andrew Burgess + + PR gdb/18644: + * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for + 16-byte floats. + * i386-tdep.c (i386_floatformat_for_type): Use + floatformats_ia64_quad for the 16-byte floating point component + within a fortran 32-byte complex number. + +2019-05-18 Andrew Burgess + + * dwarf2read.c (struct cu_partial_die_info): Add constructor, + delete default constructor. + (find_partial_die): Update to return const struct. + (partial_die_parent_scope): Move variable declaration into scope + of its use and change its type to auto. + (guess_partial_die_structure_name): Likewise. + (partial_die_info::fixup): Likewise. + +2019-05-17 Tom Tromey + + * source.c (find_and_open_source): Remove cast. + +2019-05-17 Tom Tromey + + * annotate.c (annotate_source): Make "filename" const. + * annotate.h (annotate_source): Use const. + 2019-05-17 Alan Hayward * disasm.c (set_disassembler_options): Send errors to stderr. @@ -48,7 +2171,7 @@ 2019-05-17 Jan Vrany - * MAINTAINERS (Write After Approval): Add myself. + * MAINTAINERS (Write After Approval): Add myself. 2019-05-17 Tom de Vries @@ -2945,15 +5068,15 @@ 2019-03-26 Alan Hayward - * ppc-linux-nat.c: Add include. + * ppc-linux-nat.c: Add include. 2019-03-26 Alan Hayward - * NEWS: Mention AArch64 Pointer Authentication. + * NEWS: Mention AArch64 Pointer Authentication. 2019-03-26 Alan Hayward - * arm-linux-nat.c: Add include. + * arm-linux-nat.c: Add include. 2019-03-25 Simon Marchi