mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
btrace, gdbserver: read branch trace incrementally
Read branch trace data incrementally and extend the current trace rather than discarding it and reading the entire trace buffer each time. If the branch trace buffer overflowed, we can't extend the current trace so we discard it and start anew by reading the entire branch trace buffer. 2014-01-16 Markus Metzger <markus.t.metzger@intel.com> * common/linux-btrace.c (perf_event_read_bts, linux_read_btrace): Support delta reads. (linux_disable_btrace): Change return type. * common/linux-btrace.h (linux_read_btrace): Change parameters and return type to allow error reporting. Update users. (linux_disable_btrace): Change return type. Update users. * common/btrace-common.h (btrace_read_type) <BTRACE_READ_DELTA>: New. (btrace_error): New. (btrace_block) <begin>: Comment on BEGIN == 0. * btrace.c (btrace_compute_ftrace): Start from the end of the current trace. (btrace_stitch_trace, btrace_clear_history): New. (btrace_fetch): Read delta trace, return if replaying. (btrace_clear): Move clear history code to btrace_clear_history. (parse_xml_btrace): Throw an error if parsing failed. * target.h (struct target_ops) <to_read_btrace>: Change parameters and return type to allow error reporting. (target_read_btrace): Change parameters and return type to allow error reporting. * target.c (target_read_btrace): Update. * remote.c (remote_read_btrace): Support delta reads. Pass errors on. * NEWS: Announce it. gdbserver/ * target.h (target_ops) <read_btrace>: Change parameters and return type to allow error reporting. * server.c (handle_qxfer_btrace): Support delta reads. Pass trace reading errors on. * linux-low.c (linux_low_read_btrace): Pass trace reading errors on. (linux_low_disable_btrace): New.
This commit is contained in:
@ -5705,7 +5705,7 @@ linux_qxfer_libraries_svr4 (const char *annex, unsigned char *readbuf,
|
||||
|
||||
#ifdef HAVE_LINUX_BTRACE
|
||||
|
||||
/* Enable branch tracing. */
|
||||
/* See to_enable_btrace target method. */
|
||||
|
||||
static struct btrace_target_info *
|
||||
linux_low_enable_btrace (ptid_t ptid)
|
||||
@ -5725,17 +5725,39 @@ linux_low_enable_btrace (ptid_t ptid)
|
||||
return tinfo;
|
||||
}
|
||||
|
||||
/* Read branch trace data as btrace xml document. */
|
||||
/* See to_disable_btrace target method. */
|
||||
|
||||
static void
|
||||
static int
|
||||
linux_low_disable_btrace (struct btrace_target_info *tinfo)
|
||||
{
|
||||
enum btrace_error err;
|
||||
|
||||
err = linux_disable_btrace (tinfo);
|
||||
return (err == BTRACE_ERR_NONE ? 0 : -1);
|
||||
}
|
||||
|
||||
/* See to_read_btrace target method. */
|
||||
|
||||
static int
|
||||
linux_low_read_btrace (struct btrace_target_info *tinfo, struct buffer *buffer,
|
||||
int type)
|
||||
{
|
||||
VEC (btrace_block_s) *btrace;
|
||||
struct btrace_block *block;
|
||||
enum btrace_error err;
|
||||
int i;
|
||||
|
||||
btrace = linux_read_btrace (tinfo, type);
|
||||
btrace = NULL;
|
||||
err = linux_read_btrace (&btrace, tinfo, type);
|
||||
if (err != BTRACE_ERR_NONE)
|
||||
{
|
||||
if (err == BTRACE_ERR_OVERFLOW)
|
||||
buffer_grow_str0 (buffer, "E.Overflow.");
|
||||
else
|
||||
buffer_grow_str0 (buffer, "E.Generic Error.");
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
buffer_grow_str (buffer, "<!DOCTYPE btrace SYSTEM \"btrace.dtd\">\n");
|
||||
buffer_grow_str (buffer, "<btrace version=\"1.0\">\n");
|
||||
@ -5744,9 +5766,11 @@ linux_low_read_btrace (struct btrace_target_info *tinfo, struct buffer *buffer,
|
||||
buffer_xml_printf (buffer, "<block begin=\"0x%s\" end=\"0x%s\"/>\n",
|
||||
paddress (block->begin), paddress (block->end));
|
||||
|
||||
buffer_grow_str (buffer, "</btrace>\n");
|
||||
buffer_grow_str0 (buffer, "</btrace>\n");
|
||||
|
||||
VEC_free (btrace_block_s, btrace);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif /* HAVE_LINUX_BTRACE */
|
||||
|
||||
@ -5819,7 +5843,7 @@ static struct target_ops linux_target_ops = {
|
||||
#ifdef HAVE_LINUX_BTRACE
|
||||
linux_supports_btrace,
|
||||
linux_low_enable_btrace,
|
||||
linux_disable_btrace,
|
||||
linux_low_disable_btrace,
|
||||
linux_low_read_btrace,
|
||||
#else
|
||||
NULL,
|
||||
|
Reference in New Issue
Block a user