xref: /qemu/gdbstub/trace-events (revision 5db05230)
1# See docs/devel/tracing.rst for syntax documentation.
2
3# gdbstub.c
4gdbstub_op_start(const char *device) "Starting gdbstub using device %s"
5gdbstub_op_exiting(uint8_t code) "notifying exit with code=0x%02x"
6gdbstub_op_continue(void) "Continuing all CPUs"
7gdbstub_op_continue_cpu(int cpu_index) "Continuing CPU %d"
8gdbstub_op_stepping(int cpu_index) "Stepping CPU %d"
9gdbstub_op_extra_info(const char *info) "Thread extra info: %s"
10gdbstub_hit_internal_error(void) "RUN_STATE_INTERNAL_ERROR"
11gdbstub_hit_break(void) "RUN_STATE_DEBUG"
12gdbstub_hit_paused(void) "RUN_STATE_PAUSED"
13gdbstub_hit_shutdown(void) "RUN_STATE_SHUTDOWN"
14gdbstub_hit_io_error(void) "RUN_STATE_IO_ERROR"
15gdbstub_hit_watchdog(void) "RUN_STATE_WATCHDOG"
16gdbstub_hit_unknown(int state) "Unknown run state=0x%x"
17gdbstub_io_reply(const char *message) "Sent: %s"
18gdbstub_io_binaryreply(size_t ofs, const char *line) "0x%04zx: %s"
19gdbstub_io_command(const char *command) "Received: %s"
20gdbstub_io_got_ack(void) "Got ACK"
21gdbstub_io_got_unexpected(uint8_t ch) "Got 0x%02x when expecting ACK/NACK"
22gdbstub_err_got_nack(void) "Got NACK, retransmitting"
23gdbstub_err_garbage(uint8_t ch) "received garbage between packets: 0x%02x"
24gdbstub_err_overrun(void) "command buffer overrun, dropping command"
25gdbstub_err_invalid_repeat(uint8_t ch) "got invalid RLE count: 0x%02x"
26gdbstub_err_invalid_rle(void) "got invalid RLE sequence"
27gdbstub_err_checksum_invalid(uint8_t ch) "got invalid command checksum digit: 0x%02x"
28gdbstub_err_checksum_incorrect(uint8_t expected, uint8_t got) "got command packet with incorrect checksum, expected=0x%02x, received=0x%02x"
29gdbstub_err_unexpected_runpkt(uint8_t ch) "unexpected packet (0x%02x) while target running"
30
31# system.c
32gdbstub_hit_watchpoint(const char *type, int cpu_gdb_index, uint64_t vaddr) "Watchpoint hit, type=\"%s\" cpu=%d, vaddr=0x%" PRIx64 ""
33