From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 69150395543D; Mon, 15 Feb 2021 14:46:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 69150395543D From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/99104] [11 Regression] ICE: Segmentation fault (in bitmap_list_find_element) Date: Mon, 15 Feb 2021 14:46:54 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Feb 2021 14:46:54 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D99104 --- Comment #3 from Richard Biener --- Well, at least if split() does not maintain DF then split patterns may not = use DF. It's as simple as that ;) Note you need DF analyze anyway since even if present, the DF problem might be out-of-date. Note when you add DF_LIVE you have to remove it manually again if optimize = =3D=3D 1 because there we do not maintain it (but the problem is still not optional). I guess if the x86 backend wants to use DF but other backends do not and do not want to pay the compile-time cost of a df_analyze we could put DF setup into a target hooks hand ... (or a target hook returning the DF probl= ems it likes to have computed for split).=