gdbserver: turn target ops 'stopped_by_watchpoint' and 'stopped_data_address' into...
[deliverable/binutils-gdb.git] / gdbserver / ChangeLog
index 4f759afeeb779a6c9306104fdc8a18aa4fae6f61..f7ac9a877cecf33490e82d1ae7246668af9f0cdb 100644 (file)
@@ -1,3 +1,174 @@
+2020-02-20  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       Turn process_stratum_target's stopped_by_watchpoint and
+       stopped_data_address ops into methods of process_target.
+
+       * target.h (struct process_stratum_target): Remove the target ops.
+       (class process_target): Add the target ops.
+       * target.cc (process_target::stopped_by_watchpoint): Define.
+       (process_target::stopped_data_address): Define.
+
+       Update the derived classes and callers below.
+
+       * remote-utils.cc (prepare_resume_reply): Update.
+       * linux-low.cc (linux_target_ops): Update.
+       (linux_stopped_by_watchpoint): Turn into ...
+       (linux_process_target::stopped_by_watchpoint): ... this.
+       (linux_stopped_data_address): Turn into ...
+       (linux_process_target::stopped_data_address): ... this.
+       * linux-low.h (class linux_process_target): Update.
+       * lynx-low.cc (lynx_target_ops): Update.
+       * nto-low.cc (nto_target_ops): Update.
+       (nto_stopped_by_watchpoint): Turn into ...
+       (nto_process_target::stopped_by_watchpoint): ... this.
+       (nto_stopped_data_address): Turn into ...
+       (nto_process_target::stopped_data_address): ... this.
+       * nto-low.h (class nto_process_target): Update.
+       * win32-low.cc (win32_target_ops): Update.
+       (win32_stopped_by_watchpoint): Turn into ...
+       (win32_process_target::stopped_by_watchpoint): ... this.
+       (win32_stopped_data_address): Turn into ...
+       (win32_process_target::stopped_data_address): ... this.
+       * win32-low.h (class win32_process_target): Update.
+
+2020-02-20  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       Turn process_stratum_target's supports_hardware_single_step op into
+       a method of process_target.
+
+       * target.h (struct process_stratum_target): Remove the target op.
+       (class process_target): Add the target op.
+       (target_supports_hardware_single_step): Update the macro.
+       (target_can_do_hardware_single_step): Remove declaration.
+       * target.cc (process_target::supports_hardware_single_step): Define.
+       (target_can_do_hardware_single_step): Remove.
+
+       Update the derived classes and callers below.
+
+       * linux-low.h (class linux_process_target): Update.
+       * linux-low.cc (linux_target_ops): Update.
+       (linux_supports_hardware_single_step): Turn into ...
+       (linux_process_target::supports_hardware_single_step): ... this.
+       * lynx-low.h (class lynx_process_target): Update.
+       * lynx-low.cc (lynx_target_ops): Update.
+       (lynx_process_target::supports_hardware_single_step): Define.
+       * nto-low.h (class nto_process_target): Update.
+       * nto-low.cc (nto_target_ops): Update.
+       (nto_process_target::supports_hardware_single_step): Define.
+       * win32-low.h (class win32_process_target): Update.
+       * win32-low.cc (win32_target_ops): Update.
+       (win32_process_target::supports_hardware_single_step): Define.
+
+2020-02-20  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       Turn process_stratum_target's {supports_}stopped_by_hw_breakpoint
+       ops into methods of process_target.
+
+       * target.h (struct process_stratum_target): Remove the target ops.
+       (class process_target): Add the target ops.
+       (target_stopped_by_hw_breakpoint): Update the macro.
+       (target_supports_stopped_by_hw_breakpoint): Update the macro.
+       * target.cc (process_target::stopped_by_hw_breakpoint): Define.
+       (process_target::supports_stopped_by_hw_breakpoint): Define.
+
+       Update the derived classes and callers below.
+
+       * linux-low.cc (linux_target_ops): Update.
+       (linux_stopped_by_hw_breakpoint): Turn into ...
+       (linux_process_target::stopped_by_hw_breakpoint): ... this.
+       (linux_supports_stopped_by_hw_breakpoint): Turn into ...
+       (linux_process_target::supports_stopped_by_hw_breakpoint): ... this.
+       * linux-low.h (class linux_process_target): Update.
+       * lynx-low.cc (lynx_target_ops): Update.
+       * nto-low.cc (nto_target_ops): Update.
+       * win32-low.cc (win32_target_ops): Update.
+
+2020-02-20  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       Turn process_stratum_target's {supports_}stopped_by_sw_breakpoint
+       ops into methods of process_target.
+
+       * target.h (struct process_stratum_target): Remove the target ops.
+       (class process_target): Add the target ops.
+       (target_stopped_by_sw_breakpoint): Update the macro.
+       (target_supports_stopped_by_sw_breakpoint): Update the macro.
+       * target.cc (process_target::stopped_by_sw_breakpoint): Define.
+       (process_target::supports_stopped_by_sw_breakpoint): Define.
+
+       Update the derived classes and callers below.
+
+       * linux-low.cc (linux_target_ops): Update.
+       (linux_stopped_by_sw_breakpoint): Turn into ...
+       (linux_process_target::stopped_by_sw_breakpoint): ... this.
+       (linux_supports_stopped_by_sw_breakpoint): Turn into ...
+       (linux_process_target::supports_stopped_by_sw_breakpoint): ... this.
+       * linux-low.h (class linux_process_target): Update.
+       * lynx-low.cc (lynx_target_ops): Update.
+       * nto-low.cc (nto_target_ops): Update.
+       * win32-low.cc (win32_target_ops): Update.
+
+2020-02-20  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       Turn process_stratum_target's insert_point and remove_point ops
+       into methods of process_target.
+
+       * target.h (struct process_stratum_target): Remove the target ops.
+       (class process_target): Add the target ops.
+       * target.cc (process_target::insert_point): Define.
+       (process_target::remove_point): Define.
+
+       Update the derived classes and callers below.
+
+       * mem-break.cc (set_raw_breakpoint_at): Update.
+       (delete_raw_breakpoint): Update.
+       (uninsert_raw_breakpoint): Update.
+       (reinsert_raw_breakpoint): Update.
+       * linux-low.cc (linux_target_ops): Update.
+       (linux_insert_point): Turn into ...
+       (linux_process_target::insert_point): ... this.
+       (linux_remove_point): Turn into ...
+       (linux_process_target::remove_point): ... this.
+       * linux-low.h (class linux_process_target): Update.
+       * lynx-low.cc (lynx_target_ops): Update.
+       * nto-low.cc (nto_target_ops): Update.
+       (nto_insert_point): Turn into ...
+       (nto_process_target::insert_point): ... this.
+       (nto_remove_point): Turn into ...
+       (nto_process_target::remove_point): ... this.
+       * nto-low.h (class nto_process_target): Update.
+       * win32-low.cc (win32_target_ops): Update.
+       (win32_insert_point): Turn into ...
+       (win32_process_target::insert_point): ... this.
+       (win32_remove_point): Turn into ...
+       (win32_process_target::remove_point): ... this.
+       * win32-low.h (class win32_process_target): Update.
+
+2020-02-20  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       Turn process_stratum_target's supports_z_point_type op into a
+       method of process_target.
+
+       * target.h (struct process_stratum_target): Remove the target op.
+       (class process_target): Add the target op.
+       * target.cc (process_target::supports_z_point_type): Define.
+
+       Update the derived classes and callers below.
+
+       * mem-break.cc (z_type_supported): Update.
+       * linux-low.cc (linux_target_ops): Update.
+       (linux_supports_z_point_type): Turn into ...
+       (linux_process_target::supports_z_point_type): ... this.
+       * linux-low.h (class linux_process_target): Update.
+       * lynx-low.cc (lynx_target_ops): Update.
+       * nto-low.cc (nto_target_ops): Update.
+       (nto_supports_z_point_type): Turn into ...
+       (nto_process_target::supports_z_point_type): ... this.
+       * nto-low.h (class nto_process_target): Update.
+       * win32-low.cc (win32_target_ops): Update.
+       (win32_supports_z_point_type): Turn into ...
+       (win32_process_target::supports_z_point_type): ... this.
+       * win32-low.h (class win32_process_target): Update.
+
 2020-02-20  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
 
        Turn process_stratum_target's read_auxv op into a method of
This page took 0.026799 seconds and 4 git commands to generate.