]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
convert to_can_download_tracepoint
authorTom Tromey <tromey@redhat.com>
Wed, 18 Dec 2013 21:00:23 +0000 (14:00 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Feb 2014 14:47:44 +0000 (07:47 -0700)
2014-02-19  Tom Tromey  <tromey@redhat.com>

* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_can_download_tracepoint.
* target.h (struct target_ops) <to_can_download_tracepoint>: Use
TARGET_DEFAULT_RETURN.

gdb/ChangeLog
gdb/target-delegates.c
gdb/target.c
gdb/target.h

index 51df9f990636c8ce8a38eade3a6fd34674209b27..4a5c9ea78531351b0d8d5ceb0292a75ed5bce944 100644 (file)
@@ -1,3 +1,11 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
+       to_can_download_tracepoint.
+       * target.h (struct target_ops) <to_can_download_tracepoint>: Use
+       TARGET_DEFAULT_RETURN.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target-delegates.c: Rebuild.
index 560a099b08c9161b7d3d352894e5e9ffe3f4dca9..2e0fddb0c67f00c7fc83e5cb3269fab36cf05197 100644 (file)
@@ -663,6 +663,19 @@ tdefault_download_tracepoint (struct target_ops *self, struct bp_location *arg1)
   tcomplain ();
 }
 
+static int
+delegate_can_download_tracepoint (struct target_ops *self)
+{
+  self = self->beneath;
+  return self->to_can_download_tracepoint (self);
+}
+
+static int
+tdefault_can_download_tracepoint (struct target_ops *self)
+{
+  return 0;
+}
+
 static int
 delegate_supports_btrace (struct target_ops *self)
 {
@@ -795,6 +808,8 @@ install_delegators (struct target_ops *ops)
     ops->to_trace_init = delegate_trace_init;
   if (ops->to_download_tracepoint == NULL)
     ops->to_download_tracepoint = delegate_download_tracepoint;
+  if (ops->to_can_download_tracepoint == NULL)
+    ops->to_can_download_tracepoint = delegate_can_download_tracepoint;
   if (ops->to_supports_btrace == NULL)
     ops->to_supports_btrace = delegate_supports_btrace;
 }
@@ -860,5 +875,6 @@ install_dummy_methods (struct target_ops *ops)
   ops->to_thread_architecture = default_thread_architecture;
   ops->to_trace_init = tdefault_trace_init;
   ops->to_download_tracepoint = tdefault_download_tracepoint;
+  ops->to_can_download_tracepoint = tdefault_can_download_tracepoint;
   ops->to_supports_btrace = tdefault_supports_btrace;
 }
index 1865e69f5b15d361792942287096736a9bb2d5f7..ce81c7cf1200fe20a00ac009e8212bd47bb140d5 100644 (file)
@@ -690,7 +690,7 @@ update_current_target (void)
       /* Do not inherit to_supports_string_tracing.  */
       /* Do not inherit to_trace_init.  */
       /* Do not inherit to_download_tracepoint.  */
-      INHERIT (to_can_download_tracepoint, t);
+      /* Do not inherit to_can_download_tracepoint.  */
       INHERIT (to_download_trace_state_variable, t);
       INHERIT (to_enable_tracepoint, t);
       INHERIT (to_disable_tracepoint, t);
@@ -752,9 +752,6 @@ update_current_target (void)
            (void (*) (struct target_ops *, ptid_t))
            target_ignore);
   current_target.to_read_description = NULL;
-  de_fault (to_can_download_tracepoint,
-           (int (*) (struct target_ops *))
-           return_zero);
   de_fault (to_download_trace_state_variable,
            (void (*) (struct target_ops *, struct trace_state_variable *))
            tcomplain);
index 3cfdfab19ddad452fa1154aa06d9e696d66b4e16..f0b46e4c46022511ea4cfb62b4074441df62dd96 100644 (file)
@@ -811,7 +811,8 @@ struct target_ops
 
     /* Is the target able to download tracepoint locations in current
        state?  */
-    int (*to_can_download_tracepoint) (struct target_ops *);
+    int (*to_can_download_tracepoint) (struct target_ops *)
+      TARGET_DEFAULT_RETURN (0);
 
     /* Send full details of a trace state variable to the target.  */
     void (*to_download_trace_state_variable) (struct target_ops *,