From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1363) id 0ED753857C4F; Thu, 13 Jan 2022 16:20:08 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0ED753857C4F MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" From: Uros Bizjak To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-6554] ii386: Add 16-bit vector modes to xop_pcmov [PR104003] X-Act-Checkin: gcc X-Git-Author: Uros Bizjak X-Git-Refname: refs/heads/master X-Git-Oldrev: c3782843badbf301da2ed768f5cc13d0e6c453ad X-Git-Newrev: 9d8e27fac3c6426fbfaf30d51cbf2761c5491a6a Message-Id: <20220113162008.0ED753857C4F@sourceware.org> Date: Thu, 13 Jan 2022 16:20:08 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2022 16:20:08 -0000 https://gcc.gnu.org/g:9d8e27fac3c6426fbfaf30d51cbf2761c5491a6a commit r12-6554-g9d8e27fac3c6426fbfaf30d51cbf2761c5491a6a Author: Uros Bizjak Date: Thu Jan 13 17:18:59 2022 +0100 ii386: Add 16-bit vector modes to xop_pcmov [PR104003] 2022-01-13 Uroš Bizjak gcc/ChangeLog: PR target/104003 * config/i386/mmx.md (*xop_pcmov_): Use VI_16_32 mode iterator. gcc/testsuite/ChangeLog: PR target/104003 * g++.target/i386/pr103861-1-sse4.C: New test. * g++.target/i386/pr103861-1-xop.C: Ditto. Diff: --- gcc/config/i386/mmx.md | 10 +++++----- gcc/testsuite/g++.target/i386/pr103861-1-sse4.C | 5 +++++ gcc/testsuite/g++.target/i386/pr103861-1-xop.C | 5 +++++ 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/gcc/config/i386/mmx.md b/gcc/config/i386/mmx.md index 8a8142c8a09..295a132bc46 100644 --- a/gcc/config/i386/mmx.md +++ b/gcc/config/i386/mmx.md @@ -2704,11 +2704,11 @@ [(set_attr "type" "sse4arg")]) (define_insn "*xop_pcmov_" - [(set (match_operand:VI_32 0 "register_operand" "=x") - (if_then_else:VI_32 - (match_operand:VI_32 3 "register_operand" "x") - (match_operand:VI_32 1 "register_operand" "x") - (match_operand:VI_32 2 "register_operand" "x")))] + [(set (match_operand:VI_16_32 0 "register_operand" "=x") + (if_then_else:VI_16_32 + (match_operand:VI_16_32 3 "register_operand" "x") + (match_operand:VI_16_32 1 "register_operand" "x") + (match_operand:VI_16_32 2 "register_operand" "x")))] "TARGET_XOP" "vpcmov\t{%3, %2, %1, %0|%0, %1, %2, %3}" [(set_attr "type" "sse4arg")]) diff --git a/gcc/testsuite/g++.target/i386/pr103861-1-sse4.C b/gcc/testsuite/g++.target/i386/pr103861-1-sse4.C new file mode 100644 index 00000000000..a07b3ad111d --- /dev/null +++ b/gcc/testsuite/g++.target/i386/pr103861-1-sse4.C @@ -0,0 +1,5 @@ +/* PR target/103861 */ +/* { dg-do compile } */ +/* { dg-options "-O2 -msse4" } */ + +#include "pr103861-1.C" diff --git a/gcc/testsuite/g++.target/i386/pr103861-1-xop.C b/gcc/testsuite/g++.target/i386/pr103861-1-xop.C new file mode 100644 index 00000000000..d65542dc57f --- /dev/null +++ b/gcc/testsuite/g++.target/i386/pr103861-1-xop.C @@ -0,0 +1,5 @@ +/* PR target/103861 */ +/* { dg-do compile } */ +/* { dg-options "-O2 -mxop" } */ + +#include "pr103861-1.C"