From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CCABA3857826; Tue, 1 Nov 2022 05:34:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CCABA3857826 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667280893; bh=j9Kn7AfG8j/5EqNQh3k7hH5mWNBZZZdREqjfjEq1+vw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Y7TfBKmzO6qrA1LLnAMvMvcmD44EZx6eCpHV99Ig+O/iC/cwUtUUlEinU7JbSbkq5 FjwLjnLtCu3+EXBc3XF1/tnxpB1z+Ziks8F0Gf+h1H6KiaPYyGdtstv/nW1cXkADfe l23A3t+TOsFhMvmd3gleC/jNmVmbpnvXQjFRzYCM= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/107057] [10/11/12/13 Regression] ICE in extract_constrain_insn, at recog.cc:2692 Date: Tue, 01 Nov 2022 05:34:52 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-on-valid-code, ra X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107057 --- Comment #10 from CVS Commits --- The master branch has been updated by hongtao Liu : https://gcc.gnu.org/g:4acc4c2be84d66075d60736623c3a7134d129eaa commit r13-3587-g4acc4c2be84d66075d60736623c3a7134d129eaa Author: liuhongt Date: Tue Oct 25 17:10:23 2022 +0800 Fix incorrect digit constraint Matching constraints are used in these circumstances. More precisely, the two operands that match must include one input-only operand and one output-only operand. Moreover, the digit must be a smaller number than the number of the operand that uses it in the constraint. In pr107057, the 2 operands in the pattern are both input operands. gcc/ChangeLog: PR target/107057 * config/i386/sse.md (*vec_interleave_highv2df): Remove constraint 1. (*vec_interleave_lowv2df): Ditto. (vec_concatv2df): Ditto. (*avx512f_unpcklpd512): Ditto and renamed to .. (avx512f_unpcklpd512): .. this. (avx512f_movddup512): Change to define_insn. (avx_movddup256): Ditto. (*avx_unpcklpd256): Remove constraint 1 and renamed to .. (avx_unpcklpd256): .. this. * config/i386/i386.cc (ix86_vec_interleave_v2df_operator_ok): Disallow MEM_P (op1) && MEM_P (op2). gcc/testsuite/ChangeLog: * gcc.target/i386/pr107057.c: New test.=