qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Hildenbrand <david@redhat.com>
To: Richard Henderson <richard.henderson@linaro.org>, qemu-devel@nongnu.org
Cc: qemu-s390x@nongnu.org
Subject: Re: [Qemu-devel] [qemu-s390x] [PATCH v3 9/9] target/s390x: Check HAVE_ATOMIC128 and HAVE_CMPXCHG128 at translate
Date: Thu, 11 Oct 2018 10:09:59 +0200	[thread overview]
Message-ID: <af68c287-66d4-fdae-0d9c-50306dfaf563@redhat.com> (raw)
In-Reply-To: <20181003193931.18096-10-richard.henderson@linaro.org>

On 03/10/2018 21:39, Richard Henderson wrote:
> Cc: qemu-s390x@nongnu.org
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>  target/s390x/mem_helper.c | 40 +++++++++++++++++++--------------------
>  target/s390x/translate.c  | 25 +++++++++++++++++-------
>  2 files changed, 38 insertions(+), 27 deletions(-)
> 
> diff --git a/target/s390x/mem_helper.c b/target/s390x/mem_helper.c
> index b5858d2fa2..490c43e6e6 100644
> --- a/target/s390x/mem_helper.c
> +++ b/target/s390x/mem_helper.c
> @@ -1420,9 +1420,7 @@ void HELPER(cdsg_parallel)(CPUS390XState *env, uint64_t addr,
>      Int128 oldv;
>      bool fail;
>  
> -    if (!HAVE_CMPXCHG128) {
> -        cpu_loop_exit_atomic(ENV_GET_CPU(env), ra);
> -    }
> +    assert(HAVE_CMPXCHG128);
>  
>      mem_idx = cpu_mmu_index(env, false);
>      oi = make_memop_idx(MO_TEQ | MO_ALIGN_16, mem_idx);
> @@ -2115,16 +2113,17 @@ uint64_t HELPER(lpq_parallel)(CPUS390XState *env, uint64_t addr)
>  {
>      uintptr_t ra = GETPC();
>      uint64_t hi, lo;
> +    int mem_idx;
> +    TCGMemOpIdx oi;
> +    Int128 v;
>  
> -    if (HAVE_ATOMIC128) {
> -        int mem_idx = cpu_mmu_index(env, false);
> -        TCGMemOpIdx oi = make_memop_idx(MO_TEQ | MO_ALIGN_16, mem_idx);
> -        Int128 v = helper_atomic_ldo_be_mmu(env, addr, oi, ra);
> -        hi = int128_gethi(v);
> -        lo = int128_getlo(v);
> -    } else {
> -        cpu_loop_exit_atomic(ENV_GET_CPU(env), ra);
> -    }
> +    assert(HAVE_ATOMIC128);
> +
> +    mem_idx = cpu_mmu_index(env, false);
> +    oi = make_memop_idx(MO_TEQ | MO_ALIGN_16, mem_idx);
> +    v = helper_atomic_ldo_be_mmu(env, addr, oi, ra);
> +    hi = int128_gethi(v);
> +    lo = int128_getlo(v);
>  
>      env->retxl = lo;
>      return hi;
> @@ -2145,15 +2144,16 @@ void HELPER(stpq_parallel)(CPUS390XState *env, uint64_t addr,
>                             uint64_t low, uint64_t high)
>  {
>      uintptr_t ra = GETPC();
> +    int mem_idx;
> +    TCGMemOpIdx oi;
> +    Int128 v;
>  
> -    if (HAVE_ATOMIC128) {
> -        int mem_idx = cpu_mmu_index(env, false);
> -        TCGMemOpIdx oi = make_memop_idx(MO_TEQ | MO_ALIGN_16, mem_idx);
> -        Int128 v = int128_make128(low, high);
> -        helper_atomic_sto_be_mmu(env, addr, v, oi, ra);
> -    } else {
> -        cpu_loop_exit_atomic(ENV_GET_CPU(env), ra);
> -    }
> +    assert(HAVE_ATOMIC128);
> +
> +    mem_idx = cpu_mmu_index(env, false);
> +    oi = make_memop_idx(MO_TEQ | MO_ALIGN_16, mem_idx);
> +    v = int128_make128(low, high);
> +    helper_atomic_sto_be_mmu(env, addr, v, oi, ra);
>  }
>  
>  /* Execute instruction.  This instruction executes an insn modified with
> diff --git a/target/s390x/translate.c b/target/s390x/translate.c
> index 7fad3ad8e9..57fe74e4a0 100644
> --- a/target/s390x/translate.c
> +++ b/target/s390x/translate.c
> @@ -44,6 +44,7 @@
>  #include "trace-tcg.h"
>  #include "exec/translator.h"
>  #include "exec/log.h"
> +#include "qemu/atomic128.h"
>  
>  
>  /* Information that (most) every instruction needs to manipulate.  */
> @@ -2032,6 +2033,7 @@ static DisasJumpType op_cdsg(DisasContext *s, DisasOps *o)
>      int r3 = get_field(s->fields, r3);
>      int d2 = get_field(s->fields, d2);
>      int b2 = get_field(s->fields, b2);
> +    DisasJumpType ret = DISAS_NEXT;
>      TCGv_i64 addr;
>      TCGv_i32 t_r1, t_r3;
>  
> @@ -2039,17 +2041,20 @@ static DisasJumpType op_cdsg(DisasContext *s, DisasOps *o)
>      addr = get_address(s, 0, b2, d2);
>      t_r1 = tcg_const_i32(r1);
>      t_r3 = tcg_const_i32(r3);
> -    if (tb_cflags(s->base.tb) & CF_PARALLEL) {
> +    if (!(tb_cflags(s->base.tb) & CF_PARALLEL)) {
> +        gen_helper_cdsg(cpu_env, addr, t_r1, t_r3);
> +    } else if (HAVE_CMPXCHG128) {
>          gen_helper_cdsg_parallel(cpu_env, addr, t_r1, t_r3);
>      } else {
> -        gen_helper_cdsg(cpu_env, addr, t_r1, t_r3);
> +        gen_helper_exit_atomic(cpu_env);
> +        ret = DISAS_NORETURN;
>      }
>      tcg_temp_free_i64(addr);
>      tcg_temp_free_i32(t_r1);
>      tcg_temp_free_i32(t_r3);
>  
>      set_cc_static(s);
> -    return DISAS_NEXT;
> +    return ret;
>  }
>  
>  static DisasJumpType op_csst(DisasContext *s, DisasOps *o)
> @@ -3036,10 +3041,13 @@ static DisasJumpType op_lpd(DisasContext *s, DisasOps *o)
>  
>  static DisasJumpType op_lpq(DisasContext *s, DisasOps *o)
>  {
> -    if (tb_cflags(s->base.tb) & CF_PARALLEL) {
> +    if (!(tb_cflags(s->base.tb) & CF_PARALLEL)) {
> +        gen_helper_lpq(o->out, cpu_env, o->in2);
> +    } else if (HAVE_ATOMIC128) {
>          gen_helper_lpq_parallel(o->out, cpu_env, o->in2);
>      } else {
> -        gen_helper_lpq(o->out, cpu_env, o->in2);
> +        gen_helper_exit_atomic(cpu_env);
> +        return DISAS_NORETURN;
>      }
>      return_low128(o->out2);
>      return DISAS_NEXT;
> @@ -4462,10 +4470,13 @@ static DisasJumpType op_stmh(DisasContext *s, DisasOps *o)
>  
>  static DisasJumpType op_stpq(DisasContext *s, DisasOps *o)
>  {
> -    if (tb_cflags(s->base.tb) & CF_PARALLEL) {
> +    if (!(tb_cflags(s->base.tb) & CF_PARALLEL)) {
> +        gen_helper_stpq(cpu_env, o->in2, o->out2, o->out);
> +    } else if (HAVE_ATOMIC128) {
>          gen_helper_stpq_parallel(cpu_env, o->in2, o->out2, o->out);
>      } else {
> -        gen_helper_stpq(cpu_env, o->in2, o->out2, o->out);
> +        gen_helper_exit_atomic(cpu_env);
> +        return DISAS_NORETURN;
>      }
>      return DISAS_NEXT;
>  }
> 

Reviewed-by: David Hildenbrand <david@redhat.com>

-- 

Thanks,

David / dhildenb

  reply	other threads:[~2018-10-11  8:10 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-03 19:39 [Qemu-devel] [PATCH v3 0/9] tcg: Reorg 128-bit atomic operations Richard Henderson
2018-10-03 19:39 ` [Qemu-devel] [PATCH v3 1/9] tcg: Split CONFIG_ATOMIC128 Richard Henderson
2018-10-03 19:39 ` [Qemu-devel] [PATCH v3 2/9] target/i386: Convert to HAVE_CMPXCHG128 Richard Henderson
2018-10-11 10:55   ` Philippe Mathieu-Daudé
2018-10-03 19:39 ` [Qemu-devel] [PATCH v3 3/9] target/arm: " Richard Henderson
2018-10-03 19:39 ` [Qemu-devel] [PATCH v3 4/9] target/arm: Check HAVE_CMPXCHG128 at translate time Richard Henderson
2018-10-11 10:55   ` Philippe Mathieu-Daudé
2018-10-03 19:39 ` [Qemu-devel] [PATCH v3 5/9] target/ppc: Convert to HAVE_CMPXCHG128 and HAVE_ATOMIC128 Richard Henderson
2018-10-03 19:39 ` [Qemu-devel] [PATCH v3 6/9] target/s390x: " Richard Henderson
2018-10-11  7:58   ` [Qemu-devel] [qemu-s390x] " David Hildenbrand
2018-10-03 19:39 ` [Qemu-devel] [PATCH v3 7/9] target/s390x: Split do_cdsg, do_lpq, do_stpq Richard Henderson
2018-10-11  8:02   ` [Qemu-devel] [qemu-s390x] " David Hildenbrand
2018-10-03 19:39 ` [Qemu-devel] [PATCH v3 8/9] target/s390x: Skip wout, cout helpers if op helper does not return Richard Henderson
2018-10-11  8:06   ` [Qemu-devel] [qemu-s390x] " David Hildenbrand
2018-10-11 16:47     ` Richard Henderson
2018-10-16  8:13       ` David Hildenbrand
2018-10-03 19:39 ` [Qemu-devel] [PATCH v3 9/9] target/s390x: Check HAVE_ATOMIC128 and HAVE_CMPXCHG128 at translate Richard Henderson
2018-10-11  8:09   ` David Hildenbrand [this message]
2018-10-09 18:51 ` [Qemu-devel] [PATCH v3 0/9] tcg: Reorg 128-bit atomic operations Emilio G. Cota
2018-10-11  8:10   ` [Qemu-devel] [qemu-s390x] " David Hildenbrand

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=af68c287-66d4-fdae-0d9c-50306dfaf563@redhat.com \
    --to=david@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-s390x@nongnu.org \
    --cc=richard.henderson@linaro.org \
    /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).