1 /* Tree lowering pass. Lowers GIMPLE into unstructured form.
3 Copyright (C) 2003, 2005 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
24 #include "coretypes.h"
29 #include "tree-gimple.h"
30 #include "tree-inline.h"
31 #include "diagnostic.h"
32 #include "langhooks.h"
33 #include "langhooks-def.h"
34 #include "tree-flow.h"
42 #include "tree-pass.h"
46 /* Block the current statement belongs to. */
49 /* A TREE_LIST of label and return statements to be moved to the end
51 tree return_statements
;
54 static void lower_stmt (tree_stmt_iterator
*, struct lower_data
*);
55 static void lower_bind_expr (tree_stmt_iterator
*, struct lower_data
*);
56 static void lower_cond_expr (tree_stmt_iterator
*, struct lower_data
*);
57 static void lower_return_expr (tree_stmt_iterator
*, struct lower_data
*);
59 /* Lowers the body of current_function_decl. */
62 lower_function_body (void)
64 struct lower_data data
;
65 tree
*body_p
= &DECL_SAVED_TREE (current_function_decl
);
70 gcc_assert (TREE_CODE (bind
) == BIND_EXPR
);
72 data
.block
= DECL_INITIAL (current_function_decl
);
73 BLOCK_SUBBLOCKS (data
.block
) = NULL_TREE
;
74 BLOCK_CHAIN (data
.block
) = NULL_TREE
;
75 TREE_ASM_WRITTEN (data
.block
) = 1;
77 data
.return_statements
= NULL_TREE
;
79 *body_p
= alloc_stmt_list ();
80 i
= tsi_start (*body_p
);
81 tsi_link_after (&i
, bind
, TSI_NEW_STMT
);
82 lower_bind_expr (&i
, &data
);
84 i
= tsi_last (*body_p
);
86 /* If the function falls off the end, we need a null return statement.
87 If we've already got one in the return_statements list, we don't
88 need to do anything special. Otherwise build one by hand. */
89 if (block_may_fallthru (*body_p
)
90 && (data
.return_statements
== NULL
91 || TREE_OPERAND (TREE_VALUE (data
.return_statements
), 0) != NULL
))
93 x
= build1 (RETURN_EXPR
, void_type_node
, NULL
);
94 SET_EXPR_LOCATION (x
, cfun
->function_end_locus
);
95 tsi_link_after (&i
, x
, TSI_CONTINUE_LINKING
);
98 /* If we lowered any return statements, emit the representative
99 at the end of the function. */
100 for (t
= data
.return_statements
; t
; t
= TREE_CHAIN (t
))
102 x
= build1 (LABEL_EXPR
, void_type_node
, TREE_PURPOSE (t
));
103 tsi_link_after (&i
, x
, TSI_CONTINUE_LINKING
);
105 /* Remove the line number from the representative return statement.
106 It now fills in for many such returns. Failure to remove this
107 will result in incorrect results for coverage analysis. */
109 #ifdef USE_MAPPED_LOCATION
110 SET_EXPR_LOCATION (x
, UNKNOWN_LOCATION
);
112 SET_EXPR_LOCUS (x
, NULL
);
114 tsi_link_after (&i
, x
, TSI_CONTINUE_LINKING
);
117 gcc_assert (data
.block
== DECL_INITIAL (current_function_decl
));
118 BLOCK_SUBBLOCKS (data
.block
)
119 = blocks_nreverse (BLOCK_SUBBLOCKS (data
.block
));
121 clear_block_marks (data
.block
);
124 struct tree_opt_pass pass_lower_cf
=
128 lower_function_body
, /* execute */
131 0, /* static_pass_number */
133 PROP_gimple_any
, /* properties_required */
134 PROP_gimple_lcf
, /* properties_provided */
135 PROP_gimple_any
, /* properties_destroyed */
136 0, /* todo_flags_start */
137 TODO_dump_func
, /* todo_flags_finish */
142 /* Lowers the EXPR. Unlike gimplification the statements are not relowered
143 when they are changed -- if this has to be done, the lowering routine must
144 do it explicitly. DATA is passed through the recursion. */
147 lower_stmt_body (tree expr
, struct lower_data
*data
)
149 tree_stmt_iterator tsi
;
151 for (tsi
= tsi_start (expr
); !tsi_end_p (tsi
); )
152 lower_stmt (&tsi
, data
);
155 /* Lowers statement TSI. DATA is passed through the recursion. */
158 lower_stmt (tree_stmt_iterator
*tsi
, struct lower_data
*data
)
160 tree stmt
= tsi_stmt (*tsi
);
162 if (EXPR_HAS_LOCATION (stmt
) && data
)
163 TREE_BLOCK (stmt
) = data
->block
;
165 switch (TREE_CODE (stmt
))
168 lower_bind_expr (tsi
, data
);
171 lower_cond_expr (tsi
, data
);
174 lower_return_expr (tsi
, data
);
177 case TRY_FINALLY_EXPR
:
179 lower_stmt_body (TREE_OPERAND (stmt
, 0), data
);
180 lower_stmt_body (TREE_OPERAND (stmt
, 1), data
);
183 lower_stmt_body (CATCH_BODY (stmt
), data
);
186 lower_stmt_body (EH_FILTER_FAILURE (stmt
), data
);
199 #ifdef ENABLE_CHECKING
200 print_node_brief (stderr
, "", stmt
, 0);
201 internal_error ("unexpected node");
210 /* Lowers a bind_expr TSI. DATA is passed through the recursion. */
213 lower_bind_expr (tree_stmt_iterator
*tsi
, struct lower_data
*data
)
215 tree old_block
= data
->block
;
216 tree stmt
= tsi_stmt (*tsi
);
217 tree new_block
= BIND_EXPR_BLOCK (stmt
);
221 if (new_block
== old_block
)
223 /* The outermost block of the original function may not be the
224 outermost statement chain of the gimplified function. So we
225 may see the outermost block just inside the function. */
226 gcc_assert (new_block
== DECL_INITIAL (current_function_decl
));
231 /* We do not expect to handle duplicate blocks. */
232 gcc_assert (!TREE_ASM_WRITTEN (new_block
));
233 TREE_ASM_WRITTEN (new_block
) = 1;
235 /* Block tree may get clobbered by inlining. Normally this would
236 be fixed in rest_of_decl_compilation using block notes, but
237 since we are not going to emit them, it is up to us. */
238 BLOCK_CHAIN (new_block
) = BLOCK_SUBBLOCKS (old_block
);
239 BLOCK_SUBBLOCKS (old_block
) = new_block
;
240 BLOCK_SUBBLOCKS (new_block
) = NULL_TREE
;
241 BLOCK_SUPERCONTEXT (new_block
) = old_block
;
243 data
->block
= new_block
;
247 record_vars (BIND_EXPR_VARS (stmt
));
248 lower_stmt_body (BIND_EXPR_BODY (stmt
), data
);
252 gcc_assert (data
->block
== new_block
);
254 BLOCK_SUBBLOCKS (new_block
)
255 = blocks_nreverse (BLOCK_SUBBLOCKS (new_block
));
256 data
->block
= old_block
;
259 /* The BIND_EXPR no longer carries any useful information -- kill it. */
260 tsi_link_before (tsi
, BIND_EXPR_BODY (stmt
), TSI_SAME_STMT
);
264 /* Try to determine whether a TRY_CATCH expression can fall through.
265 This is a subroutine of block_may_fallthru. */
268 try_catch_may_fallthru (tree stmt
)
270 tree_stmt_iterator i
;
272 /* If the TRY block can fall through, the whole TRY_CATCH can
274 if (block_may_fallthru (TREE_OPERAND (stmt
, 0)))
277 i
= tsi_start (TREE_OPERAND (stmt
, 1));
278 switch (TREE_CODE (tsi_stmt (i
)))
281 /* We expect to see a sequence of CATCH_EXPR trees, each with a
282 catch expression and a body. The whole TRY_CATCH may fall
283 through iff any of the catch bodies falls through. */
284 for (; !tsi_end_p (i
); tsi_next (&i
))
286 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i
))))
292 /* The exception filter expression only matters if there is an
293 exception. If the exception does not match EH_FILTER_TYPES,
294 we will execute EH_FILTER_FAILURE, and we will fall through
295 if that falls through. If the exception does match
296 EH_FILTER_TYPES, the stack unwinder will continue up the
297 stack, so we will not fall through. We don't know whether we
298 will throw an exception which matches EH_FILTER_TYPES or not,
299 so we just ignore EH_FILTER_TYPES and assume that we might
300 throw an exception which doesn't match. */
301 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i
)));
304 /* This case represents statements to be executed when an
305 exception occurs. Those statements are implicitly followed
306 by a RESX_EXPR to resume execution after the exception. So
307 in this case the TRY_CATCH never falls through. */
312 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
313 need not be 100% accurate; simply be conservative and return true if we
314 don't know. This is used only to avoid stupidly generating extra code.
315 If we're wrong, we'll just delete the extra code later. */
318 block_may_fallthru (tree block
)
320 tree stmt
= expr_last (block
);
322 switch (stmt
? TREE_CODE (stmt
) : ERROR_MARK
)
327 /* Easy cases. If the last statement of the block implies
328 control transfer, then we can't fall through. */
332 /* If SWITCH_LABELS is set, this is lowered, and represents a
333 branch to a selected label and hence can not fall through.
334 Otherwise SWITCH_BODY is set, and the switch can fall
336 return SWITCH_LABELS (stmt
) == NULL_TREE
;
339 if (block_may_fallthru (COND_EXPR_THEN (stmt
)))
341 return block_may_fallthru (COND_EXPR_ELSE (stmt
));
344 return block_may_fallthru (BIND_EXPR_BODY (stmt
));
347 return try_catch_may_fallthru (stmt
);
349 case TRY_FINALLY_EXPR
:
350 /* The finally clause is always executed after the try clause,
351 so if it does not fall through, then the try-finally will not
352 fall through. Otherwise, if the try clause does not fall
353 through, then when the finally clause falls through it will
354 resume execution wherever the try clause was going. So the
355 whole try-finally will only fall through if both the try
356 clause and the finally clause fall through. */
357 return (block_may_fallthru (TREE_OPERAND (stmt
, 0))
358 && block_may_fallthru (TREE_OPERAND (stmt
, 1)));
361 if (TREE_CODE (TREE_OPERAND (stmt
, 1)) == CALL_EXPR
)
362 stmt
= TREE_OPERAND (stmt
, 1);
368 /* Functions that do not return do not fall through. */
369 return (call_expr_flags (stmt
) & ECF_NORETURN
) == 0;
371 case CLEANUP_POINT_EXPR
:
372 return block_may_fallthru (TREE_OPERAND (stmt
, 0));
379 /* Lowers a cond_expr TSI. DATA is passed through the recursion. */
382 lower_cond_expr (tree_stmt_iterator
*tsi
, struct lower_data
*data
)
384 tree stmt
= tsi_stmt (*tsi
);
385 bool then_is_goto
, else_is_goto
;
386 tree then_branch
, else_branch
;
387 tree then_goto
, else_goto
;
389 then_branch
= COND_EXPR_THEN (stmt
);
390 else_branch
= COND_EXPR_ELSE (stmt
);
392 lower_stmt_body (then_branch
, data
);
393 lower_stmt_body (else_branch
, data
);
395 then_goto
= expr_only (then_branch
);
396 then_is_goto
= then_goto
&& simple_goto_p (then_goto
);
398 else_goto
= expr_only (else_branch
);
399 else_is_goto
= else_goto
&& simple_goto_p (else_goto
);
401 if (!then_is_goto
|| !else_is_goto
)
403 tree then_label
, else_label
, end_label
, t
;
405 then_label
= NULL_TREE
;
406 else_label
= NULL_TREE
;
407 end_label
= NULL_TREE
;
409 /* Replace the cond_expr with explicit gotos. */
412 t
= build1 (LABEL_EXPR
, void_type_node
, NULL_TREE
);
413 if (TREE_SIDE_EFFECTS (then_branch
))
417 then_goto
= build_and_jump (&LABEL_EXPR_LABEL (t
));
422 t
= build1 (LABEL_EXPR
, void_type_node
, NULL_TREE
);
423 if (TREE_SIDE_EFFECTS (else_branch
))
427 /* Both THEN and ELSE can be no-ops if one or both contained an
428 empty BIND_EXPR that was associated with the toplevel block
429 of an inlined function. In that case remove_useless_stmts
430 can't have cleaned things up for us; kill the whole
440 else_goto
= build_and_jump (&LABEL_EXPR_LABEL (t
));
445 bool may_fallthru
= block_may_fallthru (then_branch
);
447 tsi_link_after (tsi
, then_label
, TSI_CONTINUE_LINKING
);
448 tsi_link_after (tsi
, then_branch
, TSI_CONTINUE_LINKING
);
450 if (else_label
&& may_fallthru
)
452 end_label
= build1 (LABEL_EXPR
, void_type_node
, NULL_TREE
);
453 t
= build_and_jump (&LABEL_EXPR_LABEL (end_label
));
454 tsi_link_after (tsi
, t
, TSI_CONTINUE_LINKING
);
460 tsi_link_after (tsi
, else_label
, TSI_CONTINUE_LINKING
);
461 tsi_link_after (tsi
, else_branch
, TSI_CONTINUE_LINKING
);
465 tsi_link_after (tsi
, end_label
, TSI_CONTINUE_LINKING
);
468 COND_EXPR_THEN (stmt
) = then_goto
;
469 COND_EXPR_ELSE (stmt
) = else_goto
;
475 lower_return_expr (tree_stmt_iterator
*tsi
, struct lower_data
*data
)
477 tree stmt
= tsi_stmt (*tsi
);
478 tree value
, t
, label
;
480 /* Extract the value being returned. */
481 value
= TREE_OPERAND (stmt
, 0);
482 if (value
&& TREE_CODE (value
) == MODIFY_EXPR
)
483 value
= TREE_OPERAND (value
, 1);
485 /* Match this up with an existing return statement that's been created. */
486 for (t
= data
->return_statements
; t
; t
= TREE_CHAIN (t
))
488 tree tvalue
= TREE_OPERAND (TREE_VALUE (t
), 0);
489 if (tvalue
&& TREE_CODE (tvalue
) == MODIFY_EXPR
)
490 tvalue
= TREE_OPERAND (tvalue
, 1);
494 label
= TREE_PURPOSE (t
);
499 /* Not found. Create a new label and record the return statement. */
500 label
= create_artificial_label ();
501 data
->return_statements
= tree_cons (label
, stmt
, data
->return_statements
);
503 /* Generate a goto statement and remove the return statement. */
505 t
= build1 (GOTO_EXPR
, void_type_node
, label
);
506 SET_EXPR_LOCUS (t
, EXPR_LOCUS (stmt
));
507 tsi_link_before (tsi
, t
, TSI_SAME_STMT
);
512 /* Record the variables in VARS. */
515 record_vars (tree vars
)
517 for (; vars
; vars
= TREE_CHAIN (vars
))
521 /* BIND_EXPRs contains also function/type/constant declarations
522 we don't need to care about. */
523 if (TREE_CODE (var
) != VAR_DECL
)
525 /* Nothing to do in this case. */
526 if (DECL_EXTERNAL (var
))
529 /* Record the variable. */
530 cfun
->unexpanded_var_list
= tree_cons (NULL_TREE
, var
,
531 cfun
->unexpanded_var_list
);
536 /* Mark BLOCK used if it has a used variable in it, then recurse over its
540 mark_blocks_with_used_vars (tree block
)
545 if (!TREE_USED (block
))
547 for (var
= BLOCK_VARS (block
);
549 var
= TREE_CHAIN (var
))
553 TREE_USED (block
) = true;
558 for (subblock
= BLOCK_SUBBLOCKS (block
);
560 subblock
= BLOCK_CHAIN (subblock
))
561 mark_blocks_with_used_vars (subblock
);
564 /* Mark the used attribute on blocks correctly. */
567 mark_used_blocks (void)
569 mark_blocks_with_used_vars (DECL_INITIAL (current_function_decl
));
573 struct tree_opt_pass pass_mark_used_blocks
=
577 mark_used_blocks
, /* execute */
580 0, /* static_pass_number */
582 0, /* properties_required */
583 0, /* properties_provided */
584 0, /* properties_destroyed */
585 0, /* todo_flags_start */
586 TODO_dump_func
, /* todo_flags_finish */