* [PATCH v2] gdbstub: move update guest debug to accel ops
@ 2023-02-07 13:17 Mads Ynddal
2023-02-07 14:24 ` Philippe Mathieu-Daudé
2023-03-02 13:53 ` Alex Bennée
0 siblings, 2 replies; 3+ messages in thread
From: Mads Ynddal @ 2023-02-07 13:17 UTC (permalink / raw)
To: qemu-devel
Cc: Eduardo Habkost, kvm, Alex Bennée, Yanan Wang,
Marcel Apfelbaum, Philippe Mathieu-Daudé, Paolo Bonzini,
Richard Henderson, Mads Ynddal
From: Mads Ynddal <m.ynddal@samsung.com>
Continuing the refactor of a48e7d9e52 (gdbstub: move guest debug support
check to ops) by removing hardcoded kvm_enabled() from generic cpu.c
code, and replace it with a property of AccelOpsClass.
Signed-off-by: Mads Ynddal <m.ynddal@samsung.com>
---
accel/kvm/kvm-accel-ops.c | 5 +++++
cpu.c | 11 ++++++++---
include/sysemu/accel-ops.h | 1 +
3 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/accel/kvm/kvm-accel-ops.c b/accel/kvm/kvm-accel-ops.c
index fbf4fe3497..5e0fb42408 100644
--- a/accel/kvm/kvm-accel-ops.c
+++ b/accel/kvm/kvm-accel-ops.c
@@ -86,6 +86,10 @@ static bool kvm_cpus_are_resettable(void)
return !kvm_enabled() || kvm_cpu_check_are_resettable();
}
+static int kvm_update_guest_debug_ops(CPUState *cpu) {
+ return kvm_update_guest_debug(cpu, 0);
+}
+
static void kvm_accel_ops_class_init(ObjectClass *oc, void *data)
{
AccelOpsClass *ops = ACCEL_OPS_CLASS(oc);
@@ -99,6 +103,7 @@ static void kvm_accel_ops_class_init(ObjectClass *oc, void *data)
ops->synchronize_pre_loadvm = kvm_cpu_synchronize_pre_loadvm;
#ifdef KVM_CAP_SET_GUEST_DEBUG
+ ops->update_guest_debug = kvm_update_guest_debug_ops;
ops->supports_guest_debug = kvm_supports_guest_debug;
ops->insert_breakpoint = kvm_insert_breakpoint;
ops->remove_breakpoint = kvm_remove_breakpoint;
diff --git a/cpu.c b/cpu.c
index 21cf809614..fb9f0e3d22 100644
--- a/cpu.c
+++ b/cpu.c
@@ -31,8 +31,8 @@
#include "hw/core/sysemu-cpu-ops.h"
#include "exec/address-spaces.h"
#endif
+#include "sysemu/cpus.h"
#include "sysemu/tcg.h"
-#include "sysemu/kvm.h"
#include "sysemu/replay.h"
#include "exec/cpu-common.h"
#include "exec/exec-all.h"
@@ -396,9 +396,14 @@ void cpu_single_step(CPUState *cpu, int enabled)
{
if (cpu->singlestep_enabled != enabled) {
cpu->singlestep_enabled = enabled;
- if (kvm_enabled()) {
- kvm_update_guest_debug(cpu, 0);
+
+#if !defined(CONFIG_USER_ONLY)
+ const AccelOpsClass *ops = cpus_get_accel();
+ if (ops->update_guest_debug) {
+ ops->update_guest_debug(cpu);
}
+#endif
+
trace_breakpoint_singlestep(cpu->cpu_index, enabled);
}
}
diff --git a/include/sysemu/accel-ops.h b/include/sysemu/accel-ops.h
index 8cc7996def..cd6a4ef7a5 100644
--- a/include/sysemu/accel-ops.h
+++ b/include/sysemu/accel-ops.h
@@ -48,6 +48,7 @@ struct AccelOpsClass {
/* gdbstub hooks */
bool (*supports_guest_debug)(void);
+ int (*update_guest_debug)(CPUState *cpu);
int (*insert_breakpoint)(CPUState *cpu, int type, hwaddr addr, hwaddr len);
int (*remove_breakpoint)(CPUState *cpu, int type, hwaddr addr, hwaddr len);
void (*remove_all_breakpoints)(CPUState *cpu);
--
2.38.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] gdbstub: move update guest debug to accel ops
2023-02-07 13:17 [PATCH v2] gdbstub: move update guest debug to accel ops Mads Ynddal
@ 2023-02-07 14:24 ` Philippe Mathieu-Daudé
2023-03-02 13:53 ` Alex Bennée
1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-02-07 14:24 UTC (permalink / raw)
To: Mads Ynddal, qemu-devel
Cc: Eduardo Habkost, kvm, Alex Bennée, Yanan Wang,
Marcel Apfelbaum, Paolo Bonzini, Richard Henderson, Mads Ynddal
On 7/2/23 14:17, Mads Ynddal wrote:
> From: Mads Ynddal <m.ynddal@samsung.com>
>
> Continuing the refactor of a48e7d9e52 (gdbstub: move guest debug support
> check to ops) by removing hardcoded kvm_enabled() from generic cpu.c
> code, and replace it with a property of AccelOpsClass.
>
> Signed-off-by: Mads Ynddal <m.ynddal@samsung.com>
> ---
> accel/kvm/kvm-accel-ops.c | 5 +++++
> cpu.c | 11 ++++++++---
> include/sysemu/accel-ops.h | 1 +
> 3 files changed, 14 insertions(+), 3 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] gdbstub: move update guest debug to accel ops
2023-02-07 13:17 [PATCH v2] gdbstub: move update guest debug to accel ops Mads Ynddal
2023-02-07 14:24 ` Philippe Mathieu-Daudé
@ 2023-03-02 13:53 ` Alex Bennée
1 sibling, 0 replies; 3+ messages in thread
From: Alex Bennée @ 2023-03-02 13:53 UTC (permalink / raw)
To: Mads Ynddal
Cc: qemu-devel, Eduardo Habkost, kvm, Yanan Wang, Marcel Apfelbaum,
Philippe Mathieu-Daudé, Paolo Bonzini, Richard Henderson,
Mads Ynddal
Mads Ynddal <mads@ynddal.dk> writes:
> From: Mads Ynddal <m.ynddal@samsung.com>
>
> Continuing the refactor of a48e7d9e52 (gdbstub: move guest debug support
> check to ops) by removing hardcoded kvm_enabled() from generic cpu.c
> code, and replace it with a property of AccelOpsClass.
>
> Signed-off-by: Mads Ynddal <m.ynddal@samsung.com>
Queued to gdbstub/next, thanks.
--
Alex Bennée
Virtualisation Tech Lead @ Linaro
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-03-02 13:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-07 13:17 [PATCH v2] gdbstub: move update guest debug to accel ops Mads Ynddal
2023-02-07 14:24 ` Philippe Mathieu-Daudé
2023-03-02 13:53 ` Alex Bennée
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).