public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/67328] range test rather than single bit test for code testing enum values
Date: Tue, 25 Aug 2015 13:09:00 -0000	[thread overview]
Message-ID: <bug-67328-4-5qQf7Py4aX@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-67328-4@http.gcc.gnu.org/bugzilla/>

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

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW

--- Comment #3 from Alan Modra <amodra at gmail dot com> ---
Maybe adding #if ALT only confused the issue.  For -UALT -O1 on x86_64 I get

test_pic:
        testb   $1, (%rdi)
        je      .L1
        addl    $1, result(%rip)
.L1:
        rep ret

test_exe:
        movzbl  (%rdi), %eax
        andl    $3, %eax
        cmpb    $1, %al
        ja      .L3
        addl    $1, result(%rip)
.L3:
        rep ret

For test_exe I would like to see the following equivalent and better optimised
code.

test_exe:
        testb   $2, (%rdi)
        jne     .L3
        addl    $1, result(%rip)
.L3:
        rep ret

The optimisation to a bit test for test_pic happens in reassoc1, or at least
that's where the process starts.


      parent reply	other threads:[~2015-08-25 13:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-23 13:41 [Bug tree-optimization/67328] New: " amodra at gmail dot com
2015-08-23 13:45 ` [Bug tree-optimization/67328] " amodra at gmail dot com
2015-08-25  8:38 ` rguenth at gcc dot gnu.org
2015-08-25 13:09 ` amodra at gmail dot com [this message]

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-67328-4-5qQf7Py4aX@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).