public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] i386: Correct *vec_extractv2si_zext_mem
@ 2019-02-16 15:48 H.J. Lu
  2019-02-16 19:07 ` Uros Bizjak
  0 siblings, 1 reply; 2+ messages in thread
From: H.J. Lu @ 2019-02-16 15:48 UTC (permalink / raw)
  To: gcc-patches; +Cc: Uros Bizjak

The second and third alternatives in *vec_extractv2si_zext_mem don't
require MMX.  But the second one requires SSE2.

	* config/i386/mmx.md (*vec_extractv2si_zext_mem): Doesn't require
	MMX.  Add isa attribute.
---
 gcc/config/i386/mmx.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gcc/config/i386/mmx.md b/gcc/config/i386/mmx.md
index c1e0f2c411e..b566cc80020 100644
--- a/gcc/config/i386/mmx.md
+++ b/gcc/config/i386/mmx.md
@@ -1354,13 +1354,14 @@
 	  (vec_select:SI
 	    (match_operand:V2SI 1 "memory_operand" "o,o,o")
 	    (parallel [(match_operand:SI 2 "const_0_to_1_operand")]))))]
-  "TARGET_64BIT && TARGET_MMX"
+  "TARGET_64BIT"
   "#"
   "&& reload_completed"
   [(set (match_dup 0) (zero_extend:DI (match_dup 1)))]
 {
   operands[1] = adjust_address (operands[1], SImode, INTVAL (operands[2]) * 4);
-})
+}
+  [(set_attr "isa" "*,sse2,*")])
 
 (define_expand "vec_extractv2sisi"
   [(match_operand:SI 0 "register_operand")
-- 
2.20.1

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] i386: Correct *vec_extractv2si_zext_mem
  2019-02-16 15:48 [PATCH] i386: Correct *vec_extractv2si_zext_mem H.J. Lu
@ 2019-02-16 19:07 ` Uros Bizjak
  0 siblings, 0 replies; 2+ messages in thread
From: Uros Bizjak @ 2019-02-16 19:07 UTC (permalink / raw)
  To: H.J. Lu; +Cc: gcc-patches

On 2/16/19, H.J. Lu <hjl.tools@gmail.com> wrote:
> The second and third alternatives in *vec_extractv2si_zext_mem don't
> require MMX.  But the second one requires SSE2.
>
> 	* config/i386/mmx.md (*vec_extractv2si_zext_mem): Doesn't require
> 	MMX.  Add isa attribute.

OK.

Thanks,
Uros.

> ---
>  gcc/config/i386/mmx.md | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/gcc/config/i386/mmx.md b/gcc/config/i386/mmx.md
> index c1e0f2c411e..b566cc80020 100644
> --- a/gcc/config/i386/mmx.md
> +++ b/gcc/config/i386/mmx.md
> @@ -1354,13 +1354,14 @@
>  	  (vec_select:SI
>  	    (match_operand:V2SI 1 "memory_operand" "o,o,o")
>  	    (parallel [(match_operand:SI 2 "const_0_to_1_operand")]))))]
> -  "TARGET_64BIT && TARGET_MMX"
> +  "TARGET_64BIT"
>    "#"
>    "&& reload_completed"
>    [(set (match_dup 0) (zero_extend:DI (match_dup 1)))]
>  {
>    operands[1] = adjust_address (operands[1], SImode, INTVAL (operands[2]) *
> 4);
> -})
> +}
> +  [(set_attr "isa" "*,sse2,*")])
>
>  (define_expand "vec_extractv2sisi"
>    [(match_operand:SI 0 "register_operand")
> --
> 2.20.1
>
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-02-16 19:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-16 15:48 [PATCH] i386: Correct *vec_extractv2si_zext_mem H.J. Lu
2019-02-16 19:07 ` Uros Bizjak

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).