convert to_download_trace_state_variable
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (update_current_target): Don't inherit or default to_download_trace_state_variable. * target.h (struct target_ops) <to_download_trace_state_variable>: Use TARGET_DEFAULT_NORETURN.
This commit is contained in:
parent
719acc4a29
commit
94eb98b974
4 changed files with 27 additions and 5 deletions
|
@ -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_download_trace_state_variable.
|
||||||
|
* target.h (struct target_ops) <to_download_trace_state_variable>:
|
||||||
|
Use TARGET_DEFAULT_NORETURN.
|
||||||
|
|
||||||
2014-02-19 Tom Tromey <tromey@redhat.com>
|
2014-02-19 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* target-delegates.c: Rebuild.
|
* target-delegates.c: Rebuild.
|
||||||
|
|
|
@ -676,6 +676,19 @@ tdefault_can_download_tracepoint (struct target_ops *self)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
delegate_download_trace_state_variable (struct target_ops *self, struct trace_state_variable *arg1)
|
||||||
|
{
|
||||||
|
self = self->beneath;
|
||||||
|
self->to_download_trace_state_variable (self, arg1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
tdefault_download_trace_state_variable (struct target_ops *self, struct trace_state_variable *arg1)
|
||||||
|
{
|
||||||
|
tcomplain ();
|
||||||
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
delegate_supports_btrace (struct target_ops *self)
|
delegate_supports_btrace (struct target_ops *self)
|
||||||
{
|
{
|
||||||
|
@ -810,6 +823,8 @@ install_delegators (struct target_ops *ops)
|
||||||
ops->to_download_tracepoint = delegate_download_tracepoint;
|
ops->to_download_tracepoint = delegate_download_tracepoint;
|
||||||
if (ops->to_can_download_tracepoint == NULL)
|
if (ops->to_can_download_tracepoint == NULL)
|
||||||
ops->to_can_download_tracepoint = delegate_can_download_tracepoint;
|
ops->to_can_download_tracepoint = delegate_can_download_tracepoint;
|
||||||
|
if (ops->to_download_trace_state_variable == NULL)
|
||||||
|
ops->to_download_trace_state_variable = delegate_download_trace_state_variable;
|
||||||
if (ops->to_supports_btrace == NULL)
|
if (ops->to_supports_btrace == NULL)
|
||||||
ops->to_supports_btrace = delegate_supports_btrace;
|
ops->to_supports_btrace = delegate_supports_btrace;
|
||||||
}
|
}
|
||||||
|
@ -876,5 +891,6 @@ install_dummy_methods (struct target_ops *ops)
|
||||||
ops->to_trace_init = tdefault_trace_init;
|
ops->to_trace_init = tdefault_trace_init;
|
||||||
ops->to_download_tracepoint = tdefault_download_tracepoint;
|
ops->to_download_tracepoint = tdefault_download_tracepoint;
|
||||||
ops->to_can_download_tracepoint = tdefault_can_download_tracepoint;
|
ops->to_can_download_tracepoint = tdefault_can_download_tracepoint;
|
||||||
|
ops->to_download_trace_state_variable = tdefault_download_trace_state_variable;
|
||||||
ops->to_supports_btrace = tdefault_supports_btrace;
|
ops->to_supports_btrace = tdefault_supports_btrace;
|
||||||
}
|
}
|
||||||
|
|
|
@ -691,7 +691,7 @@ update_current_target (void)
|
||||||
/* Do not inherit to_trace_init. */
|
/* Do not inherit to_trace_init. */
|
||||||
/* Do not inherit to_download_tracepoint. */
|
/* Do not inherit to_download_tracepoint. */
|
||||||
/* Do not inherit to_can_download_tracepoint. */
|
/* Do not inherit to_can_download_tracepoint. */
|
||||||
INHERIT (to_download_trace_state_variable, t);
|
/* Do not inherit to_download_trace_state_variable. */
|
||||||
INHERIT (to_enable_tracepoint, t);
|
INHERIT (to_enable_tracepoint, t);
|
||||||
INHERIT (to_disable_tracepoint, t);
|
INHERIT (to_disable_tracepoint, t);
|
||||||
INHERIT (to_trace_set_readonly_regions, t);
|
INHERIT (to_trace_set_readonly_regions, t);
|
||||||
|
@ -752,9 +752,6 @@ update_current_target (void)
|
||||||
(void (*) (struct target_ops *, ptid_t))
|
(void (*) (struct target_ops *, ptid_t))
|
||||||
target_ignore);
|
target_ignore);
|
||||||
current_target.to_read_description = NULL;
|
current_target.to_read_description = NULL;
|
||||||
de_fault (to_download_trace_state_variable,
|
|
||||||
(void (*) (struct target_ops *, struct trace_state_variable *))
|
|
||||||
tcomplain);
|
|
||||||
de_fault (to_enable_tracepoint,
|
de_fault (to_enable_tracepoint,
|
||||||
(void (*) (struct target_ops *, struct bp_location *))
|
(void (*) (struct target_ops *, struct bp_location *))
|
||||||
tcomplain);
|
tcomplain);
|
||||||
|
|
|
@ -816,7 +816,8 @@ struct target_ops
|
||||||
|
|
||||||
/* Send full details of a trace state variable to the target. */
|
/* Send full details of a trace state variable to the target. */
|
||||||
void (*to_download_trace_state_variable) (struct target_ops *,
|
void (*to_download_trace_state_variable) (struct target_ops *,
|
||||||
struct trace_state_variable *tsv);
|
struct trace_state_variable *tsv)
|
||||||
|
TARGET_DEFAULT_NORETURN (tcomplain ());
|
||||||
|
|
||||||
/* Enable a tracepoint on the target. */
|
/* Enable a tracepoint on the target. */
|
||||||
void (*to_enable_tracepoint) (struct target_ops *,
|
void (*to_enable_tracepoint) (struct target_ops *,
|
||||||
|
|
Loading…
Reference in a new issue