public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Alexandre Oliva <aoliva@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc(refs/users/aoliva/heads/testme)] Optimize nonstandard boolean validity checking
Date: Thu, 27 Jan 2022 09:49:30 +0000 (GMT)	[thread overview]
Message-ID: <20220127094930.0F7C13947413@sourceware.org> (raw)

https://gcc.gnu.org/g:5f92aa1218d2171e4f479eafc95414561f7f4417

commit 5f92aa1218d2171e4f479eafc95414561f7f4417
Author: Alexandre Oliva <oliva@adacore.com>
Date:   Wed Dec 29 08:44:57 2021 -0300

    Optimize nonstandard boolean validity checking
    
    Validity checking of enumerations with nonstandard representation
    starts by checking the value range, then calling _rep_to_pos to verify
    that the value itself is valid. The value range check is thus
    redundant and inefficient: the _rep_to_pos call is normally inlined
    when optimizing for speed and the range check slows down the fast
    path; it is unnecesary and undesirable when optimizing for size, and
    just unnecessary when not optimizing. This patch thus drops the range
    check for nonstandard boolean types.
    
    
    [changelog]
    * exp_attr.adb (Expand_N_Attribute_Reference) <Attribute_Valid>: Drop
    redundant range check for nonstandard booleans.

Diff:
---
 gcc/ada/exp_attr.adb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gcc/ada/exp_attr.adb b/gcc/ada/exp_attr.adb
index 5374dd4d7e9..c31d7e06d45 100644
--- a/gcc/ada/exp_attr.adb
+++ b/gcc/ada/exp_attr.adb
@@ -7254,7 +7254,11 @@ package body Exp_Attr is
                       New_Occurrence_Of (Standard_False, Loc))),
                 Right_Opnd => Make_Integer_Literal (Loc, 0));
 
-            if Ptyp /= PBtyp
+            --  Skip the range test for boolean types, as it buys us
+            --  nothing. The function called above already fails for
+            --  values different from both True and False.
+
+            if Ptyp /= PBtyp and then not Is_Boolean_Type (PBtyp)
               and then
                 (Type_Low_Bound (Ptyp) /= Type_Low_Bound (PBtyp)
                   or else


             reply	other threads:[~2022-01-27  9:49 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-27  9:49 Alexandre Oliva [this message]
2022-05-06  7:18 Alexandre Oliva

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=20220127094930.0F7C13947413@sourceware.org \
    --to=aoliva@gcc.gnu.org \
    --cc=gcc-cvs@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).