1 /* Interprocedural constant propagation
2 Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Razya Ladelsky <RAZYA@il.ibm.com>
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/>. */
22 /* Interprocedural constant propagation. The aim of interprocedural constant
23 propagation (IPCP) is to find which function's argument has the same
24 constant value in each invocation throughout the whole program. For example,
25 consider the following program:
29 printf ("value is %d",y);
49 The IPCP algorithm will find that g's formal argument y is always called
52 The algorithm used is based on "Interprocedural Constant Propagation", by
53 Challahan David, Keith D Cooper, Ken Kennedy, Linda Torczon, Comp86, pg
56 The optimization is divided into three stages:
58 First stage - intraprocedural analysis
59 =======================================
60 This phase computes jump_function and modification flags.
62 A jump function for a callsite represents the values passed as an actual
63 arguments of a given callsite. There are three types of values:
64 Pass through - the caller's formal parameter is passed as an actual argument.
65 Constant - a constant is passed as an actual argument.
66 Unknown - neither of the above.
68 The jump function info, ipa_jump_func, is stored in ipa_edge_args
69 structure (defined in ipa_prop.h and pointed to by cgraph_node->aux)
70 modified_flags are defined in ipa_node_params structure
71 (defined in ipa_prop.h and pointed to by cgraph_edge->aux).
73 -ipcp_init_stage() is the first stage driver.
75 Second stage - interprocedural analysis
76 ========================================
77 This phase does the interprocedural constant propagation.
78 It computes lattices for all formal parameters in the program
79 and their value that may be:
81 BOTTOM - non constant.
82 CONSTANT - constant value.
84 Lattice describing a formal parameter p will have a constant value if all
85 callsites invoking this function have the same constant value passed to p.
87 The lattices are stored in ipcp_lattice which is itself in ipa_node_params
88 structure (defined in ipa_prop.h and pointed to by cgraph_edge->aux).
90 -ipcp_iterate_stage() is the second stage driver.
92 Third phase - transformation of function code
93 ============================================
94 Propagates the constant-valued formals into the function.
95 For each function whose parameters are constants, we create its clone.
97 Then we process the clone in two ways:
98 1. We insert an assignment statement 'parameter = const' at the beginning
99 of the cloned function.
100 2. For read-only parameters that do not live in memory, we replace all their
101 uses with the constant.
103 We also need to modify some callsites to call the cloned functions instead
104 of the original ones. For a callsite passing an argument found to be a
105 constant by IPCP, there are two different cases to handle:
106 1. A constant is passed as an argument. In this case the callsite in the
107 should be redirected to call the cloned callee.
108 2. A parameter (of the caller) passed as an argument (pass through
109 argument). In such cases both the caller and the callee have clones and
110 only the callsite in the cloned caller is redirected to call to the
113 This update is done in two steps: First all cloned functions are created
114 during a traversal of the call graph, during which all callsites are
115 redirected to call the cloned function. Then the callsites are traversed
116 and many calls redirected back to fit the description above.
118 -ipcp_insert_stage() is the third phase driver.
124 #include "coretypes.h"
128 #include "ipa-prop.h"
129 #include "tree-flow.h"
130 #include "tree-pass.h"
133 #include "diagnostic.h"
134 #include "tree-pretty-print.h"
135 #include "tree-dump.h"
136 #include "tree-inline.h"
140 /* Number of functions identified as candidates for cloning. When not cloning
141 we can simplify iterate stage not forcing it to go through the decision
142 on what is profitable and what not. */
143 static int n_cloning_candidates
;
145 /* Maximal count found in program. */
146 static gcov_type max_count
;
148 /* Cgraph nodes that has been completely replaced by cloning during iterate
149 * stage and will be removed after ipcp is finished. */
150 static bitmap dead_nodes
;
152 static void ipcp_print_profile_data (FILE *);
153 static void ipcp_function_scale_print (FILE *);
155 /* Get the original node field of ipa_node_params associated with node NODE. */
156 static inline struct cgraph_node
*
157 ipcp_get_orig_node (struct cgraph_node
*node
)
159 return IPA_NODE_REF (node
)->ipcp_orig_node
;
162 /* Return true if NODE describes a cloned/versioned function. */
164 ipcp_node_is_clone (struct cgraph_node
*node
)
166 return (ipcp_get_orig_node (node
) != NULL
);
169 /* Create ipa_node_params and its data structures for NEW_NODE. Set ORIG_NODE
170 as the ipcp_orig_node field in ipa_node_params. */
172 ipcp_init_cloned_node (struct cgraph_node
*orig_node
,
173 struct cgraph_node
*new_node
)
175 ipa_check_create_node_params ();
176 ipa_initialize_node_params (new_node
);
177 IPA_NODE_REF (new_node
)->ipcp_orig_node
= orig_node
;
180 /* Perform intraprocedrual analysis needed for ipcp. */
182 ipcp_analyze_node (struct cgraph_node
*node
)
184 /* Unreachable nodes should have been eliminated before ipcp. */
185 gcc_assert (node
->needed
|| node
->reachable
);
187 node
->local
.versionable
= tree_versionable_function_p (node
->decl
);
188 ipa_initialize_node_params (node
);
189 ipa_detect_param_modifications (node
);
192 /* Return scale for NODE. */
193 static inline gcov_type
194 ipcp_get_node_scale (struct cgraph_node
*node
)
196 return IPA_NODE_REF (node
)->count_scale
;
199 /* Set COUNT as scale for NODE. */
201 ipcp_set_node_scale (struct cgraph_node
*node
, gcov_type count
)
203 IPA_NODE_REF (node
)->count_scale
= count
;
206 /* Return whether LAT is a constant lattice. */
208 ipcp_lat_is_const (struct ipcp_lattice
*lat
)
210 if (lat
->type
== IPA_CONST_VALUE
)
216 /* Return whether LAT is a constant lattice that ipa-cp can actually insert
217 into the code (i.e. constants excluding member pointers and pointers). */
219 ipcp_lat_is_insertable (struct ipcp_lattice
*lat
)
221 return lat
->type
== IPA_CONST_VALUE
;
224 /* Return true if LAT1 and LAT2 are equal. */
226 ipcp_lats_are_equal (struct ipcp_lattice
*lat1
, struct ipcp_lattice
*lat2
)
228 gcc_assert (ipcp_lat_is_const (lat1
) && ipcp_lat_is_const (lat2
));
229 if (lat1
->type
!= lat2
->type
)
232 if (TREE_CODE (lat1
->constant
) == ADDR_EXPR
233 && TREE_CODE (lat2
->constant
) == ADDR_EXPR
234 && TREE_CODE (TREE_OPERAND (lat1
->constant
, 0)) == CONST_DECL
235 && TREE_CODE (TREE_OPERAND (lat2
->constant
, 0)) == CONST_DECL
)
236 return operand_equal_p (DECL_INITIAL (TREE_OPERAND (lat1
->constant
, 0)),
237 DECL_INITIAL (TREE_OPERAND (lat2
->constant
, 0)), 0);
239 return operand_equal_p (lat1
->constant
, lat2
->constant
, 0);
242 /* Compute Meet arithmetics:
243 Meet (IPA_BOTTOM, x) = IPA_BOTTOM
245 Meet (const_a,const_b) = IPA_BOTTOM, if const_a != const_b.
246 MEET (const_a,const_b) = const_a, if const_a == const_b.*/
248 ipa_lattice_meet (struct ipcp_lattice
*res
, struct ipcp_lattice
*lat1
,
249 struct ipcp_lattice
*lat2
)
251 if (lat1
->type
== IPA_BOTTOM
|| lat2
->type
== IPA_BOTTOM
)
253 res
->type
= IPA_BOTTOM
;
256 if (lat1
->type
== IPA_TOP
)
258 res
->type
= lat2
->type
;
259 res
->constant
= lat2
->constant
;
262 if (lat2
->type
== IPA_TOP
)
264 res
->type
= lat1
->type
;
265 res
->constant
= lat1
->constant
;
268 if (!ipcp_lats_are_equal (lat1
, lat2
))
270 res
->type
= IPA_BOTTOM
;
273 res
->type
= lat1
->type
;
274 res
->constant
= lat1
->constant
;
277 /* Return the lattice corresponding to the Ith formal parameter of the function
278 described by INFO. */
279 static inline struct ipcp_lattice
*
280 ipcp_get_lattice (struct ipa_node_params
*info
, int i
)
282 return &(info
->params
[i
].ipcp_lattice
);
285 /* Given the jump function JFUNC, compute the lattice LAT that describes the
286 value coming down the callsite. INFO describes the caller node so that
287 pass-through jump functions can be evaluated. */
289 ipcp_lattice_from_jfunc (struct ipa_node_params
*info
, struct ipcp_lattice
*lat
,
290 struct ipa_jump_func
*jfunc
)
292 if (jfunc
->type
== IPA_JF_CONST
)
294 lat
->type
= IPA_CONST_VALUE
;
295 lat
->constant
= jfunc
->value
.constant
;
297 else if (jfunc
->type
== IPA_JF_PASS_THROUGH
)
299 struct ipcp_lattice
*caller_lat
;
302 caller_lat
= ipcp_get_lattice (info
, jfunc
->value
.pass_through
.formal_id
);
303 lat
->type
= caller_lat
->type
;
304 if (caller_lat
->type
!= IPA_CONST_VALUE
)
306 cst
= caller_lat
->constant
;
308 if (jfunc
->value
.pass_through
.operation
!= NOP_EXPR
)
311 if (TREE_CODE_CLASS (jfunc
->value
.pass_through
.operation
)
313 restype
= boolean_type_node
;
315 restype
= TREE_TYPE (cst
);
316 cst
= fold_binary (jfunc
->value
.pass_through
.operation
,
317 restype
, cst
, jfunc
->value
.pass_through
.operand
);
319 if (!cst
|| !is_gimple_ip_invariant (cst
))
320 lat
->type
= IPA_BOTTOM
;
323 else if (jfunc
->type
== IPA_JF_ANCESTOR
)
325 struct ipcp_lattice
*caller_lat
;
329 caller_lat
= ipcp_get_lattice (info
, jfunc
->value
.ancestor
.formal_id
);
330 lat
->type
= caller_lat
->type
;
331 if (caller_lat
->type
!= IPA_CONST_VALUE
)
333 if (TREE_CODE (caller_lat
->constant
) != ADDR_EXPR
)
335 /* This can happen when the constant is a NULL pointer. */
336 lat
->type
= IPA_BOTTOM
;
339 t
= TREE_OPERAND (caller_lat
->constant
, 0);
340 ok
= build_ref_for_offset (&t
, TREE_TYPE (t
),
341 jfunc
->value
.ancestor
.offset
,
342 jfunc
->value
.ancestor
.type
, false);
345 lat
->type
= IPA_BOTTOM
;
346 lat
->constant
= NULL_TREE
;
349 lat
->constant
= build_fold_addr_expr (t
);
352 lat
->type
= IPA_BOTTOM
;
355 /* True when OLD_LAT and NEW_LAT values are not the same. */
358 ipcp_lattice_changed (struct ipcp_lattice
*old_lat
,
359 struct ipcp_lattice
*new_lat
)
361 if (old_lat
->type
== new_lat
->type
)
363 if (!ipcp_lat_is_const (old_lat
))
365 if (ipcp_lats_are_equal (old_lat
, new_lat
))
371 /* Print all ipcp_lattices of all functions to F. */
373 ipcp_print_all_lattices (FILE * f
)
375 struct cgraph_node
*node
;
378 fprintf (f
, "\nLattice:\n");
379 for (node
= cgraph_nodes
; node
; node
= node
->next
)
381 struct ipa_node_params
*info
;
385 info
= IPA_NODE_REF (node
);
386 fprintf (f
, " Node: %s:\n", cgraph_node_name (node
));
387 count
= ipa_get_param_count (info
);
388 for (i
= 0; i
< count
; i
++)
390 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
392 fprintf (f
, " param [%d]: ", i
);
393 if (lat
->type
== IPA_CONST_VALUE
)
395 tree cst
= lat
->constant
;
396 fprintf (f
, "type is CONST ");
397 print_generic_expr (f
, cst
, 0);
398 if (TREE_CODE (cst
) == ADDR_EXPR
399 && TREE_CODE (TREE_OPERAND (cst
, 0)) == CONST_DECL
)
402 print_generic_expr (f
, DECL_INITIAL (TREE_OPERAND (cst
, 0)),
407 else if (lat
->type
== IPA_TOP
)
408 fprintf (f
, "type is TOP\n");
410 fprintf (f
, "type is BOTTOM\n");
415 /* Return true if ipcp algorithms would allow cloning NODE. */
418 ipcp_versionable_function_p (struct cgraph_node
*node
)
420 struct cgraph_edge
*edge
;
422 /* There are a number of generic reasons functions cannot be versioned. */
423 if (!node
->local
.versionable
)
426 /* Removing arguments doesn't work if the function takes varargs
427 or use __builtin_apply_args. */
428 for (edge
= node
->callees
; edge
; edge
= edge
->next_callee
)
430 tree t
= edge
->callee
->decl
;
431 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
432 && (DECL_FUNCTION_CODE (t
) == BUILT_IN_APPLY_ARGS
433 || DECL_FUNCTION_CODE (t
) == BUILT_IN_VA_START
))
440 /* Return true if this NODE is viable candidate for cloning. */
442 ipcp_cloning_candidate_p (struct cgraph_node
*node
)
446 gcov_type direct_call_sum
= 0;
447 struct cgraph_edge
*e
;
449 /* We never clone functions that are not visible from outside.
450 FIXME: in future we should clone such functions when they are called with
451 different constants, but current ipcp implementation is not good on this.
453 if (cgraph_only_called_directly_p (node
) || !node
->analyzed
)
456 if (cgraph_function_body_availability (node
) <= AVAIL_OVERWRITABLE
)
459 fprintf (dump_file
, "Not considering %s for cloning; body is overwrittable.\n",
460 cgraph_node_name (node
));
463 if (!ipcp_versionable_function_p (node
))
466 fprintf (dump_file
, "Not considering %s for cloning; body is not versionable.\n",
467 cgraph_node_name (node
));
470 for (e
= node
->callers
; e
; e
= e
->next_caller
)
472 direct_call_sum
+= e
->count
;
474 if (cgraph_maybe_hot_edge_p (e
))
481 fprintf (dump_file
, "Not considering %s for cloning; no direct calls.\n",
482 cgraph_node_name (node
));
485 if (node
->local
.inline_summary
.self_size
< n_calls
)
488 fprintf (dump_file
, "Considering %s for cloning; code would shrink.\n",
489 cgraph_node_name (node
));
493 if (!flag_ipa_cp_clone
)
496 fprintf (dump_file
, "Not considering %s for cloning; -fipa-cp-clone disabled.\n",
497 cgraph_node_name (node
));
501 if (!optimize_function_for_speed_p (DECL_STRUCT_FUNCTION (node
->decl
)))
504 fprintf (dump_file
, "Not considering %s for cloning; optimizing it for size.\n",
505 cgraph_node_name (node
));
509 /* When profile is available and function is hot, propagate into it even if
510 calls seems cold; constant propagation can improve function's speed
514 if (direct_call_sum
> node
->count
* 90 / 100)
517 fprintf (dump_file
, "Considering %s for cloning; usually called directly.\n",
518 cgraph_node_name (node
));
525 fprintf (dump_file
, "Not considering %s for cloning; no hot calls.\n",
526 cgraph_node_name (node
));
530 fprintf (dump_file
, "Considering %s for cloning.\n",
531 cgraph_node_name (node
));
535 /* Initialize ipcp_lattices array. The lattices corresponding to supported
536 types (integers, real types and Fortran constants defined as const_decls)
537 are initialized to IPA_TOP, the rest of them to IPA_BOTTOM. */
539 ipcp_initialize_node_lattices (struct cgraph_node
*node
)
542 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
543 enum ipa_lattice_type type
;
545 if (ipa_is_called_with_var_arguments (info
))
547 else if (cgraph_only_called_directly_p (node
))
549 /* When cloning is allowed, we can assume that externally visible functions
550 are not called. We will compensate this by cloning later. */
551 else if (ipcp_cloning_candidate_p (node
))
552 type
= IPA_TOP
, n_cloning_candidates
++;
556 for (i
= 0; i
< ipa_get_param_count (info
) ; i
++)
557 ipcp_get_lattice (info
, i
)->type
= type
;
560 /* build INTEGER_CST tree with type TREE_TYPE and value according to LAT.
563 build_const_val (struct ipcp_lattice
*lat
, tree tree_type
)
567 gcc_assert (ipcp_lat_is_const (lat
));
570 if (!useless_type_conversion_p (tree_type
, TREE_TYPE (val
)))
572 if (fold_convertible_p (tree_type
, val
))
573 return fold_build1 (NOP_EXPR
, tree_type
, val
);
575 return fold_build1 (VIEW_CONVERT_EXPR
, tree_type
, val
);
580 /* Compute the proper scale for NODE. It is the ratio between the number of
581 direct calls (represented on the incoming cgraph_edges) and sum of all
582 invocations of NODE (represented as count in cgraph_node).
584 FIXME: This code is wrong. Since the callers can be also clones and
585 the clones are not scaled yet, the sums gets unrealistically high.
586 To properly compute the counts, we would need to do propagation across
587 callgraph (as external call to A might imply call to non-clonned B
588 if A's clone calls clonned B). */
590 ipcp_compute_node_scale (struct cgraph_node
*node
)
593 struct cgraph_edge
*cs
;
596 /* Compute sum of all counts of callers. */
597 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
599 /* Work around the unrealistically high sum problem. We just don't want
600 the non-cloned body to have negative or very low frequency. Since
601 majority of execution time will be spent in clones anyway, this should
602 give good enough profile. */
603 if (sum
> node
->count
* 9 / 10)
604 sum
= node
->count
* 9 / 10;
605 if (node
->count
== 0)
606 ipcp_set_node_scale (node
, 0);
608 ipcp_set_node_scale (node
, sum
* REG_BR_PROB_BASE
/ node
->count
);
611 /* Initialization and computation of IPCP data structures. This is the initial
612 intraprocedural analysis of functions, which gathers information to be
613 propagated later on. */
615 ipcp_init_stage (void)
617 struct cgraph_node
*node
;
619 for (node
= cgraph_nodes
; node
; node
= node
->next
)
621 ipcp_analyze_node (node
);
622 for (node
= cgraph_nodes
; node
; node
= node
->next
)
627 ipa_analyze_params_uses (node
);
628 /* building jump functions */
629 ipa_compute_jump_functions (node
);
633 /* Return true if there are some formal parameters whose value is IPA_TOP (in
634 the whole compilation unit). Change their values to IPA_BOTTOM, since they
635 most probably get their values from outside of this compilation unit. */
637 ipcp_change_tops_to_bottom (void)
640 struct cgraph_node
*node
;
644 for (node
= cgraph_nodes
; node
; node
= node
->next
)
646 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
647 count
= ipa_get_param_count (info
);
648 for (i
= 0; i
< count
; i
++)
650 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
651 if (lat
->type
== IPA_TOP
)
656 fprintf (dump_file
, "Forcing param ");
657 print_generic_expr (dump_file
, ipa_get_param (info
, i
), 0);
658 fprintf (dump_file
, " of node %s to bottom.\n",
659 cgraph_node_name (node
));
661 lat
->type
= IPA_BOTTOM
;
668 /* Interprocedural analysis. The algorithm propagates constants from the
669 caller's parameters to the callee's arguments. */
671 ipcp_propagate_stage (void)
674 struct ipcp_lattice inc_lat
= { IPA_BOTTOM
, NULL
};
675 struct ipcp_lattice new_lat
= { IPA_BOTTOM
, NULL
};
676 struct ipcp_lattice
*dest_lat
;
677 struct cgraph_edge
*cs
;
678 struct ipa_jump_func
*jump_func
;
679 struct ipa_func_list
*wl
;
682 ipa_check_create_node_params ();
683 ipa_check_create_edge_args ();
685 /* Initialize worklist to contain all functions. */
686 wl
= ipa_init_func_list ();
689 struct cgraph_node
*node
= ipa_pop_func_from_list (&wl
);
690 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
692 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
694 struct ipa_node_params
*callee_info
= IPA_NODE_REF (cs
->callee
);
695 struct ipa_edge_args
*args
= IPA_EDGE_REF (cs
);
697 if (ipa_is_called_with_var_arguments (callee_info
)
698 || !cs
->callee
->analyzed
699 || ipa_is_called_with_var_arguments (callee_info
))
702 count
= ipa_get_cs_argument_count (args
);
703 for (i
= 0; i
< count
; i
++)
705 jump_func
= ipa_get_ith_jump_func (args
, i
);
706 ipcp_lattice_from_jfunc (info
, &inc_lat
, jump_func
);
707 dest_lat
= ipcp_get_lattice (callee_info
, i
);
708 ipa_lattice_meet (&new_lat
, &inc_lat
, dest_lat
);
709 if (ipcp_lattice_changed (&new_lat
, dest_lat
))
711 dest_lat
->type
= new_lat
.type
;
712 dest_lat
->constant
= new_lat
.constant
;
713 ipa_push_func_to_list (&wl
, cs
->callee
);
720 /* Call the constant propagation algorithm and re-call it if necessary
721 (if there are undetermined values left). */
723 ipcp_iterate_stage (void)
725 struct cgraph_node
*node
;
726 n_cloning_candidates
= 0;
729 fprintf (dump_file
, "\nIPA iterate stage:\n\n");
732 ipa_update_after_lto_read ();
734 for (node
= cgraph_nodes
; node
; node
= node
->next
)
736 ipcp_initialize_node_lattices (node
);
737 ipcp_compute_node_scale (node
);
739 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
741 ipcp_print_all_lattices (dump_file
);
742 ipcp_function_scale_print (dump_file
);
745 ipcp_propagate_stage ();
746 if (ipcp_change_tops_to_bottom ())
747 /* Some lattices have changed from IPA_TOP to IPA_BOTTOM.
748 This change should be propagated. */
750 gcc_assert (n_cloning_candidates
);
751 ipcp_propagate_stage ();
755 fprintf (dump_file
, "\nIPA lattices after propagation:\n");
756 ipcp_print_all_lattices (dump_file
);
757 if (dump_flags
& TDF_DETAILS
)
758 ipcp_print_profile_data (dump_file
);
762 /* Check conditions to forbid constant insertion to function described by
765 ipcp_node_modifiable_p (struct cgraph_node
*node
)
767 /* Once we will be able to do in-place replacement, we can be more
769 return ipcp_versionable_function_p (node
);
772 /* Print count scale data structures. */
774 ipcp_function_scale_print (FILE * f
)
776 struct cgraph_node
*node
;
778 for (node
= cgraph_nodes
; node
; node
= node
->next
)
782 fprintf (f
, "printing scale for %s: ", cgraph_node_name (node
));
783 fprintf (f
, "value is " HOST_WIDE_INT_PRINT_DEC
784 " \n", (HOST_WIDE_INT
) ipcp_get_node_scale (node
));
788 /* Print counts of all cgraph nodes. */
790 ipcp_print_func_profile_counts (FILE * f
)
792 struct cgraph_node
*node
;
794 for (node
= cgraph_nodes
; node
; node
= node
->next
)
796 fprintf (f
, "function %s: ", cgraph_node_name (node
));
797 fprintf (f
, "count is " HOST_WIDE_INT_PRINT_DEC
798 " \n", (HOST_WIDE_INT
) node
->count
);
802 /* Print counts of all cgraph edges. */
804 ipcp_print_call_profile_counts (FILE * f
)
806 struct cgraph_node
*node
;
807 struct cgraph_edge
*cs
;
809 for (node
= cgraph_nodes
; node
; node
= node
->next
)
811 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
813 fprintf (f
, "%s -> %s ", cgraph_node_name (cs
->caller
),
814 cgraph_node_name (cs
->callee
));
815 fprintf (f
, "count is " HOST_WIDE_INT_PRINT_DEC
" \n",
816 (HOST_WIDE_INT
) cs
->count
);
821 /* Print profile info for all functions. */
823 ipcp_print_profile_data (FILE * f
)
825 fprintf (f
, "\nNODE COUNTS :\n");
826 ipcp_print_func_profile_counts (f
);
827 fprintf (f
, "\nCS COUNTS stage:\n");
828 ipcp_print_call_profile_counts (f
);
831 /* Build and initialize ipa_replace_map struct according to LAT. This struct is
832 processed by versioning, which operates according to the flags set.
833 PARM_TREE is the formal parameter found to be constant. LAT represents the
835 static struct ipa_replace_map
*
836 ipcp_create_replace_map (tree parm_tree
, struct ipcp_lattice
*lat
)
838 struct ipa_replace_map
*replace_map
;
841 replace_map
= GGC_NEW (struct ipa_replace_map
);
842 const_val
= build_const_val (lat
, TREE_TYPE (parm_tree
));
845 fprintf (dump_file
, " replacing param ");
846 print_generic_expr (dump_file
, parm_tree
, 0);
847 fprintf (dump_file
, " with const ");
848 print_generic_expr (dump_file
, const_val
, 0);
849 fprintf (dump_file
, "\n");
851 replace_map
->old_tree
= parm_tree
;
852 replace_map
->new_tree
= const_val
;
853 replace_map
->replace_p
= true;
854 replace_map
->ref_p
= false;
859 /* Return true if this callsite should be redirected to the original callee
860 (instead of the cloned one). */
862 ipcp_need_redirect_p (struct cgraph_edge
*cs
)
864 struct ipa_node_params
*orig_callee_info
;
866 struct ipa_jump_func
*jump_func
;
867 struct cgraph_node
*node
= cs
->callee
, *orig
;
869 if (!n_cloning_candidates
)
872 if ((orig
= ipcp_get_orig_node (node
)) != NULL
)
874 if (ipcp_get_orig_node (cs
->caller
))
877 orig_callee_info
= IPA_NODE_REF (node
);
878 count
= ipa_get_param_count (orig_callee_info
);
879 for (i
= 0; i
< count
; i
++)
881 struct ipcp_lattice
*lat
= ipcp_get_lattice (orig_callee_info
, i
);
882 if (ipcp_lat_is_const (lat
))
884 jump_func
= ipa_get_ith_jump_func (IPA_EDGE_REF (cs
), i
);
885 if (jump_func
->type
!= IPA_JF_CONST
)
893 /* Fix the callsites and the call graph after function cloning was done. */
895 ipcp_update_callgraph (void)
897 struct cgraph_node
*node
;
899 for (node
= cgraph_nodes
; node
; node
= node
->next
)
900 if (node
->analyzed
&& ipcp_node_is_clone (node
))
902 bitmap args_to_skip
= BITMAP_ALLOC (NULL
);
903 struct cgraph_node
*orig_node
= ipcp_get_orig_node (node
);
904 struct ipa_node_params
*info
= IPA_NODE_REF (orig_node
);
905 int i
, count
= ipa_get_param_count (info
);
906 struct cgraph_edge
*cs
, *next
;
908 for (i
= 0; i
< count
; i
++)
910 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
912 /* We can proactively remove obviously unused arguments. */
913 if (!ipa_is_param_used (info
, i
))
915 bitmap_set_bit (args_to_skip
, i
);
919 if (lat
->type
== IPA_CONST_VALUE
)
920 bitmap_set_bit (args_to_skip
, i
);
922 for (cs
= node
->callers
; cs
; cs
= next
)
924 next
= cs
->next_caller
;
925 if (!ipcp_node_is_clone (cs
->caller
) && ipcp_need_redirect_p (cs
))
926 cgraph_redirect_edge_callee (cs
, orig_node
);
931 /* Update profiling info for versioned functions and the functions they were
934 ipcp_update_profiling (void)
936 struct cgraph_node
*node
, *orig_node
;
937 gcov_type scale
, scale_complement
;
938 struct cgraph_edge
*cs
;
940 for (node
= cgraph_nodes
; node
; node
= node
->next
)
942 if (ipcp_node_is_clone (node
))
944 orig_node
= ipcp_get_orig_node (node
);
945 scale
= ipcp_get_node_scale (orig_node
);
946 node
->count
= orig_node
->count
* scale
/ REG_BR_PROB_BASE
;
947 scale_complement
= REG_BR_PROB_BASE
- scale
;
949 orig_node
->count
* scale_complement
/ REG_BR_PROB_BASE
;
950 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
951 cs
->count
= cs
->count
* scale
/ REG_BR_PROB_BASE
;
952 for (cs
= orig_node
->callees
; cs
; cs
= cs
->next_callee
)
953 cs
->count
= cs
->count
* scale_complement
/ REG_BR_PROB_BASE
;
958 /* If NODE was cloned, how much would program grow? */
960 ipcp_estimate_growth (struct cgraph_node
*node
)
962 struct cgraph_edge
*cs
;
963 int redirectable_node_callers
= 0;
964 int removable_args
= 0;
965 bool need_original
= !cgraph_only_called_directly_p (node
);
966 struct ipa_node_params
*info
;
970 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
971 if (cs
->caller
== node
|| !ipcp_need_redirect_p (cs
))
972 redirectable_node_callers
++;
974 need_original
= true;
976 /* If we will be able to fully replace orignal node, we never increase
981 info
= IPA_NODE_REF (node
);
982 count
= ipa_get_param_count (info
);
983 for (i
= 0; i
< count
; i
++)
985 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
987 /* We can proactively remove obviously unused arguments. */
988 if (!ipa_is_param_used (info
, i
))
991 if (lat
->type
== IPA_CONST_VALUE
)
995 /* We make just very simple estimate of savings for removal of operand from
996 call site. Precise cost is dificult to get, as our size metric counts
997 constants and moves as free. Generally we are looking for cases that
998 small function is called very many times. */
999 growth
= node
->local
.inline_summary
.self_size
1000 - removable_args
* redirectable_node_callers
;
1007 /* Estimate cost of cloning NODE. */
1009 ipcp_estimate_cloning_cost (struct cgraph_node
*node
)
1012 gcov_type count_sum
= 1;
1013 struct cgraph_edge
*e
;
1016 cost
= ipcp_estimate_growth (node
) * 1000;
1020 fprintf (dump_file
, "Versioning of %s will save code size\n",
1021 cgraph_node_name (node
));
1025 for (e
= node
->callers
; e
; e
= e
->next_caller
)
1026 if (!bitmap_bit_p (dead_nodes
, e
->caller
->uid
)
1027 && !ipcp_need_redirect_p (e
))
1029 count_sum
+= e
->count
;
1030 freq_sum
+= e
->frequency
+ 1;
1034 cost
/= count_sum
* 1000 / max_count
+ 1;
1036 cost
/= freq_sum
* 1000 / REG_BR_PROB_BASE
+ 1;
1038 fprintf (dump_file
, "Cost of versioning %s is %i, (size: %i, freq: %i)\n",
1039 cgraph_node_name (node
), cost
, node
->local
.inline_summary
.self_size
,
1044 /* Return number of live constant parameters. */
1046 ipcp_const_param_count (struct cgraph_node
*node
)
1048 int const_param
= 0;
1049 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
1050 int count
= ipa_get_param_count (info
);
1053 for (i
= 0; i
< count
; i
++)
1055 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
1056 if (ipcp_lat_is_insertable (lat
)
1057 /* Do not count obviously unused arguments. */
1058 && ipa_is_param_used (info
, i
))
1064 /* Propagate the constant parameters found by ipcp_iterate_stage()
1065 to the function's code. */
1067 ipcp_insert_stage (void)
1069 struct cgraph_node
*node
, *node1
= NULL
;
1071 VEC (cgraph_edge_p
, heap
) * redirect_callers
;
1072 VEC (ipa_replace_map_p
,gc
)* replace_trees
;
1073 int node_callers
, count
;
1075 struct ipa_replace_map
*replace_param
;
1077 long overall_size
= 0, new_size
= 0;
1080 ipa_check_create_node_params ();
1081 ipa_check_create_edge_args ();
1083 fprintf (dump_file
, "\nIPA insert stage:\n\n");
1085 dead_nodes
= BITMAP_ALLOC (NULL
);
1087 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1090 if (node
->count
> max_count
)
1091 max_count
= node
->count
;
1092 overall_size
+= node
->local
.inline_summary
.self_size
;
1095 max_new_size
= overall_size
;
1096 if (max_new_size
< PARAM_VALUE (PARAM_LARGE_UNIT_INSNS
))
1097 max_new_size
= PARAM_VALUE (PARAM_LARGE_UNIT_INSNS
);
1098 max_new_size
= max_new_size
* PARAM_VALUE (PARAM_IPCP_UNIT_GROWTH
) / 100 + 1;
1100 /* First collect all functions we proved to have constant arguments to heap. */
1101 heap
= fibheap_new ();
1102 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1104 struct ipa_node_params
*info
;
1105 /* Propagation of the constant is forbidden in certain conditions. */
1106 if (!node
->analyzed
|| !ipcp_node_modifiable_p (node
))
1108 info
= IPA_NODE_REF (node
);
1109 if (ipa_is_called_with_var_arguments (info
))
1111 if (ipcp_const_param_count (node
))
1112 node
->aux
= fibheap_insert (heap
, ipcp_estimate_cloning_cost (node
), node
);
1115 /* Now clone in priority order until code size growth limits are met or
1117 while (!fibheap_empty (heap
))
1119 struct ipa_node_params
*info
;
1121 bitmap args_to_skip
;
1122 struct cgraph_edge
*cs
;
1124 node
= (struct cgraph_node
*)fibheap_extract_min (heap
);
1127 fprintf (dump_file
, "considering function %s\n",
1128 cgraph_node_name (node
));
1130 growth
= ipcp_estimate_growth (node
);
1132 if (new_size
+ growth
> max_new_size
)
1135 && optimize_function_for_size_p (DECL_STRUCT_FUNCTION (node
->decl
)))
1138 fprintf (dump_file
, "Not versioning, cold code would grow");
1144 /* Look if original function becomes dead after clonning. */
1145 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
1146 if (cs
->caller
== node
|| ipcp_need_redirect_p (cs
))
1148 if (!cs
&& cgraph_only_called_directly_p (node
))
1149 bitmap_set_bit (dead_nodes
, node
->uid
);
1151 info
= IPA_NODE_REF (node
);
1152 count
= ipa_get_param_count (info
);
1154 replace_trees
= VEC_alloc (ipa_replace_map_p
, gc
, 1);
1155 args_to_skip
= BITMAP_GGC_ALLOC ();
1156 for (i
= 0; i
< count
; i
++)
1158 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
1159 parm_tree
= ipa_get_param (info
, i
);
1161 /* We can proactively remove obviously unused arguments. */
1162 if (!ipa_is_param_used (info
, i
))
1164 bitmap_set_bit (args_to_skip
, i
);
1168 if (lat
->type
== IPA_CONST_VALUE
)
1171 ipcp_create_replace_map (parm_tree
, lat
);
1172 VEC_safe_push (ipa_replace_map_p
, gc
, replace_trees
, replace_param
);
1173 bitmap_set_bit (args_to_skip
, i
);
1177 /* Compute how many callers node has. */
1179 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
1181 redirect_callers
= VEC_alloc (cgraph_edge_p
, heap
, node_callers
);
1182 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
1183 VEC_quick_push (cgraph_edge_p
, redirect_callers
, cs
);
1185 /* Redirecting all the callers of the node to the
1186 new versioned node. */
1188 cgraph_create_virtual_clone (node
, redirect_callers
, replace_trees
,
1190 args_to_skip
= NULL
;
1191 VEC_free (cgraph_edge_p
, heap
, redirect_callers
);
1192 replace_trees
= NULL
;
1197 fprintf (dump_file
, "versioned function %s with growth %i, overall %i\n",
1198 cgraph_node_name (node
), (int)growth
, (int)new_size
);
1199 ipcp_init_cloned_node (node
, node1
);
1201 /* TODO: We can use indirect inlning info to produce new calls. */
1204 dump_function_to_file (node1
->decl
, dump_file
, dump_flags
);
1206 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
1207 if (cs
->callee
->aux
)
1209 fibheap_delete_node (heap
, (fibnode_t
) cs
->callee
->aux
);
1210 cs
->callee
->aux
= fibheap_insert (heap
,
1211 ipcp_estimate_cloning_cost (cs
->callee
),
1216 while (!fibheap_empty (heap
))
1219 fprintf (dump_file
, "skipping function %s\n",
1220 cgraph_node_name (node
));
1221 node
= (struct cgraph_node
*) fibheap_extract_min (heap
);
1224 fibheap_delete (heap
);
1225 BITMAP_FREE (dead_nodes
);
1226 ipcp_update_callgraph ();
1227 ipcp_update_profiling ();
1230 /* The IPCP driver. */
1234 cgraph_remove_unreachable_nodes (true,dump_file
);
1237 fprintf (dump_file
, "\nIPA structures before propagation:\n");
1238 if (dump_flags
& TDF_DETAILS
)
1239 ipa_print_all_params (dump_file
);
1240 ipa_print_all_jump_functions (dump_file
);
1242 /* 2. Do the interprocedural propagation. */
1243 ipcp_iterate_stage ();
1244 /* 3. Insert the constants found to the functions. */
1245 ipcp_insert_stage ();
1246 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1248 fprintf (dump_file
, "\nProfiling info after insert stage:\n");
1249 ipcp_print_profile_data (dump_file
);
1251 /* Free all IPCP structures. */
1252 ipa_free_all_structures_after_ipa_cp ();
1254 fprintf (dump_file
, "\nIPA constant propagation end\n");
1258 /* Note function body size. */
1260 ipcp_generate_summary (void)
1263 fprintf (dump_file
, "\nIPA constant propagation start:\n");
1264 ipa_check_create_node_params ();
1265 ipa_check_create_edge_args ();
1266 ipa_register_cgraph_hooks ();
1267 /* 1. Call the init stage to initialize
1268 the ipa_node_params and ipa_edge_args structures. */
1272 /* Write ipcp summary for nodes in SET. */
1274 ipcp_write_summary (cgraph_node_set set
,
1275 varpool_node_set vset ATTRIBUTE_UNUSED
)
1277 ipa_prop_write_jump_functions (set
);
1280 /* Read ipcp summary. */
1282 ipcp_read_summary (void)
1284 ipa_prop_read_jump_functions ();
1287 /* Gate for IPCP optimization. */
1289 cgraph_gate_cp (void)
1294 struct ipa_opt_pass_d pass_ipa_cp
=
1299 cgraph_gate_cp
, /* gate */
1300 ipcp_driver
, /* execute */
1303 0, /* static_pass_number */
1304 TV_IPA_CONSTANT_PROP
, /* tv_id */
1305 0, /* properties_required */
1306 0, /* properties_provided */
1307 0, /* properties_destroyed */
1308 0, /* todo_flags_start */
1309 TODO_dump_cgraph
| TODO_dump_func
|
1310 TODO_remove_functions
| TODO_ggc_collect
/* todo_flags_finish */
1312 ipcp_generate_summary
, /* generate_summary */
1313 ipcp_write_summary
, /* write_summary */
1314 ipcp_read_summary
, /* read_summary */
1315 NULL
, /* write_optimization_summary */
1316 NULL
, /* read_optimization_summary */
1317 NULL
, /* stmt_fixup */
1319 NULL
, /* function_transform */
1320 NULL
, /* variable_transform */