X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2FChangeLog;h=6f5487c10e8b1a7f25e673db30417c730b04f911;hb=09ce46f230fee766c386384cd1f5672d12fde276;hp=8ecf370e599382fa9a01b77de7b7201ee8b25624;hpb=a50c11c666e07b922d64aa5bb2747f180ce17c03;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8ecf370e59..6702b445b7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,1914 @@ +2018-08-07 Simon Marchi + + * target.h (target_options_to_string): Return an std::string. + * target.c (str_comma_list_concat_elem): Return void, use + std::string. + (do_option): Likewise. + (target_options_to_string): Return an std::string. + * linux-nat.c (linux_nat_target::wait): Adjust. + * target-debug.h (target_debug_print_options): Adjust. + +2018-08-07 Tom Tromey + + * Makefile.in (CPPFLAGS): New variable. + (INTERNAL_CPPFLAGS): Use it. + +2018-08-07 Simon Marchi + + * NEWS: Mention the index cache. + +2018-08-07 Simon Marchi + + * common/pathstuff.h (get_standard_cache_dir): New. + * common/pathstuff.c (get_standard_cache_dir): New. + * build-id.h (build_id_to_string): New. + * dwarf-index-common.h (INDEX4_SUFFIX, INDEX5_SUFFIX, + DEBUG_STR_SUFFIX): Move to here. + * dwarf-index-write.c (INDEX4_SUFFIX, INDEX5_SUFFIX, + DEBUG_STR_SUFFIX): Move from there. + (write_psymtabs_to_index): Make non-static, add basename + parameter. Write to temporary files, rename when done. + (save_gdb_index_command): Adjust call to + write_psymtabs_to_index. + * dwarf2read.h (dwarf2_per_objfile) : New + field. + * dwarf2read.c (dwz_file) : New field. + (get_gdb_index_contents_from_cache): New. + (get_gdb_index_contents_from_cache_dwz): New. + (dwarf2_initialize_objfile): Read index from cache. + (dwarf2_build_psymtabs): Save to index. + * dwarf-index-cache.h: New file. + * dwarf-index-cache.c: New file. + * dwarf-index-write.h: New file. + +2018-08-07 Simon Marchi + + * gnulib/aclocal.m4: Re-generate. + * gnulib/config.in: Re-generate. + * gnulib/configure: Re-generate. + * gnulib/import/Makefile.am: Re-generate. + * gnulib/import/Makefile.in: Re-generate. + * gnulib/import/m4/gnulib-cache.m4: Re-generate. + * gnulib/import/m4/gnulib-comp.m4: Re-generate. + * gnulib/import/m4/mkdir.m4: New file. + * gnulib/import/mkdir.c: New file. + * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add mkdir + module. + +2018-08-07 Simon Marchi + + * Makefile.in (COMMON_SFILES): Add common/scoped_mmap.c. + * common/scoped_mmap.c: New file. + * common/scoped_mmap.h (destroy): New method. + (~scoped_mmap, reset): Use destroy. + (scoped_mmap): New move constructor. + (mmap_file): New declaration. + * unittests/scoped_mmap-selftests.c (test_normal, + test_invalid_filename, run_tests): New functions. + (_initialize_scoped_mmap_selftests): Register selftest. + +2018-08-07 Simon Marchi + + * dwarf2read.c (read_gdb_index_from_section): Rename to... + (read_gdb_index_from_buffer): ... this. Remove section + parameter, add buffer parameter. + (get_gdb_index_contents_ftype, + get_gdb_index_contents_dwz_ftype): New typedefs. + (dwarf2_read_gdb_index): Add callback parameters to get the + index contents. + (get_gdb_index_contents_from_section): New. + (dwarf2_initialize_objfile): Update call to + dwarf2_read_gdb_index. + +2018-08-07 Simon Marchi + + * common/filestuff.h (gdb_fopen_cloexec): New overload. + (gdb_open_cloexec): Likewise. + * nat/linux-osdata.c (command_from_pid): Use string_printf. + (commandline_from_pid): Likewise. + (linux_xfer_osdata_threads): Likewise. + (linux_xfer_osdata_fds): Likewise. + * ada-lang.c (is_package_name): Likewise. + * auxv.c (procfs_xfer_auxv): Likewise. + * breakpoint.c (print_one_breakpoint_location): Use + uiout::field_fmt. + (print_one_catch_solib): Use string_printf. + * coff-pe-read.c (add_pe_exported_sym): Likewise. + (add_pe_forwarded_sym): Likewise. + * dwarf2read.c (create_type_unit_group): Likewise. + (build_error_marker_type): Likewise. + * infcall.c (get_function_name): Likewise. + * valprint.c (print_converted_chars_to_obstack): Likewise. + * xtensa-tdep.c (xtensa_register_type): Likewise. + +2018-08-06 Simon Marchi + + * remote.c (remote_target::download_tracepoint): Fix format + string errors. + +2018-08-06 Pedro Franco de Carvalho + + * tracefile.c: Include common/byte-vector.h. + (trace_save): Change type of buf to gdb::byte_vector. Initialize + with trace_regblock_size if needed. Update uses of buf. + +2018-08-06 Pedro Franco de Carvalho + + * tracepoint.h (collection_list) : Change type to + std::vector. + * tracepoint.c (collection_list::collection_list): Remove + m_regs_mask initializer from initializer list. Resize + m_regs_mask using the largest remote register number. + (collection_list::add_remote_register): Remove size check on + m_regs_mask. Use at to access element. + (collection_list::stringify): Change type of temp_buf to + gdb::char_vector. Update uses of temp_buf. Resize if needed to + stringify the register mask. Use pack_hex_byte for the register + mask. + +2018-08-06 Pedro Franco de Carvalho + + * tracepoint.h (class collection_list) : Remove. + : + Declare. + : Add scope parameter. + * tracepoint.c (encode_actions_1): Likewise. + (collection_list::add_register): Rename to ... + (collection_list::add_remote_register): ... this. Update + comment. + (collection_list::add_ax_registers, add_local_register): New + methods. + (collection_list::add_memrange): Add scope parameter. Call + add_local_register instead of add_register. + (finalize_tracepoint_aexpr): New function. + (collection_list::collect_symbol): Update calls to add_memrange. + Call add_local_register instead of add_register. Call + add_ax_registers. Call finalize_tracepoint_aexpr. + (encode_actions_1): Get remote regnos for $reg action. Call + add_remote_register, add_ax_registers, and add_local_register. + Update call to add_memrange. Call finalize_tracepoint_aexpr. + (validate_actionline): Call finalize_tracepoint_aexpr. + +2018-08-06 Pedro Franco de Carvalho + + * remote.c (remote_target::download_tracepoint): Remove BUF_SIZE. + Replace array buf with gdb::char_vector buf, of size + get_remote_packet_size (). Replace references to buf and + BUF_SIZE to buf.data () and buf.size (). Replace strcpy, strcat + and xsnprintf with snprintf. Raise errors if the buffer is too + small. + +2018-08-06 Pedro Franco de Carvalho + + * remote.c (remote_target::download_tracepoint): Fix the has_more + predicate in the QTDP action list iteration. + +2018-08-06 Pedro Franco de Carvalho + + * remote.c (remote_target::download_tracepoint): Fix indentation + in for block. + +2018-08-06 Rainer Orth + + * proc-api.c (_initialize_proc_api): Remove c, unused. + * procfs.c (procfs_init_inferior): Remove signals, unused. + (procfs_target::make_corefile_notes): Remove old_chain, fpregs, + unused. + +2018-08-06 Sergey Korolev + Andrew Burgess + + * linux-nat.c (linux_nat_target::follow_fork): Avoid using + 'W_STOPCODE (0)' as this could be ambiguous. + +2018-08-03 Sergio Durigan Junior + + * ser-tcp.c (net_open): Fix thinko when deciding whether to + disable TCP's Nagle algorithm (use "ai_protocol" instead of + "ai_socktype"). + +2018-08-02 Tom Tromey + + PR symtab/16842. + * dwarf2read.c (read_func_scope): Set symtab on template parameter + symbols. + (process_structure_scope): Likewise. + +2018-08-02 Xavier Roirand + + PR gdb/22629: + * darwin-nat.c (darwin_kill_inferior): Fix handling of + kill inferior. + +2018-08-02 Tom Tromey + + * darwin-nat.c (find_inferior_task_it, darwin_find_thread) + (darwin_suspend_inferior, darwin_resume_inferior) + (darwin_decode_notify_message, darwin_resume_inferior_threads) + (darwin_check_new_threads): Check result of get_darwin_inferior. + +2018-07-31 Joel Brobecker + + GDB 8.1.1 released. + +2018-07-31 Jan Vrany + + * varobj.c (varobj_get_path_expr_parent): Report an error if + parent is a dynamic varobj. + +2018-07-31 Simon Marchi + + * gnulib/aclocal.m4: Re-generate. + * gnulib/config.in: Re-generate. + * gnulib/configure: Re-generate. + * gnulib/import/Makefile.in: Re-generate. + * gnulib/import/m4/gnulib-comp.m4: Re-generate. + * gnulib/import/m4/onceonly.m4: Re-generate. + +2018-07-31 Simon Marchi + + * target-descriptions.c (struct xml_test_tdesc): New. + (xml_tdesc): Change type to std::vector. + (record_xml_tdesc): Update. + (maintenance_check_xml_descriptions): Update. + * target-descriptions.h (record_xml_tdesc): Update comment. + +2018-07-30 Andrew Burgess + + * eval.c (evaluate_subexp_for_sizeof): Check for array type before + checking array bounds are defined. + +2018-07-30 Tom Tromey + + * nat/linux-osdata.c (pid_pgid_entry::operator<): Fix + irreflexivity violation. + +2018-07-30 Tom Tromey + + * cli/cli-decode.c (lookup_cmd): Remove lint code. + * value.c (unpack_long): Remove lint code. + * valops.c (value_ind): Remove lint code. + * valarith.c (value_x_binop, value_x_unop, value_equal) + (value_pos): Remove lint code. + +2018-07-28 Tom de Vries + + * eval.c (evaluate_subexp_for_sizeof): Interpret size of dynamic type + with undefined upper bound as . + +2018-07-27 Sergio Durigan Junior + + * gcore.in: Rename variable "name" to "prefix". Expand + "usage" text. + +2018-07-14 Jon Turney + + * windows-nat.c (windows_nat_target::create_inferior): Update to + call close() in global namespace. + +2018-07-26 Tom Tromey + + * dwarf-index-write.c (add_address_entry): Don't add objfile + offsets. + * dbxread.c (find_stab_function): Rename from + find_stab_function_addr. Return a bound_minimal_symbol. + (read_dbx_symtab): Use raw_text_low, raw_text_high. + Don't add objfile offsets. + (end_psymtab): Use raw_text_low, raw_text_high, + MSYMBOL_VALUE_RAW_ADDRESS. + (read_ofile_symtab): Update. + (process_one_symbol): Update. + * dwarf2read.c (create_addrmap_from_index): Don't add objfile + offsets. + (dw2_relocate): Remove. + (dw2_find_pc_sect_symtab): Bias PC by the text offset before + searching addrmap. + (dwarf2_gdb_index_functions, dwarf2_debug_names_functions): + Update. + (process_psymtab_comp_unit_reader, add_partial_symbol) + (add_partial_subprogram, dwarf2_ranges_read): Update. + (load_partial_dies): Update. + (add_address_entry): Don't add objfile offsets. + (dwarf2_build_include_psymtabs): Update. + (create_addrmap_from_aranges): Don't add objfile offsets. + (dw2_find_pc_sect_compunit_symtab): Update. + * mdebugread.c (parse_symbol): Don't add objfile offsets. + (parse_lines): Remove 'pst' parameter, replace with 'textlow'. + Update. + (parse_partial_symbols): Don't add objfile offsets. Use + raw_text_low, raw_text_high. Update. + (handle_psymbol_enumerators, psymtab_to_symtab_1): Update. + * objfiles.c (objfile_relocate1): Don't relocate psymtabs_addrmap + or call 'relocate' quick function. Clear psymbol_map. + * psympriv.h (struct partial_symbol)
: Add section + offset. + : Rename from set_address. + : New methods. + : Add objfile parameter. + (add_psymbol_to_bcache): Add 'section' parameter. Call + set_unrelocated_address. + * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab) + (find_pc_psymbol): Update. + (fixup_psymbol_section, relocate_psymtabs): Remove. + (dump_psymtab, psym_functions): Update. + (add_psymbol_to_bcache, add_psymbol_to_list): Add 'section' + parameter. + (maintenance_info_psymtabs, maintenance_check_psymtabs): Update. + (start_psymtab_common): Update. + * symfile-debug.c (debug_qf_relocate): Remove. + (debug_sym_quick_functions): Update. + * symfile.h (struct quick_symbol_functions) : Remove. + * xcoffread.c (scan_xcoff_symtab): Don't add objfile offsets. + Update. + +2018-07-26 Tom Tromey + + * dbxread.c (end_psymtab): Use text_high_valid and + text_low_valid. + * mdebugread.c (parse_partial_symbols): Use text_low_valid. + (psymtab_to_symtab_1): Use text_high_valid and text_low_valid. + * psympriv.h (struct partial_symtab) : + Update comment. + : New fields. + : Update. + * xcoffread.c (scan_xcoff_symtab): Use text_low_valid. + +2018-07-26 Tom Tromey + + * dbxread.c (read_dbx_symtab, end_psymtab, read_ofile_symtab): + Update. + * dwarf2read.c (dwarf2_create_include_psymtab): Don't initialize + textlow and texthigh fields. + (process_psymtab_comp_unit_reader, dwarf2_build_include_psymtabs): + Update. + * mdebugread.c (parse_lines, parse_partial_symbols) + (psymtab_to_symtab_1): Update. + * psympriv.h (struct partial_symtab) : + Rename fields. Update comment. Now private. + : New methods. + * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab) + (find_pc_sect_psymbol, relocate_psymtabs, dump_psymtab) + (start_psymtab_common, maintenance_info_psymtabs) + (maintenance_check_psymtabs): Update. + * xcoffread.c (xcoff_end_psymtab): Don't initialize textlow and + texthigh fields. + (scan_xcoff_symtab): Update. + +2018-07-26 Tom Tromey + + * psympriv.h (struct partial_symbol) : New methods. + * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymbol) + (fixup_psymbol_section, relocate_psymtabs): Update. + (print_partial_symbols): Add 'objfile' parameter. Update. + (dump_psymtab, add_psymbol_to_bcache, psym_fill_psymbol_map): + Update. + +2018-07-26 Tom Tromey + + * dwarf-index-write.c (write_psymbols, debug_names::insert) + (debug_names::write_psymbols): Update. + * psympriv.h (struct partial_symbol): Derive from + general_symbol_info. + : New method. + (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.n + * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab) + (find_pc_sect_psymbol, fixup_psymbol_section) + (match_partial_symbol, lookup_partial_symbol, relocate_psymtabs) + (print_partial_symbols, recursively_search_psymtabs) + (compare_psymbols, psymbol_hash, psymbol_compare) + (add_psymbol_to_bcache, maintenance_check_psymtabs) + (psymbol_name_matches, psym_fill_psymbol_map): Update. + +2018-07-26 Tom Tromey + + * dbxread.c (end_psymtab): Remove dead code. + +2018-07-26 Andrew Burgess + + * dwarf2-frame-tailcall.c (tailcall_frame_sniffer): Exit early if + DWARF unwinders are disabled. + * dwarf2-frame.c: Add dwarf2read.h include. + (dwarf2_frame_sniffer): Exit early if DWARF unwinders are + disabled. + (dwarf2_frame_unwinders_enabled_p): Define. + (show_dwarf_unwinders_enabled_p): New function. + (_initialize_dwarf2_frame): Register switch to control DWARF + unwinder use. + * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Declare. + * dwarf2read.c (set_dwarf_cmdlist): Remove static keyword. + (show_dwarf_cmdlist): Remove static keyword. + * dwarf2read.h (set_dwarf_cmdlist): Declare. + (show_dwarf_cmdlist): Declare. + * NEWS: Document new feature. + +2018-07-26 Tom de Vries + + PR breakpoints/23366 + * infcmd.c (info_program_command): Handle ptid == minus_one_ptid. + +2018-07-26 Tom de Vries + + * dwarf2read.c (read_subrange_type): Warn if DW_AT_upper_bound or + DW_AT_count can't be translated to a dynamic prop. + +2018-07-25 Tom de Vries + + * dwarf2loc.c (dwarf2_locexpr_baton_eval): Wrap ctx.eval call in + try/catch. + +2018-07-25 Jan Vrany + + * breakpoint.c (enable_disable_bp_num_loc): Notify observers. + +2018-07-25 Joel Brobecker + + * MAINTAINERS (Global Maintainers): Add Tom Tromey. + +2018-07-24 Keith Seitz + + * common/scoped_mmap.h (class scoped_mmap): Fix indentation. + +2018-07-24 Tom Tromey + + * utils.c (malloc, realloc, free): Don't declare. + * configure, config.in: Rebuild. + * configure.ac: Don't check for declarations of free, malloc, or + realloc. + +2018-07-22 Simon Marchi + + * aarch64-linux-nat.c + (aarch64_linux_nat_target::stopped_data_address): Remove unused + variable. + * arm-linux-nat.c (fetch_regs): Likewise. + (store_regs): Likewise. + (fetch_vfp_regs): Likewise. + (store_vfp_regs): Likewise. + (arm_linux_nat_target::insert_hw_breakpoint): Likewise. + (arm_linux_nat_target::remove_hw_breakpoint): Likewise. + (arm_linux_nat_target::insert_watchpoint): Likewise. + (arm_linux_nat_target::remove_watchpoint): Likewise. + * mips-linux-nat.c (mips_linux_nat_target::insert_watchpoint): + Likewise. + * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_get_sveregs): + Likewise. + * ppc-linux-nat.c (fetch_register): Likewise. + (fetch_all_gp_regs): Likewise. + (fetch_ppc_registers): Likewise. + (store_all_gp_regs): Likewise. + (store_ppc_registers): Likewise. + (hwdebug_insert_point): Likewise. + (can_use_watchpoint_cond_accel): Likewise. + * remote-sim.c (gdb_os_write_stdout): Likewise. + +2018-07-22 Simon Marchi + Tom Tromey + + * warning.m4 (AM_GDB_WARNINGS): Add -Wunused-variable and special + test for it. + * configure: Rebuild. + +2018-07-22 Tom Tromey + + * regformats/regdat.sh: Define xmltarget_${name} inside + #ifndef IN_PROCESS_AGENT. + +2018-07-22 Tom Tromey + + * value.c (value_fetch_lazy_bitfield): Remove unused variable. + +2018-07-22 Tom Tromey + + * symfile.c (reread_symbols): Notify iter, not objfile. + +2018-07-22 Tom Tromey + + * ravenscar-thread.c (ravenscar_thread_target::store_registers): + Use arch_ops. + (ravenscar_thread_target::prepare_to_store): Likewise. + +2018-07-22 Tom Tromey + + * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Remove + unused variable. Call value_fetch_lazy when needed. + * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): + Remove unused variable. Call value_fetch_lazy when needed. + +2018-07-22 Tom Tromey + + * m32c-tdep.c (mark_dma): Return void. + (make_regs): Remove unused declarations. + +2018-07-22 Tom Tromey + + * guile/scm-cmd.c (gdbscm_dont_repeat): Call + cmdscm_get_valid_command_smob_arg_unsafe for effect. + * guile/scm-block.c (gdbscm_make_block_syms_iter): Call + bkscm_get_valid_block_smob_arg_unsafe for effect. + +2018-07-22 Tom Tromey + + * bfin-tdep.c (bfin_push_dummy_call): Use arg_type, not + value_type. + +2018-07-22 Tom Tromey + + * windows-nat.c (saved_context): Conditionally define. + * remote.c (remote_target::remote_btrace_maybe_reopen): + Conditionally declare "warned". + * inflow.c (sigquit_ours): Conditionally define. + (new_tty): Move "tty" declaration inside #if. + * guile/guile.c (guile_datadir): Conditionally define. + * charset.c (set_be_le_names): Move some declarations inside #if. + * btrace.c (parse_xml_btrace): Move "errcode" declaration inside + #if. + (parse_xml_btrace_conf): Likewise. + +2018-07-22 Tom Tromey + + * spu-tdep.c (spu_get_overlay_table): Remove unused variable. + +2018-07-22 Tom Tromey + + * guile/scm-value.c (gdbscm_value_call): Remove unused variables. + * guile/scm-math.c (vlscm_unop_gdbthrow, vlscm_binop_gdbthrow) + (vlscm_convert_typed_value_from_scheme): Remove unused variable. + * buildsym-legacy.c (get_macro_table): Remove unused variable. + * stack.c (frame_apply_level_command): Remove unused variable. + * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused variable. + * sparc64-tdep.c (adi_examine_command): Remove unused variable. + * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Remove + unused variable. + * nios2-tdep.c (nios2_push_dummy_call): Remove unused variable. + * mep-tdep.c (mep_push_dummy_call): Remove unused variable. + * ada-lang.c (ada_lookup_symbol_list_worker): Remove unused + variable. + * amd64-tdep.c (amd64_supply_xsave): Remove unused variable. + * arm-tdep.c (arm_record_data_proc_misc_ld_str): Remove unused + variable. + * breakpoint.c (check_no_tracepoint_commands, update_watchpoint): + Remove unused variable. + * cli/cli-script.c (recurse_read_control_structure): Remove unused + variable. + * common/tdesc.c (print_xml_feature::visit): Remove unused + variable. + * compile/compile-object-load.c (store_regs): Remove unused + variables. + * complaints.c (clear_complaints): Remove unused variable. + * corelow.c (core_target_open): Remove unused variable. + * fbsd-tdep.c (fbsd_core_info_proc_status): Remove unused + variable. + * guile/scm-frame.c (gdbscm_frame_read_var): Remove unused + variable. + * guile/scm-symtab.c (stscm_print_sal_smob): Remove unused + variable. + * guile/scm-type.c (gdbscm_field_baseclass_p): Remove unused + variable. + * guile/scm-utils.c (gdbscm_parse_function_args): Remove unused + variable. + * hppa-tdep.c (hppa_stub_frame_unwind_cache): Remove unused + variable. + * ia64-tdep.c (examine_prologue): Remove unused variable. + * infcall.c (run_inferior_call): Remove unused variable. + * inferior.c (exit_inferior): Remove unused variable. + * infrun.c (infrun_thread_ptid_changed): Remove unused variable. + * linespec.c (decode_line_2): Remove unused variable. + * linux-nat.c (super_close): Remove. + * linux-tdep.c (linux_info_proc): Remove unused variable. + * mi/mi-main.c (mi_execute_command): Remove unused variable. + * microblaze-linux-tdep.c (microblaze_linux_sigtramp_cache): + Remove unused variable. + * parse.c (find_minsym_type_and_address): Remove unused variable. + * printcmd.c (info_symbol_command, printf_floating): Remove unused + variable. + * python/py-breakpoint.c (bppy_set_commands): Remove unused + variable. + * python/py-unwind.c (unwind_infopy_dealloc): Remove unused + variables. + * record-btrace.c (record_btrace_target::store_registers): Remove + unused variable. + (cmd_show_record_btrace_cpu): Remove unused variable. + * riscv-tdep.c (riscv_register_reggroup_p) + (riscv_push_dummy_call, riscv_return_value): Remove unused + variable. + * rust-exp.y (literal): Remove unused variable. + * rust-lang.c (rust_evaluate_subexp) : Remove + unused variable. + : Likewise. + * s390-linux-tdep.c (s390_linux_init_abi_31) + (s390_linux_init_abi_64): Remove unused variable. + * ser-ming2.c (ser_windows_read_prim, pipe_select_thread) + (file_select_thread, net_windows_open, _initialize_ser_windows): + Remove unused variables. + * symtab.c (find_pc_sect_line): Remove unused variable. + * target-memory.c (compute_garbled_blocks): Remove unused + variable. + (target_write_memory_blocks): Remove unused variable. + * target.c (target_stack::unpush): Remove unused variables. + * tracepoint.c (start_tracing, all_tracepoint_actions) + (merge_uploaded_trace_state_variables) + (print_one_static_tracepoint_marker): Remove unused variable. + * unittests/basic_string_view/element_access/char/1.cc (test01): + Remove unused variable. + * windows-nat.c (windows_continue, windows_add_all_dlls) + (do_initial_windows_stuff, windows_nat_target::create_inferior): + Remove unused variables. + +2018-07-21 Simon Marchi + + * arm-tdep.c (arm_gdbarch_init): Declare attr_arch and + attr_profile in HAVE_ELF. + * rs6000-tdep.c (bfd_uses_spe_extensions): Declare vector_abi in + HAVE_ELF. + +2018-07-20 Simon Marchi + + * frame.c (frame_register_unwind): Change parameter name. + (frame_unwind_register): Likewise. + (frame_unwind_register_value): Likewise. + (frame_unwind_register_signed): Likewise. + (frame_unwind_register_unsigned): Likewise. + * frame.h (frame_register_unwind): Likewise. + (frame_unwind_register): Likewise. + (frame_unwind_register_value): Likewise. + (frame_unwind_register_signed): Likewise. + (frame_unwind_register_unsigned): Likewise. + (frame_unwind_arch): Likewise. + +2018-07-20 Maciej W. Rozycki + + * MAINTAINERS: Update my e-mail address, downgrade to MIPS I-IV + ISA maintenance. + +2018-07-20 Maciej W. Rozycki + + * mips-linux-nat.c (mips_linux_nat_target::read_description): + Call `get_ptrace_pid' rather than extracting the ptrace PID by + hand. + +2018-07-20 Keith Seitz + + * buildsym.h (struct buildsym_compunit) : Add "m_" prefix. + Update all uses. + * buildsym.c: Update all uses. + +2018-07-20 Tom Tromey + + * buildsym-legacy.h (record_line): Don't use record_line_ftype. + * buildsym.h (record_line_ftype): Remove typedef. + +2018-07-20 Tom Tromey + + * buildsym-legacy.h (augment_type_symtab): Don't declare. + (end_expandable_symtab): Likewise. + (end_symtab_get_static_block): Likewise. + (end_symtab_from_static_block): Likewise. + * buildsym-legacy.c (augment_type_symtab): Remove. + (end_expandable_symtab): Remove. + (end_symtab_get_static_block): Remove. + (end_symtab_from_static_block): Remove. + +2018-07-20 Tom Tromey + + * dwarf2read.c: Include buildsym.h. + (struct dwarf2_cu) : New method. + (fixup_go_packaging): Update. + (process_full_comp_unit, process_full_type_unit): Update. Don't + use scoped_free_pendings. + (using_directives): Add "cu" parameter, remove "language". + (read_import_statement, setup_type_unit_groups, ) + (read_func_scope, read_lexical_block_scope) + (dwarf2_record_block_ranges, read_namespace): Update. + (lnp_state_machine::lnp_state_machine): Add cu parameter. + (lnp_state_machine::handle_end_sequence): Update. + (class lnp_state_machine) : New member. + : Remove. + : New member. + (lnp_state_machine::handle_set_file): Update. + (noop_record_line): Remove. + (dwarf_record_line_p): Add cu parameter. + (dwarf_record_line_1, dwarf_finish_line): Likewise. + (lnp_state_machine::record_line) + (lnp_state_machine::lnp_state_machine) + (lnp_state_machine::check_line_address, dwarf_decode_lines_1) + (dwarf_decode_lines): Update. + (dwarf2_start_subfile): Add cu parameter. + (dwarf2_start_symtab, new_symbol): Update. + (macro_start_file, dwarf_decode_macro_bytes): Add cu parameter. + Remove dwarf2_per_objfile parameter. + (dwarf_decode_macros): Update. + +2018-07-20 Tom Tromey + + * stabsread.c (define_symbol): Update. + * buildsym-legacy.h (get_buildsym_compunit): Declare. + * dwarf2read.c (new_symbol): Update. + * cp-support.h (cp_scan_for_anonymous_namespaces): Update. + * cp-namespace.c: Include buildsym.h. + (cp_scan_for_anonymous_namespaces): Add "compunit" parameter. + * buildsym-legacy.c (get_buildsym_compunit): New function. + +2018-07-20 Tom Tromey + + * xcoffread.c: Include buildsym-legacy.h. + * windows-nat.c: Include buildsym-legacy.h. + * stabsread.c: Include buildsym-legacy.h. + * mdebugread.c: Include buildsym-legacy.h. + * buildsym-legacy.h: New file. + * buildsym-legacy.c: New file, from buildsym.c. + * go32-nat.c: Include buildsym-legacy.h. + * dwarf2read.c: Include buildsym-legacy.h. + * dbxread.c: Include buildsym-legacy.h. + * cp-namespace.c: Include buildsym-legacy.h. + * coffread.c: Include buildsym-legacy.h. + * buildsym.h: Move some contents to buildsym-legacy.h. + * buildsym.c: Include buildsym-legacy.h. Move many functions to + buildsym-legacy.c. + * Makefile.in (HFILES_NO_SRCDIR): Add buildsym-legacy.h. + +2018-07-20 Tom Tromey + + * buildsym.h (struct buildsym_compunit): Move from buildsym.c. + * buildsym.c (struct buildsym_compunit): Move to buildsym.h. + (buildsym_compunit::buildsym_compunit) + (buildsym_compunit::~buildsym_compunit) + (buildsym_compunit::get_macro_table): Define. + +2018-07-20 Tom Tromey + + * buildsym.c (reset_symtab_globals): Remove. + (buildsym_compunit::end_symtab_from_static_block): Update. + (buildsym_compunit::augment_type_symtab): Update. + (end_symtab_from_static_block): Call free_buildsym_compunit. + (augment_type_symtab, end_symtab, end_expandable_symtab): + Likewise. + +2018-07-20 Tom Tromey + + * arch-utils.c: Do not include buildsym.h. + * mipsread.c: Do not include buildsym.h. + * machoread.c: Do not include buildsym.h. + * elfread.c: Do not include buildsym.h. + +2018-07-20 Tom Tromey + + * buildsym.c (buildsym_compunit::buildsym_compunit): Do more + initialization. + (buildsym_compunit): Add new constructor. + (struct buildsym_compunit) : + New public methods. + : New + private methods. + Update all users. + +2018-05-22 Tom Tromey + + * buildsym.c (record_pending_block): Move earlier. Remove objfile + parameter. + (finish_block_internal): Update. + +2018-07-20 Tom Tromey + + * buildsym.c (record_pending_block): Move earlier. Remove objfile + parameter. + (finish_block_internal): Update. + +2018-07-20 Tom Tromey + + * buildsym.h (EXTERN): Don't define or undef. + * buildsym.c (EXTERN): Don't define. + +2018-07-20 Tom Tromey + + * buildsym.c: Remove TODO comment. + +2018-07-20 Tom Tromey + + * coffread.c (coff_symtab_read): Update. + * xcoffread.c (xcoff_psymtab_to_symtab_1): Update. + (xcoff_new_init): Update. + * mipsread.c (mipscoff_new_init): Update. + * mdebugread.c (mdebug_build_psymtabs): Update. + * elfread.c (elf_new_init): Update. + * dwarf2read.c (process_full_comp_unit, process_full_type_unit): + Update. + * dbxread.c (dbx_new_init, dbx_psymtab_to_symtab_1) + (coffstab_build_psymtabs, elfstab_build_psymtabs) + (stabsect_build_psymtabs): Update. + * buildsym.h (buildsym_init): Don't declare. + * buildsym.c: Update comment. + (prepare_for_building): Remove. + (start_symtab, restart_symtab): Update. + (reset_symtab_globals): Update comment. + (buildsym_init): Remove. + +2018-07-20 Tom Tromey + + * xcoffread.c (read_xcoff_symtab, process_xcoff_symbol): Update. + * stabsread.c (patch_block_stabs, define_symbol, read_type) + (read_enum_type, common_block_start, common_block_end) + (cleanup_undefined_types_1, finish_global_stabs): Update. + * mdebugread.c (psymtab_to_symtab_1): Update. + * dwarf2read.c (fixup_go_packaging, read_func_scope) + (read_lexical_block_scope, new_symbol): Update. + * dbxread.c (process_one_symbol): Update. + * coffread.c (coff_symtab_read, process_coff_symbol) + (coff_read_enum_type): Update. + * buildsym.h (file_symbols, global_symbols, local_symbols): Don't + declare. + (get_local_symbols, get_file_symbols, get_global_symbols): New + functions. + * buildsym.c (~buildsym_compunit): Clean up m_file_symbols and + m_global_symbols. + : New members. + (~scoped_free_pendings): Update. + (finish_block, prepare_for_building, reset_symtab_globals) + (end_symtab_get_static_block, end_symtab_with_blockvector) + (augment_type_symtab, push_context): Update. + (get_local_symbols, get_file_symbols, get_global_symbols): New + functions. + (buildsym_init): Update. + +2018-07-20 Tom Tromey + + * dwarf2read.c (process_full_comp_unit): Do not set list_in_scope. + (process_full_type_unit): Likewise. + (dwarf2_start_symtab): Set list_in_scope. + +2018-07-20 Tom Tromey + + * dwarf2read.c (process_psymtab_comp_unit_reader) + (build_type_psymtabs_reader): Do not set list_in_scope. + +2018-07-20 Tom Tromey + + * buildsym.c (free_pendings): Remove. + (add_symbol_to_list, scoped_free_pendings) + (finish_block_internal, buildsym_init): Update. + +2018-07-20 Tom Tromey + + * xcoffread.c (read_xcoff_symtab): Update. + * dwarf2read.c (read_func_scope, read_lexical_block_scope): + Update. + * dbxread.c (process_one_symbol): Update. + * coffread.c (coff_symtab_read): Update. + * buildsym.h (finish_block): Update. + * buildsym.c (finish_block): Remove "listhead" argument. + (end_symtab_get_static_block): Update. + +2018-07-20 Tom Tromey + + * buildsym.h (class scoped_free_pendings): Remove constructor. + * buildsym.c (struct buildsym_compunit) : New + method. + : New members. + (pending_block_obstack, pending_blocks): Remove. + (scoped_free_pendings::scoped_free_pendings): Default. + (~scoped_free_pendings): Update. + (free_pending_blocks): Remove. + (finish_block_internal, record_pending_block, make_blockvector) + (end_symtab_get_static_block, augment_type_symtab, push_context) + (buildsym_init): Update. + +2018-07-20 Tom Tromey + + * buildsym.c (struct buildsym_compunit) : New + members. + (pending_addrmap, pending_addrmap_obstack) + (pending_addrmap_interesting): Remove. + (scoped_free_pendings, record_block_range, make_blockvector) + (prepare_for_building, reset_symtab_globals, buildsym_init): + Update. + +2018-07-20 Tom Tromey + + * xcoffread.c (process_linenos): Update. + * stabsread.c (define_symbol, read_type, read_enum_type): Update. + * mdebugread.c (psymtab_to_symtab_1): Update. + * dwarf2read.c (setup_type_unit_groups) + (lnp_state_machine::handle_set_file, dwarf_record_line_p) + (lnp_state_machine::record_line, dwarf_decode_lines): Update. + * dbxread.c (process_one_symbol): Update. + * coffread.c (coff_symtab_read, enter_linenos) + (process_coff_symbol): Update. + * buildsym.h (current_subfile): Don't declare. + (get_current_subfile): Declare. + * buildsym.c (struct buildsym_compunit) : New + member. + (start_subfile, free_buildsym_compunit, push_subfile) + (prepare_for_building, start_symtab): Update. + (get_current_subfile): New function. + +2018-07-20 Tom Tromey + + * coffread.c (coff_symtab_read): Update. + * xcoffread.c (read_xcoff_symtab): Update. + * dwarf2read.c (new_symbol): Update. + (read_func_scope, read_lexical_block_scope): Update. + * dbxread.c (process_one_symbol): Update. + * buildsym.h (context_stack, context_stack_depth): Don't declare. + (outermost_context_p): Remove macro. + (outermost_context_p, get_current_context_stack) + (get_context_stack_depth): Declare. + (pop_context): Return struct context_stack. + * buildsym.c (struct buildsym_compunit) + + * rust-exp.y: Now a pure parser. Update all rules. + (%union): Move earlier. + (current_parser, work_obstack): Remove globals. + (rust_parser, ~rust_parser): Update. + (class rust_parser) : New methods. + (rust_parse): Update. + (rustyyerror, rustyylex): Add parser parameter. + (rust_lex_test_one, rust_lex_int_test, rust_lex_exception_test) + (rust_lex_stringish_test, rust_lex_test_sequence) + (rust_lex_test_trailing_dot, rust_lex_test_completion) + (rust_lex_test_push_back, rust_lex_tests): Update. + +2018-07-19 Pedro Alves + + * guile/guile-internal.h (gdbscm_scm_to_c_string): Now returns a + gdb::unique_xmalloc_ptr. + * guile/scm-breakpoint.c (gdbscm_set_breakpoint_condition_x): + Adjust to use dbscm_wrap and gdb::unique_xmalloc_ptr. + * guile/scm-exception.c (gdbscm_exception_message_to_string): Use + copy-initialization. + * guile/scm-pretty-print.c (ppscm_print_children): Use + gdb::unique_xmalloc_ptr instead of cleanups. + (gdbscm_apply_val_pretty_printer): Remove cleanups. + * guile/scm-string.c (gdbscm_scm_to_c_string): Now returns a + gdb::unique_xmalloc_ptr. + * guile/scm-type.c (gdbscm_type_field, gdbscm_type_has_field_p): + Adjust to use gdb::unique_xmalloc_ptr. + * guile/scm-utils.c (extract_arg): Adjust. + * guile/scm-value.c (gdbscm_value_field): Adjust to use + gdb::unique_xmalloc_ptr instead of a cleanup. + +2018-07-19 Tom Tromey + + * utils.c (do_value_free_to_mark) + (make_cleanup_value_free_to_mark): Remove. + * utils.h (make_cleanup_value_free_to_mark): Remove. + +2018-07-19 Pedro Alves + + * guile/guile-internal.h (gdbscm_wrap): Really make 'args' a + forwarding reference. + +2018-07-18 Pedro Alves + + * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use + gdbscm_wrap. Use gdb::unique_xmalloc_ptr instead of a + cleanup. + +2018-07-18 Pedro Alves + + * guile/guile-internal.h: Add comment about mixing GDB and Scheme + exceptions. + (GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS): Delete. + (gdbscm_wrap): New. + * guile/scm-frame.c (gdbscm_frame_read_register): Use xfree + directly instead of a cleanup. + * guile/scm-math.c (vlscm_unop_gdbthrow): New, factored out from ... + (vlscm_unop): ... this. Reimplement using gdbscm_wrap. + (vlscm_binop_gdbthrow): New, factored out from ... + (vlscm_binop): ... this. Reimplement using gdbscm_wrap. + (vlscm_rich_compare): Use gdbscm_wrap. + * guile/scm-symbol.c (gdbscm_lookup_symbol): Use xfree directly + instead of a cleanup. + (gdbscm_lookup_global_symbol): Use xfree directly instead of a + cleanup. + * guile/scm-type.c (gdbscm_type_field, gdbscm_type_has_field_p): + Use xfree directly instead of a cleanup. + * guile/scm-value.c (gdbscm_make_value, gdbscm_make_lazy_value): + Adjust to use gdbscm_wrap and scoped_value_mark. + (gdbscm_value_optimized_out_p): Adjust to use gdbscm_wrap. + (gdbscm_value_address, gdbscm_value_dereference) + (gdbscm_value_referenced_value): Adjust to use gdbscm_wrap and + scoped_value_mark. + (gdbscm_value_dynamic_type): Use scoped_value_mark. + (vlscm_do_cast, gdbscm_value_field): Adjust to use gdbscm_wrap and + scoped_value_mark. + (gdbscm_value_subscript, gdbscm_value_call): Adjust to use + gdbscm_wrap and scoped_value_mark. + (gdbscm_value_to_string): Use xfree directly instead of a + cleanup. Move 'buffer' unique_ptr to TRY scope. + (gdbscm_value_to_lazy_string): Use xfree directly instead of a + cleanup. Move 'buffer' unique_ptr to TRY scope. Use + scoped_value_mark. + (gdbscm_value_fetch_lazy_x): Use gdbscm_wrap. + (gdbscm_parse_and_eval): Adjust to use gdbscm_wrap and + scoped_value_mark. + (gdbscm_history_ref, gdbscm_history_append_x): Adjust to use + gdbscm_wrap. + +2018-07-18 Tom de Vries + + * findvar.c (default_read_var_value): Also resolve dynamic type for + LOC_OPTIMIZED_OUT vars. + +2018-07-18 Maciej W. Rozycki + + * mips-tdep.c (micromips_next_pc): Add SYSCALL instruction + decoding. + +2018-07-17 Tom Tromey + + * guile/scm-param.c (pascm_set_func, pascm_show_func) + (compute_enum_list, pascm_set_param_value_x) + (gdbscm_parameter_value): Update. + * guile/guile-internal.h (gdbscm_scm_to_string): Update. + (gdbscm_scm_to_host_string): Update. + * guile/scm-math.c (vlscm_convert_typed_value_from_scheme): + Update. + * guile/scm-cmd.c (cmdscm_add_completion): Update. + * guile/scm-pretty-print.c (ppscm_print_string_repr): Update. + * guile/scm-string.c (gdbscm_scm_to_string): Return + unique_xmalloc_ptr. + (gdbscm_scm_to_host_string): Likewise. + +2018-07-17 Tom Tromey + + * guile/guile.c (gdbscm_eval_from_control_command): Update. + * guile/guile-internal.h (gdbscm_safe_eval_string): Update. + * guile/scm-objfile.c (gdbscm_execute_objfile_script): Update. + * guile/scm-safe-call.c (gdbscm_safe_eval_string): Return + unique_xmalloc_ptr. + +2018-07-17 Tom Tromey + + * guile/scm-param.c (pascm_signal_setshow_error): Update. + * guile/guile-internal.h (gdbscm_exception_message_to_string): + Update. + * guile/scm-cmd.c (cmdscm_function): Update. + * guile/scm-pretty-print.c + (ppscm_print_exception_unless_memory_error): Update. + * guile/scm-exception.c (gdbscm_exception_message_to_string): + Return unique_xmalloc_ptr. + +2018-07-17 Tom Tromey + + * guile/scm-pretty-print.c (ppscm_make_pp_type_error_exception): + Use string_printf. + +2018-07-17 Jim Wilson + + * riscv-tdep.c (riscv_has_feature): Delete comment that refers to + set_gdbarch_decr_pc_after_break. Call riscv_read_misa_reg always. + (riscv_gdbarch_init): Delete local has_compressed_isa. Delete now + unecessary braces after EF_RISCV_RVC test. Delete call to + set_gdbarch_decr_pc_after_break. + + * riscv-tdep.h (DECLARE_CSR): Use RISCV_FIRST_CSR_REGNUM instead of + RISCV_LAST_FP_REGNUM + 1. + (RSICV_CSR_LEGACY_MISA_REGNUM): Add RISCV_FIRST_CSR_REGNUM. + +2018-07-17 Tom Tromey + + * configure.ac: Remove --disable-gdbcli. + * configure: Rebuild. + * Makefile.in (SUBDIR_CLI_DEPS, SUBDIR_CLI_LDFLAGS) + (SUBDIR_CLI_CFLAGS): Remove. + (SFILES): Use SUBDIR_CLI_SRCS. + (COMMON_OBS): Use SUBDIR_CLI_OBS. + +2018-07-17 Tom Tromey + + PR gdb/18624: + * coffread.c (coff_symtab_read): Use scoped_free_pendings. + +2018-07-16 Jim Wilson + + * riscv-tdep.c (riscv_gdbarch_init): Call gdbarch_init_osabi. + +2018-07-16 Simon Marchi + + * ia64-libunwind-tdep.c (libunwind_frame_cache): Remove unused + variable. + (libunwind_frame_sniffer): Likewise. + (libunwind_frame_prev_register): Likewise. + (libunwind_sigtramp_frame_sniffer): Likewise. + * ia64-tdep.c (ia64_access_reg): Likewise. + (ia64_access_rse_reg): Likewise. + (ia64_libunwind_sigtramp_frame_this_id): Likewise. + * ia64-vms-tdep.c (ia64_vms_find_proc_info_x): Likewise. + +2018-07-16 Simon Marchi + + * ia64-vms-tdep.c (ia64_vms_find_proc_info_x): Add cast. + +2018-07-16 Simon Marchi + + * remote-sim.c (gdbsim_target::close, + gdbsim_target::mourn_inferior): Remove unused variables. + +2018-07-16 Simon Marchi + + * ia64-tdep.c (ktab_buf): New global. + (getunwind_table): Return a gdb::optional. + (get_kernel_table): Adjust. + +2018-07-16 Tom Tromey + + * xcoffread.c (read_xcoff_symtab): Use outermost_context_p. + * dwarf2read.c (using_directives, new_symbol): Use + outermost_context_p. + * dbxread.c (process_one_symbol): Use outermost_context_p. + * coffread.c (coff_symtab_read): Use outermost_context_p. + +2018-07-16 Tom Tromey + + * dwarf2read.c (using_directives, read_func_scope) + (read_lexical_block_scope): Update. + * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update. + * buildsym.h (local_using_directives, global_using_directives): + Don't declare. + (get_local_using_directives, set_local_using_directives) + (get_global_using_directives): Declare. + * buildsym.c (struct buildsym_compunit) : New members. + (finish_block_internal, prepare_for_building) + (reset_symtab_globals, end_symtab_get_static_block) + (push_context): Update. + (get_local_using_directives, set_local_using_directives) + (get_global_using_directives): New functions. + (buildsym_init): Update. + +2018-07-16 Tom Tromey + + * xcoffread.c (xcoff_initial_scan): Don't call + free_pending_blocks. + * dbxread.c (dbx_symfile_read): Don't call free_pending_blocks. + * buildsym.h (class scoped_free_pendings): Add constructor. + (free_pending_blocks): Don't declare. + * buildsym.c (scoped_free_pendings::scoped_free_pendings): New. + (free_pending_blocks): Now static. + +2018-07-16 Tom Tromey + + * buildsym.h (push_subfile, pop_subfile): Update declarations. + * buildsym.c (struct buildsym_compunit) : New + member. + (struct subfile_stack): Remove. + (subfile_stack): Remove. + (push_subfile, pop_subfile, buildsym_init): Update. + +2018-07-16 Tom Tromey + + * buildsym.c (push_subfile): Use gdb_assert. + (pop_subfile): Use gdb_assert. + +2018-07-16 Tom Tromey + + * buildsym.h (merge_symbol_lists): Remove. + * buildsym.c (merge_symbol_lists): Remove. + +2018-07-16 Tom Tromey + + * stabsread.c (scan_file_globals): Update comment. + * stabsread.h (scan_file_globals): Move from buildsym.h. + * buildsym.h (scan_file_globals): Move to stabsread.h. + +2018-07-16 Tom Tromey + + * xcoffread.c (xcoff_new_init): Update. + * mipsread.c (mipscoff_new_init): Update. + * mdebugread.c (mdebug_build_psymtabs): Update. + * elfread.c (elf_new_init): Update. + * dbxread.c (dbx_new_init, coffstab_build_psymtabs) + (elfstab_build_psymtabs, stabsect_build_psymtabs): Update. + * buildsym.h (buildsym_new_init): Don't declare. + * buildsym.c (buildsym_new_init): Remove. + +2018-07-16 Tom Tromey + + * stabsread.h (within_function): Move from buildsym.h. + * stabsread.c (start_stabs): Clear within_function. + * coffread.c (coff_start_symtab): Clear within_function. + * buildsym.h (within_function): Move to stabsread.h. + * buildsym.c (prepare_for_building): Update. + +2018-07-16 Tom Tromey + + * stabsread.h (processing_gcc_compilation): Move from buildsym.h. + * dwarf2read.c (dwarf2_start_symtab): Don't set + processing_gcc_compilation. + * buildsym.h (processing_gcc_compilation): Move to stabsread.h. + +2018-07-16 Tom Tromey + + * stabsread.h (HASHSIZE, hashname, symnum, next_symbol_text) + (next_symbol_text_func): Move from buildsym.h. + * stabsread.c (hashname): Move from buildsym.c. + * buildsym.h (HASHSIZE, symnum, next_symbol_text) + (next_symbol_text_func, hashname): Move to stabsread.h. + * buildsym.c: Don't include bcache.h + (hashname): Move to stasbread.c. + +2018-07-16 Tom Tromey + + * buildsym.h (context_stack_size): Don't declare. + * buildsym.c (context_stack_size): New global. + +2018-07-16 Tom Tromey + + * dbxread.c (processing_acc_compilation): New global. + * buildsym.h (processing_acc_compilation): Don't declare. + +2018-07-16 Tom Tromey + + * xcoffread.c (aix_process_linenos, complete_symtab): Update. + * dbxread.c (read_ofile_symtab): Update. + * coffread.c (coff_start_symtab, coff_end_symtab): Update. + * buildsym.h (last_source_start_addr): Remove. + (set_last_source_start_addr, get_last_source_start_addr): + Declare. + * buildsym.c (buildsym_compunit::buildsym_compunit): Add last_addr + parameter. + (struct buildsym_compunit) : New + member. + (prepare_for_building): Remove start_addr parameter. + (start_symtab, restart_symtab, end_symtab_get_static_block) + (end_symtab_with_blockvector): Update. + (set_last_source_start_addr, get_last_source_start_addr): New + functions. + +2018-07-16 Tom Tromey + + * buildsym.c (struct buildsym_compunit) : New + member. + (have_line_numbers): Remove. + (record_line, prepare_for_building, end_symtab_get_static_block) + (augment_type_symtab): Update. + +2018-07-16 Tom Tromey + + * buildsym.c (~buildsym_compunit): Free the macro table. + (struct buildsym_compunit) : New + methods. + : New member. + (pending_macros): Remove. + (~scoped_free_pendings, get_macro_table, prepare_for_building) + (reset_symtab_globals, end_symtab_get_static_block) + (end_symtab_with_blockvector, augment_type_symtab) + (buildsym_init): Update. + +2018-07-16 Tom Tromey + + * buildsym.c (buildsym_compunit::buildsym_compunit): Add name + parameter. + (buildsym_compunit::set_last_source_file): New method. + : New member. + (prepare_for_building): Remove "name" parameter. + (start_symtab, restart_symtab, reset_symtab_globals): Update. + (last_source_file): Remove. + (set_last_source_file, get_last_source_file): Update. + +2018-07-16 Tom Tromey + + * buildsym.c (prepare_for_building): Add assert. + +2018-07-16 Tom Tromey + + * buildsym.c (~buildsym_compunit): Update. + (struct buildsym_compunit) : Now a unique_xmalloc_ptr. + (start_subfile, patch_subfile_names) + (end_symtab_with_blockvector): Update. + +2018-07-16 Tom Tromey + + * buildsym.c (struct buildsym_compunit): Add constructor, + destructor, initializers. + (start_buildsym_compunit): Remove. + (free_buildsym_compunit): Use "delete". + (start_symtab, restart_symtab): Use "new". + +2018-07-13 Simon Marchi + + * symfile.c (set_objfile_default_section_offset): Remove struct + keyword. + +2018-07-14 Stafford Horne + + * (Responsible Maintainers): Add myself as or1k maintainer. + +2018-07-13 Tom Tromey + + * symfile.c (set_objfile_default_section_offset): Use extra braces + around initializer. + +2018-07-13 Andreas Arnez + + * s390-tdep.c (s390_displaced_step_fixup): Adjust PC for a + non-branching basr. + +2018-07-12 Philippe Waroquiers + + * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add + unittests/cli-utils-selftests.c + * unittests/cli-utils-selftests.c: New file. + +2018-07-12 Philippe Waroquiers + + * NEWS: Mention new commands. Mention change to 'thread apply'. + +2018-07-12 Philippe Waroquiers + + * thread.c (thr_try_catch_cmd): New function. + (thread_apply_all_command): Handle qcs flags. + (thread_apply_command): Handle qcs flags. + (taas_command): New function. + (tfaas_command): New function. + (_initialize_thread): Update to setup the new commands 'taas + and 'tfaas'. Change doc string for 'thread apply'. + +2018-07-12 Philippe Waroquiers + + * stack.c: (trailing_outermost_frame): New function, mostly + extracted from backtrace_command_1. + (leading_innermost_frame): New function. + (backtrace_command_1): Update to call trailing_outermost_frame. + (frame_apply_command_count): New function. + (frame_apply_level_command): New function. + (frame_apply_all_command): New function. + (frame_apply_command): New function. + (faas_command): New function. + (frame_cmd_list): New variable. + (_initialize_stack): Update to setup the new commands 'frame apply' + and 'faas'. + +2018-07-12 Philippe Waroquiers + + * cli-utils.c (number_or_range_parser::get_number): Only handle + numbers or convenience var as numbers. + (parse_flags): New function. + (parse_flags_qcs): New function. + (number_or_range_parser::finished): Ensure parsing end is detected + before end of string. + * cli-utils.h (parse_flags): New function. + (parse_flags_qcs): New function. + (number_or_range_parser): Remove m_finished bool. + (number_or_range_parser::skip_range): Set m_in_range to false. + +2018-07-12 Sergio Durigan Junior + + * ser-tcp.c (try_connect): Declare 'ioarg' as 'u_long' if building + on Windows. + +2018-07-11 Sergio Durigan Junior + Jan Kratochvil + Paul Fertser + Tsutomu Seki + Pedro Alves + + * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add + 'unittests/parse-connection-spec-selftests.c'. + (COMMON_SFILES): Add 'common/netstuff.c'. + (HFILES_NO_SRCDIR): Add 'common/netstuff.h'. + * NEWS (Changes since GDB 8.2): Mention IPv6 support. + * common/netstuff.c: New file. + * common/netstuff.h: New file. + * ser-tcp.c: Include 'netstuff.h' and 'wspiapi.h'. + (wait_for_connect): Update comment. New parameter + 'gdb::optional sock' instead of 'struct serial *scb'. + Use 'sock' directly instead of 'scb->fd'. + (try_connect): New function, with code from 'net_open'. + (net_open): Rewrite main loop to deal with multiple + sockets/addresses. Handle IPv6-style hostnames; implement + support for IPv6 connections. + * unittests/parse-connection-spec-selftests.c: New file. + +2018-07-11 Pedro Alves + + PR gdb/23377 + * remote.c (remote_target::remote_detach_pid): Call + set_current_process. + +2018-07-11 Pedro Alves + + * h8300-tdep.c (h8300_gdbarch_init): Remove + set_gdbarch_ecoff_reg_to_regnum calls. + +2018-07-11 Sergio Durigan Junior + + PR c++/23373 + * c-typeprint.c (c_type_print_base_struct_union): Don't print + offsets/sizes for static members of a class/struct. + +2018-07-11 Alan Hayward + + * target-descriptions.c (tdesc_register_bitsize): Rename. + * target-descriptions.h (tdesc_register_bitsize): Likewise. + * rs6000-tdep.c (rs6000_gdbarch_init): Use new name. + * aarch64-tdep.c (aarch64_get_tdesc_vq): Convert size. + +2018-07-10 Tom Tromey + + * breakpoint.c (moribund_locations): Now static and a + std::vector. + (breakpoint_init_inferior, moribund_breakpoint_here_p) + (build_bpstat_chain, update_global_location_list) + (breakpoint_retire_moribund): Update. + * breakpoint.h (bp_location_p): Remove typedef. Don't declare + VEC. + +2018-07-10 Andrew Burgess + + * riscv-tdep.c (riscv_is_fp_regno_p): New function. + (riscv_register_reggroup_p): Use new function, remove unneeded + parenthesis. + (riscv_push_dummy_call): Extend assert to compare against xlen or + flen based on register type. + +2018-07-10 Andrew Burgess + + * riscv-tdep.c (riscv_print_arg_location): Use TYPE_SAFE_NAME. + +2018-07-09 Andrew Burgess + + * remote.c (show_hardware_watchpoint_limit): New function. + (show_hardware_watchpoint_length_limit): New function. + (show_hardware_breakpoint_limit): New function. + (_initialize_remote): Use add_setshow_zuinteger_unlimited_cmd + where appropriate, update help text. + +2018-07-09 Tom Tromey + + * Makefile.in (CDEPS): Don't mention XM_CDEPS. + (CLIBS): Don't mention NAT_CLIBS. + +2018-07-09 Tom Tromey + + * Makefile.in (ADD_FILES, ADD_DEPS): Remove. + (LIBGDB_OBS, clean mostlyclean): Update. + (gdb$(EXEEXT), insight$(EXEEXT)): Update. + +2018-07-09 Tom Tromey + + * Makefile.in (%.c: %.y): Use ECHO_YACC. + (%.c: %.l): Use ECHO_LEX. Just fail if flex not available. + * silent-rules.mk (ECHO_YACC, ECHO_LEX): New variables. + +2018-07-09 Tom Tromey + + * Makefile.in (ALLDEPFILES): Remove exec.c. + (COMMON_OBS): Remove exec.o. + (COMMON_SFILES): Add exec.c. + +2018-07-09 Tom Tromey + + * Makefile.in (LINT, LINTFLAGS, LINTFILES, lint): Remove. + +2018-07-09 Tom Tromey + + * Makefile.in (clean mostlyclean): Remove stamp-version. + (version.c): Depend on stamp-version. + (stamp-version): New rule, from version.c rule. + +2018-07-09 Tom Tromey + + * Makefile.in (init.c): Depend on stamp-init. + (stamp-init): New rule, from init.c rule. + (clean mostlyclean): Remove stamp-init. + +2018-07-09 Tom Tromey + + * Makefile.in (INIT_FILES): Remove CONFIG_SRCS, + SUBDIR_GCC_COMPILE_SRCS. + +2018-07-09 Tom Tromey + + * Makefile.in (init.c): Remove some unused sed rules. + +2018-07-09 Tom Tromey + + * Makefile.in (TSOBS): Remove. + (INIT_FILES): Update. + (LIBGDB_OBS): Update. + (COMMON_SFILES): Add inflow.c. + (SFILES): Remove inflow.c. + +2018-07-07 Jan Kratochvil + + * contrib/gdb-add-index.sh ($dwarf5): New, use it. + +2018-07-07 Simon Marchi + + * ia64-libunwind-tdep.c (get_reg_name, get_fpreg_name, + get_saveloc_name, is_signal_frame_name, step_name, + init_remote_name, create_addr_space_name, + destroy_addr_space_name, search_unwind_table_name, + find_dyn_list_name): Constify. + +2018-07-05 Simon Marchi + + * darwin-nat.c (darwin_pthread_kill): New function. + (darwin_resume_thread): Use darwin_pthread_kill. + +2018-07-05 Tom de Vries + + * macroexp.c (macro_buffer) : New member function. + +2018-07-04 Tom Tromey + + * darwin-nat.c (darwin_attach_pid): Use exit_inferior. + +2018-07-04 Simon Marchi + + * common/common-defs.h (HAVE_USEFUL_SBRK): Define. + * main.c: Use HAVE_USEFUL_SBRK instead of HAVE_SBRK. + * maint.c: Likewise. + * top.c: Likewise. + +2018-07-04 Joel Brobecker + + * NEWS: Create a new section for the next release branch. + Rename the section of the current branch, now that it has + been cut. + +2018-07-04 Joel Brobecker + + GDB 8.2 branch created (1b919490e8ba30bf1d6941df0ed112b0e557017e): + * version.in: Bump version to 8.2.50.DATE-git. + +2018-07-04 Vyacheslav Barinov + Pedro Alves + + * linux-nat.c (linux_init_ptrace): Rename to ... + (linux_init_ptrace_procfs): ... this. Call + linux_proc_init_warnings. + (linux_nat_target::post_attach) + (linux_nat_target::post_startup_inferior): Adjust. + * nat/linux-procfs.c (linux_proc_init_warnings): Define function. + * nat/linux-procfs.h (linux_proc_init_warnings): Declare function. + +2018-07-04 Tom de Vries + + * dwarf2read.c (error_check_comp_unit_head): Move dwarf version + check ... + (read_comp_unit_head): ... here. + +2018-07-03 Tom Tromey + + * tracepoint.c (process_tracepoint_on_disconnect, start_tracing) + (stop_tracing, tstatus_command) + (find_matching_tracepoint_location, merge_uploaded_tracepoints) + (print_one_static_tracepoint_marker): Update. + * breakpoint.c (static_tracepoints_here, all_tracepoints): Return + std::vector. + * breakpoint.h (breakpoint_p): Remove typedef. Don't declare + VEC. + (all_tracepoints, static_tracepoints_here): Return std::vector. + +2018-07-03 Tom Tromey + + * common/ptid.c (ptid_equal): Remove. + * common/ptid.h (ptid_equal): Don't declare. + * ada-tasks.c: Update. + * breakpoint.c: Update. + * common/agent.c: Update. + * corelow.c: Update. + * darwin-nat-info.c: Update. + * darwin-nat.c: Update. + * dcache.c: Update. + * dtrace-probe.c: Update. + * dummy-frame.c: Update. + * fbsd-nat.c: Update. + * frame.c: Update. + * gdbthread.h: Update. + * gnu-nat.c: Update. + * go32-nat.c: Update. + * inf-loop.c: Update. + * inf-ptrace.c: Update. + * infcall.c: Update. + * infcmd.c: Update. + * inflow.c: Update. + * infrun.c: Update. + * linux-fork.c: Update. + * linux-nat.c: Update. + * linux-thread-db.c: Update. + * mi/mi-cmd-var.c: Update. + * mi/mi-interp.c: Update. + * mi/mi-main.c: Update. + * nto-procfs.c: Update. + * ppc-linux-tdep.c: Update. + * procfs.c: Update. + * python/py-inferior.c: Update. + * python/py-record-btrace.c: Update. + * python/py-record.c: Update. + * ravenscar-thread.c: Update. + * regcache.c: Update. + * remote-sim.c: Update. + * remote.c: Update. + * sol-thread.c: Update. + * solib.c: Update. + * target.c: Update. + * tui/tui-stack.c: Update. + * varobj.c: Update. + * windows-nat.c: Update. + * windows-tdep.c: Update. + +2018-07-03 Tom Tromey + + * common/ptid.c (ptid_match): Remove. + * common/ptid.h (ptid_match): Don't declare. + * fbsd-nat.c: Update. + * infcmd.c: Update. + * infrun.c: Update. + * linux-nat.c: Update. + * record-btrace.c: Update. + * regcache.c: Update. + * remote.c: Update. + +2018-07-03 Tom Tromey + + * common/ptid.c (ptid_tid_p): Remove. + * common/ptid.h (ptid_tid_p): Don't declare. + * sol-thread.c: Update. + +2018-07-03 Tom Tromey + + * common/ptid.c (ptid_lwp_p): Remove. + * common/ptid.h (ptid_lwp_p): Don't declare. + * fbsd-nat.c: Update. + * linux-nat.c: Update. + * nat/linux-procfs.c: Update. + * nat/x86-linux-dregs.c: Update. + * sol-thread.c: Update. + +2018-07-03 Tom Tromey + + * common/ptid.c (ptid_is_pid): Remove. + * common/ptid.h (ptid_is_pid): Don't declare. + * infrun.c: Update. + * linux-nat.c: Update. + * mi/mi-interp.c: Update. + * remote.c: Update. + * thread.c: Update. + +2018-07-03 Tom Tromey + + * common/ptid.c (ptid_get_tid): Remove. + * common/ptid.h (ptid_get_tid): Don't declare. + * ada-tasks.c: Update. + * aix-thread.c: Update. + * bsd-uthread.c: Update. + * darwin-nat.c: Update. + * fbsd-nat.c: Update. + * i386-darwin-nat.c: Update. + * infrun.c: Update. + * linux-tdep.c: Update. + * nto-procfs.c: Update. + * ppc-ravenscar-thread.c: Update. + * python/py-infthread.c: Update. + * ravenscar-thread.c: Update. + * sol-thread.c: Update. + * sparc-ravenscar-thread.c: Update. + * windows-nat.c: Update. + +2018-07-03 Tom Tromey + + * common/ptid.c (ptid_get_lwp): Remove. + * common/ptid.h (ptid_get_lwp): Don't declare. + * aarch64-linux-nat.c: Update. + * ada-tasks.c: Update. + * aix-thread.c: Update. + * amd64-linux-nat.c: Update. + * arm-linux-nat.c: Update. + * corelow.c: Update. + * fbsd-nat.c: Update. + * fbsd-tdep.c: Update. + * gnu-nat.c: Update. + * i386-cygwin-tdep.c: Update. + * i386-gnu-nat.c: Update. + * i386-linux-nat.c: Update. + * ia64-linux-nat.c: Update. + * inf-ptrace.c: Update. + * infrun.c: Update. + * linux-fork.c: Update. + * linux-nat.c: Update. + * linux-tdep.c: Update. + * linux-thread-db.c: Update. + * mips-linux-nat.c: Update. + * nat/aarch64-linux-hw-point.c: Update. + * nat/aarch64-linux.c: Update. + * nat/linux-btrace.c: Update. + * nat/linux-osdata.c: Update. + * nat/linux-procfs.c: Update. + * nat/x86-linux-dregs.c: Update. + * obsd-nat.c: Update. + * ppc-fbsd-nat.c: Update. + * ppc-linux-nat.c: Update. + * procfs.c: Update. + * python/py-infthread.c: Update. + * ravenscar-thread.c: Update. + * remote.c: Update. + * s390-linux-nat.c: Update. + * sol-thread.c: Update. + * sol2-tdep.c: Update. + * spu-linux-nat.c: Update. + * x86-linux-nat.c: Update. + * xtensa-linux-nat.c: Update. + +2018-07-03 Tom Tromey + + * common/ptid.c (ptid_get_pid): Remove. + * common/ptid.h (ptid_get_pid): Don't declare. + * aarch64-linux-nat.c: Update. + * ada-lang.c: Update. + * aix-thread.c: Update. + * alpha-bsd-nat.c: Update. + * amd64-fbsd-nat.c: Update. + * amd64-linux-nat.c: Update. + * arm-linux-nat.c: Update. + * arm-nbsd-nat.c: Update. + * auxv.c: Update. + * break-catch-syscall.c: Update. + * breakpoint.c: Update. + * bsd-uthread.c: Update. + * corelow.c: Update. + * ctf.c: Update. + * darwin-nat.c: Update. + * fbsd-nat.c: Update. + * fbsd-tdep.c: Update. + * gcore.c: Update. + * gnu-nat.c: Update. + * hppa-nbsd-nat.c: Update. + * hppa-obsd-nat.c: Update. + * i386-fbsd-nat.c: Update. + * ia64-linux-nat.c: Update. + * inf-ptrace.c: Update. + * infcmd.c: Update. + * inferior.c: Update. + * inferior.h: Update. + * inflow.c: Update. + * infrun.c: Update. + * linux-fork.c: Update. + * linux-nat.c: Update. + * linux-tdep.c: Update. + * linux-thread-db.c: Update. + * m68k-bsd-nat.c: Update. + * mi/mi-interp.c: Update. + * mi/mi-main.c: Update. + * mips-linux-nat.c: Update. + * mips-nbsd-nat.c: Update. + * mips64-obsd-nat.c: Update. + * nat/aarch64-linux-hw-point.c: Update. + * nat/aarch64-linux.c: Update. + * nat/linux-btrace.c: Update. + * nat/linux-osdata.c: Update. + * nat/linux-procfs.c: Update. + * nat/x86-linux-dregs.c: Update. + * nto-procfs.c: Update. + * obsd-nat.c: Update. + * ppc-linux-nat.c: Update. + * ppc-nbsd-nat.c: Update. + * ppc-obsd-nat.c: Update. + * proc-service.c: Update. + * procfs.c: Update. + * python/py-inferior.c: Update. + * python/py-infthread.c: Update. + * ravenscar-thread.c: Update. + * record.c: Update. + * remote-sim.c: Update. + * remote.c: Update. + * rs6000-nat.c: Update. + * s390-linux-nat.c: Update. + * sh-nbsd-nat.c: Update. + * sol-thread.c: Update. + * sparc-nat.c: Update. + * sparc64-tdep.c: Update. + * spu-linux-nat.c: Update. + * spu-tdep.c: Update. + * target-debug.h: Update. + * target.c: Update. + * thread.c: Update. + * tid-parse.c: Update. + * tracefile-tfile.c: Update. + * vax-bsd-nat.c: Update. + * windows-nat.c: Update. + * x86-linux-nat.c: Update. + * x86-nat.c: Update. + +2018-07-03 Tom Tromey + + * common/ptid.c (pid_to_ptid): Remove. + * common/ptid.h (pid_to_ptid): Don't declare. + * aix-thread.c: Update. + * arm-linux-nat.c: Update. + * common/ptid.c: Update. + * common/ptid.h: Update. + * corelow.c: Update. + * ctf.c: Update. + * darwin-nat.c: Update. + * fbsd-nat.c: Update. + * fork-child.c: Update. + * gnu-nat.c: Update. + * go32-nat.c: Update. + * inf-ptrace.c: Update. + * infcmd.c: Update. + * inferior.c: Update. + * infrun.c: Update. + * linux-fork.c: Update. + * linux-nat.c: Update. + * nat/aarch64-linux-hw-point.c: Update. + * nat/fork-inferior.c: Update. + * nat/x86-linux-dregs.c: Update. + * nto-procfs.c: Update. + * obsd-nat.c: Update. + * procfs.c: Update. + * progspace.c: Update. + * remote.c: Update. + * rs6000-nat.c: Update. + * s390-linux-nat.c: Update. + * sol-thread.c: Update. + * spu-linux-nat.c: Update. + * target.c: Update. + * top.c: Update. + * tracefile-tfile.c: Update. + * windows-nat.c: Update. + +2018-07-03 Tom Tromey + + * common/ptid.h (ptid_build): Don't declare. + * common/ptid.c (ptid_build): Remove. + * aix-thread.c: Update. + * bsd-kvm.c: Update. + * bsd-uthread.c: Update. + * common/agent.c: Update. + * common/ptid.c: Update. + * common/ptid.h: Update. + * corelow.c: Update. + * darwin-nat.c: Update. + * fbsd-nat.c: Update. + * gnu-nat.c: Update. + * linux-fork.c: Update. + * linux-nat.c: Update. + * linux-thread-db.c: Update. + * nat/linux-osdata.c: Update. + * nat/linux-procfs.c: Update. + * nto-procfs.c: Update. + * obsd-nat.c: Update. + * proc-service.c: Update. + * procfs.c: Update. + * ravenscar-thread.c: Update. + * remote-sim.c: Update. + * remote.c: Update. + * sol-thread.c: Update. + * target.c: Update. + * windows-nat.c: Update. + +2018-07-03 Tom Tromey + + * infrun.c (follow_exec): Use exit_inferior_silent. + * inferior.c (exit_inferior_num_silent): Remove. + * inferior.h (exit_inferior_num_silent): Don't declare. + 2018-07-03 Tom Tromey PR cli/23340: