public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Uros Bizjak <ubizjak@gmail.com>
To: Jakub Jelinek <jakub@redhat.com>
Cc: Hongtao Liu <crazylht@gmail.com>, GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: [PATCH] i386: Fix up *vec_concat<mode>_0_1 [PR101007]
Date: Fri, 11 Jun 2021 11:34:28 +0200	[thread overview]
Message-ID: <CAFULd4Yq9DOvB-R+vQERhTkBqeic4oyu3JWj2FzxRHkrxSdbgw@mail.gmail.com> (raw)
In-Reply-To: <20210611085939.GN7746@tucnak>

On Fri, Jun 11, 2021 at 10:59 AM Jakub Jelinek <jakub@redhat.com> wrote:
>
> On Fri, Apr 23, 2021 at 12:53:58PM +0800, Hongtao Liu via Gcc-patches wrote:
> > -(define_insn "*vec_concatv4si_0"
> > -  [(set (match_operand:V4SI 0 "register_operand"       "=v,x")
> > -     (vec_concat:V4SI
> > -       (match_operand:V2SI 1 "nonimmediate_operand" "vm,?!*y")
> > -       (match_operand:V2SI 2 "const0_operand"       " C,C")))]
> > +(define_insn "*vec_concat<mode>_0"
> > +  [(set (match_operand:VI124_128 0 "register_operand"       "=v,x")
> > +     (vec_concat:VI124_128
> > +       (match_operand:<ssehalfvecmode> 1 "nonimmediate_operand" "vm,?!*y")
> > +       (match_operand:<ssehalfvecmode> 2 "const0_operand"       " C,C")))]
> >    "TARGET_SSE2"
> >    "@
> >     %vmovq\t{%1, %0|%0, %1}
> > @@ -22154,6 +22157,24 @@ (define_insn "avx_vec_concat<mode>"
> >     (set_attr "prefix" "maybe_evex")
> >     (set_attr "mode" "<sseinsnmode>")])
> >
> > +(define_insn_and_split "*vec_concat<mode>_0"
> > +  [(set (match_operand:V 0 "register_operand")
> > +     (vec_select:V
> > +       (vec_concat:<ssedoublevecmode>
> > +         (match_operand:V 1 "nonimmediate_operand")
> > +         (match_operand:V 2 "const0_operand"))
> > +       (match_parallel 3 "movq_parallel"
> > +         [(match_operand 4 "const_int_operand")])))]
> > +  "ix86_pre_reload_split ()"
> > +  "#"
> > +  "&& 1"
> > +  [(set (match_dup 0)
> > +     (vec_concat:V (match_dup 1) (match_dup 5)))]
> > +{
> > +  operands[1] = gen_lowpart (<ssehalfvecmode>mode, operands[1]);
> > +  operands[5] = CONST0_RTX (<ssehalfvecmode>mode);
> > +})
>
> This regressed the following testcase with -msse -mno-sse2.
> The define_insn_and_split splits the permutation into *vec_concat<mode>_0
> or *vec_concatv2di_0 insns which both have TARGET_SSE2 in their
> conditions (for the former you can see it above), but the
> define_insn_and_split matches always when the V mode's condition do,
> which for V16QI/V8HI/V4SI/V2DI/V4SF modes is always (well, when those
> modes are valid, which is TARGET_SSE).
>
> Fixed thusly, bootstrapped/regtested on x86_64-linux and i686-linux,
> ok for trunk?
>
> 2021-06-11  Jakub Jelinek  <jakub@redhat.com>
>
>         PR target/101007
>         * config/i386/sse.md (*vec_concat<mode>_0_1): Require TARGET_SSE2.
>
>         * gcc.target/i386/sse-pr101007.c: New test.

OK, even as obvious patch.

Thanks,
Uros.

> --- gcc/config/i386/sse.md.jj   2021-06-07 09:24:57.706689972 +0200
> +++ gcc/config/i386/sse.md      2021-06-10 11:14:52.407588679 +0200
> @@ -22395,7 +22395,7 @@ (define_insn_and_split "*vec_concat<mode
>             (match_operand:V 2 "const0_operand"))
>           (match_parallel 3 "movq_parallel"
>             [(match_operand 4 "const_int_operand")])))]
> -  "ix86_pre_reload_split ()"
> +  "TARGET_SSE2 && ix86_pre_reload_split ()"
>    "#"
>    "&& 1"
>    [(set (match_dup 0)
> --- gcc/testsuite/gcc.target/i386/sse-pr101007.c.jj     2021-06-10 11:41:25.818609527 +0200
> +++ gcc/testsuite/gcc.target/i386/sse-pr101007.c        2021-06-10 11:38:39.301910017 +0200
> @@ -0,0 +1,14 @@
> +/* PR target/101007 */
> +/* { dg-do compile } */
> +/* { dg-options "-O2 -msse -mno-sse2" } */
> +
> +typedef unsigned __attribute__((__vector_size__ (8))) U;
> +typedef unsigned __attribute__((__vector_size__ (16))) V;
> +V v;
> +U *p;
> +
> +void
> +foo (void)
> +{
> +  *p = (U) __builtin_shufflevector ((V)(0 == (V){} >= 0), v, 4, 2);
> +}
>
>         Jakub
>

      reply	other threads:[~2021-06-11  9:34 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-23  4:53 [PATCH] [i386] Optimize __builtin_shuffle when it's used to zero the upper bits of the dest. [PR target/94680] Hongtao Liu
2021-04-23  9:13 ` Jakub Jelinek
2021-04-25  6:57   ` Hongtao Liu
2021-05-12  7:30     ` Hongtao Liu
2021-05-12 14:19     ` Jakub Jelinek
2021-05-13  0:44       ` Hongtao Liu
2021-05-13  5:52         ` Hongtao Liu
2021-06-11  8:59 ` [PATCH] i386: Fix up *vec_concat<mode>_0_1 [PR101007] Jakub Jelinek
2021-06-11  9:34   ` Uros Bizjak [this message]

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=CAFULd4Yq9DOvB-R+vQERhTkBqeic4oyu3JWj2FzxRHkrxSdbgw@mail.gmail.com \
    --to=ubizjak@gmail.com \
    --cc=crazylht@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jakub@redhat.com \
    /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 read-only IMAP folder(s) and NNTP newsgroup(s).