From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 39AC3385841D; Wed, 1 Sep 2021 07:57:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 39AC3385841D From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/99591] Improving __builtin_add_overflow performance on x86-64 Date: Wed, 01 Sep 2021 07:57:17 +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.2.1 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_reconfirmed_on everconfirmed component bug_status 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: Wed, 01 Sep 2021 07:57:17 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D99591 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2021-09-01 Ever confirmed|0 |1 Component|target |c Status|UNCONFIRMED |NEW --- Comment #4 from Andrew Pinski --- (In reply to eggert from comment #3) > (In reply to Andrew Pinski from comment #2) > > (In reply to Andrew Pinski from comment #1) > > > Looks fixed for GCC 11+. > It doesn't appear to be fixed in GCC 11.2.1 20210728 (Red Hat 11.2.1-1). = For > signed1_overflow I get the same suboptimal machine code described in comm= ent > #0. For signed2_overflow I get: This is interesting, the C++ front-end is fine but the C front-end is not. C front-end: return r =3D REALPART_EXPR >= ;, (_Bool) IMAGPART_EXPR >;; While the C++ frontend is: < =3D r =3D REALPART_EXPR >;, (bool) IMAGPART_EXPR >;>>;=