mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +08:00
convert to_save_record
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (target_save_record): Unconditionally delegate. * target.h (struct target_ops) <to_save_record>: Use TARGET_DEFAULT_NORETURN.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2014-02-19 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* target-delegates.c: Rebuild.
|
||||||
|
* target.c (target_save_record): Unconditionally delegate.
|
||||||
|
* target.h (struct target_ops) <to_save_record>: 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.
|
||||||
|
@ -1260,6 +1260,19 @@ tdefault_supports_btrace (struct target_ops *self)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
delegate_save_record (struct target_ops *self, const char *arg1)
|
||||||
|
{
|
||||||
|
self = self->beneath;
|
||||||
|
self->to_save_record (self, arg1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
tdefault_save_record (struct target_ops *self, const char *arg1)
|
||||||
|
{
|
||||||
|
tcomplain ();
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
delegate_delete_record (struct target_ops *self)
|
delegate_delete_record (struct target_ops *self)
|
||||||
{
|
{
|
||||||
@ -1631,6 +1644,8 @@ install_delegators (struct target_ops *ops)
|
|||||||
ops->to_can_use_agent = delegate_can_use_agent;
|
ops->to_can_use_agent = delegate_can_use_agent;
|
||||||
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;
|
||||||
|
if (ops->to_save_record == NULL)
|
||||||
|
ops->to_save_record = delegate_save_record;
|
||||||
if (ops->to_delete_record == NULL)
|
if (ops->to_delete_record == NULL)
|
||||||
ops->to_delete_record = delegate_delete_record;
|
ops->to_delete_record = delegate_delete_record;
|
||||||
if (ops->to_record_is_replaying == NULL)
|
if (ops->to_record_is_replaying == NULL)
|
||||||
@ -1766,6 +1781,7 @@ install_dummy_methods (struct target_ops *ops)
|
|||||||
ops->to_use_agent = tdefault_use_agent;
|
ops->to_use_agent = tdefault_use_agent;
|
||||||
ops->to_can_use_agent = tdefault_can_use_agent;
|
ops->to_can_use_agent = tdefault_can_use_agent;
|
||||||
ops->to_supports_btrace = tdefault_supports_btrace;
|
ops->to_supports_btrace = tdefault_supports_btrace;
|
||||||
|
ops->to_save_record = tdefault_save_record;
|
||||||
ops->to_delete_record = tdefault_delete_record;
|
ops->to_delete_record = tdefault_delete_record;
|
||||||
ops->to_record_is_replaying = tdefault_record_is_replaying;
|
ops->to_record_is_replaying = tdefault_record_is_replaying;
|
||||||
ops->to_goto_record_begin = tdefault_goto_record_begin;
|
ops->to_goto_record_begin = tdefault_goto_record_begin;
|
||||||
|
11
gdb/target.c
11
gdb/target.c
@ -3899,16 +3899,7 @@ target_info_record (void)
|
|||||||
void
|
void
|
||||||
target_save_record (const char *filename)
|
target_save_record (const char *filename)
|
||||||
{
|
{
|
||||||
struct target_ops *t;
|
current_target.to_save_record (¤t_target, filename);
|
||||||
|
|
||||||
for (t = current_target.beneath; t != NULL; t = t->beneath)
|
|
||||||
if (t->to_save_record != NULL)
|
|
||||||
{
|
|
||||||
t->to_save_record (t, filename);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
tcomplain ();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* See target.h. */
|
/* See target.h. */
|
||||||
|
@ -1026,7 +1026,8 @@ struct target_ops
|
|||||||
void (*to_info_record) (struct target_ops *);
|
void (*to_info_record) (struct target_ops *);
|
||||||
|
|
||||||
/* Save the recorded execution trace into a file. */
|
/* Save the recorded execution trace into a file. */
|
||||||
void (*to_save_record) (struct target_ops *, const char *filename);
|
void (*to_save_record) (struct target_ops *, const char *filename)
|
||||||
|
TARGET_DEFAULT_NORETURN (tcomplain ());
|
||||||
|
|
||||||
/* Delete the recorded execution trace from the current position onwards. */
|
/* Delete the recorded execution trace from the current position onwards. */
|
||||||
void (*to_delete_record) (struct target_ops *)
|
void (*to_delete_record) (struct target_ops *)
|
||||||
|
Reference in New Issue
Block a user