+2019-12-05 Richard Sandiford <richard.sandiford@arm.com>
+
+ PR middle-end/92768
+ * tree-core.h (OEP_BITWISE): New flag.
+ * fold-const.c (operand_compare::operand_equal_p): Handle it.
+ * tree-vector-builder.h (tree_vector_builder::equal_p): Pass it.
+
2019-12-05 Richard Biener <rguenther@suse.de>
PR middle-end/92818
If OEP_LEXICOGRAPHIC is set, then also handle expressions with side-effects
such as MODIFY_EXPR, RETURN_EXPR, as well as STATEMENT_LISTs.
+ If OEP_BITWISE is set, then require the values to be bitwise identical
+ rather than simply numerically equal. Do not take advantage of things
+ like math-related flags or undefined behavior; only return true for
+ values that are provably bitwise identical in all circumstances.
+
Unless OEP_MATCH_SIDE_EFFECTS is set, the function returns false on
any operand with side effect. This is unnecesarily conservative in the
case we know that arg0 and arg1 are in disjoint code paths (such as in
if (!TREE_TYPE (arg0) || !TREE_TYPE (arg1))
return false;
+ /* Bitwise identity makes no sense if the values have different layouts. */
+ if ((flags & OEP_BITWISE)
+ && !tree_nop_conversion_p (TREE_TYPE (arg0), TREE_TYPE (arg1)))
+ return false;
+
/* We cannot consider pointers to different address space equal. */
if (POINTER_TYPE_P (TREE_TYPE (arg0))
&& POINTER_TYPE_P (TREE_TYPE (arg1))
if (real_identical (&TREE_REAL_CST (arg0), &TREE_REAL_CST (arg1)))
return true;
-
- if (!HONOR_SIGNED_ZEROS (arg0))
+ if (!(flags & OEP_BITWISE) && !HONOR_SIGNED_ZEROS (arg0))
{
/* If we do not distinguish between signed and unsigned zero,
consider them equal. */
break;
}
- if (flags & OEP_ONLY_CONST)
+ /* Don't handle more cases for OEP_BITWISE, since we can't guarantee that
+ two instances of undefined behavior will give identical results. */
+ if (flags & (OEP_ONLY_CONST | OEP_BITWISE))
return false;
/* Define macros to test an operand from arg0 and arg1 for equality and a
--- /dev/null
+/* { dg-options "-O2 -fno-signed-zeros -fdump-tree-optimized" } */
+
+typedef float v4sf __attribute__((vector_size(16)));
+v4sf f () { return (v4sf) { 0.0, -0.0, 0.0, -0.0 }; }
+
+/* { dg-final { scan-tree-dump {{ 0\.0, -0\.0, 0\.0, -0\.0 }} "optimized" } } */
inline bool
tree_vector_builder::equal_p (const_tree elt1, const_tree elt2) const
{
- return operand_equal_p (elt1, elt2, 0);
+ return operand_equal_p (elt1, elt2, OEP_BITWISE);
}
/* Return true if a stepped representation is OK. We don't allow