From: Uros Bizjak <ubizjak@gmail.com>
To: Richard Guenther <rguenther@suse.de>
Cc: gcc-patches@gcc.gnu.org, uros@gcc.gnu.org, rth@redhat.com,
artyom.shinkaroff@gmail.com
Subject: Re: [PATCH] Change vcond<mode> to vcond<mode1><mode2>
Date: Mon, 29 Aug 2011 20:47:00 -0000 [thread overview]
Message-ID: <CAFULd4Y8vwEWHnuUkYOM5U-ccrp58FoXo7-td+KPrMMmx5FHJg@mail.gmail.com> (raw)
In-Reply-To: <alpine.LNX.2.00.1108291624180.2130@zhemvz.fhfr.qr>
On Mon, Aug 29, 2011 at 4:31 PM, Richard Guenther <rguenther@suse.de> wrote:
> This patch makes a conversion optab from the direct optabs vcond
> and vcondu. This allows to specify different modes for the
> actual comparison and the value that is selected.
>
> All targets but i386 are trivially converted by
> s/vcond<mode>/vcond<mode><mode>/. The i386 port is enhanced
> to support a OP b ? c : d as ({ mask = a OP b; (c & mask) | (d & ~mask);
> }), constraining it to what the middle-end constrained itself to
> (matching number of vector elements in the comparison operands with
> the result vector types) would explode patterns too much.
> Thus, only a subset of mode combinations will be excercised
> (but none at the moment - a followup will fix the vectorizer,
> and generic vectors from the C extensions have a patch pending).
>
> Bootstrapped on x86_64-unknown-linux-gnu, tests are currently
> running for {,-m32}.
>
> Ok if that succeeds?
>
> Thanks,
> Richard.
>
> 2011-08-29 Richard Guenther <rguenther@suse.de>
>
> * genopinit.c (optabs): Turn vcond{,u}_optab into a conversion
> optab with two modes.
> * optabs.h (enum convert_optab_index): Add COI_vcond, COI_vcondu.
> (enum direct_optab_index): Remove DOI_vcond, DOI_vcondu.
> (vcond_optab): Adjust.
> (vcondu_optab): Likewise.
> (expand_vec_cond_expr_p): Adjust prototype.
> * optabs.c (get_vcond_icode): Adjust.
> (expand_vec_cond_expr_p): Likewise.
> (expand_vec_cond_expr): Likewise.
> * tree-vect-stmt.c (vectorizable_condition): Adjust.
>
> * config/i386/sse.md (vcond<mode>): Split to
> vcond<V_256:mode><VF_256:mode>, vcond<V_128:mode><VF_128:mode>,
> vcond<V_128:mode><VI124_128:mode> and
> vcondu<V_128:mode><VI124_128:mode>.
> (vcondv2di): Change to vcond<VI8F_128:mode>v2di.
> (vconduv2di): Likewise.
> * config/arm/neon.md (vcond<mode>): Change to vcond*<mode><mode>.
> (vcondu<mode>): Likewise.
> * config/ia64/vect.md (vcond<mode>): Likewise.
> (vcondu<mode>): Likewise.
> (vcondv2sf): Likewise.
> * config/mips/mips-ps-3d.md (vcondv2sf): Likewise.
> * config/rs6000/paired.md (vcondv2sf): Likewise.
> * config/rs6000/vector.md (vcond<mode>): Likewise.
> (vcondu<mode>): Likewise.
> * config/spu/spu.md (vcond<mode>): Likewise.
> (vcondu<mode>): Likewise.
Do we really want to introduce stuff like:
! (define_expand "vcond<V_128:mode><VF_128:mode>"
You are in fact introducing 6x2 = 12 patterns, many of them (i.e.
v16qiv2df combination) invalid.
I'd prefer a pattern with mode-less operands 4 and 5, rejected in insn
constraints for invalid combinations:
(define_expand "vcond<mode>"
[(set (match_operand:VI124_128 0 "register_operand" "")
(if_then_else:VI124_128
(match_operator 3 ""
[(match_operand 4 "nonimmediate_operand" "")
(match_operand 5 "nonimmediate_operand" "")])
(match_operand:VI124_128 1 "general_operand" "")
(match_operand:VI124_128 2 "general_operand" "")))]
"TARGET_SSE && (... some constraint involving modes of op4 and op5 ...)"
We could also introduce VI1248_128 with conditional V2DImode for ops 0, 1 and 2:
(define_mode_iterator VI1248_128 [V16QI V8HI V4SI (V2DI "TARGET_SSE4_2")])
Uros.
next prev parent reply other threads:[~2011-08-29 18:45 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-29 15:08 Richard Guenther
2011-08-29 16:36 ` Richard Guenther
2011-08-29 20:47 ` Uros Bizjak [this message]
2011-08-29 21:05 ` Richard Guenther
2011-08-30 9:00 ` Uros Bizjak
2011-08-30 9:19 ` Richard Guenther
2011-08-30 9:24 ` Uros Bizjak
2011-08-30 9:29 ` Jakub Jelinek
2011-08-30 9:39 ` Richard Guenther
2011-08-30 9:42 ` Uros Bizjak
2011-08-30 10:17 ` Richard Guenther
2011-08-30 10:48 ` Uros Bizjak
2011-08-30 11:59 ` Richard Guenther
2011-08-30 12:11 ` Richard Guenther
2011-09-02 9:44 ` Richard Guenther
2011-09-02 12:19 ` Uros Bizjak
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=CAFULd4Y8vwEWHnuUkYOM5U-ccrp58FoXo7-td+KPrMMmx5FHJg@mail.gmail.com \
--to=ubizjak@gmail.com \
--cc=artyom.shinkaroff@gmail.com \
--cc=gcc-patches@gcc.gnu.org \
--cc=rguenther@suse.de \
--cc=rth@redhat.com \
--cc=uros@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).