1 /* Interprocedural constant propagation
2 Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
3 Contributed by Razya Ladelsky <RAZYA@il.ibm.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
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/>. */
21 /* Interprocedural constant propagation. The aim of interprocedural constant
22 propagation (IPCP) is to find which function's argument has the same
23 constant value in each invocation throughout the whole program. For example,
24 consider the following program:
28 printf ("value is %d",y);
48 The IPCP algorithm will find that g's formal argument y is always called
51 The algorithm used is based on "Interprocedural Constant Propagation", by
52 Challahan David, Keith D Cooper, Ken Kennedy, Linda Torczon, Comp86, pg
55 The optimization is divided into three stages:
57 First stage - intraprocedural analysis
58 =======================================
59 This phase computes jump_function and modification flags.
61 A jump function for a callsite represents the values passed as an actual
62 arguments of a given callsite. There are three types of values:
63 Pass through - the caller's formal parameter is passed as an actual argument.
64 Constant - a constant is passed as an actual argument.
65 Unknown - neither of the above.
67 The jump function info, ipa_jump_func, is stored in ipa_edge_args
68 structure (defined in ipa_prop.h and pointed to by cgraph_node->aux)
69 modified_flags are defined in ipa_node_params structure
70 (defined in ipa_prop.h and pointed to by cgraph_edge->aux).
72 -ipcp_init_stage() is the first stage driver.
74 Second stage - interprocedural analysis
75 ========================================
76 This phase does the interprocedural constant propagation.
77 It computes lattices for all formal parameters in the program
78 and their value that may be:
80 BOTTOM - non constant.
81 CONSTANT - constant value.
83 Lattice describing a formal parameter p will have a constant value if all
84 callsites invoking this function have the same constant value passed to p.
86 The lattices are stored in ipcp_lattice which is itself in ipa_node_params
87 structure (defined in ipa_prop.h and pointed to by cgraph_edge->aux).
89 -ipcp_iterate_stage() is the second stage driver.
91 Third phase - transformation of function code
92 ============================================
93 Propagates the constant-valued formals into the function.
94 For each function whose parameters are constants, we create its clone.
96 Then we process the clone in two ways:
97 1. We insert an assignment statement 'parameter = const' at the beginning
98 of the cloned function.
99 2. For read-only parameters that do not live in memory, we replace all their
100 uses with the constant.
102 We also need to modify some callsites to call the cloned functions instead
103 of the original ones. For a callsite passing an argument found to be a
104 constant by IPCP, there are two different cases to handle:
105 1. A constant is passed as an argument. In this case the callsite in the
106 should be redirected to call the cloned callee.
107 2. A parameter (of the caller) passed as an argument (pass through
108 argument). In such cases both the caller and the callee have clones and
109 only the callsite in the cloned caller is redirected to call to the
112 This update is done in two steps: First all cloned functions are created
113 during a traversal of the call graph, during which all callsites are
114 redirected to call the cloned function. Then the callsites are traversed
115 and many calls redirected back to fit the description above.
117 -ipcp_insert_stage() is the third phase driver.
123 #include "coretypes.h"
127 #include "ipa-prop.h"
128 #include "tree-flow.h"
129 #include "tree-pass.h"
132 #include "diagnostic.h"
133 #include "tree-dump.h"
134 #include "tree-inline.h"
138 /* Number of functions identified as candidates for cloning. When not cloning
139 we can simplify iterate stage not forcing it to go through the decision
140 on what is profitable and what not. */
141 static int n_cloning_candidates
;
143 /* Maximal count found in program. */
144 static gcov_type max_count
;
146 /* Cgraph nodes that has been completely replaced by cloning during iterate
147 * stage and will be removed after ipcp is finished. */
148 static bitmap dead_nodes
;
150 static void ipcp_print_profile_data (FILE *);
151 static void ipcp_function_scale_print (FILE *);
153 /* Get the original node field of ipa_node_params associated with node NODE. */
154 static inline struct cgraph_node
*
155 ipcp_get_orig_node (struct cgraph_node
*node
)
157 return IPA_NODE_REF (node
)->ipcp_orig_node
;
160 /* Return true if NODE describes a cloned/versioned function. */
162 ipcp_node_is_clone (struct cgraph_node
*node
)
164 return (ipcp_get_orig_node (node
) != NULL
);
167 /* Create ipa_node_params and its data structures for NEW_NODE. Set ORIG_NODE
168 as the ipcp_orig_node field in ipa_node_params. */
170 ipcp_init_cloned_node (struct cgraph_node
*orig_node
,
171 struct cgraph_node
*new_node
)
173 ipa_check_create_node_params ();
174 ipa_initialize_node_params (new_node
);
175 IPA_NODE_REF (new_node
)->ipcp_orig_node
= orig_node
;
178 /* Perform intraprocedrual analysis needed for ipcp. */
180 ipcp_analyze_node (struct cgraph_node
*node
)
182 /* Unreachable nodes should have been eliminated before ipcp. */
183 gcc_assert (node
->needed
|| node
->reachable
);
185 ipa_initialize_node_params (node
);
186 ipa_detect_param_modifications (node
);
189 /* Recompute all local information since node might've got new
190 direct calls after cloning. */
192 ipcp_update_cloned_node (struct cgraph_node
*new_node
)
194 /* We might've introduced new direct calls. */
195 push_cfun (DECL_STRUCT_FUNCTION (new_node
->decl
));
196 current_function_decl
= new_node
->decl
;
197 rebuild_cgraph_edges ();
199 /* Indirect inlinng rely on fact that we've already analyzed
201 if (flag_indirect_inlining
)
203 struct cgraph_edge
*cs
;
205 ipcp_analyze_node (new_node
);
207 for (cs
= new_node
->callees
; cs
; cs
= cs
->next_callee
)
209 ipa_count_arguments (cs
);
210 ipa_compute_jump_functions (cs
);
214 current_function_decl
= NULL
;
217 /* Return scale for NODE. */
218 static inline gcov_type
219 ipcp_get_node_scale (struct cgraph_node
*node
)
221 return IPA_NODE_REF (node
)->count_scale
;
224 /* Set COUNT as scale for NODE. */
226 ipcp_set_node_scale (struct cgraph_node
*node
, gcov_type count
)
228 IPA_NODE_REF (node
)->count_scale
= count
;
231 /* Return whether LAT is a constant lattice. */
233 ipcp_lat_is_const (struct ipcp_lattice
*lat
)
235 if (lat
->type
== IPA_CONST_VALUE
)
241 /* Return whether LAT is a constant lattice that ipa-cp can actually insert
242 into the code (i.e. constants excluding member pointers and pointers). */
244 ipcp_lat_is_insertable (struct ipcp_lattice
*lat
)
246 return lat
->type
== IPA_CONST_VALUE
;
249 /* Return true if LAT1 and LAT2 are equal. */
251 ipcp_lats_are_equal (struct ipcp_lattice
*lat1
, struct ipcp_lattice
*lat2
)
253 gcc_assert (ipcp_lat_is_const (lat1
) && ipcp_lat_is_const (lat2
));
254 if (lat1
->type
!= lat2
->type
)
257 if (operand_equal_p (lat1
->constant
, lat2
->constant
, 0))
263 /* Compute Meet arithmetics:
264 Meet (IPA_BOTTOM, x) = IPA_BOTTOM
266 Meet (const_a,const_b) = IPA_BOTTOM, if const_a != const_b.
267 MEET (const_a,const_b) = const_a, if const_a == const_b.*/
269 ipa_lattice_meet (struct ipcp_lattice
*res
, struct ipcp_lattice
*lat1
,
270 struct ipcp_lattice
*lat2
)
272 if (lat1
->type
== IPA_BOTTOM
|| lat2
->type
== IPA_BOTTOM
)
274 res
->type
= IPA_BOTTOM
;
277 if (lat1
->type
== IPA_TOP
)
279 res
->type
= lat2
->type
;
280 res
->constant
= lat2
->constant
;
283 if (lat2
->type
== IPA_TOP
)
285 res
->type
= lat1
->type
;
286 res
->constant
= lat1
->constant
;
289 if (!ipcp_lats_are_equal (lat1
, lat2
))
291 res
->type
= IPA_BOTTOM
;
294 res
->type
= lat1
->type
;
295 res
->constant
= lat1
->constant
;
298 /* Return the lattice corresponding to the Ith formal parameter of the function
299 described by INFO. */
300 static inline struct ipcp_lattice
*
301 ipcp_get_lattice (struct ipa_node_params
*info
, int i
)
303 return &(info
->params
[i
].ipcp_lattice
);
306 /* Given the jump function JFUNC, compute the lattice LAT that describes the
307 value coming down the callsite. INFO describes the caller node so that
308 pass-through jump functions can be evaluated. */
310 ipcp_lattice_from_jfunc (struct ipa_node_params
*info
, struct ipcp_lattice
*lat
,
311 struct ipa_jump_func
*jfunc
)
313 if (jfunc
->type
== IPA_CONST
)
315 lat
->type
= IPA_CONST_VALUE
;
316 lat
->constant
= jfunc
->value
.constant
;
318 else if (jfunc
->type
== IPA_PASS_THROUGH
)
320 struct ipcp_lattice
*caller_lat
;
322 caller_lat
= ipcp_get_lattice (info
, jfunc
->value
.formal_id
);
323 lat
->type
= caller_lat
->type
;
324 lat
->constant
= caller_lat
->constant
;
327 lat
->type
= IPA_BOTTOM
;
330 /* True when OLD_LAT and NEW_LAT values are not the same. */
333 ipcp_lattice_changed (struct ipcp_lattice
*old_lat
,
334 struct ipcp_lattice
*new_lat
)
336 if (old_lat
->type
== new_lat
->type
)
338 if (!ipcp_lat_is_const (old_lat
))
340 if (ipcp_lats_are_equal (old_lat
, new_lat
))
346 /* Print all ipcp_lattices of all functions to F. */
348 ipcp_print_all_lattices (FILE * f
)
350 struct cgraph_node
*node
;
353 fprintf (f
, "\nLattice:\n");
354 for (node
= cgraph_nodes
; node
; node
= node
->next
)
356 struct ipa_node_params
*info
;
360 info
= IPA_NODE_REF (node
);
361 fprintf (f
, " Node: %s:\n", cgraph_node_name (node
));
362 count
= ipa_get_param_count (info
);
363 for (i
= 0; i
< count
; i
++)
365 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
367 fprintf (f
, " param [%d]: ", i
);
368 if (lat
->type
== IPA_CONST_VALUE
)
370 fprintf (f
, "type is CONST ");
371 print_generic_expr (f
, lat
->constant
, 0);
374 else if (lat
->type
== IPA_TOP
)
375 fprintf (f
, "type is TOP\n");
377 fprintf (f
, "type is BOTTOM\n");
382 /* Return true if this NODE is viable candidate for cloning. */
384 ipcp_cloning_candidate_p (struct cgraph_node
*node
)
388 gcov_type direct_call_sum
= 0;
389 struct cgraph_edge
*e
;
391 /* We never clone functions that are not visible from outside.
392 FIXME: in future we should clone such functions when they are called with
393 different constants, but current ipcp implementation is not good on this.
395 if (!node
->needed
|| !node
->analyzed
)
398 if (cgraph_function_body_availability (node
) <= AVAIL_OVERWRITABLE
)
401 fprintf (dump_file
, "Not considering %s for cloning; body is overwrittable.\n",
402 cgraph_node_name (node
));
405 if (!tree_versionable_function_p (node
->decl
))
408 fprintf (dump_file
, "Not considering %s for cloning; body is not versionable.\n",
409 cgraph_node_name (node
));
412 for (e
= node
->callers
; e
; e
= e
->next_caller
)
414 direct_call_sum
+= e
->count
;
416 if (cgraph_maybe_hot_edge_p (e
))
423 fprintf (dump_file
, "Not considering %s for cloning; no direct calls.\n",
424 cgraph_node_name (node
));
427 if (node
->local
.inline_summary
.self_insns
< n_calls
)
430 fprintf (dump_file
, "Considering %s for cloning; code would shrink.\n",
431 cgraph_node_name (node
));
435 if (!flag_ipa_cp_clone
)
438 fprintf (dump_file
, "Not considering %s for cloning; -fipa-cp-clone disabled.\n",
439 cgraph_node_name (node
));
443 if (!optimize_function_for_speed_p (DECL_STRUCT_FUNCTION (node
->decl
)))
446 fprintf (dump_file
, "Not considering %s for cloning; optimizing it for size.\n",
447 cgraph_node_name (node
));
451 /* When profile is available and function is hot, propagate into it even if
452 calls seems cold; constant propagation can improve function's speed
456 if (direct_call_sum
> node
->count
* 90 / 100)
459 fprintf (dump_file
, "Considering %s for cloning; usually called directly.\n",
460 cgraph_node_name (node
));
467 fprintf (dump_file
, "Not considering %s for cloning; no hot calls.\n",
468 cgraph_node_name (node
));
472 fprintf (dump_file
, "Considering %s for cloning.\n",
473 cgraph_node_name (node
));
477 /* Initialize ipcp_lattices array. The lattices corresponding to supported
478 types (integers, real types and Fortran constants defined as const_decls)
479 are initialized to IPA_TOP, the rest of them to IPA_BOTTOM. */
481 ipcp_initialize_node_lattices (struct cgraph_node
*node
)
484 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
485 enum ipa_lattice_type type
;
487 if (ipa_is_called_with_var_arguments (info
))
489 else if (!node
->needed
)
491 /* When cloning is allowed, we can assume that externally visible functions
492 are not called. We will compensate this by cloning later. */
493 else if (ipcp_cloning_candidate_p (node
))
494 type
= IPA_TOP
, n_cloning_candidates
++;
498 for (i
= 0; i
< ipa_get_param_count (info
) ; i
++)
499 ipcp_get_lattice (info
, i
)->type
= type
;
502 /* build INTEGER_CST tree with type TREE_TYPE and value according to LAT.
505 build_const_val (struct ipcp_lattice
*lat
, tree tree_type
)
509 gcc_assert (ipcp_lat_is_const (lat
));
512 if (!useless_type_conversion_p (tree_type
, TREE_TYPE (val
)))
514 if (fold_convertible_p (tree_type
, val
))
515 return fold_build1 (NOP_EXPR
, tree_type
, val
);
517 return fold_build1 (VIEW_CONVERT_EXPR
, tree_type
, val
);
522 /* Compute the proper scale for NODE. It is the ratio between the number of
523 direct calls (represented on the incoming cgraph_edges) and sum of all
524 invocations of NODE (represented as count in cgraph_node). */
526 ipcp_compute_node_scale (struct cgraph_node
*node
)
529 struct cgraph_edge
*cs
;
532 /* Compute sum of all counts of callers. */
533 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
535 if (node
->count
== 0)
536 ipcp_set_node_scale (node
, 0);
538 ipcp_set_node_scale (node
, sum
* REG_BR_PROB_BASE
/ node
->count
);
541 /* Initialization and computation of IPCP data structures. This is the initial
542 intraprocedural analysis of functions, which gathers information to be
543 propagated later on. */
545 ipcp_init_stage (void)
547 struct cgraph_node
*node
;
548 struct cgraph_edge
*cs
;
550 for (node
= cgraph_nodes
; node
; node
= node
->next
)
552 ipcp_analyze_node (node
);
553 for (node
= cgraph_nodes
; node
; node
= node
->next
)
557 /* building jump functions */
558 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
560 if (!cs
->callee
->analyzed
)
562 ipa_count_arguments (cs
);
563 if (ipa_get_cs_argument_count (IPA_EDGE_REF (cs
))
564 != ipa_get_param_count (IPA_NODE_REF (cs
->callee
)))
566 /* Handle cases of functions with
567 a variable number of parameters. */
568 ipa_set_called_with_variable_arg (IPA_NODE_REF (cs
->callee
));
569 if (flag_indirect_inlining
)
570 ipa_compute_jump_functions (cs
);
573 ipa_compute_jump_functions (cs
);
578 /* Return true if there are some formal parameters whose value is IPA_TOP (in
579 the whole compilation unit). Change their values to IPA_BOTTOM, since they
580 most probably get their values from outside of this compilation unit. */
582 ipcp_change_tops_to_bottom (void)
585 struct cgraph_node
*node
;
589 for (node
= cgraph_nodes
; node
; node
= node
->next
)
591 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
592 count
= ipa_get_param_count (info
);
593 for (i
= 0; i
< count
; i
++)
595 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
596 if (lat
->type
== IPA_TOP
)
601 fprintf (dump_file
, "Forcing param ");
602 print_generic_expr (dump_file
, ipa_get_param (info
, i
), 0);
603 fprintf (dump_file
, " of node %s to bottom.\n",
604 cgraph_node_name (node
));
606 lat
->type
= IPA_BOTTOM
;
613 /* Interprocedural analysis. The algorithm propagates constants from the
614 caller's parameters to the callee's arguments. */
616 ipcp_propagate_stage (void)
619 struct ipcp_lattice inc_lat
= { IPA_BOTTOM
, NULL
};
620 struct ipcp_lattice new_lat
= { IPA_BOTTOM
, NULL
};
621 struct ipcp_lattice
*dest_lat
;
622 struct cgraph_edge
*cs
;
623 struct ipa_jump_func
*jump_func
;
624 struct ipa_func_list
*wl
;
627 ipa_check_create_node_params ();
628 ipa_check_create_edge_args ();
630 /* Initialize worklist to contain all functions. */
631 wl
= ipa_init_func_list ();
634 struct cgraph_node
*node
= ipa_pop_func_from_list (&wl
);
635 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
637 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
639 struct ipa_node_params
*callee_info
= IPA_NODE_REF (cs
->callee
);
640 struct ipa_edge_args
*args
= IPA_EDGE_REF (cs
);
642 if (ipa_is_called_with_var_arguments (callee_info
))
645 count
= ipa_get_cs_argument_count (args
);
646 for (i
= 0; i
< count
; i
++)
648 jump_func
= ipa_get_ith_jump_func (args
, i
);
649 ipcp_lattice_from_jfunc (info
, &inc_lat
, jump_func
);
650 dest_lat
= ipcp_get_lattice (callee_info
, i
);
651 ipa_lattice_meet (&new_lat
, &inc_lat
, dest_lat
);
652 if (ipcp_lattice_changed (&new_lat
, dest_lat
))
654 dest_lat
->type
= new_lat
.type
;
655 dest_lat
->constant
= new_lat
.constant
;
656 ipa_push_func_to_list (&wl
, cs
->callee
);
663 /* Call the constant propagation algorithm and re-call it if necessary
664 (if there are undetermined values left). */
666 ipcp_iterate_stage (void)
668 struct cgraph_node
*node
;
669 n_cloning_candidates
= 0;
672 fprintf (dump_file
, "\nIPA iterate stage:\n\n");
673 for (node
= cgraph_nodes
; node
; node
= node
->next
)
675 ipcp_initialize_node_lattices (node
);
676 ipcp_compute_node_scale (node
);
678 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
680 ipcp_print_all_lattices (dump_file
);
681 ipcp_function_scale_print (dump_file
);
684 ipcp_propagate_stage ();
685 if (ipcp_change_tops_to_bottom ())
686 /* Some lattices have changed from IPA_TOP to IPA_BOTTOM.
687 This change should be propagated. */
689 gcc_assert (n_cloning_candidates
);
690 ipcp_propagate_stage ();
694 fprintf (dump_file
, "\nIPA lattices after propagation:\n");
695 ipcp_print_all_lattices (dump_file
);
696 if (dump_flags
& TDF_DETAILS
)
697 ipcp_print_profile_data (dump_file
);
701 /* Check conditions to forbid constant insertion to function described by
704 ipcp_node_modifiable_p (struct cgraph_node
*node
)
706 /* Once we will be able to do in-place replacement, we can be more
708 return tree_versionable_function_p (node
->decl
);
711 /* Print count scale data structures. */
713 ipcp_function_scale_print (FILE * f
)
715 struct cgraph_node
*node
;
717 for (node
= cgraph_nodes
; node
; node
= node
->next
)
721 fprintf (f
, "printing scale for %s: ", cgraph_node_name (node
));
722 fprintf (f
, "value is " HOST_WIDE_INT_PRINT_DEC
723 " \n", (HOST_WIDE_INT
) ipcp_get_node_scale (node
));
727 /* Print counts of all cgraph nodes. */
729 ipcp_print_func_profile_counts (FILE * f
)
731 struct cgraph_node
*node
;
733 for (node
= cgraph_nodes
; node
; node
= node
->next
)
735 fprintf (f
, "function %s: ", cgraph_node_name (node
));
736 fprintf (f
, "count is " HOST_WIDE_INT_PRINT_DEC
737 " \n", (HOST_WIDE_INT
) node
->count
);
741 /* Print counts of all cgraph edges. */
743 ipcp_print_call_profile_counts (FILE * f
)
745 struct cgraph_node
*node
;
746 struct cgraph_edge
*cs
;
748 for (node
= cgraph_nodes
; node
; node
= node
->next
)
750 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
752 fprintf (f
, "%s -> %s ", cgraph_node_name (cs
->caller
),
753 cgraph_node_name (cs
->callee
));
754 fprintf (f
, "count is " HOST_WIDE_INT_PRINT_DEC
" \n",
755 (HOST_WIDE_INT
) cs
->count
);
760 /* Print all counts and probabilities of cfg edges of all functions. */
762 ipcp_print_edge_profiles (FILE * f
)
764 struct cgraph_node
*node
;
769 for (node
= cgraph_nodes
; node
; node
= node
->next
)
771 fprintf (f
, "function %s: \n", cgraph_node_name (node
));
775 ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (node
->decl
));
776 fprintf (f
, "ENTRY: ");
777 fprintf (f
, " " HOST_WIDE_INT_PRINT_DEC
778 " %d\n", (HOST_WIDE_INT
) bb
->count
, bb
->frequency
);
781 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
784 EXIT_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION
786 fprintf (f
, "edge ENTRY -> EXIT, Count");
788 fprintf (f
, "edge ENTRY -> %d, Count", e
->dest
->index
);
789 fprintf (f
, " " HOST_WIDE_INT_PRINT_DEC
790 " Prob %d\n", (HOST_WIDE_INT
) e
->count
,
793 FOR_EACH_BB_FN (bb
, DECL_STRUCT_FUNCTION (node
->decl
))
795 fprintf (f
, "bb[%d]: ", bb
->index
);
796 fprintf (f
, " " HOST_WIDE_INT_PRINT_DEC
797 " %d\n", (HOST_WIDE_INT
) bb
->count
, bb
->frequency
);
798 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
801 EXIT_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION
803 fprintf (f
, "edge %d -> EXIT, Count", e
->src
->index
);
805 fprintf (f
, "edge %d -> %d, Count", e
->src
->index
,
807 fprintf (f
, " " HOST_WIDE_INT_PRINT_DEC
" Prob %d\n",
808 (HOST_WIDE_INT
) e
->count
, e
->probability
);
815 /* Print counts and frequencies for all basic blocks of all functions. */
817 ipcp_print_bb_profiles (FILE * f
)
820 struct cgraph_node
*node
;
822 for (node
= cgraph_nodes
; node
; node
= node
->next
)
824 fprintf (f
, "function %s: \n", cgraph_node_name (node
));
828 ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (node
->decl
));
829 fprintf (f
, "ENTRY: Count");
830 fprintf (f
, " " HOST_WIDE_INT_PRINT_DEC
831 " Frequency %d\n", (HOST_WIDE_INT
) bb
->count
,
834 FOR_EACH_BB_FN (bb
, DECL_STRUCT_FUNCTION (node
->decl
))
836 fprintf (f
, "bb[%d]: Count", bb
->index
);
837 fprintf (f
, " " HOST_WIDE_INT_PRINT_DEC
838 " Frequency %d\n", (HOST_WIDE_INT
) bb
->count
,
842 EXIT_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (node
->decl
));
843 fprintf (f
, "EXIT: Count");
844 fprintf (f
, " " HOST_WIDE_INT_PRINT_DEC
845 " Frequency %d\n", (HOST_WIDE_INT
) bb
->count
,
852 /* Print profile info for all functions. */
854 ipcp_print_profile_data (FILE * f
)
856 fprintf (f
, "\nNODE COUNTS :\n");
857 ipcp_print_func_profile_counts (f
);
858 fprintf (f
, "\nCS COUNTS stage:\n");
859 ipcp_print_call_profile_counts (f
);
860 fprintf (f
, "\nBB COUNTS and FREQUENCIES :\n");
861 ipcp_print_bb_profiles (f
);
862 fprintf (f
, "\nCFG EDGES COUNTS and PROBABILITIES :\n");
863 ipcp_print_edge_profiles (f
);
866 /* Build and initialize ipa_replace_map struct according to LAT. This struct is
867 processed by versioning, which operates according to the flags set.
868 PARM_TREE is the formal parameter found to be constant. LAT represents the
870 static struct ipa_replace_map
*
871 ipcp_create_replace_map (tree parm_tree
, struct ipcp_lattice
*lat
)
873 struct ipa_replace_map
*replace_map
;
876 replace_map
= XCNEW (struct ipa_replace_map
);
877 const_val
= build_const_val (lat
, TREE_TYPE (parm_tree
));
880 fprintf (dump_file
, " replacing param ");
881 print_generic_expr (dump_file
, parm_tree
, 0);
882 fprintf (dump_file
, " with const ");
883 print_generic_expr (dump_file
, const_val
, 0);
884 fprintf (dump_file
, "\n");
886 replace_map
->old_tree
= parm_tree
;
887 replace_map
->new_tree
= const_val
;
888 replace_map
->replace_p
= true;
889 replace_map
->ref_p
= false;
894 /* Return true if this callsite should be redirected to the original callee
895 (instead of the cloned one). */
897 ipcp_need_redirect_p (struct cgraph_edge
*cs
)
899 struct ipa_node_params
*orig_callee_info
;
901 struct ipa_jump_func
*jump_func
;
902 struct cgraph_node
*node
= cs
->callee
, *orig
;
904 if (!n_cloning_candidates
)
907 if ((orig
= ipcp_get_orig_node (node
)) != NULL
)
909 if (ipcp_get_orig_node (cs
->caller
))
912 orig_callee_info
= IPA_NODE_REF (node
);
913 count
= ipa_get_param_count (orig_callee_info
);
914 for (i
= 0; i
< count
; i
++)
916 struct ipcp_lattice
*lat
= ipcp_get_lattice (orig_callee_info
, i
);
917 if (ipcp_lat_is_const (lat
))
919 jump_func
= ipa_get_ith_jump_func (IPA_EDGE_REF (cs
), i
);
920 if (jump_func
->type
!= IPA_CONST
)
928 /* Fix the callsites and the call graph after function cloning was done. */
930 ipcp_update_callgraph (void)
932 struct cgraph_node
*node
;
934 for (node
= cgraph_nodes
; node
; node
= node
->next
)
935 if (node
->analyzed
&& ipcp_node_is_clone (node
))
937 bitmap args_to_skip
= BITMAP_ALLOC (NULL
);
938 struct cgraph_node
*orig_node
= ipcp_get_orig_node (node
);
939 struct ipa_node_params
*info
= IPA_NODE_REF (orig_node
);
940 int i
, count
= ipa_get_param_count (info
);
941 struct cgraph_edge
*cs
, *next
;
943 for (i
= 0; i
< count
; i
++)
945 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
946 tree parm_tree
= ipa_get_param (info
, i
);
948 /* We can proactively remove obviously unused arguments. */
949 if (is_gimple_reg (parm_tree
)
950 && !gimple_default_def (DECL_STRUCT_FUNCTION (orig_node
->decl
),
953 bitmap_set_bit (args_to_skip
, i
);
957 if (lat
->type
== IPA_CONST_VALUE
)
958 bitmap_set_bit (args_to_skip
, i
);
960 for (cs
= node
->callers
; cs
; cs
= next
)
962 next
= cs
->next_caller
;
963 if (ipcp_node_is_clone (cs
->caller
) || !ipcp_need_redirect_p (cs
))
966 gimple_stmt_iterator gsi
;
968 current_function_decl
= cs
->caller
->decl
;
969 push_cfun (DECL_STRUCT_FUNCTION (cs
->caller
->decl
));
971 new_stmt
= gimple_call_copy_skip_args (cs
->call_stmt
,
973 gsi
= gsi_for_stmt (cs
->call_stmt
);
974 gsi_replace (&gsi
, new_stmt
, true);
975 cgraph_set_call_stmt (cs
, new_stmt
);
977 current_function_decl
= NULL
;
981 cgraph_redirect_edge_callee (cs
, orig_node
);
982 gimple_call_set_fndecl (cs
->call_stmt
, orig_node
->decl
);
988 /* Update all cfg basic blocks in NODE according to SCALE. */
990 ipcp_update_bb_counts (struct cgraph_node
*node
, gcov_type scale
)
994 FOR_ALL_BB_FN (bb
, DECL_STRUCT_FUNCTION (node
->decl
))
995 bb
->count
= bb
->count
* scale
/ REG_BR_PROB_BASE
;
998 /* Update all cfg edges in NODE according to SCALE. */
1000 ipcp_update_edges_counts (struct cgraph_node
*node
, gcov_type scale
)
1006 FOR_ALL_BB_FN (bb
, DECL_STRUCT_FUNCTION (node
->decl
))
1007 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1008 e
->count
= e
->count
* scale
/ REG_BR_PROB_BASE
;
1011 /* Update profiling info for versioned functions and the functions they were
1014 ipcp_update_profiling (void)
1016 struct cgraph_node
*node
, *orig_node
;
1017 gcov_type scale
, scale_complement
;
1018 struct cgraph_edge
*cs
;
1020 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1022 if (ipcp_node_is_clone (node
))
1024 orig_node
= ipcp_get_orig_node (node
);
1025 scale
= ipcp_get_node_scale (orig_node
);
1026 node
->count
= orig_node
->count
* scale
/ REG_BR_PROB_BASE
;
1027 scale_complement
= REG_BR_PROB_BASE
- scale
;
1029 orig_node
->count
* scale_complement
/ REG_BR_PROB_BASE
;
1030 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
1031 cs
->count
= cs
->count
* scale
/ REG_BR_PROB_BASE
;
1032 for (cs
= orig_node
->callees
; cs
; cs
= cs
->next_callee
)
1033 cs
->count
= cs
->count
* scale_complement
/ REG_BR_PROB_BASE
;
1034 ipcp_update_bb_counts (node
, scale
);
1035 ipcp_update_bb_counts (orig_node
, scale_complement
);
1036 ipcp_update_edges_counts (node
, scale
);
1037 ipcp_update_edges_counts (orig_node
, scale_complement
);
1042 /* If NODE was cloned, how much would program grow? */
1044 ipcp_estimate_growth (struct cgraph_node
*node
)
1046 struct cgraph_edge
*cs
;
1047 int redirectable_node_callers
= 0;
1048 int removable_args
= 0;
1049 bool need_original
= node
->needed
;
1050 struct ipa_node_params
*info
;
1054 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
1055 if (cs
->caller
== node
|| !ipcp_need_redirect_p (cs
))
1056 redirectable_node_callers
++;
1058 need_original
= true;
1060 /* If we will be able to fully replace orignal node, we never increase
1065 info
= IPA_NODE_REF (node
);
1066 count
= ipa_get_param_count (info
);
1067 for (i
= 0; i
< count
; i
++)
1069 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
1070 tree parm_tree
= ipa_get_param (info
, i
);
1072 /* We can proactively remove obviously unused arguments. */
1073 if (is_gimple_reg (parm_tree
)
1074 && !gimple_default_def (DECL_STRUCT_FUNCTION (node
->decl
),
1078 if (lat
->type
== IPA_CONST_VALUE
)
1082 /* We make just very simple estimate of savings for removal of operand from
1083 call site. Precise cost is dificult to get, as our size metric counts
1084 constants and moves as free. Generally we are looking for cases that
1085 small function is called very many times. */
1086 growth
= node
->local
.inline_summary
.self_insns
1087 - removable_args
* redirectable_node_callers
;
1094 /* Estimate cost of cloning NODE. */
1096 ipcp_estimate_cloning_cost (struct cgraph_node
*node
)
1099 gcov_type count_sum
= 1;
1100 struct cgraph_edge
*e
;
1103 cost
= ipcp_estimate_growth (node
) * 1000;
1107 fprintf (dump_file
, "Versioning of %s will save code size\n",
1108 cgraph_node_name (node
));
1112 for (e
= node
->callers
; e
; e
= e
->next_caller
)
1113 if (!bitmap_bit_p (dead_nodes
, e
->caller
->uid
)
1114 && !ipcp_need_redirect_p (e
))
1116 count_sum
+= e
->count
;
1117 freq_sum
+= e
->frequency
+ 1;
1121 cost
/= count_sum
* 1000 / max_count
+ 1;
1123 cost
/= freq_sum
* 1000 / REG_BR_PROB_BASE
+ 1;
1125 fprintf (dump_file
, "Cost of versioning %s is %i, (size: %i, freq: %i)\n",
1126 cgraph_node_name (node
), cost
, node
->local
.inline_summary
.self_insns
,
1131 /* Return number of live constant parameters. */
1133 ipcp_const_param_count (struct cgraph_node
*node
)
1135 int const_param
= 0;
1136 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
1137 int count
= ipa_get_param_count (info
);
1140 for (i
= 0; i
< count
; i
++)
1142 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
1143 tree parm_tree
= ipa_get_param (info
, i
);
1144 if (ipcp_lat_is_insertable (lat
)
1145 /* Do not count obviously unused arguments. */
1146 && (!is_gimple_reg (parm_tree
)
1147 || gimple_default_def (DECL_STRUCT_FUNCTION (node
->decl
),
1154 /* Propagate the constant parameters found by ipcp_iterate_stage()
1155 to the function's code. */
1157 ipcp_insert_stage (void)
1159 struct cgraph_node
*node
, *node1
= NULL
;
1161 VEC (cgraph_edge_p
, heap
) * redirect_callers
;
1162 varray_type replace_trees
;
1163 int node_callers
, count
;
1165 struct ipa_replace_map
*replace_param
;
1167 long overall_insns
= 0, new_insns
= 0;
1170 ipa_check_create_node_params ();
1171 ipa_check_create_edge_args ();
1173 fprintf (dump_file
, "\nIPA insert stage:\n\n");
1175 dead_nodes
= BITMAP_ALLOC (NULL
);
1177 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1180 if (node
->count
> max_count
)
1181 max_count
= node
->count
;
1182 overall_insns
+= node
->local
.inline_summary
.self_insns
;
1185 max_new_insns
= overall_insns
;
1186 if (max_new_insns
< PARAM_VALUE (PARAM_LARGE_UNIT_INSNS
))
1187 max_new_insns
= PARAM_VALUE (PARAM_LARGE_UNIT_INSNS
);
1188 max_new_insns
= max_new_insns
* PARAM_VALUE (PARAM_IPCP_UNIT_GROWTH
) / 100 + 1;
1190 /* First collect all functions we proved to have constant arguments to heap. */
1191 heap
= fibheap_new ();
1192 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1194 struct ipa_node_params
*info
;
1195 /* Propagation of the constant is forbidden in certain conditions. */
1196 if (!node
->analyzed
|| !ipcp_node_modifiable_p (node
))
1198 info
= IPA_NODE_REF (node
);
1199 if (ipa_is_called_with_var_arguments (info
))
1201 if (ipcp_const_param_count (node
))
1202 node
->aux
= fibheap_insert (heap
, ipcp_estimate_cloning_cost (node
), node
);
1205 /* Now clone in priority order until code size growth limits are met or
1207 while (!fibheap_empty (heap
))
1209 struct ipa_node_params
*info
;
1211 bitmap args_to_skip
;
1212 struct cgraph_edge
*cs
;
1214 node
= (struct cgraph_node
*)fibheap_extract_min (heap
);
1217 fprintf (dump_file
, "considering function %s\n",
1218 cgraph_node_name (node
));
1220 growth
= ipcp_estimate_growth (node
);
1222 if (new_insns
+ growth
> max_new_insns
)
1225 && optimize_function_for_size_p (DECL_STRUCT_FUNCTION (node
->decl
)))
1228 fprintf (dump_file
, "Not versioning, cold code would grow");
1232 new_insns
+= growth
;
1234 /* Look if original function becomes dead after clonning. */
1235 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
1236 if (cs
->caller
== node
|| ipcp_need_redirect_p (cs
))
1238 if (!cs
&& !node
->needed
)
1239 bitmap_set_bit (dead_nodes
, node
->uid
);
1241 info
= IPA_NODE_REF (node
);
1242 count
= ipa_get_param_count (info
);
1244 VARRAY_GENERIC_PTR_INIT (replace_trees
, ipcp_const_param_count (node
),
1246 args_to_skip
= BITMAP_ALLOC (NULL
);
1247 for (i
= 0; i
< count
; i
++)
1249 struct ipcp_lattice
*lat
= ipcp_get_lattice (info
, i
);
1250 parm_tree
= ipa_get_param (info
, i
);
1252 /* We can proactively remove obviously unused arguments. */
1253 if (is_gimple_reg (parm_tree
)
1254 && !gimple_default_def (DECL_STRUCT_FUNCTION (node
->decl
),
1257 bitmap_set_bit (args_to_skip
, i
);
1261 if (lat
->type
== IPA_CONST_VALUE
)
1264 ipcp_create_replace_map (parm_tree
, lat
);
1265 VARRAY_PUSH_GENERIC_PTR (replace_trees
, replace_param
);
1266 bitmap_set_bit (args_to_skip
, i
);
1270 /* Compute how many callers node has. */
1272 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
1274 redirect_callers
= VEC_alloc (cgraph_edge_p
, heap
, node_callers
);
1275 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
1276 VEC_quick_push (cgraph_edge_p
, redirect_callers
, cs
);
1278 /* Redirecting all the callers of the node to the
1279 new versioned node. */
1281 cgraph_function_versioning (node
, redirect_callers
, replace_trees
,
1283 BITMAP_FREE (args_to_skip
);
1284 VEC_free (cgraph_edge_p
, heap
, redirect_callers
);
1285 VARRAY_CLEAR (replace_trees
);
1289 fprintf (dump_file
, "versioned function %s with growth %i, overall %i\n",
1290 cgraph_node_name (node
), (int)growth
, (int)new_insns
);
1291 ipcp_init_cloned_node (node
, node1
);
1293 /* We've possibly introduced direct calls. */
1294 ipcp_update_cloned_node (node1
);
1297 dump_function_to_file (node1
->decl
, dump_file
, dump_flags
);
1299 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
1300 if (cs
->callee
->aux
)
1302 fibheap_delete_node (heap
, (fibnode_t
) cs
->callee
->aux
);
1303 cs
->callee
->aux
= fibheap_insert (heap
,
1304 ipcp_estimate_cloning_cost (cs
->callee
),
1309 while (!fibheap_empty (heap
))
1312 fprintf (dump_file
, "skipping function %s\n",
1313 cgraph_node_name (node
));
1314 node
= (struct cgraph_node
*) fibheap_extract_min (heap
);
1317 fibheap_delete (heap
);
1318 BITMAP_FREE (dead_nodes
);
1319 ipcp_update_callgraph ();
1320 ipcp_update_profiling ();
1323 /* The IPCP driver. */
1327 cgraph_remove_unreachable_nodes (true,dump_file
);
1330 fprintf (dump_file
, "\nIPA structures before propagation:\n");
1331 if (dump_flags
& TDF_DETAILS
)
1332 ipa_print_all_params (dump_file
);
1333 ipa_print_all_jump_functions (dump_file
);
1335 /* 2. Do the interprocedural propagation. */
1336 ipcp_iterate_stage ();
1337 /* 3. Insert the constants found to the functions. */
1338 ipcp_insert_stage ();
1339 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1341 fprintf (dump_file
, "\nProfiling info after insert stage:\n");
1342 ipcp_print_profile_data (dump_file
);
1344 /* Free all IPCP structures. */
1345 free_all_ipa_structures_after_ipa_cp ();
1347 fprintf (dump_file
, "\nIPA constant propagation end\n");
1351 /* Note function body size. */
1353 ipcp_generate_summary (void)
1356 fprintf (dump_file
, "\nIPA constant propagation start:\n");
1357 ipa_check_create_node_params ();
1358 ipa_check_create_edge_args ();
1359 ipa_register_cgraph_hooks ();
1360 /* 1. Call the init stage to initialize
1361 the ipa_node_params and ipa_edge_args structures. */
1365 /* Gate for IPCP optimization. */
1367 cgraph_gate_cp (void)
1372 struct ipa_opt_pass pass_ipa_cp
=
1377 cgraph_gate_cp
, /* gate */
1378 ipcp_driver
, /* execute */
1381 0, /* static_pass_number */
1382 TV_IPA_CONSTANT_PROP
, /* tv_id */
1383 0, /* properties_required */
1384 PROP_trees
, /* properties_provided */
1385 0, /* properties_destroyed */
1386 0, /* todo_flags_start */
1387 TODO_dump_cgraph
| TODO_dump_func
|
1388 TODO_remove_functions
/* todo_flags_finish */
1390 ipcp_generate_summary
, /* generate_summary */
1391 NULL
, /* write_summary */
1392 NULL
, /* read_summary */
1393 NULL
, /* function_read_summary */
1395 NULL
, /* function_transform */
1396 NULL
, /* variable_transform */