From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id B71E2385B193; Fri, 2 Dec 2022 07:04:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B71E2385B193 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669964668; bh=R43REJt6jMpm9Jp71imAAdYVftaijPp2WogdxAzR7Z4=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Zw4M2gvlFn39eMLRQIra4q/ftUVcCDU6J+kMf69443i0b5vBHOStz4/g07R9rZB57 Tsjc1EFqwM58jDCydOveYCDp9PqqKBqP07piTYp0iAzkyDRTC37dMgjere7WMKZHz8 7TpLecQr2F1e1rJeAGf0V8U2R/BmPM+ca8CHwmt0= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/107946] [13 Regression] 507.cactuBSSN_r regresses by ~9% on znver3 with PGO since r13-3875-g9e11ceef165bc0 Date: Fri, 02 Dec 2022 07:04:28 +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: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org 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: 13.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=3D107946 --- Comment #3 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:5b50850c3c6f2eceb8012dcc8d3cd5ddd94fac6c commit r13-4458-g5b50850c3c6f2eceb8012dcc8d3cd5ddd94fac6c Author: Richard Biener Date: Thu Dec 1 16:14:14 2022 +0100 Add --param max-unswitch-depth The following adds a --param to limit the depth of unswitched loop nests. One can use --param max-unswitch-depth=3D1 to disable unswitchi= ng of outer loops (the innermost loop will then be unswitched). PR tree-optimization/107946 * params.opt (-param=3Dmax-unswitch-depth=3D): New. * doc/invoke.texi (--param=3Dmax-unswitch-depth): Document. * tree-ssa-loop-unswitch.cc (init_loop_unswitch_info): Honor --param=3Dmax-unswitch-depth=