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 target/42496]  New: wrong if conversion optimization
Date: Fri, 25 Dec 2009 08:13:00 -0000	[thread overview]
Message-ID: <bug-42496-17659@http.gcc.gnu.org/bugzilla/> (raw)

Compile the attached test case with options -Os, I can get the ideal result:

foo:
        cmp     r0, #0
        ldr     r3, .L5
        movne   r2, #10
        moveq   r2, #20
        str     r2, [r3, #0]
        bx      lr

But when I changed the options to -O2, I got:

foo:
        cmp     r0, #0
        ldrne   r3, .L4            // A
        ldreq   r3, .L4            // B
        movne   r2, #10
        moveq   r2, #20
        strne   r2, [r3, #0]       // C
        streq   r2, [r3, #0]       // D
        bx      lr

Instructions A/B/C/D should not executed conditionally since they do the same
thing in either case.

Similarly when I changed to options to -Os -fpic, I got:

foo:
        ldr     r3, .L5
        ldr     r2, .L5+4
.LPIC0:
        add     r3, pc, r3
        cmp     r0, #0
        ldrne   r3, [r3, r2]     // E
        ldreq   r3, [r3, r2]     // F
        movne   r2, #10
        moveq   r2, #20
        str     r2, [r3, #0]
        bx      lr

Instructions E/F should not execute conditionally.


-- 
           Summary: wrong if conversion optimization
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        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=42496


             reply	other threads:[~2009-12-25  8:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-25  8:13 carrot at google dot com [this message]
2009-12-25  8:14 ` [Bug target/42496] " carrot at google dot com
2009-12-27  0:46 ` steven 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-42496-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).