public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/aoliva/heads/hard12)] Optimize nonstandard boolean validity checking
@ 2022-05-06  8:37 Alexandre Oliva
  0 siblings, 0 replies; only message in thread
From: Alexandre Oliva @ 2022-05-06  8:37 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:4b43b3adb9ad760f4266ade92bf2d8d64cc520a9

commit 4b43b3adb9ad760f4266ade92bf2d8d64cc520a9
Author: Alexandre Oliva <oliva@adacore.com>
Date:   Fri May 6 05:34:15 2022 -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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-05-06  8:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-06  8:37 [gcc(refs/users/aoliva/heads/hard12)] Optimize nonstandard boolean validity checking Alexandre Oliva

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).