Remove can_throw_non_call_exceptions special case from operator_div::wi_fold.

Message ID 20211129140050.82907-1-aldyh@redhat.com
State New
Headers
Series Remove can_throw_non_call_exceptions special case from operator_div::wi_fold. |

Commit Message

Aldy Hernandez Nov. 29, 2021, 2 p.m. UTC
  As discussed in the PR.  The code makes no difference, so whatever test
we added this special case for has been fixed or is being papered over.
I think we should fix any fall out upstream.

[Unless Andrew can remember why we added this and it still applies.]

Tested on x86-64 Linux.

OK for trunk?

	PR 103451

gcc/ChangeLog:

	* range-op.cc (operator_div::wi_fold): Remove
	can_throw_non_call_exceptions special case.

gcc/testsuite/ChangeLog:

	* gcc.dg/pr103451.c: New test.
---
 gcc/range-op.cc                 |  7 -------
 gcc/testsuite/gcc.dg/pr103451.c | 17 +++++++++++++++++
 2 files changed, 17 insertions(+), 7 deletions(-)
 create mode 100644 gcc/testsuite/gcc.dg/pr103451.c
  

Comments

Jeff Law Nov. 29, 2021, 2:39 p.m. UTC | #1
On 11/29/2021 7:00 AM, Aldy Hernandez via Gcc-patches wrote:
> As discussed in the PR.  The code makes no difference, so whatever test
> we added this special case for has been fixed or is being papered over.
> I think we should fix any fall out upstream.
>
> [Unless Andrew can remember why we added this and it still applies.]
>
> Tested on x86-64 Linux.
>
> OK for trunk?
>
> 	PR 103451
>
> gcc/ChangeLog:
>
> 	* range-op.cc (operator_div::wi_fold): Remove
> 	can_throw_non_call_exceptions special case.
>
> gcc/testsuite/ChangeLog:
>
> 	* gcc.dg/pr103451.c: New test.
I'll defer to Andrew, but it seems wrong to me.  The whole point is to 
set the result to varying so that we don't know the result and never 
remove the division which is critical for -fnon-call-exceptions.


> ---
>   gcc/range-op.cc                 |  7 -------
>   gcc/testsuite/gcc.dg/pr103451.c | 17 +++++++++++++++++
>   2 files changed, 17 insertions(+), 7 deletions(-)
>   create mode 100644 gcc/testsuite/gcc.dg/pr103451.c
>
> diff --git a/gcc/range-op.cc b/gcc/range-op.cc
> index bbf2924f815..6fe5f1cb4e0 100644
> --- a/gcc/range-op.cc
> +++ b/gcc/range-op.cc
> @@ -1832,13 +1832,6 @@ operator_div::wi_fold (irange &r, tree type,
>         return;
>       }
>   
> -  // If flag_non_call_exceptions, we must not eliminate a division by zero.
> -  if (cfun->can_throw_non_call_exceptions)
> -    {
> -      r.set_varying (type);
> -      return;
> -    }
> -
>     // If we're definitely dividing by zero, there's nothing to do.
>     if (wi_zero_p (type, divisor_min, divisor_max))
>       {
> diff --git a/gcc/testsuite/gcc.dg/pr103451.c b/gcc/testsuite/gcc.dg/pr103451.c
> new file mode 100644
> index 00000000000..b83646d0b83
> --- /dev/null
> +++ b/gcc/testsuite/gcc.dg/pr103451.c
> @@ -0,0 +1,17 @@
> +// { dg-do compile }
> +// { dg-options "-O2 -w" }
ISTM that what you want to test for is that the division by zero remains 
in the IL for -fnon-call-exceptions.

jeff
  
Richard Biener Nov. 29, 2021, 2:48 p.m. UTC | #2
On Mon, Nov 29, 2021 at 3:39 PM Jeff Law <jeffreyalaw@gmail.com> wrote:
>
>
>
> On 11/29/2021 7:00 AM, Aldy Hernandez via Gcc-patches wrote:
> > As discussed in the PR.  The code makes no difference, so whatever test
> > we added this special case for has been fixed or is being papered over.
> > I think we should fix any fall out upstream.
> >
> > [Unless Andrew can remember why we added this and it still applies.]
> >
> > Tested on x86-64 Linux.
> >
> > OK for trunk?
> >
> >       PR 103451
> >
> > gcc/ChangeLog:
> >
> >       * range-op.cc (operator_div::wi_fold): Remove
> >       can_throw_non_call_exceptions special case.
> >
> > gcc/testsuite/ChangeLog:
> >
> >       * gcc.dg/pr103451.c: New test.
> I'll defer to Andrew, but it seems wrong to me.  The whole point is to
> set the result to varying so that we don't know the result and never
> remove the division which is critical for -fnon-call-exceptions.

But that has nothing to do with computing the value range for
the result which is only accessible when the stmt does _not_ throw ...

That is, if we compute non-VARYING here and because of that
remove the stmt then _that's_ the place to fix (IMO)

>
> > ---
> >   gcc/range-op.cc                 |  7 -------
> >   gcc/testsuite/gcc.dg/pr103451.c | 17 +++++++++++++++++
> >   2 files changed, 17 insertions(+), 7 deletions(-)
> >   create mode 100644 gcc/testsuite/gcc.dg/pr103451.c
> >
> > diff --git a/gcc/range-op.cc b/gcc/range-op.cc
> > index bbf2924f815..6fe5f1cb4e0 100644
> > --- a/gcc/range-op.cc
> > +++ b/gcc/range-op.cc
> > @@ -1832,13 +1832,6 @@ operator_div::wi_fold (irange &r, tree type,
> >         return;
> >       }
> >
> > -  // If flag_non_call_exceptions, we must not eliminate a division by zero.
> > -  if (cfun->can_throw_non_call_exceptions)
> > -    {
> > -      r.set_varying (type);
> > -      return;
> > -    }
> > -
> >     // If we're definitely dividing by zero, there's nothing to do.
> >     if (wi_zero_p (type, divisor_min, divisor_max))
> >       {
> > diff --git a/gcc/testsuite/gcc.dg/pr103451.c b/gcc/testsuite/gcc.dg/pr103451.c
> > new file mode 100644
> > index 00000000000..b83646d0b83
> > --- /dev/null
> > +++ b/gcc/testsuite/gcc.dg/pr103451.c
> > @@ -0,0 +1,17 @@
> > +// { dg-do compile }
> > +// { dg-options "-O2 -w" }
> ISTM that what you want to test for is that the division by zero remains
> in the IL for -fnon-call-exceptions.
>
> jeff
>
  
Aldy Hernandez Nov. 29, 2021, 3:24 p.m. UTC | #3
On Mon, Nov 29, 2021 at 3:48 PM Richard Biener
<richard.guenther@gmail.com> wrote:
>
> On Mon, Nov 29, 2021 at 3:39 PM Jeff Law <jeffreyalaw@gmail.com> wrote:
> >
> >
> >
> > On 11/29/2021 7:00 AM, Aldy Hernandez via Gcc-patches wrote:
> > > As discussed in the PR.  The code makes no difference, so whatever test
> > > we added this special case for has been fixed or is being papered over.
> > > I think we should fix any fall out upstream.
> > >
> > > [Unless Andrew can remember why we added this and it still applies.]
> > >
> > > Tested on x86-64 Linux.
> > >
> > > OK for trunk?
> > >
> > >       PR 103451
> > >
> > > gcc/ChangeLog:
> > >
> > >       * range-op.cc (operator_div::wi_fold): Remove
> > >       can_throw_non_call_exceptions special case.
> > >
> > > gcc/testsuite/ChangeLog:
> > >
> > >       * gcc.dg/pr103451.c: New test.
> > I'll defer to Andrew, but it seems wrong to me.  The whole point is to
> > set the result to varying so that we don't know the result and never
> > remove the division which is critical for -fnon-call-exceptions.
>
> But that has nothing to do with computing the value range for
> the result which is only accessible when the stmt does _not_ throw ...
>
> That is, if we compute non-VARYING here and because of that
> remove the stmt then _that's_ the place to fix (IMO)

Ughh, I think you're both right.

We should fix this upstream AND we should test for the presence of the
division by 0 in the optimized dump.

Of course doing both opens a can of worms.  The division by zero can
be cleaned up by (at least) DCE, DSE, and the code sinking passes.
I've fixed all 3 in the attached (untested) patch.  Dunno what y'all
want to do at this point.

Aldy
  
Richard Biener Nov. 30, 2021, 7:37 a.m. UTC | #4
On Mon, Nov 29, 2021 at 4:24 PM Aldy Hernandez <aldyh@redhat.com> wrote:
>
> On Mon, Nov 29, 2021 at 3:48 PM Richard Biener
> <richard.guenther@gmail.com> wrote:
> >
> > On Mon, Nov 29, 2021 at 3:39 PM Jeff Law <jeffreyalaw@gmail.com> wrote:
> > >
> > >
> > >
> > > On 11/29/2021 7:00 AM, Aldy Hernandez via Gcc-patches wrote:
> > > > As discussed in the PR.  The code makes no difference, so whatever test
> > > > we added this special case for has been fixed or is being papered over.
> > > > I think we should fix any fall out upstream.
> > > >
> > > > [Unless Andrew can remember why we added this and it still applies.]
> > > >
> > > > Tested on x86-64 Linux.
> > > >
> > > > OK for trunk?
> > > >
> > > >       PR 103451
> > > >
> > > > gcc/ChangeLog:
> > > >
> > > >       * range-op.cc (operator_div::wi_fold): Remove
> > > >       can_throw_non_call_exceptions special case.
> > > >
> > > > gcc/testsuite/ChangeLog:
> > > >
> > > >       * gcc.dg/pr103451.c: New test.
> > > I'll defer to Andrew, but it seems wrong to me.  The whole point is to
> > > set the result to varying so that we don't know the result and never
> > > remove the division which is critical for -fnon-call-exceptions.
> >
> > But that has nothing to do with computing the value range for
> > the result which is only accessible when the stmt does _not_ throw ...
> >
> > That is, if we compute non-VARYING here and because of that
> > remove the stmt then _that's_ the place to fix (IMO)
>
> Ughh, I think you're both right.
>
> We should fix this upstream AND we should test for the presence of the
> division by 0 in the optimized dump.
>
> Of course doing both opens a can of worms.  The division by zero can
> be cleaned up by (at least) DCE, DSE, and the code sinking passes.
> I've fixed all 3 in the attached (untested) patch.  Dunno what y'all
> want to do at this point.

I think you need to add -fno-delete-dead-exceptions to the testcase.
The sinking
bug looks real, but just

         && (cfun->can_delete_dead_exceptions
                || !stmt_could_throw_p (cfun, stmt))

is needed there.  That change is OK.

Thanks,
Richard.

>
> Aldy
  
Aldy Hernandez Nov. 30, 2021, 8:51 a.m. UTC | #5
On Tue, Nov 30, 2021 at 8:37 AM Richard Biener
<richard.guenther@gmail.com> wrote:
>
> On Mon, Nov 29, 2021 at 4:24 PM Aldy Hernandez <aldyh@redhat.com> wrote:
> >
> > On Mon, Nov 29, 2021 at 3:48 PM Richard Biener
> > <richard.guenther@gmail.com> wrote:
> > >
> > > On Mon, Nov 29, 2021 at 3:39 PM Jeff Law <jeffreyalaw@gmail.com> wrote:
> > > >
> > > >
> > > >
> > > > On 11/29/2021 7:00 AM, Aldy Hernandez via Gcc-patches wrote:
> > > > > As discussed in the PR.  The code makes no difference, so whatever test
> > > > > we added this special case for has been fixed or is being papered over.
> > > > > I think we should fix any fall out upstream.
> > > > >
> > > > > [Unless Andrew can remember why we added this and it still applies.]
> > > > >
> > > > > Tested on x86-64 Linux.
> > > > >
> > > > > OK for trunk?
> > > > >
> > > > >       PR 103451
> > > > >
> > > > > gcc/ChangeLog:
> > > > >
> > > > >       * range-op.cc (operator_div::wi_fold): Remove
> > > > >       can_throw_non_call_exceptions special case.
> > > > >
> > > > > gcc/testsuite/ChangeLog:
> > > > >
> > > > >       * gcc.dg/pr103451.c: New test.
> > > > I'll defer to Andrew, but it seems wrong to me.  The whole point is to
> > > > set the result to varying so that we don't know the result and never
> > > > remove the division which is critical for -fnon-call-exceptions.
> > >
> > > But that has nothing to do with computing the value range for
> > > the result which is only accessible when the stmt does _not_ throw ...
> > >
> > > That is, if we compute non-VARYING here and because of that
> > > remove the stmt then _that's_ the place to fix (IMO)
> >
> > Ughh, I think you're both right.
> >
> > We should fix this upstream AND we should test for the presence of the
> > division by 0 in the optimized dump.
> >
> > Of course doing both opens a can of worms.  The division by zero can
> > be cleaned up by (at least) DCE, DSE, and the code sinking passes.
> > I've fixed all 3 in the attached (untested) patch.  Dunno what y'all
> > want to do at this point.
>
> I think you need to add -fno-delete-dead-exceptions to the testcase.
> The sinking
> bug looks real, but just
>
>          && (cfun->can_delete_dead_exceptions
>                 || !stmt_could_throw_p (cfun, stmt))
>
> is needed there.  That change is OK.

Did you mean the entire patch (as attached) is OK, or just the sink part?

Thanks.
Aldy
  
Richard Biener Nov. 30, 2021, 9 a.m. UTC | #6
On Tue, Nov 30, 2021 at 9:51 AM Aldy Hernandez <aldyh@redhat.com> wrote:
>
> On Tue, Nov 30, 2021 at 8:37 AM Richard Biener
> <richard.guenther@gmail.com> wrote:
> >
> > On Mon, Nov 29, 2021 at 4:24 PM Aldy Hernandez <aldyh@redhat.com> wrote:
> > >
> > > On Mon, Nov 29, 2021 at 3:48 PM Richard Biener
> > > <richard.guenther@gmail.com> wrote:
> > > >
> > > > On Mon, Nov 29, 2021 at 3:39 PM Jeff Law <jeffreyalaw@gmail.com> wrote:
> > > > >
> > > > >
> > > > >
> > > > > On 11/29/2021 7:00 AM, Aldy Hernandez via Gcc-patches wrote:
> > > > > > As discussed in the PR.  The code makes no difference, so whatever test
> > > > > > we added this special case for has been fixed or is being papered over.
> > > > > > I think we should fix any fall out upstream.
> > > > > >
> > > > > > [Unless Andrew can remember why we added this and it still applies.]
> > > > > >
> > > > > > Tested on x86-64 Linux.
> > > > > >
> > > > > > OK for trunk?
> > > > > >
> > > > > >       PR 103451
> > > > > >
> > > > > > gcc/ChangeLog:
> > > > > >
> > > > > >       * range-op.cc (operator_div::wi_fold): Remove
> > > > > >       can_throw_non_call_exceptions special case.
> > > > > >
> > > > > > gcc/testsuite/ChangeLog:
> > > > > >
> > > > > >       * gcc.dg/pr103451.c: New test.
> > > > > I'll defer to Andrew, but it seems wrong to me.  The whole point is to
> > > > > set the result to varying so that we don't know the result and never
> > > > > remove the division which is critical for -fnon-call-exceptions.
> > > >
> > > > But that has nothing to do with computing the value range for
> > > > the result which is only accessible when the stmt does _not_ throw ...
> > > >
> > > > That is, if we compute non-VARYING here and because of that
> > > > remove the stmt then _that's_ the place to fix (IMO)
> > >
> > > Ughh, I think you're both right.
> > >
> > > We should fix this upstream AND we should test for the presence of the
> > > division by 0 in the optimized dump.
> > >
> > > Of course doing both opens a can of worms.  The division by zero can
> > > be cleaned up by (at least) DCE, DSE, and the code sinking passes.
> > > I've fixed all 3 in the attached (untested) patch.  Dunno what y'all
> > > want to do at this point.
> >
> > I think you need to add -fno-delete-dead-exceptions to the testcase.
> > The sinking
> > bug looks real, but just
> >
> >          && (cfun->can_delete_dead_exceptions
> >                 || !stmt_could_throw_p (cfun, stmt))
> >
> > is needed there.  That change is OK.
>
> Did you mean the entire patch (as attached) is OK, or just the sink part?

The DCE and DSE parts are wrong and not needed.  The remaining pieces
are OK.

Thanks,
Richard.

> Thanks.
> Aldy
  
Aldy Hernandez Nov. 30, 2021, 9:04 a.m. UTC | #7
Will adjust, re-test and commit.

Thanks.
Aldy

On Tue, Nov 30, 2021 at 10:00 AM Richard Biener
<richard.guenther@gmail.com> wrote:
>
> On Tue, Nov 30, 2021 at 9:51 AM Aldy Hernandez <aldyh@redhat.com> wrote:
> >
> > On Tue, Nov 30, 2021 at 8:37 AM Richard Biener
> > <richard.guenther@gmail.com> wrote:
> > >
> > > On Mon, Nov 29, 2021 at 4:24 PM Aldy Hernandez <aldyh@redhat.com> wrote:
> > > >
> > > > On Mon, Nov 29, 2021 at 3:48 PM Richard Biener
> > > > <richard.guenther@gmail.com> wrote:
> > > > >
> > > > > On Mon, Nov 29, 2021 at 3:39 PM Jeff Law <jeffreyalaw@gmail.com> wrote:
> > > > > >
> > > > > >
> > > > > >
> > > > > > On 11/29/2021 7:00 AM, Aldy Hernandez via Gcc-patches wrote:
> > > > > > > As discussed in the PR.  The code makes no difference, so whatever test
> > > > > > > we added this special case for has been fixed or is being papered over.
> > > > > > > I think we should fix any fall out upstream.
> > > > > > >
> > > > > > > [Unless Andrew can remember why we added this and it still applies.]
> > > > > > >
> > > > > > > Tested on x86-64 Linux.
> > > > > > >
> > > > > > > OK for trunk?
> > > > > > >
> > > > > > >       PR 103451
> > > > > > >
> > > > > > > gcc/ChangeLog:
> > > > > > >
> > > > > > >       * range-op.cc (operator_div::wi_fold): Remove
> > > > > > >       can_throw_non_call_exceptions special case.
> > > > > > >
> > > > > > > gcc/testsuite/ChangeLog:
> > > > > > >
> > > > > > >       * gcc.dg/pr103451.c: New test.
> > > > > > I'll defer to Andrew, but it seems wrong to me.  The whole point is to
> > > > > > set the result to varying so that we don't know the result and never
> > > > > > remove the division which is critical for -fnon-call-exceptions.
> > > > >
> > > > > But that has nothing to do with computing the value range for
> > > > > the result which is only accessible when the stmt does _not_ throw ...
> > > > >
> > > > > That is, if we compute non-VARYING here and because of that
> > > > > remove the stmt then _that's_ the place to fix (IMO)
> > > >
> > > > Ughh, I think you're both right.
> > > >
> > > > We should fix this upstream AND we should test for the presence of the
> > > > division by 0 in the optimized dump.
> > > >
> > > > Of course doing both opens a can of worms.  The division by zero can
> > > > be cleaned up by (at least) DCE, DSE, and the code sinking passes.
> > > > I've fixed all 3 in the attached (untested) patch.  Dunno what y'all
> > > > want to do at this point.
> > >
> > > I think you need to add -fno-delete-dead-exceptions to the testcase.
> > > The sinking
> > > bug looks real, but just
> > >
> > >          && (cfun->can_delete_dead_exceptions
> > >                 || !stmt_could_throw_p (cfun, stmt))
> > >
> > > is needed there.  That change is OK.
> >
> > Did you mean the entire patch (as attached) is OK, or just the sink part?
>
> The DCE and DSE parts are wrong and not needed.  The remaining pieces
> are OK.
>
> Thanks,
> Richard.
>
> > Thanks.
> > Aldy
>
  

Patch

diff --git a/gcc/range-op.cc b/gcc/range-op.cc
index bbf2924f815..6fe5f1cb4e0 100644
--- a/gcc/range-op.cc
+++ b/gcc/range-op.cc
@@ -1832,13 +1832,6 @@  operator_div::wi_fold (irange &r, tree type,
       return;
     }
 
-  // If flag_non_call_exceptions, we must not eliminate a division by zero.
-  if (cfun->can_throw_non_call_exceptions)
-    {
-      r.set_varying (type);
-      return;
-    }
-
   // If we're definitely dividing by zero, there's nothing to do.
   if (wi_zero_p (type, divisor_min, divisor_max))
     {
diff --git a/gcc/testsuite/gcc.dg/pr103451.c b/gcc/testsuite/gcc.dg/pr103451.c
new file mode 100644
index 00000000000..b83646d0b83
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/pr103451.c
@@ -0,0 +1,17 @@ 
+// { dg-do compile }
+// { dg-options "-O2 -w" }
+
+int func_10_ptr_12;
+
+void func_10(long li_8) 
+{
+  long *ptr_9 = &li_8;
+  li_8 &= *ptr_9 / 0 ?: li_8;
+  for (;;)
+    func_10_ptr_12 &= 4 ? *ptr_9 : 4;
+}
+
+void func_9_s_8() 
+{ 
+  func_10(func_9_s_8); 
+}