diff options
author | Roger Sayle <roger@eyesopen.com> | 2002-05-10 22:24:13 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2002-05-10 22:24:13 +0000 |
commit | dbfb1116b34897645d29db19c7557348cd69d21b (patch) | |
tree | 8a995b794b7a305a3fea68fbd495596f5a3b2c15 /gcc/fold-const.c | |
parent | 79a497cd1dd6b3f6b0d9195bdbff2eb13c8919dd (diff) | |
download | gcc-dbfb1116b34897645d29db19c7557348cd69d21b.zip gcc-dbfb1116b34897645d29db19c7557348cd69d21b.tar.gz gcc-dbfb1116b34897645d29db19c7557348cd69d21b.tar.bz2 |
fold-const.c (build_range_check): Optimize (c>=1) && (c<=127) into the equivalent (signed char)c > 0.
* fold-const.c (build_range_check): Optimize (c>=1) && (c<=127)
into the equivalent (signed char)c > 0.
* gcc.c-torture/execute/20020510-1.c: New test case.
From-SVN: r53373
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 62 |
1 files changed, 47 insertions, 15 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 6b4982a..2a9f6c6 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -3091,41 +3091,73 @@ build_range_check (type, exp, in_p, low, high) tree low, high; { tree etype = TREE_TYPE (exp); - tree utype, value; + tree value; if (! in_p && (0 != (value = build_range_check (type, exp, 1, low, high)))) return invert_truthvalue (value); - else if (low == 0 && high == 0) + if (low == 0 && high == 0) return convert (type, integer_one_node); - else if (low == 0) + if (low == 0) return fold (build (LE_EXPR, type, exp, high)); - else if (high == 0) + if (high == 0) return fold (build (GE_EXPR, type, exp, low)); - else if (operand_equal_p (low, high, 0)) + if (operand_equal_p (low, high, 0)) return fold (build (EQ_EXPR, type, exp, low)); - else if (TREE_UNSIGNED (etype) && integer_zerop (low)) - return build_range_check (type, exp, 1, 0, high); + if (integer_zerop (low)) + { + if (! TREE_UNSIGNED (etype)) + { + etype = (*lang_hooks.types.unsigned_type) (etype); + high = convert (etype, high); + exp = convert (etype, exp); + } + return build_range_check (type, exp, 1, 0, high); + } - else if (integer_zerop (low)) + /* Optimize (c>=1) && (c<=127) into (signed char)c > 0. */ + if (integer_onep (low) && TREE_CODE (high) == INTEGER_CST) { - utype = (*lang_hooks.types.unsigned_type) (etype); - return build_range_check (type, convert (utype, exp), 1, 0, - convert (utype, high)); + unsigned HOST_WIDE_INT lo; + HOST_WIDE_INT hi; + int prec; + + prec = TYPE_PRECISION (etype); + if (prec <= HOST_BITS_PER_WIDE_INT) + { + hi = 0; + lo = ((unsigned HOST_WIDE_INT) 1 << (prec - 1)) - 1; + } + else + { + hi = ((HOST_WIDE_INT) 1 << (prec - HOST_BITS_PER_WIDE_INT - 1)) - 1; + lo = (unsigned HOST_WIDE_INT) -1; + } + + if (TREE_INT_CST_HIGH (high) == hi && TREE_INT_CST_LOW (high) == lo) + { + if (TREE_UNSIGNED (etype)) + { + etype = (*lang_hooks.types.signed_type) (etype); + exp = convert (etype, exp); + } + return fold (build (GT_EXPR, type, exp, + convert (etype, integer_zero_node))); + } } - else if (0 != (value = const_binop (MINUS_EXPR, high, low, 0)) - && ! TREE_OVERFLOW (value)) + if (0 != (value = const_binop (MINUS_EXPR, high, low, 0)) + && ! TREE_OVERFLOW (value)) return build_range_check (type, fold (build (MINUS_EXPR, etype, exp, low)), 1, convert (etype, integer_zero_node), value); - else - return 0; + + return 0; } /* Given two ranges, see if we can merge them into one. Return 1 if we |