diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-04-02 15:11:27 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-04-02 15:11:27 +0200 |
commit | 007c9b975dcb9ad50b45d52d2d7a955537beefb7 (patch) | |
tree | 1f7bfdda2dade0a383fa3ce3ad9aa1d48b5b8825 /gdbserver/linux-low.h | |
parent | d7146cda56c8ee6d1129c0c787c2645c01301fb8 (diff) | |
download | gdb-007c9b975dcb9ad50b45d52d2d7a955537beefb7.zip gdb-007c9b975dcb9ad50b45d52d2d7a955537beefb7.tar.gz gdb-007c9b975dcb9ad50b45d52d2d7a955537beefb7.tar.bz2 |
gdbserver/linux-low: turn 'supports_z_point_type' into a method
gdbserver/ChangeLog:
2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Remove the 'supports_z_point_type' linux target op and let the
concrete linux target define it by overriding the op declared in
process_stratum_target.
* linux-low.cc (linux_process_target::supports_z_point_type):
Remove.
* linux-low.h (struct linux_target_ops): Remove the op.
(class linux_process_target) <supports_z_point_type>: Remove.
* linux-x86-low.cc (class x86_target) <supports_z_point_type>:
Declare.
(x86_supports_z_point_type): Turn into...
(x86_target::supports_z_point_type): ...this.
(the_low_target): Remove the op field.
* linux-aarch64-low.cc (class aarch64_target)
<supports_z_point_type>: Declare.
(aarch64_supports_z_point_type): Turn into...
(aarch64_target::supports_z_point_type): ...this.
(the_low_target): Remove the op field.
* linux-arm-low.cc (class arm_target) <supports_z_point_type>:
Declare.
(arm_supports_z_point_type): Turn into...
(arm_target::supports_z_point_type): ...this.
(the_low_target): Remove the op field.
* linux-crisv32-low.cc (class crisv32_target)
<supports_z_point_type>: Declare.
(cris_supports_z_point_type): Turn into...
(crisv32_target::supports_z_point_type): ...this.
(the_low_target): Remove the op field.
* linux-mips-low.cc (class mips_target) <supports_z_point_type>:
Declare.
(mips_supports_z_point_type): Turn into...
(mips_target::supports_z_point_type): ...this.
(the_low_target): Remove the op field.
* linux-ppc-low.cc (class ppc_target) <supports_z_point_type>:
Declare.
(ppc_supports_z_point_type): Turn into...
(ppc_target::supports_z_point_type): ...this.
(the_low_target): Remove the op field.
* linux-s390-low.cc (class s390_target) <supports_z_point_type>:
Declare.
(s390_supports_z_point_type): Turn into...
(s390_target::supports_z_point_type): ...this.
(the_low_target): Remove the op field.
* linux-bfin-low.cc (the_low_target): Remove the op field.
* linux-m32r-low.cc (the_low_target): Ditto.
* linux-m68k-low.cc (the_low_target): Ditto.
* linux-sh-low.cc (the_low_target): Ditto.
* linux-sparc-low.cc (the_low_target): Ditto.
* linux-tic6x-low.cc (the_low_target): Ditto.
* linux-tile-low.cc (the_low_target): Ditto.
* linux-xtensa-low.cc (the_low_target): Ditto.
Diffstat (limited to 'gdbserver/linux-low.h')
-rw-r--r-- | gdbserver/linux-low.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdbserver/linux-low.h b/gdbserver/linux-low.h index 5dcddc4..c80237c 100644 --- a/gdbserver/linux-low.h +++ b/gdbserver/linux-low.h @@ -133,7 +133,6 @@ struct linux_target_ops { /* Breakpoint and watchpoint related functions. See target.h for comments. */ - int (*supports_z_point_type) (char z_type); int (*insert_point) (enum raw_bkpt_type type, CORE_ADDR addr, int size, struct raw_breakpoint *bp); int (*remove_point) (enum raw_bkpt_type type, CORE_ADDR addr, @@ -279,8 +278,6 @@ public: int read_auxv (CORE_ADDR offset, unsigned char *myaddr, unsigned int len) override; - bool supports_z_point_type (char z_type) override; - int insert_point (enum raw_bkpt_type type, CORE_ADDR addr, int size, raw_breakpoint *bp) override; |