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 8efd299..50bbe83 100644 (file)
@@ -1,5 +1,12 @@
 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.
        * target.c (target_goto_record): Add argument.
        * record-full.c (record_full_goto): Add 'self' argument.
index 7e03556..ae2beff 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 ee5c872..cdfc87d 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 8f22c67..4381222 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.