public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Uros Bizjak <ubizjak@gmail.com>
To: "H.J. Lu" <hjl.tools@gmail.com>
Cc: gcc-patches@gcc.gnu.org
Subject: Re: [PATCH 36/42] i386: Correct <ssse3_avx2>_pmulhrsw<mode>3[_mask]
Date: Sat, 16 Feb 2019 09:28:00 -0000	[thread overview]
Message-ID: <CAFULd4ZvBZqo=F+7A6S62WEwdC7gn79h_UbHLxe8=uD7Pj16JQ@mail.gmail.com> (raw)
In-Reply-To: <20190216003408.23761-37-hjl.tools@gmail.com>

On 2/16/19, H.J. Lu <hjl.tools@gmail.com> wrote:
> There is no V4HI pmulhrsw in AVX512BW and V4HI/V8HI pmulhrsw don't require
> AVX2.  To support TARGET_MMX_WITH_SSE, replace nonimmediate_operand with
> register_pmulhrswmem_operand in <ssse3_avx2>_pmulhrsw<mode>3.
>
> 	PR target/89372
> 	* config/i386/predicates.md (register_pmulhrswmem_operand): New.
> 	* config/i386/sse.md (PMULHRSW): Remove V4HI.
> 	(PMULHRSW_MMX): New.
> 	(<ssse3_avx2>_pmulhrsw<mode>3): Replace PMULHRSW with
> 	PMULHRSW_MMX.  Require TARGET_SSSE3, not TARGET_AVX2.  Replace
> 	nonimmediate_operand with register_pmulhrswmem_operand.

Complications like the above usually points to wrong macroization
choice. Please try to split out V4HImode pattern.

Also, please separate the fix to a separate patch, which should be
committed independently as a fix before gcc-9 is released.

Uros.

> ---
>  gcc/config/i386/predicates.md |  7 +++++++
>  gcc/config/i386/sse.md        | 15 +++++++++------
>  2 files changed, 16 insertions(+), 6 deletions(-)
>
> diff --git a/gcc/config/i386/predicates.md b/gcc/config/i386/predicates.md
> index f3c2f72de54..b7cb26a81fe 100644
> --- a/gcc/config/i386/predicates.md
> +++ b/gcc/config/i386/predicates.md
> @@ -56,6 +56,13 @@
>         (and (not (match_test "TARGET_MMX_WITH_SSE"))
>  	    (match_operand 0 "memory_operand"))))
>
> +;; Match register operands, but include memory operands for
> +;; !(TARGET_MMX_WITH_SSE && mode == V4HImode).
> +(define_predicate "register_pmulhrswmem_operand"
> +  (ior (match_operand 0 "register_operand")
> +       (and (not (match_test "TARGET_MMX_WITH_SSE && mode == V4HImode"))
> +	    (match_operand 0 "memory_operand"))))
> +
>  ;; True if the operand is an SSE register.
>  (define_predicate "sse_reg_operand"
>    (and (match_code "reg")
> diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md
> index 92f5ad17156..379da16615d 100644
> --- a/gcc/config/i386/sse.md
> +++ b/gcc/config/i386/sse.md
> @@ -15579,7 +15579,7 @@
>     (set_attr "mode" "DI,TI,TI")])
>
>  (define_mode_iterator PMULHRSW
> -  [V4HI V8HI (V16HI "TARGET_AVX2")])
> +  [V8HI (V16HI "TARGET_AVX2")])
>
>  (define_expand "<ssse3_avx2>_pmulhrsw<mode>3_mask"
>    [(set (match_operand:PMULHRSW 0 "register_operand")
> @@ -15604,21 +15604,24 @@
>    ix86_fixup_binary_operands_no_copy (MULT, <MODE>mode, operands);
>  })
>
> +(define_mode_iterator PMULHRSW_MMX
> +  [V4HI V8HI (V16HI "TARGET_AVX2")])
> +
>  (define_expand "<ssse3_avx2>_pmulhrsw<mode>3"
> -  [(set (match_operand:PMULHRSW 0 "register_operand")
> -	(truncate:PMULHRSW
> +  [(set (match_operand:PMULHRSW_MMX 0 "register_operand")
> +	(truncate:PMULHRSW_MMX
>  	  (lshiftrt:<ssedoublemode>
>  	    (plus:<ssedoublemode>
>  	      (lshiftrt:<ssedoublemode>
>  		(mult:<ssedoublemode>
>  		  (sign_extend:<ssedoublemode>
> -		    (match_operand:PMULHRSW 1 "nonimmediate_operand"))
> +		    (match_operand:PMULHRSW_MMX 1 "register_pmulhrswmem_operand"))
>  		  (sign_extend:<ssedoublemode>
> -		    (match_operand:PMULHRSW 2 "nonimmediate_operand")))
> +		    (match_operand:PMULHRSW_MMX 2 "register_pmulhrswmem_operand")))
>  		(const_int 14))
>  	      (match_dup 3))
>  	    (const_int 1))))]
> -  "TARGET_AVX2"
> +  "TARGET_SSSE3"
>  {
>    operands[3] = CONST1_RTX(<MODE>mode);
>    ix86_fixup_binary_operands_no_copy (MULT, <MODE>mode, operands);
> --
> 2.20.1
>
>

  reply	other threads:[~2019-02-16  9:28 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-16  0:34 [PATCH 00/42] V7: Emulate MMX intrinsics with SSE H.J. Lu
2019-02-16  0:34 ` [PATCH 02/42] i386: Emulate MMX packsswb/packssdw/packuswb with SSE2 H.J. Lu
2019-02-16  0:34 ` [PATCH 10/42] i386: Emulate MMX mmx_andnot<mode>3 with SSE H.J. Lu
2019-02-16  0:34 ` [PATCH 33/42] i386: Emulate MMX ssse3_psign<mode>3 " H.J. Lu
2019-02-16  0:34 ` [PATCH 01/42] i386: Allow MMX register modes in SSE registers H.J. Lu
2019-02-16  0:34 ` [PATCH 11/42] i386: Emulate MMX mmx_eq/mmx_gt<mode>3 with SSE H.J. Lu
2019-02-16  0:34 ` [PATCH 14/42] i386: Emulate MMX sse_cvtps2pi/sse_cvttps2pi " H.J. Lu
2019-02-16  0:34 ` [PATCH 16/42] i386: Emulate MMX mmx_pextrw " H.J. Lu
2019-02-16  0:34 ` [PATCH 34/42] i386: Emulate MMX ssse3_palignrdi " H.J. Lu
2019-02-16  0:34 ` [PATCH 18/42] i386: Emulate MMX V4HI smaxmin/V8QI umaxmin " H.J. Lu
2019-02-16  0:34 ` [PATCH 20/42] i386: Emulate MMX mmx_umulv4hi3_highpart " H.J. Lu
2019-02-16  0:34 ` [PATCH 03/42] i386: Emulate MMX punpcklXX/punpckhXX with SSE punpcklXX H.J. Lu
2019-02-16  0:34 ` [PATCH 04/42] i386: Emulate MMX plusminus/sat_plusminus with SSE H.J. Lu
2019-02-16  0:34 ` [PATCH 09/42] i386: Emulate MMX <any_logic><mode>3 " H.J. Lu
2019-02-16  0:34 ` [PATCH 29/42] i386: Emulate MMX ssse3_ph<plusminus_mnemonic>dv2si3 " H.J. Lu
2019-02-16  0:34 ` [PATCH 17/42] i386: Emulate MMX mmx_pinsrw " H.J. Lu
2019-02-16  9:08   ` Uros Bizjak
2019-02-16 14:57     ` H.J. Lu
2019-02-16  0:34 ` [PATCH 15/42] i386: Emulate MMX sse_cvtpi2ps " H.J. Lu
2019-02-16  0:34 ` [PATCH 36/42] i386: Correct <ssse3_avx2>_pmulhrsw<mode>3[_mask] H.J. Lu
2019-02-16  9:28   ` Uros Bizjak [this message]
2019-02-16  0:34 ` [PATCH 06/42] i386: Emulate MMX smulv4hi3_highpart with SSE H.J. Lu
2019-02-16  0:34 ` [PATCH 13/42] i386: Emulate MMX pshufw " H.J. Lu
2019-02-16  0:34 ` [PATCH 23/42] i386: Emulate MMX mmx_uavgv4hi3 " H.J. Lu
2019-02-16  0:34 ` [PATCH 08/42] i386: Emulate MMX ashr<mode>3/<shift_insn><mode>3 " H.J. Lu
2019-02-16  0:35 ` [PATCH 30/42] i386: Emulate MMX ssse3_pmaddubsw " H.J. Lu
2019-02-16  0:35 ` [PATCH 07/42] i386: Emulate MMX mmx_pmaddwd " H.J. Lu
2019-02-16  0:35 ` [PATCH 42/42] i386: Add tests for MMX intrinsic emulations " H.J. Lu
2019-02-16  0:35 ` [PATCH 05/42] i386: Emulate MMX mulv4hi3 " H.J. Lu
2019-02-16  0:35 ` [PATCH 19/42] i386: Emulate MMX mmx_pmovmskb " H.J. Lu
2019-02-16  0:43 ` [PATCH 26/42] i386: Emulate MMX umulv1siv1di3 with SSE2 H.J. Lu
2019-02-16  0:43 ` [PATCH 40/42] i386: Allow MMX intrinsic emulation with SSE H.J. Lu
2019-02-16  0:43 ` [PATCH 28/42] i386: Emulate MMX ssse3_ph<plusminus_mnemonic>wv4hi3 " H.J. Lu
2019-02-16  0:43 ` [PATCH 12/42] i386: Emulate MMX vec_dupv2si " H.J. Lu
2019-02-16  0:43 ` [PATCH 41/42] i386: Enable TM MMX intrinsics with SSE2 H.J. Lu
2019-02-16  0:43 ` [PATCH 21/42] i386: Emulate MMX maskmovq with SSE2 maskmovdqu H.J. Lu
2019-02-16  0:43 ` [PATCH 39/42] i386: Allow MMX vector expanders with TARGET_MMX_WITH_SSE H.J. Lu
2019-02-16  9:50   ` Uros Bizjak
2019-02-16  0:43 ` [PATCH 35/42] i386: Emulate MMX abs<mode>2 with SSE H.J. Lu
2019-02-16  0:43 ` [PATCH 22/42] i386: Emulate MMX mmx_uavgv8qi3 " H.J. Lu
2019-02-16  0:43 ` [PATCH 25/42] i386: Emulate MMX movntq with SSE2 movntidi H.J. Lu
2019-02-16  0:43 ` [PATCH 24/42] i386: Emulate MMX mmx_psadbw with SSE H.J. Lu
2019-02-16  0:43 ` [PATCH 38/42] i386: Allow MMXMODE moves with TARGET_MMX_WITH_SSE H.J. Lu
2019-02-16  0:43 ` [PATCH 27/42] i386: Make _mm_empty () as NOP when MMX is disabled H.J. Lu
2019-02-16  8:58   ` Uros Bizjak
2019-02-16 14:56     ` H.J. Lu
2019-02-16 19:02       ` Uros Bizjak
2019-02-16  0:43 ` [PATCH 32/42] i386: Emulate MMX pshufb with SSE version H.J. Lu
2019-02-16  0:43 ` [PATCH 37/42] Prevent allocation of MMX registers with TARGET_MMX_WITH_SSE H.J. Lu
2019-02-16  0:43 ` [PATCH 31/42] i386: Emulate MMX ssse3_pmulhrswv4hi3 with SSE H.J. Lu

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='CAFULd4ZvBZqo=F+7A6S62WEwdC7gn79h_UbHLxe8=uD7Pj16JQ@mail.gmail.com' \
    --to=ubizjak@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=hjl.tools@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).