public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Marc Glisse <marc.glisse@inria.fr>
To: Richard Biener <richard.guenther@gmail.com>
Cc: mcccs@gmx.com, GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: Fold more boolean expressions
Date: Thu, 20 Sep 2018 14:04:00 -0000	[thread overview]
Message-ID: <alpine.DEB.2.21.1809201556380.20729@stedding.saclay.inria.fr> (raw)
In-Reply-To: <CAFiYyc32MKJ_JBEaQcpKd_LsC8nD6Rgk3uFBg=Kn5tstosFFMg@mail.gmail.com>

On Thu, 20 Sep 2018, Richard Biener wrote:

> On Sat, Sep 15, 2018 at 8:01 AM MCC CS <mcccs@gmx.com> wrote:
>>
>> Sorry for doing the same mistake twice. Is this OK, and do
>> I need to test it again after the first version of this
>> patch?
>>
>> 2018-09-15 MCC CS <deswurstes@users.noreply.github.com>
>>
>>         gcc/
>>         PR tree-optimization/87261
>>         * match.pd: Add boolean optimizations,
>>         fix whitespace.
>>
>> 2018-09-15 MCC CS <deswurstes@users.noreply.github.com>
>>
>>         gcc/testsuite/
>>         PR tree-optimization/87261
>>         * gcc.dg/pr87261.c: New test.
>>
>> Index: gcc/match.pd
>> ===================================================================
>> --- gcc/match.pd        (revision 264170)
>> +++ gcc/match.pd        (working copy)
>> @@ -92,7 +92,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
>>    IFN_FMA IFN_FMS IFN_FNMA IFN_FNMS)
>>  (define_operator_list COND_TERNARY
>>    IFN_COND_FMA IFN_COND_FMS IFN_COND_FNMA IFN_COND_FNMS)
>> -
>> +
>>  /* As opposed to convert?, this still creates a single pattern, so
>>     it is not a suitable replacement for convert? in all cases.  */
>>  (match (nop_convert @0)
>> @@ -106,7 +106,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
>>        && tree_nop_conversion_p (TREE_TYPE (type), TREE_TYPE (TREE_TYPE (@0))))))
>>  /* This one has to be last, or it shadows the others.  */
>>  (match (nop_convert @0)
>> - @0)
>> + @0)
>>
>>  /* Transform likes of (char) ABS_EXPR <(int) x> into (char) ABSU_EXPR <x>
>>     ABSU_EXPR returns unsigned absolute value of the operand and the operand
>> @@ -285,7 +285,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
>>       And not for _Fract types where we can't build 1.  */
>>    (if (!integer_zerop (@0) && !ALL_FRACT_MODE_P (TYPE_MODE (type)))
>>     { build_one_cst (type); }))
>> - /* X / abs (X) is X < 0 ? -1 : 1.  */
>> + /* X / abs (X) is X < 0 ? -1 : 1.  */
>>   (simplify
>>     (div:C @0 (abs @0))
>>     (if (INTEGRAL_TYPE_P (type)
>> @@ -921,6 +921,31 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
>>    (bitop:c @0 (bit_not (bitop:cs @0 @1)))
>>    (bitop @0 (bit_not @1))))
>>
>> +/* (~x & y) | ~(x | y) -> ~x */
>> +(simplify
>> + (bit_ior:c (bit_and:c (bit_not@2 @0) @1) (bit_not (bit_ior:c @0 @1)))
>> + @2)
>> +
>> +/* (x | y) ^ (x | ~y) -> ~x */
>> +(simplify
>> + (bit_xor:c (bit_ior:c @0 @1) (bit_ior:c @0 (bit_not @1)))
>> + (bit_not @0))
>> +
>> +/* (x & y) | ~(x | y) -> ~(x ^ y) */
>> +(simplify
>> + (bit_ior:c (bit_and @0 @1) (bit_not:s (bit_ior:s @0 @1)))
>
> I think this misses :cs on the bit_and.

For :c, shouldn't canonicalization make the order of @0 and @1 consistent 
for bit_and and bit_ior?

>> + (bit_not (bit_xor @0 @1)))
>> +
>> +/* (~x | y) ^ (x ^ y) -> x | ~y */
>> +(simplify
>> + (bit_xor:c (bit_ior:cs (bit_not @0) @1) (bit_xor:c @0 @1))
>> + (bit_ior @0 (bit_not @1)))
>
> :s on the bit_xor
>
>> +/* (x ^ y) | ~(x | y) -> ~(x & y) */
>> +(simplify
>> + (bit_ior:c (bit_xor @0 @1) (bit_not:s (bit_ior @0 @1)))
>> + (bit_not (bit_and @0 @1)))
>
> :cs on the bit_xor, :s on the second bit_ior
>
> Otherwise looks OK to me.

-- 
Marc Glisse

  reply	other threads:[~2018-09-20 14:01 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-11 13:54 MCC CS
2018-09-11 21:24 ` Marc Glisse
2018-09-14 15:37   ` MCC CS
2018-09-14 16:55     ` Marc Glisse
2018-09-15  8:14       ` MCC CS
2018-09-20 13:34         ` Richard Biener
2018-09-20 14:04           ` Marc Glisse [this message]
2018-09-20 14:19             ` Richard Biener
2018-09-22  9:08           ` MCC CS
2018-09-16 17:20       ` MCC CS
2018-09-30 17:16 MCC CS
2018-10-01  8:39 ` Richard Biener
2018-10-02 14:01   ` MCC CS
2018-10-04  8:08     ` Richard Biener
2018-10-03  8:56 graham stott via gcc-patches

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=alpine.DEB.2.21.1809201556380.20729@stedding.saclay.inria.fr \
    --to=marc.glisse@inria.fr \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=mcccs@gmx.com \
    --cc=richard.guenther@gmail.com \
    /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).