Add target_ops argument to to_insn_history
authorTom Tromey <tromey@redhat.com>
Wed, 18 Dec 2013 04:48:04 +0000 (21:48 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Feb 2014 14:46:53 +0000 (07:46 -0700)
2014-02-19  Tom Tromey  <tromey@redhat.com>

* target.h (struct target_ops) <to_insn_history>: Add argument.
* target.c (target_insn_history): Add argument.
* record-btrace.c (record_btrace_insn_history): Add 'self'
argument.

gdb/ChangeLog
gdb/record-btrace.c
gdb/target.c
gdb/target.h

index 8efd299f0307552c0fddde6a97968fb9e5019a9a..50bbe83dfa200c1f903e1e6815116e51e84e960a 100644 (file)
@@ -1,3 +1,10 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_insn_history>: Add argument.
+       * target.c (target_insn_history): Add argument.
+       * record-btrace.c (record_btrace_insn_history): Add 'self'
+       argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_goto_record>: Add argument.
index 7e03556eed0d7d54bc8e4d9ebe6c7e9466674749..ae2befff2ac06d794c8b95d31f89d4c8fb932d8b 100644 (file)
@@ -312,7 +312,7 @@ btrace_insn_history (struct ui_out *uiout,
 /* The to_insn_history method of target record-btrace.  */
 
 static void
-record_btrace_insn_history (int size, int flags)
+record_btrace_insn_history (struct target_ops *self, int size, int flags)
 {
   struct btrace_thread_info *btinfo;
   struct btrace_insn_history *history;
index ee5c8721170b707a18c912f7c17b4d27612170b9..cdfc87d868b87002ce038249e7bc1c0c3b81164e 100644 (file)
@@ -4413,7 +4413,7 @@ target_insn_history (int size, int flags)
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_insn_history != NULL)
       {
-       t->to_insn_history (size, flags);
+       t->to_insn_history (t, size, flags);
        return;
       }
 
index 8f22c677b1c3c730b829681b89ce0b0ecc3f54d6..43812226060c48818fbfd854289800e9bf7f6394 100644 (file)
@@ -954,7 +954,7 @@ struct target_ops
        the current position.
        If SIZE < 0, disassemble abs (SIZE) preceding instructions; otherwise,
        disassemble SIZE succeeding instructions.  */
-    void (*to_insn_history) (int size, int flags);
+    void (*to_insn_history) (struct target_ops *, int size, int flags);
 
     /* Disassemble SIZE instructions in the recorded execution trace around
        FROM.