public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/101145] niter analysis fails for until-wrap condition
Date: Wed, 25 Aug 2021 08:39:11 +0000	[thread overview]
Message-ID: <bug-101145-4-H7ck0MNnBj@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-101145-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #9 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jiu Fu Guo <guojiufu@gcc.gnu.org>:

https://gcc.gnu.org/g:3673dcf6d6baeb67bb70ff03d4cb3f92beed0075

commit r12-3136-g3673dcf6d6baeb67bb70ff03d4cb3f92beed0075
Author: Jiufu Guo <guojiufu@linux.ibm.com>
Date:   Wed Jul 7 13:41:01 2021 +0800

    Analyze niter for until-wrap condition [PR101145]

    For code like:
    unsigned foo(unsigned val, unsigned start)
    {
      unsigned cnt = 0;
      for (unsigned i = start; i > val; ++i)
        cnt++;
      return cnt;
    }

    The number of iterations should be about UINT_MAX - start.

    There is function adjust_cond_for_loop_until_wrap which
    handles similar work for const bases.
    Like adjust_cond_for_loop_until_wrap, this patch enhance
    function number_of_iterations_cond/number_of_iterations_lt
    to analyze number of iterations for this kind of loop.

    gcc/ChangeLog:

    2021-08-25  Jiufu Guo  <guojiufu@linux.ibm.com>

            PR tree-optimization/101145
            * tree-ssa-loop-niter.c (number_of_iterations_until_wrap):
            New function.
            (number_of_iterations_lt): Invoke above function.
            (adjust_cond_for_loop_until_wrap):
            Merge to number_of_iterations_until_wrap.
            (number_of_iterations_cond): Update invokes for
            adjust_cond_for_loop_until_wrap and number_of_iterations_lt.

    gcc/testsuite/ChangeLog:

    2021-08-25  Jiufu Guo  <guojiufu@linux.ibm.com>

            PR tree-optimization/101145
            * gcc.dg/vect/pr101145.c: New test.
            * gcc.dg/vect/pr101145.inc: New test.
            * gcc.dg/vect/pr101145_1.c: New test.
            * gcc.dg/vect/pr101145_2.c: New test.
            * gcc.dg/vect/pr101145_3.c: New test.
            * gcc.dg/vect/pr101145inf.c: New test.
            * gcc.dg/vect/pr101145inf.inc: New test.
            * gcc.dg/vect/pr101145inf_1.c: New test.

  parent reply	other threads:[~2021-08-25  8:39 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-21  8:59 [Bug tree-optimization/101145] New: " rguenth at gcc dot gnu.org
2021-06-21  9:02 ` [Bug tree-optimization/101145] " rguenth at gcc dot gnu.org
2021-06-24 15:39 ` amker at gcc dot gnu.org
2021-06-25  1:28 ` guojiufu at gcc dot gnu.org
2021-06-25  1:34 ` amker at gcc dot gnu.org
2021-06-25 10:13 ` guojiufu at gcc dot gnu.org
2021-06-25 12:24 ` guojiufu at gcc dot gnu.org
2021-06-26  2:53 ` amker at gcc dot gnu.org
2021-07-01  3:42 ` guojiufu at gcc dot gnu.org
2021-08-25  8:39 ` cvs-commit at gcc dot gnu.org [this message]
2021-08-31 13:27 ` cvs-commit at gcc dot gnu.org
2021-09-17 10:01 ` marxin at gcc dot gnu.org
2021-12-01 19:59 ` cvs-commit at gcc dot gnu.org

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=bug-101145-4-H7ck0MNnBj@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@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).