public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/62147] New: missed loop counter based optimization
@ 2014-08-15  0:14 carrot at google dot com
  2014-08-15  0:26 ` [Bug target/62147] " pinskia at gcc dot gnu.org
  2014-08-16 18:29 ` segher at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: carrot at google dot com @ 2014-08-15  0:14 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62147

            Bug ID: 62147
           Summary: missed loop counter based optimization
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: carrot at google dot com
            Target: powerpc64le

Compile following source code with options -m64 -mcpu=power8 -O2

typedef struct {
      int l;
      int b[258];
} S;

void clear (S* s )
{
   int i;
   int len = s->l + 1;      // int len = s->l; 

   for (i = 0; i <= len; i++)
       s->b[i] = 0;
}

Trunk compiler generates:

clear:
    lwz 9,0(3)
    cmpwi 7,9,-1
    bltlr- 7
    addi 9,9,1
    li 10,0
    rldicl 9,9,0,32
    addi 9,9,1
    sldi 9,9,2
    add 9,3,9
    .p2align 4,,15
.L3:
    stwu 10,4(3)
    cmpld 7,3,9
    bne+ 7,.L3
    blr


It uses cmp/jmp instructions to construct the loop, a better code sequence
should use the bdnz instruction.
If I change the source code as in the comment, gcc can generate bdnz
instruction to form the loop

clear:
    lwz 9,0(3)
    cmpwi 7,9,0
    extsw 9,9
    bltlr- 7
    sldi 9,9,2
    li 10,0
    srdi 9,9,2
    addi 9,9,1
    mtctr 9
    .p2align 4,,15
.L3:
    stwu 10,4(3)
    bdnz .L3
    blr


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

* [Bug target/62147] missed loop counter based optimization
  2014-08-15  0:14 [Bug target/62147] New: missed loop counter based optimization carrot at google dot com
@ 2014-08-15  0:26 ` pinskia at gcc dot gnu.org
  2014-08-16 18:29 ` segher at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: pinskia at gcc dot gnu.org @ 2014-08-15  0:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62147

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This is related to bug 37451.


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

* [Bug target/62147] missed loop counter based optimization
  2014-08-15  0:14 [Bug target/62147] New: missed loop counter based optimization carrot at google dot com
  2014-08-15  0:26 ` [Bug target/62147] " pinskia at gcc dot gnu.org
@ 2014-08-16 18:29 ` segher at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: segher at gcc dot gnu.org @ 2014-08-16 18:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62147

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|powerpc64le                 |powerpc64*-*
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-08-16
                 CC|                            |segher at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Segher Boessenkool <segher at gcc dot gnu.org> ---
Confirmed, on powerpc64 with default tuning.

-m32 generates bdnz just fine.
Using a different limit (as in your code comment)
doesn't help.
Using long int instead of int does work.

The ivopts pass thinks using the pointer as loop
counter is cheapest.


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

end of thread, other threads:[~2014-08-16 18:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-15  0:14 [Bug target/62147] New: missed loop counter based optimization carrot at google dot com
2014-08-15  0:26 ` [Bug target/62147] " pinskia at gcc dot gnu.org
2014-08-16 18:29 ` segher 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).