c-ubsan.c (ubsan_instrument_division): Remove unnecessary code.
authorMarek Polacek <polacek@redhat.com>
Fri, 25 Sep 2015 11:19:11 +0000 (11:19 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Fri, 25 Sep 2015 11:19:11 +0000 (11:19 +0000)
* c-ubsan.c (ubsan_instrument_division): Remove unnecessary code.
(ubsan_instrument_shift): Likewise.

* c-c++-common/ubsan/bounds-11.c: New test.
* c-c++-common/ubsan/bounds-12.c: New test.

From-SVN: r228114

gcc/c-family/ChangeLog
gcc/c-family/c-ubsan.c
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/ubsan/bounds-11.c [new file with mode: 0644]
gcc/testsuite/c-c++-common/ubsan/bounds-12.c [new file with mode: 0644]

index b9feff6e55cffc2cd00a73d2b42dff3404e298e3..32d0d2575dc55fb32745eabd43012b398c8a29bd 100644 (file)
@@ -1,3 +1,8 @@
+2015-09-25  Marek Polacek  <polacek@redhat.com>
+
+       * c-ubsan.c (ubsan_instrument_division): Remove unnecessary code.
+       (ubsan_instrument_shift): Likewise.
+
 2015-09-25  Marek Polacek  <polacek@redhat.com>
 
        PR sanitizer/64906
index d2bc264f632ffeba0fab9615b50f7b30d6e76f67..672762c2aa0ab3753b1e6b9be157ec26a83510fb 100644 (file)
@@ -89,20 +89,7 @@ ubsan_instrument_division (location_t loc, tree op0, tree op1)
     return NULL_TREE;
 
   /* In case we have a SAVE_EXPR in a conditional context, we need to
-     make sure it gets evaluated before the condition.  If the OP0 is
-     an instrumented array reference, mark it as having side effects so
-     it's not folded away.  */
-  if (flag_sanitize & SANITIZE_BOUNDS)
-    {
-      tree xop0 = op0;
-      while (CONVERT_EXPR_P (xop0))
-       xop0 = TREE_OPERAND (xop0, 0);
-      if (TREE_CODE (xop0) == ARRAY_REF)
-       {
-         TREE_SIDE_EFFECTS (xop0) = 1;
-         TREE_SIDE_EFFECTS (op0) = 1;
-       }
-    }
+     make sure it gets evaluated before the condition.  */
   t = fold_build2 (COMPOUND_EXPR, TREE_TYPE (t), unshare_expr (op0), t);
   t = fold_build2 (COMPOUND_EXPR, TREE_TYPE (t), unshare_expr (op1), t);
   if (flag_sanitize_undefined_trap_on_error)
@@ -187,20 +174,7 @@ ubsan_instrument_shift (location_t loc, enum tree_code code,
     return NULL_TREE;
 
   /* In case we have a SAVE_EXPR in a conditional context, we need to
-     make sure it gets evaluated before the condition.  If the OP0 is
-     an instrumented array reference, mark it as having side effects so
-     it's not folded away.  */
-  if (flag_sanitize & SANITIZE_BOUNDS)
-    {
-      tree xop0 = op0;
-      while (CONVERT_EXPR_P (xop0))
-       xop0 = TREE_OPERAND (xop0, 0);
-      if (TREE_CODE (xop0) == ARRAY_REF)
-       {
-         TREE_SIDE_EFFECTS (xop0) = 1;
-         TREE_SIDE_EFFECTS (op0) = 1;
-       }
-    }
+     make sure it gets evaluated before the condition.  */
   t = fold_build2 (COMPOUND_EXPR, TREE_TYPE (t), unshare_expr (op0), t);
   t = fold_build2 (TRUTH_OR_EXPR, boolean_type_node, t,
                   tt ? tt : integer_zero_node);
index cfa23c659b85bc4594c666c44aac2a2280187f04..ee4661ac6b9cdcc840ba894abcf6cdaa97aa483a 100644 (file)
@@ -1,3 +1,8 @@
+2015-09-25  Marek Polacek  <polacek@redhat.com>
+
+       * c-c++-common/ubsan/bounds-11.c: New test.
+       * c-c++-common/ubsan/bounds-12.c: New test.
+
 2015-09-25  Marek Polacek  <polacek@redhat.com>
 
        PR sanitizer/64906
diff --git a/gcc/testsuite/c-c++-common/ubsan/bounds-11.c b/gcc/testsuite/c-c++-common/ubsan/bounds-11.c
new file mode 100644 (file)
index 0000000..c3e0f22
--- /dev/null
@@ -0,0 +1,23 @@
+/* { dg-do run } */
+/* { dg-options "-fsanitize=bounds" } */
+
+struct S
+{
+  unsigned long a[1];
+  int l;
+};
+
+static inline unsigned long
+fn (const struct S *s, int i)
+{
+  return s->a[i] / i;
+}
+
+int
+main ()
+{
+  struct S s;
+  fn (&s, 1);
+}
+
+/* { dg-output "index 1 out of bounds for type 'long unsigned int \\\[1\\\]'" } */
diff --git a/gcc/testsuite/c-c++-common/ubsan/bounds-12.c b/gcc/testsuite/c-c++-common/ubsan/bounds-12.c
new file mode 100644 (file)
index 0000000..3cd3a4a
--- /dev/null
@@ -0,0 +1,23 @@
+/* { dg-do run } */
+/* { dg-options "-fsanitize=bounds" } */
+
+struct S
+{
+  unsigned long a[1];
+  int l;
+};
+
+static inline unsigned long
+fn (const struct S *s, int i)
+{
+  return s->a[i] << i;
+}
+
+int
+main ()
+{
+  struct S s;
+  fn (&s, 1);
+}
+
+/* { dg-output "index 1 out of bounds for type 'long unsigned int \\\[1\\\]'" } */