Commit e8b0e910 by H.J. Lu Committed by H.J. Lu

i386: Emulate MMX ssse3_psign<mode>3 with SSE

Emulate MMX ssse3_psign<mode>3 with SSE.  Only SSE register source operand
is allowed.

	PR target/89021
	* config/i386/sse.md (ssse3_psign<mode>3): Add SSE emulation.

From-SVN: r271246
parent 16ed2601
2019-05-15 H.J. Lu <hongjiu.lu@intel.com> 2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR target/89021 PR target/89021
* config/i386/sse.md (ssse3_psign<mode>3): Add SSE emulation.
2019-05-15 H.J. Lu <hongjiu.lu@intel.com>
PR target/89021
* config/i386/sse.md (ssse3_pshufbv8qi3): Changed to * config/i386/sse.md (ssse3_pshufbv8qi3): Changed to
define_insn_and_split. Also allow TARGET_MMX_WITH_SSE. Add define_insn_and_split. Also allow TARGET_MMX_WITH_SSE. Add
SSE emulation. SSE emulation.
......
...@@ -16233,17 +16233,21 @@ ...@@ -16233,17 +16233,21 @@
(set_attr "mode" "<sseinsnmode>")]) (set_attr "mode" "<sseinsnmode>")])
(define_insn "ssse3_psign<mode>3" (define_insn "ssse3_psign<mode>3"
[(set (match_operand:MMXMODEI 0 "register_operand" "=y") [(set (match_operand:MMXMODEI 0 "register_operand" "=y,x,Yv")
(unspec:MMXMODEI (unspec:MMXMODEI
[(match_operand:MMXMODEI 1 "register_operand" "0") [(match_operand:MMXMODEI 1 "register_operand" "0,0,Yv")
(match_operand:MMXMODEI 2 "nonimmediate_operand" "ym")] (match_operand:MMXMODEI 2 "register_mmxmem_operand" "ym,x,Yv")]
UNSPEC_PSIGN))] UNSPEC_PSIGN))]
"TARGET_SSSE3" "(TARGET_MMX || TARGET_MMX_WITH_SSE) && TARGET_SSSE3"
"psign<mmxvecsize>\t{%2, %0|%0, %2}"; "@
[(set_attr "type" "sselog1") psign<mmxvecsize>\t{%2, %0|%0, %2}
psign<mmxvecsize>\t{%2, %0|%0, %2}
vpsign<mmxvecsize>\t{%2, %1, %0|%0, %1, %2}"
[(set_attr "mmx_isa" "native,x64_noavx,x64_avx")
(set_attr "type" "sselog1")
(set_attr "prefix_extra" "1") (set_attr "prefix_extra" "1")
(set (attr "prefix_rex") (symbol_ref "x86_extended_reg_mentioned_p (insn)")) (set (attr "prefix_rex") (symbol_ref "x86_extended_reg_mentioned_p (insn)"))
(set_attr "mode" "DI")]) (set_attr "mode" "DI,TI,TI")])
(define_insn "<ssse3_avx2>_palignr<mode>_mask" (define_insn "<ssse3_avx2>_palignr<mode>_mask"
[(set (match_operand:VI1_AVX512 0 "register_operand" "=v") [(set (match_operand:VI1_AVX512 0 "register_operand" "=v")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment