Fix PR12616 - gdb does not implement DW_AT_data_bit_offset
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index dbf4eb3ec11d59cd185abea2c0fd0d8ec2059511..22f02cccd50e2e89cf168d31a816c6fdc208308c 100644 (file)
+2016-11-24  Andreas Arnez  <arnez@linux.vnet.ibm.com>
+
+       PR gdb/12616
+       * dwarf2read.c (dwarf2_add_field): Handle the DWARF V4 attribute
+       DW_AT_data_bit_offset.
+
+2016-11-23  Pedro Alves  <palves@redhat.com>
+
+       * Makefile.in (SFILES): Add common/run-time-clock.c.
+       (HFILES_NO_SRCDIR): Add common/run-time-clock.h.
+       (COMMON_OBS): Add run-time-clock.o.
+       * common/run-time-clock.c, common/run-time-clock.h: New files.
+       * defs.h (struct timeval, print_transfer_performance): Delete
+       declarations.
+       * event-loop.c (struct gdb_timer) <when>: Now a
+       std::chrono::steady_clock::time_point.
+       (create_timer): use std::chrono::steady_clock instead of
+       gettimeofday.  Use new instead of malloc.
+       (delete_timer): Use delete instead of xfree.
+       (duration_cast_timeval): New.
+       (update_wait_timeout): Use std::chrono::steady_clock instead of
+       gettimeofday.
+       * maint.c: Include <chrono> instead of "gdb_sys_time.h", <time.h>
+       and "timeval-utils.h".
+       (scoped_command_stats::~scoped_command_stats)
+       (scoped_command_stats::scoped_command_stats): Use
+       std::chrono::steady_clock instead of gettimeofday.  Use
+       user_cpu_time_clock instead of get_run_time.
+       * maint.h: Include "run-time-clock.h" and <chrono>.
+       (scoped_command_stats): <m_start_cpu_time>: Now a
+       user_cpu_time_clock::time_point.
+       <m_start_wall_time>: Now a std::chrono::steady_clock::time_point.
+       * mi/mi-main.c: Include "run-time-clock.h" and <chrono> instead of
+       "gdb_sys_time.h" and <sys/resource.h>.
+       (rusage): Delete.
+       (mi_execute_command): Use new instead of XNEW.
+       (mi_load_progress): Use std::chrono::steady_clock instead of
+       gettimeofday.
+       (timestamp): Rewrite in terms of std::chrono::steady_clock,
+       user_cpu_time_clock and system_cpu_time_clock.
+       (timeval_diff): Delete.
+       (print_diff): Adjust to use std::chrono::steady_clock,
+       user_cpu_time_clock and system_cpu_time_clock.
+       * mi/mi-parse.h: Include "run-time-clock.h" and <chrono> instead
+       of "gdb_sys_time.h".
+       (struct mi_timestamp): Change fields types to
+       std::chrono::steady_clock::time_point, user_cpu_time_clock::time
+       and system_cpu_time_clock::time_point, instead of struct timeval.
+       * symfile.c: Include <chrono> instead of <time.h> and
+       "gdb_sys_time.h".
+       (struct time_range): New.
+       (generic_load): Use std::chrono::steady_clock instead of
+       gettimeofday.
+       (print_transfer_performance): Replace timeval parameters with a
+       std::chrono::steady_clock::duration parameter.  Adjust.
+       * utils.c: Include <chrono> instead of "timeval-utils.h",
+       "gdb_sys_time.h", and <time.h>.
+       (prompt_for_continue_wait_time): Now a
+       std::chrono::steady_clock::duration.
+       (defaulted_query, prompt_for_continue): Use
+       std::chrono::steady_clock instead of
+       gettimeofday/timeval_sub/timeval_add.
+       (reset_prompt_for_continue_wait_time): Use
+       std::chrono::steady_clock::duration instead of struct timeval.
+       (get_prompt_for_continue_wait_time): Return a
+       std::chrono::steady_clock::duration instead of struct timeval.
+       (vfprintf_unfiltered): Use std::chrono::steady_clock instead of
+       gettimeofday.  Use std::string.  Use '.' instead of ':'.
+       * utils.h: Include <chrono>.
+       (get_prompt_for_continue_wait_time): Return a
+       std::chrono::steady_clock::duration instead of struct timeval.
+
+2016-11-22  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * Makefile.in: Fix whitespace formatting.
+
+2016-11-22  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * Makefile.in (ALL_64_TARGET_OBS, ALL_TARGET_OBS,
+       HFILES_NO_SRCDIR, ALLDEPFILES): Rename files.
+       * alphabsd-nat.c: Rename to ...
+       * alpha-bsd-nat.c: ... this, adjust include.
+       * alphabsd-tdep.c: Rename to ...
+       * alpha-bsd-tdep.c: ... this, adjust include.
+       * alphabsd-tdep.h: Rename to ...
+       * alpha-bsd-tdep.h: ... this, adjust include barrier and comment.
+       * alphafbsd-tdep.c: Rename to ...
+       * alpha-fbsd-tdep.c: ... this.
+       * alphanbsd-tdep.c: Rename to ...
+       * alpha-nbsd-tdep.c: ... this, adjust include.
+       * alphaobsd-tdep.c: Rename to ...
+       * alpha-obsd-tdep.c: ... this, adjust include.
+       * amd64bsd-nat.c: Rename to ...
+       * amd64-bsd-nat.c: ... this, adjust include.
+       * amd64fbsd-nat.c: Rename to ...
+       * amd64-fbsd-nat.c: ... this, adjust include.
+       * amd64fbsd-tdep.c: Rename to ...
+       * amd64-fbsd-tdep.c: ... this, adjust include.
+       * amd64nbsd-nat.c: Rename to ...
+       * amd64-nbsd-nat.c: ... this.
+       * amd64nbsd-tdep.c: Rename to ...
+       * amd64-nbsd-tdep.c: ... this.
+       * amd64obsd-nat.c: Rename to ...
+       * amd64-obsd-nat.c: ... this.
+       * amd64obsd-tdep.c: Rename to ...
+       * amd64-obsd-tdep.c: ... this.
+       * amd64-tdep.h: Update comments.
+       * armbsd-tdep.c: Rename to ...
+       * arm-bsd-tdep.c: ... this.
+       * armnbsd-nat.c: Rename to ...
+       * arm-nbsd-nat.c: ... this.
+       * armnbsd-tdep.c: Rename to ...
+       * arm-nbsd-tdep.c: ... this.
+       * armobsd-tdep.c: Rename to ...
+       * arm-obsd-tdep.c: ... this.
+       * arm-tdep.h: Update comments.
+       * hppabsd-tdep.c: Rename to ...
+       * hppa-bsd-tdep.c: ... this, adjust include.
+       * hppabsd-tdep.h: Rename to ...
+       * hppa-bsd-tdep.h: ... this, adjust include barrier and comment.
+       * hppanbsd-nat.c: Rename to ...
+       * hppa-nbsd-nat.c: ... this.
+       * hppanbsd-tdep.c: Rename to ...
+       * hppa-nbsd-tdep.c: ... this, adjust include.
+       * hppaobsd-nat.c: Rename to ...
+       * hppa-obsd-nat.c: ... this.
+       * hppaobsd-tdep.c: Rename to ...
+       * hppa-obsd-tdep.c: ... this, adjust include.
+       * i386bsd-nat.c: Rename to ...
+       * i386-bsd-nat.c: ... this, adjust include.
+       * i386bsd-nat.h: Rename to ...
+       * i386-bsd-nat.h: ... this, adjust include barrier and comment.
+       * i386bsd-tdep.c: Rename to ...
+       * i386-bsd-tdep.c: ... this.
+       * i386fbsd-nat.c: Rename to ...
+       * i386-fbsd-nat.c: ... this, adjust include.
+       * i386fbsd-tdep.c: Rename to ...
+       * i386-fbsd-tdep.c: ... this, adjust include.
+       * i386fbsd-tdep.h: Rename to ...
+       * i386-fbsd-tdep.h: ... this, adjust include barrier and comment.
+       * i386gnu-nat.c: Rename to ...
+       * i386-gnu-nat.c: ... this.
+       * i386gnu-tdep.c: Rename to ...
+       * i386-gnu-tdep.c: ... this.
+       * i386nbsd-nat.c: Rename to ...
+       * i386-nbsd-nat.c: ... this, adjust include.
+       * i386nbsd-tdep.c: Rename to ...
+       * i386-nbsd-tdep.c: ... this.
+       * i386obsd-nat.c: Rename to ...
+       * i386-obsd-nat.c: ... this, adjust include.
+       * i386obsd-tdep.c: Rename to ...
+       * i386-obsd-tdep.c: ... this.
+       * i386v4-nat.c: Rename to ...
+       * i386-v4-nat.c: ... this.
+       * i386-tdep.h: Update comments.
+       * m68k-tdep.h: Update comments.
+       * m68kbsd-nat.c: Rename to ...
+       * m68k-bsd-nat.c: ... this.
+       * m68kbsd-tdep.c: Rename to ...
+       * m68k-bsd-tdep.c: ... this.
+       * m68klinux-nat.c: Rename to ...
+       * m68k-linux-nat.c: ... this.
+       * m68klinux-tdep.c: Rename to ...
+       * m68k-linux-tdep.c: ... this.
+       * m88kbsd-nat.c: Rename to ...
+       * m88k-bsd-nat.c: ... this.
+       * mipsnbsd-nat.c: Rename to ...
+       * mips-nbsd-nat.c: ... this, adjust include.
+       * mipsnbsd-tdep.c: Rename to ...
+       * mips-nbsd-tdep.c: ... this, adjust include.
+       * mipsnbsd-tdep.h: Rename to ...
+       * mips-nbsd-tdep.h: ... this, adjust include barrier and comment.
+       * mips64obsd-nat.c: Rename to ...
+       * mips64-obsd-nat.c: ... this.
+       * mips64obsd-tdep.c: Rename to ...
+       * mips64-obsd-tdep.c: ... this.
+       * ppcfbsd-nat.c: Rename to ...
+       * ppc-fbsd-nat.c: ... this, adjust include.
+       * ppcfbsd-tdep.c: Rename to ...
+       * ppc-fbsd-tdep.c: ... this, adjust include.
+       * ppcfbsd-tdep.h: Rename to ...
+       * ppc-fbsd-tdep.h: ... this, adjust include barrier and comment.
+       * ppcnbsd-nat.c: Rename to ...
+       * ppc-nbsd-nat.c: ... this, adjust include.
+       * ppcnbsd-tdep.c: Rename to ...
+       * ppc-nbsd-tdep.c: ... this, adjust include.
+       * ppcnbsd-tdep.h: Rename to ...
+       * ppc-nbsd-tdep.h: ... this, adjust include barrier and comment.
+       * ppcobsd-nat.c: Rename to ...
+       * ppc-obsd-nat.c: ... this, adjust include.
+       * ppcobsd-tdep.c: Rename to ...
+       * ppc-obsd-tdep.c: ... this, adjust include.
+       * ppcobsd-tdep.h: Rename to ...
+       * ppc-obsd-tdep.h: ... this, adjust include barrier and comment.
+       * shnbsd-nat.c: Rename to ...
+       * sh-nbsd-nat.c: ... this.
+       * shnbsd-tdep.c: Rename to ...
+       * sh-nbsd-tdep.c: ... this.
+       * sparcnbsd-nat.c: Rename to ...
+       * sparc-nbsd-nat.c: ... this.
+       * sparcnbsd-tdep.c: Rename to ...
+       * sparc-nbsd-tdep.c: ... this.
+       * sparcobsd-tdep.c: Rename to ...
+       * sparc-obsd-tdep.c: ... this.
+       * sparc64fbsd-nat.c: Rename to ...
+       * sparc64-fbsd-nat.c: ... this.
+       * sparc64fbsd-tdep.c: Rename to ...
+       * sparc64-fbsd-tdep.c: ... this.
+       * sparc64nbsd-nat.c: Rename to ...
+       * sparc64-nbsd-nat.c: ... this.
+       * sparc64nbsd-tdep.c: Rename to ...
+       * sparc64-nbsd-tdep.c: ... this.
+       * sparc64obsd-nat.c: Rename to ...
+       * sparc64-obsd-nat.c: ... this.
+       * sparc64obsd-tdep.c: Rename to ...
+       * sparc64-obsd-tdep.c: ... this.
+       * sparc64-tdep.h: Update comments.
+       * vaxbsd-nat.c: Rename to ...
+       * vax-bsd-nat.c: ... this.
+       * vaxnbsd-tdep.c: Rename to ...
+       * vax-nbsd-tdep.c: ... this.
+       * vaxobsd-tdep.c: Rename to ...
+       * vax-obsd-tdep.c: ... this.
+       * x86bsd-nat.h: Rename to ...
+       * x86-bsd-nat.h: ... this, adjust include barrier and comment.
+       * x86bsd-nat.c: Rename to ...
+       * x86-bsd-nat.c: ... this, adjust include.
+       * configure.tgt: Update renamed files.
+       * config/alpha/fbsd.mh: Update renamed files.
+       * config/alpha/nbsd.mh: Update renamed files.
+       * config/arm/nbsdelf.mh: Update renamed files.
+       * config/djgpp/fnchange.lst: Update renamed files.
+       * config/i386/fbsd.mh: Update renamed files.
+       * config/i386/fbsd64.mh: Update renamed files.
+       * config/i386/i386gnu.mh: Update renamed files.
+       * config/i386/i386sol2.mh: Update renamed files.
+       * config/i386/nbsd64.mh: Update renamed files.
+       * config/i386/nbsdelf.mh: Update renamed files.
+       * config/i386/obsd.mh: Update renamed files.
+       * config/i386/obsd64.mh: Update renamed files.
+       * config/i386/sol2-64.mh: Update renamed files.
+       * config/m68k/linux.mh: Update renamed files.
+       * config/m68k/nbsdelf.mh: Update renamed files.
+       * config/m68k/obsd.mh: Update renamed files.
+       * config/m88k/obsd.mh: Update renamed files.
+       * config/mips/nbsd.mh: Update renamed files.
+       * config/mips/obsd64.mh: Update renamed files.
+       * config/pa/nbsd.mh: Update renamed files.
+       * config/pa/obsd.mh: Update renamed files.
+       * config/powerpc/fbsd.mh: Update renamed files.
+       * config/powerpc/nbsd.mh: Update renamed files.
+       * config/powerpc/obsd.mh: Update renamed files.
+       * config/sh/nbsd.mh: Update renamed files.
+       * config/sparc/fbsd.mh: Update renamed files.
+       * config/sparc/nbsd64.mh: Update renamed files.
+       * config/sparc/nbsdelf.mh: Update renamed files.
+       * config/sparc/obsd64.mh: Update renamed files.
+       * config/vax/nbsdelf.mh: Update renamed files.
+       * config/vax/obsd.mh: Update renamed files.
+
+2016-11-22  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * Makefile.in: Add comment about file lists ordering.
+       (SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_MI_OBS, SUBDIR_MI_SRCS,
+       SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS, SUBDIR_GCC_COMPILE_OBS,
+       SUBDIR_GCC_COMPILE_SRCS, SUBDIR_GUILE_OBS, SUBDIR_GUILE_SRCS,
+       SUBDIR_PYTHON_OBS, SUBDIR_PYTHON_SRCS, SUBDIR_GDBTK_OBS,
+       SUBDIR_GDBTK_SRCS, XMLFILES, REMOTE_OBS, ALL_64_TARGET_OBS,
+       ALL_TARGET_OBS, SFILES, HFILES_NO_SRCDIR, HFILES_WITH_SRCDIR,
+       COMMON_OBS, YYFILES, YYOBJ, generated_files, ALLDEPFILES):
+       Flatten list and order alphabetically.
+       * data-directory/Makefile.in: Add comment about file lists
+       ordering.
+       (GEN_SYSCALLS_FILES, PYTHON_FILE_LIST): Flatten list and order
+       alphabetically.
+
+2016-11-22  Ambrogino Modigliani  <ambrogino.modigliani@gmail.com>
+
+        * contrib/expect-read1.sh: Fix spelling in comments.
+        * gdb_buildall.sh: Fix spelling in comments.
+        * gdb_mbuild.sh: Fix spelling in comments.
+
+2016-11-22  Ambrogino Modigliani  <ambrogino.modigliani@gmail.com>
+
+        * configure.ac: Fix spelling in comments.
+        * configure: Regenerate.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * gdbarch.sh (software_single_step): Change parameter from frame_info
+       to regcache.
+       * gdbarch.c, gdbarch.h: Regenerated.
+       * aarch64-tdep.c (aarch64_software_single_step): Change parameter
+       from frame_info to regcache.  Don't call get_current_regcache.
+       * alpha-tdep.c (alpha_deal_with_atomic_sequence): Likewise.
+       (alpha_software_single_step): Likewise.
+       * alpha-tdep.h (alpha_software_single_step): Update declaration.
+       * arm-linux-tdep.c (arm_linux_software_single_step): Likewise.
+       * arm-tdep.c (arm_software_single_step): Likewise.
+       * arm-tdep.h (arm_software_single_step): Likewise.
+       * breakpoint.c (insert_single_step_breakpoint): Pass regcache to
+       gdbarch_software_single_step.
+       * cris-tdep.c (cris_software_single_step): Change parameter from
+       frame_info to regcache.  Don't call get_current_regcache.
+       * mips-tdep.c (mips_software_single_step): Likewise.
+       * mips-tdep.h (mips_software_single_step): Update declaration.
+       * moxie-tdep.c (moxie_software_single_step): Likewise.
+       * nios2-tdep.c (nios2_software_single_step): Likewise.
+       * ppc-tdep.h (ppc_deal_with_atomic_sequence): Update declaration.
+       * rs6000-aix-tdep.c (rs6000_software_single_step): Likewise.
+       * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Likewise.
+       * s390-linux-tdep.c (s390_software_single_step): Likewise.
+       * sparc-tdep.c (sparc_software_single_step): Likewise.
+       * spu-tdep.c (spu_software_single_step): Likewise.
+       * tic6x-tdep.c (tic6x_software_single_step): Likewise.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * spu-tdep.c (spu_software_single_step): Call get_regcache_arch
+       instead of get_frame_arch.  Call regcache_read_pc instead of
+       get_frame_pc.  Call regcache_raw_get_unsigned instead of
+       get_frame_register_unsigned.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * tic6x-tdep.c (tic6x_condition_true): Replace frame with
+       regcache.  Call regcache_raw_get_signed instead of
+       get_frame_register_signed.
+       (tic6x_get_next_pc): Likewise.  Caller updated.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * rs6000-aix-tdep.c (branch_dest): Replace parameter frame with
+       regcache.  Call get_regcache_arch instead of get_frame_arch.
+       Call regcache_raw_get_unsigned instead of
+       get_frame_register_unsigned.
+       (rs6000_software_single_step): Likewise.
+       * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Call
+       get_regcache_arch instead of get_frame_arch.  Call
+       regcache_read_pc instead of get_frame_pc.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * s390-linux-tdep.c (s390_software_single_step): Call
+       get_regcache_arch instead of get_frame_arch.  Call
+       regcache_read_pc instead of get_frame_pc.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * sparc-tdep.c (sparc_analyze_control_transfer): Replace parameter
+       frame with regcache.  Call get_current_frame.
+       (sparc_software_single_step): Call get_regcache_arch instead of
+       get_frame_arch.  Call regcache_raw_get_unsigned instead of
+       get_frame_register_unsigned.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * nios2-tdep.c (nios2_get_next_pc): Replace parameter frame
+       with regcache.  Call regcache_raw_get_signed instead of
+       get_frame_register_unsigned.
+       (nios2_software_single_step): Call get_regcache_arch
+       instead of get_frame_arch.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * moxie-tdep.c (moxie_software_single_step): Call
+       get_regcache_arch instead of get_frame_arch.  Call
+       regcache_read_pc instead of get_frame_pc.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * mips-tdep.c (mips32_bc1_pc): Replace parameter frame with
+       regcache.  Call regcache_raw_get_unsigned instead of
+       get_frame_register_unsigned.
+       (mips32_next_pc): Likewise.
+       (micromips_bc1_pc): Likewise.
+       (micromips_next_pc): Likewise.
+       (extended_mips16_next_pc): Likewise.
+       (mips16_next_pc): Likewise.
+       (mips_next_pc): Likewise.
+       (mips_software_single_step): Call get_regcache_arch instead
+       of get_frame_arch.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * cris-tdep.c (find_step_target): Replace parameter frame
+       with regcache.  Call get_regcache_arch instead of
+       get_frame_arch.  Call regcache_raw_get_unsigned instead of
+       get_frame_register_unsigned.
+       (cris_software_single_step): Call get_regcache_arch instead
+       of get_frame_arch.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * alpha-tdep.c (alpha_deal_with_atomic_sequence): Call
+       get_regcache_arch instead of get_frame_arch.  Call
+       regcache_read_pc instead of get_frame_pc.
+       (alpha_next_pc): Replace parameter frame with regcache.
+       Call regcache_raw_get_unsigned instead of
+       get_frame_register_unsigned.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * aarch64-tdep.c (aarch64_software_single_step): Call
+       get_regcache_arch instead of get_frame_arch.  Call
+       regcache_read_pc instead of get_frame_pc.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * regcache.c (regcache_raw_get_signed): New function.
+       * regcache.h (regcache_raw_get_signed): Declare.
+
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * value.c (value_from_component): Use VALUE_NEXT_FRAME_ID
+       instead of VALUE_FROM_ID.
+
+2016-11-21  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * Makefile.in (%o: $(srcdir)/mi/%.c): Add missing POSTCOMPILE
+       step.
+
+2016-11-21  Yao Qi  <yao.qi@linaro.org>
+
+       * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
+       Don't call value_from_contents_and_address and
+       set_value_address.  Call value_from_component.
+       * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer):
+       Likewise.
+       * value.c (value_from_component): New function.
+       * value.h (value_from_component): Likewise.
+       * valarith.c (value_subscripted_rvalue): Call
+       value_from_component.
+
+2016-11-19  Joel Brobecker  <brobecker@adacore.com>
+
+       * contrib/ari/gdb_ari.sh: Add detection of printf_vma and
+       sprintf_vma.
+
+2016-11-18  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * Makefile.in (%.o: $(srcdir)/gdbtk/generic/%.c): Fix typo.
+
+2016-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       (PYTHON_CFLAGS): Move up.
+       (%.o: $(srcdir)/arch/%.c): New rule.
+       (%.o: $(srcdir)/cli/%.c): New rule.
+       (%.o: $(srcdir)/common/%.c): New rule.
+       (%.o: $(srcdir)/compile/%.c): New rule.
+       (%.o: $(srcdir)/gdbtk/generic/%.c): New rule.
+       (%.o: $(srcdir)/guile/%.c): New rule.
+       (%.o: $(srcdir)/mi/%.c): New rule.
+       (%.o: $(srcdir)/nat/%.c): New rule.
+       (%.o: $(srcdir)/python/%.c): New rule.
+       (%.o: $(srcdir)/target/%.c): New rule.
+       (%.o: $(srcdir)/tui/%.c): New rule.
+       (cli-cmds.o): Remove.
+       (cli-decode.o): Likewise.
+       (cli-dump.o): Likewise.
+       (cli-interp.o): Likewise.
+       (cli-logging.o): Likewise.
+       (cli-script.o): Likewise.
+       (cli-setshow.o): Likewise.
+       (cli-utils.o): Likewise.
+       (compile.o): Likewise.
+       (compile-c-types.o): Likewise.
+       (compile-c-symbols.o): Likewise.
+       (compile-object-load.o): Likewise.
+       (compile-object-run.o): Likewise.
+       (compile-loc2c.o): Likewise.
+       (compile-c-support.o): Likewise.
+       (gdbtk.o): Likewise.
+       (gdbtk-bp.o): Likewise.
+       (gdbtk-cmds.o): Likewise.
+       (gdbtk-hooks.o): Likewise.
+       (gdbtk-interp.o): Likewise.
+       (gdbtk-main.o): Likewise.
+       (gdbtk-register.o): Likewise.
+       (gdbtk-stack.o): Likewise.
+       (gdbtk-varobj.o): Likewise.
+       (gdbtk-wrapper.o): Likewise.
+       (mi-cmd-break.o): Likewise.
+       (mi-cmd-catch.o): Likewise.
+       (mi-cmd-disas.o): Likewise.
+       (mi-cmd-env.o): Likewise.
+       (mi-cmd-file.o): Likewise.
+       (mi-cmd-info.o): Likewise.
+       (mi-cmds.o): Likewise.
+       (mi-cmd-stack.o): Likewise.
+       (mi-cmd-target.o): Likewise.
+       (mi-cmd-var.o): Likewise.
+       (mi-console.o): Likewise.
+       (mi-getopt.o): Likewise.
+       (mi-interp.o): Likewise.
+       (mi-main.o): Likewise.
+       (mi-out.o): Likewise.
+       (mi-parse.o): Likewise.
+       (mi-symbol-cmds.o): Likewise.
+       (mi-common.o): Likewise.
+       (signals.o): Likewise.
+       (common-utils.o): Likewise.
+       (gdb_vecs.o): Likewise.
+       (xml-utils.o): Likewise.
+       (ptid.o): Likewise.
+       (buffer.o): Likewise.
+       (filestuff.o): Likewise.
+       (format.o): Likewise.
+       (vec.o): Likewise.
+       (print-utils.o): Likewise.
+       (rsp-low.o): Likewise.
+       (errors.o): Likewise.
+       (common-debug.o): Likewise.
+       (cleanups.o): Likewise.
+       (common-exceptions.o
+       (posix-strerror.o): Likewise.
+       (mingw-strerror.o): Likewise.
+       (btrace-common.o): Likewise.
+       (fileio.o): Likewise.
+       (common-regcache.o): Likewise.
+       (signals-state-save-restore.o): Likewise.
+       (new-op.o): Likewise.
+       (waitstatus.o): Likewise.
+       (arm.o): Likewise.
+       (arm-linux.o): Likewise.
+       (arm-get-next-pcs.o): Likewise.
+       (x86-dregs.o): Likewise.
+       (linux-btrace.o): Likewise.
+       (linux-osdata.o): Likewise.
+       (linux-procfs.o): Likewise.
+       (linux-ptrace.o): Likewise.
+       (linux-waitpid.o): Likewise.
+       (mips-linux-watch.o): Likewise.
+       (ppc-linux.o): Likewise.
+       (linux-personality.o): Likewise.
+       (x86-linux.o): Likewise.
+       (x86-linux-dregs.o): Likewise.
+       (amd64-linux-siginfo.o): Likewise.
+       (linux-namespaces.o): Likewise.
+       (aarch64-linux-hw-point.o): Likewise.
+       (aarch64-linux.o): Likewise.
+       (aarch64-insn.o): Likewise.
+       (tui.o): Likewise.
+       (tui-command.o): Likewise.
+       (tui-data.o): Likewise.
+       (tui-disasm.o): Likewise.
+       (tui-file.o): Likewise.
+       (tui-hooks.o): Likewise.
+       (tui-interp.o): Likewise.
+       (tui-io.o): Likewise.
+       (tui-layout.o): Likewise.
+       (tui-out.o): Likewise.
+       (tui-regs.o): Likewise.
+       (tui-source.o): Likewise.
+       (tui-stack.o): Likewise.
+       (tui-win.o): Likewise.
+       (tui-windata.o): Likewise.
+       (tui-wingeneral.o): Likewise.
+       (tui-winsource.o): Likewise.
+       (guile.o): Likewise.
+       (scm-arch.o): Likewise.
+       (scm-auto-load.o): Likewise.
+       (scm-block.o): Likewise.
+       (scm-breakpoint.o): Likewise.
+       (scm-cmd.o): Likewise.
+       (scm-disasm.o): Likewise.
+       (scm-exception.o): Likewise.
+       (scm-frame.o): Likewise.
+       (scm-gsmob.o): Likewise.
+       (scm-iterator.o): Likewise.
+       (scm-lazy-string.o): Likewise.
+       (scm-math.o): Likewise.
+       (scm-objfile.o): Likewise.
+       (scm-param.o): Likewise.
+       (scm-ports.o): Likewise.
+       (scm-pretty-print.o): Likewise.
+       (scm-progspace.o): Likewise.
+       (scm-safe-call.o): Likewise.
+       (scm-string.o): Likewise.
+       (scm-symbol.o): Likewise.
+       (scm-symtab.o): Likewise.
+       (scm-type.o): Likewise.
+       (scm-utils.o): Likewise.
+       (scm-value.o): Likewise.
+       (python.o): Likewise.
+       (py-arch.o): Likewise.
+       (py-auto-load.o): Likewise.
+       (py-block.o): Likewise.
+       (py-bpevent.o): Likewise.
+       (py-breakpoint.o): Likewise.
+       (py-cmd.o): Likewise.
+       (py-continueevent.o): Likewise.
+       (py-xmethods.o): Likewise.
+       (py-event.o): Likewise.
+       (py-evtregistry.o): Likewise.
+       (py-evts.o): Likewise.
+       (py-exitedevent.o): Likewise.
+       (py-finishbreakpoint.o): Likewise.
+       (py-frame.o): Likewise.
+       (py-framefilter.o): Likewise.
+       (py-function.o): Likewise.
+       (py-gdb-readline.o): Likewise.
+       (py-inferior.o): Likewise.
+       (py-infevents.o): Likewise.
+       (py-infthread.o): Likewise.
+       (py-lazy-string.o): Likewise.
+       (py-linetable.o): Likewise.
+       (py-newobjfileevent.o): Likewise.
+       (py-objfile.o): Likewise.
+       (py-param.o): Likewise.
+       (py-prettyprint.o): Likewise.
+       (py-progspace.o): Likewise.
+       (py-signalevent.o): Likewise.
+       (py-stopevent.o): Likewise.
+       (py-symbol.o): Likewise.
+       (py-symtab.o): Likewise.
+       (py-threadevent.o): Likewise.
+       (py-type.o): Likewise.
+       (py-unwind.o): Likewise.
+       (py-utils.o): Likewise.
+       (py-value.o): Likewise.
+       (py-varobj.o): Likewise.
+
+2016-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * Makefile.in (.c.o): Replace rule with ...
+       (%.o: %.c): ... this one.
+       (.po.gmo): Replace rule with ...
+       (%.gmo: %.po): ... this one.
+       (.po.pox): Replace rule with ...
+       (%.pox: %.po): ... this one.
+       (.y.c): Replace rule with ...
+       (%.c: %.y): ... this one.
+       (.l.c): Replace rule with ...
+       (%.c: %.l): ... this one.
+       (.SUFFIXES): Remove all instances.
+
+2016-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * Makefile.in: Remove @GMAKE_TRUE@ prefixes and removes lines
+       prefixed with @GMAKE_FALSE@.  Update comment related to non-GNU
+       make.
+       * configure.ac: Remove checks for the make program.
+       * configure: Re-generate.
+
+2016-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * NEWS: Mention requirement of GNU make.
+
+2016-11-17  Pedro Alves  <palves@redhat.com>
+
+       * c-exp.y (c_print_token): Use parser_fprintf instead of fprintf.
+
+2016-11-17  Pedro Alves  <palves@redhat.com>
+
+       * ctf.c [USE_WIN32API] (mkdir): Delete.
+
+2016-11-16  Pedro Alves  <palves@redhat.com>
+
+       * ada-lang.c (ada_value_primitive_packed_val): Use unique_ptr and
+       new gdb_byte[] instead of malloc and cleanups.
+
+2016-11-17  Pedro Alves  <palves@redhat.com>
+
+       * tracepoint.c (collection_list::add_memrange): Add gdbarch
+       parameter.  Use paddress instead of printf_vma.  Adjust recursive
+       calls.
+       (collection_list::stringify): Use paddress and phex_nz instead of
+       sprintf_vma.  Adjust add_memrange call.
+       * tracepoint.h (collection_list::add_memrange): Add gdbarch
+       parameter.
+
+2016-11-16  Kevin Buettner  <kevinb@redhat.com>
+
+       * frame.c (get_prev_frame): Stash frame id for current frame
+       prior to computing frame id for previous frame.
+
+2016-11-16  Kevin Buettner  <kevinb@redhat.com>
+
+       * python/py-unwind.c (pending_framepy_read_register): Use
+       value_of_register() instead of get_frame_register_value().
+
+2016-11-16  Kevin Buettner  <kevinb@redhat.com>
+
+       * value.h (VALUE_FRAME_ID): Rename to VALUE_NEXT_FRAME_ID. Update
+       comment.  Create new VALUE_FRAME_ID which is defined in terms of
+       VALUE_NEXT_FRAME_ID.
+       (deprecated_value_frame_id_hack): Rename to
+       deprecated_value_next_frame_id_hack.
+       * dwarf2loc.c, findvar.c, frame-unwind.c, sentinel-frame.c,
+       valarith.c, valops.c, value.c: Adjust nearly all occurences of
+       VALUE_FRAME_ID to VALUE_NEXT_FRAME_ID.  Add comments for those
+       which did not change.
+       * value.c (struct value): Rename frame_id field to next_frame_id.
+       Update comment.
+       (deprecated_value_frame_id_hack): Rename to
+       deprecated_value_next_frame_id_hack.
+       (value_fetch_lazy): Call frame_unwind_register_value()
+       instead of get_frame_register_value().
+       * frame.c (get_prev_frame_id_by_id): New function.
+       * frame.h (get_prev_frame_id_by_id): Declare.
+       * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Make
+       VALUE_NEXT_FRAME_ID refer to the next frame.
+       * findvar.c (value_of_register_lazy): Likewise.
+       (default_value_from_register): Likewise.
+       (value_from_register): Likewise.
+       * frame_unwind.c (frame_unwind_got_optimized): Likewise.
+       * sentinel-frame.c (sentinel_frame_prev_register): Likewise.
+       * value.h (VALUE_FRAME_ID): Update comment describing this macro.
+
+2016-11-16  Kevin Buettner  <kevinb@redhat.com>
+
+       * frame.h (enum frame_id_stack_status): Add FID_STACK_SENTINEL.
+       (struct frame_id): Increase number of bits required for storing
+       stack status to 3 from 2.
+       (sentinel_frame_id): New declaration.
+       (get_next_frame_sentinel_okay): Declare.
+       (frame_find_by_id_sentinel_okay): Declare.
+       * frame.c (current_frame): Rename this static global to...
+       (sentinel_frame): ...this static global, which has also been
+       moved an earlier location in the file.
+       (fprint_frame_id): Add case for sentinel frame id.
+       (get_frame_id): Return early for sentinel frame.
+       (sentinel_frame_id): Define.
+       (frame_find_by_id): Add case for sentinel_frame_id.
+       (create_sentinel_frame): Use sentinel_frame_id for this_id.value
+       instead of null_frame_id.
+       (get_current_frame): Add local declaration for `current_frame'.
+       Remove local declaration for `sentinel_frame.'
+       (get_next_frame_sentinel_okay): New function.
+       (reinit_frame_cache): Use `sentinel_frame' in place of
+       `current_frame'.
+
+2016-11-15  Pedro Alves  <palves@redhat.com>
+
+       * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
+       38237baf99386101934cd93278023aa4ae523ec0.
+       * gnulib/configure, gnulib/config.in: Regenerate.
+       * gnulib/import/Makefile.am: Regenerate.
+       * gnulib/import/Makefile.in: Regenerate.
+       * gnulib/import/canonicalize-lgpl.c: Update.
+       * gnulib/import/extra/snippet/c++defs.h: Update.
+       * gnulib/import/m4/stdint.m4: Update.
+       * gnulib/import/m4/stdlib_h.m4: Update.
+       * gnulib/import/math.in.h: Update.
+       * gnulib/import/stdlib.in.h: Update.
+       * gnulib/import/sys_time.in.h: Update.
+
+2016-11-15  Pedro Alves  <palves@redhat.com>
+
+       * common/common-defs.h: Update comment.
+       * common/gdb_unique_ptr.h: Update header comment and copyright
+       year.
+       (gdb::unique_ptr, gdb::move): Delete.
+
+2016-11-15  Pedro Alves  <palves@redhat.com>
+
+       * ada-lang.c (create_excep_cond_exprs): Use std::move instead of
+       gdb::move.
+       * break-catch-throw.c (handle_gnu_v3_exceptions): Use
+       std::unique_ptr instead of gdb::unique_ptr.
+       * breakpoint.c (watch_command_1): Use std::move instead of
+       gdb::move.
+       * cli/cli-dump.c (dump_memory_to_file, restore_binary_file): Use
+       std::unique_ptr instead of gdb::unique_ptr.
+       * dtrace-probe.c (dtrace_process_dof_probe): Use std::move instead
+       of gdb::move.
+       * elfread.c (elf_read_minimal_symbols): Use std::unique_ptr
+       instead of gdb::unique_ptr.
+       * mi/mi-main.c (mi_cmd_data_read_memory): Use std::unique_ptr
+       instead of gdb::unique_ptr.
+       * parse.c (parse_expression_for_completion): Use std::move instead
+       of gdb::move.
+       * printcmd.c (display_command): std::move instead of gdb::move.
+
+2016-11-14  Markus Metzger  <markus.t.metzger@intel.com>
+
+       * nat/linux-btrace.c (perf_event_read): Allow data_head < size.
+       * nat/linux-btrace.c (perf_event_read_all): Do not adjust size.
+
+2016-11-12  Tom Tromey  <tom@tromey.com>
+
+       * rust-exp.y (super_name): Use std::vector.
+       (lex_number): Use std::string.
+       (convert_params_to_types): Return std::vector.
+       (convert_ast_to_type, convert_name): Update.
+       * rust-lang.c (rust_get_disr_info): Use unique_xmalloc_ptr.
+
+2016-11-12  Tom Tromey  <tom@tromey.com>
+
+       * rust-lang.c (rust_get_disr_info): Use std::string in one more
+       spot.
+
+2016-11-11  Yao Qi  <yao.qi@linaro.org>
+
+       * spu-tdep.c (spu_software_single_step): Don't call
+       get_frame_register_bytes, call get_frame_register_unsigned
+       instead.
+
+2016-11-11  Yao Qi  <yao.qi@linaro.org>
+
+       * cp-valprint.c (cp_print_value): Remove local base_valaddr.
+       * extension-priv.h (struct extension_language_ops)
+       <apply_val_pretty_printer>: Remove the second parameter.
+       Remove const from "struct value *".  Callers updated.
+       * extension.c (apply_ext_lang_val_pretty_printer): Update
+       comments.  Remove parameter valaddr.  Remove const from
+       "struct value *".
+       * extension.h (apply_ext_lang_val_pretty_printer): Update
+       declaration.
+       * guile/guile-internal.h (gdbscm_apply_val_pretty_printer):
+       Update declaration.
+       * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
+       Remove parameter valaddr.  Remove const from "struct value *".
+       * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer):
+       Likewise.
+       * python/python-internal.h (gdbpy_apply_val_pretty_printer):
+       Update declaration.
+
+2016-11-11  Yao Qi  <yao.qi@linaro.org>
+
+       * c-lang.h (cp_print_value_fields): Update declaration.
+       * cp-valprint.c (cp_print_value): Update declaration.
+       (cp_print_value_fields): Remove parameter valaddr.  Callers
+       updated.
+       (cp_print_value): Likewise.
+
+2016-11-09  Tom Tromey  <tom@tromey.com>
+
+       * varobj.h (varobj_get_display_hint): Change return type.
+       * varobj.c (varobj_get_display_hint): Return unique_xmalloc_ptr.
+       (varobj_value_get_print_value): Update.
+       * python/python.c (gdbpy_before_prompt_hook, gdbpy_print_stack)
+       (gdbpy_apply_type_printers): Update.
+       * python/python-internal.h (unicode_to_target_string)
+       (python_string_to_target_string, python_string_to_host_string)
+       (gdbpy_obj_to_string, gdbpy_exception_to_string)
+       (gdbpy_get_display_hint): Change return types.
+       * python/py-varobj.c (py_varobj_iter_next): Update.
+       * python/py-value.c (valpy_getitem, convert_value_from_python):
+       Update.
+       * python/py-utils.c (unicode_to_encoded_string)
+       (unicode_to_target_string, python_string_to_target_string)
+       (python_string_to_host_string, gdbpy_obj_to_string)
+       (gdbpy_exception_to_string): Return unique_xmalloc_ptr.
+       * python/py-unwind.c (pyuw_parse_register_id): Update.
+       * python/py-type.c (typy_getitem): Update.
+       * python/py-prettyprint.c (gdbpy_get_display_hint)
+       (print_stack_unless_memory_error, print_children)
+       (gdbpy_apply_val_pretty_printer): Update.
+       * python/py-param.c (set_parameter_value): Update.
+       (get_doc_string, call_doc_function): Return unique_xmalloc_ptr.
+       (get_set_value, get_show_value, compute_enum_values, parmpy_init):
+       Update.
+       * python/py-infthread.c (thpy_set_name): Update.
+       * python/py-function.c (fnpy_call, fnpy_init): Update.
+       * python/py-framefilter.c (extract_sym): Change "name" to
+       unique_xmalloc_ptr.
+       (enumerate_args, enumerate_locals): Update.
+       (py_print_frame): Use unique_xmalloc_ptr.
+       * python/py-frame.c (frapy_read_var): Update.  Remove cleanup.
+       * python/py-cmd.c (cmdpy_function, cmdpy_completer, cmdpy_init):
+       Update.
+       * python/py-breakpoint.c (bppy_set_condition): Use
+       unique_xmalloc_ptr.
+       (bppy_init): Likewise.  Remove cleanup.
+       (local_setattro): Update.
+       * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_list_children)
+       (varobj_update_one): Update.
+
+2016-11-09  Pedro Alves  <palves@redhat.com>
+
+       * ax-gdb.c (agent_eval_command_one): Use std::move instead of
+       gdb::move.
+       * ax.h (agent_expr_up): Use std::unique_ptr instead of
+       gdb::unique_ptr.
+       * breakpoint.c (parse_cond_to_aexpr): Use std::move instead of
+       gdb::move.
+       * tracepoint.c (collection_list::collect_symbol): Likewise.
+       (collection_list::~collection_list): Delete.
+       (encode_actions_1): Use std::move instead of gdb::move.
+       (collection_list::add_aexpr): Use std::move instead of
+       unique_ptr::release.
+       * tracepoint.h (collection_list) <~collection_list>: Delete
+       declaration.
+       <m_aexprs>: Now a vector of agent_ptr_up.
+
+2016-11-09  Pedro Alves  <palves@redhat.com>
+
+       * main.c (struct cmdarg): Add constructor.
+       (captured_main_1): Use vector::emplace_back.
+       * tracepoint.c (collection_list::add_memrange): Likewise.
+
+2016-11-09  Andreas Arnez  <arnez@linux.vnet.ibm.com>
+
+       * tui/tui-winsource.c (tui_alloc_source_buffer): Remove
+       failed-xmalloc handling.
+
+2016-11-09  Andreas Arnez  <arnez@linux.vnet.ibm.com>
+
+       * tui/tui-winsource.c (tui_alloc_source_buffer): Subtract
+       highlight box's overhead when calculating the content height.
+
+2016-11-09  Andreas Arnez  <arnez@linux.vnet.ibm.com>
+
+       * tui/tui-disasm.c (tui_set_disassem_content): Fix calculation of
+       the longest disassembly line's length.
+
+2016-11-09  Andreas Arnez  <arnez@linux.vnet.ibm.com>
+
+       * tui/tui-disasm.c (tui_set_disassem_content): Fix line buffer
+       overrun due to unchecked strcpy.
+
+2016-11-09  Tristan Gingold  <gingold@adacore.com>
+
+       * darwin-nat.c (find_inferior_task_it): Fix indentation.
+       (find_inferior_notify_it): Remove.
+       (find_inferior_pid_it): New function.
+       (darwin_find_inferior_by_notify): Remove.
+       (darwin_find_inferior_by_pid): New function.
+       (darwin_find_new_inferior): New function.
+       (darwin_check_message_ndr): New function from
+       darwin_decode_exception_message.
+       (darwin_decode_exception_message): Call darwin_check_message_ndr.
+       Handle SIGTRAP addressed to an unknown task (when a task spawned).
+       (darwin_decode_notify_message): New function.
+       (darwin_decode_message): Handle unknown task.
+       (darwin_deallocate_threads): New function from darwin_mourn_inferior.
+       (darwin_mourn_inferior): Use darwin_deallocate_threads and
+       darwin_deallocate_exception_ports.
+       (darwin_deallocate_exception_ports): New function from
+       darwin_mourn_inferior.
+       (darwin_setup_exceptions): New function from darwin_attach_pid.
+       (darwin_setup_request_notification): Likewise.
+       (darwin_attach_pid): Call darwin_setup_request_notification and
+       darwin_setup_request_notification.
+
+2016-11-08  Tom Tromey  <tom@tromey.com>
+
+       * python/py-framefilter.c (py_print_frame): Use
+       get_addr_from_python.  Check for errors when getting line number.
+
+2016-11-08  Yao Qi  <yao.qi@linaro.org>
+
+       * ada-lang.h (ada_val_print): Remove second parameter.  Remove
+       const from "struct value *".
+       * ada-valprint.c (print_field_values): Remove const from
+       "struct value *".
+       (val_print_packed_array_elements): Likewise.
+       (print_variant_part): Likewise.
+       (ada_val_print_string): Likewise.
+       (ada_val_print_gnat_array): Likewise.
+       (ada_val_print_ptr): Likewise.
+       (ada_val_print_num): Likewise.
+       (ada_val_print_enum): Likewise.
+       (ada_val_print_flt): Likewise.
+       (ada_val_print_union): Likewise.
+       (ada_val_print_struct_union): Likewise.
+       (ada_val_print_ref): Likewise.
+       (ada_val_print_1): Remove second parameter.  Remove const from
+       "struct value *".
+       (ada_val_print): Likewise.
+       * c-lang.h (c_val_print): Likewise.
+       * c-valprint.c (c_val_print_array): Remove const from
+       "struct value *".
+       (c_val_print_ptr): Likewise.
+       (c_val_print_struct): Likewise.
+       (c_val_print_union): Likewise.
+       (c_val_print_int): Likewise.
+       (c_val_print_memberptr): Likewise.
+       (c_val_print): Remove second parameter.  Remove const from
+       "struct value *".  All callers updated.
+       * cp-valprint.c (cp_print_value): Remove const from
+       "struct value *".
+       (cp_print_value_fields): Likewise.
+       (c_val_print_value): Likewise.
+       * d-lang.h (d_val_print): Remove second parameter.  Remove const
+       from "struct value *".
+       * d-valprint.c (dynamic_array_type): Likewise.
+       (d_val_print): Likewise.
+       * f-lang.h (f_val_print): Likewise.
+       * f-valprint.c (f_val_print): Likewise.
+       * go-lang.h (go_val_print): Likewise.
+       * go-valprint.c (print_go_string): Likewise.
+       (go_val_print): Likewise.
+       * language.c (unk_lang_val_print): Likewise.
+       * language.h (struct language_defn) <la_val_print>: Likewise.
+       Update comments.
+       (LA_VAL_PRINT): Remove.
+       * m2-lang.h (m2_val_print): Remove const from
+       "struct value *".
+       * m2-valprint.c (m2_print_array_contents): Likewise.
+       (m2_val_print): Likewise.
+       * p-lang.h (pascal_val_print): Remove second parameter.  Remove
+       const from "struct value *".
+       (pascal_object_print_value_fields): Likewise.
+       * p-valprint.c (pascal_val_print): Likewise.
+       (pascal_object_print_value_fields): Likewise.
+       (pascal_object_print_value): Likewise.
+       * rust-lang.c (rust_get_disr_info): Likewise.
+       (val_print_struct): Likewise.
+       (rust_val_print): Likewise.
+       * valprint.c (generic_val_print_array): Likewise.
+       (generic_val_print_ptr): Likewise.
+       (generic_val_print_memberptr): Likewise.
+       (generic_val_print_ref): Likewise.
+       (generic_val_print_enum): Likewise.
+       (generic_val_print_flags): Likewise.
+       (generic_val_print_func): Likewise.
+       (generic_val_print_bool): Likewise.
+       (generic_val_print_int): Likewise.
+       (generic_val_print_char): Likewise.
+       (generic_val_print_float): Likewise.
+       (generic_val_print_decfloat): Likewise.
+       (generic_val_print_complex): Likewise.
+       (generic_val_print): Likewise.
+       (val_print): Likewise.
+       (common_val_print): Likewise.
+       (val_print_type_code_flags): Likewise.
+       (val_print_scalar_formatted): Likewise.
+       (val_print_array_elements): Likewise.
+       * valprint.h (val_print_array_elements): Update declaration.
+       (val_print_scalar_formatted): Likewise.
+       (generic_val_print): Likewise.
+       * value.h (val_print): Likewise.
+
+2016-11-08  Yao Qi  <yao.qi@linaro.org>
+
+       * mt-tdep.c (mt_registers_info): Call
+       get_frame_register_value instead of
+       deprecated_frame_register_read.
+       * sh64-tdep.c (sh64_do_register): Likewise.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * ax.h (agent_expr_p): Delete.
+       (DEF_VEC_P (agent_expr_p)): Delete.
+       * breakpoint.c (build_target_condition_list)
+       (build_target_command_list): Adjust to use of std::vector.
+       (bp_location_dtor): Remove now unnecessary VEC_free calls.
+       * breakpoint.h: Include <vector>.
+       (struct bp_target_info) <conditions, tcommands>: Now
+       std::vector's.
+       * remote.c (remote_add_target_side_condition): bp_tgt->conditions
+       is now a std::vector; adjust.
+       (remote_add_target_side_commands, remote_insert_breakpoint):
+       bp_tgt->tcommands is now a std::vector; adjust.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * ax-gdb.c (is_nontrivial_conversion): Use agent_expr_up.
+       (gen_trace_for_var, gen_trace_for_expr, gen_eval_for_expr)
+       (gen_trace_for_return_address, gen_printf): Use and return an
+       agent_expr_up.  Don't use make_cleanup_free_agent_expr.
+       (agent_eval_command_one, maint_agent_printf_command): Use
+       agent_expr_up.  Don't use make_cleanup_free_agent_expr.
+       * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
+       (gen_trace_for_return_address, gen_eval_for_expr, gen_printf): Use
+       agent_expr_up.
+       * ax-general.c (new_agent_expr): Rename to ...
+       (agent_expr::agent_expr): ... this, and now a constructor.
+       (free_agent_expr): Rename to ...
+       (agent_expr::~agent_exp): ... this, and now a destructor.
+       (do_free_agent_expr_cleanup, make_cleanup_free_agent_expr):
+       Delete.
+       * ax.h (struct agent_expr): Add ctor/dtor.
+       (agent_expr_up): New typedef.
+       (new_agent_expr, free_agent_expr, make_cleanup_free_agent_expr):
+       Delete declarations.
+       * breakpoint.c (parse_cond_to_aexpr): Use and return an
+       agent_expr_up.  Don't use make_cleanup_free_agent_expr.
+       (build_target_condition_list): Adjust to use agent_expr_up.
+       (parse_cmd_to_aexpr): Use and return an agent_expr_up.  Don't use
+       make_cleanup_free_agent_expr.
+       (build_target_command_list): Adjust to use agent_expr_up.
+       (force_breakpoint_reinsertion): Adjust to use agent_expr_up.
+       (bp_location_dtor): Remove unnecessary free_agent_expr and xfree
+       calls.
+       * breakpoint.h (struct bp_target_info) <cond_bytecode,
+       cmd_bytecode>: Now agent_expr_up's.
+       * remote.c (remote_download_tracepoint): Adjust to use
+       agent_expr_up and remove use of make_cleanup_free_agent_expr.
+       * tracepoint.c (validate_actionline, collect_symbol): Adjust to
+       use agent_expr_up and remove uses of make_cleanup_free_agent_expr.
+       (collection_list::~collection_list): Call delete instead of
+       free_agent_expr.
+       (encode_actions_1): Adjust to use agent_expr_up and remove uses of
+       make_cleanup_free_agent_expr.
+       (add_aexpr): Change parameter type to agent_expr_up; Return a raw
+       agent_expr pointer.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * ada-lang.c (ada_name_for_lookup, type_as_string): Use and return
+       std::string.
+       (type_as_string_and_cleanup): Delete.
+       (ada_lookup_struct_elt_type): Use type_as_string.
+       * ada-lang.h (ada_name_for_lookup): Now returns std::string.
+       * ada-varobj.c (ada_varobj_scalar_image): Return a std::string.
+       (ada_varobj_describe_child): Make 'child_name' and
+       'child_path_expr' parameters std::string pointers.
+       (ada_varobj_describe_struct_child, ada_varobj_describe_ptr_child):
+       Likewise, and use string_printf.
+       (ada_varobj_describe_simple_array_child)
+       (ada_varobj_describe_child): Likewise.
+       (ada_varobj_get_name_of_child, ada_varobj_get_path_expr_of_child)
+       (ada_varobj_get_value_image)
+       (ada_varobj_get_value_of_array_variable)
+       (ada_varobj_get_value_of_variable, ada_name_of_variable)
+       (ada_name_of_child, ada_path_expr_of_child)
+       (ada_value_of_variable): Now returns std::string.  Use
+       string_printf.
+       (ada_value_of_child): Adjust.
+       * break-catch-throw.c (check_status_exception_catchpoint): Adjust
+       to use std::string.
+       * breakpoint.c (watch_command_1): Adjust to use std::string.
+       * c-lang.c (c_get_string): Adjust to use std::string.
+       * c-typeprint.c (print_name_maybe_canonical): Use std::string.
+       * c-varobj.c (varobj_is_anonymous_child): Use ==/!= std::string
+       operators.
+       (c_name_of_variable): Now returns a std::string.
+       (c_describe_child): The 'cname' and 'cfull_expression' output
+       parameters are now std::string pointers.  Adjust.
+       (c_name_of_child, c_path_expr_of_child, c_value_of_variable)
+       (cplus_number_of_children): Adjust to use std::string and
+       string_printf.
+       (cplus_name_of_variable): Now returns a std::string.
+       (cplus_describe_child): The 'cname' and 'cfull_expression' output
+       parameters are now std::string pointers.  Adjust.
+       (cplus_name_of_child, cplus_path_expr_of_child)
+       (cplus_value_of_variable): Now returns a std::string.
+       * cp-abi.c (cplus_typename_from_type_info): Return std::string.
+       * cp-abi.h (cplus_typename_from_type_info): Return std::string.
+       (struct cp_abi_ops) <get_typename_from_type_info>: Return
+       std::string.
+       * cp-support.c (inspect_type): Use std::string.
+       (cp_canonicalize_string_full, cp_canonicalize_string_no_typedefs)
+       (cp_canonicalize_string): Return std::string and adjust.
+       * cp-support.h (cp_canonicalize_string)
+       (cp_canonicalize_string_no_typedefs, cp_canonicalize_string_full):
+       Return std::string.
+       * dbxread.c (read_dbx_symtab): Use std::string.
+       * dwarf2read.c (dwarf2_canonicalize_name): Adjust to use std::string.
+       * gdbcmd.h (lookup_struct_elt_type): Adjust to use std::string.
+       * gnu-v3-abi.c (gnuv3_get_typeid): Use std::string.
+       (gnuv3_get_typename_from_type_info): Return a std::string and
+       adjust.
+       (gnuv3_get_type_from_type_info): Adjust to use std::string.
+       * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use
+       std::string.
+       * infcmd.c (print_return_value_1): Adjust to use std::string.
+       * linespec.c (find_linespec_symbols): Adjust to
+       demangle_for_lookup API change.  Use std::string.
+       * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_set_format)
+       (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
+       (mi_cmd_var_info_expression, mi_cmd_var_evaluate_expression)
+       (mi_cmd_var_assign, varobj_update_one): Adjust to use std::string.
+       * minsyms.c (lookup_minimal_symbol): Use std::string.
+       * python/py-varobj.c (py_varobj_iter_next): Use new instead of
+       XNEW.  vitem->name is a std::string now, adjust.
+       * rust-exp.y (convert_ast_to_type, convert_name): Adjust to use
+       std::string.
+       * stabsread.c (define_symbol): Adjust to use std::string.
+       * symtab.c (demangle_for_lookup): Now returns 'const char *'.  Add
+       a demangle_result_storage parameter.  Use it for storage.
+       (lookup_symbol_in_language)
+       (lookup_symbol_in_objfile_from_linkage_name): Adjust to new
+       demangle_for_lookup API.
+       * symtab.h (struct demangle_result_storage): New type.
+       (demangle_for_lookup): Now returns 'const char *'.  Add a
+       demangle_result_storage parameter.
+       * typeprint.c (type_to_string): Return std::string and use
+       ui_file_as_string.
+       * value.h (type_to_string): Change return type to std::string.
+       * varobj-iter.h (struct varobj_item) <name>: Now a std::string.
+       (varobj_iter_delete): Use delete instead of xfree.
+       * varobj.c (create_child): Return std::string instead of char * in
+       output parameter.
+       (name_of_variable, name_of_child, my_value_of_variable): Return
+       std::string instead of char *.
+       (varobj_create, varobj_get_handle): Constify 'objname' parameter.
+       Adjust to std::string fields.
+       (varobj_get_objname): Return a const char * instead of a char *.
+       (varobj_get_expression): Return a std::string.
+       (varobj_list_children): Adjust to use std::string.
+       (varobj_get_type): Return a std::string.
+       (varobj_get_path_expr): Return a const char * instead of a char *.
+       Adjust to std::string fields.
+       (varobj_get_formatted_value, varobj_get_value): Return a
+       std::string.
+       (varobj_set_value): Change type of 'expression' parameter to
+       std::string.  Use std::string.
+       (install_new_value): Use std::string.
+       (delete_variable_1): Adjust to use std::string.
+       (create_child): Change the 'name' parameter to a std::string
+       reference.  Swap it into the new item's name.
+       (create_child_with_value): Swap item's name into the new child's
+       name.  Use string_printf.
+       (new_variable): Use new instead of XNEW.
+       (free_variable): Don't xfree fields that are now std::string.
+       (name_of_variable, name_of_child): Now returns std::string.
+       (value_of_root): Adjust to use std::string.
+       (my_value_of_variable, varobj_value_get_print_value): Return
+       and use std::string.
+       (varobj_value_get_print_value): Adjust to use ui_file_as_string
+       and std::string.
+       * varobj.h (struct varobj) <name, path_expr, obj_name,
+       print_value>: Now std::string's.
+       <name_of_variable, name_of_child, path_expr_of_child,
+       value_of_variable>: Return std::string.
+       (varobj_create, varobj_get_handle): Constify 'objname' parameter.
+       (varobj_get_objname): Return a const char * instead of a char *.
+       (varobj_get_expression, varobj_get_type): Return a std::string.
+       (varobj_get_path_expr): Return a const char * instead of a char *.
+       (varobj_get_formatted_value, varobj_get_value): Return a
+       std::string.
+       (varobj_set_value): Constify 'expression' parameter.
+       (varobj_value_get_print_value): Return a std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * language.c (add_language): Use ui_file_as_string and adjust to
+       use std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+           Tom Tromey  <tom@tromey.com>
+
+       * rust-lang.c (struct disr_info) <name>: Now a std::string.
+       (rust_get_disr_info): Use ui_file_as_string and adjust to use
+       std::string.
+       (rust_val_print): Adjust to use std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * infrun.c (print_target_wait_results): Use ui_file_as_string and
+       std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * ada-lang.c (type_as_string): Use ui_file_as_string and return
+       std::string.
+       (type_as_string_and_cleanup): Delete.
+       (ada_lookup_struct_elt_type): Use type_as_string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * gdbarch.sh (verify_gdbarch): Use ui_file_as_string and
+       std::string.
+       * gdbarch.c: Regenerate.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * c-exp.y (OPERATOR NEW): Adjust to use ui_file_as_string and
+       std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * c-lang.h (c_compute_program): Now returns std::string.
+       * compile/compile-internal.h (class compile_file_names): New
+       class.
+       * compile/compile-object-load.c (compile_object_load): Replace
+       object_file and source_file parameters with a compile_file_names
+       parameter.  Adjust.
+       * compile-object-load.h: Include "compile-internal.h".
+       (compile_object_load): Replace object_file and source_file
+       parameters with a compile_file_names parameter.
+       * compile/compile-c-support.c (c_compute_program): Now returns a
+       std::string.  Use ui_file_as_string.
+       * compile/compile.c (get_new_file_names): Remove parameters and
+       return a compile_file_names instead.
+       (compile_to_object): Now returns a compile_file_names.  Use
+       ui_file_as_string.
+       (eval_compile_command): Use compile_file_names.
+       * language.h (struct language_defn) <la_compute_program>: Now
+       returns std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * cli/cli-setshow.c (do_show_command): Adjust to use
+       ui_file_as_string and std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * remote.c (escape_buffer): Use ui_file_as_string and return
+       std::string.
+       (putpkt_binary, read_frame): Adjust to use std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * python/py-arch.c (archpy_disassemble): Use ui_file_as_string and
+       std::string.
+       * python/py-breakpoint.c (bppy_get_commands): Use
+       ui_file_as_string and std::string.
+       * python/py-frame.c (frapy_str): Likewise.
+       * python/py-type.c (typy_str): Likewise.
+       * python/py-unwind.c (unwind_infopy_str): Likewise.
+       * python/py-value.c (valpy_str): Likewise.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * printcmd.c (eval_command): Use ui_file_as_string and
+       std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * top.c (quit_confirm): Use ui_file_as_string and std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * gdbcmd.h (execute_command_to_string): Now returns std::string.
+       (lookup_struct_elt_type): Adjust to use std::string.
+       * top.c (execute_command_to_string): Use ui_file_as_string and
+       return std::string.
+       * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use
+       std::string.
+       * python/python.c (execute_gdb_command): Adjust to use
+       std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
+       ui_file_as_string and adjust to use std::string.
+       * guile/scm-disasm.c (gdbscm_arch_disassemble): Likewise.
+       * guile/scm-frame.c (frscm_print_frame_smob): Likewise.
+       * guile/scm-type.c (tyscm_type_name): Use ui_file_as_string and
+       adjust to use std::string.  Throw exception directly instead of
+       returning it in EXCP output parameter.
+       (tyscm_print_type_smob, gdbscm_type_print_name): Adjust to
+       tyscm_type_name interface change.
+       * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
+       Use ui_file_as_string and std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * arm-tdep.c (_initialize_arm_tdep): Use ui_file_as_string and
+       std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * utils.c (error_stream): Use ui_file_as_string and std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * ui-out.c (ui_out_field_stream): Use ui_file_as_string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * ada-valprint.c (ada_print_floating): Use ui_file_as_string and
+       std::string.
+
+2016-11-08  Pedro Alves  <palves@redhat.com>
+
+       * xtensa-tdep.c (xtensa_verify_config): Use ui_file_as_string and
+       std::string.
+
 2016-11-08  Pedro Alves  <palves@redhat.com>
 
        * dwarf2read.c (dwarf2_compute_name): Use ui_file_as_string and
 
 2016-10-29  Manish Goregaokar  <manish@mozilla.com>
 
-    * rust-exp.y: Parse `sizeof(exp)` as `UNOP_SIZEOF`
+       * rust-exp.y: Parse `sizeof(exp)` as `UNOP_SIZEOF`.
 
 2016-10-28  Manish Goregaokar  <manish@mozilla.com>
 
-    * rust-lang.c (rust_union_is_untagged): Add function to
-    check if a union is an untagged unioni
-    (rust_val_print): Handle printing of untagged union values
-    (rust_print_type): Handle printing of untagged union types
-    (rust_evaluate_subexp): Handle evaluating field
-    access on untagged unions
+       * rust-lang.c (rust_union_is_untagged): Add function to check if a
+       union is an untagged union.
+       (rust_val_print): Handle printing of untagged union values.
+       (rust_print_type): Handle printing of untagged union types.
+       (rust_evaluate_subexp): Handle evaluating field access on untagged
+       unions.
 
 2016-10-27  Manish Goregaokar  <manish@mozilla.com>
 
-    * rust-lang.c (rust_get_disr_info): Treat univariant enums
-    without discriminants as encoded enums with a real field
-    * rust-lang.c (rust_evaluate_subexp): Handle field access
-    on encoded struct-like enums
+       * rust-lang.c (rust_get_disr_info): Treat univariant enums without
+       discriminants as encoded enums with a real field.
+       * rust-lang.c (rust_evaluate_subexp): Handle field access on
+       encoded struct-like enums.
 
 2016-11-03  Yao Qi  <yao.qi@linaro.org>
 
 
 2016-07-06  Manish Goregaokar  <manish@mozilla.com>
 
-       * rust-lang.c (rust_subscript): Allow subscripting pointers
+       * rust-lang.c (rust_subscript): Allow subscripting pointers.
 
 2016-07-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
This page took 0.03713 seconds and 4 git commands to generate.