1 /* This file contains the definitions and documentation for the common
2 tree codes used in the GNU C and C++ compilers (see c-common.def
3 for the standard codes).
4 Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5 Written by Benjamin Chelf (chelf@codesourcery.com).
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 2, or (at your option) any later
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to the Free
21 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26 #include "coretypes.h"
30 #include "splay-tree.h"
34 /* In order for the format checking to accept the C frontend
35 diagnostic framework extensions, you must define this token before
36 including toplev.h. */
37 #define GCC_DIAG_STYLE __gcc_cdiag__
46 #include "tree-inline.h"
48 /* If non-NULL, the address of a language-specific function for
49 expanding statements. */
50 void (*lang_expand_stmt
) (tree
);
52 /* If non-NULL, the address of a language-specific function for
53 expanding a DECL_STMT. After the language-independent cases are
54 handled, this function will be called. If this function is not
55 defined, it is assumed that declarations other than those for
56 variables and labels do not require any RTL generation. */
57 void (*lang_expand_decl_stmt
) (tree
);
59 static tree
find_reachable_label_1 (tree
*, int *, void *);
60 static tree
find_reachable_label (tree
);
61 static bool expand_unreachable_if_stmt (tree
);
62 static tree
expand_unreachable_stmt (tree
, int);
63 static void genrtl_do_stmt_1 (tree
, tree
);
65 /* Create an empty statement tree rooted at T. */
68 begin_stmt_tree (tree
*t
)
70 /* We create a trivial EXPR_STMT so that last_tree is never NULL in
71 what follows. We remove the extraneous statement in
73 *t
= build_nt (EXPR_STMT
, void_zero_node
);
75 last_expr_type
= NULL_TREE
;
76 last_expr_filename
= input_filename
;
79 /* T is a statement. Add it to the statement-tree. */
84 if (input_filename
!= last_expr_filename
)
86 /* If the filename has changed, also add in a FILE_STMT. Do a string
87 compare first, though, as it might be an equivalent string. */
88 int add
= (strcmp (input_filename
, last_expr_filename
) != 0);
89 last_expr_filename
= input_filename
;
92 tree pos
= build_nt (FILE_STMT
, get_identifier (input_filename
));
97 /* Add T to the statement-tree. */
98 TREE_CHAIN (last_tree
) = t
;
101 /* When we expand a statement-tree, we must know whether or not the
102 statements are full-expressions. We record that fact here. */
103 STMT_IS_FULL_EXPR_P (last_tree
) = stmts_are_full_exprs_p ();
108 /* Create a declaration statement for the declaration given by the
112 add_decl_stmt (tree decl
)
116 /* We need the type to last until instantiation time. */
117 decl_stmt
= build_stmt (DECL_STMT
, decl
);
118 add_stmt (decl_stmt
);
121 /* Add a scope-statement to the statement-tree. BEGIN_P indicates
122 whether this statements opens or closes a scope. PARTIAL_P is true
123 for a partial scope, i.e, the scope that begins after a label when
124 an object that needs a cleanup is created. If BEGIN_P is nonzero,
125 returns a new TREE_LIST representing the top of the SCOPE_STMT
126 stack. The TREE_PURPOSE is the new SCOPE_STMT. If BEGIN_P is
127 zero, returns a TREE_LIST whose TREE_VALUE is the new SCOPE_STMT,
128 and whose TREE_PURPOSE is the matching SCOPE_STMT with
129 SCOPE_BEGIN_P set. */
132 add_scope_stmt (int begin_p
, int partial_p
)
134 tree
*stack_ptr
= current_scope_stmt_stack ();
136 tree top
= *stack_ptr
;
138 /* Build the statement. */
139 ss
= build_stmt (SCOPE_STMT
, NULL_TREE
);
140 SCOPE_BEGIN_P (ss
) = begin_p
;
141 SCOPE_PARTIAL_P (ss
) = partial_p
;
143 /* Keep the scope stack up to date. */
146 top
= tree_cons (ss
, NULL_TREE
, top
);
151 if (partial_p
!= SCOPE_PARTIAL_P (TREE_PURPOSE (top
)))
153 TREE_VALUE (top
) = ss
;
154 *stack_ptr
= TREE_CHAIN (top
);
157 /* Add the new statement to the statement-tree. */
163 /* Finish the statement tree rooted at T. */
166 finish_stmt_tree (tree
*t
)
170 /* Remove the fake extra statement added in begin_stmt_tree. */
171 stmt
= TREE_CHAIN (*t
);
173 last_tree
= NULL_TREE
;
177 /* The line-number recorded in the outermost statement in a function
178 is the line number of the end of the function. */
179 STMT_LINENO (stmt
) = input_line
;
180 STMT_LINENO_FOR_FN_P (stmt
) = 1;
184 /* Build a generic statement based on the given type of node and
185 arguments. Similar to `build_nt', except that we set
186 STMT_LINENO to be the current line number. */
187 /* ??? This should be obsolete with the lineno_stmt productions
191 build_stmt (enum tree_code code
, ...)
200 t
= make_node (code
);
201 length
= TREE_CODE_LENGTH (code
);
202 STMT_LINENO (t
) = input_line
;
204 for (i
= 0; i
< length
; i
++)
205 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
211 /* Some statements, like for-statements or if-statements, require a
212 condition. This condition can be a declaration. If T is such a
213 declaration it is processed, and an expression appropriate to use
214 as the condition is returned. Otherwise, T itself is returned. */
219 if (t
&& TREE_CODE (t
) == TREE_LIST
)
221 expand_stmt (TREE_PURPOSE (t
));
222 return TREE_VALUE (t
);
228 /* Create RTL for the local static variable DECL. */
231 make_rtl_for_local_static (tree decl
)
233 const char *asmspec
= NULL
;
235 /* If we inlined this variable, we could see it's declaration
237 if (TREE_ASM_WRITTEN (decl
))
240 /* If the DECL_ASSEMBLER_NAME is not the same as the DECL_NAME, then
241 either we already created RTL for this DECL (and since it was a
242 local variable, its DECL_ASSEMBLER_NAME got hacked up to prevent
243 clashes with other local statics with the same name by a previous
244 call to make_decl_rtl), or the user explicitly requested a
245 particular assembly name for this variable, using the GNU
246 extension for this purpose:
250 There's no way to know which case we're in, here. But, it turns
251 out we're safe. If there's already RTL, then
252 rest_of_decl_compilation ignores the ASMSPEC parameter, so we
253 may as well not pass it in. If there isn't RTL, then we didn't
254 already create RTL, which means that the modification to
255 DECL_ASSEMBLER_NAME came only via the explicit extension. */
256 if (DECL_ASSEMBLER_NAME (decl
) != DECL_NAME (decl
)
257 && !DECL_RTL_SET_P (decl
))
258 asmspec
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
260 rest_of_decl_compilation (decl
, asmspec
, /*top_level=*/0, /*at_end=*/0);
263 /* Let the back-end know about DECL. */
266 emit_local_var (tree decl
)
268 /* Create RTL for this variable. */
269 if (!DECL_RTL_SET_P (decl
))
271 if (DECL_C_HARD_REGISTER (decl
))
272 /* The user specified an assembler name for this variable.
274 rest_of_decl_compilation
275 (decl
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
276 /*top_level=*/0, /*at_end=*/0);
281 if (DECL_INITIAL (decl
))
283 /* Actually do the initialization. */
284 if (stmts_are_full_exprs_p ())
285 expand_start_target_temps ();
287 expand_decl_init (decl
);
289 if (stmts_are_full_exprs_p ())
290 expand_end_target_temps ();
294 /* Helper for generating the RTL at the beginning of a scope. */
297 genrtl_do_pushlevel (void)
299 emit_line_note (input_location
);
303 /* Generate the RTL for DESTINATION, which is a GOTO_STMT. */
306 genrtl_goto_stmt (tree destination
)
308 if (TREE_CODE (destination
) == IDENTIFIER_NODE
)
311 /* We warn about unused labels with -Wunused. That means we have to
312 mark the used labels as used. */
313 if (TREE_CODE (destination
) == LABEL_DECL
)
314 TREE_USED (destination
) = 1;
316 emit_line_note (input_location
);
318 if (TREE_CODE (destination
) == LABEL_DECL
)
320 label_rtx (destination
);
321 expand_goto (destination
);
324 expand_computed_goto (destination
);
327 /* Generate the RTL for EXPR, which is an EXPR_STMT. Provided just
328 for backward compatibility. genrtl_expr_stmt_value() should be
329 used for new code. */
332 genrtl_expr_stmt (tree expr
)
334 genrtl_expr_stmt_value (expr
, -1, 1);
337 /* Generate the RTL for EXPR, which is an EXPR_STMT. WANT_VALUE tells
338 whether to (1) save the value of the expression, (0) discard it or
339 (-1) use expr_stmts_for_value to tell. The use of -1 is
340 deprecated, and retained only for backward compatibility.
341 MAYBE_LAST is nonzero if this EXPR_STMT might be the last statement
342 in expression statement. */
345 genrtl_expr_stmt_value (tree expr
, int want_value
, int maybe_last
)
347 if (expr
!= NULL_TREE
)
349 emit_line_note (input_location
);
351 if (stmts_are_full_exprs_p ())
352 expand_start_target_temps ();
354 if (expr
!= error_mark_node
)
355 expand_expr_stmt_value (expr
, want_value
, maybe_last
);
357 if (stmts_are_full_exprs_p ())
358 expand_end_target_temps ();
362 /* Generate the RTL for T, which is a DECL_STMT. */
365 genrtl_decl_stmt (tree t
)
368 emit_line_note (input_location
);
369 decl
= DECL_STMT_DECL (t
);
370 /* If this is a declaration for an automatic local
371 variable, initialize it. Note that we might also see a
372 declaration for a namespace-scope object (declared with
373 `extern'). We don't have to handle the initialization
374 of those objects here; they can only be declarations,
375 rather than definitions. */
376 if (TREE_CODE (decl
) == VAR_DECL
377 && !TREE_STATIC (decl
)
378 && !DECL_EXTERNAL (decl
))
380 /* Let the back-end know about this variable. */
381 if (!anon_aggr_type_p (TREE_TYPE (decl
)))
382 emit_local_var (decl
);
384 expand_anon_union_decl (decl
, NULL_TREE
,
385 DECL_ANON_UNION_ELEMS (decl
));
387 else if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
))
388 make_rtl_for_local_static (decl
);
389 else if (TREE_CODE (decl
) == LABEL_DECL
390 && C_DECLARED_LABEL_FLAG (decl
))
391 declare_nonlocal_label (decl
);
392 else if (lang_expand_decl_stmt
)
393 (*lang_expand_decl_stmt
) (t
);
396 /* Generate the RTL for T, which is an IF_STMT. */
399 genrtl_if_stmt (tree t
)
402 genrtl_do_pushlevel ();
403 cond
= expand_cond (IF_COND (t
));
404 emit_line_note (input_location
);
405 expand_start_cond (cond
, 0);
408 tree nextt
= THEN_CLAUSE (t
);
410 if (cond
&& integer_zerop (cond
))
411 nextt
= expand_unreachable_stmt (nextt
, warn_notreached
);
417 tree nextt
= ELSE_CLAUSE (t
);
418 expand_start_else ();
419 if (cond
&& integer_nonzerop (cond
))
420 nextt
= expand_unreachable_stmt (nextt
, warn_notreached
);
426 /* Generate the RTL for T, which is a WHILE_STMT. */
429 genrtl_while_stmt (tree t
)
431 tree cond
= WHILE_COND (t
);
434 emit_line_note (input_location
);
435 expand_start_loop (1);
436 genrtl_do_pushlevel ();
438 if (cond
&& !integer_nonzerop (cond
))
440 cond
= expand_cond (cond
);
441 emit_line_note (input_location
);
442 expand_exit_loop_top_cond (0, cond
);
443 genrtl_do_pushlevel ();
446 expand_stmt (WHILE_BODY (t
));
451 /* Generate the RTL for a DO_STMT with condition COND and loop BODY
452 body. This is reused for expanding unreachable WHILE_STMTS. */
455 genrtl_do_stmt_1 (tree cond
, tree body
)
457 /* Recognize the common special-case of do { ... } while (0) and do
458 not emit the loop widgetry in this case. In particular this
459 avoids cluttering the rtl with dummy loop notes, which can affect
460 alignment of adjacent labels. COND can be NULL due to parse
462 if (!cond
|| integer_zerop (cond
))
464 expand_start_null_loop ();
466 expand_end_null_loop ();
468 else if (integer_nonzerop (cond
))
471 emit_line_note (input_location
);
472 expand_start_loop (1);
476 emit_line_note (input_location
);
482 emit_line_note (input_location
);
483 expand_start_loop_continue_elsewhere (1);
487 expand_loop_continue_here ();
488 cond
= expand_cond (cond
);
489 emit_line_note (input_location
);
490 expand_exit_loop_if_false (0, cond
);
495 /* Generate the RTL for T, which is a DO_STMT. */
498 genrtl_do_stmt (tree t
)
500 genrtl_do_stmt_1 (DO_COND (t
), DO_BODY (t
));
503 /* Build the node for a return statement and return it. */
506 build_return_stmt (tree expr
)
508 return (build_stmt (RETURN_STMT
, expr
));
511 /* Generate the RTL for STMT, which is a RETURN_STMT. */
514 genrtl_return_stmt (tree stmt
)
518 expr
= RETURN_STMT_EXPR (stmt
);
520 emit_line_note (input_location
);
522 expand_null_return ();
525 expand_start_target_temps ();
526 expand_return (expr
);
527 expand_end_target_temps ();
531 /* Generate the RTL for T, which is a FOR_STMT. */
534 genrtl_for_stmt (tree t
)
536 tree cond
= FOR_COND (t
);
537 location_t saved_loc
;
539 if (NEW_FOR_SCOPE_P (t
))
540 genrtl_do_pushlevel ();
542 expand_stmt (FOR_INIT_STMT (t
));
544 /* Expand the initialization. */
546 emit_line_note (input_location
);
548 expand_start_loop_continue_elsewhere (1);
550 expand_start_loop (1);
551 genrtl_do_pushlevel ();
553 /* Save the filename and line number so that we expand the FOR_EXPR
554 we can reset them back to the saved values. */
555 saved_loc
= input_location
;
557 /* Expand the condition. */
558 if (cond
&& !integer_nonzerop (cond
))
560 cond
= expand_cond (cond
);
561 emit_line_note (input_location
);
562 expand_exit_loop_top_cond (0, cond
);
563 genrtl_do_pushlevel ();
566 /* Expand the body. */
567 expand_stmt (FOR_BODY (t
));
569 /* Expand the increment expression. */
570 input_location
= saved_loc
;
571 emit_line_note (input_location
);
574 expand_loop_continue_here ();
575 genrtl_expr_stmt (FOR_EXPR (t
));
580 /* Build a break statement node and return it. */
583 build_break_stmt (void)
585 return (build_stmt (BREAK_STMT
));
588 /* Generate the RTL for a BREAK_STMT. */
591 genrtl_break_stmt (void)
593 emit_line_note (input_location
);
594 if ( ! expand_exit_something ())
595 error ("break statement not within loop or switch");
598 /* Build a continue statement node and return it. */
601 build_continue_stmt (void)
603 return (build_stmt (CONTINUE_STMT
));
606 /* Generate the RTL for a CONTINUE_STMT. */
609 genrtl_continue_stmt (void)
611 emit_line_note (input_location
);
612 if (! expand_continue_loop (0))
613 error ("continue statement not within a loop");
616 /* Generate the RTL for T, which is a SCOPE_STMT. */
619 genrtl_scope_stmt (tree t
)
621 tree block
= SCOPE_STMT_BLOCK (t
);
623 if (!SCOPE_NO_CLEANUPS_P (t
))
625 if (SCOPE_BEGIN_P (t
))
626 expand_start_bindings_and_block (2 * SCOPE_NULLIFIED_P (t
), block
);
627 else if (SCOPE_END_P (t
))
628 expand_end_bindings (NULL_TREE
, !SCOPE_NULLIFIED_P (t
), 0);
630 else if (!SCOPE_NULLIFIED_P (t
))
632 rtx note
= emit_note (SCOPE_BEGIN_P (t
)
633 ? NOTE_INSN_BLOCK_BEG
: NOTE_INSN_BLOCK_END
);
634 NOTE_BLOCK (note
) = block
;
637 /* If we're at the end of a scope that contains inlined nested
638 functions, we have to decide whether or not to write them out. */
639 if (block
&& SCOPE_END_P (t
))
643 for (fn
= BLOCK_VARS (block
); fn
; fn
= TREE_CHAIN (fn
))
645 if (TREE_CODE (fn
) == FUNCTION_DECL
646 && DECL_CONTEXT (fn
) == current_function_decl
647 && DECL_SAVED_INSNS (fn
)
648 && !TREE_ASM_WRITTEN (fn
)
649 && TREE_ADDRESSABLE (fn
))
651 push_function_context ();
652 output_inline_function (fn
);
653 pop_function_context ();
659 /* Generate the RTL for T, which is a SWITCH_STMT. */
662 genrtl_switch_stmt (tree t
)
665 genrtl_do_pushlevel ();
667 cond
= expand_cond (SWITCH_COND (t
));
668 if (cond
== error_mark_node
)
669 /* The code is in error, but we don't want expand_end_case to
671 cond
= truthvalue_false_node
;
673 emit_line_note (input_location
);
674 expand_start_case (1, cond
, TREE_TYPE (cond
), "switch statement");
675 expand_stmt (expand_unreachable_stmt (SWITCH_BODY (t
), warn_notreached
));
676 expand_end_case_type (cond
, SWITCH_TYPE (t
));
679 /* Create a CASE_LABEL tree node and return it. */
682 build_case_label (tree low_value
, tree high_value
, tree label_decl
)
684 return build_stmt (CASE_LABEL
, low_value
, high_value
, label_decl
);
688 /* Generate the RTL for a CASE_LABEL. */
691 genrtl_case_label (tree case_label
)
696 cleanup
= last_cleanup_this_contour ();
699 static int explained
= 0;
700 warning ("destructor needed for `%D'", (TREE_PURPOSE (cleanup
)));
701 warning ("where case label appears here");
704 warning ("(enclose actions of previous case statements requiring destructors in their own scope.)");
709 add_case_node (CASE_LOW (case_label
), CASE_HIGH (case_label
),
710 CASE_LABEL_DECL (case_label
), &duplicate
);
713 /* Generate the RTL for T, which is a COMPOUND_STMT. */
716 genrtl_compound_stmt (tree t
)
718 #ifdef ENABLE_CHECKING
719 struct nesting
*n
= current_nesting_level ();
722 expand_stmt (COMPOUND_BODY (t
));
724 #ifdef ENABLE_CHECKING
725 /* Make sure that we've pushed and popped the same number of levels. */
726 if (!COMPOUND_STMT_NO_SCOPE (t
) && n
!= current_nesting_level ())
731 /* Generate the RTL for an ASM_STMT. */
734 genrtl_asm_stmt (tree cv_qualifier
, tree string
, tree output_operands
,
735 tree input_operands
, tree clobbers
, int asm_input_p
)
737 if (cv_qualifier
!= NULL_TREE
738 && cv_qualifier
!= ridpointers
[(int) RID_VOLATILE
])
740 warning ("%s qualifier ignored on asm",
741 IDENTIFIER_POINTER (cv_qualifier
));
742 cv_qualifier
= NULL_TREE
;
745 emit_line_note (input_location
);
747 expand_asm (string
, cv_qualifier
!= NULL_TREE
);
749 c_expand_asm_operands (string
, output_operands
, input_operands
,
750 clobbers
, cv_qualifier
!= NULL_TREE
,
751 input_filename
, input_line
);
754 /* Generate the RTL for a CLEANUP_STMT. */
757 genrtl_cleanup_stmt (tree t
)
759 tree decl
= CLEANUP_DECL (t
);
760 if (!decl
|| (DECL_SIZE (decl
) && TREE_TYPE (decl
) != error_mark_node
))
761 expand_decl_cleanup_eh (decl
, CLEANUP_EXPR (t
), CLEANUP_EH_ONLY (t
));
764 /* We're about to expand T, a statement. Set up appropriate context
765 for the substitution. */
770 if (!STMT_LINENO_FOR_FN_P (t
))
771 input_line
= STMT_LINENO (t
);
772 current_stmt_tree ()->stmts_are_full_exprs_p
= STMT_IS_FULL_EXPR_P (t
);
775 /* Generate the RTL for the statement T, its substatements, and any
776 other statements at its nesting level. */
781 while (t
&& t
!= error_mark_node
)
783 int saved_stmts_are_full_exprs_p
;
785 /* Set up context appropriately for handling this statement. */
786 saved_stmts_are_full_exprs_p
= stmts_are_full_exprs_p ();
789 switch (TREE_CODE (t
))
792 input_filename
= FILE_STMT_FILENAME (t
);
796 genrtl_return_stmt (t
);
797 t
= expand_unreachable_stmt (TREE_CHAIN (t
), warn_notreached
);
801 genrtl_expr_stmt_value (EXPR_STMT_EXPR (t
), TREE_ADDRESSABLE (t
),
802 TREE_CHAIN (t
) == NULL
803 || (TREE_CODE (TREE_CHAIN (t
)) == SCOPE_STMT
804 && TREE_CHAIN (TREE_CHAIN (t
)) == NULL
));
808 genrtl_decl_stmt (t
);
816 genrtl_while_stmt (t
);
828 genrtl_compound_stmt (t
);
832 genrtl_break_stmt ();
833 t
= expand_unreachable_stmt (TREE_CHAIN (t
), warn_notreached
);
837 genrtl_continue_stmt ();
838 t
= expand_unreachable_stmt (TREE_CHAIN (t
), warn_notreached
);
842 genrtl_switch_stmt (t
);
846 genrtl_case_label (t
);
850 expand_label (LABEL_STMT_LABEL (t
));
854 /* Emit information for branch prediction. */
856 && TREE_CODE (GOTO_DESTINATION (t
)) == LABEL_DECL
857 && flag_guess_branch_prob
)
859 rtx note
= emit_note (NOTE_INSN_PREDICTION
);
861 NOTE_PREDICTION (note
) = NOTE_PREDICT (PRED_GOTO
, NOT_TAKEN
);
863 genrtl_goto_stmt (GOTO_DESTINATION (t
));
864 t
= expand_unreachable_stmt (TREE_CHAIN (t
), warn_notreached
);
868 genrtl_asm_stmt (ASM_CV_QUAL (t
), ASM_STRING (t
),
869 ASM_OUTPUTS (t
), ASM_INPUTS (t
),
870 ASM_CLOBBERS (t
), ASM_INPUT_P (t
));
874 genrtl_scope_stmt (t
);
878 genrtl_cleanup_stmt (t
);
882 if (lang_expand_stmt
)
883 (*lang_expand_stmt
) (t
);
889 /* Go on to the next statement in this scope. */
893 /* Restore saved state. */
894 current_stmt_tree ()->stmts_are_full_exprs_p
895 = saved_stmts_are_full_exprs_p
;
899 /* If *TP is a potentially reachable label, return nonzero. */
902 find_reachable_label_1 (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
903 void *data ATTRIBUTE_UNUSED
)
905 switch (TREE_CODE (*tp
))
917 /* Determine whether expression EXP contains a potentially
920 find_reachable_label (tree exp
)
922 location_t saved_loc
= input_location
;
923 tree ret
= walk_tree_without_duplicates
924 (&exp
, find_reachable_label_1
, NULL
);
925 input_location
= saved_loc
;
929 /* Expand an unreachable if statement, T. This function returns
930 true if the IF_STMT contains a potentially reachable code_label. */
932 expand_unreachable_if_stmt (tree t
)
936 if (find_reachable_label (IF_COND (t
)) != NULL_TREE
)
942 if (THEN_CLAUSE (t
) && ELSE_CLAUSE (t
))
944 n
= expand_unreachable_stmt (THEN_CLAUSE (t
), 0);
950 label
= gen_label_rtx ();
952 expand_stmt (expand_unreachable_stmt (ELSE_CLAUSE (t
), 0));
957 n
= expand_unreachable_stmt (ELSE_CLAUSE (t
), 0);
959 else if (THEN_CLAUSE (t
))
960 n
= expand_unreachable_stmt (THEN_CLAUSE (t
), 0);
961 else if (ELSE_CLAUSE (t
))
962 n
= expand_unreachable_stmt (ELSE_CLAUSE (t
), 0);
968 return n
!= NULL_TREE
;
971 /* Expand an unreachable statement list. This function skips all
972 statements preceding the first potentially reachable label and
973 then returns the label (or, in same cases, the statement after
974 one containing the label). */
976 expand_unreachable_stmt (tree t
, int warn
)
980 while (t
&& t
!= error_mark_node
)
983 switch (TREE_CODE (t
))
991 if (!STMT_LINENO_FOR_FN_P (t
))
992 input_line
= STMT_LINENO (t
);
993 warning("will never be executed");
1001 switch (TREE_CODE (t
))
1009 input_filename
= FILE_STMT_FILENAME (t
);
1013 if (find_reachable_label (RETURN_STMT_EXPR (t
)) != NULL_TREE
)
1018 if (find_reachable_label (EXPR_STMT_EXPR (t
)) != NULL_TREE
)
1023 if (expand_unreachable_if_stmt (t
))
1024 return TREE_CHAIN (t
);
1028 /* If the start of a while statement is unreachable, there is
1029 no need to rotate the loop, instead the WHILE_STMT can be
1030 expanded like a DO_STMT. */
1031 genrtl_do_stmt_1 (WHILE_COND (t
), WHILE_BODY (t
));
1032 return TREE_CHAIN (t
);
1037 n
= expand_unreachable_stmt (COMPOUND_BODY (t
), warn
);
1041 return TREE_CHAIN (t
);
1048 saved
= stmts_are_full_exprs_p ();
1050 genrtl_scope_stmt (t
);
1051 current_stmt_tree ()->stmts_are_full_exprs_p
= saved
;