1 /* Pass computing data for optimizing stdarg functions.
2 Copyright (C) 2004-2013 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 "gimple-pretty-print.h"
32 #include "gimple-ssa.h"
33 #include "tree-phinodes.h"
34 #include "ssa-iterators.h"
35 #include "tree-ssanames.h"
37 #include "tree-pass.h"
38 #include "tree-stdarg.h"
40 /* A simple pass that attempts to optimize stdarg functions on architectures
41 that need to save register arguments to stack on entry to stdarg functions.
42 If the function doesn't use any va_start macros, no registers need to
43 be saved. If va_start macros are used, the va_list variables don't escape
44 the function, it is only necessary to save registers that will be used
45 in va_arg macros. E.g. if va_arg is only used with integral types
46 in the function, floating point registers don't need to be saved, etc. */
49 /* Return true if basic block VA_ARG_BB is dominated by VA_START_BB and
50 is executed at most as many times as VA_START_BB. */
53 reachable_at_most_once (basic_block va_arg_bb
, basic_block va_start_bb
)
55 vec
<edge
> stack
= vNULL
;
61 if (va_arg_bb
== va_start_bb
)
64 if (! dominated_by_p (CDI_DOMINATORS
, va_arg_bb
, va_start_bb
))
67 visited
= sbitmap_alloc (last_basic_block
);
68 bitmap_clear (visited
);
71 FOR_EACH_EDGE (e
, ei
, va_arg_bb
->preds
)
74 while (! stack
.is_empty ())
81 if (e
->flags
& EDGE_COMPLEX
)
87 if (src
== va_start_bb
)
90 /* va_arg_bb can be executed more times than va_start_bb. */
97 gcc_assert (src
!= ENTRY_BLOCK_PTR
);
99 if (! bitmap_bit_p (visited
, src
->index
))
101 bitmap_set_bit (visited
, src
->index
);
102 FOR_EACH_EDGE (e
, ei
, src
->preds
)
108 sbitmap_free (visited
);
113 /* For statement COUNTER = RHS, if RHS is COUNTER + constant,
114 return constant, otherwise return HOST_WIDE_INT_M1U.
115 GPR_P is true if this is GPR counter. */
117 static unsigned HOST_WIDE_INT
118 va_list_counter_bump (struct stdarg_info
*si
, tree counter
, tree rhs
,
123 unsigned HOST_WIDE_INT ret
= 0, val
, counter_val
;
124 unsigned int max_size
;
126 if (si
->offsets
== NULL
)
130 si
->offsets
= XNEWVEC (int, num_ssa_names
);
131 for (i
= 0; i
< num_ssa_names
; ++i
)
135 counter_val
= gpr_p
? cfun
->va_list_gpr_size
: cfun
->va_list_fpr_size
;
136 max_size
= gpr_p
? VA_LIST_MAX_GPR_SIZE
: VA_LIST_MAX_FPR_SIZE
;
137 orig_lhs
= lhs
= rhs
;
140 enum tree_code rhs_code
;
143 if (si
->offsets
[SSA_NAME_VERSION (lhs
)] != -1)
145 if (counter_val
>= max_size
)
151 ret
-= counter_val
- si
->offsets
[SSA_NAME_VERSION (lhs
)];
155 stmt
= SSA_NAME_DEF_STMT (lhs
);
157 if (!is_gimple_assign (stmt
) || gimple_assign_lhs (stmt
) != lhs
)
158 return HOST_WIDE_INT_M1U
;
160 rhs_code
= gimple_assign_rhs_code (stmt
);
161 rhs1
= gimple_assign_rhs1 (stmt
);
162 if ((get_gimple_rhs_class (rhs_code
) == GIMPLE_SINGLE_RHS
163 || gimple_assign_cast_p (stmt
))
164 && TREE_CODE (rhs1
) == SSA_NAME
)
170 if ((rhs_code
== POINTER_PLUS_EXPR
171 || rhs_code
== PLUS_EXPR
)
172 && TREE_CODE (rhs1
) == SSA_NAME
173 && host_integerp (gimple_assign_rhs2 (stmt
), 1))
175 ret
+= tree_low_cst (gimple_assign_rhs2 (stmt
), 1);
180 if (rhs_code
== ADDR_EXPR
181 && TREE_CODE (TREE_OPERAND (rhs1
, 0)) == MEM_REF
182 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (rhs1
, 0), 0)) == SSA_NAME
183 && host_integerp (TREE_OPERAND (TREE_OPERAND (rhs1
, 0), 1), 1))
185 ret
+= tree_low_cst (TREE_OPERAND (TREE_OPERAND (rhs1
, 0), 1), 1);
186 lhs
= TREE_OPERAND (TREE_OPERAND (rhs1
, 0), 0);
190 if (get_gimple_rhs_class (rhs_code
) != GIMPLE_SINGLE_RHS
)
191 return HOST_WIDE_INT_M1U
;
193 rhs
= gimple_assign_rhs1 (stmt
);
194 if (TREE_CODE (counter
) != TREE_CODE (rhs
))
195 return HOST_WIDE_INT_M1U
;
197 if (TREE_CODE (counter
) == COMPONENT_REF
)
199 if (get_base_address (counter
) != get_base_address (rhs
)
200 || TREE_CODE (TREE_OPERAND (rhs
, 1)) != FIELD_DECL
201 || TREE_OPERAND (counter
, 1) != TREE_OPERAND (rhs
, 1))
202 return HOST_WIDE_INT_M1U
;
204 else if (counter
!= rhs
)
205 return HOST_WIDE_INT_M1U
;
211 val
= ret
+ counter_val
;
214 enum tree_code rhs_code
;
217 if (si
->offsets
[SSA_NAME_VERSION (lhs
)] != -1)
221 si
->offsets
[SSA_NAME_VERSION (lhs
)] = max_size
;
223 si
->offsets
[SSA_NAME_VERSION (lhs
)] = val
;
225 stmt
= SSA_NAME_DEF_STMT (lhs
);
227 rhs_code
= gimple_assign_rhs_code (stmt
);
228 rhs1
= gimple_assign_rhs1 (stmt
);
229 if ((get_gimple_rhs_class (rhs_code
) == GIMPLE_SINGLE_RHS
230 || gimple_assign_cast_p (stmt
))
231 && TREE_CODE (rhs1
) == SSA_NAME
)
237 if ((rhs_code
== POINTER_PLUS_EXPR
238 || rhs_code
== PLUS_EXPR
)
239 && TREE_CODE (rhs1
) == SSA_NAME
240 && host_integerp (gimple_assign_rhs2 (stmt
), 1))
242 val
-= tree_low_cst (gimple_assign_rhs2 (stmt
), 1);
247 if (rhs_code
== ADDR_EXPR
248 && TREE_CODE (TREE_OPERAND (rhs1
, 0)) == MEM_REF
249 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (rhs1
, 0), 0)) == SSA_NAME
250 && host_integerp (TREE_OPERAND (TREE_OPERAND (rhs1
, 0), 1), 1))
252 val
-= tree_low_cst (TREE_OPERAND (TREE_OPERAND (rhs1
, 0), 1), 1);
253 lhs
= TREE_OPERAND (TREE_OPERAND (rhs1
, 0), 0);
264 /* Called by walk_tree to look for references to va_list variables. */
267 find_va_list_reference (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
270 bitmap va_list_vars
= (bitmap
) ((struct walk_stmt_info
*) data
)->info
;
273 if (TREE_CODE (var
) == SSA_NAME
)
275 if (bitmap_bit_p (va_list_vars
, SSA_NAME_VERSION (var
)))
278 else if (TREE_CODE (var
) == VAR_DECL
)
280 if (bitmap_bit_p (va_list_vars
, DECL_UID (var
) + num_ssa_names
))
288 /* Helper function of va_list_counter_struct_op. Compute
289 cfun->va_list_{g,f}pr_size. AP is a va_list GPR/FPR counter,
290 if WRITE_P is true, seen in AP = VAR, otherwise seen in VAR = AP
291 statement. GPR_P is true if AP is a GPR counter, false if it is
295 va_list_counter_op (struct stdarg_info
*si
, tree ap
, tree var
, bool gpr_p
,
298 unsigned HOST_WIDE_INT increment
;
300 if (si
->compute_sizes
< 0)
302 si
->compute_sizes
= 0;
303 if (si
->va_start_count
== 1
304 && reachable_at_most_once (si
->bb
, si
->va_start_bb
))
305 si
->compute_sizes
= 1;
307 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
309 "bb%d will %sbe executed at most once for each va_start "
310 "in bb%d\n", si
->bb
->index
, si
->compute_sizes
? "" : "not ",
311 si
->va_start_bb
->index
);
316 && (increment
= va_list_counter_bump (si
, ap
, var
, gpr_p
)) + 1 > 1)
318 if (gpr_p
&& cfun
->va_list_gpr_size
+ increment
< VA_LIST_MAX_GPR_SIZE
)
320 cfun
->va_list_gpr_size
+= increment
;
324 if (!gpr_p
&& cfun
->va_list_fpr_size
+ increment
< VA_LIST_MAX_FPR_SIZE
)
326 cfun
->va_list_fpr_size
+= increment
;
331 if (write_p
|| !si
->compute_sizes
)
334 cfun
->va_list_gpr_size
= VA_LIST_MAX_GPR_SIZE
;
336 cfun
->va_list_fpr_size
= VA_LIST_MAX_FPR_SIZE
;
341 /* If AP is a va_list GPR/FPR counter, compute cfun->va_list_{g,f}pr_size.
342 If WRITE_P is true, AP has been seen in AP = VAR assignment, if WRITE_P
343 is false, AP has been seen in VAR = AP assignment.
344 Return true if the AP = VAR (resp. VAR = AP) statement is a recognized
345 va_arg operation that doesn't cause the va_list variable to escape
349 va_list_counter_struct_op (struct stdarg_info
*si
, tree ap
, tree var
,
354 if (TREE_CODE (ap
) != COMPONENT_REF
355 || TREE_CODE (TREE_OPERAND (ap
, 1)) != FIELD_DECL
)
358 if (TREE_CODE (var
) != SSA_NAME
359 || bitmap_bit_p (si
->va_list_vars
, SSA_NAME_VERSION (var
)))
362 base
= get_base_address (ap
);
363 if (TREE_CODE (base
) != VAR_DECL
364 || !bitmap_bit_p (si
->va_list_vars
, DECL_UID (base
) + num_ssa_names
))
367 if (TREE_OPERAND (ap
, 1) == va_list_gpr_counter_field
)
368 va_list_counter_op (si
, ap
, var
, true, write_p
);
369 else if (TREE_OPERAND (ap
, 1) == va_list_fpr_counter_field
)
370 va_list_counter_op (si
, ap
, var
, false, write_p
);
376 /* Check for TEM = AP. Return true if found and the caller shouldn't
377 search for va_list references in the statement. */
380 va_list_ptr_read (struct stdarg_info
*si
, tree ap
, tree tem
)
382 if (TREE_CODE (ap
) != VAR_DECL
383 || !bitmap_bit_p (si
->va_list_vars
, DECL_UID (ap
) + num_ssa_names
))
386 if (TREE_CODE (tem
) != SSA_NAME
387 || bitmap_bit_p (si
->va_list_vars
, SSA_NAME_VERSION (tem
)))
390 if (si
->compute_sizes
< 0)
392 si
->compute_sizes
= 0;
393 if (si
->va_start_count
== 1
394 && reachable_at_most_once (si
->bb
, si
->va_start_bb
))
395 si
->compute_sizes
= 1;
397 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
399 "bb%d will %sbe executed at most once for each va_start "
400 "in bb%d\n", si
->bb
->index
, si
->compute_sizes
? "" : "not ",
401 si
->va_start_bb
->index
);
404 /* For void * or char * va_list types, there is just one counter.
405 If va_arg is used in a loop, we don't know how many registers need
407 if (! si
->compute_sizes
)
410 if (va_list_counter_bump (si
, ap
, tem
, true) == HOST_WIDE_INT_M1U
)
413 /* Note the temporary, as we need to track whether it doesn't escape
414 the current function. */
415 bitmap_set_bit (si
->va_list_escape_vars
, SSA_NAME_VERSION (tem
));
425 sequence and update cfun->va_list_gpr_size. Return true if found. */
428 va_list_ptr_write (struct stdarg_info
*si
, tree ap
, tree tem2
)
430 unsigned HOST_WIDE_INT increment
;
432 if (TREE_CODE (ap
) != VAR_DECL
433 || !bitmap_bit_p (si
->va_list_vars
, DECL_UID (ap
) + num_ssa_names
))
436 if (TREE_CODE (tem2
) != SSA_NAME
437 || bitmap_bit_p (si
->va_list_vars
, SSA_NAME_VERSION (tem2
)))
440 if (si
->compute_sizes
<= 0)
443 increment
= va_list_counter_bump (si
, ap
, tem2
, true);
444 if (increment
+ 1 <= 1)
447 if (cfun
->va_list_gpr_size
+ increment
< VA_LIST_MAX_GPR_SIZE
)
448 cfun
->va_list_gpr_size
+= increment
;
450 cfun
->va_list_gpr_size
= VA_LIST_MAX_GPR_SIZE
;
456 /* If RHS is X, (some type *) X or X + CST for X a temporary variable
457 containing value of some va_list variable plus optionally some constant,
458 either set si->va_list_escapes or add LHS to si->va_list_escape_vars,
459 depending whether LHS is a function local temporary. */
462 check_va_list_escapes (struct stdarg_info
*si
, tree lhs
, tree rhs
)
464 if (! POINTER_TYPE_P (TREE_TYPE (rhs
)))
467 if (TREE_CODE (rhs
) == SSA_NAME
)
469 if (! bitmap_bit_p (si
->va_list_escape_vars
, SSA_NAME_VERSION (rhs
)))
472 else if (TREE_CODE (rhs
) == ADDR_EXPR
473 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == MEM_REF
474 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (rhs
, 0), 0)) == SSA_NAME
)
476 tree ptr
= TREE_OPERAND (TREE_OPERAND (rhs
, 0), 0);
477 if (! bitmap_bit_p (si
->va_list_escape_vars
, SSA_NAME_VERSION (ptr
)))
483 if (TREE_CODE (lhs
) != SSA_NAME
)
485 si
->va_list_escapes
= true;
489 if (si
->compute_sizes
< 0)
491 si
->compute_sizes
= 0;
492 if (si
->va_start_count
== 1
493 && reachable_at_most_once (si
->bb
, si
->va_start_bb
))
494 si
->compute_sizes
= 1;
496 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
498 "bb%d will %sbe executed at most once for each va_start "
499 "in bb%d\n", si
->bb
->index
, si
->compute_sizes
? "" : "not ",
500 si
->va_start_bb
->index
);
503 /* For void * or char * va_list types, there is just one counter.
504 If va_arg is used in a loop, we don't know how many registers need
506 if (! si
->compute_sizes
)
508 si
->va_list_escapes
= true;
512 if (va_list_counter_bump (si
, si
->va_start_ap
, lhs
, true)
513 == HOST_WIDE_INT_M1U
)
515 si
->va_list_escapes
= true;
519 bitmap_set_bit (si
->va_list_escape_vars
, SSA_NAME_VERSION (lhs
));
523 /* Check all uses of temporaries from si->va_list_escape_vars bitmap.
524 Return true if va_list might be escaping. */
527 check_all_va_list_escapes (struct stdarg_info
*si
)
533 gimple_stmt_iterator i
;
535 for (i
= gsi_start_phis (bb
); !gsi_end_p (i
); gsi_next (&i
))
540 gimple phi
= gsi_stmt (i
);
542 lhs
= PHI_RESULT (phi
);
543 if (virtual_operand_p (lhs
)
544 || bitmap_bit_p (si
->va_list_escape_vars
,
545 SSA_NAME_VERSION (lhs
)))
548 FOR_EACH_PHI_ARG (uop
, phi
, soi
, SSA_OP_USE
)
550 tree rhs
= USE_FROM_PTR (uop
);
551 if (TREE_CODE (rhs
) == SSA_NAME
552 && bitmap_bit_p (si
->va_list_escape_vars
,
553 SSA_NAME_VERSION (rhs
)))
555 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
557 fputs ("va_list escapes in ", dump_file
);
558 print_gimple_stmt (dump_file
, phi
, 0, dump_flags
);
559 fputc ('\n', dump_file
);
566 for (i
= gsi_start_bb (bb
); !gsi_end_p (i
); gsi_next (&i
))
568 gimple stmt
= gsi_stmt (i
);
572 if (is_gimple_debug (stmt
))
575 FOR_EACH_SSA_TREE_OPERAND (use
, stmt
, iter
, SSA_OP_ALL_USES
)
577 if (! bitmap_bit_p (si
->va_list_escape_vars
,
578 SSA_NAME_VERSION (use
)))
581 if (is_gimple_assign (stmt
))
583 tree rhs
= gimple_assign_rhs1 (stmt
);
584 enum tree_code rhs_code
= gimple_assign_rhs_code (stmt
);
587 if (rhs_code
== MEM_REF
588 && TREE_OPERAND (rhs
, 0) == use
589 && TYPE_SIZE_UNIT (TREE_TYPE (rhs
))
590 && host_integerp (TYPE_SIZE_UNIT (TREE_TYPE (rhs
)), 1)
591 && si
->offsets
[SSA_NAME_VERSION (use
)] != -1)
593 unsigned HOST_WIDE_INT gpr_size
;
594 tree access_size
= TYPE_SIZE_UNIT (TREE_TYPE (rhs
));
596 gpr_size
= si
->offsets
[SSA_NAME_VERSION (use
)]
597 + tree_low_cst (TREE_OPERAND (rhs
, 1), 0)
598 + tree_low_cst (access_size
, 1);
599 if (gpr_size
>= VA_LIST_MAX_GPR_SIZE
)
600 cfun
->va_list_gpr_size
= VA_LIST_MAX_GPR_SIZE
;
601 else if (gpr_size
> cfun
->va_list_gpr_size
)
602 cfun
->va_list_gpr_size
= gpr_size
;
606 /* va_arg sequences may contain
607 other_ap_temp = ap_temp;
608 other_ap_temp = ap_temp + constant;
609 other_ap_temp = (some_type *) ap_temp;
613 && ((rhs_code
== POINTER_PLUS_EXPR
614 && (TREE_CODE (gimple_assign_rhs2 (stmt
))
616 || gimple_assign_cast_p (stmt
)
617 || (get_gimple_rhs_class (rhs_code
)
618 == GIMPLE_SINGLE_RHS
)))
620 tree lhs
= gimple_assign_lhs (stmt
);
622 if (TREE_CODE (lhs
) == SSA_NAME
623 && bitmap_bit_p (si
->va_list_escape_vars
,
624 SSA_NAME_VERSION (lhs
)))
627 if (TREE_CODE (lhs
) == VAR_DECL
628 && bitmap_bit_p (si
->va_list_vars
,
629 DECL_UID (lhs
) + num_ssa_names
))
632 else if (rhs_code
== ADDR_EXPR
633 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == MEM_REF
634 && TREE_OPERAND (TREE_OPERAND (rhs
, 0), 0) == use
)
636 tree lhs
= gimple_assign_lhs (stmt
);
638 if (bitmap_bit_p (si
->va_list_escape_vars
,
639 SSA_NAME_VERSION (lhs
)))
644 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
646 fputs ("va_list escapes in ", dump_file
);
647 print_gimple_stmt (dump_file
, stmt
, 0, dump_flags
);
648 fputc ('\n', dump_file
);
659 /* Return true if this optimization pass should be done.
660 It makes only sense for stdarg functions. */
663 gate_optimize_stdarg (void)
665 /* This optimization is only for stdarg functions. */
666 return cfun
->stdarg
!= 0;
670 /* Entry point to the stdarg optimization pass. */
673 execute_optimize_stdarg (void)
676 bool va_list_escapes
= false;
677 bool va_list_simple_ptr
;
678 struct stdarg_info si
;
679 struct walk_stmt_info wi
;
680 const char *funcname
= NULL
;
683 cfun
->va_list_gpr_size
= 0;
684 cfun
->va_list_fpr_size
= 0;
685 memset (&si
, 0, sizeof (si
));
686 si
.va_list_vars
= BITMAP_ALLOC (NULL
);
687 si
.va_list_escape_vars
= BITMAP_ALLOC (NULL
);
690 funcname
= lang_hooks
.decl_printable_name (current_function_decl
, 2);
692 cfun_va_list
= targetm
.fn_abi_va_list (cfun
->decl
);
693 va_list_simple_ptr
= POINTER_TYPE_P (cfun_va_list
)
694 && (TREE_TYPE (cfun_va_list
) == void_type_node
695 || TREE_TYPE (cfun_va_list
) == char_type_node
);
696 gcc_assert (is_gimple_reg_type (cfun_va_list
) == va_list_simple_ptr
);
700 gimple_stmt_iterator i
;
702 for (i
= gsi_start_bb (bb
); !gsi_end_p (i
); gsi_next (&i
))
704 gimple stmt
= gsi_stmt (i
);
707 if (!is_gimple_call (stmt
))
710 callee
= gimple_call_fndecl (stmt
);
712 || DECL_BUILT_IN_CLASS (callee
) != BUILT_IN_NORMAL
)
715 switch (DECL_FUNCTION_CODE (callee
))
717 case BUILT_IN_VA_START
:
719 /* If old style builtins are used, don't optimize anything. */
720 case BUILT_IN_SAVEREGS
:
721 case BUILT_IN_NEXT_ARG
:
722 va_list_escapes
= true;
729 ap
= gimple_call_arg (stmt
, 0);
731 if (TREE_CODE (ap
) != ADDR_EXPR
)
733 va_list_escapes
= true;
736 ap
= TREE_OPERAND (ap
, 0);
737 if (TREE_CODE (ap
) == ARRAY_REF
)
739 if (! integer_zerop (TREE_OPERAND (ap
, 1)))
741 va_list_escapes
= true;
744 ap
= TREE_OPERAND (ap
, 0);
746 if (TYPE_MAIN_VARIANT (TREE_TYPE (ap
))
747 != TYPE_MAIN_VARIANT (targetm
.fn_abi_va_list (cfun
->decl
))
748 || TREE_CODE (ap
) != VAR_DECL
)
750 va_list_escapes
= true;
754 if (is_global_var (ap
))
756 va_list_escapes
= true;
760 bitmap_set_bit (si
.va_list_vars
, DECL_UID (ap
) + num_ssa_names
);
762 /* VA_START_BB and VA_START_AP will be only used if there is just
763 one va_start in the function. */
772 /* If there were no va_start uses in the function, there is no need to
774 if (si
.va_start_count
== 0)
777 /* If some va_list arguments weren't local, we can't optimize. */
781 /* For void * or char * va_list, something useful can be done only
782 if there is just one va_start. */
783 if (va_list_simple_ptr
&& si
.va_start_count
> 1)
785 va_list_escapes
= true;
789 /* For struct * va_list, if the backend didn't tell us what the counter fields
790 are, there is nothing more we can do. */
791 if (!va_list_simple_ptr
792 && va_list_gpr_counter_field
== NULL_TREE
793 && va_list_fpr_counter_field
== NULL_TREE
)
795 va_list_escapes
= true;
799 /* For void * or char * va_list there is just one counter
800 (va_list itself). Use VA_LIST_GPR_SIZE for it. */
801 if (va_list_simple_ptr
)
802 cfun
->va_list_fpr_size
= VA_LIST_MAX_FPR_SIZE
;
804 calculate_dominance_info (CDI_DOMINATORS
);
805 memset (&wi
, 0, sizeof (wi
));
806 wi
.info
= si
.va_list_vars
;
810 gimple_stmt_iterator i
;
812 si
.compute_sizes
= -1;
815 /* For va_list_simple_ptr, we have to check PHI nodes too. We treat
816 them as assignments for the purpose of escape analysis. This is
817 not needed for non-simple va_list because virtual phis don't perform
818 any real data movement. */
819 if (va_list_simple_ptr
)
825 for (i
= gsi_start_phis (bb
); !gsi_end_p (i
); gsi_next (&i
))
827 gimple phi
= gsi_stmt (i
);
828 lhs
= PHI_RESULT (phi
);
830 if (virtual_operand_p (lhs
))
833 FOR_EACH_PHI_ARG (uop
, phi
, soi
, SSA_OP_USE
)
835 rhs
= USE_FROM_PTR (uop
);
836 if (va_list_ptr_read (&si
, rhs
, lhs
))
838 else if (va_list_ptr_write (&si
, lhs
, rhs
))
841 check_va_list_escapes (&si
, lhs
, rhs
);
843 if (si
.va_list_escapes
)
845 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
847 fputs ("va_list escapes in ", dump_file
);
848 print_gimple_stmt (dump_file
, phi
, 0, dump_flags
);
849 fputc ('\n', dump_file
);
851 va_list_escapes
= true;
857 for (i
= gsi_start_bb (bb
);
858 !gsi_end_p (i
) && !va_list_escapes
;
861 gimple stmt
= gsi_stmt (i
);
863 /* Don't look at __builtin_va_{start,end}, they are ok. */
864 if (is_gimple_call (stmt
))
866 tree callee
= gimple_call_fndecl (stmt
);
869 && DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
870 && (DECL_FUNCTION_CODE (callee
) == BUILT_IN_VA_START
871 || DECL_FUNCTION_CODE (callee
) == BUILT_IN_VA_END
))
875 if (is_gimple_assign (stmt
))
877 tree lhs
= gimple_assign_lhs (stmt
);
878 tree rhs
= gimple_assign_rhs1 (stmt
);
880 if (va_list_simple_ptr
)
882 if (get_gimple_rhs_class (gimple_assign_rhs_code (stmt
))
883 == GIMPLE_SINGLE_RHS
)
885 /* Check for ap ={v} {}. */
886 if (TREE_CLOBBER_P (rhs
))
889 /* Check for tem = ap. */
890 else if (va_list_ptr_read (&si
, rhs
, lhs
))
893 /* Check for the last insn in:
898 else if (va_list_ptr_write (&si
, lhs
, rhs
))
902 if ((gimple_assign_rhs_code (stmt
) == POINTER_PLUS_EXPR
903 && TREE_CODE (gimple_assign_rhs2 (stmt
)) == INTEGER_CST
)
904 || CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt
))
905 || (get_gimple_rhs_class (gimple_assign_rhs_code (stmt
))
906 == GIMPLE_SINGLE_RHS
))
907 check_va_list_escapes (&si
, lhs
, rhs
);
911 if (get_gimple_rhs_class (gimple_assign_rhs_code (stmt
))
912 == GIMPLE_SINGLE_RHS
)
914 /* Check for ap ={v} {}. */
915 if (TREE_CLOBBER_P (rhs
))
918 /* Check for ap[0].field = temp. */
919 else if (va_list_counter_struct_op (&si
, lhs
, rhs
, true))
922 /* Check for temp = ap[0].field. */
923 else if (va_list_counter_struct_op (&si
, rhs
, lhs
,
928 /* Do any architecture specific checking. */
929 if (targetm
.stdarg_optimize_hook
930 && targetm
.stdarg_optimize_hook (&si
, stmt
))
934 else if (is_gimple_debug (stmt
))
937 /* All other uses of va_list are either va_copy (that is not handled
938 in this optimization), taking address of va_list variable or
939 passing va_list to other functions (in that case va_list might
940 escape the function and therefore va_start needs to set it up
941 fully), or some unexpected use of va_list. None of these should
942 happen in a gimplified VA_ARG_EXPR. */
943 if (si
.va_list_escapes
944 || walk_gimple_op (stmt
, find_va_list_reference
, &wi
))
946 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
948 fputs ("va_list escapes in ", dump_file
);
949 print_gimple_stmt (dump_file
, stmt
, 0, dump_flags
);
950 fputc ('\n', dump_file
);
952 va_list_escapes
= true;
960 if (! va_list_escapes
961 && va_list_simple_ptr
962 && ! bitmap_empty_p (si
.va_list_escape_vars
)
963 && check_all_va_list_escapes (&si
))
964 va_list_escapes
= true;
969 cfun
->va_list_gpr_size
= VA_LIST_MAX_GPR_SIZE
;
970 cfun
->va_list_fpr_size
= VA_LIST_MAX_FPR_SIZE
;
972 BITMAP_FREE (si
.va_list_vars
);
973 BITMAP_FREE (si
.va_list_escape_vars
);
977 fprintf (dump_file
, "%s: va_list escapes %d, needs to save ",
978 funcname
, (int) va_list_escapes
);
979 if (cfun
->va_list_gpr_size
>= VA_LIST_MAX_GPR_SIZE
)
980 fputs ("all", dump_file
);
982 fprintf (dump_file
, "%d", cfun
->va_list_gpr_size
);
983 fputs (" GPR units and ", dump_file
);
984 if (cfun
->va_list_fpr_size
>= VA_LIST_MAX_FPR_SIZE
)
985 fputs ("all", dump_file
);
987 fprintf (dump_file
, "%d", cfun
->va_list_fpr_size
);
988 fputs (" FPR units.\n", dump_file
);
996 const pass_data pass_data_stdarg
=
998 GIMPLE_PASS
, /* type */
1000 OPTGROUP_NONE
, /* optinfo_flags */
1001 true, /* has_gate */
1002 true, /* has_execute */
1003 TV_NONE
, /* tv_id */
1004 ( PROP_cfg
| PROP_ssa
), /* properties_required */
1005 0, /* properties_provided */
1006 0, /* properties_destroyed */
1007 0, /* todo_flags_start */
1008 0, /* todo_flags_finish */
1011 class pass_stdarg
: public gimple_opt_pass
1014 pass_stdarg (gcc::context
*ctxt
)
1015 : gimple_opt_pass (pass_data_stdarg
, ctxt
)
1018 /* opt_pass methods: */
1019 bool gate () { return gate_optimize_stdarg (); }
1020 unsigned int execute () { return execute_optimize_stdarg (); }
1022 }; // class pass_stdarg
1027 make_pass_stdarg (gcc::context
*ctxt
)
1029 return new pass_stdarg (ctxt
);