From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A0BC53858C78; Thu, 4 May 2023 07:14:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A0BC53858C78 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1683184465; bh=z1k1W3b6h9ki+6b1UQHvDeRsS6Ap0A5fdbAx2l76b+U=; h=From:To:Subject:Date:In-Reply-To:References:From; b=EFCJDkAMxRnUY3cfy8OjTCSYN4/NZKWynm8n33AIgZvjWF5uy0rvyyLSZwp8xcagq ZKqW9QfEKmVyYWhIeqgKzly/zqrkvagM4qXCGg1JfkMxaMa5oIx/FTvSj6YVDpWgwo RrcFvbY1xzmfi4MMHwIFF/VUfoJb1iJcTi3R2ZWQ= From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/109724] [10 regression] Huge memory usage when building qtwebengine's SkOpAngle.cpp since r10-11201-g051f78a5c1d699 Date: Thu, 04 May 2023 07:14:25 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 10.4.1 X-Bugzilla-Keywords: compile-time-hog, memory-hog, needs-bisection X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth 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: 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=3D109724 --- Comment #7 from Richard Biener --- The real issue is probably that when value-numbering Value numbering stmt =3D iftmp.77_74 =3D PHI Setting value number of iftmp.77_74 to iftmp.77_177 (changed) iftmp.77_177 is available for iftmp.77_177 we have _177 available but for Value numbering stmt =3D _24 =3D &MEM [(const struct SkDPoint &)iftmp.77_74].fPts[idx2_62].fX; Setting value number of _24 to iftmp.77_177 (changed) Making available beyond BB70 _24 for value iftmp.77_177 we appearantly have not, despite the _74 def dominating this stmt. Of cour= se that's an inherent limitation of the dominated_by_p_w_unex tool that was patched with the offending revision.=