All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: Peter Maydell <peter.maydell@linaro.org>,
	qemu-arm@nongnu.org, qemu-devel@nongnu.org
Cc: Richard Henderson <rth@twiddle.net>, patches@linaro.org
Subject: Re: [Qemu-devel] [Qemu-arm] [PATCH 3/7] arm: Factor out "generate right kind of step exception"
Date: Mon, 10 Apr 2017 08:43:05 -0300	[thread overview]
Message-ID: <c05b13b4-9ffe-318c-6ee6-04e1630ab92d@amsat.org> (raw)
In-Reply-To: <1491820793-5348-4-git-send-email-peter.maydell@linaro.org>

On 04/10/2017 07:39 AM, Peter Maydell wrote:
> We currently have two places that do:
>             if (dc->ss_active) {
>                 gen_step_complete_exception(dc);
>             } else {
>                 gen_exception_internal(EXCP_DEBUG);
>             }
>
> Factor this out into its own function, as we're about to add
> a third place that needs the same logic.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

> ---
>  target/arm/translate.c | 28 ++++++++++++++++------------
>  1 file changed, 16 insertions(+), 12 deletions(-)
>
> diff --git a/target/arm/translate.c b/target/arm/translate.c
> index ddc62b6..870e320 100644
> --- a/target/arm/translate.c
> +++ b/target/arm/translate.c
> @@ -296,6 +296,19 @@ static void gen_step_complete_exception(DisasContext *s)
>      s->is_jmp = DISAS_EXC;
>  }
>
> +static void gen_singlestep_exception(DisasContext *s)
> +{
> +    /* Generate the right kind of exception for singlestep, which is
> +     * either the architectural singlestep or EXCP_DEBUG for QEMU's
> +     * gdb singlestepping.
> +     */
> +    if (s->ss_active) {
> +        gen_step_complete_exception(s);
> +    } else {
> +        gen_exception_internal(EXCP_DEBUG);
> +    }
> +}
> +
>  static void gen_smul_dual(TCGv_i32 a, TCGv_i32 b)
>  {
>      TCGv_i32 tmp1 = tcg_temp_new_i32();
> @@ -11998,24 +12011,15 @@ void gen_intermediate_code(CPUARMState *env, TranslationBlock *tb)
>              gen_set_pc_im(dc, dc->pc);
>              /* fall through */
>          default:
> -            if (dc->ss_active) {
> -                gen_step_complete_exception(dc);
> -            } else {
> -                /* FIXME: Single stepping a WFI insn will not halt
> -                   the CPU.  */
> -                gen_exception_internal(EXCP_DEBUG);
> -            }
> +            /* FIXME: Single stepping a WFI insn will not halt the CPU. */
> +            gen_singlestep_exception(dc);
>          }
>          if (dc->condjmp) {
>              /* "Condition failed" instruction codepath. */
>              gen_set_label(dc->condlabel);
>              gen_set_condexec(dc);
>              gen_set_pc_im(dc, dc->pc);
> -            if (dc->ss_active) {
> -                gen_step_complete_exception(dc);
> -            } else {
> -                gen_exception_internal(EXCP_DEBUG);
> -            }
> +            gen_singlestep_exception(dc);
>          }
>      } else {
>          /* While branches must always occur at the end of an IT block,
>

  reply	other threads:[~2017-04-10 11:43 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-10 10:39 [Qemu-devel] [PATCH 0/7] arm: Implement M profile exception return properly Peter Maydell
2017-04-10 10:39 ` [Qemu-devel] [PATCH 1/7] arm: Don't implement BXJ on M-profile CPUs Peter Maydell
2017-04-10 11:43   ` [Qemu-devel] [Qemu-arm] " Philippe Mathieu-Daudé
2017-04-10 10:39 ` [Qemu-devel] [PATCH 2/7] arm: Thumb shift operations should not permit interworking branches Peter Maydell
2017-04-10 10:39 ` [Qemu-devel] [PATCH 3/7] arm: Factor out "generate right kind of step exception" Peter Maydell
2017-04-10 11:43   ` Philippe Mathieu-Daudé [this message]
2017-04-10 10:39 ` [Qemu-devel] [PATCH 4/7] arm: Move gen_set_condexec() and gen_set_pc_im() up in the file Peter Maydell
2017-04-10 11:44   ` [Qemu-devel] [Qemu-arm] " Philippe Mathieu-Daudé
2017-04-10 10:39 ` [Qemu-devel] [PATCH 5/7] arm: Move condition-failed codepath generation out of if() Peter Maydell
2017-04-10 13:22   ` [Qemu-devel] [Qemu-arm] " Philippe Mathieu-Daudé
2017-04-10 16:45     ` Peter Maydell
2017-04-10 10:39 ` [Qemu-devel] [PATCH 6/7] arm: Implement M profile exception return properly Peter Maydell
2017-04-10 13:52   ` [Qemu-devel] [Qemu-arm] " Philippe Mathieu-Daudé
2017-04-10 13:54     ` Peter Maydell
2017-04-10 16:28   ` Peter Maydell
2017-04-10 10:39 ` [Qemu-devel] [PATCH 7/7] arm: Remove workarounds for old M-profile exception return implementation Peter Maydell
2017-04-10 13:53   ` [Qemu-devel] [Qemu-arm] " Philippe Mathieu-Daudé

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=c05b13b4-9ffe-318c-6ee6-04e1630ab92d@amsat.org \
    --to=f4bug@amsat.org \
    --cc=patches@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.