From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 5F79D3858C20; Wed, 14 Jun 2023 16:13:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5F79D3858C20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1686759225; bh=kGYLE7qZhIfzVZnvAY15v/rG3ZigMDO0UX3CC2Aaf1k=; h=From:To:Subject:Date:In-Reply-To:References:From; b=FF67XDsI5kaJzsiwVj+IaINtYz9XqaeBek0pUkDvSeqd4IMWwvJW6FUwnQVQTlCCv oCzfyHgnJjKUix2Rc1Hh+kCa6BgjePNlwa0QWLdjHaFWhZcSsamkIUJrBtgoaAbU5q RMnKF/ZWJjCzTfJmuicz174IHbtj6XE/c1R6QYpk= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/110252] [14 Regression] Wrong code at -O2/3/s on x86_64-linux-gnu Date: Wed, 14 Jun 2023 16:13:44 +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: 14.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_reconfirmed_on component bug_status short_desc target_milestone keywords everconfirmed 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=3D110252 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2023-06-14 Component|c |tree-optimization Status|UNCONFIRMED |ASSIGNED Summary|Wrong code at -O2/3/s on |[14 Regression] Wrong code |x86_64-linux-gnu |at -O2/3/s on | |x86_64-linux-gnu Target Milestone|--- |14.0 Keywords| |wrong-code Ever confirmed|0 |1 --- Comment #1 from Andrew Pinski --- So phiopt does this: phiopt match-simplify trying: _4 >=3D 0 ? iftmp.0_16 : 1 Matching expression match.pd:1990, gimple-match-5.cc:23 Matching expression match.pd:1990, gimple-match-5.cc:23 Applying pattern match.pd:5283, gimple-match-2.cc:942 Applying pattern match.pd:1378, gimple-match-2.cc:7699 Applying pattern match.pd:1885, gimple-match-3.cc:2770 Applying pattern match.pd:4745, gimple-match-7.cc:15371 Folded into the sequence: _22 =3D _4 >=3D 0; _21 =3D (int) _22; _23 =3D _4 < 0; _24 =3D (int) _23; _25 =3D iftmp.0_16 | _24; statement un-sinked: iftmp.0_16 =3D _4 >> 6; The problem is `_4 >> 6` only has a [0,1] range iff `_4 < 0`. I have to think of a way of fixing this without too much trouble. Maybe reverting the patch might be the best for now. But there could be other iss= ues dealing with phiopt and match-and-simplify later on for a similar reasons .= ..=