aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.cc
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2022-12-23 16:12:21 +0100
committerJakub Jelinek <jakub@redhat.com>2022-12-23 16:12:21 +0100
commitfd1b0aefda5b65f3f841ca6e61ccea6a72daa060 (patch)
treec0c08e3cb221571f2716170b5d6716e5f1eeba48 /gcc/tree.cc
parentbd1fc4a219d8c0fad0ec41002e895b49e384c1c2 (diff)
downloadgcc-fd1b0aefda5b65f3f841ca6e61ccea6a72daa060.zip
gcc-fd1b0aefda5b65f3f841ca6e61ccea6a72daa060.tar.gz
gcc-fd1b0aefda5b65f3f841ca6e61ccea6a72daa060.tar.bz2
tree-ssa-dom: can_infer_simple_equiv fixes [PR108068]
As reported in the PR, tree-ssa-dom.cc uses real_zerop call to find if a floating point constant is zero and it shouldn't try to infer equivalences from comparison against it if signed zeros are honored. This doesn't work at all for decimal types, because real_zerop always returns false for them (one can have different representations of decimal zero beyond -0/+0), and it doesn't work for vector compares either, as real_zerop checks if all elements are zero, while we need to avoid infering equivalences from comparison against vector constants which have at least one zero element in it (if signed zeros are honored). Furthermore, as mentioned by Joseph, for decimal types many other values aren't singleton. So, this patch stops infering anything if element mode is decimal, and otherwise uses instead of real_zerop a new function, real_maybe_zerop, which will work even for decimal types and for complex or vector will return true if any element is or might be zero (so it returns true for anything but constants for now). 2022-12-23 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/108068 * tree.h (real_maybe_zerop): Declare. * tree.cc (real_maybe_zerop): Define. * tree-ssa-dom.cc (record_edge_info): Use it instead of real_zerop or TREE_CODE (op1) == SSA_NAME || real_zerop. Always set can_infer_simple_equiv to false for decimal floating point types. * gcc.dg/dfp/pr108068.c: New test.
Diffstat (limited to 'gcc/tree.cc')
-rw-r--r--gcc/tree.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/gcc/tree.cc b/gcc/tree.cc
index 581d448..6b3273e 100644
--- a/gcc/tree.cc
+++ b/gcc/tree.cc
@@ -3180,6 +3180,35 @@ real_minus_onep (const_tree expr)
}
}
+/* Return true if T could be a floating point zero. */
+
+bool
+real_maybe_zerop (const_tree expr)
+{
+ switch (TREE_CODE (expr))
+ {
+ case REAL_CST:
+ /* Can't use real_zerop here, as it always returns false for decimal
+ floats. And can't use TREE_REAL_CST (expr).cl == rvc_zero
+ either, as decimal zeros are rvc_normal. */
+ return real_equal (&TREE_REAL_CST (expr), &dconst0);
+ case COMPLEX_CST:
+ return (real_maybe_zerop (TREE_REALPART (expr))
+ || real_maybe_zerop (TREE_IMAGPART (expr)));
+ case VECTOR_CST:
+ {
+ unsigned count = vector_cst_encoded_nelts (expr);
+ for (unsigned int i = 0; i < count; ++i)
+ if (real_maybe_zerop (VECTOR_CST_ENCODED_ELT (expr, i)))
+ return true;
+ return false;
+ }
+ default:
+ /* Perhaps for SSA_NAMEs we could query frange. */
+ return true;
+ }
+}
+
/* Nonzero if EXP is a constant or a cast of a constant. */
bool