public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "carrot at google dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/41442]  New: missed optimization for boolean expression
Date: Wed, 23 Sep 2009 06:49:00 -0000	[thread overview]
Message-ID: <bug-41442-17659@http.gcc.gnu.org/bugzilla/> (raw)

The boolean expression ((p1->next && !p2->next) || p2->next) can be simplified
as (p1->next || p2->next), but gcc failed to detect this.


The attached source code is an example, compile it with options -Os
-march=armv5te -mthumb, I got

        push    {lr}
        ldr     r3, [r0]    
        cmp     r3, #0      
        beq     .L2         
        ldr     r3, [r1]    // redundant load and comparison
        mov     r0, #0      
        cmp     r3, #0      //
        beq     .L3         // can branch to L3 directly
.L2:
        ldr     r0, [r1]
        neg     r3, r0
        adc     r0, r0, r3
.L3:
        @ sp needed for prologue
        pop     {pc}


-- 
           Summary: missed optimization for boolean expression
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: carrot at google dot com
 GCC build triplet: i686-linux
  GCC host triplet: i686-linux
GCC target triplet: arm-eabi


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41442


             reply	other threads:[~2009-09-23  6:49 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-23  6:49 carrot at google dot com [this message]
2009-09-23  6:50 ` [Bug tree-optimization/41442] " carrot at google dot com
2009-09-23  8:50 ` rguenth at gcc dot gnu dot org
2009-09-23  9:24 ` jakub at gcc dot gnu dot org
2010-04-24 18:54 ` bernds at gcc dot gnu dot org
2010-05-05 18:49 ` bernds at gcc dot gnu dot org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-41442-17659@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).