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

* target.h (struct target_ops) <to_call_history_range>: Add
argument.
* target.c (target_call_history_range): Add argument.
* record-btrace.c (record_btrace_call_history_range): Add 'self'
argument.
(record_btrace_call_history_from): Update.

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

index 1dd83d7a60fd92f2896f11eb0cd72aafb36db5a3..c606930a563da4effffcb7a693a03051209189c0 100644 (file)
@@ -1,3 +1,12 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_call_history_range>: Add
+       argument.
+       * target.c (target_call_history_range): Add argument.
+       * record-btrace.c (record_btrace_call_history_range): Add 'self'
+       argument.
+       (record_btrace_call_history_from): Update.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_call_history_from>: Add
index fafe5e181255251c170fd8755cfd2a47ef1b62c8..e343f38e242d344ae955efd60934e5c6dadea71c 100644 (file)
@@ -706,7 +706,8 @@ record_btrace_call_history (struct target_ops *self, int size, int flags)
 /* The to_call_history_range method of target record-btrace.  */
 
 static void
-record_btrace_call_history_range (ULONGEST from, ULONGEST to, int flags)
+record_btrace_call_history_range (struct target_ops *self,
+                                 ULONGEST from, ULONGEST to, int flags)
 {
   struct btrace_thread_info *btinfo;
   struct btrace_call_history *history;
@@ -786,7 +787,7 @@ record_btrace_call_history_from (struct target_ops *self,
        end = ULONGEST_MAX;
     }
 
-  record_btrace_call_history_range (begin, end, flags);
+  record_btrace_call_history_range (self, begin, end, flags);
 }
 
 /* The to_record_is_replaying method of target record-btrace.  */
index d2c4da8c953305fb0efb2ed1bd0aa3d183422293..d3f9fb835498e8af8f07a3e260891ae1448207ef 100644 (file)
@@ -4498,7 +4498,7 @@ target_call_history_range (ULONGEST begin, ULONGEST end, int flags)
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_call_history_range != NULL)
       {
-       t->to_call_history_range (begin, end, flags);
+       t->to_call_history_range (t, begin, end, flags);
        return;
       }
 
index de7412bd2502a2602e9396b67952dec52b6501b2..69fd0b90090193513ce953c143bbba74accbc7d2 100644 (file)
@@ -982,7 +982,8 @@ struct target_ops
 
     /* Print a function trace of an execution trace section from function BEGIN
        (inclusive) to function END (inclusive).  */
-    void (*to_call_history_range) (ULONGEST begin, ULONGEST end, int flags);
+    void (*to_call_history_range) (struct target_ops *,
+                                  ULONGEST begin, ULONGEST end, int flags);
 
     /* Nonzero if TARGET_OBJECT_LIBRARIES_SVR4 may be read with a
        non-empty annex.  */