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 ();
105 /* Keep track of the number of statements in this function. */
106 if (current_function_decl
)
107 ++DECL_NUM_STMTS (current_function_decl
);
112 /* Create a declaration statement for the declaration given by the
116 add_decl_stmt (tree decl
)
120 /* We need the type to last until instantiation time. */
121 decl_stmt
= build_stmt (DECL_STMT
, decl
);
122 add_stmt (decl_stmt
);
125 /* Add a scope-statement to the statement-tree. BEGIN_P indicates
126 whether this statements opens or closes a scope. PARTIAL_P is true
127 for a partial scope, i.e, the scope that begins after a label when
128 an object that needs a cleanup is created. If BEGIN_P is nonzero,
129 returns a new TREE_LIST representing the top of the SCOPE_STMT
130 stack. The TREE_PURPOSE is the new SCOPE_STMT. If BEGIN_P is
131 zero, returns a TREE_LIST whose TREE_VALUE is the new SCOPE_STMT,
132 and whose TREE_PURPOSE is the matching SCOPE_STMT with
133 SCOPE_BEGIN_P set. */
136 add_scope_stmt (int begin_p
, int partial_p
)
138 tree
*stack_ptr
= current_scope_stmt_stack ();
140 tree top
= *stack_ptr
;
142 /* Build the statement. */
143 ss
= build_stmt (SCOPE_STMT
, NULL_TREE
);
144 SCOPE_BEGIN_P (ss
) = begin_p
;
145 SCOPE_PARTIAL_P (ss
) = partial_p
;
147 /* Keep the scope stack up to date. */
150 top
= tree_cons (ss
, NULL_TREE
, top
);
155 if (partial_p
!= SCOPE_PARTIAL_P (TREE_PURPOSE (top
)))
157 TREE_VALUE (top
) = ss
;
158 *stack_ptr
= TREE_CHAIN (top
);
161 /* Add the new statement to the statement-tree. */
167 /* Finish the statement tree rooted at T. */
170 finish_stmt_tree (tree
*t
)
174 /* Remove the fake extra statement added in begin_stmt_tree. */
175 stmt
= TREE_CHAIN (*t
);
177 last_tree
= NULL_TREE
;
181 /* The line-number recorded in the outermost statement in a function
182 is the line number of the end of the function. */
183 STMT_LINENO (stmt
) = input_line
;
184 STMT_LINENO_FOR_FN_P (stmt
) = 1;
188 /* Build a generic statement based on the given type of node and
189 arguments. Similar to `build_nt', except that we set
190 STMT_LINENO to be the current line number. */
191 /* ??? This should be obsolete with the lineno_stmt productions
195 build_stmt (enum tree_code code
, ...)
204 t
= make_node (code
);
205 length
= TREE_CODE_LENGTH (code
);
206 STMT_LINENO (t
) = input_line
;
208 for (i
= 0; i
< length
; i
++)
209 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
215 /* Some statements, like for-statements or if-statements, require a
216 condition. This condition can be a declaration. If T is such a
217 declaration it is processed, and an expression appropriate to use
218 as the condition is returned. Otherwise, T itself is returned. */
223 if (t
&& TREE_CODE (t
) == TREE_LIST
)
225 expand_stmt (TREE_PURPOSE (t
));
226 return TREE_VALUE (t
);
232 /* Create RTL for the local static variable DECL. */
235 make_rtl_for_local_static (tree decl
)
237 const char *asmspec
= NULL
;
239 /* If we inlined this variable, we could see it's declaration
241 if (TREE_ASM_WRITTEN (decl
))
244 /* If the DECL_ASSEMBLER_NAME is not the same as the DECL_NAME, then
245 either we already created RTL for this DECL (and since it was a
246 local variable, its DECL_ASSEMBLER_NAME got hacked up to prevent
247 clashes with other local statics with the same name by a previous
248 call to make_decl_rtl), or the user explicitly requested a
249 particular assembly name for this variable, using the GNU
250 extension for this purpose:
254 There's no way to know which case we're in, here. But, it turns
255 out we're safe. If there's already RTL, then
256 rest_of_decl_compilation ignores the ASMSPEC parameter, so we
257 may as well not pass it in. If there isn't RTL, then we didn't
258 already create RTL, which means that the modification to
259 DECL_ASSEMBLER_NAME came only via the explicit extension. */
260 if (DECL_ASSEMBLER_NAME (decl
) != DECL_NAME (decl
)
261 && !DECL_RTL_SET_P (decl
))
262 asmspec
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
264 rest_of_decl_compilation (decl
, asmspec
, /*top_level=*/0, /*at_end=*/0);
267 /* Let the back-end know about DECL. */
270 emit_local_var (tree decl
)
272 /* Create RTL for this variable. */
273 if (!DECL_RTL_SET_P (decl
))
275 if (DECL_C_HARD_REGISTER (decl
))
276 /* The user specified an assembler name for this variable.
278 rest_of_decl_compilation
279 (decl
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
280 /*top_level=*/0, /*at_end=*/0);
285 if (DECL_INITIAL (decl
))
287 /* Actually do the initialization. */
288 if (stmts_are_full_exprs_p ())
289 expand_start_target_temps ();
291 expand_decl_init (decl
);
293 if (stmts_are_full_exprs_p ())
294 expand_end_target_temps ();
298 /* Helper for generating the RTL at the beginning of a scope. */
301 genrtl_do_pushlevel (void)
303 emit_line_note (input_location
);
307 /* Generate the RTL for DESTINATION, which is a GOTO_STMT. */
310 genrtl_goto_stmt (tree destination
)
312 if (TREE_CODE (destination
) == IDENTIFIER_NODE
)
315 /* We warn about unused labels with -Wunused. That means we have to
316 mark the used labels as used. */
317 if (TREE_CODE (destination
) == LABEL_DECL
)
318 TREE_USED (destination
) = 1;
320 emit_line_note (input_location
);
322 if (TREE_CODE (destination
) == LABEL_DECL
)
324 label_rtx (destination
);
325 expand_goto (destination
);
328 expand_computed_goto (destination
);
331 /* Generate the RTL for EXPR, which is an EXPR_STMT. Provided just
332 for backward compatibility. genrtl_expr_stmt_value() should be
333 used for new code. */
336 genrtl_expr_stmt (tree expr
)
338 genrtl_expr_stmt_value (expr
, -1, 1);
341 /* Generate the RTL for EXPR, which is an EXPR_STMT. WANT_VALUE tells
342 whether to (1) save the value of the expression, (0) discard it or
343 (-1) use expr_stmts_for_value to tell. The use of -1 is
344 deprecated, and retained only for backward compatibility.
345 MAYBE_LAST is nonzero if this EXPR_STMT might be the last statement
346 in expression statement. */
349 genrtl_expr_stmt_value (tree expr
, int want_value
, int maybe_last
)
351 if (expr
!= NULL_TREE
)
353 emit_line_note (input_location
);
355 if (stmts_are_full_exprs_p ())
356 expand_start_target_temps ();
358 if (expr
!= error_mark_node
)
359 expand_expr_stmt_value (expr
, want_value
, maybe_last
);
361 if (stmts_are_full_exprs_p ())
362 expand_end_target_temps ();
366 /* Generate the RTL for T, which is a DECL_STMT. */
369 genrtl_decl_stmt (tree t
)
372 emit_line_note (input_location
);
373 decl
= DECL_STMT_DECL (t
);
374 /* If this is a declaration for an automatic local
375 variable, initialize it. Note that we might also see a
376 declaration for a namespace-scope object (declared with
377 `extern'). We don't have to handle the initialization
378 of those objects here; they can only be declarations,
379 rather than definitions. */
380 if (TREE_CODE (decl
) == VAR_DECL
381 && !TREE_STATIC (decl
)
382 && !DECL_EXTERNAL (decl
))
384 /* Let the back-end know about this variable. */
385 if (!anon_aggr_type_p (TREE_TYPE (decl
)))
386 emit_local_var (decl
);
388 expand_anon_union_decl (decl
, NULL_TREE
,
389 DECL_ANON_UNION_ELEMS (decl
));
391 else if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
))
392 make_rtl_for_local_static (decl
);
393 else if (TREE_CODE (decl
) == LABEL_DECL
394 && C_DECLARED_LABEL_FLAG (decl
))
395 declare_nonlocal_label (decl
);
396 else if (lang_expand_decl_stmt
)
397 (*lang_expand_decl_stmt
) (t
);
400 /* Generate the RTL for T, which is an IF_STMT. */
403 genrtl_if_stmt (tree t
)
406 genrtl_do_pushlevel ();
407 cond
= expand_cond (IF_COND (t
));
408 emit_line_note (input_location
);
409 expand_start_cond (cond
, 0);
412 tree nextt
= THEN_CLAUSE (t
);
414 if (cond
&& integer_zerop (cond
))
415 nextt
= expand_unreachable_stmt (nextt
, warn_notreached
);
421 tree nextt
= ELSE_CLAUSE (t
);
422 expand_start_else ();
423 if (cond
&& integer_nonzerop (cond
))
424 nextt
= expand_unreachable_stmt (nextt
, warn_notreached
);
430 /* Generate the RTL for T, which is a WHILE_STMT. */
433 genrtl_while_stmt (tree t
)
435 tree cond
= WHILE_COND (t
);
438 emit_line_note (input_location
);
439 expand_start_loop (1);
440 genrtl_do_pushlevel ();
442 if (cond
&& !integer_nonzerop (cond
))
444 cond
= expand_cond (cond
);
445 emit_line_note (input_location
);
446 expand_exit_loop_top_cond (0, cond
);
447 genrtl_do_pushlevel ();
450 expand_stmt (WHILE_BODY (t
));
455 /* Generate the RTL for a DO_STMT with condition COND and loop BODY
456 body. This is reused for expanding unreachable WHILE_STMTS. */
459 genrtl_do_stmt_1 (tree cond
, tree body
)
461 /* Recognize the common special-case of do { ... } while (0) and do
462 not emit the loop widgetry in this case. In particular this
463 avoids cluttering the rtl with dummy loop notes, which can affect
464 alignment of adjacent labels. COND can be NULL due to parse
466 if (!cond
|| integer_zerop (cond
))
468 expand_start_null_loop ();
470 expand_end_null_loop ();
472 else if (integer_nonzerop (cond
))
475 emit_line_note (input_location
);
476 expand_start_loop (1);
480 emit_line_note (input_location
);
486 emit_line_note (input_location
);
487 expand_start_loop_continue_elsewhere (1);
491 expand_loop_continue_here ();
492 cond
= expand_cond (cond
);
493 emit_line_note (input_location
);
494 expand_exit_loop_if_false (0, cond
);
499 /* Generate the RTL for T, which is a DO_STMT. */
502 genrtl_do_stmt (tree t
)
504 genrtl_do_stmt_1 (DO_COND (t
), DO_BODY (t
));
507 /* Build the node for a return statement and return it. */
510 build_return_stmt (tree expr
)
512 return (build_stmt (RETURN_STMT
, expr
));
515 /* Generate the RTL for STMT, which is a RETURN_STMT. */
518 genrtl_return_stmt (tree stmt
)
522 expr
= RETURN_STMT_EXPR (stmt
);
524 emit_line_note (input_location
);
526 expand_null_return ();
529 expand_start_target_temps ();
530 expand_return (expr
);
531 expand_end_target_temps ();
535 /* Generate the RTL for T, which is a FOR_STMT. */
538 genrtl_for_stmt (tree t
)
540 tree cond
= FOR_COND (t
);
541 location_t saved_loc
;
543 if (NEW_FOR_SCOPE_P (t
))
544 genrtl_do_pushlevel ();
546 expand_stmt (FOR_INIT_STMT (t
));
548 /* Expand the initialization. */
550 emit_line_note (input_location
);
552 expand_start_loop_continue_elsewhere (1);
554 expand_start_loop (1);
555 genrtl_do_pushlevel ();
557 /* Save the filename and line number so that we expand the FOR_EXPR
558 we can reset them back to the saved values. */
559 saved_loc
= input_location
;
561 /* Expand the condition. */
562 if (cond
&& !integer_nonzerop (cond
))
564 cond
= expand_cond (cond
);
565 emit_line_note (input_location
);
566 expand_exit_loop_top_cond (0, cond
);
567 genrtl_do_pushlevel ();
570 /* Expand the body. */
571 expand_stmt (FOR_BODY (t
));
573 /* Expand the increment expression. */
574 input_location
= saved_loc
;
575 emit_line_note (input_location
);
578 expand_loop_continue_here ();
579 genrtl_expr_stmt (FOR_EXPR (t
));
584 /* Build a break statement node and return it. */
587 build_break_stmt (void)
589 return (build_stmt (BREAK_STMT
));
592 /* Generate the RTL for a BREAK_STMT. */
595 genrtl_break_stmt (void)
597 emit_line_note (input_location
);
598 if ( ! expand_exit_something ())
599 error ("break statement not within loop or switch");
602 /* Build a continue statement node and return it. */
605 build_continue_stmt (void)
607 return (build_stmt (CONTINUE_STMT
));
610 /* Generate the RTL for a CONTINUE_STMT. */
613 genrtl_continue_stmt (void)
615 emit_line_note (input_location
);
616 if (! expand_continue_loop (0))
617 error ("continue statement not within a loop");
620 /* Generate the RTL for T, which is a SCOPE_STMT. */
623 genrtl_scope_stmt (tree t
)
625 tree block
= SCOPE_STMT_BLOCK (t
);
627 if (!SCOPE_NO_CLEANUPS_P (t
))
629 if (SCOPE_BEGIN_P (t
))
630 expand_start_bindings_and_block (2 * SCOPE_NULLIFIED_P (t
), block
);
631 else if (SCOPE_END_P (t
))
632 expand_end_bindings (NULL_TREE
, !SCOPE_NULLIFIED_P (t
), 0);
634 else if (!SCOPE_NULLIFIED_P (t
))
636 rtx note
= emit_note (SCOPE_BEGIN_P (t
)
637 ? NOTE_INSN_BLOCK_BEG
: NOTE_INSN_BLOCK_END
);
638 NOTE_BLOCK (note
) = block
;
641 /* If we're at the end of a scope that contains inlined nested
642 functions, we have to decide whether or not to write them out. */
643 if (block
&& SCOPE_END_P (t
))
647 for (fn
= BLOCK_VARS (block
); fn
; fn
= TREE_CHAIN (fn
))
649 if (TREE_CODE (fn
) == FUNCTION_DECL
650 && DECL_CONTEXT (fn
) == current_function_decl
651 && DECL_SAVED_INSNS (fn
)
652 && !TREE_ASM_WRITTEN (fn
)
653 && TREE_ADDRESSABLE (fn
))
655 push_function_context ();
656 output_inline_function (fn
);
657 pop_function_context ();
663 /* Generate the RTL for T, which is a SWITCH_STMT. */
666 genrtl_switch_stmt (tree t
)
669 genrtl_do_pushlevel ();
671 cond
= expand_cond (SWITCH_COND (t
));
672 if (cond
== error_mark_node
)
673 /* The code is in error, but we don't want expand_end_case to
675 cond
= boolean_false_node
;
677 emit_line_note (input_location
);
678 expand_start_case (1, cond
, TREE_TYPE (cond
), "switch statement");
679 expand_stmt (expand_unreachable_stmt (SWITCH_BODY (t
), warn_notreached
));
680 expand_end_case_type (cond
, SWITCH_TYPE (t
));
683 /* Create a CASE_LABEL tree node and return it. */
686 build_case_label (tree low_value
, tree high_value
, tree label_decl
)
688 return build_stmt (CASE_LABEL
, low_value
, high_value
, label_decl
);
692 /* Generate the RTL for a CASE_LABEL. */
695 genrtl_case_label (tree case_label
)
700 cleanup
= last_cleanup_this_contour ();
703 static int explained
= 0;
704 warning ("destructor needed for `%D'", (TREE_PURPOSE (cleanup
)));
705 warning ("where case label appears here");
708 warning ("(enclose actions of previous case statements requiring destructors in their own scope.)");
713 add_case_node (CASE_LOW (case_label
), CASE_HIGH (case_label
),
714 CASE_LABEL_DECL (case_label
), &duplicate
);
717 /* Generate the RTL for T, which is a COMPOUND_STMT. */
720 genrtl_compound_stmt (tree t
)
722 #ifdef ENABLE_CHECKING
723 struct nesting
*n
= current_nesting_level ();
726 expand_stmt (COMPOUND_BODY (t
));
728 #ifdef ENABLE_CHECKING
729 /* Make sure that we've pushed and popped the same number of levels. */
730 if (!COMPOUND_STMT_NO_SCOPE (t
) && n
!= current_nesting_level ())
735 /* Generate the RTL for an ASM_STMT. */
738 genrtl_asm_stmt (tree cv_qualifier
, tree string
, tree output_operands
,
739 tree input_operands
, tree clobbers
, int asm_input_p
)
741 if (cv_qualifier
!= NULL_TREE
742 && cv_qualifier
!= ridpointers
[(int) RID_VOLATILE
])
744 warning ("%s qualifier ignored on asm",
745 IDENTIFIER_POINTER (cv_qualifier
));
746 cv_qualifier
= NULL_TREE
;
749 emit_line_note (input_location
);
751 expand_asm (string
, cv_qualifier
!= NULL_TREE
);
753 c_expand_asm_operands (string
, output_operands
, input_operands
,
754 clobbers
, cv_qualifier
!= NULL_TREE
,
755 input_filename
, input_line
);
758 /* Generate the RTL for a CLEANUP_STMT. */
761 genrtl_cleanup_stmt (tree t
)
763 tree decl
= CLEANUP_DECL (t
);
764 if (!decl
|| (DECL_SIZE (decl
) && TREE_TYPE (decl
) != error_mark_node
))
765 expand_decl_cleanup_eh (decl
, CLEANUP_EXPR (t
), CLEANUP_EH_ONLY (t
));
768 /* We're about to expand T, a statement. Set up appropriate context
769 for the substitution. */
774 if (!STMT_LINENO_FOR_FN_P (t
))
775 input_line
= STMT_LINENO (t
);
776 current_stmt_tree ()->stmts_are_full_exprs_p
= STMT_IS_FULL_EXPR_P (t
);
779 /* Generate the RTL for the statement T, its substatements, and any
780 other statements at its nesting level. */
785 while (t
&& t
!= error_mark_node
)
787 int saved_stmts_are_full_exprs_p
;
789 /* Set up context appropriately for handling this statement. */
790 saved_stmts_are_full_exprs_p
= stmts_are_full_exprs_p ();
793 switch (TREE_CODE (t
))
796 input_filename
= FILE_STMT_FILENAME (t
);
800 genrtl_return_stmt (t
);
801 t
= expand_unreachable_stmt (TREE_CHAIN (t
), warn_notreached
);
805 genrtl_expr_stmt_value (EXPR_STMT_EXPR (t
), TREE_ADDRESSABLE (t
),
806 TREE_CHAIN (t
) == NULL
807 || (TREE_CODE (TREE_CHAIN (t
)) == SCOPE_STMT
808 && TREE_CHAIN (TREE_CHAIN (t
)) == NULL
));
812 genrtl_decl_stmt (t
);
820 genrtl_while_stmt (t
);
832 genrtl_compound_stmt (t
);
836 genrtl_break_stmt ();
837 t
= expand_unreachable_stmt (TREE_CHAIN (t
), warn_notreached
);
841 genrtl_continue_stmt ();
842 t
= expand_unreachable_stmt (TREE_CHAIN (t
), warn_notreached
);
846 genrtl_switch_stmt (t
);
850 genrtl_case_label (t
);
854 expand_label (LABEL_STMT_LABEL (t
));
858 /* Emit information for branch prediction. */
860 && TREE_CODE (GOTO_DESTINATION (t
)) == LABEL_DECL
861 && flag_guess_branch_prob
)
863 rtx note
= emit_note (NOTE_INSN_PREDICTION
);
865 NOTE_PREDICTION (note
) = NOTE_PREDICT (PRED_GOTO
, NOT_TAKEN
);
867 genrtl_goto_stmt (GOTO_DESTINATION (t
));
868 t
= expand_unreachable_stmt (TREE_CHAIN (t
), warn_notreached
);
872 genrtl_asm_stmt (ASM_CV_QUAL (t
), ASM_STRING (t
),
873 ASM_OUTPUTS (t
), ASM_INPUTS (t
),
874 ASM_CLOBBERS (t
), ASM_INPUT_P (t
));
878 genrtl_scope_stmt (t
);
882 genrtl_cleanup_stmt (t
);
886 if (lang_expand_stmt
)
887 (*lang_expand_stmt
) (t
);
893 /* Go on to the next statement in this scope. */
897 /* Restore saved state. */
898 current_stmt_tree ()->stmts_are_full_exprs_p
899 = saved_stmts_are_full_exprs_p
;
903 /* If *TP is a potentially reachable label, return nonzero. */
906 find_reachable_label_1 (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
907 void *data ATTRIBUTE_UNUSED
)
909 switch (TREE_CODE (*tp
))
921 /* Determine whether expression EXP contains a potentially
924 find_reachable_label (tree exp
)
926 location_t saved_loc
= input_location
;
927 tree ret
= walk_tree_without_duplicates
928 (&exp
, find_reachable_label_1
, NULL
);
929 input_location
= saved_loc
;
933 /* Expand an unreachable if statement, T. This function returns
934 true if the IF_STMT contains a potentially reachable code_label. */
936 expand_unreachable_if_stmt (tree t
)
940 if (find_reachable_label (IF_COND (t
)) != NULL_TREE
)
946 if (THEN_CLAUSE (t
) && ELSE_CLAUSE (t
))
948 n
= expand_unreachable_stmt (THEN_CLAUSE (t
), 0);
954 label
= gen_label_rtx ();
956 expand_stmt (expand_unreachable_stmt (ELSE_CLAUSE (t
), 0));
961 n
= expand_unreachable_stmt (ELSE_CLAUSE (t
), 0);
963 else if (THEN_CLAUSE (t
))
964 n
= expand_unreachable_stmt (THEN_CLAUSE (t
), 0);
965 else if (ELSE_CLAUSE (t
))
966 n
= expand_unreachable_stmt (ELSE_CLAUSE (t
), 0);
972 return n
!= NULL_TREE
;
975 /* Expand an unreachable statement list. This function skips all
976 statements preceding the first potentially reachable label and
977 then returns the label (or, in same cases, the statement after
978 one containing the label). */
980 expand_unreachable_stmt (tree t
, int warn
)
984 while (t
&& t
!= error_mark_node
)
987 switch (TREE_CODE (t
))
995 if (!STMT_LINENO_FOR_FN_P (t
))
996 input_line
= STMT_LINENO (t
);
997 warning("will never be executed");
1005 switch (TREE_CODE (t
))
1013 input_filename
= FILE_STMT_FILENAME (t
);
1017 if (find_reachable_label (RETURN_STMT_EXPR (t
)) != NULL_TREE
)
1022 if (find_reachable_label (EXPR_STMT_EXPR (t
)) != NULL_TREE
)
1027 if (expand_unreachable_if_stmt (t
))
1028 return TREE_CHAIN (t
);
1032 /* If the start of a while statement is unreachable, there is
1033 no need to rotate the loop, instead the WHILE_STMT can be
1034 expanded like a DO_STMT. */
1035 genrtl_do_stmt_1 (WHILE_COND (t
), WHILE_BODY (t
));
1036 return TREE_CHAIN (t
);
1041 n
= expand_unreachable_stmt (COMPOUND_BODY (t
), warn
);
1045 return TREE_CHAIN (t
);
1052 saved
= stmts_are_full_exprs_p ();
1054 genrtl_scope_stmt (t
);
1055 current_stmt_tree ()->stmts_are_full_exprs_p
= saved
;