From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 4C9E73858C50; Tue, 27 Sep 2022 16:25:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4C9E73858C50 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664295927; bh=Iqst47RrRcx9r7bzhDl0S+Pq18QIUOvQBufDSpDLwqk=; h=From:To:Subject:Date:From; b=n46wGXjxIlSalu3UANCgUM5gaq2QUezCHorZF4WC/KGsVnK/LZE0dnfgj78zEyCDI +drkStEWSzNhzSt6qZWUBY0qCx3XCkg3HxmVPtzpnKMDTPWN1H9cL6/GXcw+F3askd 294nIM0+bMDPbI04qG5+YySLYutqE0SMI1rr01V4= From: "gscfq@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/107057] New: [10/11/12/13 Regression] ICE in extract_constrain_insn, at recog.cc:2692 Date: Tue, 27 Sep 2022 16:25:26 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gscfq@t-online.de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: 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 Bug ID: 107057 Summary: [10/11/12/13 Regression] ICE in extract_constrain_insn, at recog.cc:2692 Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: gscfq@t-online.de Target Milestone: --- Started between 20190630 and 20190728, at -O3 or -Ofast : $ cat z1.c typedef double v2df __attribute__ ((vector_size (16))); v2df f (double a, double b) { v2df v; double *c =3D (double *)&v; *c =3D a; *(c+1) =3D b; return v; } void g () { v2df x =3D f (1.0, 1.0); v2df y =3D f (2.0, 2.0); for (;*(double *)&x<=3D8; x+=3Dy) g (); } $ gcc-13-20220925 -c z1.c -mavx -mcmodel=3Dlarge -O2 $ $ gcc-13-20220925 -c z1.c -mavx -mcmodel=3Dlarge -O3 z1.c: In function 'g': z1.c:16:1: error: insn does not satisfy its constraints: 16 | } | ^ (insn 76 407 101 5 (set (reg/v:V2DF 24 xmm4 [orig:108 x ] [108]) (vec_concat:V2DF (mem/u/c:DF (reg:DI 0 ax [330]) [0 S8 A64]) (mem/u/c:DF (reg:DI 4 si [331]) [0 S8 A64]))) "z1.c":7:10 5952 {vec_concatv2df} (expr_list:REG_EQUAL (const_vector:V2DF [ (const_double:DF 1.0e+0 [0x0.8p+1]) repeated x2 ]) (nil))) during RTL pass: reload z1.c:16:1: internal compiler error: in extract_constrain_insn, at recog.cc:= 2692 0x69f5c0 _fatal_insn(char const*, rtx_def const*, char const*, int, char const*) ../../gcc/rtl-error.cc:108 0x69f5e9 _fatal_insn_not_found(rtx_def const*, char const*, int, char const= *) ../../gcc/rtl-error.cc:118 0xe20add extract_constrain_insn(rtx_insn*) ../../gcc/recog.cc:2692 0xce0d77 check_rtl ../../gcc/lra.cc:2126 0xce6296 lra(_IO_FILE*) ../../gcc/lra.cc:2544 0xc93fc9 do_reload ../../gcc/ira.cc:5940 0xc93fc9 execute ../../gcc/ira.cc:6126=