aboutsummaryrefslogtreecommitdiff
path: root/gdbserver/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'gdbserver/ChangeLog')
-rw-r--r--gdbserver/ChangeLog35
1 files changed, 35 insertions, 0 deletions
diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog
index a7689ca..203b534 100644
--- a/gdbserver/ChangeLog
+++ b/gdbserver/ChangeLog
@@ -1,5 +1,40 @@
2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
+ Remove the 'emit_ops' linux target ops and let the concrete
+ linux target define the op by overriding the declaration of
+ process_stratum_target.
+
+ * linux-low.h (struct linux_target_ops): Remove the op.
+ (class linux_process_target) <emit_ops>: Remove.
+ * linux-low.cc (linux_process_target::emit_ops): Remove.
+ * linux-x86-low.cc (class x86_target) <emit_ops>: Declare.
+ (x86_emit_ops): Turn into...
+ (x86_target::emit_ops): ...this.
+ (the_low_target): Remove the op field.
+ * linux-aarch64-low.cc (class aarch64_target) <emit_ops>: Declare.
+ (aarch64_emit_ops): Turn into...
+ (aarch64_target::emit_ops): ...this.
+ (the_low_target): Remove the op field.
+ * linux-ppc-low.cc (class ppc_target) <emit_ops>: Declare.
+ (ppc_emit_ops): Turn into...
+ (ppc_target::emit_ops): ...this.
+ (the_low_target): Remove the op field.
+ * linux-s390-low.cc (class s390_target) <emit_ops>: Declare.
+ (s390_emit_ops): Turn into...
+ (s390_target::emit_ops): ...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 'install_fast_tracepoint_jump_pad' and
'get_min_fast_tracepoint_insn_len' linux target ops to let the
concrete linux target define the ops by overriding the declarations