public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Uros Bizjak <ubizjak@gmail.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: "gcc-patches@gcc.gnu.org" <gcc-patches@gcc.gnu.org>,
	Hongtao Liu <hongtao.liu@intel.com>,
	 Kirill Yukhin <kirill.yukhin@gmail.com>
Subject: Re: [PATCH] x86: correct and improve "*vec_dupv2di"
Date: Thu, 15 Jun 2023 09:07:01 +0200	[thread overview]
Message-ID: <CAFULd4YKW+EkRNz2hq3TiJuAbb=xgHp-=mv-9QswdDdz-iGqpw@mail.gmail.com> (raw)
In-Reply-To: <aa84243c-860b-ddf8-bfde-7e080a197cd1@suse.com>

On Thu, Jun 15, 2023 at 8:03 AM Jan Beulich via Gcc-patches
<gcc-patches@gcc.gnu.org> wrote:
>
> The input constraint for the %vmovddup alternative was wrong, as the
> upper 16 XMM registers require AVX512VL to be used with this insn. To
> compensate, introduce a new alternative permitting all 32 registers, by
> broadcasting to the full 512 bits in that case if AVX512VL is not
> available.
>
> gcc/
>
>         * config/i386/sse.md (vec_dupv2di): Correct %vmovddup input
>         constraint. Add new AVX512F alternative.
> ---
> Strictly speaking the new alternative could be enabled from AVX2
> onwards, but vmovddup can frequently be a shorter encoding (VEX2
> vs VEX3).
>
> --- a/gcc/config/i386/sse.md
> +++ b/gcc/config/i386/sse.md
> @@ -25851,19 +25851,39 @@
>            (symbol_ref "true")))])
>
>  (define_insn "*vec_dupv2di"
> -  [(set (match_operand:V2DI 0 "register_operand"     "=x,v,v,x")
> +  [(set (match_operand:V2DI 0 "register_operand"     "=x,v,v,v,x")
>         (vec_duplicate:V2DI
> -         (match_operand:DI 1 "nonimmediate_operand" " 0,Yv,vm,0")))]
> +         (match_operand:DI 1 "nonimmediate_operand" " 0,Yv,vm,Yvm,0")))]
>    "TARGET_SSE"
> -  "@
> -   punpcklqdq\t%0, %0
> -   vpunpcklqdq\t{%d1, %0|%0, %d1}
> -   %vmovddup\t{%1, %0|%0, %1}
> -   movlhps\t%0, %0"
> -  [(set_attr "isa" "sse2_noavx,avx,sse3,noavx")
> -   (set_attr "type" "sselog1,sselog1,sselog1,ssemov")
> -   (set_attr "prefix" "orig,maybe_evex,maybe_vex,orig")
> -   (set_attr "mode" "TI,TI,DF,V4SF")])
> +{
> +  switch (which_alternative)
> +    {
> +    case 0:
> +      return "punpcklqdq\t%0, %0";
> +    case 1:
> +      return "vpunpcklqdq\t{%d1, %0|%0, %d1}";
> +    case 2:
> +      if (TARGET_AVX512VL)
> +       return "vpbroadcastq\t{%1, %0|%0, %1}";
> +      return "vpbroadcastq\t{%1, %g0|%g0, %1}";

You can use

* return TARGET_AVX512VL ? \"vpbroadcastq\t{%1, %0|%0, %1}\" :
\"vpbroadcastq\t{%1, %g0|%g0, %1}\";

directly in a multi-output insn template to avoid the above C code.
See e.g. sse2_cvtpd2pi for an example.

Uros.

> +    case 3:
> +      return "%vmovddup\t{%1, %0|%0, %1}";
> +    case 4:
> +      return "movlhps\t%0, %0";
> +    default:
> +      gcc_unreachable ();
> +    }
> +}
> +  [(set_attr "isa" "sse2_noavx,avx,avx512f,sse3,noavx")
> +   (set_attr "type" "sselog1,sselog1,ssemov,sselog1,ssemov")
> +   (set_attr "prefix" "orig,maybe_evex,evex,maybe_vex,orig")
> +   (set_attr "mode" "TI,TI,TI,DF,V4SF")
> +   (set (attr "enabled")
> +       (if_then_else
> +         (eq_attr "alternative" "2")
> +         (symbol_ref "TARGET_AVX512VL
> +                      || (TARGET_AVX512F && !TARGET_PREFER_AVX256)")
> +         (const_string "*")))])
>
>  (define_insn "avx2_vbroadcasti128_<mode>"
>    [(set (match_operand:VI_256 0 "register_operand" "=x,v,v")

  reply	other threads:[~2023-06-15  7:07 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-15  6:03 Jan Beulich
2023-06-15  7:07 ` Uros Bizjak [this message]
2023-06-15  7:45   ` Hongtao Liu
2023-06-15  8:15     ` Jan Beulich
2023-06-15  8:33       ` Uros Bizjak

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='CAFULd4YKW+EkRNz2hq3TiJuAbb=xgHp-=mv-9QswdDdz-iGqpw@mail.gmail.com' \
    --to=ubizjak@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=hongtao.liu@intel.com \
    --cc=jbeulich@suse.com \
    --cc=kirill.yukhin@gmail.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).