From: David Gibson <david@gibson.dropbear.id.au>
To: Fabiano Rosas <farosas@linux.ibm.com>
Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org,
Paolo Bonzini <pbonzini@redhat.com>,
Richard Henderson <rth@twiddle.net>,
Alexey Kardashevskiy <aik@ozlabs.ru>
Subject: Re: [Qemu-devel] [RFC PATCH v4 3/5] target/ppc: Move handling of hardware breakpoints to a separate function
Date: Mon, 4 Mar 2019 16:51:38 +1100 [thread overview]
Message-ID: <20190304055138.GN7792@umbus.fritz.box> (raw)
In-Reply-To: <20190228225759.21328-4-farosas@linux.ibm.com>
[-- Attachment #1: Type: text/plain, Size: 3285 bytes --]
On Thu, Feb 28, 2019 at 07:57:57PM -0300, Fabiano Rosas wrote:
> This is in preparation for a refactoring of the kvm_handle_debug
> function in the next patch.
>
> Signed-off-by: Fabiano Rosas <farosas@linux.ibm.com>
Nice cleanup regardless of anything else. Applied to ppc-for-4.0.
> ---
> target/ppc/kvm.c | 47 ++++++++++++++++++++++++++++-------------------
> 1 file changed, 28 insertions(+), 19 deletions(-)
>
> diff --git a/target/ppc/kvm.c b/target/ppc/kvm.c
> index d01852fe31..941c4e7523 100644
> --- a/target/ppc/kvm.c
> +++ b/target/ppc/kvm.c
> @@ -1593,35 +1593,44 @@ void kvm_arch_update_guest_debug(CPUState *cs, struct kvm_guest_debug *dbg)
> }
> }
>
> +static int kvm_handle_hw_breakpoint(CPUState *cs,
> + struct kvm_debug_exit_arch *arch_info)
> +{
> + int handle = 0;
> + int n;
> + int flag = 0;
> +
> + if (nb_hw_breakpoint + nb_hw_watchpoint > 0) {
> + if (arch_info->status & KVMPPC_DEBUG_BREAKPOINT) {
> + n = find_hw_breakpoint(arch_info->address, GDB_BREAKPOINT_HW);
> + if (n >= 0) {
> + handle = 1;
> + }
> + } else if (arch_info->status & (KVMPPC_DEBUG_WATCH_READ |
> + KVMPPC_DEBUG_WATCH_WRITE)) {
> + n = find_hw_watchpoint(arch_info->address, &flag);
> + if (n >= 0) {
> + handle = 1;
> + cs->watchpoint_hit = &hw_watchpoint;
> + hw_watchpoint.vaddr = hw_debug_points[n].addr;
> + hw_watchpoint.flags = flag;
> + }
> + }
> + }
> + return handle;
> +}
> +
> static int kvm_handle_debug(PowerPCCPU *cpu, struct kvm_run *run)
> {
> CPUState *cs = CPU(cpu);
> CPUPPCState *env = &cpu->env;
> struct kvm_debug_exit_arch *arch_info = &run->debug.arch;
> int handle = 0;
> - int n;
> - int flag = 0;
>
> if (cs->singlestep_enabled) {
> handle = 1;
> } else if (arch_info->status) {
> - if (nb_hw_breakpoint + nb_hw_watchpoint > 0) {
> - if (arch_info->status & KVMPPC_DEBUG_BREAKPOINT) {
> - n = find_hw_breakpoint(arch_info->address, GDB_BREAKPOINT_HW);
> - if (n >= 0) {
> - handle = 1;
> - }
> - } else if (arch_info->status & (KVMPPC_DEBUG_WATCH_READ |
> - KVMPPC_DEBUG_WATCH_WRITE)) {
> - n = find_hw_watchpoint(arch_info->address, &flag);
> - if (n >= 0) {
> - handle = 1;
> - cs->watchpoint_hit = &hw_watchpoint;
> - hw_watchpoint.vaddr = hw_debug_points[n].addr;
> - hw_watchpoint.flags = flag;
> - }
> - }
> - }
> + handle = kvm_handle_hw_breakpoint(cs, arch_info);
> } else if (kvm_find_sw_breakpoint(cs, arch_info->address)) {
> handle = 1;
> } else {
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2019-03-04 6:51 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-28 22:57 [Qemu-devel] [RFC PATCH v4 0/5] target/ppc: single step for KVM HV Fabiano Rosas
2019-02-28 22:57 ` [Qemu-devel] [RFC PATCH v4 1/5] target/ppc: Move exception vector offset computation into a function Fabiano Rosas
2019-03-04 5:36 ` David Gibson
2019-02-28 22:57 ` [Qemu-devel] [RFC PATCH v4 2/5] kvm-all: Introduce kvm_set_singlestep Fabiano Rosas
2019-03-04 5:50 ` David Gibson
2019-03-04 12:58 ` Fabiano Rosas
2019-03-08 19:09 ` Fabiano Rosas
2019-02-28 22:57 ` [Qemu-devel] [RFC PATCH v4 3/5] target/ppc: Move handling of hardware breakpoints to a separate function Fabiano Rosas
2019-03-04 5:51 ` David Gibson [this message]
2019-02-28 22:57 ` [Qemu-devel] [RFC PATCH v4 4/5] target/ppc: Refactor kvm_handle_debug Fabiano Rosas
2019-03-04 5:56 ` David Gibson
2019-02-28 22:57 ` [Qemu-devel] [RFC PATCH v4 5/5] target/ppc: support single stepping with KVM HV Fabiano Rosas
[not found] ` <b8a30b89-8c19-821e-e3a3-f1b71a088d9d@ozlabs.ru>
[not found] ` <87ef73rl39.fsf@linux.ibm.com>
[not found] ` <eadc5e30-5094-9b76-7268-cfb633ac40bd@ozlabs.ru>
2019-06-12 6:31 ` Alexey Kardashevskiy
2019-06-12 13:34 ` Fabiano Rosas
2019-06-12 23:27 ` Alexey Kardashevskiy
2019-06-13 2:01 ` Fabiano Rosas
2019-06-13 6:03 ` Alexey Kardashevskiy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190304055138.GN7792@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=aik@ozlabs.ru \
--cc=farosas@linux.ibm.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).