]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
match.pd: Avoid (intptr_t)x eq/ne CST to x eq/ne (typeof x) CST opt in GENERIC when...
authorJakub Jelinek <jakub@redhat.com>
Tue, 29 Jun 2021 09:24:38 +0000 (11:24 +0200)
committerJakub Jelinek <jakub@redhat.com>
Tue, 29 Jun 2021 09:24:38 +0000 (11:24 +0200)
When we have (intptr_t) x == cst where x has REFERENCE_TYPE, this
optimization creates x == cst out of it where cst has REFERENCE_TYPE.
If it is done in GENERIC folding, it can results in ubsan failures
where the INTEGER_CST with REFERENCE_TYPE is instrumented.

Fixed by deferring it to GIMPLE folding in this case.

2021-06-29  Jakub Jelinek  <jakub@redhat.com>

PR c++/101210
* match.pd ((intptr_t)x eq/ne CST to x eq/ne (typeof x) CST): Don't
perform the optimization in GENERIC when sanitizing and x has a
reference type.

* g++.dg/ubsan/pr101210.C: New test.

gcc/match.pd
gcc/testsuite/g++.dg/ubsan/pr101210.C [new file with mode: 0644]

index 39fb57ee1f415edf693f254bf9003a46ad59b0c0..82052714e1c2f46f3eb4b2cf78ad79e50c562110 100644 (file)
@@ -5124,7 +5124,12 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
   (cmp (convert @0) INTEGER_CST@1)
   (if (((POINTER_TYPE_P (TREE_TYPE (@0))
         && !FUNC_OR_METHOD_TYPE_P (TREE_TYPE (TREE_TYPE (@0)))
-        && INTEGRAL_TYPE_P (TREE_TYPE (@1)))
+        && INTEGRAL_TYPE_P (TREE_TYPE (@1))
+        /* Don't perform this optimization in GENERIC if @0 has reference
+           type when sanitizing.  See PR101210.  */
+        && !(GENERIC
+             && TREE_CODE (TREE_TYPE (@0)) == REFERENCE_TYPE
+             && (flag_sanitize & (SANITIZE_NULL | SANITIZE_ALIGNMENT))))
        || (INTEGRAL_TYPE_P (TREE_TYPE (@0))
            && POINTER_TYPE_P (TREE_TYPE (@1))
            && !FUNC_OR_METHOD_TYPE_P (TREE_TYPE (TREE_TYPE (@1)))))
diff --git a/gcc/testsuite/g++.dg/ubsan/pr101210.C b/gcc/testsuite/g++.dg/ubsan/pr101210.C
new file mode 100644 (file)
index 0000000..955b820
--- /dev/null
@@ -0,0 +1,13 @@
+// PR c++/101210
+// { dg-do run }
+// { dg-options "-fsanitize=null,alignment -fno-sanitize-recover=null,alignment" }
+
+int v[2];
+int
+main ()
+{
+  int x;
+  int &y = x;
+  v[0] = reinterpret_cast<__INTPTR_TYPE__>(&y) == 0;
+  v[1] = reinterpret_cast<__INTPTR_TYPE__>(&y) == 1;
+}