public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/61032] New: rs6000 code gen suffers from lack of address_cost
@ 2014-05-02  4:19 amodra at gmail dot com
  2014-05-02  4:29 ` [Bug target/61032] " amodra at gmail dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: amodra at gmail dot com @ 2014-05-02  4:19 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 61032
           Summary: rs6000 code gen suffers from lack of address_cost
           Product: gcc
           Version: 4.10.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: amodra at gmail dot com

-mcmodel=medium introduced a code model where addresses typically need two
instructions.  As illustrated in the following, the fact that rs6000 lacks an
address_cost function to say that UNSPEC_TOCREL addresses are more costly than
say, register indirect, sees fwprop making poor decisions.

struct fourlongs {
  long l[4];
} x, y;

void f1(void)
{
  void *a = &x;
  void *b = &y;
  __builtin_memcpy (a, b, sizeof(x));
}

/* -O2 -S -fvisibility-hidden
.L.f1:
        addis 7,2,y@toc@ha
        addis 8,2,y+8@toc@ha
        addis 6,2,x@toc@ha
        addis 10,2,y+16@toc@ha
        ld 7,y@toc@l(7)
        ld 8,y+8@toc@l(8)
        addis 9,2,y+24@toc@ha
        ld 10,y+16@toc@l(10)
        ld 9,y+24@toc@l(9)
        std 7,x@toc@l(6)
        addis 7,2,x+8@toc@ha
        std 8,x+8@toc@l(7)
        addis 8,2,x+16@toc@ha
        std 10,x+16@toc@l(8)
        addis 10,2,x+24@toc@ha
        std 9,x+24@toc@l(10)
        blr
*/

void f2(void)
{
  void *a = &x;
  void *b = &y;
  __asm__ ("" : "+r" (a));
  __asm__ ("" : "+r" (b));
  __builtin_memcpy (a, b, sizeof(x));
}

/* -O2 -S -fvisibility-hidden
   fewer dependent address calcs, mem loads earlier and back-to-back, smaller
code
.L.f2:
        addis 9,2,y@toc@ha
        addi 9,9,y@toc@l
        ld 6,0(9)
        ld 7,8(9)
        ld 8,16(9)
        ld 10,24(9)
        addis 9,2,x@toc@ha
        addi 9,9,x@toc@l
        std 6,0(9)
        std 7,8(9)
        std 8,16(9)
        std 10,24(9)
        blr
*/


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

* [Bug target/61032] rs6000 code gen suffers from lack of address_cost
  2014-05-02  4:19 [Bug target/61032] New: rs6000 code gen suffers from lack of address_cost amodra at gmail dot com
@ 2014-05-02  4:29 ` amodra at gmail dot com
  2014-05-08  2:21 ` amodra at gmail dot com
  2021-07-16  5:24 ` amodra at gmail dot com
  2 siblings, 0 replies; 4+ messages in thread
From: amodra at gmail dot com @ 2014-05-02  4:29 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Alan Modra <amodra at gmail dot com> ---
This is a code quality regression from gcc-4.7.2


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

* [Bug target/61032] rs6000 code gen suffers from lack of address_cost
  2014-05-02  4:19 [Bug target/61032] New: rs6000 code gen suffers from lack of address_cost amodra at gmail dot com
  2014-05-02  4:29 ` [Bug target/61032] " amodra at gmail dot com
@ 2014-05-08  2:21 ` amodra at gmail dot com
  2021-07-16  5:24 ` amodra at gmail dot com
  2 siblings, 0 replies; 4+ messages in thread
From: amodra at gmail dot com @ 2014-05-08  2:21 UTC (permalink / raw)
  To: gcc-bugs

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

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2014-05-08
           Assignee|unassigned at gcc dot gnu.org      |amodra at gmail dot com
     Ever confirmed|0                           |1


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

* [Bug target/61032] rs6000 code gen suffers from lack of address_cost
  2014-05-02  4:19 [Bug target/61032] New: rs6000 code gen suffers from lack of address_cost amodra at gmail dot com
  2014-05-02  4:29 ` [Bug target/61032] " amodra at gmail dot com
  2014-05-08  2:21 ` amodra at gmail dot com
@ 2021-07-16  5:24 ` amodra at gmail dot com
  2 siblings, 0 replies; 4+ messages in thread
From: amodra at gmail dot com @ 2021-07-16  5:24 UTC (permalink / raw)
  To: gcc-bugs

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

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|amodra at gmail dot com            |unassigned at gcc dot gnu.org
             Status|ASSIGNED                    |NEW

--- Comment #2 from Alan Modra <amodra at gmail dot com> ---
Deassigning myself, since it is clear that the rtx_costs patches are going
nowhere.

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

end of thread, other threads:[~2021-07-16  5:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-02  4:19 [Bug target/61032] New: rs6000 code gen suffers from lack of address_cost amodra at gmail dot com
2014-05-02  4:29 ` [Bug target/61032] " amodra at gmail dot com
2014-05-08  2:21 ` amodra at gmail dot com
2021-07-16  5:24 ` amodra at gmail 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).