Bug 22196 - Missed back prop
Summary: Missed back prop
Status: ASSIGNED
Alias: None
Product: gcc
Classification: Unclassified
Component: tree-optimization (show other bugs)
Version: 4.1.0
: P2 enhancement
Target Milestone: ---
Assignee: Andrew Pinski
URL:
Keywords: missed-optimization
: 30747 112608 (view as bug list)
Depends on:
Blocks: 87654
  Show dependency treegraph
 
Reported: 2005-06-26 20:15 UTC by Andrew Pinski
Modified: 2023-11-21 07:16 UTC (History)
6 users (show)

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed: 2005-12-24 19:57:20


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Pinski 2005-06-26 20:15:05 UTC
The following two functions should be equal:
unsigned f(int i, unsigned x)
{
  unsigned y;
  if (i)
    y = 1024;
  else
    y = 1024*1024;
  return x/y ;
}

unsigned f1(int i, unsigned x)
{
  unsigned y;
  if (i)
    y = x/ 1024;
  else
    y = x/(1024*1024);
  return y ;
}
Comment 1 Andrew Pinski 2005-07-02 17:32:29 UTC
Confirmed.
Comment 2 Andrew Pinski 2007-02-09 16:10:36 UTC
*** Bug 30747 has been marked as a duplicate of this bug. ***
Comment 3 Andrew Pinski 2021-06-08 09:12:20 UTC
This actually undos some of what phi-opt might do and only should be done for a few operations.  I think divide, multiple, shifts and rotates should be done and only with a constant operand.  This has to be done late very close to expand even.

I will be implementing this but might miss GCC 12 as I have a lot on my plate already for GCC 12.
Comment 4 Andrew Pinski 2023-11-07 22:25:18 UTC
(In reply to Andrew Pinski from comment #3)
> This actually undos some of what phi-opt might do and only should be done
> for a few operations.  I think divide, multiple, shifts and rotates should
> be done and only with a constant operand.  This has to be done late very
> close to expand even.
> 
> I will be implementing this but might miss GCC 12 as I have a lot on my
> plate already for GCC 12.

It turns out this is still true. I had implemented the binary factoring out of operations for phiopt and end up with a failure with `gcc.dg/tree-prof/val-prof-1.c` which depends on phiopt not doing this. Note only one of the phi nodes needs to be constant for when we want to handle it.

Oh I wonder if val-prof-1.c is still going to fail since we had originally:
if (a == CST) b = CST/c; else b = a/c;

And now we might have removed the if .. Woops. Anyways I will have to go and dig into that failure some more but this issue is now needed again too.
Comment 5 Andrew Pinski 2023-11-18 18:19:23 UTC
*** Bug 112608 has been marked as a duplicate of this bug. ***