mirror of https://github.com/xemu-project/xemu.git
cpu: Add breakpoint tracepoints
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
f4e01e3021
commit
ad1a706f38
13
cpu.c
13
cpu.c
|
@ -38,6 +38,7 @@
|
||||||
#include "exec/translate-all.h"
|
#include "exec/translate-all.h"
|
||||||
#include "exec/log.h"
|
#include "exec/log.h"
|
||||||
#include "hw/core/accel-cpu.h"
|
#include "hw/core/accel-cpu.h"
|
||||||
|
#include "trace/trace-root.h"
|
||||||
|
|
||||||
uintptr_t qemu_host_page_size;
|
uintptr_t qemu_host_page_size;
|
||||||
intptr_t qemu_host_page_mask;
|
intptr_t qemu_host_page_mask;
|
||||||
|
@ -285,6 +286,8 @@ int cpu_breakpoint_insert(CPUState *cpu, vaddr pc, int flags,
|
||||||
if (breakpoint) {
|
if (breakpoint) {
|
||||||
*breakpoint = bp;
|
*breakpoint = bp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
trace_breakpoint_insert(cpu->cpu_index, pc, flags);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -303,13 +306,14 @@ int cpu_breakpoint_remove(CPUState *cpu, vaddr pc, int flags)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove a specific breakpoint by reference. */
|
/* Remove a specific breakpoint by reference. */
|
||||||
void cpu_breakpoint_remove_by_ref(CPUState *cpu, CPUBreakpoint *breakpoint)
|
void cpu_breakpoint_remove_by_ref(CPUState *cpu, CPUBreakpoint *bp)
|
||||||
{
|
{
|
||||||
QTAILQ_REMOVE(&cpu->breakpoints, breakpoint, entry);
|
QTAILQ_REMOVE(&cpu->breakpoints, bp, entry);
|
||||||
|
|
||||||
breakpoint_invalidate(cpu, breakpoint->pc);
|
breakpoint_invalidate(cpu, bp->pc);
|
||||||
|
|
||||||
g_free(breakpoint);
|
trace_breakpoint_remove(cpu->cpu_index, bp->pc, bp->flags);
|
||||||
|
g_free(bp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove all matching breakpoints. */
|
/* Remove all matching breakpoints. */
|
||||||
|
@ -337,6 +341,7 @@ void cpu_single_step(CPUState *cpu, int enabled)
|
||||||
/* XXX: only flush what is necessary */
|
/* XXX: only flush what is necessary */
|
||||||
tb_flush(cpu);
|
tb_flush(cpu);
|
||||||
}
|
}
|
||||||
|
trace_breakpoint_singlestep(cpu->cpu_index, enabled);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,11 @@
|
||||||
#
|
#
|
||||||
# The <format-string> should be a sprintf()-compatible format string.
|
# The <format-string> should be a sprintf()-compatible format string.
|
||||||
|
|
||||||
|
# cpu.c
|
||||||
|
breakpoint_insert(int cpu_index, uint64_t pc, int flags) "cpu=%d pc=0x%" PRIx64 " flags=0x%x"
|
||||||
|
breakpoint_remove(int cpu_index, uint64_t pc, int flags) "cpu=%d pc=0x%" PRIx64 " flags=0x%x"
|
||||||
|
breakpoint_singlestep(int cpu_index, int enabled) "cpu=%d enable=%d"
|
||||||
|
|
||||||
# dma-helpers.c
|
# dma-helpers.c
|
||||||
dma_blk_io(void *dbs, void *bs, int64_t offset, bool to_dev) "dbs=%p bs=%p offset=%" PRId64 " to_dev=%d"
|
dma_blk_io(void *dbs, void *bs, int64_t offset, bool to_dev) "dbs=%p bs=%p offset=%" PRId64 " to_dev=%d"
|
||||||
dma_aio_cancel(void *dbs) "dbs=%p"
|
dma_aio_cancel(void *dbs) "dbs=%p"
|
||||||
|
|
Loading…
Reference in New Issue