public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/51049] New: A regression caused by "Improve handling of conditional-branches on targets with high branch costs"
@ 2011-11-09  7:49 liujiangning at gcc dot gnu.org
  2011-11-09  7:52 ` [Bug tree-optimization/51049] " liujiangning at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: liujiangning at gcc dot gnu.org @ 2011-11-09  7:49 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 51049
           Summary: A regression caused by "Improve handling of
                    conditional-branches on targets with high branch
                    costs"
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: liujiangning@gcc.gnu.org


int f(char *i, int j)
{
        if (*i && j!=2)
                return *i;
        else
                return j;
}

Before the check-in r180109, we have

  D.4710 = *i;
  D.4711 = D.4710 != 0;
  D.4712 = j != 2;
  D.4713 = D.4711 & D.4712;
  if (D.4713 != 0) goto <D.4714>; else goto <D.4715>;
  <D.4714>:
  D.4710 = *i;
  D.4716 = (int) D.4710;
  return D.4716;
  <D.4715>:
  D.4716 = j;
  return D.4716;

After check-in r180109, we have

  D.4711 = *i;
  if (D.4711 != 0) goto <D.4712>; else goto <D.4710>;
  <D.4712>:
  if (j != 2) goto <D.4713>; else goto <D.4710>;
  <D.4713>:
  D.4711 = *i;
  D.4714 = (int) D.4711;
  return D.4714;
  <D.4710>:
  D.4714 = j;
  return D.4714;

the code below in function fold_truth_andor makes difference,

      /* Transform (A AND-IF B) into (A AND B), or (A OR-IF B)     into (A OR
B).
     For sequence point consistancy, we need to check for trapping,
     and side-effects.  */
      else if (code == icode && simple_operand_p_2 (arg0)
               && simple_operand_p_2 (arg1))
         return fold_build2_loc (loc, ncode, type, arg0, arg1);

for "*i != 0" simple_operand_p(*i) returns false. Originally this is not
checked by the code. 

Please refer to http://gcc.gnu.org/ml/gcc-patches/2011-10/msg02445.html for
discussion details.

This change accidently made some benchmarks significantly improved due to some
other reasons, but Michael gave the comments below.

======Michael's comment======

It's nice that it caused a benchmark to improve significantly, but that should
be done via a proper analysis and patch, not as a side effect of a supposed
non-change.

======End of Michael's comment======

The potential impact would be hurting other scenarios on performance.

The key point is for this small case I gave RHS doesn't have side effect at
all, so the optimization of changing it to AND doesn't violate C specification. 

======Kai's comment======

As for the case that left-hand side has side-effects but right-hand not, we
aren't allowed to do this AND/OR merge.  For example 'if ((f = foo ()) != 0 &&
f < 24)' we aren't allowed to make this transformation.

This shouldn't be that hard.  We need to provide to simple_operand_p_2 an
additional argument for checking trapping or not.

======End of Kai's comment======

This optimization change is blocking some other optimizations I am working on
in back-ends. For example, the problem I described at
http://gcc.gnu.org/ml/gcc/2011-09/msg00175.html disappeared. But it is not a
proper behavior.

Thanks,
-Jiangning


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

* [Bug tree-optimization/51049] A regression caused by "Improve handling of conditional-branches on targets with high branch costs"
  2011-11-09  7:49 [Bug tree-optimization/51049] New: A regression caused by "Improve handling of conditional-branches on targets with high branch costs" liujiangning at gcc dot gnu.org
@ 2011-11-09  7:52 ` liujiangning at gcc dot gnu.org
  2011-11-09  9:23 ` rguenth at gcc dot gnu.org
  2023-08-03  5:12 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: liujiangning at gcc dot gnu.org @ 2011-11-09  7:52 UTC (permalink / raw)
  To: gcc-bugs

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

Jiangning Liu <liujiangning at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Priority|P3                          |P2
                 CC|                            |jiangning.liu at arm dot
                   |                            |com, liujiangning at gcc
                   |                            |dot gnu.org


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

* [Bug tree-optimization/51049] A regression caused by "Improve handling of conditional-branches on targets with high branch costs"
  2011-11-09  7:49 [Bug tree-optimization/51049] New: A regression caused by "Improve handling of conditional-branches on targets with high branch costs" liujiangning at gcc dot gnu.org
  2011-11-09  7:52 ` [Bug tree-optimization/51049] " liujiangning at gcc dot gnu.org
@ 2011-11-09  9:23 ` rguenth at gcc dot gnu.org
  2023-08-03  5:12 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-11-09  9:23 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2011-11-09
     Ever Confirmed|0                           |1


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

* [Bug tree-optimization/51049] A regression caused by "Improve handling of conditional-branches on targets with high branch costs"
  2011-11-09  7:49 [Bug tree-optimization/51049] New: A regression caused by "Improve handling of conditional-branches on targets with high branch costs" liujiangning at gcc dot gnu.org
  2011-11-09  7:52 ` [Bug tree-optimization/51049] " liujiangning at gcc dot gnu.org
  2011-11-09  9:23 ` rguenth at gcc dot gnu.org
@ 2023-08-03  5:12 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-08-03  5:12 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
So at -O1 we get what we expect:
```
  _1 = *i_4(D);
  _7 = j_5(D) != 2;
  _8 = _1 != 0;
  _9 = _7 & _8;
  if (_9 != 0)
    goto <bb 3>; [43.56%]
  else
    goto <bb 4>; [56.44%]

  <bb 3> [local count: 467721933]:
  _6 = (int) _1;

  <bb 4> [local count: 1073741824]:
  # _2 = PHI <_6(3), j_5(D)(2)>
```
But at -O2 we get:
```
  if (_1 != 0)
    goto <bb 3>; [66.00%]
  else
    goto <bb 5>; [34.00%]

  <bb 3> [local count: 708669599]:
  if (j_5(D) != 2)
    goto <bb 4>; [66.00%]
  else
    goto <bb 5>; [34.00%]

  <bb 4> [local count: 467721933]:
  _6 = (int) _1;

  <bb 5> [local count: 1073741824]:
  # _2 = PHI <_6(4), j_5(D)(3), j_5(D)(2)>
```

Because VRP comes along and replaces j_5(D) with 2 along the edge `3->5` and
ifcombine does not do handle that as the phi entries are different (but maybe
can be proved as the same).

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

end of thread, other threads:[~2023-08-03  5:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-09  7:49 [Bug tree-optimization/51049] New: A regression caused by "Improve handling of conditional-branches on targets with high branch costs" liujiangning at gcc dot gnu.org
2011-11-09  7:52 ` [Bug tree-optimization/51049] " liujiangning at gcc dot gnu.org
2011-11-09  9:23 ` rguenth at gcc dot gnu.org
2023-08-03  5:12 ` pinskia 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).