From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 53B513858D1E; Mon, 30 Jan 2023 16:05:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 53B513858D1E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675094714; bh=vUBmeje4dxxxsARa5hkdZR1Wih4buQWHl7iEfB8GBpw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=puwg6vY7dJP0gRMvw7kA077nt+8k5/5vpH9ux+WxATSx1Mcak25a07DHyEoTKIiDe gmoZ58mTZ7vd+wB6Xg8E58528abHsDVXizZxZupa23jyHpmodEscHQIrTdL5M2wkrx iEmNYrDwyU92GNbBgSmkGvsa0Fa2JcNzae8QE2z0= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/108601] [13 Regression] vector peeling ICEs with PGO + LTO + IPA inlining in gcc_r in SPEC2017 Date: Mon, 30 Jan 2023 16:05:14 +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: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia 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: target_milestone 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=3D108601 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |13.0 --- Comment #1 from Andrew Pinski --- So here is how I would tackle this: Put all the needed .i/.ii files in a response file. $CC -c @files @options $CC -r -o file.o @fileso @options=20 Since this is only at profile generated stage it is not as hard ... Then start by reducing the needed .o files in `fileso` . When that is finished. Update `files` to match `fileso`. and then run delta (or another automated reducer) over the files in `files`. Maybe even change -flto=3Dauto etc.=