1 /* Pass computing data for optimizing stdarg functions.
2 Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
3 Contributed by Jakub Jelinek <jakub@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
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/>. */
23 #include "coretypes.h"
27 #include "langhooks.h"
28 #include "diagnostic.h"
30 #include "tree-flow.h"
31 #include "tree-pass.h"
32 #include "tree-stdarg.h"
34 /* A simple pass that attempts to optimize stdarg functions on architectures
35 that need to save register arguments to stack on entry to stdarg functions.
36 If the function doesn't use any va_start macros, no registers need to
37 be saved. If va_start macros are used, the va_list variables don't escape
38 the function, it is only necessary to save registers that will be used
39 in va_arg macros. E.g. if va_arg is only used with integral types
40 in the function, floating point registers don't need to be saved, etc. */
43 /* Return true if basic block VA_ARG_BB is dominated by VA_START_BB and
44 is executed at most as many times as VA_START_BB. */
47 reachable_at_most_once (basic_block va_arg_bb
, basic_block va_start_bb
)
55 if (va_arg_bb
== va_start_bb
)
58 if (! dominated_by_p (CDI_DOMINATORS
, va_arg_bb
, va_start_bb
))
61 stack
= XNEWVEC (edge
, n_basic_blocks
+ 1);
64 visited
= sbitmap_alloc (last_basic_block
);
65 sbitmap_zero (visited
);
68 FOR_EACH_EDGE (e
, ei
, va_arg_bb
->preds
)
79 if (e
->flags
& EDGE_COMPLEX
)
85 if (src
== va_start_bb
)
88 /* va_arg_bb can be executed more times than va_start_bb. */
95 gcc_assert (src
!= ENTRY_BLOCK_PTR
);
97 if (! TEST_BIT (visited
, src
->index
))
99 SET_BIT (visited
, src
->index
);
100 FOR_EACH_EDGE (e
, ei
, src
->preds
)
106 sbitmap_free (visited
);
111 /* For statement COUNTER = RHS, if RHS is COUNTER + constant,
112 return constant, otherwise return (unsigned HOST_WIDE_INT) -1.
113 GPR_P is true if this is GPR counter. */
115 static unsigned HOST_WIDE_INT
116 va_list_counter_bump (struct stdarg_info
*si
, tree counter
, tree rhs
,
119 tree stmt
, lhs
, orig_lhs
;
120 unsigned HOST_WIDE_INT ret
= 0, val
, counter_val
;
121 unsigned int max_size
;
123 if (si
->offsets
== NULL
)
127 si
->offsets
= XNEWVEC (int, num_ssa_names
);
128 for (i
= 0; i
< num_ssa_names
; ++i
)
132 counter_val
= gpr_p
? cfun
->va_list_gpr_size
: cfun
->va_list_fpr_size
;
133 max_size
= gpr_p
? VA_LIST_MAX_GPR_SIZE
: VA_LIST_MAX_FPR_SIZE
;
134 orig_lhs
= lhs
= rhs
;
137 if (si
->offsets
[SSA_NAME_VERSION (lhs
)] != -1)
139 if (counter_val
>= max_size
)
145 ret
-= counter_val
- si
->offsets
[SSA_NAME_VERSION (lhs
)];
149 stmt
= SSA_NAME_DEF_STMT (lhs
);
151 if (TREE_CODE (stmt
) != GIMPLE_MODIFY_STMT
152 || GIMPLE_STMT_OPERAND (stmt
, 0) != lhs
)
153 return (unsigned HOST_WIDE_INT
) -1;
155 rhs
= GIMPLE_STMT_OPERAND (stmt
, 1);
156 if (TREE_CODE (rhs
) == WITH_SIZE_EXPR
)
157 rhs
= TREE_OPERAND (rhs
, 0);
159 if (TREE_CODE (rhs
) == SSA_NAME
)
165 if ((TREE_CODE (rhs
) == NOP_EXPR
166 || TREE_CODE (rhs
) == CONVERT_EXPR
)
167 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == SSA_NAME
)
169 lhs
= TREE_OPERAND (rhs
, 0);
173 if ((TREE_CODE (rhs
) == POINTER_PLUS_EXPR
174 || TREE_CODE (rhs
) == PLUS_EXPR
)
175 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == SSA_NAME
176 && TREE_CODE (TREE_OPERAND (rhs
, 1)) == INTEGER_CST
177 && host_integerp (TREE_OPERAND (rhs
, 1), 1))
179 ret
+= tree_low_cst (TREE_OPERAND (rhs
, 1), 1);
180 lhs
= TREE_OPERAND (rhs
, 0);
184 if (TREE_CODE (counter
) != TREE_CODE (rhs
))
185 return (unsigned HOST_WIDE_INT
) -1;
187 if (TREE_CODE (counter
) == COMPONENT_REF
)
189 if (get_base_address (counter
) != get_base_address (rhs
)
190 || TREE_CODE (TREE_OPERAND (rhs
, 1)) != FIELD_DECL
191 || TREE_OPERAND (counter
, 1) != TREE_OPERAND (rhs
, 1))
192 return (unsigned HOST_WIDE_INT
) -1;
194 else if (counter
!= rhs
)
195 return (unsigned HOST_WIDE_INT
) -1;
201 val
= ret
+ counter_val
;
204 if (si
->offsets
[SSA_NAME_VERSION (lhs
)] != -1)
208 si
->offsets
[SSA_NAME_VERSION (lhs
)] = max_size
;
210 si
->offsets
[SSA_NAME_VERSION (lhs
)] = val
;
212 stmt
= SSA_NAME_DEF_STMT (lhs
);
214 rhs
= GIMPLE_STMT_OPERAND (stmt
, 1);
215 if (TREE_CODE (rhs
) == WITH_SIZE_EXPR
)
216 rhs
= TREE_OPERAND (rhs
, 0);
218 if (TREE_CODE (rhs
) == SSA_NAME
)
224 if ((TREE_CODE (rhs
) == NOP_EXPR
225 || TREE_CODE (rhs
) == CONVERT_EXPR
)
226 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == SSA_NAME
)
228 lhs
= TREE_OPERAND (rhs
, 0);
232 if ((TREE_CODE (rhs
) == POINTER_PLUS_EXPR
233 || TREE_CODE (rhs
) == PLUS_EXPR
)
234 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == SSA_NAME
235 && TREE_CODE (TREE_OPERAND (rhs
, 1)) == INTEGER_CST
236 && host_integerp (TREE_OPERAND (rhs
, 1), 1))
238 val
-= tree_low_cst (TREE_OPERAND (rhs
, 1), 1);
239 lhs
= TREE_OPERAND (rhs
, 0);
250 /* Called by walk_tree to look for references to va_list variables. */
253 find_va_list_reference (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
256 bitmap va_list_vars
= (bitmap
) data
;
259 if (TREE_CODE (var
) == SSA_NAME
)
260 var
= SSA_NAME_VAR (var
);
262 if (TREE_CODE (var
) == VAR_DECL
263 && bitmap_bit_p (va_list_vars
, DECL_UID (var
)))
270 /* Helper function of va_list_counter_struct_op. Compute
271 cfun->va_list_{g,f}pr_size. AP is a va_list GPR/FPR counter,
272 if WRITE_P is true, seen in AP = VAR, otherwise seen in VAR = AP
273 statement. GPR_P is true if AP is a GPR counter, false if it is
277 va_list_counter_op (struct stdarg_info
*si
, tree ap
, tree var
, bool gpr_p
,
280 unsigned HOST_WIDE_INT increment
;
282 if (si
->compute_sizes
< 0)
284 si
->compute_sizes
= 0;
285 if (si
->va_start_count
== 1
286 && reachable_at_most_once (si
->bb
, si
->va_start_bb
))
287 si
->compute_sizes
= 1;
289 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
291 "bb%d will %sbe executed at most once for each va_start "
292 "in bb%d\n", si
->bb
->index
, si
->compute_sizes
? "" : "not ",
293 si
->va_start_bb
->index
);
298 && (increment
= va_list_counter_bump (si
, ap
, var
, gpr_p
)) + 1 > 1)
300 if (gpr_p
&& cfun
->va_list_gpr_size
+ increment
< VA_LIST_MAX_GPR_SIZE
)
302 cfun
->va_list_gpr_size
+= increment
;
306 if (!gpr_p
&& cfun
->va_list_fpr_size
+ increment
< VA_LIST_MAX_FPR_SIZE
)
308 cfun
->va_list_fpr_size
+= increment
;
313 if (write_p
|| !si
->compute_sizes
)
316 cfun
->va_list_gpr_size
= VA_LIST_MAX_GPR_SIZE
;
318 cfun
->va_list_fpr_size
= VA_LIST_MAX_FPR_SIZE
;
323 /* If AP is a va_list GPR/FPR counter, compute cfun->va_list_{g,f}pr_size.
324 If WRITE_P is true, AP has been seen in AP = VAR assignment, if WRITE_P
325 is false, AP has been seen in VAR = AP assignment.
326 Return true if the AP = VAR (resp. VAR = AP) statement is a recognized
327 va_arg operation that doesn't cause the va_list variable to escape
331 va_list_counter_struct_op (struct stdarg_info
*si
, tree ap
, tree var
,
336 if (TREE_CODE (ap
) != COMPONENT_REF
337 || TREE_CODE (TREE_OPERAND (ap
, 1)) != FIELD_DECL
)
340 if (TREE_CODE (var
) != SSA_NAME
341 || bitmap_bit_p (si
->va_list_vars
, DECL_UID (SSA_NAME_VAR (var
))))
344 base
= get_base_address (ap
);
345 if (TREE_CODE (base
) != VAR_DECL
346 || !bitmap_bit_p (si
->va_list_vars
, DECL_UID (base
)))
349 if (TREE_OPERAND (ap
, 1) == va_list_gpr_counter_field
)
350 va_list_counter_op (si
, ap
, var
, true, write_p
);
351 else if (TREE_OPERAND (ap
, 1) == va_list_fpr_counter_field
)
352 va_list_counter_op (si
, ap
, var
, false, write_p
);
358 /* Check for TEM = AP. Return true if found and the caller shouldn't
359 search for va_list references in the statement. */
362 va_list_ptr_read (struct stdarg_info
*si
, tree ap
, tree tem
)
364 if (TREE_CODE (ap
) != VAR_DECL
365 || !bitmap_bit_p (si
->va_list_vars
, DECL_UID (ap
)))
368 if (TREE_CODE (tem
) != SSA_NAME
369 || bitmap_bit_p (si
->va_list_vars
,
370 DECL_UID (SSA_NAME_VAR (tem
)))
371 || is_global_var (SSA_NAME_VAR (tem
)))
374 if (si
->compute_sizes
< 0)
376 si
->compute_sizes
= 0;
377 if (si
->va_start_count
== 1
378 && reachable_at_most_once (si
->bb
, si
->va_start_bb
))
379 si
->compute_sizes
= 1;
381 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
383 "bb%d will %sbe executed at most once for each va_start "
384 "in bb%d\n", si
->bb
->index
, si
->compute_sizes
? "" : "not ",
385 si
->va_start_bb
->index
);
388 /* For void * or char * va_list types, there is just one counter.
389 If va_arg is used in a loop, we don't know how many registers need
391 if (! si
->compute_sizes
)
394 if (va_list_counter_bump (si
, ap
, tem
, true) == (unsigned HOST_WIDE_INT
) -1)
397 /* Note the temporary, as we need to track whether it doesn't escape
398 the current function. */
399 bitmap_set_bit (si
->va_list_escape_vars
,
400 DECL_UID (SSA_NAME_VAR (tem
)));
409 sequence and update cfun->va_list_gpr_size. Return true if found. */
412 va_list_ptr_write (struct stdarg_info
*si
, tree ap
, tree tem2
)
414 unsigned HOST_WIDE_INT increment
;
416 if (TREE_CODE (ap
) != VAR_DECL
417 || !bitmap_bit_p (si
->va_list_vars
, DECL_UID (ap
)))
420 if (TREE_CODE (tem2
) != SSA_NAME
421 || bitmap_bit_p (si
->va_list_vars
, DECL_UID (SSA_NAME_VAR (tem2
))))
424 if (si
->compute_sizes
<= 0)
427 increment
= va_list_counter_bump (si
, ap
, tem2
, true);
428 if (increment
+ 1 <= 1)
431 if (cfun
->va_list_gpr_size
+ increment
< VA_LIST_MAX_GPR_SIZE
)
432 cfun
->va_list_gpr_size
+= increment
;
434 cfun
->va_list_gpr_size
= VA_LIST_MAX_GPR_SIZE
;
440 /* If RHS is X, (some type *) X or X + CST for X a temporary variable
441 containing value of some va_list variable plus optionally some constant,
442 either set si->va_list_escapes or add LHS to si->va_list_escape_vars,
443 depending whether LHS is a function local temporary. */
446 check_va_list_escapes (struct stdarg_info
*si
, tree lhs
, tree rhs
)
448 if (! POINTER_TYPE_P (TREE_TYPE (rhs
)))
451 if (((TREE_CODE (rhs
) == POINTER_PLUS_EXPR
452 || TREE_CODE (rhs
) == PLUS_EXPR
)
453 && TREE_CODE (TREE_OPERAND (rhs
, 1)) == INTEGER_CST
)
454 || TREE_CODE (rhs
) == NOP_EXPR
455 || TREE_CODE (rhs
) == CONVERT_EXPR
)
456 rhs
= TREE_OPERAND (rhs
, 0);
458 if (TREE_CODE (rhs
) != SSA_NAME
459 || ! bitmap_bit_p (si
->va_list_escape_vars
,
460 DECL_UID (SSA_NAME_VAR (rhs
))))
463 if (TREE_CODE (lhs
) != SSA_NAME
|| is_global_var (SSA_NAME_VAR (lhs
)))
465 si
->va_list_escapes
= true;
469 if (si
->compute_sizes
< 0)
471 si
->compute_sizes
= 0;
472 if (si
->va_start_count
== 1
473 && reachable_at_most_once (si
->bb
, si
->va_start_bb
))
474 si
->compute_sizes
= 1;
476 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
478 "bb%d will %sbe executed at most once for each va_start "
479 "in bb%d\n", si
->bb
->index
, si
->compute_sizes
? "" : "not ",
480 si
->va_start_bb
->index
);
483 /* For void * or char * va_list types, there is just one counter.
484 If va_arg is used in a loop, we don't know how many registers need
486 if (! si
->compute_sizes
)
488 si
->va_list_escapes
= true;
492 if (va_list_counter_bump (si
, si
->va_start_ap
, lhs
, true)
493 == (unsigned HOST_WIDE_INT
) -1)
495 si
->va_list_escapes
= true;
499 bitmap_set_bit (si
->va_list_escape_vars
,
500 DECL_UID (SSA_NAME_VAR (lhs
)));
504 /* Check all uses of temporaries from si->va_list_escape_vars bitmap.
505 Return true if va_list might be escaping. */
508 check_all_va_list_escapes (struct stdarg_info
*si
)
514 block_stmt_iterator i
;
516 for (i
= bsi_start (bb
); !bsi_end_p (i
); bsi_next (&i
))
518 tree stmt
= bsi_stmt (i
), use
;
521 FOR_EACH_SSA_TREE_OPERAND (use
, stmt
, iter
, SSA_OP_ALL_USES
)
523 if (! bitmap_bit_p (si
->va_list_escape_vars
,
524 DECL_UID (SSA_NAME_VAR (use
))))
527 if (TREE_CODE (stmt
) == GIMPLE_MODIFY_STMT
)
529 tree lhs
= GIMPLE_STMT_OPERAND (stmt
, 0);
530 tree rhs
= GIMPLE_STMT_OPERAND (stmt
, 1);
532 if (TREE_CODE (rhs
) == WITH_SIZE_EXPR
)
533 rhs
= TREE_OPERAND (rhs
, 0);
536 if (TREE_CODE (rhs
) == INDIRECT_REF
537 && TREE_OPERAND (rhs
, 0) == use
538 && TYPE_SIZE_UNIT (TREE_TYPE (rhs
))
539 && host_integerp (TYPE_SIZE_UNIT (TREE_TYPE (rhs
)), 1)
540 && si
->offsets
[SSA_NAME_VERSION (use
)] != -1)
542 unsigned HOST_WIDE_INT gpr_size
;
543 tree access_size
= TYPE_SIZE_UNIT (TREE_TYPE (rhs
));
545 gpr_size
= si
->offsets
[SSA_NAME_VERSION (use
)]
546 + tree_low_cst (access_size
, 1);
547 if (gpr_size
>= VA_LIST_MAX_GPR_SIZE
)
548 cfun
->va_list_gpr_size
= VA_LIST_MAX_GPR_SIZE
;
549 else if (gpr_size
> cfun
->va_list_gpr_size
)
550 cfun
->va_list_gpr_size
= gpr_size
;
554 /* va_arg sequences may contain
555 other_ap_temp = ap_temp;
556 other_ap_temp = ap_temp + constant;
557 other_ap_temp = (some_type *) ap_temp;
560 if ((TREE_CODE (rhs
) == POINTER_PLUS_EXPR
561 && TREE_CODE (TREE_OPERAND (rhs
, 1)) == INTEGER_CST
)
562 || TREE_CODE (rhs
) == NOP_EXPR
563 || TREE_CODE (rhs
) == CONVERT_EXPR
)
564 rhs
= TREE_OPERAND (rhs
, 0);
568 if (TREE_CODE (lhs
) == SSA_NAME
569 && bitmap_bit_p (si
->va_list_escape_vars
,
570 DECL_UID (SSA_NAME_VAR (lhs
))))
573 if (TREE_CODE (lhs
) == VAR_DECL
574 && bitmap_bit_p (si
->va_list_vars
,
580 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
582 fputs ("va_list escapes in ", dump_file
);
583 print_generic_expr (dump_file
, stmt
, dump_flags
);
584 fputc ('\n', dump_file
);
595 /* Return true if this optimization pass should be done.
596 It makes only sense for stdarg functions. */
599 gate_optimize_stdarg (void)
601 /* This optimization is only for stdarg functions. */
602 return current_function_stdarg
!= 0;
606 /* Entry point to the stdarg optimization pass. */
609 execute_optimize_stdarg (void)
612 bool va_list_escapes
= false;
613 bool va_list_simple_ptr
;
614 struct stdarg_info si
;
615 const char *funcname
= NULL
;
617 cfun
->va_list_gpr_size
= 0;
618 cfun
->va_list_fpr_size
= 0;
619 memset (&si
, 0, sizeof (si
));
620 si
.va_list_vars
= BITMAP_ALLOC (NULL
);
621 si
.va_list_escape_vars
= BITMAP_ALLOC (NULL
);
624 funcname
= lang_hooks
.decl_printable_name (current_function_decl
, 2);
626 va_list_simple_ptr
= POINTER_TYPE_P (va_list_type_node
)
627 && (TREE_TYPE (va_list_type_node
) == void_type_node
628 || TREE_TYPE (va_list_type_node
) == char_type_node
);
629 gcc_assert (is_gimple_reg_type (va_list_type_node
) == va_list_simple_ptr
);
633 block_stmt_iterator i
;
635 for (i
= bsi_start (bb
); !bsi_end_p (i
); bsi_next (&i
))
637 tree stmt
= bsi_stmt (i
);
638 tree call
= get_call_expr_in (stmt
), callee
;
644 callee
= get_callee_fndecl (call
);
646 || DECL_BUILT_IN_CLASS (callee
) != BUILT_IN_NORMAL
)
649 switch (DECL_FUNCTION_CODE (callee
))
651 case BUILT_IN_VA_START
:
653 /* If old style builtins are used, don't optimize anything. */
654 case BUILT_IN_SAVEREGS
:
655 case BUILT_IN_STDARG_START
:
656 case BUILT_IN_ARGS_INFO
:
657 case BUILT_IN_NEXT_ARG
:
658 va_list_escapes
= true;
665 ap
= CALL_EXPR_ARG (call
, 0);
667 if (TREE_CODE (ap
) != ADDR_EXPR
)
669 va_list_escapes
= true;
672 ap
= TREE_OPERAND (ap
, 0);
673 if (TREE_CODE (ap
) == ARRAY_REF
)
675 if (! integer_zerop (TREE_OPERAND (ap
, 1)))
677 va_list_escapes
= true;
680 ap
= TREE_OPERAND (ap
, 0);
682 if (TYPE_MAIN_VARIANT (TREE_TYPE (ap
))
683 != TYPE_MAIN_VARIANT (va_list_type_node
)
684 || TREE_CODE (ap
) != VAR_DECL
)
686 va_list_escapes
= true;
690 if (is_global_var (ap
))
692 va_list_escapes
= true;
696 bitmap_set_bit (si
.va_list_vars
, DECL_UID (ap
));
698 /* VA_START_BB and VA_START_AP will be only used if there is just
699 one va_start in the function. */
708 /* If there were no va_start uses in the function, there is no need to
710 if (si
.va_start_count
== 0)
713 /* If some va_list arguments weren't local, we can't optimize. */
717 /* For void * or char * va_list, something useful can be done only
718 if there is just one va_start. */
719 if (va_list_simple_ptr
&& si
.va_start_count
> 1)
721 va_list_escapes
= true;
725 /* For struct * va_list, if the backend didn't tell us what the counter fields
726 are, there is nothing more we can do. */
727 if (!va_list_simple_ptr
728 && va_list_gpr_counter_field
== NULL_TREE
729 && va_list_fpr_counter_field
== NULL_TREE
)
731 va_list_escapes
= true;
735 /* For void * or char * va_list there is just one counter
736 (va_list itself). Use VA_LIST_GPR_SIZE for it. */
737 if (va_list_simple_ptr
)
738 cfun
->va_list_fpr_size
= VA_LIST_MAX_FPR_SIZE
;
740 calculate_dominance_info (CDI_DOMINATORS
);
744 block_stmt_iterator i
;
746 si
.compute_sizes
= -1;
749 /* For va_list_simple_ptr, we have to check PHI nodes too. We treat
750 them as assignments for the purpose of escape analysis. This is
751 not needed for non-simple va_list because virtual phis don't perform
752 any real data movement. */
753 if (va_list_simple_ptr
)
759 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
761 lhs
= PHI_RESULT (phi
);
763 if (!is_gimple_reg (lhs
))
766 FOR_EACH_PHI_ARG (uop
, phi
, soi
, SSA_OP_USE
)
768 rhs
= USE_FROM_PTR (uop
);
769 if (va_list_ptr_read (&si
, rhs
, lhs
))
771 else if (va_list_ptr_write (&si
, lhs
, rhs
))
774 check_va_list_escapes (&si
, lhs
, rhs
);
776 if (si
.va_list_escapes
777 || walk_tree (&phi
, find_va_list_reference
,
778 si
.va_list_vars
, NULL
))
780 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
782 fputs ("va_list escapes in ", dump_file
);
783 print_generic_expr (dump_file
, phi
, dump_flags
);
784 fputc ('\n', dump_file
);
786 va_list_escapes
= true;
792 for (i
= bsi_start (bb
);
793 !bsi_end_p (i
) && !va_list_escapes
;
796 tree stmt
= bsi_stmt (i
);
799 /* Don't look at __builtin_va_{start,end}, they are ok. */
800 call
= get_call_expr_in (stmt
);
803 tree callee
= get_callee_fndecl (call
);
806 && DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
807 && (DECL_FUNCTION_CODE (callee
) == BUILT_IN_VA_START
808 || DECL_FUNCTION_CODE (callee
) == BUILT_IN_VA_END
))
812 if (TREE_CODE (stmt
) == GIMPLE_MODIFY_STMT
)
814 tree lhs
= GIMPLE_STMT_OPERAND (stmt
, 0);
815 tree rhs
= GIMPLE_STMT_OPERAND (stmt
, 1);
817 if (TREE_CODE (rhs
) == WITH_SIZE_EXPR
)
818 rhs
= TREE_OPERAND (rhs
, 0);
820 if (va_list_simple_ptr
)
822 /* Check for tem = ap. */
823 if (va_list_ptr_read (&si
, rhs
, lhs
))
826 /* Check for the last insn in:
831 else if (va_list_ptr_write (&si
, lhs
, rhs
))
835 check_va_list_escapes (&si
, lhs
, rhs
);
839 /* Check for ap[0].field = temp. */
840 if (va_list_counter_struct_op (&si
, lhs
, rhs
, true))
843 /* Check for temp = ap[0].field. */
844 else if (va_list_counter_struct_op (&si
, rhs
, lhs
, false))
847 /* Do any architecture specific checking. */
848 else if (targetm
.stdarg_optimize_hook
849 && targetm
.stdarg_optimize_hook (&si
, lhs
, rhs
))
854 /* All other uses of va_list are either va_copy (that is not handled
855 in this optimization), taking address of va_list variable or
856 passing va_list to other functions (in that case va_list might
857 escape the function and therefore va_start needs to set it up
858 fully), or some unexpected use of va_list. None of these should
859 happen in a gimplified VA_ARG_EXPR. */
860 if (si
.va_list_escapes
861 || walk_tree (&stmt
, find_va_list_reference
,
862 si
.va_list_vars
, NULL
))
864 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
866 fputs ("va_list escapes in ", dump_file
);
867 print_generic_expr (dump_file
, stmt
, dump_flags
);
868 fputc ('\n', dump_file
);
870 va_list_escapes
= true;
878 if (! va_list_escapes
879 && va_list_simple_ptr
880 && ! bitmap_empty_p (si
.va_list_escape_vars
)
881 && check_all_va_list_escapes (&si
))
882 va_list_escapes
= true;
887 cfun
->va_list_gpr_size
= VA_LIST_MAX_GPR_SIZE
;
888 cfun
->va_list_fpr_size
= VA_LIST_MAX_FPR_SIZE
;
890 BITMAP_FREE (si
.va_list_vars
);
891 BITMAP_FREE (si
.va_list_escape_vars
);
895 fprintf (dump_file
, "%s: va_list escapes %d, needs to save ",
896 funcname
, (int) va_list_escapes
);
897 if (cfun
->va_list_gpr_size
>= VA_LIST_MAX_GPR_SIZE
)
898 fputs ("all", dump_file
);
900 fprintf (dump_file
, "%d", cfun
->va_list_gpr_size
);
901 fputs (" GPR units and ", dump_file
);
902 if (cfun
->va_list_fpr_size
>= VA_LIST_MAX_FPR_SIZE
)
903 fputs ("all", dump_file
);
905 fprintf (dump_file
, "%d", cfun
->va_list_fpr_size
);
906 fputs (" FPR units.\n", dump_file
);
912 struct tree_opt_pass pass_stdarg
=
915 gate_optimize_stdarg
, /* gate */
916 execute_optimize_stdarg
, /* execute */
919 0, /* static_pass_number */
921 PROP_cfg
| PROP_ssa
| PROP_alias
, /* properties_required */
922 0, /* properties_provided */
923 0, /* properties_destroyed */
924 0, /* todo_flags_start */
925 TODO_dump_func
, /* todo_flags_finish */