public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug rtl-optimization/44374]  New: Hoist same instructions in different branches
@ 2010-06-02  8:20 carrot at google dot com
  2010-06-02  8:21 ` [Bug rtl-optimization/44374] " carrot at google dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: carrot at google dot com @ 2010-06-02  8:20 UTC (permalink / raw)
  To: gcc-bugs

Compile the attached test case with options -march=armv7-a -mthumb -Os, 
this code snippet 

  if (native)
    dlmalloc_walk_heap(heap_chunk_callback, (void *)&ctx);
  else
    dvmHeapSourceWalk(heap_chunk_callback, (void *)&ctx);

is compiled to:

        cbz     r5, .L2
        ldr     r0, .L4            // A
        mov     r1, sp             // B
        bl      dlmalloc_walk_heap
        b       .L1
.L2:
        ldr     r0, .L4            // C
        mov     r1, sp             // D
        bl      dvmHeapSourceWalk
.L1:
        add     sp, sp, #44
        pop     {r4, r5, pc}
.L5:
        .align  2
.L4:
        .word   heap_chunk_callback

Note that instructions AB are equal to instructions CD, if we move the previous
conditional branch after B, then CD can be removed.

Option -O2 and target arm have the same problem.

Which pass should do this optimization? pass_rtl_hoist?


-- 
           Summary: Hoist same instructions in different branches
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-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=44374


^ permalink raw reply	[flat|nested] 9+ messages in thread
[parent not found: <bug-44374-4@http.gcc.gnu.org/bugzilla/>]

end of thread, other threads:[~2011-04-02 13:51 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-02  8:20 [Bug rtl-optimization/44374] New: Hoist same instructions in different branches carrot at google dot com
2010-06-02  8:21 ` [Bug rtl-optimization/44374] " carrot at google dot com
2010-06-02  8:54 ` steven at gcc dot gnu dot org
2010-09-23 10:05 ` bernds at gcc dot gnu dot org
2010-09-23 10:08 ` bernds at gcc dot gnu dot org
     [not found] <bug-44374-4@http.gcc.gnu.org/bugzilla/>
2010-11-03 18:25 ` hjl.tools at gmail dot com
2010-12-14  0:23 ` bernds at gcc dot gnu.org
2011-04-02 13:47 ` steven at gcc dot gnu.org
2011-04-02 13:51 ` bernds at gcc dot gnu.org

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