public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x
@ 2021-05-25 16:22 rdapp at linux dot ibm.com
  2021-05-26  7:39 ` [Bug tree-optimization/100756] " rguenth at gcc dot gnu.org
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: rdapp at linux dot ibm.com @ 2021-05-25 16:22 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 100756
           Summary: vect: Superfluous epilog created on s390x
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rdapp at linux dot ibm.com
  Target Milestone: ---

Since g:d846f225c25c5885250c303c8d118caa08c447ab we create an epilog loop on
s390 for the following test case:

/* { dg-do compile } */
/* { dg-options "-O3 -mzarch -march=z13" } */
/* { dg-require-effective-target s390_vx } */

int
foo (int * restrict a, int n)
{
  int i, result = 0;

  for (i = 0; i < n * 4; i++)
    result += a[i];
  return result;
}

vec.c:10:17: note:  epilog loop required

The following check in
tree-vect-loop.c:vect_need_peeling_or_partial_vectors_p() is now true:

               || ((tree_ctz (LOOP_VINFO_NITERS (loop_vinfo))                   
                     < (unsigned) exact_log2 (const_vf)) 

We now have LOOP_VINFO_NITERS (loop_vinfo) = _15 > 0 ? (unsigned int) _15 : 1
as compared to (unsigned int) _15 before. tree_ctz() returns 0 for the
conditional and 2 before which did not trigger the epilog requirement.

may_be_zero is _15 > 0 so it looks to me like we rather want to check the
not-may_be_zero part of niter for alignment. Not sure if this is the right/safe
thing to do, though.

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

* [Bug tree-optimization/100756] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
@ 2021-05-26  7:39 ` rguenth at gcc dot gnu.org
  2022-03-25  9:45 ` rdapp at linux dot ibm.com
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-05-26  7:39 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Created attachment 50870
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50870&action=edit
incomplete patch

Yes, the simplest thing might be to push may_be_zero to assumptions, but that
way we're going to force versioning for the loop.  That said, recording the
not maybe_zero_part separately and using it for this check should be easy.

Also confirmed on x86_64.

Incomplete patch attached - it would need auditing of all _NITER[M1] uses.

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

* [Bug tree-optimization/100756] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
  2021-05-26  7:39 ` [Bug tree-optimization/100756] " rguenth at gcc dot gnu.org
@ 2022-03-25  9:45 ` rdapp at linux dot ibm.com
  2022-03-25  9:53 ` rguenth at gcc dot gnu.org
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rdapp at linux dot ibm.com @ 2022-03-25  9:45 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from rdapp at linux dot ibm.com ---
I did not get back to this until now.  The patch works, of course and a
testsuite run looks good so far.  I assume we're too late in the cycle to still
get this in, right?

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

* [Bug tree-optimization/100756] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
  2021-05-26  7:39 ` [Bug tree-optimization/100756] " rguenth at gcc dot gnu.org
  2022-03-25  9:45 ` rdapp at linux dot ibm.com
@ 2022-03-25  9:53 ` rguenth at gcc dot gnu.org
  2022-10-20 12:04 ` rdapp at gcc dot gnu.org
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-03-25  9:53 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
(In reply to rdapp from comment #2)
> I did not get back to this until now.  The patch works, of course and a
> testsuite run looks good so far.  I assume we're too late in the cycle to
> still get this in, right?

Yes.  That's clearly stage1 material now.

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

* [Bug tree-optimization/100756] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
                   ` (2 preceding siblings ...)
  2022-03-25  9:53 ` rguenth at gcc dot gnu.org
@ 2022-10-20 12:04 ` rdapp at gcc dot gnu.org
  2022-10-21 12:21 ` [Bug tree-optimization/100756] [12/13 Regression] " rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rdapp at gcc dot gnu.org @ 2022-10-20 12:04 UTC (permalink / raw)
  To: gcc-bugs

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

rdapp at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rdapp at gcc dot gnu.org

--- Comment #4 from rdapp at gcc dot gnu.org ---
Anything that can/should be done here in case we'd still want to tackle it in
this P1 cycle?

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

* [Bug tree-optimization/100756] [12/13 Regression] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
                   ` (3 preceding siblings ...)
  2022-10-20 12:04 ` rdapp at gcc dot gnu.org
@ 2022-10-21 12:21 ` rguenth at gcc dot gnu.org
  2022-10-25  8:03 ` cvs-commit at gcc dot gnu.org
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-10-21 12:21 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2022-10-21
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |NEW
            Summary|vect: Superfluous epilog    |[12/13 Regression] vect:
                   |created on s390x            |Superfluous epilog created
                   |                            |on s390x
                 CC|                            |amacleod at redhat dot com
   Target Milestone|---                         |12.3
           Keywords|                            |missed-optimization

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
I think the issue is that we now have

  <bb 2> [local count: 118111600]:
  _15 = n_8(D) * 4;
  if (n_8(D) > 0)
    goto <bb 5>; [89.00%]
  else
    goto <bb 7>; [11.00%]

while we probably had

  <bb 2> [local count: 118111600]:
  _15 = n_8(D) * 4;
  if (_15 > 0)
    goto <bb 5>; [89.00%]
  else
    goto <bb 7>; [11.00%]

before the change.  Loop header copying applies VN to the copied blocks:

Processing block 0: BB6
Value numbering stmt = i_9 = PHI <0(2)>
Setting value number of i_9 to 0 (changed)
Replaced redundant PHI node defining i_9 with 0
Value numbering stmt = result_14 = PHI <0(2)>
Setting value number of result_14 to 0 (changed)
Replaced redundant PHI node defining result_14 with 0
Value numbering stmt = _15 = n_8(D) * 4;
Setting value number of _15 to _15 (changed)
Making available beyond BB6 _15 for value _15
Value numbering stmt = if (_15 > i_9)
Recording on edge 6->7 _15 gt_expr 0 == true
Recording on edge 6->7 _15 le_expr 0 == false
Recording on edge 6->7 _15 ne_expr 0 == true
Recording on edge 6->7 _15 ge_expr 0 == true
Recording on edge 6->7 _15 lt_expr 0 == false
Recording on edge 6->7 _15 eq_expr 0 == false
marking outgoing edge 6 -> 7 executable
gimple_simplified to if (n_8(D) > 0)

with

  <bb 2> [local count: 118111600]:
  _15 = n_8(D) * 4;
  if (n_8(D) > 0)
    goto <bb 3>; [89.00%]
  else
    goto <bb 4>; [11.00%]

  <bb 3> [local count: 955630225]:
  # i_16 = PHI <i_13(3), 0(2)>
  # result_17 = PHI <result_12(3), 0(2)>
  _1 = (long unsigned int) i_16;
  _2 = _1 * 4;
  _3 = a_11(D) + _2;
  _4 = *_3;
  result_12 = _4 + result_17;
  i_13 = i_16 + 1;
  _5 = n_8(D) * 4;
  if (_5 > i_13)
    goto <bb 3>; [89.00%]
  else
    goto <bb 4>; [11.00%]

so it was a single use in the compare (because CSE only later introduces
more uses through DOM).

The niter code then ends up with maybe-zero as _15 <= 0 and a condition
of n_8(D) > 0 it tries to simplify with tree_simplify_using_condition
(called from simplify_using_initial_conditions).  That old machinery
would be a perfect candidate to be rewritten using path ranger, but
in a somewhat extended mode that can "skip" diamonds, aka, the path
just contains dominators of the loop entry edge on which we want to
evaluate the _15 <= 0 condition.

To make the old simplification code work we can do the following:

diff --git a/gcc/tree-ssa-loop-niter.cc b/gcc/tree-ssa-loop-niter.cc
index 1e0f609d8b6..4ffcef4f4ff 100644
--- a/gcc/tree-ssa-loop-niter.cc
+++ b/gcc/tree-ssa-loop-niter.cc
@@ -2216,6 +2216,7 @@ expand_simple_operations (tree expr, tree stop,
hash_map<tree, tree> &cache)

     case PLUS_EXPR:
     case MINUS_EXPR:
+    case MULT_EXPR:
       if (ANY_INTEGRAL_TYPE_P (TREE_TYPE (expr))
          && TYPE_OVERFLOW_TRAPS (TREE_TYPE (expr)))
        return expr;

but that can of course have unintended side-effects elsewhere
(this function is also used by IVOPTs).

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

* [Bug tree-optimization/100756] [12/13 Regression] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
                   ` (4 preceding siblings ...)
  2022-10-21 12:21 ` [Bug tree-optimization/100756] [12/13 Regression] " rguenth at gcc dot gnu.org
@ 2022-10-25  8:03 ` cvs-commit at gcc dot gnu.org
  2022-10-25  8:03 ` [Bug tree-optimization/100756] [12 " rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-10-25  8:03 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Richard Biener <rguenth@gcc.gnu.org>:

https://gcc.gnu.org/g:19295e8607da2f743368fe6f5708146616aafa91

commit r13-3476-g19295e8607da2f743368fe6f5708146616aafa91
Author: Richard Biener <rguenther@suse.de>
Date:   Mon Oct 24 09:51:32 2022 +0200

    tree-optimization/100756 - niter analysis and folding

    niter analysis, specifically the part trying to simplify the computed
    maybe_zero condition against the loop header copying condition, is
    confused by us now simplifying

      _15 = n_8(D) * 4;
      if (_15 > 0)

    to

      _15 = n_8(D) * 4;
      if (n_8(D) > 0)

    which is perfectly sound at the point we do this transform.  One
    solution might be to involve ranger in this simplification, another
    is to be more aggressive when expanding expressions - the condition
    we try to simplify is _15 > 0, so all we need is expanding that
    to n_8(D) * 4 > 0.

    The following does just that.

            PR tree-optimization/100756
            * tree-ssa-loop-niter.cc (expand_simple_operations): Also
            expand multiplications by invariants.

            * gcc.dg/vect/pr100756.c: New testcase.

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

* [Bug tree-optimization/100756] [12 Regression] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
                   ` (5 preceding siblings ...)
  2022-10-25  8:03 ` cvs-commit at gcc dot gnu.org
@ 2022-10-25  8:03 ` rguenth at gcc dot gnu.org
  2022-10-25  8:03 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-10-25  8:03 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2
      Known to work|                            |13.0
            Summary|[12/13 Regression] vect:    |[12 Regression] vect:
                   |Superfluous epilog created  |Superfluous epilog created
                   |on s390x                    |on s390x

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed on trunk - lets see if there's any fallout.

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

* [Bug tree-optimization/100756] [12 Regression] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
                   ` (6 preceding siblings ...)
  2022-10-25  8:03 ` [Bug tree-optimization/100756] [12 " rguenth at gcc dot gnu.org
@ 2022-10-25  8:03 ` rguenth at gcc dot gnu.org
  2023-02-01  9:31 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-10-25  8:03 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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

* [Bug tree-optimization/100756] [12 Regression] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
                   ` (7 preceding siblings ...)
  2022-10-25  8:03 ` rguenth at gcc dot gnu.org
@ 2023-02-01  9:31 ` rguenth at gcc dot gnu.org
  2023-02-01  9:59 ` rdapp at gcc dot gnu.org
  2023-05-08 12:22 ` rguenth at gcc dot gnu.org
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-02-01  9:31 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100756
Bug 100756 depends on bug 107499, which changed state.

Bug 107499 Summary: [13 Regression] 433.milc regressed by 6-8% on zen3 at -O2 -flto
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107499

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

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

* [Bug tree-optimization/100756] [12 Regression] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
                   ` (8 preceding siblings ...)
  2023-02-01  9:31 ` rguenth at gcc dot gnu.org
@ 2023-02-01  9:59 ` rdapp at gcc dot gnu.org
  2023-05-08 12:22 ` rguenth at gcc dot gnu.org
  10 siblings, 0 replies; 12+ messages in thread
From: rdapp at gcc dot gnu.org @ 2023-02-01  9:59 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from rdapp at gcc dot gnu.org ---
For completeness: haven't observed any fallout on s390 since and the regression
is fixed.

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

* [Bug tree-optimization/100756] [12 Regression] vect: Superfluous epilog created on s390x
  2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
                   ` (9 preceding siblings ...)
  2023-02-01  9:59 ` rdapp at gcc dot gnu.org
@ 2023-05-08 12:22 ` rguenth at gcc dot gnu.org
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-05-08 12:22 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|12.3                        |12.4

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 12.3 is being released, retargeting bugs to GCC 12.4.

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

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

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-25 16:22 [Bug tree-optimization/100756] New: vect: Superfluous epilog created on s390x rdapp at linux dot ibm.com
2021-05-26  7:39 ` [Bug tree-optimization/100756] " rguenth at gcc dot gnu.org
2022-03-25  9:45 ` rdapp at linux dot ibm.com
2022-03-25  9:53 ` rguenth at gcc dot gnu.org
2022-10-20 12:04 ` rdapp at gcc dot gnu.org
2022-10-21 12:21 ` [Bug tree-optimization/100756] [12/13 Regression] " rguenth at gcc dot gnu.org
2022-10-25  8:03 ` cvs-commit at gcc dot gnu.org
2022-10-25  8:03 ` [Bug tree-optimization/100756] [12 " rguenth at gcc dot gnu.org
2022-10-25  8:03 ` rguenth at gcc dot gnu.org
2023-02-01  9:31 ` rguenth at gcc dot gnu.org
2023-02-01  9:59 ` rdapp at gcc dot gnu.org
2023-05-08 12:22 ` rguenth 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).