From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id EF2AA3860008; Tue, 3 Sep 2024 09:31:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EF2AA3860008 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1725355889; bh=FWq0Hej2RSYjKJRHRL2TJ3uBowT12ynE1kQfjK3/IIs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=C3PKu7Doafr4Z5y2sh3wPvy4SZhV/g+gNhoINrleXuEE3kqCquk8gHdU4DrwlbqTz uW2UQ6AxIBGek5Gw/NaiQVkafotjdxpq3BX61Uy3BnoALYLV877XwjmyZCxM9UkK+X 6zWiGnTNfD/YnoWv+7XfbT15CcS55Cqsc1yvrWcg= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/116575] [15 Regression] blender in SPEC2017 ICE in vect_analyze_slp Date: Tue, 03 Sep 2024 09:31:29 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 15.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 15.0 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=3D116575 --- Comment #5 from GCC Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:ac6cd62a351a8f1f3637a2552c74eb5eb51cfdda commit r15-3411-gac6cd62a351a8f1f3637a2552c74eb5eb51cfdda Author: Richard Biener Date: Tue Sep 3 09:23:20 2024 +0200 tree-optimization/116575 - avoid ICE with SLP mask_load_lane The following avoids performing re-discovery with single lanes in the attempt to for the use of mask_load_lane as rediscovery will fail since a single lane of a mask load will appear permuted which isn't supported. PR tree-optimization/116575 * tree-vect-slp.cc (vect_analyze_slp): Properly compute the mask argument for vect_load/store_lanes_supported. When the load is masked for now avoid rediscovery. * gcc.dg/vect/pr116575.c: New testcase.=