public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Biener <richard.guenther@gmail.com>
To: Aldy Hernandez <aldyh@redhat.com>
Cc: GCC patches <gcc-patches@gcc.gnu.org>,
	Andrew MacLeod <amacleod@redhat.com>
Subject: Re: [PATCH] Pass correct type to irange::contains_p() in ipa-cp.cc.
Date: Mon, 24 Apr 2023 14:35:53 +0200	[thread overview]
Message-ID: <CAFiYyc15GXJY3PC5s0kJML2nzZA-qj-sU+sasneqcRGeGuX3Fg@mail.gmail.com> (raw)
In-Reply-To: <e81ecd45-8d17-7760-0fdd-fa17703510f9@redhat.com>

On Mon, Apr 24, 2023 at 2:32 PM Aldy Hernandez <aldyh@redhat.com> wrote:
>
>
>
> On 4/24/23 14:10, Richard Biener wrote:
> > On Mon, Apr 24, 2023 at 1:51 PM Aldy Hernandez <aldyh@redhat.com> wrote:
> >>
> >>
> >>
> >> On 4/24/23 10:30, Richard Biener wrote:
> >>> On Mon, Apr 24, 2023 at 9:44 AM Aldy Hernandez via Gcc-patches
> >>> <gcc-patches@gcc.gnu.org> wrote:
> >>>>
> >>>> There is a call to contains_p() in ipa-cp.cc which passes incompatible
> >>>> types.  This currently works because deep in the call chain, the legacy
> >>>> code uses tree_int_cst_lt which performs the operation with
> >>>> widest_int.  With the upcoming removal of legacy, contains_p() will be
> >>>> stricter.
> >>>>
> >>>> OK pending tests?
> >>>>
> >>>> gcc/ChangeLog:
> >>>>
> >>>>           * ipa-cp.cc (ipa_range_contains_p): New.
> >>>>           (decide_whether_version_node): Use it.
> >>>> ---
> >>>>    gcc/ipa-cp.cc | 16 +++++++++++++++-
> >>>>    1 file changed, 15 insertions(+), 1 deletion(-)
> >>>>
> >>>> diff --git a/gcc/ipa-cp.cc b/gcc/ipa-cp.cc
> >>>> index b3e0f62e400..c8013563796 100644
> >>>> --- a/gcc/ipa-cp.cc
> >>>> +++ b/gcc/ipa-cp.cc
> >>>> @@ -6180,6 +6180,19 @@ decide_about_value (struct cgraph_node *node, int index, HOST_WIDE_INT offset,
> >>>>      return true;
> >>>>    }
> >>>>
> >>>> +/* Like irange::contains_p(), but convert VAL to the range of R if
> >>>> +   necessary.  */
> >>>> +
> >>>> +static inline bool
> >>>> +ipa_range_contains_p (const irange &r, tree val)
> >>>> +{
> >>>> +  if (r.undefined_p ())
> >>>> +    return false;
> >>>> +
> >>>> +  val = fold_convert (r.type (), val);
> >>>
> >>> I think that's wrong, it might truncate 'val'.  I think we'd want
> >>>
> >>>      if (r.undefined_p () || !int_fits_type_p (val, r.type ()))
> >>>        return false;
> >>
> >> This won't work for pointers.  Is there a suitable version that handles
> >> pointers as well?
> >
> > Where does it not work?  And when do you get pointer values/types
> > where they mismatch sufficiently (how?) to make ranger unhappy?
> >
>
> It's not ranger that's unhappy, this is just irange::contains_p().
>
> IPA works on both integers and pointers, and pointers don't have
> TYPE_MIN/MAX_VALUE defined, so we ICE in int_fits_type_p:
>
>    type_low_bound = TYPE_MIN_VALUE (type);
>    type_high_bound = TYPE_MAX_VALUE (type);

Ah.  The code handles NULL TYPE_MIN/MAX_VALUE just fine so
I wonder if it works to change the above to

   type_low_bound = INTEGRAL_TYPE_P (type) ? TYPE_MIN_VALUE (type) : NULL_TREE;
...

alternatively you could use wi::fits_to_tree_p (wi::to_wide (val),
type) from the IPA code.

Richard.

  reply	other threads:[~2023-04-24 12:37 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-24  7:43 Aldy Hernandez
2023-04-24  8:30 ` Richard Biener
2023-04-24 11:51   ` Aldy Hernandez
2023-04-24 12:10     ` Richard Biener
2023-04-24 12:32       ` Aldy Hernandez
2023-04-24 12:35         ` Richard Biener [this message]
2023-04-24 17:17           ` Aldy Hernandez
2023-04-25  7:19             ` Richard Biener

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAFiYyc15GXJY3PC5s0kJML2nzZA-qj-sU+sasneqcRGeGuX3Fg@mail.gmail.com \
    --to=richard.guenther@gmail.com \
    --cc=aldyh@redhat.com \
    --cc=amacleod@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).