1 /* GIMPLE lowering pass. Converts High GIMPLE into Low GIMPLE.
3 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
28 #include "tree-iterator.h"
29 #include "tree-inline.h"
30 #include "tree-flow.h"
33 #include "diagnostic-core.h"
34 #include "tree-pass.h"
36 /* The differences between High GIMPLE and Low GIMPLE are the
39 1- Lexical scopes are removed (i.e., GIMPLE_BIND disappears).
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).
45 3- Multiple identical return statements are grouped into a single
46 return and gotos to the unique return site. */
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
56 typedef struct return_statements_t return_statements_t
;
58 DEF_VEC_O(return_statements_t
);
59 DEF_VEC_ALLOC_O(return_statements_t
,heap
);
63 /* Block the current statement belongs to. */
66 /* A vector of label and return statements to be moved to the end
68 VEC(return_statements_t
,heap
) *return_statements
;
70 /* True if the current statement cannot fall through. */
73 /* True if the function calls __builtin_setjmp. */
74 bool calls_builtin_setjmp
;
77 static void lower_stmt (gimple_stmt_iterator
*, struct lower_data
*);
78 static void lower_gimple_bind (gimple_stmt_iterator
*, struct lower_data
*);
79 static void lower_gimple_return (gimple_stmt_iterator
*, struct lower_data
*);
80 static void lower_builtin_setjmp (gimple_stmt_iterator
*);
83 /* Lower the body of current_function_decl from High GIMPLE into Low
87 lower_function_body (void)
89 struct lower_data data
;
90 gimple_seq body
= gimple_body (current_function_decl
);
91 gimple_seq lowered_body
;
92 gimple_stmt_iterator i
;
97 /* The gimplifier should've left a body of exactly one statement,
98 namely a GIMPLE_BIND. */
99 gcc_assert (gimple_seq_first (body
) == gimple_seq_last (body
)
100 && gimple_code (gimple_seq_first_stmt (body
)) == GIMPLE_BIND
);
102 memset (&data
, 0, sizeof (data
));
103 data
.block
= DECL_INITIAL (current_function_decl
);
104 BLOCK_SUBBLOCKS (data
.block
) = NULL_TREE
;
105 BLOCK_CHAIN (data
.block
) = NULL_TREE
;
106 TREE_ASM_WRITTEN (data
.block
) = 1;
107 data
.return_statements
= VEC_alloc (return_statements_t
, heap
, 8);
109 bind
= gimple_seq_first_stmt (body
);
111 gimple_seq_add_stmt (&lowered_body
, bind
);
112 i
= gsi_start (lowered_body
);
113 lower_gimple_bind (&i
, &data
);
115 /* Once the old body has been lowered, replace it with the new
117 gimple_set_body (current_function_decl
, lowered_body
);
119 i
= gsi_last (lowered_body
);
121 /* If the function falls off the end, we need a null return statement.
122 If we've already got one in the return_statements vector, we don't
123 need to do anything special. Otherwise build one by hand. */
124 if (gimple_seq_may_fallthru (lowered_body
)
125 && (VEC_empty (return_statements_t
, data
.return_statements
)
126 || gimple_return_retval (VEC_last (return_statements_t
,
127 data
.return_statements
)->stmt
) != NULL
))
129 x
= gimple_build_return (NULL
);
130 gimple_set_location (x
, cfun
->function_end_locus
);
131 gimple_set_block (x
, DECL_INITIAL (current_function_decl
));
132 gsi_insert_after (&i
, x
, GSI_CONTINUE_LINKING
);
135 /* If we lowered any return statements, emit the representative
136 at the end of the function. */
137 while (!VEC_empty (return_statements_t
, data
.return_statements
))
139 return_statements_t t
;
141 /* Unfortunately, we can't use VEC_pop because it returns void for
143 t
= *VEC_last (return_statements_t
, data
.return_statements
);
144 VEC_truncate (return_statements_t
,
145 data
.return_statements
,
146 VEC_length (return_statements_t
,
147 data
.return_statements
) - 1);
149 x
= gimple_build_label (t
.label
);
150 gsi_insert_after (&i
, x
, GSI_CONTINUE_LINKING
);
151 gsi_insert_after (&i
, t
.stmt
, GSI_CONTINUE_LINKING
);
154 /* If the function calls __builtin_setjmp, we need to emit the computed
155 goto that will serve as the unique dispatcher for all the receivers. */
156 if (data
.calls_builtin_setjmp
)
158 tree disp_label
, disp_var
, arg
;
160 /* Build 'DISP_LABEL:' and insert. */
161 disp_label
= create_artificial_label (cfun
->function_end_locus
);
162 /* This mark will create forward edges from every call site. */
163 DECL_NONLOCAL (disp_label
) = 1;
164 cfun
->has_nonlocal_label
= 1;
165 x
= gimple_build_label (disp_label
);
166 gsi_insert_after (&i
, x
, GSI_CONTINUE_LINKING
);
168 /* Build 'DISP_VAR = __builtin_setjmp_dispatcher (DISP_LABEL);'
170 disp_var
= create_tmp_var (ptr_type_node
, "setjmpvar");
171 arg
= build_addr (disp_label
, current_function_decl
);
172 t
= implicit_built_in_decls
[BUILT_IN_SETJMP_DISPATCHER
];
173 x
= gimple_build_call (t
, 1, arg
);
174 gimple_call_set_lhs (x
, disp_var
);
176 /* Build 'goto DISP_VAR;' and insert. */
177 gsi_insert_after (&i
, x
, GSI_CONTINUE_LINKING
);
178 x
= gimple_build_goto (disp_var
);
179 gsi_insert_after (&i
, x
, GSI_CONTINUE_LINKING
);
182 gcc_assert (data
.block
== DECL_INITIAL (current_function_decl
));
183 BLOCK_SUBBLOCKS (data
.block
)
184 = blocks_nreverse (BLOCK_SUBBLOCKS (data
.block
));
186 clear_block_marks (data
.block
);
187 VEC_free(return_statements_t
, heap
, data
.return_statements
);
191 struct gimple_opt_pass pass_lower_cf
=
197 lower_function_body
, /* execute */
200 0, /* static_pass_number */
202 PROP_gimple_any
, /* properties_required */
203 PROP_gimple_lcf
, /* properties_provided */
204 0, /* properties_destroyed */
205 0, /* todo_flags_start */
206 TODO_dump_func
/* todo_flags_finish */
212 /* Verify if the type of the argument matches that of the function
213 declaration. If we cannot verify this or there is a mismatch,
217 gimple_check_call_args (gimple stmt
, tree fndecl
)
220 unsigned int i
, nargs
;
222 nargs
= gimple_call_num_args (stmt
);
224 /* Get argument types for verification. */
227 parms
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
228 else if (POINTER_TYPE_P (TREE_TYPE (gimple_call_fn (stmt
))))
229 parms
= TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (gimple_call_fn (stmt
))));
231 /* Verify if the type of the argument matches that of the function
232 declaration. If we cannot verify this or there is a mismatch,
234 if (fndecl
&& DECL_ARGUMENTS (fndecl
))
236 for (i
= 0, p
= DECL_ARGUMENTS (fndecl
);
238 i
++, p
= DECL_CHAIN (p
))
240 /* We cannot distinguish a varargs function from the case
241 of excess parameters, still deferring the inlining decision
242 to the callee is possible. */
245 if (p
== error_mark_node
246 || gimple_call_arg (stmt
, i
) == error_mark_node
247 || !fold_convertible_p (DECL_ARG_TYPE (p
),
248 gimple_call_arg (stmt
, i
)))
254 for (i
= 0, p
= parms
; i
< nargs
; i
++, p
= TREE_CHAIN (p
))
256 /* If this is a varargs function defer inlining decision
260 if (TREE_VALUE (p
) == error_mark_node
261 || gimple_call_arg (stmt
, i
) == error_mark_node
262 || TREE_CODE (TREE_VALUE (p
)) == VOID_TYPE
263 || !fold_convertible_p (TREE_VALUE (p
),
264 gimple_call_arg (stmt
, i
)))
276 /* Verify if the type of the argument and lhs of CALL_STMT matches
277 that of the function declaration CALLEE.
278 If we cannot verify this or there is a mismatch, return false. */
281 gimple_check_call_matching_types (gimple call_stmt
, tree callee
)
285 if ((DECL_RESULT (callee
)
286 && !DECL_BY_REFERENCE (DECL_RESULT (callee
))
287 && (lhs
= gimple_call_lhs (call_stmt
)) != NULL_TREE
288 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee
)),
290 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee
)), lhs
))
291 || !gimple_check_call_args (call_stmt
, callee
))
296 /* Lower sequence SEQ. Unlike gimplification the statements are not relowered
297 when they are changed -- if this has to be done, the lowering routine must
298 do it explicitly. DATA is passed through the recursion. */
301 lower_sequence (gimple_seq seq
, struct lower_data
*data
)
303 gimple_stmt_iterator gsi
;
305 for (gsi
= gsi_start (seq
); !gsi_end_p (gsi
); )
306 lower_stmt (&gsi
, data
);
310 /* Lower the OpenMP directive statement pointed by GSI. DATA is
311 passed through the recursion. */
314 lower_omp_directive (gimple_stmt_iterator
*gsi
, struct lower_data
*data
)
318 stmt
= gsi_stmt (*gsi
);
320 lower_sequence (gimple_omp_body (stmt
), data
);
321 gsi_insert_before (gsi
, stmt
, GSI_SAME_STMT
);
322 gsi_insert_seq_before (gsi
, gimple_omp_body (stmt
), GSI_SAME_STMT
);
323 gimple_omp_set_body (stmt
, NULL
);
324 gsi_remove (gsi
, false);
328 /* Lower statement GSI. DATA is passed through the recursion. We try to
329 track the fallthruness of statements and get rid of unreachable return
330 statements in order to prevent the EH lowering pass from adding useless
331 edges that can cause bogus warnings to be issued later; this guess need
332 not be 100% accurate, simply be conservative and reset cannot_fallthru
333 to false if we don't know. */
336 lower_stmt (gimple_stmt_iterator
*gsi
, struct lower_data
*data
)
338 gimple stmt
= gsi_stmt (*gsi
);
340 gimple_set_block (stmt
, data
->block
);
342 switch (gimple_code (stmt
))
345 lower_gimple_bind (gsi
, data
);
346 /* Propagate fallthruness. */
352 data
->cannot_fallthru
= true;
357 if (data
->cannot_fallthru
)
359 gsi_remove (gsi
, false);
360 /* Propagate fallthruness. */
364 lower_gimple_return (gsi
, data
);
365 data
->cannot_fallthru
= true;
371 bool try_cannot_fallthru
;
372 lower_sequence (gimple_try_eval (stmt
), data
);
373 try_cannot_fallthru
= data
->cannot_fallthru
;
374 data
->cannot_fallthru
= false;
375 lower_sequence (gimple_try_cleanup (stmt
), data
);
376 /* See gimple_stmt_may_fallthru for the rationale. */
377 if (gimple_try_kind (stmt
) == GIMPLE_TRY_FINALLY
)
379 data
->cannot_fallthru
|= try_cannot_fallthru
;
387 data
->cannot_fallthru
= false;
388 lower_sequence (gimple_catch_handler (stmt
), data
);
391 case GIMPLE_EH_FILTER
:
392 data
->cannot_fallthru
= false;
393 lower_sequence (gimple_eh_filter_failure (stmt
), data
);
401 case GIMPLE_EH_MUST_NOT_THROW
:
403 case GIMPLE_OMP_SECTIONS
:
404 case GIMPLE_OMP_SECTIONS_SWITCH
:
405 case GIMPLE_OMP_SECTION
:
406 case GIMPLE_OMP_SINGLE
:
407 case GIMPLE_OMP_MASTER
:
408 case GIMPLE_OMP_ORDERED
:
409 case GIMPLE_OMP_CRITICAL
:
410 case GIMPLE_OMP_RETURN
:
411 case GIMPLE_OMP_ATOMIC_LOAD
:
412 case GIMPLE_OMP_ATOMIC_STORE
:
413 case GIMPLE_OMP_CONTINUE
:
418 tree decl
= gimple_call_fndecl (stmt
);
421 && DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
422 && DECL_FUNCTION_CODE (decl
) == BUILT_IN_SETJMP
)
424 lower_builtin_setjmp (gsi
);
425 data
->cannot_fallthru
= false;
426 data
->calls_builtin_setjmp
= true;
430 if (decl
&& (flags_from_decl_or_type (decl
) & ECF_NORETURN
))
432 data
->cannot_fallthru
= true;
439 case GIMPLE_OMP_PARALLEL
:
440 case GIMPLE_OMP_TASK
:
441 data
->cannot_fallthru
= false;
442 lower_omp_directive (gsi
, data
);
443 data
->cannot_fallthru
= false;
450 data
->cannot_fallthru
= false;
454 /* Lower a bind_expr TSI. DATA is passed through the recursion. */
457 lower_gimple_bind (gimple_stmt_iterator
*gsi
, struct lower_data
*data
)
459 tree old_block
= data
->block
;
460 gimple stmt
= gsi_stmt (*gsi
);
461 tree new_block
= gimple_bind_block (stmt
);
465 if (new_block
== old_block
)
467 /* The outermost block of the original function may not be the
468 outermost statement chain of the gimplified function. So we
469 may see the outermost block just inside the function. */
470 gcc_assert (new_block
== DECL_INITIAL (current_function_decl
));
475 /* We do not expect to handle duplicate blocks. */
476 gcc_assert (!TREE_ASM_WRITTEN (new_block
));
477 TREE_ASM_WRITTEN (new_block
) = 1;
479 /* Block tree may get clobbered by inlining. Normally this would
480 be fixed in rest_of_decl_compilation using block notes, but
481 since we are not going to emit them, it is up to us. */
482 BLOCK_CHAIN (new_block
) = BLOCK_SUBBLOCKS (old_block
);
483 BLOCK_SUBBLOCKS (old_block
) = new_block
;
484 BLOCK_SUBBLOCKS (new_block
) = NULL_TREE
;
485 BLOCK_SUPERCONTEXT (new_block
) = old_block
;
487 data
->block
= new_block
;
491 record_vars (gimple_bind_vars (stmt
));
492 lower_sequence (gimple_bind_body (stmt
), data
);
496 gcc_assert (data
->block
== new_block
);
498 BLOCK_SUBBLOCKS (new_block
)
499 = blocks_nreverse (BLOCK_SUBBLOCKS (new_block
));
500 data
->block
= old_block
;
503 /* The GIMPLE_BIND no longer carries any useful information -- kill it. */
504 gsi_insert_seq_before (gsi
, gimple_bind_body (stmt
), GSI_SAME_STMT
);
505 gsi_remove (gsi
, false);
508 /* Try to determine whether a TRY_CATCH expression can fall through.
509 This is a subroutine of block_may_fallthru. */
512 try_catch_may_fallthru (const_tree stmt
)
514 tree_stmt_iterator i
;
516 /* If the TRY block can fall through, the whole TRY_CATCH can
518 if (block_may_fallthru (TREE_OPERAND (stmt
, 0)))
521 i
= tsi_start (TREE_OPERAND (stmt
, 1));
522 switch (TREE_CODE (tsi_stmt (i
)))
525 /* We expect to see a sequence of CATCH_EXPR trees, each with a
526 catch expression and a body. The whole TRY_CATCH may fall
527 through iff any of the catch bodies falls through. */
528 for (; !tsi_end_p (i
); tsi_next (&i
))
530 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i
))))
536 /* The exception filter expression only matters if there is an
537 exception. If the exception does not match EH_FILTER_TYPES,
538 we will execute EH_FILTER_FAILURE, and we will fall through
539 if that falls through. If the exception does match
540 EH_FILTER_TYPES, the stack unwinder will continue up the
541 stack, so we will not fall through. We don't know whether we
542 will throw an exception which matches EH_FILTER_TYPES or not,
543 so we just ignore EH_FILTER_TYPES and assume that we might
544 throw an exception which doesn't match. */
545 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i
)));
548 /* This case represents statements to be executed when an
549 exception occurs. Those statements are implicitly followed
550 by a RESX statement to resume execution after the exception.
551 So in this case the TRY_CATCH never falls through. */
557 /* Same as above, but for a GIMPLE_TRY_CATCH. */
560 gimple_try_catch_may_fallthru (gimple stmt
)
562 gimple_stmt_iterator i
;
564 /* We don't handle GIMPLE_TRY_FINALLY. */
565 gcc_assert (gimple_try_kind (stmt
) == GIMPLE_TRY_CATCH
);
567 /* If the TRY block can fall through, the whole TRY_CATCH can
569 if (gimple_seq_may_fallthru (gimple_try_eval (stmt
)))
572 i
= gsi_start (gimple_try_cleanup (stmt
));
573 switch (gimple_code (gsi_stmt (i
)))
576 /* We expect to see a sequence of GIMPLE_CATCH stmts, each with a
577 catch expression and a body. The whole try/catch may fall
578 through iff any of the catch bodies falls through. */
579 for (; !gsi_end_p (i
); gsi_next (&i
))
581 if (gimple_seq_may_fallthru (gimple_catch_handler (gsi_stmt (i
))))
586 case GIMPLE_EH_FILTER
:
587 /* The exception filter expression only matters if there is an
588 exception. If the exception does not match EH_FILTER_TYPES,
589 we will execute EH_FILTER_FAILURE, and we will fall through
590 if that falls through. If the exception does match
591 EH_FILTER_TYPES, the stack unwinder will continue up the
592 stack, so we will not fall through. We don't know whether we
593 will throw an exception which matches EH_FILTER_TYPES or not,
594 so we just ignore EH_FILTER_TYPES and assume that we might
595 throw an exception which doesn't match. */
596 return gimple_seq_may_fallthru (gimple_eh_filter_failure (gsi_stmt (i
)));
599 /* This case represents statements to be executed when an
600 exception occurs. Those statements are implicitly followed
601 by a GIMPLE_RESX to resume execution after the exception. So
602 in this case the try/catch never falls through. */
608 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
609 need not be 100% accurate; simply be conservative and return true if we
610 don't know. This is used only to avoid stupidly generating extra code.
611 If we're wrong, we'll just delete the extra code later. */
614 block_may_fallthru (const_tree block
)
616 /* This CONST_CAST is okay because expr_last returns its argument
617 unmodified and we assign it to a const_tree. */
618 const_tree stmt
= expr_last (CONST_CAST_TREE(block
));
620 switch (stmt
? TREE_CODE (stmt
) : ERROR_MARK
)
624 /* Easy cases. If the last statement of the block implies
625 control transfer, then we can't fall through. */
629 /* If SWITCH_LABELS is set, this is lowered, and represents a
630 branch to a selected label and hence can not fall through.
631 Otherwise SWITCH_BODY is set, and the switch can fall
633 return SWITCH_LABELS (stmt
) == NULL_TREE
;
636 if (block_may_fallthru (COND_EXPR_THEN (stmt
)))
638 return block_may_fallthru (COND_EXPR_ELSE (stmt
));
641 return block_may_fallthru (BIND_EXPR_BODY (stmt
));
644 return try_catch_may_fallthru (stmt
);
646 case TRY_FINALLY_EXPR
:
647 /* The finally clause is always executed after the try clause,
648 so if it does not fall through, then the try-finally will not
649 fall through. Otherwise, if the try clause does not fall
650 through, then when the finally clause falls through it will
651 resume execution wherever the try clause was going. So the
652 whole try-finally will only fall through if both the try
653 clause and the finally clause fall through. */
654 return (block_may_fallthru (TREE_OPERAND (stmt
, 0))
655 && block_may_fallthru (TREE_OPERAND (stmt
, 1)));
658 if (TREE_CODE (TREE_OPERAND (stmt
, 1)) == CALL_EXPR
)
659 stmt
= TREE_OPERAND (stmt
, 1);
665 /* Functions that do not return do not fall through. */
666 return (call_expr_flags (stmt
) & ECF_NORETURN
) == 0;
668 case CLEANUP_POINT_EXPR
:
669 return block_may_fallthru (TREE_OPERAND (stmt
, 0));
677 /* Try to determine if we can continue executing the statement
678 immediately following STMT. This guess need not be 100% accurate;
679 simply be conservative and return true if we don't know. This is
680 used only to avoid stupidly generating extra code. If we're wrong,
681 we'll just delete the extra code later. */
684 gimple_stmt_may_fallthru (gimple stmt
)
689 switch (gimple_code (stmt
))
694 /* Easy cases. If the last statement of the seq implies
695 control transfer, then we can't fall through. */
699 /* Switch has already been lowered and represents a branch
700 to a selected label and hence can't fall through. */
704 /* GIMPLE_COND's are already lowered into a two-way branch. They
705 can't fall through. */
709 return gimple_seq_may_fallthru (gimple_bind_body (stmt
));
712 if (gimple_try_kind (stmt
) == GIMPLE_TRY_CATCH
)
713 return gimple_try_catch_may_fallthru (stmt
);
715 /* It must be a GIMPLE_TRY_FINALLY. */
717 /* The finally clause is always executed after the try clause,
718 so if it does not fall through, then the try-finally will not
719 fall through. Otherwise, if the try clause does not fall
720 through, then when the finally clause falls through it will
721 resume execution wherever the try clause was going. So the
722 whole try-finally will only fall through if both the try
723 clause and the finally clause fall through. */
724 return (gimple_seq_may_fallthru (gimple_try_eval (stmt
))
725 && gimple_seq_may_fallthru (gimple_try_cleanup (stmt
)));
728 /* Functions that do not return do not fall through. */
729 return (gimple_call_flags (stmt
) & ECF_NORETURN
) == 0;
737 /* Same as gimple_stmt_may_fallthru, but for the gimple sequence SEQ. */
740 gimple_seq_may_fallthru (gimple_seq seq
)
742 return gimple_stmt_may_fallthru (gimple_seq_last_stmt (seq
));
746 /* Lower a GIMPLE_RETURN GSI. DATA is passed through the recursion. */
749 lower_gimple_return (gimple_stmt_iterator
*gsi
, struct lower_data
*data
)
751 gimple stmt
= gsi_stmt (*gsi
);
754 return_statements_t tmp_rs
;
756 /* Match this up with an existing return statement that's been created. */
757 for (i
= VEC_length (return_statements_t
, data
->return_statements
) - 1;
760 tmp_rs
= *VEC_index (return_statements_t
, data
->return_statements
, i
);
762 if (gimple_return_retval (stmt
) == gimple_return_retval (tmp_rs
.stmt
))
764 /* Remove the line number from the representative return statement.
765 It now fills in for many such returns. Failure to remove this
766 will result in incorrect results for coverage analysis. */
767 gimple_set_location (tmp_rs
.stmt
, UNKNOWN_LOCATION
);
773 /* Not found. Create a new label and record the return statement. */
774 tmp_rs
.label
= create_artificial_label (cfun
->function_end_locus
);
776 VEC_safe_push (return_statements_t
, heap
, data
->return_statements
, &tmp_rs
);
778 /* Generate a goto statement and remove the return statement. */
780 t
= gimple_build_goto (tmp_rs
.label
);
781 gimple_set_location (t
, gimple_location (stmt
));
782 gimple_set_block (t
, gimple_block (stmt
));
783 gsi_insert_before (gsi
, t
, GSI_SAME_STMT
);
784 gsi_remove (gsi
, false);
787 /* Lower a __builtin_setjmp GSI.
789 __builtin_setjmp is passed a pointer to an array of five words (not
790 all will be used on all machines). It operates similarly to the C
791 library function of the same name, but is more efficient.
793 It is lowered into 3 other builtins, namely __builtin_setjmp_setup,
794 __builtin_setjmp_dispatcher and __builtin_setjmp_receiver, but with
795 __builtin_setjmp_dispatcher shared among all the instances; that's
796 why it is only emitted at the end by lower_function_body.
798 After full lowering, the body of the function should look like:
807 __builtin_setjmp_setup (&buf, &<D1847>);
811 __builtin_setjmp_receiver (&<D1847>);
814 if (D.1844 == 0) goto <D1848>; else goto <D1849>;
818 __builtin_setjmp_setup (&buf, &<D2847>);
822 __builtin_setjmp_receiver (&<D2847>);
825 if (D.2844 == 0) goto <D2848>; else goto <D2849>;
831 <D3853>: [non-local];
832 setjmpvar.0 = __builtin_setjmp_dispatcher (&<D3853>);
836 The dispatcher block will be both the unique destination of all the
837 abnormal call edges and the unique source of all the abnormal edges
838 to the receivers, thus keeping the complexity explosion localized. */
841 lower_builtin_setjmp (gimple_stmt_iterator
*gsi
)
843 gimple stmt
= gsi_stmt (*gsi
);
844 location_t loc
= gimple_location (stmt
);
845 tree cont_label
= create_artificial_label (loc
);
846 tree next_label
= create_artificial_label (loc
);
850 /* NEXT_LABEL is the label __builtin_longjmp will jump to. Its address is
851 passed to both __builtin_setjmp_setup and __builtin_setjmp_receiver. */
852 FORCED_LABEL (next_label
) = 1;
854 dest
= gimple_call_lhs (stmt
);
856 /* Build '__builtin_setjmp_setup (BUF, NEXT_LABEL)' and insert. */
857 arg
= build_addr (next_label
, current_function_decl
);
858 t
= implicit_built_in_decls
[BUILT_IN_SETJMP_SETUP
];
859 g
= gimple_build_call (t
, 2, gimple_call_arg (stmt
, 0), arg
);
860 gimple_set_location (g
, loc
);
861 gimple_set_block (g
, gimple_block (stmt
));
862 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
864 /* Build 'DEST = 0' and insert. */
867 g
= gimple_build_assign (dest
, build_zero_cst (TREE_TYPE (dest
)));
868 gimple_set_location (g
, loc
);
869 gimple_set_block (g
, gimple_block (stmt
));
870 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
873 /* Build 'goto CONT_LABEL' and insert. */
874 g
= gimple_build_goto (cont_label
);
875 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
877 /* Build 'NEXT_LABEL:' and insert. */
878 g
= gimple_build_label (next_label
);
879 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
881 /* Build '__builtin_setjmp_receiver (NEXT_LABEL)' and insert. */
882 arg
= build_addr (next_label
, current_function_decl
);
883 t
= implicit_built_in_decls
[BUILT_IN_SETJMP_RECEIVER
];
884 g
= gimple_build_call (t
, 1, arg
);
885 gimple_set_location (g
, loc
);
886 gimple_set_block (g
, gimple_block (stmt
));
887 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
889 /* Build 'DEST = 1' and insert. */
892 g
= gimple_build_assign (dest
, fold_convert_loc (loc
, TREE_TYPE (dest
),
894 gimple_set_location (g
, loc
);
895 gimple_set_block (g
, gimple_block (stmt
));
896 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
899 /* Build 'CONT_LABEL:' and insert. */
900 g
= gimple_build_label (cont_label
);
901 gsi_insert_before (gsi
, g
, GSI_SAME_STMT
);
903 /* Remove the call to __builtin_setjmp. */
904 gsi_remove (gsi
, false);
908 /* Record the variables in VARS into function FN. */
911 record_vars_into (tree vars
, tree fn
)
913 if (fn
!= current_function_decl
)
914 push_cfun (DECL_STRUCT_FUNCTION (fn
));
916 for (; vars
; vars
= DECL_CHAIN (vars
))
920 /* BIND_EXPRs contains also function/type/constant declarations
921 we don't need to care about. */
922 if (TREE_CODE (var
) != VAR_DECL
)
925 /* Nothing to do in this case. */
926 if (DECL_EXTERNAL (var
))
929 /* Record the variable. */
930 add_local_decl (cfun
, var
);
931 if (gimple_referenced_vars (cfun
))
932 add_referenced_var (var
);
935 if (fn
!= current_function_decl
)
940 /* Record the variables in VARS into current_function_decl. */
943 record_vars (tree vars
)
945 record_vars_into (vars
, current_function_decl
);