public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/19581] New: Missed store monition on the tree level (on PPC in general)
@ 2005-01-23  1:43 pinskia at gcc dot gnu dot org
  2005-01-23  1:45 ` [Bug tree-optimization/19581] " pinskia at gcc dot gnu dot org
                   ` (9 more replies)
  0 siblings, 10 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-23  1:43 UTC (permalink / raw)
  To: gcc-bugs

This is like PR 19580 but a request to optimize it on the tree level instead of just on the RTL level.  
Mainly because we don't catch it for PPC (with 3.3.3 or with -fno-gcse).
int r[6];

void f (int n)
{
  while (-- n)
    {
      r [0] += r [5];
      r [1] += r [0];
      r [2] += r [1];
      r [3] += r [2];
      r [4] += r [3];
      r [5] += r [4];
    }
}

We should be able to pull out the load and stores for r[0] ... r[5].
If we do it on the tree level, we also just fix the problem for 4.0 also (but I think this might need more 
aliasing analysis or I could be wrong).

-- 
           Summary: Missed store monition on the tree level (on PPC in
                    general)
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Keywords: missed-optimization, alias, TREE
          Severity: enhancement
          Priority: P2
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org


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


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

end of thread, other threads:[~2006-02-03 12:32 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-23  1:43 [Bug tree-optimization/19581] New: Missed store monition on the tree level (on PPC in general) pinskia at gcc dot gnu dot org
2005-01-23  1:45 ` [Bug tree-optimization/19581] " pinskia at gcc dot gnu dot org
2005-01-23  1:47 ` dberlin at gcc dot gnu dot org
2005-01-23 19:27 ` steven at gcc dot gnu dot org
2005-01-23 19:30 ` [Bug tree-optimization/19581] Missed store monition on the tree level steven at gcc dot gnu dot org
2005-01-23 19:44 ` rakdver at gcc dot gnu dot org
2005-01-23 19:53 ` steven at gcc dot gnu dot org
2005-01-23 20:00 ` pinskia at gcc dot gnu dot org
2005-01-23 20:01 ` rakdver at gcc dot gnu dot org
2005-07-26 13:21 ` [Bug tree-optimization/19581] Missed store motion " dberlin at gcc dot gnu dot org
2005-07-26 13:59 ` rguenth at gcc dot gnu dot org
     [not found] <bug-19581-6528@http.gcc.gnu.org/bugzilla/>
2006-02-03 12:32 ` rguenth at gcc dot gnu dot org
2006-02-03 12:32 ` rguenth at gcc dot gnu dot 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).