tree-flow.h: Include new .h files.
[gcc.git] / gcc / gimple-low.c
1 /* GIMPLE lowering pass. Converts High GIMPLE into Low GIMPLE.
2
3 Copyright (C) 2003-2013 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
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 3, or (at your option) any later
10 version.
11
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
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "gimple.h"
27 #include "tree-iterator.h"
28 #include "tree-inline.h"
29 #include "tree-ssa.h"
30 #include "flags.h"
31 #include "function.h"
32 #include "diagnostic-core.h"
33 #include "tree-pass.h"
34 #include "langhooks.h"
35
36 /* The differences between High GIMPLE and Low GIMPLE are the
37 following:
38
39 1- Lexical scopes are removed (i.e., GIMPLE_BIND disappears).
40
41 2- GIMPLE_TRY and GIMPLE_CATCH are converted to abnormal control
42 flow and exception regions are built as an on-the-side region
43 hierarchy (See tree-eh.c:lower_eh_constructs).
44
45 3- Multiple identical return statements are grouped into a single
46 return and gotos to the unique return site. */
47
48 /* Match a return statement with a label. During lowering, we identify
49 identical return statements and replace duplicates with a jump to
50 the corresponding label. */
51 struct return_statements_t
52 {
53 tree label;
54 gimple stmt;
55 };
56 typedef struct return_statements_t return_statements_t;
57
58
59 struct lower_data
60 {
61 /* Block the current statement belongs to. */
62 tree block;
63
64 /* A vector of label and return statements to be moved to the end
65 of the function. */
66 vec<return_statements_t> return_statements;
67
68 /* True if the current statement cannot fall through. */
69 bool cannot_fallthru;
70
71 /* True if the function calls __builtin_setjmp. */
72 bool calls_builtin_setjmp;
73 };
74
75 static void lower_stmt (gimple_stmt_iterator *, struct lower_data *);
76 static void lower_gimple_bind (gimple_stmt_iterator *, struct lower_data *);
77 static void lower_try_catch (gimple_stmt_iterator *, struct lower_data *);
78 static void lower_gimple_return (gimple_stmt_iterator *, struct lower_data *);
79 static void lower_builtin_setjmp (gimple_stmt_iterator *);
80
81
82 /* Lower the body of current_function_decl from High GIMPLE into Low
83 GIMPLE. */
84
85 static unsigned int
86 lower_function_body (void)
87 {
88 struct lower_data data;
89 gimple_seq body = gimple_body (current_function_decl);
90 gimple_seq lowered_body;
91 gimple_stmt_iterator i;
92 gimple bind;
93 tree t;
94 gimple x;
95
96 /* The gimplifier should've left a body of exactly one statement,
97 namely a GIMPLE_BIND. */
98 gcc_assert (gimple_seq_first (body) == gimple_seq_last (body)
99 && gimple_code (gimple_seq_first_stmt (body)) == GIMPLE_BIND);
100
101 memset (&data, 0, sizeof (data));
102 data.block = DECL_INITIAL (current_function_decl);
103 BLOCK_SUBBLOCKS (data.block) = NULL_TREE;
104 BLOCK_CHAIN (data.block) = NULL_TREE;
105 TREE_ASM_WRITTEN (data.block) = 1;
106 data.return_statements.create (8);
107
108 bind = gimple_seq_first_stmt (body);
109 lowered_body = NULL;
110 gimple_seq_add_stmt (&lowered_body, bind);
111 i = gsi_start (lowered_body);
112 lower_gimple_bind (&i, &data);
113
114 i = gsi_last (lowered_body);
115
116 /* If the function falls off the end, we need a null return statement.
117 If we've already got one in the return_statements vector, we don't
118 need to do anything special. Otherwise build one by hand. */
119 if (gimple_seq_may_fallthru (lowered_body)
120 && (data.return_statements.is_empty ()
121 || (gimple_return_retval (data.return_statements.last().stmt)
122 != NULL)))
123 {
124 x = gimple_build_return (NULL);
125 gimple_set_location (x, cfun->function_end_locus);
126 gimple_set_block (x, DECL_INITIAL (current_function_decl));
127 gsi_insert_after (&i, x, GSI_CONTINUE_LINKING);
128 }
129
130 /* If we lowered any return statements, emit the representative
131 at the end of the function. */
132 while (!data.return_statements.is_empty ())
133 {
134 return_statements_t t = data.return_statements.pop ();
135 x = gimple_build_label (t.label);
136 gsi_insert_after (&i, x, GSI_CONTINUE_LINKING);
137 gsi_insert_after (&i, t.stmt, GSI_CONTINUE_LINKING);
138 }
139
140 /* If the function calls __builtin_setjmp, we need to emit the computed
141 goto that will serve as the unique dispatcher for all the receivers. */
142 if (data.calls_builtin_setjmp)
143 {
144 tree disp_label, disp_var, arg;
145
146 /* Build 'DISP_LABEL:' and insert. */
147 disp_label = create_artificial_label (cfun->function_end_locus);
148 /* This mark will create forward edges from every call site. */
149 DECL_NONLOCAL (disp_label) = 1;
150 cfun->has_nonlocal_label = 1;
151 x = gimple_build_label (disp_label);
152 gsi_insert_after (&i, x, GSI_CONTINUE_LINKING);
153
154 /* Build 'DISP_VAR = __builtin_setjmp_dispatcher (DISP_LABEL);'
155 and insert. */
156 disp_var = create_tmp_var (ptr_type_node, "setjmpvar");
157 arg = build_addr (disp_label, current_function_decl);
158 t = builtin_decl_implicit (BUILT_IN_SETJMP_DISPATCHER);
159 x = gimple_build_call (t, 1, arg);
160 gimple_call_set_lhs (x, disp_var);
161
162 /* Build 'goto DISP_VAR;' and insert. */
163 gsi_insert_after (&i, x, GSI_CONTINUE_LINKING);
164 x = gimple_build_goto (disp_var);
165 gsi_insert_after (&i, x, GSI_CONTINUE_LINKING);
166 }
167
168 /* Once the old body has been lowered, replace it with the new
169 lowered sequence. */
170 gimple_set_body (current_function_decl, lowered_body);
171
172 gcc_assert (data.block == DECL_INITIAL (current_function_decl));
173 BLOCK_SUBBLOCKS (data.block)
174 = blocks_nreverse (BLOCK_SUBBLOCKS (data.block));
175
176 clear_block_marks (data.block);
177 data.return_statements.release ();
178 return 0;
179 }
180
181 namespace {
182
183 const pass_data pass_data_lower_cf =
184 {
185 GIMPLE_PASS, /* type */
186 "lower", /* name */
187 OPTGROUP_NONE, /* optinfo_flags */
188 false, /* has_gate */
189 true, /* has_execute */
190 TV_NONE, /* tv_id */
191 PROP_gimple_any, /* properties_required */
192 PROP_gimple_lcf, /* properties_provided */
193 0, /* properties_destroyed */
194 0, /* todo_flags_start */
195 0, /* todo_flags_finish */
196 };
197
198 class pass_lower_cf : public gimple_opt_pass
199 {
200 public:
201 pass_lower_cf (gcc::context *ctxt)
202 : gimple_opt_pass (pass_data_lower_cf, ctxt)
203 {}
204
205 /* opt_pass methods: */
206 unsigned int execute () { return lower_function_body (); }
207
208 }; // class pass_lower_cf
209
210 } // anon namespace
211
212 gimple_opt_pass *
213 make_pass_lower_cf (gcc::context *ctxt)
214 {
215 return new pass_lower_cf (ctxt);
216 }
217
218
219
220 /* Verify if the type of the argument matches that of the function
221 declaration. If we cannot verify this or there is a mismatch,
222 return false. */
223
224 static bool
225 gimple_check_call_args (gimple stmt, tree fndecl, bool args_count_match)
226 {
227 tree parms, p;
228 unsigned int i, nargs;
229
230 /* Calls to internal functions always match their signature. */
231 if (gimple_call_internal_p (stmt))
232 return true;
233
234 nargs = gimple_call_num_args (stmt);
235
236 /* Get argument types for verification. */
237 if (fndecl)
238 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
239 else
240 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
241
242 /* Verify if the type of the argument matches that of the function
243 declaration. If we cannot verify this or there is a mismatch,
244 return false. */
245 if (fndecl && DECL_ARGUMENTS (fndecl))
246 {
247 for (i = 0, p = DECL_ARGUMENTS (fndecl);
248 i < nargs;
249 i++, p = DECL_CHAIN (p))
250 {
251 tree arg;
252 /* We cannot distinguish a varargs function from the case
253 of excess parameters, still deferring the inlining decision
254 to the callee is possible. */
255 if (!p)
256 break;
257 arg = gimple_call_arg (stmt, i);
258 if (p == error_mark_node
259 || arg == error_mark_node
260 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
261 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
262 return false;
263 }
264 if (args_count_match && p)
265 return false;
266 }
267 else if (parms)
268 {
269 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
270 {
271 tree arg;
272 /* If this is a varargs function defer inlining decision
273 to callee. */
274 if (!p)
275 break;
276 arg = gimple_call_arg (stmt, i);
277 if (TREE_VALUE (p) == error_mark_node
278 || arg == error_mark_node
279 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
280 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
281 && !fold_convertible_p (TREE_VALUE (p), arg)))
282 return false;
283 }
284 }
285 else
286 {
287 if (nargs != 0)
288 return false;
289 }
290 return true;
291 }
292
293 /* Verify if the type of the argument and lhs of CALL_STMT matches
294 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
295 true, the arg count needs to be the same.
296 If we cannot verify this or there is a mismatch, return false. */
297
298 bool
299 gimple_check_call_matching_types (gimple call_stmt, tree callee,
300 bool args_count_match)
301 {
302 tree lhs;
303
304 if ((DECL_RESULT (callee)
305 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
306 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
307 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
308 TREE_TYPE (lhs))
309 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
310 || !gimple_check_call_args (call_stmt, callee, args_count_match))
311 return false;
312 return true;
313 }
314
315 /* Lower sequence SEQ. Unlike gimplification the statements are not relowered
316 when they are changed -- if this has to be done, the lowering routine must
317 do it explicitly. DATA is passed through the recursion. */
318
319 static void
320 lower_sequence (gimple_seq *seq, struct lower_data *data)
321 {
322 gimple_stmt_iterator gsi;
323
324 for (gsi = gsi_start (*seq); !gsi_end_p (gsi); )
325 lower_stmt (&gsi, data);
326 }
327
328
329 /* Lower the OpenMP directive statement pointed by GSI. DATA is
330 passed through the recursion. */
331
332 static void
333 lower_omp_directive (gimple_stmt_iterator *gsi, struct lower_data *data)
334 {
335 gimple stmt;
336
337 stmt = gsi_stmt (*gsi);
338
339 lower_sequence (gimple_omp_body_ptr (stmt), data);
340 gsi_insert_seq_after (gsi, gimple_omp_body (stmt), GSI_CONTINUE_LINKING);
341 gimple_omp_set_body (stmt, NULL);
342 gsi_next (gsi);
343 }
344
345
346 /* Lower statement GSI. DATA is passed through the recursion. We try to
347 track the fallthruness of statements and get rid of unreachable return
348 statements in order to prevent the EH lowering pass from adding useless
349 edges that can cause bogus warnings to be issued later; this guess need
350 not be 100% accurate, simply be conservative and reset cannot_fallthru
351 to false if we don't know. */
352
353 static void
354 lower_stmt (gimple_stmt_iterator *gsi, struct lower_data *data)
355 {
356 gimple stmt = gsi_stmt (*gsi);
357
358 gimple_set_block (stmt, data->block);
359
360 switch (gimple_code (stmt))
361 {
362 case GIMPLE_BIND:
363 lower_gimple_bind (gsi, data);
364 /* Propagate fallthruness. */
365 return;
366
367 case GIMPLE_COND:
368 case GIMPLE_GOTO:
369 case GIMPLE_SWITCH:
370 data->cannot_fallthru = true;
371 gsi_next (gsi);
372 return;
373
374 case GIMPLE_RETURN:
375 if (data->cannot_fallthru)
376 {
377 gsi_remove (gsi, false);
378 /* Propagate fallthruness. */
379 }
380 else
381 {
382 lower_gimple_return (gsi, data);
383 data->cannot_fallthru = true;
384 }
385 return;
386
387 case GIMPLE_TRY:
388 if (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH)
389 lower_try_catch (gsi, data);
390 else
391 {
392 /* It must be a GIMPLE_TRY_FINALLY. */
393 bool cannot_fallthru;
394 lower_sequence (gimple_try_eval_ptr (stmt), data);
395 cannot_fallthru = data->cannot_fallthru;
396
397 /* The finally clause is always executed after the try clause,
398 so if it does not fall through, then the try-finally will not
399 fall through. Otherwise, if the try clause does not fall
400 through, then when the finally clause falls through it will
401 resume execution wherever the try clause was going. So the
402 whole try-finally will only fall through if both the try
403 clause and the finally clause fall through. */
404 data->cannot_fallthru = false;
405 lower_sequence (gimple_try_cleanup_ptr (stmt), data);
406 data->cannot_fallthru |= cannot_fallthru;
407 gsi_next (gsi);
408 }
409 return;
410
411 case GIMPLE_EH_ELSE:
412 lower_sequence (gimple_eh_else_n_body_ptr (stmt), data);
413 lower_sequence (gimple_eh_else_e_body_ptr (stmt), data);
414 break;
415
416 case GIMPLE_NOP:
417 case GIMPLE_ASM:
418 case GIMPLE_ASSIGN:
419 case GIMPLE_PREDICT:
420 case GIMPLE_LABEL:
421 case GIMPLE_EH_MUST_NOT_THROW:
422 case GIMPLE_OMP_FOR:
423 case GIMPLE_OMP_SECTIONS:
424 case GIMPLE_OMP_SECTIONS_SWITCH:
425 case GIMPLE_OMP_SECTION:
426 case GIMPLE_OMP_SINGLE:
427 case GIMPLE_OMP_MASTER:
428 case GIMPLE_OMP_ORDERED:
429 case GIMPLE_OMP_CRITICAL:
430 case GIMPLE_OMP_RETURN:
431 case GIMPLE_OMP_ATOMIC_LOAD:
432 case GIMPLE_OMP_ATOMIC_STORE:
433 case GIMPLE_OMP_CONTINUE:
434 break;
435
436 case GIMPLE_CALL:
437 {
438 tree decl = gimple_call_fndecl (stmt);
439 unsigned i;
440
441 for (i = 0; i < gimple_call_num_args (stmt); i++)
442 {
443 tree arg = gimple_call_arg (stmt, i);
444 if (EXPR_P (arg))
445 TREE_SET_BLOCK (arg, data->block);
446 }
447
448 if (decl
449 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
450 && DECL_FUNCTION_CODE (decl) == BUILT_IN_SETJMP)
451 {
452 lower_builtin_setjmp (gsi);
453 data->cannot_fallthru = false;
454 data->calls_builtin_setjmp = true;
455 return;
456 }
457
458 if (decl && (flags_from_decl_or_type (decl) & ECF_NORETURN))
459 {
460 data->cannot_fallthru = true;
461 gsi_next (gsi);
462 return;
463 }
464 }
465 break;
466
467 case GIMPLE_OMP_PARALLEL:
468 case GIMPLE_OMP_TASK:
469 data->cannot_fallthru = false;
470 lower_omp_directive (gsi, data);
471 data->cannot_fallthru = false;
472 return;
473
474 case GIMPLE_TRANSACTION:
475 lower_sequence (gimple_transaction_body_ptr (stmt), data);
476 break;
477
478 default:
479 gcc_unreachable ();
480 }
481
482 data->cannot_fallthru = false;
483 gsi_next (gsi);
484 }
485
486 /* Lower a bind_expr TSI. DATA is passed through the recursion. */
487
488 static void
489 lower_gimple_bind (gimple_stmt_iterator *gsi, struct lower_data *data)
490 {
491 tree old_block = data->block;
492 gimple stmt = gsi_stmt (*gsi);
493 tree new_block = gimple_bind_block (stmt);
494
495 if (new_block)
496 {
497 if (new_block == old_block)
498 {
499 /* The outermost block of the original function may not be the
500 outermost statement chain of the gimplified function. So we
501 may see the outermost block just inside the function. */
502 gcc_assert (new_block == DECL_INITIAL (current_function_decl));
503 new_block = NULL;
504 }
505 else
506 {
507 /* We do not expect to handle duplicate blocks. */
508 gcc_assert (!TREE_ASM_WRITTEN (new_block));
509 TREE_ASM_WRITTEN (new_block) = 1;
510
511 /* Block tree may get clobbered by inlining. Normally this would
512 be fixed in rest_of_decl_compilation using block notes, but
513 since we are not going to emit them, it is up to us. */
514 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (old_block);
515 BLOCK_SUBBLOCKS (old_block) = new_block;
516 BLOCK_SUBBLOCKS (new_block) = NULL_TREE;
517 BLOCK_SUPERCONTEXT (new_block) = old_block;
518
519 data->block = new_block;
520 }
521 }
522
523 record_vars (gimple_bind_vars (stmt));
524 lower_sequence (gimple_bind_body_ptr (stmt), data);
525
526 if (new_block)
527 {
528 gcc_assert (data->block == new_block);
529
530 BLOCK_SUBBLOCKS (new_block)
531 = blocks_nreverse (BLOCK_SUBBLOCKS (new_block));
532 data->block = old_block;
533 }
534
535 /* The GIMPLE_BIND no longer carries any useful information -- kill it. */
536 gsi_insert_seq_before (gsi, gimple_bind_body (stmt), GSI_SAME_STMT);
537 gsi_remove (gsi, false);
538 }
539
540 /* Same as above, but for a GIMPLE_TRY_CATCH. */
541
542 static void
543 lower_try_catch (gimple_stmt_iterator *gsi, struct lower_data *data)
544 {
545 bool cannot_fallthru;
546 gimple stmt = gsi_stmt (*gsi);
547 gimple_stmt_iterator i;
548
549 /* We don't handle GIMPLE_TRY_FINALLY. */
550 gcc_assert (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH);
551
552 lower_sequence (gimple_try_eval_ptr (stmt), data);
553 cannot_fallthru = data->cannot_fallthru;
554
555 i = gsi_start (*gimple_try_cleanup_ptr (stmt));
556 switch (gimple_code (gsi_stmt (i)))
557 {
558 case GIMPLE_CATCH:
559 /* We expect to see a sequence of GIMPLE_CATCH stmts, each with a
560 catch expression and a body. The whole try/catch may fall
561 through iff any of the catch bodies falls through. */
562 for (; !gsi_end_p (i); gsi_next (&i))
563 {
564 data->cannot_fallthru = false;
565 lower_sequence (gimple_catch_handler_ptr (gsi_stmt (i)), data);
566 if (!data->cannot_fallthru)
567 cannot_fallthru = false;
568 }
569 break;
570
571 case GIMPLE_EH_FILTER:
572 /* The exception filter expression only matters if there is an
573 exception. If the exception does not match EH_FILTER_TYPES,
574 we will execute EH_FILTER_FAILURE, and we will fall through
575 if that falls through. If the exception does match
576 EH_FILTER_TYPES, the stack unwinder will continue up the
577 stack, so we will not fall through. We don't know whether we
578 will throw an exception which matches EH_FILTER_TYPES or not,
579 so we just ignore EH_FILTER_TYPES and assume that we might
580 throw an exception which doesn't match. */
581 data->cannot_fallthru = false;
582 lower_sequence (gimple_eh_filter_failure_ptr (gsi_stmt (i)), data);
583 if (!data->cannot_fallthru)
584 cannot_fallthru = false;
585 break;
586
587 default:
588 /* This case represents statements to be executed when an
589 exception occurs. Those statements are implicitly followed
590 by a GIMPLE_RESX to resume execution after the exception. So
591 in this case the try/catch never falls through. */
592 data->cannot_fallthru = false;
593 lower_sequence (gimple_try_cleanup_ptr (stmt), data);
594 break;
595 }
596
597 data->cannot_fallthru = cannot_fallthru;
598 gsi_next (gsi);
599 }
600
601
602 /* Try to determine whether a TRY_CATCH expression can fall through.
603 This is a subroutine of gimple_stmt_may_fallthru. */
604
605 static bool
606 gimple_try_catch_may_fallthru (gimple stmt)
607 {
608 gimple_stmt_iterator i;
609
610 /* We don't handle GIMPLE_TRY_FINALLY. */
611 gcc_assert (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH);
612
613 /* If the TRY block can fall through, the whole TRY_CATCH can
614 fall through. */
615 if (gimple_seq_may_fallthru (gimple_try_eval (stmt)))
616 return true;
617
618 i = gsi_start (*gimple_try_cleanup_ptr (stmt));
619 switch (gimple_code (gsi_stmt (i)))
620 {
621 case GIMPLE_CATCH:
622 /* We expect to see a sequence of GIMPLE_CATCH stmts, each with a
623 catch expression and a body. The whole try/catch may fall
624 through iff any of the catch bodies falls through. */
625 for (; !gsi_end_p (i); gsi_next (&i))
626 {
627 if (gimple_seq_may_fallthru (gimple_catch_handler (gsi_stmt (i))))
628 return true;
629 }
630 return false;
631
632 case GIMPLE_EH_FILTER:
633 /* The exception filter expression only matters if there is an
634 exception. If the exception does not match EH_FILTER_TYPES,
635 we will execute EH_FILTER_FAILURE, and we will fall through
636 if that falls through. If the exception does match
637 EH_FILTER_TYPES, the stack unwinder will continue up the
638 stack, so we will not fall through. We don't know whether we
639 will throw an exception which matches EH_FILTER_TYPES or not,
640 so we just ignore EH_FILTER_TYPES and assume that we might
641 throw an exception which doesn't match. */
642 return gimple_seq_may_fallthru (gimple_eh_filter_failure (gsi_stmt (i)));
643
644 default:
645 /* This case represents statements to be executed when an
646 exception occurs. Those statements are implicitly followed
647 by a GIMPLE_RESX to resume execution after the exception. So
648 in this case the try/catch never falls through. */
649 return false;
650 }
651 }
652
653
654 /* Try to determine if we can continue executing the statement
655 immediately following STMT. This guess need not be 100% accurate;
656 simply be conservative and return true if we don't know. This is
657 used only to avoid stupidly generating extra code. If we're wrong,
658 we'll just delete the extra code later. */
659
660 bool
661 gimple_stmt_may_fallthru (gimple stmt)
662 {
663 if (!stmt)
664 return true;
665
666 switch (gimple_code (stmt))
667 {
668 case GIMPLE_GOTO:
669 case GIMPLE_RETURN:
670 case GIMPLE_RESX:
671 /* Easy cases. If the last statement of the seq implies
672 control transfer, then we can't fall through. */
673 return false;
674
675 case GIMPLE_SWITCH:
676 /* Switch has already been lowered and represents a branch
677 to a selected label and hence can't fall through. */
678 return false;
679
680 case GIMPLE_COND:
681 /* GIMPLE_COND's are already lowered into a two-way branch. They
682 can't fall through. */
683 return false;
684
685 case GIMPLE_BIND:
686 return gimple_seq_may_fallthru (gimple_bind_body (stmt));
687
688 case GIMPLE_TRY:
689 if (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH)
690 return gimple_try_catch_may_fallthru (stmt);
691
692 /* It must be a GIMPLE_TRY_FINALLY. */
693
694 /* The finally clause is always executed after the try clause,
695 so if it does not fall through, then the try-finally will not
696 fall through. Otherwise, if the try clause does not fall
697 through, then when the finally clause falls through it will
698 resume execution wherever the try clause was going. So the
699 whole try-finally will only fall through if both the try
700 clause and the finally clause fall through. */
701 return (gimple_seq_may_fallthru (gimple_try_eval (stmt))
702 && gimple_seq_may_fallthru (gimple_try_cleanup (stmt)));
703
704 case GIMPLE_EH_ELSE:
705 return (gimple_seq_may_fallthru (gimple_eh_else_n_body (stmt))
706 || gimple_seq_may_fallthru (gimple_eh_else_e_body (stmt)));
707
708 case GIMPLE_CALL:
709 /* Functions that do not return do not fall through. */
710 return (gimple_call_flags (stmt) & ECF_NORETURN) == 0;
711
712 default:
713 return true;
714 }
715 }
716
717
718 /* Same as gimple_stmt_may_fallthru, but for the gimple sequence SEQ. */
719
720 bool
721 gimple_seq_may_fallthru (gimple_seq seq)
722 {
723 return gimple_stmt_may_fallthru (gimple_seq_last_stmt (seq));
724 }
725
726
727 /* Lower a GIMPLE_RETURN GSI. DATA is passed through the recursion. */
728
729 static void
730 lower_gimple_return (gimple_stmt_iterator *gsi, struct lower_data *data)
731 {
732 gimple stmt = gsi_stmt (*gsi);
733 gimple t;
734 int i;
735 return_statements_t tmp_rs;
736
737 /* Match this up with an existing return statement that's been created. */
738 for (i = data->return_statements.length () - 1;
739 i >= 0; i--)
740 {
741 tmp_rs = data->return_statements[i];
742
743 if (gimple_return_retval (stmt) == gimple_return_retval (tmp_rs.stmt))
744 {
745 /* Remove the line number from the representative return statement.
746 It now fills in for many such returns. Failure to remove this
747 will result in incorrect results for coverage analysis. */
748 gimple_set_location (tmp_rs.stmt, UNKNOWN_LOCATION);
749
750 goto found;
751 }
752 }
753
754 /* Not found. Create a new label and record the return statement. */
755 tmp_rs.label = create_artificial_label (cfun->function_end_locus);
756 tmp_rs.stmt = stmt;
757 data->return_statements.safe_push (tmp_rs);
758
759 /* Generate a goto statement and remove the return statement. */
760 found:
761 /* When not optimizing, make sure user returns are preserved. */
762 if (!optimize && gimple_has_location (stmt))
763 DECL_ARTIFICIAL (tmp_rs.label) = 0;
764 t = gimple_build_goto (tmp_rs.label);
765 gimple_set_location (t, gimple_location (stmt));
766 gimple_set_block (t, gimple_block (stmt));
767 gsi_insert_before (gsi, t, GSI_SAME_STMT);
768 gsi_remove (gsi, false);
769 }
770
771 /* Lower a __builtin_setjmp GSI.
772
773 __builtin_setjmp is passed a pointer to an array of five words (not
774 all will be used on all machines). It operates similarly to the C
775 library function of the same name, but is more efficient.
776
777 It is lowered into 3 other builtins, namely __builtin_setjmp_setup,
778 __builtin_setjmp_dispatcher and __builtin_setjmp_receiver, but with
779 __builtin_setjmp_dispatcher shared among all the instances; that's
780 why it is only emitted at the end by lower_function_body.
781
782 After full lowering, the body of the function should look like:
783
784 {
785 void * setjmpvar.0;
786 int D.1844;
787 int D.2844;
788
789 [...]
790
791 __builtin_setjmp_setup (&buf, &<D1847>);
792 D.1844 = 0;
793 goto <D1846>;
794 <D1847>:;
795 __builtin_setjmp_receiver (&<D1847>);
796 D.1844 = 1;
797 <D1846>:;
798 if (D.1844 == 0) goto <D1848>; else goto <D1849>;
799
800 [...]
801
802 __builtin_setjmp_setup (&buf, &<D2847>);
803 D.2844 = 0;
804 goto <D2846>;
805 <D2847>:;
806 __builtin_setjmp_receiver (&<D2847>);
807 D.2844 = 1;
808 <D2846>:;
809 if (D.2844 == 0) goto <D2848>; else goto <D2849>;
810
811 [...]
812
813 <D3850>:;
814 return;
815 <D3853>: [non-local];
816 setjmpvar.0 = __builtin_setjmp_dispatcher (&<D3853>);
817 goto setjmpvar.0;
818 }
819
820 The dispatcher block will be both the unique destination of all the
821 abnormal call edges and the unique source of all the abnormal edges
822 to the receivers, thus keeping the complexity explosion localized. */
823
824 static void
825 lower_builtin_setjmp (gimple_stmt_iterator *gsi)
826 {
827 gimple stmt = gsi_stmt (*gsi);
828 location_t loc = gimple_location (stmt);
829 tree cont_label = create_artificial_label (loc);
830 tree next_label = create_artificial_label (loc);
831 tree dest, t, arg;
832 gimple g;
833
834 /* NEXT_LABEL is the label __builtin_longjmp will jump to. Its address is
835 passed to both __builtin_setjmp_setup and __builtin_setjmp_receiver. */
836 FORCED_LABEL (next_label) = 1;
837
838 dest = gimple_call_lhs (stmt);
839
840 /* Build '__builtin_setjmp_setup (BUF, NEXT_LABEL)' and insert. */
841 arg = build_addr (next_label, current_function_decl);
842 t = builtin_decl_implicit (BUILT_IN_SETJMP_SETUP);
843 g = gimple_build_call (t, 2, gimple_call_arg (stmt, 0), arg);
844 gimple_set_location (g, loc);
845 gimple_set_block (g, gimple_block (stmt));
846 gsi_insert_before (gsi, g, GSI_SAME_STMT);
847
848 /* Build 'DEST = 0' and insert. */
849 if (dest)
850 {
851 g = gimple_build_assign (dest, build_zero_cst (TREE_TYPE (dest)));
852 gimple_set_location (g, loc);
853 gimple_set_block (g, gimple_block (stmt));
854 gsi_insert_before (gsi, g, GSI_SAME_STMT);
855 }
856
857 /* Build 'goto CONT_LABEL' and insert. */
858 g = gimple_build_goto (cont_label);
859 gsi_insert_before (gsi, g, GSI_SAME_STMT);
860
861 /* Build 'NEXT_LABEL:' and insert. */
862 g = gimple_build_label (next_label);
863 gsi_insert_before (gsi, g, GSI_SAME_STMT);
864
865 /* Build '__builtin_setjmp_receiver (NEXT_LABEL)' and insert. */
866 arg = build_addr (next_label, current_function_decl);
867 t = builtin_decl_implicit (BUILT_IN_SETJMP_RECEIVER);
868 g = gimple_build_call (t, 1, arg);
869 gimple_set_location (g, loc);
870 gimple_set_block (g, gimple_block (stmt));
871 gsi_insert_before (gsi, g, GSI_SAME_STMT);
872
873 /* Build 'DEST = 1' and insert. */
874 if (dest)
875 {
876 g = gimple_build_assign (dest, fold_convert_loc (loc, TREE_TYPE (dest),
877 integer_one_node));
878 gimple_set_location (g, loc);
879 gimple_set_block (g, gimple_block (stmt));
880 gsi_insert_before (gsi, g, GSI_SAME_STMT);
881 }
882
883 /* Build 'CONT_LABEL:' and insert. */
884 g = gimple_build_label (cont_label);
885 gsi_insert_before (gsi, g, GSI_SAME_STMT);
886
887 /* Remove the call to __builtin_setjmp. */
888 gsi_remove (gsi, false);
889 }
890 \f
891
892 /* Record the variables in VARS into function FN. */
893
894 void
895 record_vars_into (tree vars, tree fn)
896 {
897 bool change_cfun = fn != current_function_decl;
898
899 if (change_cfun)
900 push_cfun (DECL_STRUCT_FUNCTION (fn));
901
902 for (; vars; vars = DECL_CHAIN (vars))
903 {
904 tree var = vars;
905
906 /* BIND_EXPRs contains also function/type/constant declarations
907 we don't need to care about. */
908 if (TREE_CODE (var) != VAR_DECL)
909 continue;
910
911 /* Nothing to do in this case. */
912 if (DECL_EXTERNAL (var))
913 continue;
914
915 /* Record the variable. */
916 add_local_decl (cfun, var);
917 }
918
919 if (change_cfun)
920 pop_cfun ();
921 }
922
923
924 /* Record the variables in VARS into current_function_decl. */
925
926 void
927 record_vars (tree vars)
928 {
929 record_vars_into (vars, current_function_decl);
930 }