X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;ds=sidebyside;f=gdb%2FChangeLog;h=c7dbab5102979fbdb4eddb71ae4b36e0f909f466;hb=437afbb81e3a04cbd933fc534a50c686eaa63b19;hp=2121e3ec66b8fb2e6799e48e2b5adbc23e371672;hpb=935676c92feb5f35e4634ef58c20ffdfd0979b07;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2121e3ec66..0f26785f16 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,1647 @@ +2017-12-08 Jan Kratochvil + Pedro Alves + + * contrib/gdb-add-index.sh (index): Rename to ... + (index4): ... here. + (index5, debugstr, debugstrmerge, debugstrerr): New variables. + Support also .debug_names and .debug_str. + * dwarf2read.c: Include cmath, set, list. + (INDEX_SUFFIX): Rename to ... + (INDEX4_SUFFIX): ... here. + (INDEX5_SUFFIX, DEBUG_STR_SUFFIX): New. + (file_write(FILE *, const void *, size_t)): New. + (file_write(FILE *, const std::vector &)): New. + (data_buf::append_unsigned_leb128, data_buf::empty): New. + (data_buf::file_write): Use ::file_write. + (data_buf::c_str, dwarf5_djb_hash, debug_names) + (check_dwarf64_offsets): New. + (psyms_seen_size, write_gdbindex): New from + write_psymtabs_to_index code. + (dwarf5_gdb_augmentation, write_debug_names, assert_file_size) + (enum dw_index_kind): New. + (write_psymtabs_to_index): New parameter index_kind. Support + filename_str and out_file_str. Move code to write_gdbindex, + possibly call write_debug_names. + (save_gdb_index_command): New parameter -dwarf-5. + (_initialize_dwarf2_read): Document the new parameter -dwarf-5. + +2017-12-08 Jan Kratochvil + Pedro Alves + + * contrib/cc-with-tweaks.sh: Change interpreter to bash, incl. initial + comment. + (GDB_ADD_INDEX): New variable. + <$want_index>: Call $GDB_ADD_INDEX. + +2017-12-08 Sergio Durigan Junior + + * dtrace-probe.c (dtrace_process_dof_probe): Do not declare a new + "expression_up" inside the TRY block. + +2017-12-08 Yao Qi + + * breakpoint.c (update_watchpoint): Call + address_significant. + +2017-12-08 Yao Qi + + * breakpoint.c (adjust_breakpoint_address): Call + address_significant. + +2017-12-08 Yao Qi + + * aarch64-tdep.c (aarch64_gdbarch_init): Install gdbarch + significant_addr_bit. + * gdbarch.sh (significant_addr_bit): New. + * gdbarch.c, gdbarch.h: Re-generated. + * target.c (memory_xfer_partial): Call address_significant. + * utils.c (address_significant): New function. + * utils.h (address_significant): Declare. + +2017-12-08 Tom Tromey + + * printcmd.c (ui_printf): Update. Use std::vector. + * common/format.h (struct format_piece): Add constructor. + : Now const. + (class format_pieces): New class. + (parse_format_string, free_format_pieces) + (free_format_pieces_cleanup): Remove. + * common/format.c (format_pieces::format_pieces): Rename from + parse_format_string. Update. + (free_format_pieces, free_format_pieces_cleanup): Remove. + * breakpoint.c (parse_cmd_to_aexpr): Update. Use std::vector. + * ax-gdb.h (gen_printf): Remove argument. + * ax-gdb.c (gen_printf): Remove "frags" argument. + (maint_agent_printf_command): Update. Use std::vector. + +2017-12-08 Yao Qi + + PR breakpionts/22567 + * linespec.c (minsym_found): Set sal.section. + +2017-12-08 Andreas Arnez + + * configure.tgt (s390*-*-linux*): Add symfile-mem.o. + +2017-12-07 Keith Seitz + + PR breakpoints/22569 + * location.c (string_to_explicit_location): When terminating + parsing early, break out of enclosing loop instead of returning. + +2017-12-07 Keith Seitz + + * NEWS (New commands): Mention set/show print type nested-type-limit. + * c-typeprint.c (c_type_print_base): Print out nested types. + * dwarf2read.c (struct typedef_field_list): Rename to ... + (struct decl_field_list): ... this. Change all uses. + (struct field_info) : + New fields. + (add_partial_symbol): Look for nested type definitions in C++, too. + (dwarf2_add_typedef): Rename to ... + (dwarf2_add_type_defn): ... this. + (type_can_define_types): New function. + Update assertion to use type_can_define_types. + Permit NULL for a field's name. + (process_structure_scope): Handle child DIEs of types that can + define types. + Copy the list of nested types into the type struct. + * gdbtypes.h (struct typedef_field): Rename to ... + (struct decl_field): ... this. Change all uses. + [is_protected, is_private]: New fields. + (struct cplus_struct_type) : New + fields. + (TYPE_NESTED_TYPES_ARRAY, TYPE_NESTED_TYPES_FIELD) + (TYPE_NESTED_TYPES_FIELD_NAME, TYPE_NESTED_TYPES_FIELD_TYPE) + (TYPE_NESTED_TYPES_COUNT, TYPE_NESTED_TYPES_FIELD_PROTECTED) + (TYPE_NESTED_TYPES_FIELD_PRIVATE): New macros. + * typeprint.c (type_print_raw_options, default_ptype_flags): Add + default value for print_nested_type_limit. + (print_nested_type_limit): New static variable. + (set_print_type_nested_types, show_print_type_nested_types): New + functions. + (_initialize_typeprint): Register new commands for set/show + `print-nested-type-limit'. + * typeprint.h (struct type_print_options) [print_nested_type_limit]: + New field. + +2017-12-07 Tom Tromey + + PR breakpoints/22511: + * breakpoint.c (commands_command_1): Don't throw an exception when + no commands have been read. + +2017-12-07 Adam Stylinski + + PR c++/21222 + * target-descriptions.c (print_c_tdesc::visit_pre): Change type of + range-for variable. + +2017-12-07 Simon Marchi + + * common/selftest.h (struct selftest): Add virtual destructor. + +2017-12-07 Phil Muldoon + + * python/py-breakpoint.c (bppy_init): Use string_to_event_location + over basic location code. Implement explicit location keywords. + (bppy_init_validate_args): New function. + * NEWS: Document Python explicit breakpoint locations. + +2017-12-07 Joel Brobecker + + * MAINTAINERS: Restore target entries for m68hc11-elf, + score-elf and xstormy16-elf, incorrectly removed in a previous + patch meant to only update the list of active maintainers. + +2017-12-06 Pedro Alves + + * break-catch-syscall.c (insert_catch_syscall) + (remove_catch_syscall): Adjust to pass reference to + inf_data->syscalls_counts directly via gdb::array_view. + * fbsd-nat.c (fbsd_set_syscall_catchpoint): Adjust to use bool + and gdb::array_view. + * linux-nat.c (linux_child_set_syscall_catchpoint): Likewise. + * remote.c (remote_set_syscall_catchpoint): Likewise. + * target-debug.h (target_debug_print_bool): New. + (define target_debug_print_gdb_array_view_const_int): New. + * target-delegates.c: Regenerate. + * target.h (target_ops) : Use + gdb::array_view and bool. + (target_set_syscall_catchpoint): Likewise. + +2017-12-06 Simon Marchi + + * break-catch-syscall.c (catch_syscall_completer): Get pointers + to syscall group strings after building the string vector. + +2017-12-06 Pedro Alves + + * remote.c (remote_query_supported): Don't send "xmlRegisters=" if + "qXfer:features:read"" is disabled. + (remote_write_qxfer, remote_read_qxfer, remote_search_memory): + Check packet_config_support instead of packet->support directly. + +2017-12-05 Simon Marchi + + * target-descriptions.c (struct tdesc_feature) : Use + tdesc_reg_up typedef. + (struct target_desc) : Use tdesc_feature_up typedef. + +2017-12-05 Simon Marchi + + * target-descriptions.c (struct tdesc_type): Use default + destructor. + : Remove. + : Remove. + (struct tdesc_type_builtin): New. + (struct tdesc_type_vector): New. + (struct tdesc_type_with_fields): New. + (tdesc_predefined_types): Change type to tdesc_type_builtin[]. + (tdesc_gdb_type): Remove. + (tdesc_register_type): Adjust. + (tdesc_create_vector): Create tdesc_type_vector. + (tdesc_create_struct): Create tdesc_type_with_fields. + (tdesc_set_struct_size): Change parameter type. + (tdesc_create_union): Create tdesc_type_with_fields. + (tdesc_create_flags): Likewise. + (tdesc_create_enum): Likewise. + (tdesc_add_field): Change parameter type. + (tdesc_add_typed_bitfield): Likewise. + (tdesc_add_bitfield): Likewise. + (tdesc_add_flag): Likewise. + (tdesc_add_enum_value): Likewise. + (print_c_tdesc) : Remove overload with tdesc_type + parameter, add overloads for tdesc_type_builtin, + tdesc_type_with_fields and tdesc_type_vector. + : Remove. + : Add. + * target-descriptions.h (tdesc_create_enum): Change return type. + (tdesc_add_typed_bitfield): Change parameter type. + (tdesc_add_enum_value): Change parameter type. + * xml-tdesc.c (struct tdesc_parsing_data) : Change + type to tdesc_type_with_fields. + (tdesc_start_struct): Adjust. + (tdesc_start_flags): Adjust. + (tdesc_start_enum): Adjust. + (tdesc_start_field): Adjust. + * arch/tdesc.h (struct tdesc_type_builtin): Forward-declare. + (struct tdesc_type_vector): Forward-declare. + (struct tdesc_type_with_fields): Forward-declare. + (tdesc_create_struct): Change return type. + (tdesc_create_union): Likewise. + (tdesc_create_flags): Likewise. + (tdesc_add_field): Change parameter type. + (tdesc_set_struct_size): Likewise. + (tdesc_add_bitfield): Likewise. + (tdesc_add_flag): Likewise. + * features: Re-generate C files. + +2017-12-05 Simon Marchi + + * target-descriptions.c (tdesc_arch_reg): Remove typedef. + (struct tdesc_arch_reg): Add constructor. + (DEF_VEC_O (tdesc_arch_reg)): Remove. + (struct tdesc_arch_data): Initialize fields. + : Change type to std::vector. + (target_find_description): Adjust. + (tdesc_find_type): Adjust. + (tdesc_data_init): Call tdesc_arch_data constructor. + (tdesc_data_alloc): Allocate tdesc_arch_data with new. + (tdesc_data_cleanup): Free data with delete. + (tdesc_numbered_register): Adjust. + (tdesc_find_arch_register): Adjust. + (tdesc_use_registers): Adjust. + +2017-12-05 Simon Marchi + + * target-descriptions.c (tdesc_type_field): Remove typedef. + (DEF_VEC_O (tdesc_type_field)): Remove. + (struct tdesc_type_field): Add constructor. + : Change type to std::string. + (struct tdesc_type) : Instantiate vector if the type + kind uses it. + <~tdesc_type>: Destroy vector if the type kind uses it. + : Change type to std::vector. + (tdesc_gdb_type): Adjust. + (tdesc_add_field): Adjust. + (tdesc_add_typed_bitfield): Adjust. + (tdesc_add_field): Adjust. + (tdesc_add_enum_value): Adjust. + (class print_c_tdesc) : Adjust. + +2017-12-05 Simon Marchi + + * target-descriptions.c (struct tdesc_type) : Change type + to std::string. + <~tdesc_type>: Don't manually free name. + : Adjust. + (tdesc_named_type): Adjust. + (tdesc_find_type): Adjust. + (tdesc_gdb_type): Adjust. + (class print_c_tdesc) : Adjust. + +2017-12-05 Simon Marchi + + * target-descriptions.c (tdesc_type_p): Remove typedef. + (DEF_VEC_P (tdesc_type_p)): Remove. + (struct tdesc_feature) : Change type to std::vector. + <~tdesc_feature>: Replace with default implementation. + : Adjust. + (tdesc_named_type): Adjust. + (tdesc_create_vector): Adjust. + (tdesc_create_struct): Adjust. + (tdesc_create_union): Adjust. + (tdesc_create_flags): Adjust. + (tdesc_create_enum): Adjust. + +2017-12-05 Simon Marchi + + * target-descriptions.c (struct tdesc_reg) : Change + type of name_ parameter, adjust to std::string change. + : Change type to std::string. + <~tdesc_reg>: Replace with default implementation. + : Adjust. + (tdesc_find_register_early): Adjust. + (tdesc_register_name): Adjust. + (tdesc_register_type): Adjust. + (tdesc_register_in_reggroup_p): Adjust. + (class print_c_tdesc) : Adjust. + (class print_c_feature) : Adjust. + * features/arc-arcompact.c: Re-generate. + * features/arc-v2.c: Re-generate. + +2017-12-05 Simon Marchi + + * target-descriptions.c (tdesc_reg_p): Remove typedef. + (DEF_VEC_P (tdesc_reg_p)): Remove. + (struct tdesc_feature) : Change type to std::vector. + <~tdesc_feature>: Don't manually free registers. + : Adjust. + : Adjust. + (tdesc_has_registers): Adjust. + (tdesc_find_register_early): Adjust. + (tdesc_use_registers): Adjust. + (tdesc_create_reg): Adjust. + +2017-12-05 Simon Marchi + + * target-descriptions.c (tdesc_feature) : Change type to + std::string. + <~tdesc_feature>: Don't manually free name. + : Adjust. + (tdesc_find_feature): Adjust. + (tdesc_feature_name): Adjust. + (class print_c_tdesc) : Adjust. + (class print_c_feature) : Adjust. + +2017-12-05 Simon Marchi + + * target-descriptions.c (tdesc_feature_p): Remove typedef. + (DEF_VEC_P (tdesc_feature_p)): Remove. + (struct target_desc) : Change type to std::vector. + <~target_desc>: Replace with default implementation. + : Adjust. + : Adjust. + (tdesc_has_registers): Adjust. + (tdesc_find_feature): Adjust. + (tdesc_use_registers): Adjust. + (tdesc_create_feature): Adjust. + +2017-12-05 Simon Marchi + + * target-descriptions.c (arch_p): Remove typedef. + (DEF_VEC_P (arch_p)): Remove. + (struct target_desc) : Change type to std::vector. + <~target_desc>: Don't manually free compatible. + (tdesc_compatible_p): Adjust. + (tdesc_add_compatible): Adjust. + (class print_c_tdesc) : Adjust. + +2017-12-05 Simon Marchi + + * target-descriptions.c (property_s): Remove typedef. + (DEF_VEC_O (property_s)): Remove. + (struct target_desc) : Make an std::vector. + <~target_desc>: Don't manually free properties. + (tdesc_property): Adjust. + (set_tdesc_property): Adjust. + (class print_c_tdesc) : Adjust. + +2017-12-05 Simon Marchi + + * common/gdb_assert.h (gdb_static_assert): Redefine using + static_assert. + +2017-12-05 Simon Marchi + + * ada-lang.c (ada_collect_symbol_completion_matches): Remove + unused variables. + (ada_is_redundant_range_encoding): Likewise. + * ada-varobj.c (ada_varobj_get_value_of_array_variable): + Likewise. + * alpha-tdep.c (alpha_software_single_step): Likewise. + * arm-tdep.c (_initialize_arm_tdep): Likewise. + * auto-load.c (info_auto_load_cmd): Likewise. + * break-catch-syscall.c (insert_catch_syscall): Likewise. + (remove_catch_syscall): Likewise. + * breakpoint.c (condition_completer): Likewise. + (clear_command): Likewise. + (update_breakpoint_locations): Likewise. + * btrace.c (btrace_disable): Likewise. + (btrace_teardown): Likewise. + (btrace_maint_update_pt_packets): Likewise. + (maint_btrace_clear_cmd): Likewise. + * cli/cli-decode.c (lookup_cmd_1): Likewise. + (lookup_cmd_composition): Likewise. + * cli/cli-dump.c (scan_filename): Likewise. + (restore_command): Likewise. + * compile/compile-loc2c.c (compute_stack_depth): Likewise. + * compile/compile-object-load.c (compile_object_load): Likewise. + * compile/compile-object-run.c (compile_object_run): Likewise. + * compile/compile.c (compile_to_object): Likewise. + * completer.c (filename_completer): Likewise. + (complete_files_symbols): Likewise. + (complete_expression): Likewise. + * corelow.c (core_open): Likewise. + * ctf.c (ctf_start): Likewise. + (ctf_write_status): Likewise. + (ctf_write_uploaded_tsv): Likewise. + (ctf_write_definition_end): Likewise. + (ctf_open_dir): Likewise. + (ctf_xfer_partial): Likewise. + (ctf_trace_find): Likewise. + * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): + Likewise. + * dwarf2loc.c (allocate_piece_closure): Likewise. + (indirect_pieced_value): Likewise. + (dwarf2_evaluate_loc_desc_full): Likewise. + * dwarf2read.c (dw2_expand_marked_cus): Likewise. + (dw2_expand_symtabs_matching): Likewise. + (dw2_map_symbol_filenames): Likewise. + (read_and_check_comp_unit_head): Likewise. + (read_cutu_die_from_dwo): Likewise. + (lookup_dwo_unit): Likewise. + (read_comp_units_from_section): Likewise. + (dwarf2_compute_name): Likewise. + (handle_DW_AT_stmt_list): Likewise. + (create_cus_hash_table): Likewise. + (create_dwp_v2_section): Likewise. + (dwarf2_rnglists_process): Likewise. + (dwarf2_ranges_process): Likewise. + (dwarf2_record_block_ranges): Likewise. + (is_vtable_name): Likewise. + (read_formatted_entries): Likewise. + (skip_form_bytes): Likewise. + * elfread.c (elf_symtab_read): Likewise. + * exec.c (exec_file_command): Likewise. + * f-valprint.c (f_val_print): Likewise. + (info_common_command_for_block): Likewise. + * guile/guile.c (initialize_scheme_side): Likewise. + * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Likewise. + * guile/scm-cmd.c (cmdscm_completer): Likewise. + (gdbscm_register_command_x): Likewise. + * guile/scm-frame.c (gdbscm_frame_read_var): Likewise. + * guile/scm-param.c (gdbscm_parameter_value): Likewise. + * guile/scm-ports.c (file_port_magic): Likewise. + * guile/scm-pretty-print.c (ppscm_search_pp_list): Likewise. + (ppscm_pretty_print_one_value): Likewise. + (ppscm_print_children): Likewise. + * guile/scm-string.c (gdbscm_string_to_argv): Likewise. + * guile/scm-symtab.c (gdbscm_sal_symtab): Likewise. + * guile/scm-type.c (gdbscm_type_next_field_x): Likewise. + * guile/scm-utils.c (gdbscm_parse_function_args): Likewise. + * i386-tdep.c (i386_register_reggroup_p): Likewise. + * infcmd.c (run_command_1): Likewise. + (until_next_fsm_clean_up): Likewise. + * linespec.c (linespec_complete): Likewise. + (find_label_symbols): Likewise. + * m2-valprint.c (m2_val_print): Likewise. + * memattr.c (require_user_regions): Likewise. + (lookup_mem_region): Likewise. + (disable_mem_command): Likewise. + (mem_delete): Likewise. + * mep-tdep.c (mep_register_name): Likewise. + (mep_analyze_prologue): Likewise. + * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Likewise. + * mi/mi-interp.c (mi_on_sync_execution_done): Likewise. + * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise. + * microblaze-linux-tdep.c (microblaze_linux_init_abi): Likewise. + * minidebug.c (lzma_open): Likewise. + * minsyms.c (lookup_minimal_symbol): Likewise. + * mips-linux-tdep.c (mips64_fill_fpregset): Likewise. + * mips-tdep.c (mips_stub_frame_sniffer): Likewise. + (mips_o64_return_value): Likewise. + (mips_single_step_through_delay): Likewise. + (_initialize_mips_tdep): Likewise. + * nios2-tdep.c (nios2_push_dummy_call): Likewise. + (nios2_software_single_step): Likewise. + * parse.c (find_minsym_type_and_address): Likewise. + * psymtab.c (psym_relocate): Likewise. + * python/py-breakpoint.c (bppy_get_commands): Likewise. + (gdbpy_breakpoint_modified): Likewise. + * python/py-infevents.c (create_inferior_call_event_object): + Likewise. + * python/py-record-btrace.c (btpy_list_item): Likewise. + * python/py-type.c (typy_str): Likewise. + * python/py-value.c (valpy_call): Likewise. + * python/python.c (do_start_initialization): Likewise. + * record-btrace.c (record_btrace_insn_history_range): Likewise. + (record_btrace_call_history_range): Likewise. + (record_btrace_record_method): Likewise. + (record_btrace_xfer_partial): Likewise. + (btrace_get_frame_function): Likewise. + * record-full.c (record_full_open): Likewise. + * record.c (get_context_size): Likewise. + * registry.h (DEFINE_REGISTRY): Likewise. + * remote-fileio.c (remote_fileio_request): Likewise. + * remote.c (remote_update_thread_list): Likewise. + (remote_check_symbols): Likewise. + (remote_commit_resume): Likewise. + (remote_interrupt): Likewise. + (remote_insert_breakpoint): Likewise. + (compare_sections_command): Likewise. + * rust-exp.y (super_name): Likewise. + (lex_string): Likewise. + (convert_ast_to_type): Likewise. + (convert_ast_to_expression): Likewise. + * rust-lang.c (rust_print_struct_def): Likewise. + (rust_print_type): Likewise. + (rust_evaluate_subexp): Likewise. + * rx-tdep.c (rx_register_type): Likewise. + * ser-event.c (serial_event_clear): Likewise. + * serial.c (serial_open): Likewise. + * spu-tdep.c (spu_overlay_new_objfile): Likewise. + * symfile.c (section_is_overlay): Likewise. + (overlay_unmapped_address): Likewise. + (overlay_mapped_address): Likewise. + (simple_overlay_update_1): Likewise. + (simple_overlay_update): Likewise. + * symtab.c (symbol_find_demangled_name): Likewise. + (search_symbols): Likewise. + * target-descriptions.c (tdesc_predefined_type): Likewise. + * target.c (target_commit_resume): Likewise. + * thread.c (print_selected_thread_frame): Likewise. + * top.c (new_ui_command): Likewise. + (gdb_readline_no_editing): Likewise. + * tracefile-tfile.c (tfile_open): Likewise. + * tracepoint.c (create_tsv_from_upload): Likewise. + * utils.c (quit): Likewise. + (defaulted_query): Likewise. + * valarith.c (value_concat): Likewise. + * xml-syscall.c (xml_list_syscalls_by_group): Likewise. + * xml-tdesc.c (target_fetch_description_xml): Likewise. + * xtensa-tdep.c (xtensa_pseudo_register_read): Likewise. + (xtensa_pseudo_register_write): Likewise. + +2017-12-04 Tom Tromey + + * NEWS: Mention Rust trait object inspection. + +2017-12-04 Pedro Alves + + PR gdb/22499 + * amd64-tdep.c (amd64_insn::rex_offset): Rename to... + (amd64_insn::enc_prefix_offset): ... this, and tweak comment. + (vex2_prefix_p, vex3_prefix_p): New functions. + (amd64_get_insn_details): Adjust to rename. Also skip VEX2 and + VEX3 prefixes. + (fixup_riprel): Set VEX3.!B. + +2017-12-03 Simon Marchi + + * target.h (mem_region_vector): Remove. + (struct target_ops) : Change return type to + std::vector. + * target-debug.h (target_debug_print_mem_region_vector): Rename + to ... + (target_debug_print_std_vector_mem_region): ... this. + * target-delegates.c: Re-generate. + +2017-12-03 Pedro Alves + + * make-target-delegates (munge_type): Also munge '<', '>', and + ':'. Avoid double underscores in identifiers, and trailing + underscores. + * target-debug.h + (target_debug_print_VEC_static_tracepoint_marker_p__p): Rename to + ... + (target_debug_print_VEC_static_tracepoint_marker_p_p): ... this. + * target-delegates.c: Regenerate. + +2017-12-02 Simon Marchi + + * common/poison.h (XDELETE): Fix typo. + +2017-12-01 Andrew Cagney + Joel Brobecker + Sergio Durigan Junior + + * NEWS (Changes since GDB 8.0: Mention new '--readnever' + feature. + * coffread.c (coff_symfile_read): Do not map over sections with + 'coff_locate_sections' if readnever is on. + * dwarf2read.c (dwarf2_has_info): Return 0 if + readnever is on. + * elfread.c (elf_symfile_read): Do not map over sections with + 'elf_locate_sections' if readnever is on. + * main.c (validate_readnow_readnever): New function. + (captured_main_1): Add support for --readnever. + (print_gdb_help): Document --readnever. + * objfile-flags.h (enum objfile_flag) : New + flag. + * symfile.c (readnever_symbol_files): New global. + (symbol_file_add_with_addrs): Set 'OBJF_READNEVER' when + 'READNEVER_SYMBOL_FILES' is set. + (validate_readnow_readnever): New function. + (symbol_file_command): Handle '-readnever' option. + Call 'validate_readnow_readnever'. + (add_symbol_file_command): Handle '-readnever' option. + Call 'validate_readnow_readnever'. + (_initialize_symfile): Document new '-readnever' option for + both 'symbol-file' and 'add-symbol-file' commands. + * top.h (readnever_symbol_files): New extern global. + * xcoffread.c (xcoff_initial_scan): Do not read debug + information if readnever is on. + +2017-12-01 Sergio Durigan Junior + + * symfile.c (symbol_file_command): Call + 'symbol_file_add_main_1' only after processing all command + line options. + (add_symbol_file_command): Modify logic to make arguments + position-independent. + +2017-12-01 Joel Brobecker + + * ada-lang.c (symbol_list_obstack): Delete. + (resolve_subexp): Make sure "candidates" gets xfree'ed. + (ada_lookup_symbol_list_worker): Remove the limitation that + the result is only good until the next call, now making it + the responsibility of the caller to free the result when no + longer needed. Adjust the function's intro comment accordingly. + (ada_lookup_symbol_list): Adjust the function's intro comment. + (ada_iterate_over_symbols): Make sure "results" gets xfree'ed. + (ada_lookup_encoded_symbol, get_var_value): Likewise. + (_initialize_ada_language): Remove symbol_list_obstack + initialization. + * ada-exp.y (block_lookup): Make sure "syms" gets xfree'ed. + (write_var_or_type, write_name_assoc): Likewise. + +2017-12-01 Tom Tromey + + * Makefile.in (all_deps_files): New variable. + Include .Po files using all_deps_files. + +2017-12-01 Joel Brobecker + + * MAINTAINERS: Update list of maintainers, moving those who + stepped down or became inactive to the "Past Maintainers" + section. + +2017-11-30 Rainer Orth + + * configure.ac Don't check for sys/fault.h, sys/syscall.h, + sys/proc.h. + (NEW_PROC_API): Remove. + (prsysent_t, pr_sigset_t, pr_sigaction64_t, pr_siginfo64_t): + Likewise. + * common/common.m4 (GDB_AC_COMMON): Don't check for sys/syscall.h. + * configure: Regenerate. + * config.in: Regenerate. + * gdbserver/configure: Regenerate. + * gdbserver/config.in: Regenerate. + + * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Remove + NEW_PROC_API test. + * sparc-sol2-nat.c (_initialize_sparc_sol2_nat): Likewise. + + * linux-btrace.c: Remove HAVE_SYS_SYSCALL_H test. + + * proc-api.c: Remove !NEW_PROC_API support. + Remove HAVE_SYS_PROC_H and HAVE_SYS_USER_H tests. + Remove tests for macros always defined on Solaris. + * proc-events.c: Remove !NEW_PROC_API support. + Remove Remove HAVE_SYS_SYSCALL_H, HAVE_SYS_PROC_H and + HAVE_SYS_USER_H tests. + (init_syscall_table): Remove non-Solaris syscalls. + Remove tests for syscalls present on all Solaris versions. + Add missing Solaris 10+ syscalls. + (signal_table): Remove non-Solaris signals. + Remove tests for signals present on all Solaris versions. + (fault_table): Remove non-Solaris faults. + Remove tests for faults present on all Solaris versions. + * proc-flags.c: Remove !NEW_PROC_API support. + (pr_flag_table): Remove non-Solaris and pre-Solaris 7 comments. + Remove non-Solaris flags. + * proc-why.c: Remove !NEW_PROC_API support. + (pr_why_table): Remove meaningless comments. + Remove tests for reasons present on all Solaris versions. + Remove OSF/1 cases. + (proc_prettyfprint_why): Likewise. + + * procfs.c: Remove !NEW_PROC_API and DYNAMIC_SYSCALLS support. + Remove HAVE_SYS_FAULT_H and HAVE_SYS_SYSCALL_H tests. + Remove WA_READ test, IRIX watchpoint support. + (gdb_sigset_t, gdb_sigaction_t, gdb_siginfo_t): Replace by base + types. Change users. + (gdb_praddset, gdb_prdelset, gdb_premptysysset, gdb_praddsysset) + (gdb_prdelset, gdb_pr_issyssetmember): Replace by base macros. + Change callers. + Remove CTL_PROC_NAME_FMT tests. + (gdb_prstatus_t, gdb_lwpstatus_t): Replace by base types. Change + users. + (sysset_t_size): Remove. Use sizeof (sysset_t) in callers. + Remove PROCFS_DONT_PIOCSSIG_CURSIG support. + (proc_modify_flag): Replace GDBRESET by PCUNSET. + Remove PR_ASYNC, PR_KLC tests. + (proc_unset_inherit_on_fork): Remove PR_ASYNC test. + (proc_parent_pid): Remove PCWATCH etc. tests. + (proc_set_watchpoint): Remove !PCWATCH && !PIOCSWATCH support. + Remove PCAGENT test. + (proc_get_nthreads) [PIOCNTHR && PIOCTLIST]: Remove. + Remove SYS_lwpcreate || SYS_lwp_create test. + (proc_get_current_thread): Likewise. + [PIOCNTHR && PIOCTLIST]: Remove. + [PIOCLSTATUS]: Remove. + (procfs_debug_inferior): Remove non-Solaris cases, conditionals. + [PRFS_STOPEXEC]: Remove. + (syscall_is_lwp_exit): Remove non-Solaris cases, conditionals. + (syscall_is_exit): Likewise. + (syscall_is_exec): Likewise. + (syscall_is_lwp_create): Likewise. + Remove SYS_syssgi support. + (procfs_wait): Remove PR_ASYNC, !PIOCSSPCACT tests. + [SYS_syssgi]: Remove. + Remove non-Solaris cases, conditionals. + (unconditionally_kill_inferior) [PROCFS_NEED_PIOCSSIG_FOR_KILL]: + Remove. + (procfs_init_inferior) [SYS_syssgi]: Remove. + (procfs_set_exec_trap) [PRFS_STOPEXEC]: Remove. + (procfs_inferior_created) [SYS_syssgi]: Remove. + (procfs_set_watchpoint): Remove !AIX5 test. + (procfs_stopped_by_watchpoint): Remove FLTWATCH test, FLTKWATCH + case. + (mappingflags) [MA_PHYS]: Remove. + (info_mappings_callback): Remove PCAGENT test. + Remove PIOCOPENLWP || PCAGENT test. + +2017-11-30 Rainer Orth + + * sol-thread.c (info_solthreads): Constify args. + Cast args to void *. + +2017-11-29 John Baldwin + + * target-float.c [HAVE_LIBMPFR]: Define MPFR_USE_INTMAX_T. + +2017-11-29 Joel Brobecker + + * ada-lang.c (to_fixed_range_type): Make sure that the size + of the range type being returned is the same as the size + of the range type being fixed. + +2017-11-29 Pedro Alves + + PR c++/19436 + * NEWS: Mention setting breakpoints on functions with C++ ABI + tags. + * completer.h (completion_match_for_lcd) : New methods. + : Consider ignored ranges. + : Clear ignored ranges. + : New fields. + * cp-support.c (cp_search_name_hash): Ignore ABI tags. + (cp_symbol_name_matches_1, cp_fq_symbol_name_matches): Pass the + completion_match_for_lcd pointer to strncmp_iw_with_mode. + (test_cp_symbol_name_cmp): Add [abi:...] tags unit tests. + * language.c (default_symbol_name_matcher): Pass the + completion_match_for_lcd pointer to strncmp_iw_with_mode. + * linespec.c (linespec_lexer_lex_string): Don't tokenize ABI tags. + * utils.c (skip_abi_tag): New function. + (strncmp_iw_with_mode): Add completion_match_for_lcd parameter. + Handle ABI tags. + * utils.h (strncmp_iw_with_mode): Add completion_match_for_lcd + parameter. + +2017-11-29 Pedro Alves + + PR c++/19436 + * NEWS: Mention setting breakpoints on functions with C++ ABI + tags. + * completer.h (completion_match_for_lcd) : New methods. + : Consider ignored ranges. + : Clear ignored ranges. + : New fields. + * cp-support.c (cp_search_name_hash): Ignore ABI tags. + (cp_symbol_name_matches_1, cp_fq_symbol_name_matches): Pass the + completion_match_for_lcd pointer to strncmp_iw_with_mode. + (test_cp_symbol_name_cmp): Add [abi:...] tags unit tests. + * language.c (default_symbol_name_matcher): Pass the + completion_match_for_lcd pointer to strncmp_iw_with_mode. + * linespec.c (linespec_lexer_lex_string): Don't tokenize ABI tags. + * utils.c (skip_abi_tag): New function. + (strncmp_iw_with_mode): Add completion_match_for_lcd parameter. + Handle ABI tags. + * utils.h (strncmp_iw_with_mode): Add completion_match_for_lcd + parameter. + +2017-11-29 Pedro Alves + + * NEWS: Mention that breakpoints on C++ functions are now set on + on all namespaces/classes by default, and mention "break + -qualified". + * ax-gdb.c (agent_command_1): Adjust to pass a + symbol_name_match_type to new_linespec_location. + * breakpoint.c (parse_breakpoint_sals): Adjust to + get_linespec_location's return type change. + (strace_marker_create_sals_from_location): Adjust to pass a + symbol_name_match_type to new_linespec_location. + (strace_marker_decode_location): Adjust to get_linespec_location's + return type change. + (strace_command): Adjust to pass a symbol_name_match_type to + new_linespec_location. + (LOCATION_HELP_STRING): Add paragraph about wildmatching, and + mention "-qualified". + * c-lang.c (cplus_language_defn): Install cp_search_name_hash. + * completer.c (explicit_location_match_type::MATCH_QUALIFIED): New + enumerator. + (complete_address_and_linespec_locations): New parameter + 'match_type'. Pass it down. + (explicit_options): Add "-qualified". + (collect_explicit_location_matches): Pass the requested match type + to the linespec completers. Handle MATCH_QUALIFIED. + (location_completer): Handle "-qualified" combined with linespecs. + * cp-support.c (cp_search_name_hash): New. + (cp_symbol_name_matches_1): Implement wild matching for C++. + (cp_fq_symbol_name_matches): Reimplement. + (cp_get_symbol_name_matcher): Return different matchers depending + on the lookup name's match type. + (selftests::test_cp_symbol_name_matches): Add wild matching tests. + * cp-support.h (cp_search_name_hash): New declaration. + * dwarf2read.c + (selftests::dw2_expand_symtabs_matching::test_symbols): Add + symbols. + (test_dw2_expand_symtabs_matching_symbol): Add wild matching + tests. + * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Adjust to + pass a symbol_name_match_type to new_linespec_location. + * linespec.c (linespec_parse_basic): Lookup function symbols using + the parser's symbol name match type. + (convert_explicit_location_to_linespec): New + symbol_name_match_type parameter. Pass it down to + find_linespec_symbols. + (convert_explicit_location_to_sals): Pass the location's name + match type to convert_explicit_location_to_linespec. + (parse_linespec): New match_type parameter. Save it in the + parser. + (linespec_parser_new): Default to symbol_name_match_type::WILD. + (linespec_complete_function): New symbol_name_match_type + parameter. Use it. + (complete_linespec_component): Pass down the parser's recorded + name match type. + (linespec_complete_label): New symbol_name_match_type parameter. + Use it. + (linespec_complete): New symbol_name_match_type parameter. Save + it in the parser and pass it down. Adjust to + get_linespec_location's prototype change. + (find_function_symbols, find_linespec_symbols): New + symbol_name_match_type parameter. Pass it down instead of + assuming symbol_name_match_type::WILD. + * linespec.h (linespec_complete, linespec_complete_function) + (linespec_complete_label): New symbol_name_match_type parameter. + * location.c (event_location::linespec_location): Now a struct + linespec_location. + (EL_LINESPEC): Adjust. + (initialize_explicit_location): Default to + symbol_name_match_type::WILD. + (new_linespec_location): New symbol_name_match_type parameter. + Record it in the location. + (get_linespec_location): Now returns a struct linespec_location. + (new_explicit_location): Also copy func_name_match_type. + (explicit_to_string_internal) + (string_to_explicit_location): Handle "-qualified". + (copy_event_location): Adjust to LINESPEC_LOCATION type change. + Copy symbol_name_match_type fields. + (event_location_deleter::operator()): Adjust to LINESPEC_LOCATION + type change. + (event_location_to_string): Adjust to LINESPEC_LOCATION type + change. Handle "-qualfied". + (string_to_explicit_location): Handle "-qualified". + (string_to_event_location_basic): New symbol_name_match_type + parameter. Pass it down. + (string_to_event_location): Handle "-qualified". + * location.h (struct linespec_location): New. + (explicit_location::func_name_match_type): New field. + (new_linespec_location): Now returns a const linespec_location *. + (string_to_event_location_basic): New symbol_name_match_type + parameter. + (explicit_completion_info::saw_explicit_location_option): New + field. + * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Adjust to pass a + symbol_name_match_type to new_linespec_location. + * python/py-breakpoint.c (bppy_init): Likewise. + * python/python.c (gdbpy_decode_line): Likewise. + +2017-11-29 Pedro Alves + + * ada-lang.c (ada_lookup_name_info::matches): Change type of + parameter from completion_match to completion_match_result. + Adjust. + (do_wild_match, do_full_match, ada_symbol_name_matches): Likewise. + * completer.c (completion_tracker::maybe_add_completion): Add + match_for_lcd parameter and use it. + (completion_tracker::add_completion): Likewise. + * completer.h (class completion_match_for_lcd): New class. + (completion_match_result::match_for_lcd): New field. + (completion_match_result::set_match): New method. + (completion_tracker): Add comments. + (completion_tracker::add_completion): Add match_for_lcd parameter. + (completion_tracker::reset_completion_match_result): Reset + match_for_lcd too. + (completion_tracker::maybe_add_completion): Add match_for_lcd + parameter. + (completion_tracker::m_lowest_common_denominator_unique): Extend + comments. + * cp-support.c (cp_symbol_name_matches_1) + (cp_fq_symbol_name_matches): Change type of parameter from + completion_match to completion_match_result. Adjust. + * language.c (default_symbol_name_matcher): Change type of + parameter from completion_match to completion_match_result. + Adjust. + * language.h (completion_match_for_lcd): Forward declare. + (default_symbol_name_matcher): Change type of parameter from + completion_match to completion_match_result. + * symtab.c (compare_symbol_name): Adjust. + (completion_list_add_name): Pass the match_for_lcd to the tracker. + * symtab.h (ada_lookup_name_info::matches): Change type of + parameter from completion_match to completion_match_result. + (symbol_name_matcher_ftype): Likewise, and update comments. + +2017-11-29 Pedro Alves + + * linespec.c (minsym_found, add_minsym): Use msymbol_is_function. + * minsyms.c (msymbol_is_text): Delete. + (msymbol_is_function): New function. + * minsyms.h (msymbol_is_text): Delete. + (msymbol_is_function): New declaration. + * symtab.c (find_function_alias_target): Use msymbol_is_function. + +2017-11-29 Tom Tromey + + * Makefile.in (distclean): Handle the case where rmdir fails. + +2017-11-29 Tom Tromey + + * symfile.c (_initialize_symfile): Update usage text for + add-symbol-file, symbol-file, load. + +2017-11-29 Tom Tromey + + * symfile.c (add_symbol_file_command): Error if some arguments to + -s are missing. Change unrecognized-argument error message. + (_initialize_symfile): Fix usage text for add-symbol-file. + +2017-11-27 Tom Tromey + + * Makefile.in (REMOTE_OBS): Remove. + (SFILES): Remove remote sources. + (COMMON_SFILES): Add remote sources. + (ALLDEPFILES): Remove dcache.c. + +2017-11-27 Tom Tromey + + * Makefile.in (SUBDIR_TARGET_SRCS, SUBDIR_TARGET_OBS): New + variables. + (SFILES): Use SUBDIR_TARGET_SRCS. + (COMMON_OBS): Use SUBDIR_TARGET_OBS. Remove waitstatus.o. + (CONFIG_SRC_SUBDIR): Add target. + (%.o): Remove target rule. + +2017-11-27 Tom Tromey + + * Makefile.in (COMMON_OBS): Remove filename-seen-cache.o, + registry.o, thread-fsm.o, debug.o. + (COMMON_SFILES): Add filename-seen-cache.c, registry.c, + thread-fsm.c, debug.c. + +2017-11-27 Tom Tromey + + * Makefile.in (COMMON_SFILES): New. + (SFILES): Move some entries to COMMON_SFILES. + (COMMON_OBS): Use COMMON_SFILES. + +2017-11-27 Tom Tromey + + * Makefile.in (YYFILES): Update comment. + (YYOBJ): Redefine. + +2017-11-27 Tom Tromey + + * Makefile.in (SUBDIR_PYTHON_OBS): Redefine. + (CONFIG_SRC_SUBDIR): Add python. + (%.o): Remove python rule. + (python/%.o): New rule. + * configure: Rebuild. + * configure.ac (CONFIG_OBS): Refer to python/python.o + +2017-11-27 Tom Tromey + + * configure: Rebuild. + * configure.ac (CONFIG_OBS): Refer to guile/guile.o. + * Makefile.in (SUBDIR_GUILE_OBS): Redefine. + (CONFIG_SRC_SUBDIR): Add guile. + (%.o): Remove guile rule. + +2017-11-27 Tom Tromey + + * Makefile.in (SUBDIR_UNITTESTS_OBS): Redefine. + (%.o): Remove unittests rule. + (CONFIG_SRC_SUBDIR): Add unittests. + +2017-11-27 Tom Tromey + + * Makefile.in (SUBDIR_TUI_OBS): Redefine. + (CONFIG_SRC_SUBDIR): Add tui. + (%.o): Remove tui rule. + +2017-11-27 Tom Tromey + + * Makefile.in (SUBDIR_GCC_COMPILE_OBS): Redefine. + (%.o): Remove compile rule. + (CONFIG_SRC_SUBDIR): Add compile. + +2017-11-27 Tom Tromey + + * Makefile.in (SUBDIR_MI_OBS): Redefine. + (%.o): Remove mi rule. + (CONFIG_SRC_SUBDIR): Add mi. + (COMMON_OBS): Use mi/mi-common.o + +2017-11-27 Tom Tromey + + * Makefile.in (SUBDIR_CLI_OBS): Redefine. + (%.o): Remove cli rule. + (CONFIG_SRC_SUBDIR): Add cli. + +2017-11-27 Tom Tromey + + * configure.ac (CONFIG_SRC_SUBDIR): Don't subst. + * configure: Rebuild. + * Makefile.in (CONFIG_SRC_SUBDIR): Redefine. + (CONFIG_DEP_SUBDIR): New variable. + (%.o): Add order-only dependency. + ($(CONFIG_DEP_SUBDIR)): New target. + +2017-11-26 Dominik Czarnota + + PR gdb/21945 + * findcmd.c (_initialize_mem_search): Update find command help + text. + +2017-11-26 Simon Marchi + + * python/python.c (do_start_initialization): Change progname + type to gdb::unique_xmalloc_ptr. Release the pointer when using + Python 2. + +2017-11-26 Tom Tromey + + * common/format.h: Add include guards. + +2017-11-26 Tom Tromey + + * nat/linux-personality.h (class + maybe_disable_address_space_randomization): New class. + (maybe_disable_address_space_randomization): Don't declare + function. + * nat/linux-personality.c (restore_personality) + (make_disable_asr_cleanup): Remove. + (maybe_disable_address_space_randomization): Now a constructor. + (~maybe_disable_address_space_randomization): New destructor. + * linux-nat.c (linux_nat_create_inferior): Update. + +2017-11-26 Tom Tromey + + * gcore.c (write_gcore_file_1): Use gdb::unique_xmalloc_ptr. + +2017-11-26 Ulrich Weigand + + * spu-tdep.c (spu_software_single_step): Access SPU_LSLR_REGNUM as + "cooked" register. Access only first four bytes of branch target + registers. + +2017-11-25 Sergio Durigan Junior + + PR gdb/22491 + * stap-probe.c (relocate_address): New function. + (stap_probe::get_relocated_address): Use 'relocate_address'. + (stap_probe::set_semaphore): Use 'relocate_address' and pass + 'm_sem_addr'. + (stap_probe::clear_semaphore): Likewise. + +2017-11-25 Pedro Alves + + * dictionary.c: Include "safe-ctype.h". + * minsyms.c: Include "safe-ctype.h". + * minsyms.c (SYMBOL_HASH_NEXT): Use TOLOWER instead of tolower. + +2017-11-25 Pedro Alves + + * completer.c (complete_line_internal_1): Skip spaces until the + start of the command. + +2017-11-24 Pedro Alves + + * cp-support.c (cp_symbol_name_matches_1): New, factored out from + cp_fq_symbol_name_matches. Pass language_cplus to + strncmp_with_mode. + (cp_fq_symbol_name_matches): Call cp_symbol_name_matches_1. + (selftests::test_cp_symbol_name_cmp): New. + (_initialize_cp_support): Register "cp_symbol_name_matches" + selftests. + * language.c (default_symbol_name_matcher): Pass language_minimal + to strncmp_iw_with_mode. + * utils.c: Include "cp-support.h" and . + (valid_identifier_name_char, cp_skip_operator_token, skip_ws) + (cp_is_operator): New functions. + (strncmp_iw_with_mode): Use them. Add language parameter. Don't + skip whitespace in the symbol name when the lookup name doesn't + have spaces, and vice versa. + (strncmp_iw, strcmp_iw): Pass language to strncmp_iw_with_mode. + * utils.h (strncmp_iw_with_mode): Add language parameter. + +2017-11-24 Joel Brobecker + + * ada-lang.c (ada_exception_message_1, ada_exception_message): + New functions. + (print_it_exception): If available, display the exception + message as well. + * NEWS: Document new feature. + +2017-11-24 Ulrich Weigand + + * configure.nat : Add fork-inferior.o to NATDEPFILES. + +2017-11-24 Philipp Rudo + + * dtrace-probe.c (dtrace_probe::build_arg_exprs) + (dtrace_probe::is_enabled, dtrace_probe::enable) + (dtrace_probe::disable): Remove keyword 'struct' at for-range + variable + * probe.c (gen_ui_out_table_header_info) + (print_ui_out_not_applicables): Remove keyword 'struct' at + for-range variable + +2017-11-24 Alan Hayward + + * configure.tgt: Add arch/aarch64.o + +2017-11-24 Simon Marchi + + * common/common-utils.h: Include poison.h. + (xfree): Remove declaration, add definition with static_assert. + * common/common-utils.c (xfree): Remove. + * common/poison.h (IsMallocatable): Define. + (IsFreeable): Define. + (free): Delete for non-freeable types. + (xnew): New. + (XNEW): Undef and redefine. + (xcnew): New. + (XCNEW): Undef and redefine. + (xdelete): New. + (XDELETE): Undef and redefine. + (xnewvec): New. + (XNEWVEC): Undef and redefine. + (xcnewvec): New. + (XCNEWVEC): Undef and redefine. + (xresizevec): New. + (XRESIZEVEC): Undef and redefine. + (xdeletevec): New. + (XDELETEVEC): Undef and redefine. + (xnewvar): New. + (XNEWVAR): Undef and redefine. + (xcnewvar): New. + (XCNEWVAR): Undef and redefine. + (xresizevar): New. + (XRESIZEVAR): Undef and redefine. + +2017-11-24 Simon Marchi + + * gdbthread.h (private_thread_info): Define structure type, add + virtual pure destructor. + (thread_info) : Change type to unique_ptr. + : Remove. + * thread.c (add_thread_with_info): Adjust to use of unique_ptr. + (private_thread_info::~private_thread_info): Provide default + implementation. + (thread_info::~thread_info): Don't call private_dtor nor + manually free priv. + * aix-thread.c (private_thread_info): Rename to ... + (aix_thread_info): ... this. + (get_aix_thread_info): New. + (sync_threadlists): Adjust. + (iter_tid): Adjust. + (aix_thread_resume): Adjust. + (aix_thread_fetch_registers): Adjust. + (aix_thread_store_registers): Adjust. + (aix_thread_extra_thread_info): Adjust. + * darwin-nat.h (private_thread_info): Rename to ... + (darwin_thread_info): ... this. + (get_darwin_thread_info): New. + * darwin-nat.c (darwin_init_thread_list): Adjust. + (darwin_check_new_threads): Adjust. + (thread_info_from_private_thread_info): Adjust. + * linux-thread-db.c (private_thread_info): Rename to ... + (thread_db_thread_info): ... this, initialize fields. + (get_thread_db_thread_info): New. + : Change type to bool. + (update_thread_state): Adjust to type rename. + (record_thread): Adjust to type rename an use of unique_ptr. + (thread_db_pid_to_str): Likewise. + (thread_db_extra_thread_info): Likewise. + (thread_db_thread_handle_to_thread_info): Likewise. + (thread_db_get_thread_local_address): Likewise. + * nto-tdep.h (private_thread_info): Rename to ... + (nto_thread_info): ... this, initialize fields. + (get_nto_thread_info): New. + : Change type to std::string. + * nto-tdep.c (nto_extra_thread_info): Adjust to type rename and + use of unique_ptr. + * nto-procfs.c (update_thread_private_data_name): Adjust to + std::string change, allocate nto_private_thread_info with new. + (update_thread_private_data): Adjust to unique_ptr. + * remote.c (private_thread_info): Rename to ... + (remote_thread_info): ... this, initialize data members with + default values. + : Change type to std::string. + : Change type to non-pointer. + (free_private_thread_info): Remove. + (get_private_info_thread): Rename to... + (get_remote_thread_info): ... this, change return type, adjust to + use of unique_ptr, use remote_thread_info constructor. + (remote_add_thread): Adjust. + (get_private_info_ptid): Rename to... + (get_remote_thread_info): ...this, change return type. + (remote_thread_name): Use get_remote_thread_info, adjust to + change to std::string. + (struct thread_item) <~thread_item>: Remove. + : Make non pointer. + (start_thread): Adjust to thread_item::thread_handle type + change. + (remote_update_thread_list): Adjust to type name change, move + strings from temporary to long-lived object instead of + duplicating. + (remote_threads_extra_info): Use get_remote_thread_info. + (process_initial_stop_replies): Likewise. + (resume_clear_thread_private_info): Likewise. + (remote_resume): Adjust to type name change. + (remote_commit_resume): Use get_remote_thread_info. + (process_stop_reply): Adjust to type name change. + (remote_stopped_by_sw_breakpoint): Use get_remote_thread_info. + (remote_stopped_by_hw_breakpoint): Likewise. + (remote_stopped_by_watchpoint): Likewise. + (remote_stopped_data_address): Likewise. + (remote_core_of_thread): Likewise. + (remote_thread_handle_to_thread_info): Use + get_private_info_thread, adjust to thread_handle field type + change. + +2017-11-24 Simon Marchi + + * remote.c (struct thread_item): Add constructor, disable copy + construction and copy assignment, define default move + construction and move assignment. + : Change type to std::string. + : Initialize. + : Make non-pointer. + (thread_item_t): Remove typedef. + (DEF_VEC_O(thread_item_t)): Remove. + (threads_listing_context) : New method. + : New method. + : Change type to std::vector. + (clear_threads_listing_context): Remove. + (threads_listing_context_remove): Remove. + (remote_newthread_step): Use thread_item constructor, adjust to + change to std::vector. + (start_thread): Use thread_item constructor, adjust to change to + std::vector. + (end_thread): Adjust to change to std::vector and std::string. + (remote_get_threads_with_qthreadinfo): Use thread_item + constructor, adjust to std::vector. + (remote_update_thread_list): Adjust to change to std::vector and + std::string, use threads_listing_context methods. + (remove_child_of_pending_fork): Adjust. + (remove_new_fork_children): Adjust. + * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add rsp-low-selftests.c. + (SUBDIR_UNITTESTS_OBS): Add rsp-low-selftests.o. + * unittests/rsp-low-selftests.c: New file. + * common/rsp-low.h: Include common/byte-vector.h. + (hex2bin): New overload. + * common/rsp-low.c (hex2bin): New overload. + +2017-11-24 Simon Marchi + + * inferior.h (private_inferior): Define structure type, add + virtual pure destructor. + (inferior) : Change type to unique_ptr. + * inferior.c (private_inferior::~private_inferior): Provide + default implementation. + (inferior::~inferior): Don't free priv field. + (exit_inferior_1): Likewise. + * darwin-nat.h (struct darwin_exception_info): Initialize fields. + (darwin_exception_info): Remove typedef. + (DEF_VEC_O (darwin_thread_t)); Remove. + (private_inferior): Rename to ... + (darwin_private_inferior): ... this, extend private_inferior. + (get_darwin_inferior): New. + : Change type to std::vector of darwin_thread_t pointers. + * darwin-nat.c (darwin_check_new_threads): Adjust. + (find_inferior_task_it): Adjust. + (darwin_find_thread); Adjust. + (darwin_suspend_inferior): Adjust. + (darwin_resume_inferior): Adjust. + (darwin_find_new_inferior): Adjust. + (darwin_decode_notify_message): Adjust. + (darwin_send_reply): Adjust. + (darwin_resume_inferior_threads): Adjust. + (darwin_suspend_inferior_threads): Adjust. + (darwin_decode_message): Adjust. + (darwin_wait): Adjust. + (darwin_interrupt): Adjust. + (darwin_deallocate_threads): Adjust. + (darwin_mourn_inferior): Adjust, don't free private data. + (darwin_reply_to_all_pending_messages): Adjust. + (darwin_stop_inferior): Adjust. + (darwin_setup_exceptions): Adjust. + (darwin_kill_inferior): Adjust. + (darwin_setup_request_notification): Adjust. + (darwin_attach_pid): Adjust. + (darwin_init_thread_list): Adjust. + (darwin_setup_fake_stop_event): Adjust. + (darwin_attach): Adjust. + (darwin_detach): Adjust. + (darwin_xfer_partial): Adjust. + (set_enable_mach_exceptions): Adjust. + (darwin_pid_to_exec_file): Adjust. + (darwin_get_ada_task_ptid): Adjust. + * darwin-nat-info.c (get_task_from_args): Adjust. + (info_mach_ports_command): Adjust. + (info_mach_region_command): Adjust. + (info_mach_exceptions_command): Adjust. + * remote.c (private_inferior): Rename to ... + (remote_private_inferior): ... this, initialize fields. + (get_remote_inferior); New. + (remote_commit_resume): Use get_remote_inferior. + (check_pending_event_prevents_wildcard_vcont_callback): Likewise. + +2017-11-24 Pedro Alves + + * NEWS: Mention linespecs and explicit locations, and completion + improvements. + +2017-11-24 Yao Qi + + * regcache.c (regcache::dump): Remove footnote_register_size. + +2017-11-24 Yao Qi + + * regcache.c (cooked_read_test): Add more test for readonly + regcache. + +2017-11-24 Yao Qi + + * gdbarch-selftests.c (test_target_has_registers): Move it to + target.c. + (test_target_has_stack): Likewise. + (test_target_has_memory): Likewise. + (test_target_prepare_to_store): Likewise. + (test_target_store_registers): Likewise. + (test_target_ops): Likewise. + * regcache.c: Include selftest-arch.h and gdbthread.h. + (target_ops_no_register): New class. + (test_target_fetch_registers): New. + (test_target_store_registers): New. + (test_target_xfer_partial): New. + (readwrite_regcache): New. + (cooked_read_test): New. + (_initialize_regcache): Register the test. + * target.c: (test_target_has_registers): Moved from + gdbarch-selftests.c. + (test_target_has_stack): Likewise. + (test_target_has_memory): Likewise. + (test_target_prepare_to_store): Likewise. + (test_target_store_registers): Likewise. + * target.h (test_target_ops): New class. + +2017-11-24 Alan Hayward + + * aarch64-tdep.c (_initialize_aarch64_tdep): Add target desc + selftest. + +2017-11-24 Alan Hayward + + * aarch64-tdep.c (_initialize_aarch64_tdep): Remove init. + * arch/aarch64.c (aarch64_create_target_description): Create + new target description. + * features/Makefile: Add new files. + * features/aarch64.c: Remove file. + * features/aarch64-core.c: New autogenerated file. + * features/aarch64-fpu.c: New autogenerated file. + * target-descriptions.c (maint_print_c_tdesc_cmd): Check for aarch64. + +2017-11-24 Alan Hayward + + * Makefile.in: Add new files. + * aarch64-linux-nat.c (aarch64_linux_read_description): Call + aarch64_read_description. + * aarch64-linux-tdep.c (aarch64_linux_core_read_description): + Call aarch64_read_description. + * aarch64-tdep.c (aarch64_read_description): New function. + (aarch64_gdbarch_init): Call aarch64_read_description. + * aarch64-tdep.h (aarch64_read_description): New function. + * arch/aarch64.c: New file. + * configure.tgt: Add new files. + +2017-11-24 Yao Qi + + * mi/mi-main.c (register_changed_p): Update. + * value.c (value_contents_bits_eq): Change return type. + (value_contents_eq): Likewise. + * value.h: Update comments. + +2017-11-24 Yao Qi + + * mi/mi-main.c (mi_cmd_data_list_changed_registers): Remove + local 'changed'. Remove error. + (register_changed_p): Change return type to bool. + +2017-11-24 Yao Qi + + * arch/tic6x.c: New file. + * arch/tic6x.h: New file. + * features/Makefile (FEATURE_XMLFILES): Add tic6x-c6xp.xml, + tic6x-core.xml and tic6x-gp.xml. + * features/tic6x-c6xp.c: Generated. + * features/tic6x-core.c: Generated. + * features/tic6x-gp.c: Generated. + * target-descriptions.c (maint_print_c_tdesc_cmd): Match + "tic6x-". + +2017-11-23 Simon Marchi + + * mi/mi-main.c (list_available_thread_groups): Change map value + type to std::vector. + +2017-11-23 Simon Marchi + + * osdata.c (osdata_end_column, get_osdata): Remove std::move. + +2017-11-23 Simon Marchi + + * varobj.c (struct varobj_dynamic) : Rename + back to... + : ... this. + (varobj_get_num_children, varobj_update): Adjust. + +2017-11-23 Simon Marchi + + * ada-varobj.c (ada_value_is_changeable_p): Change int to bool where applicable. + (ada_value_has_mutated): Likewise. + * c-varobj.c (varobj_is_anonymous_child): Likewise. + (c_is_path_expr_parent): Likewise. + * mi/mi-cmd-var.c (varobj_update_one): Likewise. + (mi_cmd_var_set_frozen): Likewise. + (mi_cmd_var_update_iter): Likewise. + (mi_cmd_var_update): Likewise. + * varobj.c (pretty_printing): Likewise. + (varobj_enable_pretty_printing): Likewise. + (struct varobj_root) : Likewise. + (struct varobj_dynamic) : Likewise. + (delete_variable): Likewise. + (delete_variable_1): Likewise. + (install_variable): Likewise. + (update_type_if_necessary): Likewise. + (install_new_value): Likewise. + (value_of_root): Likewise. + (is_root_p): Likewise. + (varobj_create): Likewise. + (varobj_delete): Likewise. + (varobj_has_more): Likewise. + (varobj_set_frozen): Likewise. + (varobj_get_frozen): Likewise. + (install_dynamic_child): Likewise. + (dynamic_varobj_has_child_method): Likewise. + (update_dynamic_varobj_children): Likewise. + (varobj_get_num_children): Likewise. + (varobj_list_children): Likewise. + (is_path_expr_parent): Likewise. + (varobj_default_is_path_expr_parent): Likewise. + (varobj_is_dynamic_p): Likewise. + (varobj_set_value): Likewise. + (varobj_value_has_mutated): Likewise. + (varobj_update): Likewise. + (check_scope): Likewise. + (value_of_root_1): Likewise. + (varobj_value_get_print_value): Likewise. + (varobj_editable_p): Likewise. + (varobj_value_is_changeable_p): Likewise. + (varobj_floating_p): Likewise. + (varobj_default_value_is_changeable_p): Likewise. + (varobj_invalidate_iter): Likewise. + * varobj.h (struct varobj_update_result) : Likewise. + (struct varobj) : Likewise. + (struct lang_varobj_ops) : Likewise. + (varobj_delete): Likewise. + (varobj_set_frozen): Likewise. + (varobj_get_frozen): Likewise. + (varobj_set_value): Likewise. + (varobj_update): Likewise. + (varobj_editable_p): Likewise. + (varobj_floating_p): Likewise. + (varobj_has_more): Likewise. + (varobj_is_dynamic_p): Likewise. + (varobj_default_value_is_changeable_p): Likewise. + (varobj_value_is_changeable_p): Likewise. + (varobj_is_anonymous_child): Likewise. + (varobj_default_is_path_expr_parent): Likewise. + +2017-11-22 Sergio Durigan Junior + + * dtrace-probe.c (struct probe_ops dtrace_probe_ops): Delete. + (struct dtrace_probe_arg) : New constructor. + : Convert to 'std::string'. + : Convert to 'expression_up'. + (dtrace_probe_arg_s): Delete type and VEC. + (dtrace_probe_enabler_s): Likewise. + (struct dtrace_probe): Replace by... + (class dtrace_static_probe_ops): ...this and... + (class dtrace_probe): ...this. + (dtrace_probe_is_linespec): Rename to... + (dtrace_static_probe_ops::is_linespec): ...this. Adjust code + to reflect change. + (dtrace_process_dof_probe): Use 'std::vector' instead of VEC. + Adjust code. Create new instance of 'dtrace_probe'. + (dtrace_build_arg_exprs): Rename to... + (dtrace_probe::build_arg_exprs): ...this. Adjust code to + reflect change. + (dtrace_get_probes): Rename to... + (dtrace_static_probe_ops::get_probes): ...this. Adjust code + to reflect change. + (dtrace_get_arg): Rename to... + (dtrace_probe::get_arg_by_number): ...this. Adjust code to + reflect change. + (dtrace_probe_is_enabled): Rename to... + (dtrace_probe::is_enabled): ...this. Adjust code to reflect + change. + (dtrace_get_probe_address): Rename to... + (dtrace_probe::get_relocated_address): ...this. Adjust code + to reflect change. + (dtrace_get_probe_argument_count): Rename to... + (dtrace_probe::get_argument_count): ...this. Adjust code to + reflect change. + (dtrace_can_evaluate_probe_arguments): Rename to... + (dtrace_probe::can_evaluate_arguments): ...this. Adjust code + to reflect change. + (dtrace_evaluate_probe_argument): Rename to... + (dtrace_probe::evaluate_argument): ...this. Adjust code to + reflect change. + (dtrace_compile_to_ax): Rename to... + (dtrace_probe::compile_to_ax): ...this. Adjust code to + reflect change. + (dtrace_probe_destroy): Delete. + (dtrace_type_name): Rename to... + (dtrace_static_probe_ops::type_name): ...this. Adjust code to + reflect change. + (dtrace_probe::get_static_ops): New method. + (dtrace_gen_info_probes_table_header): Rename to... + (dtrace_static_probe_ops::gen_info_probes_table_header): + ...this. Adjust code to reflect change. + (dtrace_gen_info_probes_table_values): Rename to... + (dtrace_probe::gen_info_probes_table_values): ...this. Adjust + code to reflect change. + (dtrace_enable_probe): Rename to... + (dtrace_probe::enable_probe): ...this. Adjust code to reflect + change. + (dtrace_disable_probe): Rename to... + (dtrace_probe::disable_probe): ...this. Adjust code to reflect + change. + (struct probe_ops dtrace_probe_ops): Delete. + (info_probes_dtrace_command): Call 'info_probes_for_spops' + instead of 'info_probes_for_ops'. + (_initialize_dtrace_probe): Use 'all_static_probe_ops' instead + of 'all_probe_ops'. + +2017-11-22 Sergio Durigan Junior + Simon Marchi + + * stap-probe.c (struct probe_ops stap_probe_ops): Delete + variable. + (struct stap_probe_arg) : New constructor. + : Change type to 'expression_up'. + (stap_probe_arg_s): Delete type and VEC. + (struct stap_probe): Delete. Replace by... + (class stap_static_probe_ops): ...this and... + (class stap_probe): ...this. Rename variables to add 'm_' + prefix. Do not use 'union' for arguments anymore. + (stap_get_expected_argument_type): Receive probe name instead + of 'struct stap_probe'. Adjust code. + (stap_parse_probe_arguments): Rename to... + (stap_probe::parse_arguments): ...this. Adjust code to + reflect change. + (stap_get_probe_address): Rename to... + (stap_probe::get_relocated_address): ...this. Adjust code + to reflect change. + (stap_get_probe_argument_count): Rename to... + (stap_probe::get_argument_count): ...this. Adjust code + to reflect change. + (stap_get_arg): Rename to... + (stap_probe::get_arg_by_number'): ...this. Adjust code to + reflect change. + (can_evaluate_probe_arguments): Rename to... + (stap_probe::can_evaluate_arguments): ...this. Adjust code + to reflect change. + (stap_evaluate_probe_argument): Rename to... + (stap_probe::evaluate_argument): ...this. Adjust code + to reflect change. + (stap_compile_to_ax): Rename to... + (stap_probe::compile_to_ax): ...this. Adjust code to + reflect change. + (stap_probe_destroy): Delete. + (stap_modify_semaphore): Adjust comment. + (stap_set_semaphore): Rename to... + (stap_probe::set_semaphore): ...this. Adjust code to reflect + change. + (stap_clear_semaphore): Rename to... + (stap_probe::clear_semaphore): ...this. Adjust code to + reflect change. + (stap_probe::get_static_ops): New method. + (handle_stap_probe): Adjust code to create instance of + 'stap_probe'. + (stap_get_probes): Rename to... + (stap_static_probe_ops::get_probes): ...this. Adjust code to + reflect change. + (stap_probe_is_linespec): Rename to... + (stap_static_probe_ops::is_linespec): ...this. Adjust code to + reflect change. + (stap_type_name): Rename to... + (stap_static_probe_ops::type_name): ...this. Adjust code to + reflect change. + (stap_gen_info_probes_table_header): Rename to... + (stap_static_probe_ops::gen_info_probes_table_header): + ...this. Adjust code to reflect change. + (stap_gen_info_probes_table_values): Rename to... + (stap_probe::gen_info_probes_table_values): ...this. Adjust + code to reflect change. + (struct probe_ops stap_probe_ops): Delete. + (info_probes_stap_command): Use 'info_probes_for_spops' + instead of 'info_probes_for_ops'. + (_initialize_stap_probe): Use 'all_static_probe_ops' instead + of 'all_probe_ops'. + 2017-11-22 Sergio Durigan Junior * break-catch-throw.c (fetch_probe_arguments): Use