diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-04-02 15:11:29 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-04-02 15:11:29 +0200 |
commit | 47f70aa7685c0a7fad4ca76964a4199a5b5edd1c (patch) | |
tree | 3f003f9a81410391f5398f1a1e0ea556a928a063 /gdbserver/ChangeLog | |
parent | a5b5da9258db39b9b15ae2796ab637c73ba20422 (diff) | |
download | gdb-47f70aa7685c0a7fad4ca76964a4199a5b5edd1c.zip gdb-47f70aa7685c0a7fad4ca76964a4199a5b5edd1c.tar.gz gdb-47f70aa7685c0a7fad4ca76964a4199a5b5edd1c.tar.bz2 |
gdbserver/linux-low: turn 'supports_tracepoints' into a method
gdbserver/ChangeLog:
2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Remote the 'supports_tracepoints' linux target op and let the
concrete linux target define it by overriding the op declared in
process_stratum_target.
* linux-low.h (struct linux_target_ops): Remove the op.
(class linux_process_target) <supports_tracepoints>: Remove.
* linux-low.cc (linux_process_target::supports_tracepoints): Remove.
* linux-x86-low.cc (class x86_target) <supports_tracepoints>:
Declare.
(x86_supports_tracepoints): Turn into...
(x86_target::supports_tracepoints): ...this.
(the_low_target): Remove the op field.
* linux-aarch64-low.cc (class aarch64_target)
<supports_tracepoints>: Declare.
(aarch64_supports_tracepoints): Turn into...
(aarch64_target::supports_tracepoints): ...this.
(the_low_target): Remove the op field.
* linux-ppc-low.cc (class ppc_target) <supports_tracepoints>:
Declare.
(ppc_supports_tracepoints): Turn into...
(ppc_target::supports_tracepoints): ...this.
(the_low_target): Remove the op field.
* linux-s390-low.cc (class s390_target) <supports_tracepoints>:
Declare.
(s390_supports_tracepoints): Turn into...
(s390_target::supports_tracepoints): ...this.
(the_low_target): Remove the op field.
* linux-arm-low.cc (the_low_target): Remove the op field.
* linux-bfin-low.cc (the_low_target): Ditto.
* linux-crisv32-low.cc (the_low_target): Ditto.
* 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-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/ChangeLog')
-rw-r--r-- | gdbserver/ChangeLog | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog index e42b3d8..a7635e0 100644 --- a/gdbserver/ChangeLog +++ b/gdbserver/ChangeLog @@ -1,5 +1,44 @@ 2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> + Remote the 'supports_tracepoints' linux target op and let the + concrete linux target define it by overriding the op declared in + process_stratum_target. + + * linux-low.h (struct linux_target_ops): Remove the op. + (class linux_process_target) <supports_tracepoints>: Remove. + * linux-low.cc (linux_process_target::supports_tracepoints): Remove. + * linux-x86-low.cc (class x86_target) <supports_tracepoints>: + Declare. + (x86_supports_tracepoints): Turn into... + (x86_target::supports_tracepoints): ...this. + (the_low_target): Remove the op field. + * linux-aarch64-low.cc (class aarch64_target) + <supports_tracepoints>: Declare. + (aarch64_supports_tracepoints): Turn into... + (aarch64_target::supports_tracepoints): ...this. + (the_low_target): Remove the op field. + * linux-ppc-low.cc (class ppc_target) <supports_tracepoints>: + Declare. + (ppc_supports_tracepoints): Turn into... + (ppc_target::supports_tracepoints): ...this. + (the_low_target): Remove the op field. + * linux-s390-low.cc (class s390_target) <supports_tracepoints>: + Declare. + (s390_supports_tracepoints): Turn into... + (s390_target::supports_tracepoints): ...this. + (the_low_target): Remove the op field. + * linux-arm-low.cc (the_low_target): Remove the op field. + * linux-bfin-low.cc (the_low_target): Ditto. + * linux-crisv32-low.cc (the_low_target): Ditto. + * 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-tic6x-low.cc (the_low_target): Ditto. + * linux-tile-low.cc (the_low_target): Ditto. + * linux-xtensa-low.cc (the_low_target): Ditto. + +2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> + Remove the 'process_qsupported' linux target op and let a concrete linux target define the op by overriding the op declaration in process_stratum_target. |