re PR sanitizer/81275 (-fsanitize=thread produce incorrect -Wreturn-type warning)
authorJakub Jelinek <jakub@redhat.com>
Tue, 28 Nov 2017 21:22:52 +0000 (22:22 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 28 Nov 2017 21:22:52 +0000 (22:22 +0100)
PR sanitizer/81275
* tree.c (block_may_fallthru): Return false if SWITCH_ALL_CASES_P
is set on SWITCH_EXPR and !block_may_fallthru (SWITCH_BODY ()).
c/
* c-typeck.c (c_finish_case): Set SWITCH_ALL_CASES_P if
c_switch_covers_all_cases_p returns true.
c-family/
* c-common.c (c_switch_covers_all_cases_p_1,
c_switch_covers_all_cases_p): New functions.
* c-common.h (c_switch_covers_all_cases_p): Declare.
testsuite/
* c-c++-common/tsan/pr81275.c: New test.

From-SVN: r255217

gcc/ChangeLog
gcc/c-family/ChangeLog
gcc/c-family/c-common.c
gcc/c-family/c-common.h
gcc/c/ChangeLog
gcc/c/c-typeck.c
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/tsan/pr81275.c [new file with mode: 0644]
gcc/tree.c
gcc/tree.h

index 52903c27c81d72fd24280e7e2644e8ab8673016b..02f9a9e5789595ace18b01f9bb7ccc3ac86442a5 100644 (file)
@@ -1,3 +1,9 @@
+2017-11-28  Jakub Jelinek  <jakub@redhat.com>
+
+       PR sanitizer/81275
+       * tree.c (block_may_fallthru): Return false if SWITCH_ALL_CASES_P
+       is set on SWITCH_EXPR and !block_may_fallthru (SWITCH_BODY ()).
+
 2017-11-28  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
            Martin Jambor  <mjambor@suse.cz>
 
index ce966bbaa4caf5750d30b23c8bbd1418adb1bfb2..abbcb90bc9b569dcd05651cdd17c3d99546de15e 100644 (file)
@@ -1,3 +1,10 @@
+2017-11-28  Jakub Jelinek  <jakub@redhat.com>
+
+       PR sanitizer/81275
+       * c-common.c (c_switch_covers_all_cases_p_1,
+       c_switch_covers_all_cases_p): New functions.
+       * c-common.h (c_switch_covers_all_cases_p): Declare.
+
 2017-11-28  Julia Koval  <julia.koval@intel.com>
             Sebastian Peryt  <sebastian.peryt@intel.com>
 
index 8256165730d0fb7703da27140ab8c2e509c9889a..1d79aee01c8b140a469e388ee08a287224f37400 100644 (file)
@@ -4898,6 +4898,64 @@ c_add_case_label (location_t loc, splay_tree cases, tree cond, tree orig_type,
   return error_mark_node;
 }
 
+/* Subroutine of c_switch_covers_all_cases_p, called via
+   splay_tree_foreach.  Return 1 if it doesn't cover all the cases.
+   ARGS[0] is initially NULL and after the first iteration is the
+   so far highest case label.  ARGS[1] is the minimum of SWITCH_COND's
+   type.  */
+
+static int
+c_switch_covers_all_cases_p_1 (splay_tree_node node, void *data)
+{
+  tree label = (tree) node->value;
+  tree *args = (tree *) data;
+
+  /* If there is a default case, we shouldn't have called this.  */
+  gcc_assert (CASE_LOW (label));
+
+  if (args[0] == NULL_TREE)
+    {
+      if (wi::to_widest (args[1]) < wi::to_widest (CASE_LOW (label)))
+       return 1;
+    }
+  else if (wi::add (wi::to_widest (args[0]), 1)
+          != wi::to_widest (CASE_LOW (label)))
+    return 1;
+  if (CASE_HIGH (label))
+    args[0] = CASE_HIGH (label);
+  else
+    args[0] = CASE_LOW (label);
+  return 0;
+}
+
+/* Return true if switch with CASES and switch condition with type
+   covers all possible values in the case labels.  */
+
+bool
+c_switch_covers_all_cases_p (splay_tree cases, tree type)
+{
+  /* If there is default:, this is always the case.  */
+  splay_tree_node default_node
+    = splay_tree_lookup (cases, (splay_tree_key) NULL);
+  if (default_node)
+    return true;
+
+  if (!INTEGRAL_TYPE_P (type))
+    return false;
+
+  tree args[2] = { NULL_TREE, TYPE_MIN_VALUE (type) };
+  if (splay_tree_foreach (cases, c_switch_covers_all_cases_p_1, args))
+    return false;
+
+  /* If there are no cases at all, or if the highest case label
+     is smaller than TYPE_MAX_VALUE, return false.  */
+  if (args[0] == NULL_TREE
+      || wi::to_widest (args[0]) < wi::to_widest (TYPE_MAX_VALUE (type)))
+    return false;
+
+  return true;
+}
+
 /* Finish an expression taking the address of LABEL (an
    IDENTIFIER_NODE).  Returns an expression for the address.
 
index 5e55e5efba6c0637fb93c1267a22b20f86f6caf1..7561531f98fd6fd1e0b2489007207ab0249f14b3 100644 (file)
@@ -969,6 +969,7 @@ extern int case_compare (splay_tree_key, splay_tree_key);
 
 extern tree c_add_case_label (location_t, splay_tree, tree, tree, tree, tree,
                              bool *);
+extern bool c_switch_covers_all_cases_p (splay_tree, tree);
 
 extern tree build_function_call (location_t, tree, tree);
 
index ff730438258636841e7ed20c70e2a3ed95482e5d..2c363483bb1da0692a6bb4abdf5ff442d1254aca 100644 (file)
@@ -1,3 +1,9 @@
+2017-11-28  Jakub Jelinek  <jakub@redhat.com>
+
+       PR sanitizer/81275
+       * c-typeck.c (c_finish_case): Set SWITCH_ALL_CASES_P if
+       c_switch_covers_all_cases_p returns true.
+
 2017-11-28  Julia Koval  <julia.koval@intel.com>
             Sebastian Peryt  <sebastian.peryt@intel.com>
 
index f761305bfdc1a8af39a02b32313090851d33fc5e..6846bc51d28c3e7f6dd9ac646671ef33d314ec62 100644 (file)
@@ -10360,6 +10360,8 @@ c_finish_case (tree body, tree type)
                        type ? type : TREE_TYPE (cs->switch_expr),
                        SWITCH_COND (cs->switch_expr),
                        cs->bool_cond_p, cs->outside_range_p);
+  if (c_switch_covers_all_cases_p (cs->cases, TREE_TYPE (cs->switch_expr)))
+    SWITCH_ALL_CASES_P (cs->switch_expr) = 1;
 
   /* Pop the stack.  */
   c_switch_stack = cs->next;
index e0e027b7653c14c0a6bbc41ac576c3651a30c76b..87332af7a292944c0becb7d092460dc24645aaaf 100644 (file)
@@ -1,3 +1,8 @@
+2017-11-28  Jakub Jelinek  <jakub@redhat.com>
+
+       PR sanitizer/81275
+       * c-c++-common/tsan/pr81275.c: New test.
+
 2017-11-28  Janne Blomqvist  <jb@gcc.gnu.org>
 
        PR fortran/53796
diff --git a/gcc/testsuite/c-c++-common/tsan/pr81275.c b/gcc/testsuite/c-c++-common/tsan/pr81275.c
new file mode 100644 (file)
index 0000000..024b0c7
--- /dev/null
@@ -0,0 +1,111 @@
+/* PR sanitizer/81275 */
+/* { dg-do compile } */
+/* { dg-options "-Wreturn-type -fsanitize=thread" } */
+
+int
+f1 (int a, int b)
+{
+  switch (a)
+    {
+    case 0:
+      switch (b)
+        {
+        case 5:
+         return 6;
+       case 7:
+         return 8;
+       default:
+         return 0;
+       }
+      break;
+    default:
+      return 0;
+    }
+}      /* { dg-bogus "control reaches end of non-void function" } */
+
+int
+f2 (int a, int b)
+{
+  switch (a)
+    {
+    case 0:
+      switch (b)
+        {
+        case 5:
+         return 6;
+       case 7:
+         return 8;
+       default:
+         return 0;
+       }
+    default:
+      return 0;
+    }
+}      /* { dg-bogus "control reaches end of non-void function" } */
+
+int
+f3 (int a, int b)
+{
+  switch (a)
+    {
+    case 0:
+      switch (b)
+        {
+        case 5:
+         return 6;
+       case 7:
+         return 8;
+       case 8:
+         break;
+       default:
+         return 0;
+       }
+      break;
+    default:
+      return 0;
+    }
+}      /* { dg-warning "control reaches end of non-void function" } */
+
+int
+f4 (int a, int b)
+{
+  switch (a)
+    {
+    case 0:
+      switch (b)
+        {
+        case 5:
+         return 6;
+       case 7:
+         return 8;
+       }
+      break;
+    default:
+      return 0;
+    }
+}      /* { dg-warning "control reaches end of non-void function" } */
+
+int
+f5 (int a, unsigned char b)
+{
+  switch (a)
+    {
+    case 0:
+      switch (b)
+        {
+       case 0:
+         return 1;
+       case 3 ... 10:
+         return 2;
+       case 1 ... 2:
+         return 3;
+       case 126 ... (unsigned char) ~0:
+         return 4;
+       case 11 ... 125:
+         return 5;
+       }
+      break;
+    default:
+      return 0;
+    }
+}      /* { dg-bogus "control reaches end of non-void function" } */
index b99304c2ff1d44246a02e21bd5d8ca491ea30ac2..e97654cd0f1adc97d3287e83112ba9aa945a5d1c 100644 (file)
@@ -12348,6 +12348,12 @@ block_may_fallthru (const_tree block)
       return false;
 
     case SWITCH_EXPR:
+      /* If there is a default: label or case labels cover all possible
+        SWITCH_COND values, then the SWITCH_EXPR will transfer control
+        to some case label in all cases and all we care is whether the
+        SWITCH_BODY falls through.  */
+      if (SWITCH_ALL_CASES_P (stmt))
+       return block_may_fallthru (SWITCH_BODY (stmt));
       return true;
 
     case COND_EXPR:
index bd713f81263f1952092b6bb00efd879b519213cd..db6785820b0eece7ea89a950ec9c9c6447577bff 100644 (file)
@@ -1166,6 +1166,10 @@ extern void protected_set_expr_location (tree, location_t);
 /* SWITCH_EXPR accessors. These give access to the condition and body.  */
 #define SWITCH_COND(NODE)       TREE_OPERAND (SWITCH_EXPR_CHECK (NODE), 0)
 #define SWITCH_BODY(NODE)       TREE_OPERAND (SWITCH_EXPR_CHECK (NODE), 1)
+/* True if there are case labels for all possible values of SWITCH_COND, either
+   because there is a default: case label or because the case label ranges cover
+   all values.  */
+#define SWITCH_ALL_CASES_P(NODE) (SWITCH_EXPR_CHECK (NODE)->base.private_flag)
 
 /* CASE_LABEL_EXPR accessors. These give access to the high and low values
    of a case label, respectively.  */