mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
Add target_ops argument to to_get_raw_trace_data
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_get_raw_trace_data>: Add argument. (target_get_raw_trace_data): Add argument. * target.c (update_current_target): Update. * remote.c (remote_get_raw_trace_data): Add 'self' argument.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2014-02-19 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* target.h (struct target_ops) <to_get_raw_trace_data>: Add
|
||||||
|
argument.
|
||||||
|
(target_get_raw_trace_data): Add argument.
|
||||||
|
* target.c (update_current_target): Update.
|
||||||
|
* remote.c (remote_get_raw_trace_data): Add 'self' argument.
|
||||||
|
|
||||||
2014-02-19 Tom Tromey <tromey@redhat.com>
|
2014-02-19 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* target.h (struct target_ops) <to_upload_trace_state_variables>:
|
* target.h (struct target_ops) <to_upload_trace_state_variables>:
|
||||||
|
@ -10968,7 +10968,8 @@ remote_save_trace_data (struct target_ops *self, const char *filename)
|
|||||||
not be unhappy if we don't get as much as we ask for. */
|
not be unhappy if we don't get as much as we ask for. */
|
||||||
|
|
||||||
static LONGEST
|
static LONGEST
|
||||||
remote_get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
|
remote_get_raw_trace_data (struct target_ops *self,
|
||||||
|
gdb_byte *buf, ULONGEST offset, LONGEST len)
|
||||||
{
|
{
|
||||||
struct remote_state *rs = get_remote_state ();
|
struct remote_state *rs = get_remote_state ();
|
||||||
char *reply;
|
char *reply;
|
||||||
|
@ -899,7 +899,7 @@ update_current_target (void)
|
|||||||
(int (*) (struct target_ops *, struct uploaded_tsv **))
|
(int (*) (struct target_ops *, struct uploaded_tsv **))
|
||||||
return_zero);
|
return_zero);
|
||||||
de_fault (to_get_raw_trace_data,
|
de_fault (to_get_raw_trace_data,
|
||||||
(LONGEST (*) (gdb_byte *, ULONGEST, LONGEST))
|
(LONGEST (*) (struct target_ops *, gdb_byte *, ULONGEST, LONGEST))
|
||||||
tcomplain);
|
tcomplain);
|
||||||
de_fault (to_get_min_fast_tracepoint_insn_len,
|
de_fault (to_get_min_fast_tracepoint_insn_len,
|
||||||
(int (*) (void))
|
(int (*) (void))
|
||||||
|
@ -819,7 +819,7 @@ struct target_ops
|
|||||||
int (*to_upload_trace_state_variables) (struct target_ops *,
|
int (*to_upload_trace_state_variables) (struct target_ops *,
|
||||||
struct uploaded_tsv **utsvp);
|
struct uploaded_tsv **utsvp);
|
||||||
|
|
||||||
LONGEST (*to_get_raw_trace_data) (gdb_byte *buf,
|
LONGEST (*to_get_raw_trace_data) (struct target_ops *, gdb_byte *buf,
|
||||||
ULONGEST offset, LONGEST len);
|
ULONGEST offset, LONGEST len);
|
||||||
|
|
||||||
/* Get the minimum length of instruction on which a fast tracepoint
|
/* Get the minimum length of instruction on which a fast tracepoint
|
||||||
@ -1840,7 +1840,8 @@ extern char *target_fileio_read_stralloc (const char *filename);
|
|||||||
(*current_target.to_upload_trace_state_variables) (¤t_target, utsvp)
|
(*current_target.to_upload_trace_state_variables) (¤t_target, utsvp)
|
||||||
|
|
||||||
#define target_get_raw_trace_data(buf,offset,len) \
|
#define target_get_raw_trace_data(buf,offset,len) \
|
||||||
(*current_target.to_get_raw_trace_data) ((buf), (offset), (len))
|
(*current_target.to_get_raw_trace_data) (¤t_target, \
|
||||||
|
(buf), (offset), (len))
|
||||||
|
|
||||||
#define target_get_min_fast_tracepoint_insn_len() \
|
#define target_get_min_fast_tracepoint_insn_len() \
|
||||||
(*current_target.to_get_min_fast_tracepoint_insn_len) ()
|
(*current_target.to_get_min_fast_tracepoint_insn_len) ()
|
||||||
|
Reference in New Issue
Block a user