2021-05-20 Uroš Bizjak <ubiz...@gmail.com> gcc/ PR target/100637 * config/i386/mmx.md (Yv_Yw): Revert adding V4QI and V2HI modes. (*<plusminus:insn><VI_32:mode>3): Use Yw instad of <Yv_Yw> constrint. (<s>mulv4hi3_highpart): New expander. (*<s>mulv2hi3_highpart): New insn pattern. (<s>mulv2hi3_higpart): New expander. (*<any_shift:insn>v2hi3): New insn pattern. (<any_shift:insn>v2hi3): New expander. * config/i386/sse.md (smulhrsv2hi3): New expander. (*smulhrsv2hi3): New insn pattern.
gcc/testsuite/ PR target/100637 * gcc.target/i386/pr100637-1w.c (shl, ashr, lshr): New tests. Bootstrapped and regression tested on x86_64-linux-gnu {,-m32}. Pushed to master. Uros.
diff --git a/gcc/config/i386/mmx.md b/gcc/config/i386/mmx.md index d8479782e90..948ba479c32 100644 --- a/gcc/config/i386/mmx.md +++ b/gcc/config/i386/mmx.md @@ -78,8 +78,7 @@ (define_mode_attr mmxintvecmodelower [(V2SF "v2si") (V2SI "v2si") (V4HI "v4hi") (V8QI "v8qi")]) (define_mode_attr Yv_Yw - [(V8QI "Yw") (V4QI "Yw") (V4HI "Yw") (V2HI "Yw") - (V2SI "Yv") (V1DI "Yv") (V2SF "Yv")]) + [(V8QI "Yw") (V4HI "Yw") (V2SI "Yv") (V1DI "Yv") (V2SF "Yv")]) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; @@ -1367,10 +1366,10 @@ (define_expand "<insn><mode>3" "ix86_fixup_binary_operands_no_copy (<CODE>, <MODE>mode, operands);") (define_insn "*<insn><mode>3" - [(set (match_operand:VI_32 0 "register_operand" "=x,<Yv_Yw>") + [(set (match_operand:VI_32 0 "register_operand" "=x,Yw") (plusminus:VI_32 - (match_operand:VI_32 1 "register_operand" "<comm>0,<Yv_Yw>") - (match_operand:VI_32 2 "register_operand" "x,<Yv_Yw>")))] + (match_operand:VI_32 1 "register_operand" "<comm>0,Yw") + (match_operand:VI_32 2 "register_operand" "x,Yw")))] "TARGET_SSE2 && ix86_binary_operator_ok (<CODE>, <MODE>mode, operands)" "@ @@ -1523,6 +1522,51 @@ (define_insn "*mmx_umulv4hi3_highpart" (set_attr "type" "mmxmul,ssemul,ssemul") (set_attr "mode" "DI,TI,TI")]) +(define_expand "<s>mulv4hi3_highpart" + [(set (match_operand:V4HI 0 "register_operand") + (truncate:V4HI + (lshiftrt:V4SI + (mult:V4SI + (any_extend:V4SI + (match_operand:V4HI 1 "register_operand")) + (any_extend:V4SI + (match_operand:V4HI 2 "register_operand"))) + (const_int 16))))] + "TARGET_MMX_WITH_SSE" + "ix86_fixup_binary_operands_no_copy (MULT, V4HImode, operands);") + +(define_insn "*<s>mulv2hi3_highpart" + [(set (match_operand:V2HI 0 "register_operand" "=x,Yw") + (truncate:V2HI + (lshiftrt:V2SI + (mult:V2SI + (any_extend:V2SI + (match_operand:V2HI 1 "register_operand" "%0,Yw")) + (any_extend:V2SI + (match_operand:V2HI 2 "register_operand" "x,Yw"))) + (const_int 16))))] + "TARGET_SSE2 + && ix86_binary_operator_ok (MULT, V2HImode, operands)" + "@ + pmulh<u>w\t{%2, %0|%0, %2} + vpmulh<u>w\t{%2, %1, %0|%0, %1, %2}" + [(set_attr "isa" "noavx,avx") + (set_attr "type" "ssemul") + (set_attr "mode" "TI")]) + +(define_expand "<s>mulv2hi3_highpart" + [(set (match_operand:V2HI 0 "register_operand") + (truncate:V2HI + (lshiftrt:V2SI + (mult:V2SI + (any_extend:V2SI + (match_operand:V2HI 1 "register_operand")) + (any_extend:V2SI + (match_operand:V2HI 2 "register_operand"))) + (const_int 16))))] + "TARGET_SSE2" + "ix86_fixup_binary_operands_no_copy (MULT, V2HImode, operands);") + (define_expand "mmx_pmaddwd" [(set (match_operand:V2SI 0 "register_operand") (plus:V2SI @@ -1817,6 +1861,30 @@ (define_expand "<insn><mode>3" (match_operand:DI 2 "nonmemory_operand")))] "TARGET_MMX_WITH_SSE") +(define_insn "*<insn>v2hi3" + [(set (match_operand:V2HI 0 "register_operand" "=x,Yw") + (any_shift:V2HI + (match_operand:V2HI 1 "register_operand" "0,Yw") + (match_operand:DI 2 "nonmemory_operand" "xN,YwN")))] + "TARGET_SSE2" + "@ + p<vshift>w\t{%2, %0|%0, %2} + vp<vshift>w\t{%2, %1, %0|%0, %1, %2}" + [(set_attr "isa" "noavx,avx") + (set_attr "type" "sseishft") + (set (attr "length_immediate") + (if_then_else (match_operand 2 "const_int_operand") + (const_string "1") + (const_string "0"))) + (set_attr "mode" "TI")]) + +(define_expand "<insn>v2hi3" + [(set (match_operand:V2HI 0 "register_operand") + (any_shift:V2HI + (match_operand:V2HI 1 "register_operand") + (match_operand:DI 2 "nonmemory_operand")))] + "TARGET_SSE2") + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; Parallel integral comparisons diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index a4503ddcb73..0f1108f0db1 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -17239,6 +17239,51 @@ (define_insn "*ssse3_pmulhrswv4hi3" (set (attr "prefix_rex") (symbol_ref "x86_extended_reg_mentioned_p (insn)")) (set_attr "mode" "DI,TI,TI")]) +(define_expand "smulhrsv2hi3" + [(set (match_operand:V2HI 0 "register_operand") + (truncate:V2HI + (lshiftrt:V2SI + (plus:V2SI + (lshiftrt:V2SI + (mult:V2SI + (sign_extend:V2SI + (match_operand:V2HI 1 "register_operand")) + (sign_extend:V2SI + (match_operand:V2HI 2 "register_operand"))) + (const_int 14)) + (match_dup 3)) + (const_int 1))))] + "TARGET_SSSE3" +{ + operands[3] = CONST1_RTX(V2HImode); + ix86_fixup_binary_operands_no_copy (MULT, V2HImode, operands); +}) + +(define_insn "*smulhrsv2hi3" + [(set (match_operand:V2HI 0 "register_operand" "=x,Yv") + (truncate:V2HI + (lshiftrt:V2SI + (plus:V2SI + (lshiftrt:V2SI + (mult:V2SI + (sign_extend:V2SI + (match_operand:V2HI 1 "register_operand" "%0,Yv")) + (sign_extend:V2SI + (match_operand:V2HI 2 "register_operand" "x,Yv"))) + (const_int 14)) + (match_operand:V2HI 3 "const1_operand")) + (const_int 1))))] + "TARGET_SSSE3 + && !(MEM_P (operands[1]) && MEM_P (operands[2]))" + "@ + pmulhrsw\t{%2, %0|%0, %2} + vpmulhrsw\t{%2, %1, %0|%0, %1, %2}" + [(set_attr "isa" "noavx,avx") + (set_attr "type" "sseimul") + (set_attr "prefix_extra" "1") + (set (attr "prefix_rex") (symbol_ref "x86_extended_reg_mentioned_p (insn)")) + (set_attr "mode" "TI")]) + (define_insn "<ssse3_avx2>_pshufb<mode>3<mask_name>" [(set (match_operand:VI1_AVX512 0 "register_operand" "=x,<v_Yw>") (unspec:VI1_AVX512 diff --git a/gcc/testsuite/gcc.target/i386/pr100637-1w.c b/gcc/testsuite/gcc.target/i386/pr100637-1w.c index ed1baeb3acd..fe6964044b6 100644 --- a/gcc/testsuite/gcc.target/i386/pr100637-1w.c +++ b/gcc/testsuite/gcc.target/i386/pr100637-1w.c @@ -3,6 +3,7 @@ /* { dg-options "-O2 -msse2 -dp" } */ typedef short __v2hi __attribute__ ((__vector_size__ (4))); +typedef unsigned short __v2hu __attribute__ ((__vector_size__ (4))); __v2hi and (__v2hi a, __v2hi b) { return a & b; }; /* { dg-final { scan-assembler "andv2hi3" } } */ @@ -26,3 +27,12 @@ __v2hi neg (__v2hi a) { return -a; }; __v2hi mul (__v2hi a, __v2hi b) { return a * b; }; /* { dg-final { scan-assembler "mulv2hi3" } } */ + +__v2hi shl (__v2hi a, int b) { return a << b; }; +/* { dg-final { scan-assembler "ashlv2hi3" } } */ + +__v2hi ashr (__v2hi a, int b) { return a >> b; }; +/* { dg-final { scan-assembler "ashrv2hi3" } } */ + +__v2hu lshr (__v2hu a, int b) { return a >> b; }; +/* { dg-final { scan-assembler "lshrv2hi3" } } */