Commit 146c55da by Marek Polacek Committed by Marek Polacek

re PR middle-end/71476 (ICE in gimplify_switch_expr with -Wswitch-unreachable)

	PR middle-end/71476
	* gimplify.c (maybe_warn_switch_unreachable): Factored out of
	gimplify_switch_expr.
	(warn_switch_unreachable_r): New function.

	* c-c++-common/Wswitch-unreachable-4.c: New test.
	* gcc.dg/Wswitch-unreachable-2.c: New test.
	* g++.dg/tm/jump1.C: Move dg-warning.

From-SVN: r237367
parent f90eba2a
2016-06-13 Marek Polacek <polacek@redhat.com>
PR middle-end/71476
* gimplify.c (maybe_warn_switch_unreachable): Factored out of
gimplify_switch_expr.
(warn_switch_unreachable_r): New function.
2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com> 2016-06-13 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
PR target/71379 PR target/71379
......
...@@ -1559,6 +1559,73 @@ gimplify_statement_list (tree *expr_p, gimple_seq *pre_p) ...@@ -1559,6 +1559,73 @@ gimplify_statement_list (tree *expr_p, gimple_seq *pre_p)
return GS_ALL_DONE; return GS_ALL_DONE;
} }
/* Callback for walk_gimple_seq. */
static tree
warn_switch_unreachable_r (gimple_stmt_iterator *gsi_p, bool *handled_ops_p,
struct walk_stmt_info *wi)
{
gimple *stmt = gsi_stmt (*gsi_p);
*handled_ops_p = true;
switch (gimple_code (stmt))
{
case GIMPLE_TRY:
/* A compiler-generated cleanup or a user-written try block.
If it's empty, don't dive into it--that would result in
worse location info. */
if (gimple_try_eval (stmt) == NULL)
{
wi->info = stmt;
return integer_zero_node;
}
/* Fall through. */
case GIMPLE_BIND:
case GIMPLE_CATCH:
case GIMPLE_EH_FILTER:
case GIMPLE_TRANSACTION:
/* Walk the sub-statements. */
*handled_ops_p = false;
break;
default:
/* Save the first "real" statement (not a decl/lexical scope/...). */
wi->info = stmt;
return integer_zero_node;
}
return NULL_TREE;
}
/* Possibly warn about unreachable statements between switch's controlling
expression and the first case. SEQ is the body of a switch expression. */
static void
maybe_warn_switch_unreachable (gimple_seq seq)
{
if (!warn_switch_unreachable
/* This warning doesn't play well with Fortran when optimizations
are on. */
|| lang_GNU_Fortran ()
|| seq == NULL)
return;
struct walk_stmt_info wi;
memset (&wi, 0, sizeof (wi));
walk_gimple_seq (seq, warn_switch_unreachable_r, NULL, &wi);
gimple *stmt = (gimple *) wi.info;
if (stmt && gimple_code (stmt) != GIMPLE_LABEL)
{
if (gimple_code (stmt) == GIMPLE_GOTO
&& TREE_CODE (gimple_goto_dest (stmt)) == LABEL_DECL
&& DECL_ARTIFICIAL (gimple_goto_dest (stmt)))
/* Don't warn for compiler-generated gotos. These occur
in Duff's devices, for example. */;
else
warning_at (gimple_location (stmt), OPT_Wswitch_unreachable,
"statement will never be executed");
}
}
/* Gimplify a SWITCH_EXPR, and collect the vector of labels it can /* Gimplify a SWITCH_EXPR, and collect the vector of labels it can
branch to. */ branch to. */
...@@ -1596,39 +1663,8 @@ gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p) ...@@ -1596,39 +1663,8 @@ gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq); gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
/* Possibly warn about unreachable statements between switch's maybe_warn_switch_unreachable (switch_body_seq);
controlling expression and the first case. */
if (warn_switch_unreachable
/* This warning doesn't play well with Fortran when optimizations
are on. */
&& !lang_GNU_Fortran ()
&& switch_body_seq != NULL)
{
gimple_seq seq = switch_body_seq;
/* Look into the innermost lexical scope. */
while (gimple_code (seq) == GIMPLE_BIND)
seq = gimple_bind_body (as_a <gbind *> (seq));
gimple *stmt = gimple_seq_first_stmt (seq);
if (gimple_code (stmt) == GIMPLE_TRY)
{
/* A compiler-generated cleanup or a user-written try block.
Try to get the first statement in its try-block, for better
location. */
if ((seq = gimple_try_eval (stmt)))
stmt = gimple_seq_first_stmt (seq);
}
if (gimple_code (stmt) != GIMPLE_LABEL)
{
if (gimple_code (stmt) == GIMPLE_GOTO
&& TREE_CODE (gimple_goto_dest (stmt)) == LABEL_DECL
&& DECL_ARTIFICIAL (gimple_goto_dest (stmt)))
/* Don't warn for compiler-generated gotos. These occur
in Duff's devices, for example. */;
else
warning_at (gimple_location (stmt), OPT_Wswitch_unreachable,
"statement will never be executed");
}
}
labels = gimplify_ctxp->case_labels; labels = gimplify_ctxp->case_labels;
gimplify_ctxp->case_labels = saved_labels; gimplify_ctxp->case_labels = saved_labels;
......
2016-06-13 Marek Polacek <polacek@redhat.com>
PR middle-end/71476
* c-c++-common/Wswitch-unreachable-4.c: New test.
* gcc.dg/Wswitch-unreachable-2.c: New test.
* g++.dg/tm/jump1.C: Move dg-warning.
2016-06-13 Eric Botcazou <ebotcazou@adacore.com> 2016-06-13 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/renaming10.ad[sb]: New test. * gnat.dg/renaming10.ad[sb]: New test.
......
/* { dg-do compile } */
void
foo (int a, int b)
{
switch (a)
{
{ int c; }
{ int d; }
{ int e; }
b++; /* { dg-warning "statement will never be executed" } */
case 1:
break;
}
switch (a)
{
{ int c; }
{ int d = 1; } /* { dg-warning "statement will never be executed" } */
{ int e; }
b++;
case 1:
break;
}
}
...@@ -14,8 +14,8 @@ void f() ...@@ -14,8 +14,8 @@ void f()
switch (i) switch (i)
{ {
synchronized { // { dg-warning "statement will never be executed" } synchronized {
++i; ++i; // { dg-warning "statement will never be executed" }
case 42: // { dg-error "" } case 42: // { dg-error "" }
++i; ++i;
} }
......
/* PR middle-end/71476 */
/* { dg-do compile } */
/* { dg-options "-Wswitch-unreachable" } */
void
foo (int a)
{
switch (a)
{
void f (void) { }
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment