public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/40730]  New: redundant memory load
@ 2009-07-13  8:57 carrot at google dot com
  2009-07-13  8:58 ` [Bug target/40730] " carrot at google dot com
                   ` (11 more replies)
  0 siblings, 12 replies; 14+ messages in thread
From: carrot at google dot com @ 2009-07-13  8:57 UTC (permalink / raw)
  To: gcc-bugs

Compile the attached source code with options -Os -mthumb -march=armv5te
-fno-strict-aliasing, Gcc generates:

iterate:
        push    {lr}
        ldr     r3, [r1]        // C
        b       .L5
.L4:
        ldr     r3, [r3, #8]    // D
.L5:
        str     r3, [r0]        //  A
        ldr     r3, [r0]        //  B
        cmp     r3, #0
        beq     .L3
        ldr     r2, [r3, #4]
        cmp     r2, #0
        beq     .L4
.L3:
        str     r3, [r0, #12]
        @ sp needed for prologue
        pop     {pc}

Pay attention to instructions marked as A and B. Instruction A store r3 to [r0]
but insn B load it back to r3.

The instruction A was originally put after instruction C and D. After register
allocation, they were allocated to the same registers and looks exactly same.
In pass csa, cleanup_cfg was called and it found the same instructions and
moved them before instruction B. Now instruction B is obviously redundant.

Is it OK to remove this kind of redundant code in pass dce?


-- 
           Summary: redundant memory load
           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=40730


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2023-05-15  0:24 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-40730-4@http.gcc.gnu.org/bugzilla/>
2023-05-15  0:10 ` [Bug target/40730] redundant memory load pinskia at gcc dot gnu.org
2023-05-15  0:24 ` pinskia at gcc dot gnu.org
2009-07-13  8:57 [Bug target/40730] New: " carrot at google dot com
2009-07-13  8:58 ` [Bug target/40730] " carrot at google dot com
2009-07-13  9:51 ` rguenth at gcc dot gnu dot org
2009-07-13 10:10 ` steven at gcc dot gnu dot org
2009-07-14  9:14 ` carrot at google dot com
2009-07-14  9:18 ` steven at gcc dot gnu dot org
2009-07-14  9:20 ` steven at gcc dot gnu dot org
2009-07-15  8:07 ` carrot at google dot com
2009-07-15  9:47 ` steven at gcc dot gnu dot org
2010-01-08  9:34 ` steven at gcc dot gnu dot org
2010-01-11  6:47 ` carrot at google dot com
2010-01-11  8:23 ` stevenb dot gcc at gmail dot com
2010-01-11  8:56 ` carrot at google dot com

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).