X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2FChangeLog;h=7d1843179b5ee61cc261b89e0a26c362e2eda00a;hb=554ac434b02465f1fc925b0ae3393fb841e0d59c;hp=1be7f4b2f6ec77ca32cddf8ec8bfaf928dd6fb03;hpb=8fe0f950f4c0438e684a532add46dc99ee32165c;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1be7f4b2f6..7d1843179b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,240 @@ +2019-10-02 Andrew Burgess + + * btrace.c (btrace_maint_clear): Update to handle change from VEC + to std::vector. + (btrace_maint_decode_pt): Likewise, and move allocation of the + vector outside of the loop. + (btrace_maint_update_packets): Update to handle change from VEC to + std::vector. + (btrace_maint_print_packets): Likewise. + (maint_info_btrace_cmd): Likewise. + * btrace.h: Remove use of DEF_VEC_O. + (typedef btrace_pt_packet_s): Delete. + (struct btrace_maint_info) : Change fromm VEC to + std::vector. + * gdbsupport/btrace-common.h: Remove 'vec.h' include. + +2019-10-02 Andrew Burgess + + * btrace.c (btrace_compute_ftrace_bts): Update for std::vector, + make accesses into the vector constant references. + (btrace_add_pc): Update for std::vector. + (btrace_stitch_bts): Likewise. + (parse_xml_btrace_block): Likewise. + (btrace_maint_update_packets): Likewise. + (btrace_maint_print_packets): Likewise. + (maint_info_btrace_cmd): Likewise. + * gdbsupport/btrace-common.c (btrace_data::fini): Update for + std::vector. + (btrace_data::empty): Likewise. + (btrace_data_append): Likewise. + * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O. + (typedef btrace_block_s): Delete. + (struct btrace_block): Add constructor. + (struct btrace_data_bts) : Change to std::vector. + * nat/linux-btrace.c (perf_event_read_bts): Update for + std::vector. + (linux_read_bts): Likewise. + +2019-10-01 Tom Tromey + + * cli/cli-logging.c (show_logging_filename): Use styled_string. + +2019-10-01 Tom Tromey + + * stack.c (print_frame, info_frame_command_core): Use + styled_string. + * linux-thread-db.c (try_thread_db_load_1) + (try_thread_db_load_from_pdir_1): Use styled_string. + * auto-load.c (file_is_auto_load_safe, execute_script_contents) + (auto_load_section_scripts, info_auto_load_local_gdbinit) + (maybe_print_unsupported_script_warning) + (maybe_print_script_not_found_warning): Use styled_string. + * ada-lang.c (user_select_syms): Use styled_string. + +2019-10-01 Tom Tromey + + * p-lang.c (pascal_printstr): Use metadata style. + * value.c (show_convenience): Use metadata style. + * valprint.c (valprint_check_validity, val_print_optimized_out) + (val_print_not_saved, val_print_unavailable) + (val_print_invalid_address, generic_val_print, val_print) + (value_check_printable, val_print_array_elements): Use metadata + style. + * ui-out.h (class ui_out) : New overload. + : Add style parameter. + * ui-out.c (ui_out::field_fmt): New overload. + * typeprint.c (type_print_unknown_return_type) + (val_print_not_allocated, val_print_not_associated): Use metadata + style. + * tui/tui-out.h (class tui_ui_out) : Add style + parameter. + * tui/tui-out.c (tui_ui_out::do_field_fmt): Update. + * tracepoint.c (tvariables_info_1): Use metadata style. + * stack.c (print_frame_arg, print_frame_info, print_frame) + (info_frame_command_core): Use metadata style. + * skip.c (info_skip_command): Use metadata style. + * rust-lang.c (rust_print_enum): Use metadata style. + * python/py-prettyprint.c (print_stack_unless_memory_error): Use + metadata style. + * python/py-framefilter.c (py_print_single_arg): Use metadata + style. + * printcmd.c (do_one_display, print_variable_and_value): Use + metadata style. + * p-valprint.c (pascal_val_print) + (pascal_object_print_value_fields): Use metadata style. + * p-typeprint.c (pascal_type_print_base): Use metadata style. + * mi/mi-out.h (class mi_ui_out) : Add style + parameter. + * mi/mi-out.c (mi_ui_out::do_field_fmt): Update. + * m2-valprint.c (m2_print_long_set): Use metadata style. + * m2-typeprint.c (m2_print_type): Use metadata style. + * infcmd.c (print_return_value_1): Use metadata style. + * gnu-v3-abi.c (print_one_vtable): Use metadata style. + * f-valprint.c (info_common_command_for_block): Use metadata + style. + * f-typeprint.c (f_type_print_base): Use metadata style. + * expprint.c (print_subexp_standard): Use metadata style. + * cp-valprint.c (cp_print_value_fields): Use metadata style. + * cli/cli-style.h (class cli_style_option): Add constructor. + (metadata_style): Declare. + * cli/cli-style.c (metadata_style): New global. + (_initialize_cli_style): Register metadata style. + * cli-out.h (class cli_ui_out) : Add style + parameter. + * cli-out.c (cli_ui_out::do_field_fmt): Update. + * c-typeprint.c (c_type_print_base_struct_union) + (c_type_print_base_1): Use metadata style. + * breakpoint.c (watchpoint_value_print) + (print_one_breakpoint_location): Use metadata style. + * break-catch-syscall.c (print_one_catch_syscall): Use metadata + style. + * break-catch-sig.c (signal_catchpoint_print_one): Use metadata + style. + * ada-valprint.c (val_print_packed_array_elements, printstr) + (print_field_values, ada_val_print_ref, ada_val_print): Use + metadata style. + * ada-typeprint.c (print_array_type, ada_print_type): Use metadata + style. + * ada-tasks.c (print_ada_task_info, info_task): Use metadata + style. + * ada-lang.c (user_select_syms): Use metadata style. + +2019-10-01 Tom Tromey + + * cli/cli-cmds.c (pwd_command): Style output. + +2019-10-01 Pedro Alves + Tom Tromey + + * symtab.c (print_symbol_info): Use %ps. + (print_msymbol_info): Use %ps. + * symfile.c (symbol_file_add_with_addrs): Use %ps. + * printcmd.c (print_variable_and_value): Use %ps. + * macrocmd.c (show_pp_source_pos): Use %ps. + * infrun.c (print_exited_reason): Use ui_out::message. + * breakpoint.c (watchpoint_check, print_one_breakpoint_location) + (describe_other_breakpoints): Use ui_out::message and new + formats. + (say_where): Use new formats. + (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message + and new formats. + +2019-10-01 Pedro Alves + Tom Tromey + + * unittests/format_pieces-selftests.c: Add gdb_format parameter. + (test_gdb_formats): New function. + (run_tests): Call it. + (test_format_specifier): Update. + * utils.h (fputs_filtered): Update comment. + (vfprintf_styled, vfprintf_styled_no_gdbfmt) + (fputs_styled_unfiltered): Declare. + * utils.c (fputs_styled_unfiltered): New function. + (vfprintf_maybe_filtered): Add gdbfmt parameter. + (vfprintf_filtered): Update. + (vfprintf_unfiltered, vprintf_filtered): Update. + (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions. + * ui-out.h (enum ui_out_flag) : New constants. + (enum class field_kind): New. + (struct base_field_s, struct signed_field_s): New. + (signed_field): New function. + (struct string_field_s): New. + (string_field): New function. + (struct styled_string_s): New. + (styled_string): New function. + (class ui_out) : Add comment. + : New methods. + : Add style parameter. + * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New + methods. + (ui_out::message): Rewrite. + * mi/mi-out.h (class mi_ui_out) : Add style + parameter. + * mi/mi-out.c (mi_ui_out::do_message): Add style parameter. + * gdbsupport/format.h (class format_pieces) : Add + gdb_extensions parameter. + (class format_piece): Add parameter to constructor. + (n_int_args): New field. + * gdbsupport/format.c (format_pieces::format_pieces): Add + gdb_extensions parameter. Handle '*'. + * cli-out.h (class cli_ui_out) : Add style parameter. + * cli-out.c (cli_ui_out::do_message): Add style parameter. Call + vfprintf_styled_no_gdbfmt. + (cli_ui_out::do_field_string, cli_ui_out::do_spaces) + (cli_ui_out::do_text, cli_ui_out::field_separator): Allow + unfiltered output. + * ui-style.h (struct ui_file_style) : New method. + +2019-10-01 Tom Tromey + + * unittests/format_pieces-selftests.c: Update. Add final format. + * gdbsupport/format.c (format_pieces::format_pieces): Don't add + empty literal pieces. + +2019-10-01 Tom Tromey + + * ui-out.h (enum class ui_out_style_kind): Remove. + (class ui_out) : + Change type of "style". + * ui-out.c (ui_out::field_core_addr, ui_out::field_stream) + (ui_out::field_string): Update. + * tui/tui-out.h (class tui_ui_out) : Change type + of "style". + * tui/tui-out.c (tui_ui_out::do_field_string): Update. + * tracepoint.c (print_one_static_tracepoint_marker): Update. + * stack.c (print_frame_arg, print_frame_info, print_frame): + Update. + * source.c (print_source_lines_base): Update. + * solib.c (info_sharedlibrary_command): Update. + * skip.c (info_skip_command): Update. + * record-btrace.c (btrace_call_history_src_line) + (btrace_call_history): Update. + * python/py-framefilter.c (py_print_frame): Update. + * mi/mi-out.h (class mi_ui_out) : Change type of + "style". + * mi/mi-out.c (mi_ui_out::do_table_header) + (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned) + (mi_ui_out::do_field_string): Update. + * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): + Update. + * cli-out.h (class cli_ui_out) : Change type of + "style". + * cli-out.c (cli_ui_out::do_table_header) + (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned) + (cli_ui_out::do_field_skip, cli_ui_out::do_field_string) + (cli_ui_out::do_field_fmt): Update. + * breakpoint.c (print_breakpoint_location): Update. + (update_static_tracepoint): Update. + +2019-10-01 Philippe Waroquiers + + * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string + conversion of gdb_datadir. + (captured_main_1): Remove xstrdup when assigning to gdb_datadir, + remove not needed c_str (). + 2019-09-30 Ali Tamur * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.