From: Richard Biener <richard.guenther@gmail.com>
To: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Cc: Andrew Carlotti <andrew.carlotti@arm.com>, gcc-patches@gcc.gnu.org
Subject: Re: [PATCH 5/8 v2] middle-end: Add cltz_complement idiom recognition
Date: Thu, 19 Jan 2023 10:43:23 +0100 [thread overview]
Message-ID: <CAFiYyc0c1twYuF=E6--Ch90aRSfeEA2snT+ae9v=D8kci_H-wg@mail.gmail.com> (raw)
In-Reply-To: <20230119091912.4qrqkw3fjmh5xlgk@lug-owl.de>
On Thu, Jan 19, 2023 at 10:19 AM Jan-Benedict Glaw <jbglaw@lug-owl.de> wrote:
>
> On Thu, 2022-12-22 17:42:16 +0000, Andrew Carlotti via Gcc-patches <gcc-patches@gcc.gnu.org> wrote:
> > New patch below, bootstrapped and regression tested on
> > aarch64-unknown-linux-gnu and x86_64-pc-linux-gnu - ok to merge?
>
> > diff --git a/gcc/tree-ssa-loop-niter.cc b/gcc/tree-ssa-loop-niter.cc
> > index fece876099c1687569d6351e7d2416ea6acae5b5..ce2441f2a6dbdf2d8fe42755d5d1abd8a631bb5c 100644
> > --- a/gcc/tree-ssa-loop-niter.cc
> > +++ b/gcc/tree-ssa-loop-niter.cc
> > @@ -42,6 +42,7 @@ along with GCC; see the file COPYING3. If not see
> > #include "tree-chrec.h"
> > #include "tree-scalar-evolution.h"
> > #include "tree-dfa.h"
> > +#include "internal-fn.h"
> > #include "gimple-range.h"
> >
> >
> > @@ -2198,6 +2199,224 @@ number_of_iterations_popcount (loop_p loop, edge exit,
> > return true;
> > }
> >
> > +/* Return an expression that counts the leading/trailing zeroes of src.
> > +
> > + If define_at_zero is true, then the built expression will be defined to
> > + return the precision of src when src == 0 (using either a conditional
> > + expression or a suitable internal function).
> > + Otherwise, we can elide the conditional expression and let src = 0 invoke
> > + undefined behaviour. */
> > +
> > +static tree
> > +build_cltz_expr (tree src, bool leading, bool define_at_zero)
> > +{
> [...]
> > +
> > + tree call;
> > + if (use_ifn)
> > + {
> > + call = build_call_expr_internal_loc (UNKNOWN_LOCATION, ifn,
> > + integer_type_node, 1, src);
> > + int val;
> > + scalar_int_mode mode = SCALAR_INT_TYPE_MODE (utype);
> ^^^^^^^^^^^^^^^^^^^^
>
> This will give us a new unused variable warning.
I wonder if hardening the defaults.h macros like
#define CLZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) (((MODE), (VALUE)), 0)
fixes that and makes sense (also to avoid losing side-effects for the arguments)
Richard.
> > + int optab_defined_at_zero
> > + = leading ? CLZ_DEFINED_VALUE_AT_ZERO (mode, val)
> > + : CTZ_DEFINED_VALUE_AT_ZERO (mode, val);
> > + if (define_at_zero && !(optab_defined_at_zero == 2 && val == prec))
> > + {
> > + tree is_zero = fold_build2 (NE_EXPR, boolean_type_node, src,
> > + build_zero_cst (TREE_TYPE (src)));
> > + call = fold_build3(COND_EXPR, integer_type_node, is_zero, call,
> > + build_int_cst (integer_type_node, prec));
> > + }
> > + }
>
> MfG, JBG
>
> --
next prev parent reply other threads:[~2023-01-19 9:43 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-11 13:29 [PATCH 0/8] middle-end: Popcount and clz/ctz idiom recognition improvements Andrew Carlotti
2022-11-11 13:39 ` [PATCH 0/8] middle-end: Ensure at_stmt is defined before an early exit Andrew Carlotti
2022-11-14 14:23 ` Jeff Law
2022-11-11 13:46 ` [PATCH 2/8] middle-end: Remove prototype for number_of_iterations_popcount Andrew Carlotti
2022-11-14 14:24 ` Jeff Law
2022-11-11 13:52 ` [PATCH 3/8] middle-end: Refactor number_of_iterations_popcount Andrew Carlotti
2022-11-14 14:52 ` Richard Biener
2022-11-11 18:43 ` [PATCH 4/8] Modify test, to prevent the next patch breaking it Andrew Carlotti
2022-11-14 10:18 ` Richard Biener
2022-11-11 18:50 ` [PATCH 5/8] middle-end: Add cltz_complement idiom recognition Andrew Carlotti
2022-11-14 15:10 ` Richard Biener
2022-11-21 15:53 ` Andrew Carlotti
2022-11-24 10:41 ` Richard Biener
2022-12-22 17:42 ` [PATCH 5/8 v2] " Andrew Carlotti
2023-01-12 13:19 ` Richard Biener
2023-01-19 9:19 ` Jan-Benedict Glaw
2023-01-19 9:43 ` Richard Biener [this message]
2022-11-11 18:54 ` [PATCH 6/8] docs: Add popcount, clz and ctz target attributes Andrew Carlotti
2022-11-14 14:52 ` Jeff Law
2022-12-22 17:42 ` [PATCH 6/8 v2] " Andrew Carlotti
2022-11-11 19:01 ` [PATCH 7/8] middle-end: Add c[lt]z idiom recognition Andrew Carlotti
2022-11-14 15:22 ` Richard Biener
2022-11-11 19:07 ` [PATCH 8/8] middle-end: Expand comment for tree_niter_desc.max Andrew Carlotti
2022-11-14 14:51 ` Jeff Law
2022-12-22 17:43 ` [PATCH 9/8] middle-end: Allow build_popcount_expr to use an IFN Andrew Carlotti
2023-01-12 13:20 ` Richard Biener
2023-01-16 14:03 ` Andrew Carlotti
2023-01-16 14:07 ` Andrew Carlotti
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='CAFiYyc0c1twYuF=E6--Ch90aRSfeEA2snT+ae9v=D8kci_H-wg@mail.gmail.com' \
--to=richard.guenther@gmail.com \
--cc=andrew.carlotti@arm.com \
--cc=gcc-patches@gcc.gnu.org \
--cc=jbglaw@lug-owl.de \
/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).