1 /* Interprocedural analyses.
2 Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011, 2012
3 Free Software Foundation, Inc.
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/>. */
23 #include "coretypes.h"
25 #include "langhooks.h"
30 #include "tree-flow.h"
31 #include "tree-pass.h"
32 #include "tree-inline.h"
35 #include "diagnostic.h"
36 #include "gimple-pretty-print.h"
37 #include "lto-streamer.h"
38 #include "data-streamer.h"
39 #include "tree-streamer.h"
43 /* Intermediate information about a parameter that is only useful during the
44 run of ipa_analyze_node and is not kept afterwards. */
46 struct param_analysis_info
48 bool parm_modified
, ref_modified
, pt_modified
;
49 bitmap parm_visited_statements
, pt_visited_statements
;
52 /* Vector where the parameter infos are actually stored. */
53 VEC (ipa_node_params_t
, heap
) *ipa_node_params_vector
;
54 /* Vector where the parameter infos are actually stored. */
55 VEC (ipa_edge_args_t
, gc
) *ipa_edge_args_vector
;
57 /* Holders of ipa cgraph hooks: */
58 static struct cgraph_edge_hook_list
*edge_removal_hook_holder
;
59 static struct cgraph_node_hook_list
*node_removal_hook_holder
;
60 static struct cgraph_2edge_hook_list
*edge_duplication_hook_holder
;
61 static struct cgraph_2node_hook_list
*node_duplication_hook_holder
;
62 static struct cgraph_node_hook_list
*function_insertion_hook_holder
;
64 /* Return index of the formal whose tree is PTREE in function which corresponds
68 ipa_get_param_decl_index (struct ipa_node_params
*info
, tree ptree
)
72 count
= ipa_get_param_count (info
);
73 for (i
= 0; i
< count
; i
++)
74 if (ipa_get_param (info
, i
) == ptree
)
80 /* Populate the param_decl field in parameter descriptors of INFO that
81 corresponds to NODE. */
84 ipa_populate_param_decls (struct cgraph_node
*node
,
85 struct ipa_node_params
*info
)
92 fndecl
= node
->symbol
.decl
;
93 fnargs
= DECL_ARGUMENTS (fndecl
);
95 for (parm
= fnargs
; parm
; parm
= DECL_CHAIN (parm
))
97 VEC_index (ipa_param_descriptor_t
,
98 info
->descriptors
, param_num
).decl
= parm
;
103 /* Return how many formal parameters FNDECL has. */
106 count_formal_params (tree fndecl
)
111 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
117 /* Initialize the ipa_node_params structure associated with NODE by counting
118 the function parameters, creating the descriptors and populating their
122 ipa_initialize_node_params (struct cgraph_node
*node
)
124 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
126 if (!info
->descriptors
)
130 param_count
= count_formal_params (node
->symbol
.decl
);
133 VEC_safe_grow_cleared (ipa_param_descriptor_t
, heap
,
134 info
->descriptors
, param_count
);
135 ipa_populate_param_decls (node
, info
);
140 /* Print the jump functions associated with call graph edge CS to file F. */
143 ipa_print_node_jump_functions_for_edge (FILE *f
, struct cgraph_edge
*cs
)
147 count
= ipa_get_cs_argument_count (IPA_EDGE_REF (cs
));
148 for (i
= 0; i
< count
; i
++)
150 struct ipa_jump_func
*jump_func
;
151 enum jump_func_type type
;
153 jump_func
= ipa_get_ith_jump_func (IPA_EDGE_REF (cs
), i
);
154 type
= jump_func
->type
;
156 fprintf (f
, " param %d: ", i
);
157 if (type
== IPA_JF_UNKNOWN
)
158 fprintf (f
, "UNKNOWN\n");
159 else if (type
== IPA_JF_KNOWN_TYPE
)
161 fprintf (f
, "KNOWN TYPE: base ");
162 print_generic_expr (f
, jump_func
->value
.known_type
.base_type
, 0);
163 fprintf (f
, ", offset "HOST_WIDE_INT_PRINT_DEC
", component ",
164 jump_func
->value
.known_type
.offset
);
165 print_generic_expr (f
, jump_func
->value
.known_type
.component_type
, 0);
168 else if (type
== IPA_JF_CONST
)
170 tree val
= jump_func
->value
.constant
;
171 fprintf (f
, "CONST: ");
172 print_generic_expr (f
, val
, 0);
173 if (TREE_CODE (val
) == ADDR_EXPR
174 && TREE_CODE (TREE_OPERAND (val
, 0)) == CONST_DECL
)
177 print_generic_expr (f
, DECL_INITIAL (TREE_OPERAND (val
, 0)),
182 else if (type
== IPA_JF_PASS_THROUGH
)
184 fprintf (f
, "PASS THROUGH: ");
185 fprintf (f
, "%d, op %s",
186 jump_func
->value
.pass_through
.formal_id
,
188 jump_func
->value
.pass_through
.operation
]);
189 if (jump_func
->value
.pass_through
.operation
!= NOP_EXPR
)
192 print_generic_expr (f
,
193 jump_func
->value
.pass_through
.operand
, 0);
195 if (jump_func
->value
.pass_through
.agg_preserved
)
196 fprintf (f
, ", agg_preserved");
199 else if (type
== IPA_JF_ANCESTOR
)
201 fprintf (f
, "ANCESTOR: ");
202 fprintf (f
, "%d, offset "HOST_WIDE_INT_PRINT_DEC
", ",
203 jump_func
->value
.ancestor
.formal_id
,
204 jump_func
->value
.ancestor
.offset
);
205 print_generic_expr (f
, jump_func
->value
.ancestor
.type
, 0);
206 if (jump_func
->value
.ancestor
.agg_preserved
)
207 fprintf (f
, ", agg_preserved");
211 if (jump_func
->agg
.items
)
213 struct ipa_agg_jf_item
*item
;
216 fprintf (f
, " Aggregate passed by %s:\n",
217 jump_func
->agg
.by_ref
? "reference" : "value");
218 FOR_EACH_VEC_ELT (ipa_agg_jf_item_t
, jump_func
->agg
.items
,
221 fprintf (f
, " offset: " HOST_WIDE_INT_PRINT_DEC
", ",
223 if (TYPE_P (item
->value
))
224 fprintf (f
, "clobber of " HOST_WIDE_INT_PRINT_DEC
" bits",
225 tree_low_cst (TYPE_SIZE (item
->value
), 1));
228 fprintf (f
, "cst: ");
229 print_generic_expr (f
, item
->value
, 0);
238 /* Print the jump functions of all arguments on all call graph edges going from
242 ipa_print_node_jump_functions (FILE *f
, struct cgraph_node
*node
)
244 struct cgraph_edge
*cs
;
247 fprintf (f
, " Jump functions of caller %s:\n", cgraph_node_name (node
));
248 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
250 if (!ipa_edge_args_info_available_for_edge_p (cs
))
253 fprintf (f
, " callsite %s/%i -> %s/%i : \n",
254 xstrdup (cgraph_node_name (node
)), node
->uid
,
255 xstrdup (cgraph_node_name (cs
->callee
)), cs
->callee
->uid
);
256 ipa_print_node_jump_functions_for_edge (f
, cs
);
259 for (cs
= node
->indirect_calls
, i
= 0; cs
; cs
= cs
->next_callee
, i
++)
261 if (!ipa_edge_args_info_available_for_edge_p (cs
))
266 fprintf (f
, " indirect callsite %d for stmt ", i
);
267 print_gimple_stmt (f
, cs
->call_stmt
, 0, TDF_SLIM
);
270 fprintf (f
, " indirect callsite %d :\n", i
);
271 ipa_print_node_jump_functions_for_edge (f
, cs
);
276 /* Print ipa_jump_func data structures of all nodes in the call graph to F. */
279 ipa_print_all_jump_functions (FILE *f
)
281 struct cgraph_node
*node
;
283 fprintf (f
, "\nJump functions:\n");
284 FOR_EACH_FUNCTION (node
)
286 ipa_print_node_jump_functions (f
, node
);
290 /* Return the expression tree EXPR unshared and with location stripped off. */
293 prune_expression_for_jf (tree exp
)
297 exp
= unshare_expr (exp
);
298 SET_EXPR_LOCATION (exp
, UNKNOWN_LOCATION
);
303 /* Set JFUNC to be a known type jump function. */
306 ipa_set_jf_known_type (struct ipa_jump_func
*jfunc
, HOST_WIDE_INT offset
,
307 tree base_type
, tree component_type
)
309 jfunc
->type
= IPA_JF_KNOWN_TYPE
;
310 jfunc
->value
.known_type
.offset
= offset
,
311 jfunc
->value
.known_type
.base_type
= base_type
;
312 jfunc
->value
.known_type
.component_type
= component_type
;
315 /* Set JFUNC to be a constant jmp function. */
318 ipa_set_jf_constant (struct ipa_jump_func
*jfunc
, tree constant
)
320 constant
= unshare_expr (constant
);
321 if (constant
&& EXPR_P (constant
))
322 SET_EXPR_LOCATION (constant
, UNKNOWN_LOCATION
);
323 jfunc
->type
= IPA_JF_CONST
;
324 jfunc
->value
.constant
= prune_expression_for_jf (constant
);
327 /* Set JFUNC to be a simple pass-through jump function. */
329 ipa_set_jf_simple_pass_through (struct ipa_jump_func
*jfunc
, int formal_id
,
332 jfunc
->type
= IPA_JF_PASS_THROUGH
;
333 jfunc
->value
.pass_through
.operand
= NULL_TREE
;
334 jfunc
->value
.pass_through
.formal_id
= formal_id
;
335 jfunc
->value
.pass_through
.operation
= NOP_EXPR
;
336 jfunc
->value
.pass_through
.agg_preserved
= agg_preserved
;
339 /* Set JFUNC to be an arithmetic pass through jump function. */
342 ipa_set_jf_arith_pass_through (struct ipa_jump_func
*jfunc
, int formal_id
,
343 tree operand
, enum tree_code operation
)
345 jfunc
->type
= IPA_JF_PASS_THROUGH
;
346 jfunc
->value
.pass_through
.operand
= prune_expression_for_jf (operand
);
347 jfunc
->value
.pass_through
.formal_id
= formal_id
;
348 jfunc
->value
.pass_through
.operation
= operation
;
349 jfunc
->value
.pass_through
.agg_preserved
= false;
352 /* Set JFUNC to be an ancestor jump function. */
355 ipa_set_ancestor_jf (struct ipa_jump_func
*jfunc
, HOST_WIDE_INT offset
,
356 tree type
, int formal_id
, bool agg_preserved
)
358 jfunc
->type
= IPA_JF_ANCESTOR
;
359 jfunc
->value
.ancestor
.formal_id
= formal_id
;
360 jfunc
->value
.ancestor
.offset
= offset
;
361 jfunc
->value
.ancestor
.type
= type
;
362 jfunc
->value
.ancestor
.agg_preserved
= agg_preserved
;
365 /* Structure to be passed in between detect_type_change and
366 check_stmt_for_type_change. */
368 struct type_change_info
370 /* Offset into the object where there is the virtual method pointer we are
372 HOST_WIDE_INT offset
;
373 /* The declaration or SSA_NAME pointer of the base that we are checking for
376 /* If we actually can tell the type that the object has changed to, it is
377 stored in this field. Otherwise it remains NULL_TREE. */
378 tree known_current_type
;
379 /* Set to true if dynamic type change has been detected. */
380 bool type_maybe_changed
;
381 /* Set to true if multiple types have been encountered. known_current_type
382 must be disregarded in that case. */
383 bool multiple_types_encountered
;
386 /* Return true if STMT can modify a virtual method table pointer.
388 This function makes special assumptions about both constructors and
389 destructors which are all the functions that are allowed to alter the VMT
390 pointers. It assumes that destructors begin with assignment into all VMT
391 pointers and that constructors essentially look in the following way:
393 1) The very first thing they do is that they call constructors of ancestor
394 sub-objects that have them.
396 2) Then VMT pointers of this and all its ancestors is set to new values
397 corresponding to the type corresponding to the constructor.
399 3) Only afterwards, other stuff such as constructor of member sub-objects
400 and the code written by the user is run. Only this may include calling
401 virtual functions, directly or indirectly.
403 There is no way to call a constructor of an ancestor sub-object in any
406 This means that we do not have to care whether constructors get the correct
407 type information because they will always change it (in fact, if we define
408 the type to be given by the VMT pointer, it is undefined).
410 The most important fact to derive from the above is that if, for some
411 statement in the section 3, we try to detect whether the dynamic type has
412 changed, we can safely ignore all calls as we examine the function body
413 backwards until we reach statements in section 2 because these calls cannot
414 be ancestor constructors or destructors (if the input is not bogus) and so
415 do not change the dynamic type (this holds true only for automatically
416 allocated objects but at the moment we devirtualize only these). We then
417 must detect that statements in section 2 change the dynamic type and can try
418 to derive the new type. That is enough and we can stop, we will never see
419 the calls into constructors of sub-objects in this code. Therefore we can
420 safely ignore all call statements that we traverse.
424 stmt_may_be_vtbl_ptr_store (gimple stmt
)
426 if (is_gimple_call (stmt
))
428 else if (is_gimple_assign (stmt
))
430 tree lhs
= gimple_assign_lhs (stmt
);
432 if (!AGGREGATE_TYPE_P (TREE_TYPE (lhs
)))
434 if (flag_strict_aliasing
435 && !POINTER_TYPE_P (TREE_TYPE (lhs
)))
438 if (TREE_CODE (lhs
) == COMPONENT_REF
439 && !DECL_VIRTUAL_P (TREE_OPERAND (lhs
, 1)))
441 /* In the future we might want to use get_base_ref_and_offset to find
442 if there is a field corresponding to the offset and if so, proceed
443 almost like if it was a component ref. */
449 /* If STMT can be proved to be an assignment to the virtual method table
450 pointer of ANALYZED_OBJ and the type associated with the new table
451 identified, return the type. Otherwise return NULL_TREE. */
454 extr_type_from_vtbl_ptr_store (gimple stmt
, struct type_change_info
*tci
)
456 HOST_WIDE_INT offset
, size
, max_size
;
459 if (!gimple_assign_single_p (stmt
))
462 lhs
= gimple_assign_lhs (stmt
);
463 rhs
= gimple_assign_rhs1 (stmt
);
464 if (TREE_CODE (lhs
) != COMPONENT_REF
465 || !DECL_VIRTUAL_P (TREE_OPERAND (lhs
, 1))
466 || TREE_CODE (rhs
) != ADDR_EXPR
)
468 rhs
= get_base_address (TREE_OPERAND (rhs
, 0));
470 || TREE_CODE (rhs
) != VAR_DECL
471 || !DECL_VIRTUAL_P (rhs
))
474 base
= get_ref_base_and_extent (lhs
, &offset
, &size
, &max_size
);
475 if (offset
!= tci
->offset
476 || size
!= POINTER_SIZE
477 || max_size
!= POINTER_SIZE
)
479 if (TREE_CODE (base
) == MEM_REF
)
481 if (TREE_CODE (tci
->object
) != MEM_REF
482 || TREE_OPERAND (tci
->object
, 0) != TREE_OPERAND (base
, 0)
483 || !tree_int_cst_equal (TREE_OPERAND (tci
->object
, 1),
484 TREE_OPERAND (base
, 1)))
487 else if (tci
->object
!= base
)
490 return DECL_CONTEXT (rhs
);
493 /* Callback of walk_aliased_vdefs and a helper function for
494 detect_type_change to check whether a particular statement may modify
495 the virtual table pointer, and if possible also determine the new type of
496 the (sub-)object. It stores its result into DATA, which points to a
497 type_change_info structure. */
500 check_stmt_for_type_change (ao_ref
*ao ATTRIBUTE_UNUSED
, tree vdef
, void *data
)
502 gimple stmt
= SSA_NAME_DEF_STMT (vdef
);
503 struct type_change_info
*tci
= (struct type_change_info
*) data
;
505 if (stmt_may_be_vtbl_ptr_store (stmt
))
508 type
= extr_type_from_vtbl_ptr_store (stmt
, tci
);
509 if (tci
->type_maybe_changed
510 && type
!= tci
->known_current_type
)
511 tci
->multiple_types_encountered
= true;
512 tci
->known_current_type
= type
;
513 tci
->type_maybe_changed
= true;
522 /* Like detect_type_change but with extra argument COMP_TYPE which will become
523 the component type part of new JFUNC of dynamic type change is detected and
524 the new base type is identified. */
527 detect_type_change_1 (tree arg
, tree base
, tree comp_type
, gimple call
,
528 struct ipa_jump_func
*jfunc
, HOST_WIDE_INT offset
)
530 struct type_change_info tci
;
533 gcc_checking_assert (DECL_P (arg
)
534 || TREE_CODE (arg
) == MEM_REF
535 || handled_component_p (arg
));
536 /* Const calls cannot call virtual methods through VMT and so type changes do
538 if (!flag_devirtualize
|| !gimple_vuse (call
))
541 ao_ref_init (&ao
, arg
);
544 ao
.size
= POINTER_SIZE
;
545 ao
.max_size
= ao
.size
;
548 tci
.object
= get_base_address (arg
);
549 tci
.known_current_type
= NULL_TREE
;
550 tci
.type_maybe_changed
= false;
551 tci
.multiple_types_encountered
= false;
553 walk_aliased_vdefs (&ao
, gimple_vuse (call
), check_stmt_for_type_change
,
555 if (!tci
.type_maybe_changed
)
558 if (!tci
.known_current_type
559 || tci
.multiple_types_encountered
561 jfunc
->type
= IPA_JF_UNKNOWN
;
563 ipa_set_jf_known_type (jfunc
, 0, tci
.known_current_type
, comp_type
);
568 /* Detect whether the dynamic type of ARG has changed (before callsite CALL) by
569 looking for assignments to its virtual table pointer. If it is, return true
570 and fill in the jump function JFUNC with relevant type information or set it
571 to unknown. ARG is the object itself (not a pointer to it, unless
572 dereferenced). BASE is the base of the memory access as returned by
573 get_ref_base_and_extent, as is the offset. */
576 detect_type_change (tree arg
, tree base
, gimple call
,
577 struct ipa_jump_func
*jfunc
, HOST_WIDE_INT offset
)
579 return detect_type_change_1 (arg
, base
, TREE_TYPE (arg
), call
, jfunc
, offset
);
582 /* Like detect_type_change but ARG is supposed to be a non-dereferenced pointer
583 SSA name (its dereference will become the base and the offset is assumed to
587 detect_type_change_ssa (tree arg
, gimple call
, struct ipa_jump_func
*jfunc
)
591 gcc_checking_assert (TREE_CODE (arg
) == SSA_NAME
);
592 if (!flag_devirtualize
593 || !POINTER_TYPE_P (TREE_TYPE (arg
))
594 || TREE_CODE (TREE_TYPE (TREE_TYPE (arg
))) != RECORD_TYPE
)
597 comp_type
= TREE_TYPE (TREE_TYPE (arg
));
598 arg
= build2 (MEM_REF
, ptr_type_node
, arg
,
599 build_int_cst (ptr_type_node
, 0));
601 return detect_type_change_1 (arg
, arg
, comp_type
, call
, jfunc
, 0);
604 /* Callback of walk_aliased_vdefs. Flags that it has been invoked to the
605 boolean variable pointed to by DATA. */
608 mark_modified (ao_ref
*ao ATTRIBUTE_UNUSED
, tree vdef ATTRIBUTE_UNUSED
,
611 bool *b
= (bool *) data
;
616 /* Return true if a load from a formal parameter PARM_LOAD is known to retreive
617 a value known not to be modified in this function before reaching the
618 statement STMT. PARM_AINFO is a pointer to a structure containing temporary
619 information about the parameter. */
622 parm_preserved_before_stmt_p (struct param_analysis_info
*parm_ainfo
,
623 gimple stmt
, tree parm_load
)
625 bool modified
= false;
626 bitmap
*visited_stmts
;
629 if (parm_ainfo
&& parm_ainfo
->parm_modified
)
632 gcc_checking_assert (gimple_vuse (stmt
) != NULL_TREE
);
633 ao_ref_init (&refd
, parm_load
);
634 /* We can cache visited statements only when parm_ainfo is available and when
635 we are looking at a naked load of the whole parameter. */
636 if (!parm_ainfo
|| TREE_CODE (parm_load
) != PARM_DECL
)
637 visited_stmts
= NULL
;
639 visited_stmts
= &parm_ainfo
->parm_visited_statements
;
640 walk_aliased_vdefs (&refd
, gimple_vuse (stmt
), mark_modified
, &modified
,
642 if (parm_ainfo
&& modified
)
643 parm_ainfo
->parm_modified
= true;
647 /* If STMT is an assignment that loads a value from an parameter declaration,
648 return the index of the parameter in ipa_node_params which has not been
649 modified. Otherwise return -1. */
652 load_from_unmodified_param (struct ipa_node_params
*info
,
653 struct param_analysis_info
*parms_ainfo
,
659 if (!gimple_assign_single_p (stmt
))
662 op1
= gimple_assign_rhs1 (stmt
);
663 if (TREE_CODE (op1
) != PARM_DECL
)
666 index
= ipa_get_param_decl_index (info
, op1
);
668 || !parm_preserved_before_stmt_p (parms_ainfo
? &parms_ainfo
[index
]
675 /* Return true if memory reference REF loads data that are known to be
676 unmodified in this function before reaching statement STMT. PARM_AINFO, if
677 non-NULL, is a pointer to a structure containing temporary information about
681 parm_ref_data_preserved_p (struct param_analysis_info
*parm_ainfo
,
682 gimple stmt
, tree ref
)
684 bool modified
= false;
687 gcc_checking_assert (gimple_vuse (stmt
));
688 if (parm_ainfo
&& parm_ainfo
->ref_modified
)
691 ao_ref_init (&refd
, ref
);
692 walk_aliased_vdefs (&refd
, gimple_vuse (stmt
), mark_modified
, &modified
,
694 if (parm_ainfo
&& modified
)
695 parm_ainfo
->ref_modified
= true;
699 /* Return true if the data pointed to by PARM is known to be unmodified in this
700 function before reaching call statement CALL into which it is passed.
701 PARM_AINFO is a pointer to a structure containing temporary information
705 parm_ref_data_pass_through_p (struct param_analysis_info
*parm_ainfo
,
706 gimple call
, tree parm
)
708 bool modified
= false;
711 /* It's unnecessary to calculate anything about memory contnets for a const
712 function because it is not goin to use it. But do not cache the result
713 either. Also, no such calculations for non-pointers. */
714 if (!gimple_vuse (call
)
715 || !POINTER_TYPE_P (TREE_TYPE (parm
)))
718 if (parm_ainfo
->pt_modified
)
721 ao_ref_init_from_ptr_and_size (&refd
, parm
, NULL_TREE
);
722 walk_aliased_vdefs (&refd
, gimple_vuse (call
), mark_modified
, &modified
,
723 parm_ainfo
? &parm_ainfo
->pt_visited_statements
: NULL
);
725 parm_ainfo
->pt_modified
= true;
729 /* Return true if we can prove that OP is a memory reference loading unmodified
730 data from an aggregate passed as a parameter and if the aggregate is passed
731 by reference, that the alias type of the load corresponds to the type of the
732 formal parameter (so that we can rely on this type for TBAA in callers).
733 INFO and PARMS_AINFO describe parameters of the current function (but the
734 latter can be NULL), STMT is the load statement. If function returns true,
735 *INDEX_P, *OFFSET_P and *BY_REF is filled with the parameter index, offset
736 within the aggregate and whether it is a load from a value passed by
737 reference respectively. */
740 ipa_load_from_parm_agg_1 (struct ipa_node_params
*info
,
741 struct param_analysis_info
*parms_ainfo
, gimple stmt
,
742 tree op
, int *index_p
, HOST_WIDE_INT
*offset_p
,
746 HOST_WIDE_INT size
, max_size
;
747 tree base
= get_ref_base_and_extent (op
, offset_p
, &size
, &max_size
);
749 if (max_size
== -1 || max_size
!= size
|| *offset_p
< 0)
754 int index
= ipa_get_param_decl_index (info
, base
);
756 && parm_preserved_before_stmt_p (parms_ainfo
? &parms_ainfo
[index
]
766 if (TREE_CODE (base
) != MEM_REF
767 || TREE_CODE (TREE_OPERAND (base
, 0)) != SSA_NAME
768 || !integer_zerop (TREE_OPERAND (base
, 1)))
771 if (SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (base
, 0)))
773 tree parm
= SSA_NAME_VAR (TREE_OPERAND (base
, 0));
774 index
= ipa_get_param_decl_index (info
, parm
);
778 /* This branch catches situations where a pointer parameter is not a
779 gimple register, for example:
781 void hip7(S*) (struct S * p)
783 void (*<T2e4>) (struct S *) D.1867;
793 gimple def
= SSA_NAME_DEF_STMT (TREE_OPERAND (base
, 0));
794 index
= load_from_unmodified_param (info
, parms_ainfo
, def
);
798 && parm_ref_data_preserved_p (parms_ainfo
? &parms_ainfo
[index
] : NULL
,
808 /* Just like the previous function, just without the param_analysis_info
809 pointer, for users outside of this file. */
812 ipa_load_from_parm_agg (struct ipa_node_params
*info
, gimple stmt
,
813 tree op
, int *index_p
, HOST_WIDE_INT
*offset_p
,
816 return ipa_load_from_parm_agg_1 (info
, NULL
, stmt
, op
, index_p
, offset_p
,
820 /* Given that an actual argument is an SSA_NAME (given in NAME) and is a result
821 of an assignment statement STMT, try to determine whether we are actually
822 handling any of the following cases and construct an appropriate jump
823 function into JFUNC if so:
825 1) The passed value is loaded from a formal parameter which is not a gimple
826 register (most probably because it is addressable, the value has to be
827 scalar) and we can guarantee the value has not changed. This case can
828 therefore be described by a simple pass-through jump function. For example:
837 2) The passed value can be described by a simple arithmetic pass-through
844 D.2064_4 = a.1(D) + 4;
847 This case can also occur in combination of the previous one, e.g.:
855 D.2064_4 = a.0_3 + 4;
858 3) The passed value is an address of an object within another one (which
859 also passed by reference). Such situations are described by an ancestor
860 jump function and describe situations such as:
862 B::foo() (struct B * const this)
866 D.1845_2 = &this_1(D)->D.1748;
869 INFO is the structure describing individual parameters access different
870 stages of IPA optimizations. PARMS_AINFO contains the information that is
871 only needed for intraprocedural analysis. */
874 compute_complex_assign_jump_func (struct ipa_node_params
*info
,
875 struct param_analysis_info
*parms_ainfo
,
876 struct ipa_jump_func
*jfunc
,
877 gimple call
, gimple stmt
, tree name
)
879 HOST_WIDE_INT offset
, size
, max_size
;
880 tree op1
, tc_ssa
, base
, ssa
;
883 op1
= gimple_assign_rhs1 (stmt
);
885 if (TREE_CODE (op1
) == SSA_NAME
)
887 if (SSA_NAME_IS_DEFAULT_DEF (op1
))
888 index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (op1
));
890 index
= load_from_unmodified_param (info
, parms_ainfo
,
891 SSA_NAME_DEF_STMT (op1
));
896 index
= load_from_unmodified_param (info
, parms_ainfo
, stmt
);
897 tc_ssa
= gimple_assign_lhs (stmt
);
902 tree op2
= gimple_assign_rhs2 (stmt
);
906 if (!is_gimple_ip_invariant (op2
)
907 || (TREE_CODE_CLASS (gimple_expr_code (stmt
)) != tcc_comparison
908 && !useless_type_conversion_p (TREE_TYPE (name
),
912 ipa_set_jf_arith_pass_through (jfunc
, index
, op2
,
913 gimple_assign_rhs_code (stmt
));
915 else if (gimple_assign_single_p (stmt
)
916 && !detect_type_change_ssa (tc_ssa
, call
, jfunc
))
918 bool agg_p
= parm_ref_data_pass_through_p (&parms_ainfo
[index
],
920 ipa_set_jf_simple_pass_through (jfunc
, index
, agg_p
);
925 if (TREE_CODE (op1
) != ADDR_EXPR
)
927 op1
= TREE_OPERAND (op1
, 0);
928 if (TREE_CODE (TREE_TYPE (op1
)) != RECORD_TYPE
)
930 base
= get_ref_base_and_extent (op1
, &offset
, &size
, &max_size
);
931 if (TREE_CODE (base
) != MEM_REF
932 /* If this is a varying address, punt. */
936 offset
+= mem_ref_offset (base
).low
* BITS_PER_UNIT
;
937 ssa
= TREE_OPERAND (base
, 0);
938 if (TREE_CODE (ssa
) != SSA_NAME
939 || !SSA_NAME_IS_DEFAULT_DEF (ssa
)
943 /* Dynamic types are changed only in constructors and destructors and */
944 index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (ssa
));
946 && !detect_type_change (op1
, base
, call
, jfunc
, offset
))
947 ipa_set_ancestor_jf (jfunc
, offset
, TREE_TYPE (op1
), index
,
948 parm_ref_data_pass_through_p (&parms_ainfo
[index
],
952 /* Extract the base, offset and MEM_REF expression from a statement ASSIGN if
955 iftmp.1_3 = &obj_2(D)->D.1762;
957 The base of the MEM_REF must be a default definition SSA NAME of a
958 parameter. Return NULL_TREE if it looks otherwise. If case of success, the
959 whole MEM_REF expression is returned and the offset calculated from any
960 handled components and the MEM_REF itself is stored into *OFFSET. The whole
961 RHS stripped off the ADDR_EXPR is stored into *OBJ_P. */
964 get_ancestor_addr_info (gimple assign
, tree
*obj_p
, HOST_WIDE_INT
*offset
)
966 HOST_WIDE_INT size
, max_size
;
967 tree expr
, parm
, obj
;
969 if (!gimple_assign_single_p (assign
))
971 expr
= gimple_assign_rhs1 (assign
);
973 if (TREE_CODE (expr
) != ADDR_EXPR
)
975 expr
= TREE_OPERAND (expr
, 0);
977 expr
= get_ref_base_and_extent (expr
, offset
, &size
, &max_size
);
979 if (TREE_CODE (expr
) != MEM_REF
980 /* If this is a varying address, punt. */
985 parm
= TREE_OPERAND (expr
, 0);
986 if (TREE_CODE (parm
) != SSA_NAME
987 || !SSA_NAME_IS_DEFAULT_DEF (parm
)
988 || TREE_CODE (SSA_NAME_VAR (parm
)) != PARM_DECL
)
991 *offset
+= mem_ref_offset (expr
).low
* BITS_PER_UNIT
;
997 /* Given that an actual argument is an SSA_NAME that is a result of a phi
998 statement PHI, try to find out whether NAME is in fact a
999 multiple-inheritance typecast from a descendant into an ancestor of a formal
1000 parameter and thus can be described by an ancestor jump function and if so,
1001 write the appropriate function into JFUNC.
1003 Essentially we want to match the following pattern:
1011 iftmp.1_3 = &obj_2(D)->D.1762;
1014 # iftmp.1_1 = PHI <iftmp.1_3(3), 0B(2)>
1015 D.1879_6 = middleman_1 (iftmp.1_1, i_5(D));
1019 compute_complex_ancestor_jump_func (struct ipa_node_params
*info
,
1020 struct param_analysis_info
*parms_ainfo
,
1021 struct ipa_jump_func
*jfunc
,
1022 gimple call
, gimple phi
)
1024 HOST_WIDE_INT offset
;
1025 gimple assign
, cond
;
1026 basic_block phi_bb
, assign_bb
, cond_bb
;
1027 tree tmp
, parm
, expr
, obj
;
1030 if (gimple_phi_num_args (phi
) != 2)
1033 if (integer_zerop (PHI_ARG_DEF (phi
, 1)))
1034 tmp
= PHI_ARG_DEF (phi
, 0);
1035 else if (integer_zerop (PHI_ARG_DEF (phi
, 0)))
1036 tmp
= PHI_ARG_DEF (phi
, 1);
1039 if (TREE_CODE (tmp
) != SSA_NAME
1040 || SSA_NAME_IS_DEFAULT_DEF (tmp
)
1041 || !POINTER_TYPE_P (TREE_TYPE (tmp
))
1042 || TREE_CODE (TREE_TYPE (TREE_TYPE (tmp
))) != RECORD_TYPE
)
1045 assign
= SSA_NAME_DEF_STMT (tmp
);
1046 assign_bb
= gimple_bb (assign
);
1047 if (!single_pred_p (assign_bb
))
1049 expr
= get_ancestor_addr_info (assign
, &obj
, &offset
);
1052 parm
= TREE_OPERAND (expr
, 0);
1053 index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (parm
));
1054 gcc_assert (index
>= 0);
1056 cond_bb
= single_pred (assign_bb
);
1057 cond
= last_stmt (cond_bb
);
1059 || gimple_code (cond
) != GIMPLE_COND
1060 || gimple_cond_code (cond
) != NE_EXPR
1061 || gimple_cond_lhs (cond
) != parm
1062 || !integer_zerop (gimple_cond_rhs (cond
)))
1065 phi_bb
= gimple_bb (phi
);
1066 for (i
= 0; i
< 2; i
++)
1068 basic_block pred
= EDGE_PRED (phi_bb
, i
)->src
;
1069 if (pred
!= assign_bb
&& pred
!= cond_bb
)
1073 if (!detect_type_change (obj
, expr
, call
, jfunc
, offset
))
1074 ipa_set_ancestor_jf (jfunc
, offset
, TREE_TYPE (obj
), index
,
1075 parm_ref_data_pass_through_p (&parms_ainfo
[index
],
1079 /* Given OP which is passed as an actual argument to a called function,
1080 determine if it is possible to construct a KNOWN_TYPE jump function for it
1081 and if so, create one and store it to JFUNC. */
1084 compute_known_type_jump_func (tree op
, struct ipa_jump_func
*jfunc
,
1087 HOST_WIDE_INT offset
, size
, max_size
;
1090 if (!flag_devirtualize
1091 || TREE_CODE (op
) != ADDR_EXPR
1092 || TREE_CODE (TREE_TYPE (TREE_TYPE (op
))) != RECORD_TYPE
)
1095 op
= TREE_OPERAND (op
, 0);
1096 base
= get_ref_base_and_extent (op
, &offset
, &size
, &max_size
);
1100 || TREE_CODE (TREE_TYPE (base
)) != RECORD_TYPE
1101 || is_global_var (base
))
1104 if (!TYPE_BINFO (TREE_TYPE (base
))
1105 || detect_type_change (op
, base
, call
, jfunc
, offset
))
1108 ipa_set_jf_known_type (jfunc
, offset
, TREE_TYPE (base
), TREE_TYPE (op
));
1111 /* Inspect the given TYPE and return true iff it has the same structure (the
1112 same number of fields of the same types) as a C++ member pointer. If
1113 METHOD_PTR and DELTA are non-NULL, store the trees representing the
1114 corresponding fields there. */
1117 type_like_member_ptr_p (tree type
, tree
*method_ptr
, tree
*delta
)
1121 if (TREE_CODE (type
) != RECORD_TYPE
)
1124 fld
= TYPE_FIELDS (type
);
1125 if (!fld
|| !POINTER_TYPE_P (TREE_TYPE (fld
))
1126 || TREE_CODE (TREE_TYPE (TREE_TYPE (fld
))) != METHOD_TYPE
1127 || !host_integerp (DECL_FIELD_OFFSET (fld
), 1))
1133 fld
= DECL_CHAIN (fld
);
1134 if (!fld
|| INTEGRAL_TYPE_P (fld
)
1135 || !host_integerp (DECL_FIELD_OFFSET (fld
), 1))
1140 if (DECL_CHAIN (fld
))
1146 /* If RHS is an SSA_NAME and it is defined by a simple copy assign statement,
1147 return the rhs of its defining statement. Otherwise return RHS as it
1151 get_ssa_def_if_simple_copy (tree rhs
)
1153 while (TREE_CODE (rhs
) == SSA_NAME
&& !SSA_NAME_IS_DEFAULT_DEF (rhs
))
1155 gimple def_stmt
= SSA_NAME_DEF_STMT (rhs
);
1157 if (gimple_assign_single_p (def_stmt
))
1158 rhs
= gimple_assign_rhs1 (def_stmt
);
1165 /* Simple linked list, describing known contents of an aggregate beforere
1168 struct ipa_known_agg_contents_list
1170 /* Offset and size of the described part of the aggregate. */
1171 HOST_WIDE_INT offset
, size
;
1172 /* Known constant value or NULL if the contents is known to be unknown. */
1174 /* Pointer to the next structure in the list. */
1175 struct ipa_known_agg_contents_list
*next
;
1178 /* Traverse statements from CALL backwards, scanning whether an aggregate given
1179 in ARG is filled in with constant values. ARG can either be an aggregate
1180 expression or a pointer to an aggregate. JFUNC is the jump function into
1181 which the constants are subsequently stored. */
1184 determine_known_aggregate_parts (gimple call
, tree arg
,
1185 struct ipa_jump_func
*jfunc
)
1187 struct ipa_known_agg_contents_list
*list
= NULL
;
1188 int item_count
= 0, const_count
= 0;
1189 HOST_WIDE_INT arg_offset
, arg_size
;
1190 gimple_stmt_iterator gsi
;
1192 bool check_ref
, by_ref
;
1195 /* The function operates in three stages. First, we prepare check_ref, r,
1196 arg_base and arg_offset based on what is actually passed as an actual
1199 if (POINTER_TYPE_P (TREE_TYPE (arg
)))
1202 if (TREE_CODE (arg
) == SSA_NAME
)
1205 if (!host_integerp (TYPE_SIZE (TREE_TYPE (TREE_TYPE (arg
))), 1))
1210 type_size
= TYPE_SIZE (TREE_TYPE (TREE_TYPE (arg
)));
1211 arg_size
= tree_low_cst (type_size
, 1);
1212 ao_ref_init_from_ptr_and_size (&r
, arg_base
, NULL_TREE
);
1214 else if (TREE_CODE (arg
) == ADDR_EXPR
)
1216 HOST_WIDE_INT arg_max_size
;
1218 arg
= TREE_OPERAND (arg
, 0);
1219 arg_base
= get_ref_base_and_extent (arg
, &arg_offset
, &arg_size
,
1221 if (arg_max_size
== -1
1222 || arg_max_size
!= arg_size
1225 if (DECL_P (arg_base
))
1229 size
= build_int_cst (integer_type_node
, arg_size
);
1230 ao_ref_init_from_ptr_and_size (&r
, arg_base
, size
);
1240 HOST_WIDE_INT arg_max_size
;
1242 gcc_checking_assert (AGGREGATE_TYPE_P (TREE_TYPE (arg
)));
1246 arg_base
= get_ref_base_and_extent (arg
, &arg_offset
, &arg_size
,
1248 if (arg_max_size
== -1
1249 || arg_max_size
!= arg_size
1253 ao_ref_init (&r
, arg
);
1256 /* Second stage walks back the BB, looks at individual statements and as long
1257 as it is confident of how the statements affect contents of the
1258 aggregates, it builds a sorted linked list of ipa_agg_jf_list structures
1260 gsi
= gsi_for_stmt (call
);
1262 for (; !gsi_end_p (gsi
); gsi_prev (&gsi
))
1264 struct ipa_known_agg_contents_list
*n
, **p
;
1265 gimple stmt
= gsi_stmt (gsi
);
1266 HOST_WIDE_INT lhs_offset
, lhs_size
, lhs_max_size
;
1267 tree lhs
, rhs
, lhs_base
;
1268 bool partial_overlap
;
1270 if (!stmt_may_clobber_ref_p_1 (stmt
, &r
))
1272 if (!gimple_assign_single_p (stmt
))
1275 lhs
= gimple_assign_lhs (stmt
);
1276 rhs
= gimple_assign_rhs1 (stmt
);
1277 if (!is_gimple_reg_type (rhs
))
1280 lhs_base
= get_ref_base_and_extent (lhs
, &lhs_offset
, &lhs_size
,
1282 if (lhs_max_size
== -1
1283 || lhs_max_size
!= lhs_size
1284 || (lhs_offset
< arg_offset
1285 && lhs_offset
+ lhs_size
> arg_offset
)
1286 || (lhs_offset
< arg_offset
+ arg_size
1287 && lhs_offset
+ lhs_size
> arg_offset
+ arg_size
))
1292 if (TREE_CODE (lhs_base
) != MEM_REF
1293 || TREE_OPERAND (lhs_base
, 0) != arg_base
1294 || !integer_zerop (TREE_OPERAND (lhs_base
, 1)))
1297 else if (lhs_base
!= arg_base
)
1300 if (lhs_offset
+ lhs_size
< arg_offset
1301 || lhs_offset
>= (arg_offset
+ arg_size
))
1304 partial_overlap
= false;
1306 while (*p
&& (*p
)->offset
< lhs_offset
)
1308 if ((*p
)->offset
+ (*p
)->size
> lhs_offset
)
1310 partial_overlap
= true;
1315 if (partial_overlap
)
1317 if (*p
&& (*p
)->offset
< lhs_offset
+ lhs_size
)
1319 if ((*p
)->offset
== lhs_offset
&& (*p
)->size
== lhs_size
)
1320 /* We already know this value is subsequently overwritten with
1324 /* Otherwise this is a partial overlap which we cannot
1329 rhs
= get_ssa_def_if_simple_copy (rhs
);
1330 n
= XALLOCA (struct ipa_known_agg_contents_list
);
1332 n
->offset
= lhs_offset
;
1333 if (is_gimple_ip_invariant (rhs
))
1339 n
->constant
= NULL_TREE
;
1344 if (const_count
== PARAM_VALUE (PARAM_IPA_MAX_AGG_ITEMS
)
1345 || item_count
== 2 * PARAM_VALUE (PARAM_IPA_MAX_AGG_ITEMS
))
1349 /* Third stage just goes over the list and creates an appropriate vector of
1350 ipa_agg_jf_item structures out of it, of sourse only if there are
1351 any known constants to begin with. */
1355 jfunc
->agg
.by_ref
= by_ref
;
1356 jfunc
->agg
.items
= VEC_alloc (ipa_agg_jf_item_t
, gc
, const_count
);
1361 struct ipa_agg_jf_item item
;
1362 item
.offset
= list
->offset
- arg_offset
;
1363 item
.value
= prune_expression_for_jf (list
->constant
);
1364 VEC_quick_push (ipa_agg_jf_item_t
, jfunc
->agg
.items
, item
);
1371 /* Compute jump function for all arguments of callsite CS and insert the
1372 information in the jump_functions array in the ipa_edge_args corresponding
1373 to this callsite. */
1376 ipa_compute_jump_functions_for_edge (struct param_analysis_info
*parms_ainfo
,
1377 struct cgraph_edge
*cs
)
1379 struct ipa_node_params
*info
= IPA_NODE_REF (cs
->caller
);
1380 struct ipa_edge_args
*args
= IPA_EDGE_REF (cs
);
1381 gimple call
= cs
->call_stmt
;
1382 int n
, arg_num
= gimple_call_num_args (call
);
1384 if (arg_num
== 0 || args
->jump_functions
)
1386 VEC_safe_grow_cleared (ipa_jump_func_t
, gc
, args
->jump_functions
, arg_num
);
1388 for (n
= 0; n
< arg_num
; n
++)
1390 struct ipa_jump_func
*jfunc
= ipa_get_ith_jump_func (args
, n
);
1391 tree arg
= gimple_call_arg (call
, n
);
1393 if (is_gimple_ip_invariant (arg
))
1394 ipa_set_jf_constant (jfunc
, arg
);
1395 else if (!is_gimple_reg_type (TREE_TYPE (arg
))
1396 && TREE_CODE (arg
) == PARM_DECL
)
1398 int index
= ipa_get_param_decl_index (info
, arg
);
1400 gcc_assert (index
>=0);
1401 /* Aggregate passed by value, check for pass-through, otherwise we
1402 will attempt to fill in aggregate contents later in this
1404 if (parm_preserved_before_stmt_p (&parms_ainfo
[index
], call
, arg
))
1406 ipa_set_jf_simple_pass_through (jfunc
, index
, false);
1410 else if (TREE_CODE (arg
) == SSA_NAME
)
1412 if (SSA_NAME_IS_DEFAULT_DEF (arg
))
1414 int index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (arg
));
1416 && !detect_type_change_ssa (arg
, call
, jfunc
))
1419 agg_p
= parm_ref_data_pass_through_p (&parms_ainfo
[index
],
1421 ipa_set_jf_simple_pass_through (jfunc
, index
, agg_p
);
1426 gimple stmt
= SSA_NAME_DEF_STMT (arg
);
1427 if (is_gimple_assign (stmt
))
1428 compute_complex_assign_jump_func (info
, parms_ainfo
, jfunc
,
1430 else if (gimple_code (stmt
) == GIMPLE_PHI
)
1431 compute_complex_ancestor_jump_func (info
, parms_ainfo
, jfunc
,
1436 compute_known_type_jump_func (arg
, jfunc
, call
);
1438 if ((jfunc
->type
!= IPA_JF_PASS_THROUGH
1439 || !ipa_get_jf_pass_through_agg_preserved (jfunc
))
1440 && (jfunc
->type
!= IPA_JF_ANCESTOR
1441 || !ipa_get_jf_ancestor_agg_preserved (jfunc
))
1442 && (AGGREGATE_TYPE_P (TREE_TYPE (arg
))
1443 || (POINTER_TYPE_P (TREE_TYPE (arg
)))))
1444 determine_known_aggregate_parts (call
, arg
, jfunc
);
1448 /* Compute jump functions for all edges - both direct and indirect - outgoing
1449 from NODE. Also count the actual arguments in the process. */
1452 ipa_compute_jump_functions (struct cgraph_node
*node
,
1453 struct param_analysis_info
*parms_ainfo
)
1455 struct cgraph_edge
*cs
;
1457 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
1459 struct cgraph_node
*callee
= cgraph_function_or_thunk_node (cs
->callee
,
1461 /* We do not need to bother analyzing calls to unknown
1462 functions unless they may become known during lto/whopr. */
1463 if (!callee
->analyzed
&& !flag_lto
)
1465 ipa_compute_jump_functions_for_edge (parms_ainfo
, cs
);
1468 for (cs
= node
->indirect_calls
; cs
; cs
= cs
->next_callee
)
1469 ipa_compute_jump_functions_for_edge (parms_ainfo
, cs
);
1472 /* If STMT looks like a statement loading a value from a member pointer formal
1473 parameter, return that parameter and store the offset of the field to
1474 *OFFSET_P, if it is non-NULL. Otherwise return NULL (but *OFFSET_P still
1475 might be clobbered). If USE_DELTA, then we look for a use of the delta
1476 field rather than the pfn. */
1479 ipa_get_stmt_member_ptr_load_param (gimple stmt
, bool use_delta
,
1480 HOST_WIDE_INT
*offset_p
)
1482 tree rhs
, rec
, ref_field
, ref_offset
, fld
, ptr_field
, delta_field
;
1484 if (!gimple_assign_single_p (stmt
))
1487 rhs
= gimple_assign_rhs1 (stmt
);
1488 if (TREE_CODE (rhs
) == COMPONENT_REF
)
1490 ref_field
= TREE_OPERAND (rhs
, 1);
1491 rhs
= TREE_OPERAND (rhs
, 0);
1494 ref_field
= NULL_TREE
;
1495 if (TREE_CODE (rhs
) != MEM_REF
)
1497 rec
= TREE_OPERAND (rhs
, 0);
1498 if (TREE_CODE (rec
) != ADDR_EXPR
)
1500 rec
= TREE_OPERAND (rec
, 0);
1501 if (TREE_CODE (rec
) != PARM_DECL
1502 || !type_like_member_ptr_p (TREE_TYPE (rec
), &ptr_field
, &delta_field
))
1504 ref_offset
= TREE_OPERAND (rhs
, 1);
1511 *offset_p
= int_bit_position (fld
);
1515 if (integer_nonzerop (ref_offset
))
1517 return ref_field
== fld
? rec
: NULL_TREE
;
1520 return tree_int_cst_equal (byte_position (fld
), ref_offset
) ? rec
1524 /* Returns true iff T is an SSA_NAME defined by a statement. */
1527 ipa_is_ssa_with_stmt_def (tree t
)
1529 if (TREE_CODE (t
) == SSA_NAME
1530 && !SSA_NAME_IS_DEFAULT_DEF (t
))
1536 /* Find the indirect call graph edge corresponding to STMT and mark it as a
1537 call to a parameter number PARAM_INDEX. NODE is the caller. Return the
1538 indirect call graph edge. */
1540 static struct cgraph_edge
*
1541 ipa_note_param_call (struct cgraph_node
*node
, int param_index
, gimple stmt
)
1543 struct cgraph_edge
*cs
;
1545 cs
= cgraph_edge (node
, stmt
);
1546 cs
->indirect_info
->param_index
= param_index
;
1547 cs
->indirect_info
->offset
= 0;
1548 cs
->indirect_info
->polymorphic
= 0;
1549 cs
->indirect_info
->agg_contents
= 0;
1553 /* Analyze the CALL and examine uses of formal parameters of the caller NODE
1554 (described by INFO). PARMS_AINFO is a pointer to a vector containing
1555 intermediate information about each formal parameter. Currently it checks
1556 whether the call calls a pointer that is a formal parameter and if so, the
1557 parameter is marked with the called flag and an indirect call graph edge
1558 describing the call is created. This is very simple for ordinary pointers
1559 represented in SSA but not-so-nice when it comes to member pointers. The
1560 ugly part of this function does nothing more than trying to match the
1561 pattern of such a call. An example of such a pattern is the gimple dump
1562 below, the call is on the last line:
1565 f$__delta_5 = f.__delta;
1566 f$__pfn_24 = f.__pfn;
1570 f$__delta_5 = MEM[(struct *)&f];
1571 f$__pfn_24 = MEM[(struct *)&f + 4B];
1573 and a few lines below:
1576 D.2496_3 = (int) f$__pfn_24;
1577 D.2497_4 = D.2496_3 & 1;
1584 D.2500_7 = (unsigned int) f$__delta_5;
1585 D.2501_8 = &S + D.2500_7;
1586 D.2502_9 = (int (*__vtbl_ptr_type) (void) * *) D.2501_8;
1587 D.2503_10 = *D.2502_9;
1588 D.2504_12 = f$__pfn_24 + -1;
1589 D.2505_13 = (unsigned int) D.2504_12;
1590 D.2506_14 = D.2503_10 + D.2505_13;
1591 D.2507_15 = *D.2506_14;
1592 iftmp.11_16 = (String:: *) D.2507_15;
1595 # iftmp.11_1 = PHI <iftmp.11_16(3), f$__pfn_24(2)>
1596 D.2500_19 = (unsigned int) f$__delta_5;
1597 D.2508_20 = &S + D.2500_19;
1598 D.2493_21 = iftmp.11_1 (D.2508_20, 4);
1600 Such patterns are results of simple calls to a member pointer:
1602 int doprinting (int (MyString::* f)(int) const)
1604 MyString S ("somestring");
1609 Moreover, the function also looks for called pointers loaded from aggregates
1610 passed by value or reference. */
1613 ipa_analyze_indirect_call_uses (struct cgraph_node
*node
,
1614 struct ipa_node_params
*info
,
1615 struct param_analysis_info
*parms_ainfo
,
1616 gimple call
, tree target
)
1621 tree rec
, rec2
, cond
;
1624 basic_block bb
, virt_bb
, join
;
1625 HOST_WIDE_INT offset
;
1628 if (SSA_NAME_IS_DEFAULT_DEF (target
))
1630 tree var
= SSA_NAME_VAR (target
);
1631 index
= ipa_get_param_decl_index (info
, var
);
1633 ipa_note_param_call (node
, index
, call
);
1637 def
= SSA_NAME_DEF_STMT (target
);
1638 if (gimple_assign_single_p (def
)
1639 && ipa_load_from_parm_agg_1 (info
, parms_ainfo
, def
,
1640 gimple_assign_rhs1 (def
), &index
, &offset
,
1643 struct cgraph_edge
*cs
= ipa_note_param_call (node
, index
, call
);
1644 cs
->indirect_info
->offset
= offset
;
1645 cs
->indirect_info
->agg_contents
= 1;
1646 cs
->indirect_info
->by_ref
= by_ref
;
1650 /* Now we need to try to match the complex pattern of calling a member
1652 if (gimple_code (def
) != GIMPLE_PHI
1653 || gimple_phi_num_args (def
) != 2
1654 || !POINTER_TYPE_P (TREE_TYPE (target
))
1655 || TREE_CODE (TREE_TYPE (TREE_TYPE (target
))) != METHOD_TYPE
)
1658 /* First, we need to check whether one of these is a load from a member
1659 pointer that is a parameter to this function. */
1660 n1
= PHI_ARG_DEF (def
, 0);
1661 n2
= PHI_ARG_DEF (def
, 1);
1662 if (!ipa_is_ssa_with_stmt_def (n1
) || !ipa_is_ssa_with_stmt_def (n2
))
1664 d1
= SSA_NAME_DEF_STMT (n1
);
1665 d2
= SSA_NAME_DEF_STMT (n2
);
1667 join
= gimple_bb (def
);
1668 if ((rec
= ipa_get_stmt_member_ptr_load_param (d1
, false, &offset
)))
1670 if (ipa_get_stmt_member_ptr_load_param (d2
, false, NULL
))
1673 bb
= EDGE_PRED (join
, 0)->src
;
1674 virt_bb
= gimple_bb (d2
);
1676 else if ((rec
= ipa_get_stmt_member_ptr_load_param (d2
, false, &offset
)))
1678 bb
= EDGE_PRED (join
, 1)->src
;
1679 virt_bb
= gimple_bb (d1
);
1684 /* Second, we need to check that the basic blocks are laid out in the way
1685 corresponding to the pattern. */
1687 if (!single_pred_p (virt_bb
) || !single_succ_p (virt_bb
)
1688 || single_pred (virt_bb
) != bb
1689 || single_succ (virt_bb
) != join
)
1692 /* Third, let's see that the branching is done depending on the least
1693 significant bit of the pfn. */
1695 branch
= last_stmt (bb
);
1696 if (!branch
|| gimple_code (branch
) != GIMPLE_COND
)
1699 if ((gimple_cond_code (branch
) != NE_EXPR
1700 && gimple_cond_code (branch
) != EQ_EXPR
)
1701 || !integer_zerop (gimple_cond_rhs (branch
)))
1704 cond
= gimple_cond_lhs (branch
);
1705 if (!ipa_is_ssa_with_stmt_def (cond
))
1708 def
= SSA_NAME_DEF_STMT (cond
);
1709 if (!is_gimple_assign (def
)
1710 || gimple_assign_rhs_code (def
) != BIT_AND_EXPR
1711 || !integer_onep (gimple_assign_rhs2 (def
)))
1714 cond
= gimple_assign_rhs1 (def
);
1715 if (!ipa_is_ssa_with_stmt_def (cond
))
1718 def
= SSA_NAME_DEF_STMT (cond
);
1720 if (is_gimple_assign (def
)
1721 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def
)))
1723 cond
= gimple_assign_rhs1 (def
);
1724 if (!ipa_is_ssa_with_stmt_def (cond
))
1726 def
= SSA_NAME_DEF_STMT (cond
);
1729 rec2
= ipa_get_stmt_member_ptr_load_param (def
,
1730 (TARGET_PTRMEMFUNC_VBIT_LOCATION
1731 == ptrmemfunc_vbit_in_delta
),
1736 index
= ipa_get_param_decl_index (info
, rec
);
1738 && parm_preserved_before_stmt_p (&parms_ainfo
[index
], call
, rec
))
1740 struct cgraph_edge
*cs
= ipa_note_param_call (node
, index
, call
);
1741 cs
->indirect_info
->offset
= offset
;
1742 cs
->indirect_info
->agg_contents
= 1;
1748 /* Analyze a CALL to an OBJ_TYPE_REF which is passed in TARGET and if the
1749 object referenced in the expression is a formal parameter of the caller
1750 (described by INFO), create a call note for the statement. */
1753 ipa_analyze_virtual_call_uses (struct cgraph_node
*node
,
1754 struct ipa_node_params
*info
, gimple call
,
1757 struct cgraph_edge
*cs
;
1758 struct cgraph_indirect_call_info
*ii
;
1759 struct ipa_jump_func jfunc
;
1760 tree obj
= OBJ_TYPE_REF_OBJECT (target
);
1762 HOST_WIDE_INT anc_offset
;
1764 if (!flag_devirtualize
)
1767 if (TREE_CODE (obj
) != SSA_NAME
)
1770 if (SSA_NAME_IS_DEFAULT_DEF (obj
))
1772 if (TREE_CODE (SSA_NAME_VAR (obj
)) != PARM_DECL
)
1776 index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (obj
));
1777 gcc_assert (index
>= 0);
1778 if (detect_type_change_ssa (obj
, call
, &jfunc
))
1783 gimple stmt
= SSA_NAME_DEF_STMT (obj
);
1786 expr
= get_ancestor_addr_info (stmt
, &obj
, &anc_offset
);
1789 index
= ipa_get_param_decl_index (info
,
1790 SSA_NAME_VAR (TREE_OPERAND (expr
, 0)));
1791 gcc_assert (index
>= 0);
1792 if (detect_type_change (obj
, expr
, call
, &jfunc
, anc_offset
))
1796 cs
= ipa_note_param_call (node
, index
, call
);
1797 ii
= cs
->indirect_info
;
1798 ii
->offset
= anc_offset
;
1799 ii
->otr_token
= tree_low_cst (OBJ_TYPE_REF_TOKEN (target
), 1);
1800 ii
->otr_type
= TREE_TYPE (TREE_TYPE (OBJ_TYPE_REF_OBJECT (target
)));
1801 ii
->polymorphic
= 1;
1804 /* Analyze a call statement CALL whether and how it utilizes formal parameters
1805 of the caller (described by INFO). PARMS_AINFO is a pointer to a vector
1806 containing intermediate information about each formal parameter. */
1809 ipa_analyze_call_uses (struct cgraph_node
*node
,
1810 struct ipa_node_params
*info
,
1811 struct param_analysis_info
*parms_ainfo
, gimple call
)
1813 tree target
= gimple_call_fn (call
);
1817 if (TREE_CODE (target
) == SSA_NAME
)
1818 ipa_analyze_indirect_call_uses (node
, info
, parms_ainfo
, call
, target
);
1819 else if (TREE_CODE (target
) == OBJ_TYPE_REF
)
1820 ipa_analyze_virtual_call_uses (node
, info
, call
, target
);
1824 /* Analyze the call statement STMT with respect to formal parameters (described
1825 in INFO) of caller given by NODE. Currently it only checks whether formal
1826 parameters are called. PARMS_AINFO is a pointer to a vector containing
1827 intermediate information about each formal parameter. */
1830 ipa_analyze_stmt_uses (struct cgraph_node
*node
, struct ipa_node_params
*info
,
1831 struct param_analysis_info
*parms_ainfo
, gimple stmt
)
1833 if (is_gimple_call (stmt
))
1834 ipa_analyze_call_uses (node
, info
, parms_ainfo
, stmt
);
1837 /* Callback of walk_stmt_load_store_addr_ops for the visit_load.
1838 If OP is a parameter declaration, mark it as used in the info structure
1842 visit_ref_for_mod_analysis (gimple stmt ATTRIBUTE_UNUSED
,
1843 tree op
, void *data
)
1845 struct ipa_node_params
*info
= (struct ipa_node_params
*) data
;
1847 op
= get_base_address (op
);
1849 && TREE_CODE (op
) == PARM_DECL
)
1851 int index
= ipa_get_param_decl_index (info
, op
);
1852 gcc_assert (index
>= 0);
1853 ipa_set_param_used (info
, index
, true);
1859 /* Scan the function body of NODE and inspect the uses of formal parameters.
1860 Store the findings in various structures of the associated ipa_node_params
1861 structure, such as parameter flags, notes etc. PARMS_AINFO is a pointer to a
1862 vector containing intermediate information about each formal parameter. */
1865 ipa_analyze_params_uses (struct cgraph_node
*node
,
1866 struct param_analysis_info
*parms_ainfo
)
1868 tree decl
= node
->symbol
.decl
;
1870 struct function
*func
;
1871 gimple_stmt_iterator gsi
;
1872 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
1875 if (ipa_get_param_count (info
) == 0 || info
->uses_analysis_done
)
1878 for (i
= 0; i
< ipa_get_param_count (info
); i
++)
1880 tree parm
= ipa_get_param (info
, i
);
1882 /* For SSA regs see if parameter is used. For non-SSA we compute
1883 the flag during modification analysis. */
1884 if (is_gimple_reg (parm
)
1885 && (ddef
= ssa_default_def (DECL_STRUCT_FUNCTION (node
->symbol
.decl
),
1887 && !has_zero_uses (ddef
))
1888 ipa_set_param_used (info
, i
, true);
1891 func
= DECL_STRUCT_FUNCTION (decl
);
1892 FOR_EACH_BB_FN (bb
, func
)
1894 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1896 gimple stmt
= gsi_stmt (gsi
);
1898 if (is_gimple_debug (stmt
))
1901 ipa_analyze_stmt_uses (node
, info
, parms_ainfo
, stmt
);
1902 walk_stmt_load_store_addr_ops (stmt
, info
,
1903 visit_ref_for_mod_analysis
,
1904 visit_ref_for_mod_analysis
,
1905 visit_ref_for_mod_analysis
);
1907 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1908 walk_stmt_load_store_addr_ops (gsi_stmt (gsi
), info
,
1909 visit_ref_for_mod_analysis
,
1910 visit_ref_for_mod_analysis
,
1911 visit_ref_for_mod_analysis
);
1914 info
->uses_analysis_done
= 1;
1917 /* Initialize the array describing properties of of formal parameters
1918 of NODE, analyze their uses and compute jump functions associated
1919 with actual arguments of calls from within NODE. */
1922 ipa_analyze_node (struct cgraph_node
*node
)
1924 struct ipa_node_params
*info
;
1925 struct param_analysis_info
*parms_ainfo
;
1928 ipa_check_create_node_params ();
1929 ipa_check_create_edge_args ();
1930 info
= IPA_NODE_REF (node
);
1931 push_cfun (DECL_STRUCT_FUNCTION (node
->symbol
.decl
));
1932 ipa_initialize_node_params (node
);
1934 param_count
= ipa_get_param_count (info
);
1935 parms_ainfo
= XALLOCAVEC (struct param_analysis_info
, param_count
);
1936 memset (parms_ainfo
, 0, sizeof (struct param_analysis_info
) * param_count
);
1938 ipa_analyze_params_uses (node
, parms_ainfo
);
1939 ipa_compute_jump_functions (node
, parms_ainfo
);
1941 for (i
= 0; i
< param_count
; i
++)
1943 if (parms_ainfo
[i
].parm_visited_statements
)
1944 BITMAP_FREE (parms_ainfo
[i
].parm_visited_statements
);
1945 if (parms_ainfo
[i
].pt_visited_statements
)
1946 BITMAP_FREE (parms_ainfo
[i
].pt_visited_statements
);
1953 /* Update the jump function DST when the call graph edge corresponding to SRC is
1954 is being inlined, knowing that DST is of type ancestor and src of known
1958 combine_known_type_and_ancestor_jfs (struct ipa_jump_func
*src
,
1959 struct ipa_jump_func
*dst
)
1961 HOST_WIDE_INT combined_offset
;
1964 combined_offset
= ipa_get_jf_known_type_offset (src
)
1965 + ipa_get_jf_ancestor_offset (dst
);
1966 combined_type
= ipa_get_jf_ancestor_type (dst
);
1968 ipa_set_jf_known_type (dst
, combined_offset
,
1969 ipa_get_jf_known_type_base_type (src
),
1973 /* Update the jump functions associated with call graph edge E when the call
1974 graph edge CS is being inlined, assuming that E->caller is already (possibly
1975 indirectly) inlined into CS->callee and that E has not been inlined. */
1978 update_jump_functions_after_inlining (struct cgraph_edge
*cs
,
1979 struct cgraph_edge
*e
)
1981 struct ipa_edge_args
*top
= IPA_EDGE_REF (cs
);
1982 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
1983 int count
= ipa_get_cs_argument_count (args
);
1986 for (i
= 0; i
< count
; i
++)
1988 struct ipa_jump_func
*dst
= ipa_get_ith_jump_func (args
, i
);
1990 if (dst
->type
== IPA_JF_ANCESTOR
)
1992 struct ipa_jump_func
*src
;
1993 int dst_fid
= dst
->value
.ancestor
.formal_id
;
1995 /* Variable number of arguments can cause havoc if we try to access
1996 one that does not exist in the inlined edge. So make sure we
1998 if (dst_fid
>= ipa_get_cs_argument_count (top
))
2000 dst
->type
= IPA_JF_UNKNOWN
;
2004 src
= ipa_get_ith_jump_func (top
, dst_fid
);
2007 && (dst
->value
.ancestor
.agg_preserved
|| !src
->agg
.by_ref
))
2009 struct ipa_agg_jf_item
*item
;
2012 /* Currently we do not produce clobber aggregate jump functions,
2013 replace with merging when we do. */
2014 gcc_assert (!dst
->agg
.items
);
2016 dst
->agg
.items
= VEC_copy (ipa_agg_jf_item_t
, gc
, src
->agg
.items
);
2017 dst
->agg
.by_ref
= src
->agg
.by_ref
;
2018 FOR_EACH_VEC_ELT (ipa_agg_jf_item_t
, dst
->agg
.items
, j
, item
)
2019 item
->offset
-= dst
->value
.ancestor
.offset
;
2022 if (src
->type
== IPA_JF_KNOWN_TYPE
)
2023 combine_known_type_and_ancestor_jfs (src
, dst
);
2024 else if (src
->type
== IPA_JF_PASS_THROUGH
2025 && src
->value
.pass_through
.operation
== NOP_EXPR
)
2027 dst
->value
.ancestor
.formal_id
= src
->value
.pass_through
.formal_id
;
2028 dst
->value
.ancestor
.agg_preserved
&=
2029 src
->value
.pass_through
.agg_preserved
;
2031 else if (src
->type
== IPA_JF_ANCESTOR
)
2033 dst
->value
.ancestor
.formal_id
= src
->value
.ancestor
.formal_id
;
2034 dst
->value
.ancestor
.offset
+= src
->value
.ancestor
.offset
;
2035 dst
->value
.ancestor
.agg_preserved
&=
2036 src
->value
.ancestor
.agg_preserved
;
2039 dst
->type
= IPA_JF_UNKNOWN
;
2041 else if (dst
->type
== IPA_JF_PASS_THROUGH
)
2043 struct ipa_jump_func
*src
;
2044 /* We must check range due to calls with variable number of arguments
2045 and we cannot combine jump functions with operations. */
2046 if (dst
->value
.pass_through
.operation
== NOP_EXPR
2047 && (dst
->value
.pass_through
.formal_id
2048 < ipa_get_cs_argument_count (top
)))
2051 int dst_fid
= dst
->value
.pass_through
.formal_id
;
2052 src
= ipa_get_ith_jump_func (top
, dst_fid
);
2053 agg_p
= dst
->value
.pass_through
.agg_preserved
;
2055 dst
->type
= src
->type
;
2056 dst
->value
= src
->value
;
2059 && (agg_p
|| !src
->agg
.by_ref
))
2061 /* Currently we do not produce clobber aggregate jump
2062 functions, replace with merging when we do. */
2063 gcc_assert (!dst
->agg
.items
);
2065 dst
->agg
.by_ref
= src
->agg
.by_ref
;
2066 dst
->agg
.items
= VEC_copy (ipa_agg_jf_item_t
, gc
,
2072 if (dst
->type
== IPA_JF_PASS_THROUGH
)
2073 dst
->value
.pass_through
.agg_preserved
= false;
2074 else if (dst
->type
== IPA_JF_ANCESTOR
)
2075 dst
->value
.ancestor
.agg_preserved
= false;
2079 dst
->type
= IPA_JF_UNKNOWN
;
2084 /* If TARGET is an addr_expr of a function declaration, make it the destination
2085 of an indirect edge IE and return the edge. Otherwise, return NULL. */
2087 struct cgraph_edge
*
2088 ipa_make_edge_direct_to_target (struct cgraph_edge
*ie
, tree target
)
2090 struct cgraph_node
*callee
;
2092 if (TREE_CODE (target
) == ADDR_EXPR
)
2093 target
= TREE_OPERAND (target
, 0);
2094 if (TREE_CODE (target
) != FUNCTION_DECL
)
2096 callee
= cgraph_get_node (target
);
2099 ipa_check_create_node_params ();
2101 /* We can not make edges to inline clones. It is bug that someone removed
2102 the cgraph node too early. */
2103 gcc_assert (!callee
->global
.inlined_to
);
2105 cgraph_make_edge_direct (ie
, callee
);
2108 fprintf (dump_file
, "ipa-prop: Discovered %s call to a known target "
2109 "(%s/%i -> %s/%i), for stmt ",
2110 ie
->indirect_info
->polymorphic
? "a virtual" : "an indirect",
2111 xstrdup (cgraph_node_name (ie
->caller
)), ie
->caller
->uid
,
2112 xstrdup (cgraph_node_name (ie
->callee
)), ie
->callee
->uid
);
2114 print_gimple_stmt (dump_file
, ie
->call_stmt
, 2, TDF_SLIM
);
2116 fprintf (dump_file
, "with uid %i\n", ie
->lto_stmt_uid
);
2118 callee
= cgraph_function_or_thunk_node (callee
, NULL
);
2123 /* Retrieve value from aggregate jump function AGG for the given OFFSET or
2124 return NULL if there is not any. BY_REF specifies whether the value has to
2125 be passed by reference or by value. */
2128 ipa_find_agg_cst_for_param (struct ipa_agg_jump_function
*agg
,
2129 HOST_WIDE_INT offset
, bool by_ref
)
2131 struct ipa_agg_jf_item
*item
;
2134 if (by_ref
!= agg
->by_ref
)
2137 FOR_EACH_VEC_ELT (ipa_agg_jf_item_t
, agg
->items
, i
, item
)
2139 if (item
->offset
== offset
)
2141 /* Currently we do not have clobber values, return NULL for them once
2143 gcc_checking_assert (is_gimple_ip_invariant (item
->value
));
2146 else if (item
->offset
> offset
)
2152 /* Try to find a destination for indirect edge IE that corresponds to a simple
2153 call or a call of a member function pointer and where the destination is a
2154 pointer formal parameter described by jump function JFUNC. If it can be
2155 determined, return the newly direct edge, otherwise return NULL. */
2157 static struct cgraph_edge
*
2158 try_make_edge_direct_simple_call (struct cgraph_edge
*ie
,
2159 struct ipa_jump_func
*jfunc
)
2163 if (ie
->indirect_info
->agg_contents
)
2165 target
= ipa_find_agg_cst_for_param (&jfunc
->agg
,
2166 ie
->indirect_info
->offset
,
2167 ie
->indirect_info
->by_ref
);
2173 if (jfunc
->type
!= IPA_JF_CONST
)
2175 target
= ipa_get_jf_constant (jfunc
);
2177 return ipa_make_edge_direct_to_target (ie
, target
);
2180 /* Try to find a destination for indirect edge IE that corresponds to a
2181 virtual call based on a formal parameter which is described by jump
2182 function JFUNC and if it can be determined, make it direct and return the
2183 direct edge. Otherwise, return NULL. */
2185 static struct cgraph_edge
*
2186 try_make_edge_direct_virtual_call (struct cgraph_edge
*ie
,
2187 struct ipa_jump_func
*jfunc
)
2191 if (jfunc
->type
!= IPA_JF_KNOWN_TYPE
)
2194 binfo
= TYPE_BINFO (ipa_get_jf_known_type_base_type (jfunc
));
2195 gcc_checking_assert (binfo
);
2196 binfo
= get_binfo_at_offset (binfo
, ipa_get_jf_known_type_offset (jfunc
)
2197 + ie
->indirect_info
->offset
,
2198 ie
->indirect_info
->otr_type
);
2200 target
= gimple_get_virt_method_for_binfo (ie
->indirect_info
->otr_token
,
2206 return ipa_make_edge_direct_to_target (ie
, target
);
2211 /* Update the param called notes associated with NODE when CS is being inlined,
2212 assuming NODE is (potentially indirectly) inlined into CS->callee.
2213 Moreover, if the callee is discovered to be constant, create a new cgraph
2214 edge for it. Newly discovered indirect edges will be added to *NEW_EDGES,
2215 unless NEW_EDGES is NULL. Return true iff a new edge(s) were created. */
2218 update_indirect_edges_after_inlining (struct cgraph_edge
*cs
,
2219 struct cgraph_node
*node
,
2220 VEC (cgraph_edge_p
, heap
) **new_edges
)
2222 struct ipa_edge_args
*top
;
2223 struct cgraph_edge
*ie
, *next_ie
, *new_direct_edge
;
2226 ipa_check_create_edge_args ();
2227 top
= IPA_EDGE_REF (cs
);
2229 for (ie
= node
->indirect_calls
; ie
; ie
= next_ie
)
2231 struct cgraph_indirect_call_info
*ici
= ie
->indirect_info
;
2232 struct ipa_jump_func
*jfunc
;
2235 next_ie
= ie
->next_callee
;
2237 if (ici
->param_index
== -1)
2240 /* We must check range due to calls with variable number of arguments: */
2241 if (ici
->param_index
>= ipa_get_cs_argument_count (top
))
2243 ici
->param_index
= -1;
2247 param_index
= ici
->param_index
;
2248 jfunc
= ipa_get_ith_jump_func (top
, param_index
);
2249 if (jfunc
->type
== IPA_JF_PASS_THROUGH
2250 && ipa_get_jf_pass_through_operation (jfunc
) == NOP_EXPR
)
2252 if (ici
->agg_contents
2253 && !ipa_get_jf_pass_through_agg_preserved (jfunc
))
2254 ici
->param_index
= -1;
2256 ici
->param_index
= ipa_get_jf_pass_through_formal_id (jfunc
);
2258 else if (jfunc
->type
== IPA_JF_ANCESTOR
)
2260 if (ici
->agg_contents
2261 && !ipa_get_jf_ancestor_agg_preserved (jfunc
))
2262 ici
->param_index
= -1;
2265 ici
->param_index
= ipa_get_jf_ancestor_formal_id (jfunc
);
2266 ici
->offset
+= ipa_get_jf_ancestor_offset (jfunc
);
2270 /* Either we can find a destination for this edge now or never. */
2271 ici
->param_index
= -1;
2273 if (!flag_indirect_inlining
)
2276 if (ici
->polymorphic
)
2277 new_direct_edge
= try_make_edge_direct_virtual_call (ie
, jfunc
);
2279 new_direct_edge
= try_make_edge_direct_simple_call (ie
, jfunc
);
2281 if (new_direct_edge
)
2283 new_direct_edge
->indirect_inlining_edge
= 1;
2284 if (new_direct_edge
->call_stmt
)
2285 new_direct_edge
->call_stmt_cannot_inline_p
2286 = !gimple_check_call_matching_types (new_direct_edge
->call_stmt
,
2287 new_direct_edge
->callee
->symbol
.decl
);
2290 VEC_safe_push (cgraph_edge_p
, heap
, *new_edges
,
2292 top
= IPA_EDGE_REF (cs
);
2301 /* Recursively traverse subtree of NODE (including node) made of inlined
2302 cgraph_edges when CS has been inlined and invoke
2303 update_indirect_edges_after_inlining on all nodes and
2304 update_jump_functions_after_inlining on all non-inlined edges that lead out
2305 of this subtree. Newly discovered indirect edges will be added to
2306 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were
2310 propagate_info_to_inlined_callees (struct cgraph_edge
*cs
,
2311 struct cgraph_node
*node
,
2312 VEC (cgraph_edge_p
, heap
) **new_edges
)
2314 struct cgraph_edge
*e
;
2317 res
= update_indirect_edges_after_inlining (cs
, node
, new_edges
);
2319 for (e
= node
->callees
; e
; e
= e
->next_callee
)
2320 if (!e
->inline_failed
)
2321 res
|= propagate_info_to_inlined_callees (cs
, e
->callee
, new_edges
);
2323 update_jump_functions_after_inlining (cs
, e
);
2324 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
2325 update_jump_functions_after_inlining (cs
, e
);
2330 /* Update jump functions and call note functions on inlining the call site CS.
2331 CS is expected to lead to a node already cloned by
2332 cgraph_clone_inline_nodes. Newly discovered indirect edges will be added to
2333 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were +
2337 ipa_propagate_indirect_call_infos (struct cgraph_edge
*cs
,
2338 VEC (cgraph_edge_p
, heap
) **new_edges
)
2341 /* Do nothing if the preparation phase has not been carried out yet
2342 (i.e. during early inlining). */
2343 if (!ipa_node_params_vector
)
2345 gcc_assert (ipa_edge_args_vector
);
2347 changed
= propagate_info_to_inlined_callees (cs
, cs
->callee
, new_edges
);
2349 /* We do not keep jump functions of inlined edges up to date. Better to free
2350 them so we do not access them accidentally. */
2351 ipa_free_edge_args_substructures (IPA_EDGE_REF (cs
));
2355 /* Frees all dynamically allocated structures that the argument info points
2359 ipa_free_edge_args_substructures (struct ipa_edge_args
*args
)
2361 if (args
->jump_functions
)
2362 ggc_free (args
->jump_functions
);
2364 memset (args
, 0, sizeof (*args
));
2367 /* Free all ipa_edge structures. */
2370 ipa_free_all_edge_args (void)
2373 struct ipa_edge_args
*args
;
2375 FOR_EACH_VEC_ELT (ipa_edge_args_t
, ipa_edge_args_vector
, i
, args
)
2376 ipa_free_edge_args_substructures (args
);
2378 VEC_free (ipa_edge_args_t
, gc
, ipa_edge_args_vector
);
2379 ipa_edge_args_vector
= NULL
;
2382 /* Frees all dynamically allocated structures that the param info points
2386 ipa_free_node_params_substructures (struct ipa_node_params
*info
)
2388 VEC_free (ipa_param_descriptor_t
, heap
, info
->descriptors
);
2389 free (info
->lattices
);
2390 /* Lattice values and their sources are deallocated with their alocation
2392 VEC_free (tree
, heap
, info
->known_vals
);
2393 memset (info
, 0, sizeof (*info
));
2396 /* Free all ipa_node_params structures. */
2399 ipa_free_all_node_params (void)
2402 struct ipa_node_params
*info
;
2404 FOR_EACH_VEC_ELT (ipa_node_params_t
, ipa_node_params_vector
, i
, info
)
2405 ipa_free_node_params_substructures (info
);
2407 VEC_free (ipa_node_params_t
, heap
, ipa_node_params_vector
);
2408 ipa_node_params_vector
= NULL
;
2411 /* Hook that is called by cgraph.c when an edge is removed. */
2414 ipa_edge_removal_hook (struct cgraph_edge
*cs
, void *data ATTRIBUTE_UNUSED
)
2416 /* During IPA-CP updating we can be called on not-yet analyze clones. */
2417 if (VEC_length (ipa_edge_args_t
, ipa_edge_args_vector
)
2418 <= (unsigned)cs
->uid
)
2420 ipa_free_edge_args_substructures (IPA_EDGE_REF (cs
));
2423 /* Hook that is called by cgraph.c when a node is removed. */
2426 ipa_node_removal_hook (struct cgraph_node
*node
, void *data ATTRIBUTE_UNUSED
)
2428 /* During IPA-CP updating we can be called on not-yet analyze clones. */
2429 if (VEC_length (ipa_node_params_t
, ipa_node_params_vector
)
2430 <= (unsigned)node
->uid
)
2432 ipa_free_node_params_substructures (IPA_NODE_REF (node
));
2435 /* Hook that is called by cgraph.c when an edge is duplicated. */
2438 ipa_edge_duplication_hook (struct cgraph_edge
*src
, struct cgraph_edge
*dst
,
2439 __attribute__((unused
)) void *data
)
2441 struct ipa_edge_args
*old_args
, *new_args
;
2444 ipa_check_create_edge_args ();
2446 old_args
= IPA_EDGE_REF (src
);
2447 new_args
= IPA_EDGE_REF (dst
);
2449 new_args
->jump_functions
= VEC_copy (ipa_jump_func_t
, gc
,
2450 old_args
->jump_functions
);
2452 for (i
= 0; i
< VEC_length (ipa_jump_func_t
, old_args
->jump_functions
); i
++)
2453 VEC_index (ipa_jump_func_t
, new_args
->jump_functions
, i
).agg
.items
2454 = VEC_copy (ipa_agg_jf_item_t
, gc
,
2455 VEC_index (ipa_jump_func_t
,
2456 old_args
->jump_functions
, i
).agg
.items
);
2459 /* Hook that is called by cgraph.c when a node is duplicated. */
2462 ipa_node_duplication_hook (struct cgraph_node
*src
, struct cgraph_node
*dst
,
2463 ATTRIBUTE_UNUSED
void *data
)
2465 struct ipa_node_params
*old_info
, *new_info
;
2467 ipa_check_create_node_params ();
2468 old_info
= IPA_NODE_REF (src
);
2469 new_info
= IPA_NODE_REF (dst
);
2471 new_info
->descriptors
= VEC_copy (ipa_param_descriptor_t
, heap
,
2472 old_info
->descriptors
);
2473 new_info
->lattices
= NULL
;
2474 new_info
->ipcp_orig_node
= old_info
->ipcp_orig_node
;
2476 new_info
->uses_analysis_done
= old_info
->uses_analysis_done
;
2477 new_info
->node_enqueued
= old_info
->node_enqueued
;
2481 /* Analyze newly added function into callgraph. */
2484 ipa_add_new_function (struct cgraph_node
*node
, void *data ATTRIBUTE_UNUSED
)
2486 ipa_analyze_node (node
);
2489 /* Register our cgraph hooks if they are not already there. */
2492 ipa_register_cgraph_hooks (void)
2494 if (!edge_removal_hook_holder
)
2495 edge_removal_hook_holder
=
2496 cgraph_add_edge_removal_hook (&ipa_edge_removal_hook
, NULL
);
2497 if (!node_removal_hook_holder
)
2498 node_removal_hook_holder
=
2499 cgraph_add_node_removal_hook (&ipa_node_removal_hook
, NULL
);
2500 if (!edge_duplication_hook_holder
)
2501 edge_duplication_hook_holder
=
2502 cgraph_add_edge_duplication_hook (&ipa_edge_duplication_hook
, NULL
);
2503 if (!node_duplication_hook_holder
)
2504 node_duplication_hook_holder
=
2505 cgraph_add_node_duplication_hook (&ipa_node_duplication_hook
, NULL
);
2506 function_insertion_hook_holder
=
2507 cgraph_add_function_insertion_hook (&ipa_add_new_function
, NULL
);
2510 /* Unregister our cgraph hooks if they are not already there. */
2513 ipa_unregister_cgraph_hooks (void)
2515 cgraph_remove_edge_removal_hook (edge_removal_hook_holder
);
2516 edge_removal_hook_holder
= NULL
;
2517 cgraph_remove_node_removal_hook (node_removal_hook_holder
);
2518 node_removal_hook_holder
= NULL
;
2519 cgraph_remove_edge_duplication_hook (edge_duplication_hook_holder
);
2520 edge_duplication_hook_holder
= NULL
;
2521 cgraph_remove_node_duplication_hook (node_duplication_hook_holder
);
2522 node_duplication_hook_holder
= NULL
;
2523 cgraph_remove_function_insertion_hook (function_insertion_hook_holder
);
2524 function_insertion_hook_holder
= NULL
;
2527 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
2528 longer needed after ipa-cp. */
2531 ipa_free_all_structures_after_ipa_cp (void)
2535 ipa_free_all_edge_args ();
2536 ipa_free_all_node_params ();
2537 free_alloc_pool (ipcp_sources_pool
);
2538 free_alloc_pool (ipcp_values_pool
);
2539 ipa_unregister_cgraph_hooks ();
2543 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
2544 longer needed after indirect inlining. */
2547 ipa_free_all_structures_after_iinln (void)
2549 ipa_free_all_edge_args ();
2550 ipa_free_all_node_params ();
2551 ipa_unregister_cgraph_hooks ();
2552 if (ipcp_sources_pool
)
2553 free_alloc_pool (ipcp_sources_pool
);
2554 if (ipcp_values_pool
)
2555 free_alloc_pool (ipcp_values_pool
);
2558 /* Print ipa_tree_map data structures of all functions in the
2562 ipa_print_node_params (FILE * f
, struct cgraph_node
*node
)
2566 struct ipa_node_params
*info
;
2568 if (!node
->analyzed
)
2570 info
= IPA_NODE_REF (node
);
2571 fprintf (f
, " function %s parameter descriptors:\n",
2572 cgraph_node_name (node
));
2573 count
= ipa_get_param_count (info
);
2574 for (i
= 0; i
< count
; i
++)
2576 temp
= ipa_get_param (info
, i
);
2577 if (TREE_CODE (temp
) == PARM_DECL
)
2578 fprintf (f
, " param %d : %s", i
,
2580 ? (*lang_hooks
.decl_printable_name
) (temp
, 2)
2582 if (ipa_is_param_used (info
, i
))
2583 fprintf (f
, " used");
2588 /* Print ipa_tree_map data structures of all functions in the
2592 ipa_print_all_params (FILE * f
)
2594 struct cgraph_node
*node
;
2596 fprintf (f
, "\nFunction parameters:\n");
2597 FOR_EACH_FUNCTION (node
)
2598 ipa_print_node_params (f
, node
);
2601 /* Return a heap allocated vector containing formal parameters of FNDECL. */
2604 ipa_get_vector_of_formal_parms (tree fndecl
)
2606 VEC(tree
, heap
) *args
;
2610 count
= count_formal_params (fndecl
);
2611 args
= VEC_alloc (tree
, heap
, count
);
2612 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
2613 VEC_quick_push (tree
, args
, parm
);
2618 /* Return a heap allocated vector containing types of formal parameters of
2619 function type FNTYPE. */
2621 static inline VEC(tree
, heap
) *
2622 get_vector_of_formal_parm_types (tree fntype
)
2624 VEC(tree
, heap
) *types
;
2628 for (t
= TYPE_ARG_TYPES (fntype
); t
; t
= TREE_CHAIN (t
))
2631 types
= VEC_alloc (tree
, heap
, count
);
2632 for (t
= TYPE_ARG_TYPES (fntype
); t
; t
= TREE_CHAIN (t
))
2633 VEC_quick_push (tree
, types
, TREE_VALUE (t
));
2638 /* Modify the function declaration FNDECL and its type according to the plan in
2639 ADJUSTMENTS. It also sets base fields of individual adjustments structures
2640 to reflect the actual parameters being modified which are determined by the
2641 base_index field. */
2644 ipa_modify_formal_parameters (tree fndecl
, ipa_parm_adjustment_vec adjustments
,
2645 const char *synth_parm_prefix
)
2647 VEC(tree
, heap
) *oparms
, *otypes
;
2648 tree orig_type
, new_type
= NULL
;
2649 tree old_arg_types
, t
, new_arg_types
= NULL
;
2650 tree parm
, *link
= &DECL_ARGUMENTS (fndecl
);
2651 int i
, len
= VEC_length (ipa_parm_adjustment_t
, adjustments
);
2652 tree new_reversed
= NULL
;
2653 bool care_for_types
, last_parm_void
;
2655 if (!synth_parm_prefix
)
2656 synth_parm_prefix
= "SYNTH";
2658 oparms
= ipa_get_vector_of_formal_parms (fndecl
);
2659 orig_type
= TREE_TYPE (fndecl
);
2660 old_arg_types
= TYPE_ARG_TYPES (orig_type
);
2662 /* The following test is an ugly hack, some functions simply don't have any
2663 arguments in their type. This is probably a bug but well... */
2664 care_for_types
= (old_arg_types
!= NULL_TREE
);
2667 last_parm_void
= (TREE_VALUE (tree_last (old_arg_types
))
2669 otypes
= get_vector_of_formal_parm_types (orig_type
);
2671 gcc_assert (VEC_length (tree
, oparms
) + 1 == VEC_length (tree
, otypes
));
2673 gcc_assert (VEC_length (tree
, oparms
) == VEC_length (tree
, otypes
));
2677 last_parm_void
= false;
2681 for (i
= 0; i
< len
; i
++)
2683 struct ipa_parm_adjustment
*adj
;
2686 adj
= &VEC_index (ipa_parm_adjustment_t
, adjustments
, i
);
2687 parm
= VEC_index (tree
, oparms
, adj
->base_index
);
2690 if (adj
->copy_param
)
2693 new_arg_types
= tree_cons (NULL_TREE
, VEC_index (tree
, otypes
,
2697 link
= &DECL_CHAIN (parm
);
2699 else if (!adj
->remove_param
)
2705 ptype
= build_pointer_type (adj
->type
);
2710 new_arg_types
= tree_cons (NULL_TREE
, ptype
, new_arg_types
);
2712 new_parm
= build_decl (UNKNOWN_LOCATION
, PARM_DECL
, NULL_TREE
,
2714 DECL_NAME (new_parm
) = create_tmp_var_name (synth_parm_prefix
);
2716 DECL_ARTIFICIAL (new_parm
) = 1;
2717 DECL_ARG_TYPE (new_parm
) = ptype
;
2718 DECL_CONTEXT (new_parm
) = fndecl
;
2719 TREE_USED (new_parm
) = 1;
2720 DECL_IGNORED_P (new_parm
) = 1;
2721 layout_decl (new_parm
, 0);
2724 adj
->reduction
= new_parm
;
2728 link
= &DECL_CHAIN (new_parm
);
2736 new_reversed
= nreverse (new_arg_types
);
2740 TREE_CHAIN (new_arg_types
) = void_list_node
;
2742 new_reversed
= void_list_node
;
2746 /* Use copy_node to preserve as much as possible from original type
2747 (debug info, attribute lists etc.)
2748 Exception is METHOD_TYPEs must have THIS argument.
2749 When we are asked to remove it, we need to build new FUNCTION_TYPE
2751 if (TREE_CODE (orig_type
) != METHOD_TYPE
2752 || (VEC_index (ipa_parm_adjustment_t
, adjustments
, 0).copy_param
2753 && VEC_index (ipa_parm_adjustment_t
, adjustments
, 0).base_index
== 0))
2755 new_type
= build_distinct_type_copy (orig_type
);
2756 TYPE_ARG_TYPES (new_type
) = new_reversed
;
2761 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type
),
2763 TYPE_CONTEXT (new_type
) = TYPE_CONTEXT (orig_type
);
2764 DECL_VINDEX (fndecl
) = NULL_TREE
;
2767 /* When signature changes, we need to clear builtin info. */
2768 if (DECL_BUILT_IN (fndecl
))
2770 DECL_BUILT_IN_CLASS (fndecl
) = NOT_BUILT_IN
;
2771 DECL_FUNCTION_CODE (fndecl
) = (enum built_in_function
) 0;
2774 /* This is a new type, not a copy of an old type. Need to reassociate
2775 variants. We can handle everything except the main variant lazily. */
2776 t
= TYPE_MAIN_VARIANT (orig_type
);
2779 TYPE_MAIN_VARIANT (new_type
) = t
;
2780 TYPE_NEXT_VARIANT (new_type
) = TYPE_NEXT_VARIANT (t
);
2781 TYPE_NEXT_VARIANT (t
) = new_type
;
2785 TYPE_MAIN_VARIANT (new_type
) = new_type
;
2786 TYPE_NEXT_VARIANT (new_type
) = NULL
;
2789 TREE_TYPE (fndecl
) = new_type
;
2790 DECL_VIRTUAL_P (fndecl
) = 0;
2792 VEC_free (tree
, heap
, otypes
);
2793 VEC_free (tree
, heap
, oparms
);
2796 /* Modify actual arguments of a function call CS as indicated in ADJUSTMENTS.
2797 If this is a directly recursive call, CS must be NULL. Otherwise it must
2798 contain the corresponding call graph edge. */
2801 ipa_modify_call_arguments (struct cgraph_edge
*cs
, gimple stmt
,
2802 ipa_parm_adjustment_vec adjustments
)
2804 VEC(tree
, heap
) *vargs
;
2805 VEC(tree
, gc
) **debug_args
= NULL
;
2807 gimple_stmt_iterator gsi
;
2811 len
= VEC_length (ipa_parm_adjustment_t
, adjustments
);
2812 vargs
= VEC_alloc (tree
, heap
, len
);
2813 callee_decl
= !cs
? gimple_call_fndecl (stmt
) : cs
->callee
->symbol
.decl
;
2815 gsi
= gsi_for_stmt (stmt
);
2816 for (i
= 0; i
< len
; i
++)
2818 struct ipa_parm_adjustment
*adj
;
2820 adj
= &VEC_index (ipa_parm_adjustment_t
, adjustments
, i
);
2822 if (adj
->copy_param
)
2824 tree arg
= gimple_call_arg (stmt
, adj
->base_index
);
2826 VEC_quick_push (tree
, vargs
, arg
);
2828 else if (!adj
->remove_param
)
2830 tree expr
, base
, off
;
2833 /* We create a new parameter out of the value of the old one, we can
2834 do the following kind of transformations:
2836 - A scalar passed by reference is converted to a scalar passed by
2837 value. (adj->by_ref is false and the type of the original
2838 actual argument is a pointer to a scalar).
2840 - A part of an aggregate is passed instead of the whole aggregate.
2841 The part can be passed either by value or by reference, this is
2842 determined by value of adj->by_ref. Moreover, the code below
2843 handles both situations when the original aggregate is passed by
2844 value (its type is not a pointer) and when it is passed by
2845 reference (it is a pointer to an aggregate).
2847 When the new argument is passed by reference (adj->by_ref is true)
2848 it must be a part of an aggregate and therefore we form it by
2849 simply taking the address of a reference inside the original
2852 gcc_checking_assert (adj
->offset
% BITS_PER_UNIT
== 0);
2853 base
= gimple_call_arg (stmt
, adj
->base_index
);
2854 loc
= EXPR_LOCATION (base
);
2856 if (TREE_CODE (base
) != ADDR_EXPR
2857 && POINTER_TYPE_P (TREE_TYPE (base
)))
2858 off
= build_int_cst (adj
->alias_ptr_type
,
2859 adj
->offset
/ BITS_PER_UNIT
);
2862 HOST_WIDE_INT base_offset
;
2865 if (TREE_CODE (base
) == ADDR_EXPR
)
2866 base
= TREE_OPERAND (base
, 0);
2868 base
= get_addr_base_and_unit_offset (base
, &base_offset
);
2869 /* Aggregate arguments can have non-invariant addresses. */
2872 base
= build_fold_addr_expr (prev_base
);
2873 off
= build_int_cst (adj
->alias_ptr_type
,
2874 adj
->offset
/ BITS_PER_UNIT
);
2876 else if (TREE_CODE (base
) == MEM_REF
)
2878 off
= build_int_cst (adj
->alias_ptr_type
,
2880 + adj
->offset
/ BITS_PER_UNIT
);
2881 off
= int_const_binop (PLUS_EXPR
, TREE_OPERAND (base
, 1),
2883 base
= TREE_OPERAND (base
, 0);
2887 off
= build_int_cst (adj
->alias_ptr_type
,
2889 + adj
->offset
/ BITS_PER_UNIT
);
2890 base
= build_fold_addr_expr (base
);
2896 tree type
= adj
->type
;
2898 unsigned HOST_WIDE_INT misalign
;
2900 get_pointer_alignment_1 (base
, &align
, &misalign
);
2901 misalign
+= (tree_to_double_int (off
)
2902 .sext (TYPE_PRECISION (TREE_TYPE (off
))).low
2904 misalign
= misalign
& (align
- 1);
2906 align
= (misalign
& -misalign
);
2907 if (align
< TYPE_ALIGN (type
))
2908 type
= build_aligned_type (type
, align
);
2909 expr
= fold_build2_loc (loc
, MEM_REF
, type
, base
, off
);
2913 expr
= fold_build2_loc (loc
, MEM_REF
, adj
->type
, base
, off
);
2914 expr
= build_fold_addr_expr (expr
);
2917 expr
= force_gimple_operand_gsi (&gsi
, expr
,
2919 || is_gimple_reg_type (adj
->type
),
2920 NULL
, true, GSI_SAME_STMT
);
2921 VEC_quick_push (tree
, vargs
, expr
);
2923 if (!adj
->copy_param
&& MAY_HAVE_DEBUG_STMTS
)
2926 tree ddecl
= NULL_TREE
, origin
= DECL_ORIGIN (adj
->base
), arg
;
2929 arg
= gimple_call_arg (stmt
, adj
->base_index
);
2930 if (!useless_type_conversion_p (TREE_TYPE (origin
), TREE_TYPE (arg
)))
2932 if (!fold_convertible_p (TREE_TYPE (origin
), arg
))
2934 arg
= fold_convert_loc (gimple_location (stmt
),
2935 TREE_TYPE (origin
), arg
);
2937 if (debug_args
== NULL
)
2938 debug_args
= decl_debug_args_insert (callee_decl
);
2939 for (ix
= 0; VEC_iterate (tree
, *debug_args
, ix
, ddecl
); ix
+= 2)
2940 if (ddecl
== origin
)
2942 ddecl
= VEC_index (tree
, *debug_args
, ix
+ 1);
2947 ddecl
= make_node (DEBUG_EXPR_DECL
);
2948 DECL_ARTIFICIAL (ddecl
) = 1;
2949 TREE_TYPE (ddecl
) = TREE_TYPE (origin
);
2950 DECL_MODE (ddecl
) = DECL_MODE (origin
);
2952 VEC_safe_push (tree
, gc
, *debug_args
, origin
);
2953 VEC_safe_push (tree
, gc
, *debug_args
, ddecl
);
2955 def_temp
= gimple_build_debug_bind (ddecl
, unshare_expr (arg
),
2957 gsi_insert_before (&gsi
, def_temp
, GSI_SAME_STMT
);
2961 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2963 fprintf (dump_file
, "replacing stmt:");
2964 print_gimple_stmt (dump_file
, gsi_stmt (gsi
), 0, 0);
2967 new_stmt
= gimple_build_call_vec (callee_decl
, vargs
);
2968 VEC_free (tree
, heap
, vargs
);
2969 if (gimple_call_lhs (stmt
))
2970 gimple_call_set_lhs (new_stmt
, gimple_call_lhs (stmt
));
2972 gimple_set_block (new_stmt
, gimple_block (stmt
));
2973 if (gimple_has_location (stmt
))
2974 gimple_set_location (new_stmt
, gimple_location (stmt
));
2975 gimple_call_set_chain (new_stmt
, gimple_call_chain (stmt
));
2976 gimple_call_copy_flags (new_stmt
, stmt
);
2978 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2980 fprintf (dump_file
, "with stmt:");
2981 print_gimple_stmt (dump_file
, new_stmt
, 0, 0);
2982 fprintf (dump_file
, "\n");
2984 gsi_replace (&gsi
, new_stmt
, true);
2986 cgraph_set_call_stmt (cs
, new_stmt
);
2987 update_ssa (TODO_update_ssa
);
2988 free_dominance_info (CDI_DOMINATORS
);
2991 /* Return true iff BASE_INDEX is in ADJUSTMENTS more than once. */
2994 index_in_adjustments_multiple_times_p (int base_index
,
2995 ipa_parm_adjustment_vec adjustments
)
2997 int i
, len
= VEC_length (ipa_parm_adjustment_t
, adjustments
);
3000 for (i
= 0; i
< len
; i
++)
3002 struct ipa_parm_adjustment
*adj
;
3003 adj
= &VEC_index (ipa_parm_adjustment_t
, adjustments
, i
);
3005 if (adj
->base_index
== base_index
)
3017 /* Return adjustments that should have the same effect on function parameters
3018 and call arguments as if they were first changed according to adjustments in
3019 INNER and then by adjustments in OUTER. */
3021 ipa_parm_adjustment_vec
3022 ipa_combine_adjustments (ipa_parm_adjustment_vec inner
,
3023 ipa_parm_adjustment_vec outer
)
3025 int i
, outlen
= VEC_length (ipa_parm_adjustment_t
, outer
);
3026 int inlen
= VEC_length (ipa_parm_adjustment_t
, inner
);
3028 ipa_parm_adjustment_vec adjustments
, tmp
;
3030 tmp
= VEC_alloc (ipa_parm_adjustment_t
, heap
, inlen
);
3031 for (i
= 0; i
< inlen
; i
++)
3033 struct ipa_parm_adjustment
*n
;
3034 n
= &VEC_index (ipa_parm_adjustment_t
, inner
, i
);
3036 if (n
->remove_param
)
3039 VEC_quick_push (ipa_parm_adjustment_t
, tmp
, *n
);
3042 adjustments
= VEC_alloc (ipa_parm_adjustment_t
, heap
, outlen
+ removals
);
3043 for (i
= 0; i
< outlen
; i
++)
3045 struct ipa_parm_adjustment r
;
3046 struct ipa_parm_adjustment
*out
= &VEC_index (ipa_parm_adjustment_t
,
3048 struct ipa_parm_adjustment
*in
= &VEC_index (ipa_parm_adjustment_t
, tmp
,
3051 memset (&r
, 0, sizeof (r
));
3052 gcc_assert (!in
->remove_param
);
3053 if (out
->remove_param
)
3055 if (!index_in_adjustments_multiple_times_p (in
->base_index
, tmp
))
3057 r
.remove_param
= true;
3058 VEC_quick_push (ipa_parm_adjustment_t
, adjustments
, r
);
3063 r
.base_index
= in
->base_index
;
3066 /* FIXME: Create nonlocal value too. */
3068 if (in
->copy_param
&& out
->copy_param
)
3069 r
.copy_param
= true;
3070 else if (in
->copy_param
)
3071 r
.offset
= out
->offset
;
3072 else if (out
->copy_param
)
3073 r
.offset
= in
->offset
;
3075 r
.offset
= in
->offset
+ out
->offset
;
3076 VEC_quick_push (ipa_parm_adjustment_t
, adjustments
, r
);
3079 for (i
= 0; i
< inlen
; i
++)
3081 struct ipa_parm_adjustment
*n
= &VEC_index (ipa_parm_adjustment_t
,
3084 if (n
->remove_param
)
3085 VEC_quick_push (ipa_parm_adjustment_t
, adjustments
, *n
);
3088 VEC_free (ipa_parm_adjustment_t
, heap
, tmp
);
3092 /* Dump the adjustments in the vector ADJUSTMENTS to dump_file in a human
3093 friendly way, assuming they are meant to be applied to FNDECL. */
3096 ipa_dump_param_adjustments (FILE *file
, ipa_parm_adjustment_vec adjustments
,
3099 int i
, len
= VEC_length (ipa_parm_adjustment_t
, adjustments
);
3101 VEC(tree
, heap
) *parms
= ipa_get_vector_of_formal_parms (fndecl
);
3103 fprintf (file
, "IPA param adjustments: ");
3104 for (i
= 0; i
< len
; i
++)
3106 struct ipa_parm_adjustment
*adj
;
3107 adj
= &VEC_index (ipa_parm_adjustment_t
, adjustments
, i
);
3110 fprintf (file
, " ");
3114 fprintf (file
, "%i. base_index: %i - ", i
, adj
->base_index
);
3115 print_generic_expr (file
, VEC_index (tree
, parms
, adj
->base_index
), 0);
3118 fprintf (file
, ", base: ");
3119 print_generic_expr (file
, adj
->base
, 0);
3123 fprintf (file
, ", reduction: ");
3124 print_generic_expr (file
, adj
->reduction
, 0);
3126 if (adj
->new_ssa_base
)
3128 fprintf (file
, ", new_ssa_base: ");
3129 print_generic_expr (file
, adj
->new_ssa_base
, 0);
3132 if (adj
->copy_param
)
3133 fprintf (file
, ", copy_param");
3134 else if (adj
->remove_param
)
3135 fprintf (file
, ", remove_param");
3137 fprintf (file
, ", offset %li", (long) adj
->offset
);
3139 fprintf (file
, ", by_ref");
3140 print_node_brief (file
, ", type: ", adj
->type
, 0);
3141 fprintf (file
, "\n");
3143 VEC_free (tree
, heap
, parms
);
3146 /* Stream out jump function JUMP_FUNC to OB. */
3149 ipa_write_jump_function (struct output_block
*ob
,
3150 struct ipa_jump_func
*jump_func
)
3152 struct ipa_agg_jf_item
*item
;
3153 struct bitpack_d bp
;
3156 streamer_write_uhwi (ob
, jump_func
->type
);
3157 switch (jump_func
->type
)
3159 case IPA_JF_UNKNOWN
:
3161 case IPA_JF_KNOWN_TYPE
:
3162 streamer_write_uhwi (ob
, jump_func
->value
.known_type
.offset
);
3163 stream_write_tree (ob
, jump_func
->value
.known_type
.base_type
, true);
3164 stream_write_tree (ob
, jump_func
->value
.known_type
.component_type
, true);
3168 EXPR_LOCATION (jump_func
->value
.constant
) == UNKNOWN_LOCATION
);
3169 stream_write_tree (ob
, jump_func
->value
.constant
, true);
3171 case IPA_JF_PASS_THROUGH
:
3172 stream_write_tree (ob
, jump_func
->value
.pass_through
.operand
, true);
3173 streamer_write_uhwi (ob
, jump_func
->value
.pass_through
.formal_id
);
3174 streamer_write_uhwi (ob
, jump_func
->value
.pass_through
.operation
);
3175 bp
= bitpack_create (ob
->main_stream
);
3176 bp_pack_value (&bp
, jump_func
->value
.pass_through
.agg_preserved
, 1);
3177 streamer_write_bitpack (&bp
);
3179 case IPA_JF_ANCESTOR
:
3180 streamer_write_uhwi (ob
, jump_func
->value
.ancestor
.offset
);
3181 stream_write_tree (ob
, jump_func
->value
.ancestor
.type
, true);
3182 streamer_write_uhwi (ob
, jump_func
->value
.ancestor
.formal_id
);
3183 bp
= bitpack_create (ob
->main_stream
);
3184 bp_pack_value (&bp
, jump_func
->value
.ancestor
.agg_preserved
, 1);
3185 streamer_write_bitpack (&bp
);
3189 count
= VEC_length (ipa_agg_jf_item_t
, jump_func
->agg
.items
);
3190 streamer_write_uhwi (ob
, count
);
3193 bp
= bitpack_create (ob
->main_stream
);
3194 bp_pack_value (&bp
, jump_func
->agg
.by_ref
, 1);
3195 streamer_write_bitpack (&bp
);
3198 FOR_EACH_VEC_ELT (ipa_agg_jf_item_t
, jump_func
->agg
.items
, i
, item
)
3200 streamer_write_uhwi (ob
, item
->offset
);
3201 stream_write_tree (ob
, item
->value
, true);
3205 /* Read in jump function JUMP_FUNC from IB. */
3208 ipa_read_jump_function (struct lto_input_block
*ib
,
3209 struct ipa_jump_func
*jump_func
,
3210 struct data_in
*data_in
)
3212 struct bitpack_d bp
;
3215 jump_func
->type
= (enum jump_func_type
) streamer_read_uhwi (ib
);
3216 switch (jump_func
->type
)
3218 case IPA_JF_UNKNOWN
:
3220 case IPA_JF_KNOWN_TYPE
:
3221 jump_func
->value
.known_type
.offset
= streamer_read_uhwi (ib
);
3222 jump_func
->value
.known_type
.base_type
= stream_read_tree (ib
, data_in
);
3223 jump_func
->value
.known_type
.component_type
= stream_read_tree (ib
,
3227 jump_func
->value
.constant
= stream_read_tree (ib
, data_in
);
3229 case IPA_JF_PASS_THROUGH
:
3230 jump_func
->value
.pass_through
.operand
= stream_read_tree (ib
, data_in
);
3231 jump_func
->value
.pass_through
.formal_id
= streamer_read_uhwi (ib
);
3232 jump_func
->value
.pass_through
.operation
3233 = (enum tree_code
) streamer_read_uhwi (ib
);
3234 bp
= streamer_read_bitpack (ib
);
3235 jump_func
->value
.pass_through
.agg_preserved
= bp_unpack_value (&bp
, 1);
3237 case IPA_JF_ANCESTOR
:
3238 jump_func
->value
.ancestor
.offset
= streamer_read_uhwi (ib
);
3239 jump_func
->value
.ancestor
.type
= stream_read_tree (ib
, data_in
);
3240 jump_func
->value
.ancestor
.formal_id
= streamer_read_uhwi (ib
);
3241 bp
= streamer_read_bitpack (ib
);
3242 jump_func
->value
.ancestor
.agg_preserved
= bp_unpack_value (&bp
, 1);
3246 count
= streamer_read_uhwi (ib
);
3247 jump_func
->agg
.items
= VEC_alloc (ipa_agg_jf_item_t
, gc
, count
);
3250 bp
= streamer_read_bitpack (ib
);
3251 jump_func
->agg
.by_ref
= bp_unpack_value (&bp
, 1);
3253 for (i
= 0; i
< count
; i
++)
3255 struct ipa_agg_jf_item item
;
3256 item
.offset
= streamer_read_uhwi (ib
);
3257 item
.value
= stream_read_tree (ib
, data_in
);
3258 VEC_quick_push (ipa_agg_jf_item_t
, jump_func
->agg
.items
, item
);
3262 /* Stream out parts of cgraph_indirect_call_info corresponding to CS that are
3263 relevant to indirect inlining to OB. */
3266 ipa_write_indirect_edge_info (struct output_block
*ob
,
3267 struct cgraph_edge
*cs
)
3269 struct cgraph_indirect_call_info
*ii
= cs
->indirect_info
;
3270 struct bitpack_d bp
;
3272 streamer_write_hwi (ob
, ii
->param_index
);
3273 streamer_write_hwi (ob
, ii
->offset
);
3274 bp
= bitpack_create (ob
->main_stream
);
3275 bp_pack_value (&bp
, ii
->polymorphic
, 1);
3276 bp_pack_value (&bp
, ii
->agg_contents
, 1);
3277 bp_pack_value (&bp
, ii
->by_ref
, 1);
3278 streamer_write_bitpack (&bp
);
3280 if (ii
->polymorphic
)
3282 streamer_write_hwi (ob
, ii
->otr_token
);
3283 stream_write_tree (ob
, ii
->otr_type
, true);
3287 /* Read in parts of cgraph_indirect_call_info corresponding to CS that are
3288 relevant to indirect inlining from IB. */
3291 ipa_read_indirect_edge_info (struct lto_input_block
*ib
,
3292 struct data_in
*data_in ATTRIBUTE_UNUSED
,
3293 struct cgraph_edge
*cs
)
3295 struct cgraph_indirect_call_info
*ii
= cs
->indirect_info
;
3296 struct bitpack_d bp
;
3298 ii
->param_index
= (int) streamer_read_hwi (ib
);
3299 ii
->offset
= (HOST_WIDE_INT
) streamer_read_hwi (ib
);
3300 bp
= streamer_read_bitpack (ib
);
3301 ii
->polymorphic
= bp_unpack_value (&bp
, 1);
3302 ii
->agg_contents
= bp_unpack_value (&bp
, 1);
3303 ii
->by_ref
= bp_unpack_value (&bp
, 1);
3304 if (ii
->polymorphic
)
3306 ii
->otr_token
= (HOST_WIDE_INT
) streamer_read_hwi (ib
);
3307 ii
->otr_type
= stream_read_tree (ib
, data_in
);
3311 /* Stream out NODE info to OB. */
3314 ipa_write_node_info (struct output_block
*ob
, struct cgraph_node
*node
)
3317 lto_symtab_encoder_t encoder
;
3318 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
3320 struct cgraph_edge
*e
;
3321 struct bitpack_d bp
;
3323 encoder
= ob
->decl_state
->symtab_node_encoder
;
3324 node_ref
= lto_symtab_encoder_encode (encoder
, (symtab_node
) node
);
3325 streamer_write_uhwi (ob
, node_ref
);
3327 bp
= bitpack_create (ob
->main_stream
);
3328 gcc_assert (info
->uses_analysis_done
3329 || ipa_get_param_count (info
) == 0);
3330 gcc_assert (!info
->node_enqueued
);
3331 gcc_assert (!info
->ipcp_orig_node
);
3332 for (j
= 0; j
< ipa_get_param_count (info
); j
++)
3333 bp_pack_value (&bp
, ipa_is_param_used (info
, j
), 1);
3334 streamer_write_bitpack (&bp
);
3335 for (e
= node
->callees
; e
; e
= e
->next_callee
)
3337 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
3339 streamer_write_uhwi (ob
, ipa_get_cs_argument_count (args
));
3340 for (j
= 0; j
< ipa_get_cs_argument_count (args
); j
++)
3341 ipa_write_jump_function (ob
, ipa_get_ith_jump_func (args
, j
));
3343 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
3345 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
3347 streamer_write_uhwi (ob
, ipa_get_cs_argument_count (args
));
3348 for (j
= 0; j
< ipa_get_cs_argument_count (args
); j
++)
3349 ipa_write_jump_function (ob
, ipa_get_ith_jump_func (args
, j
));
3350 ipa_write_indirect_edge_info (ob
, e
);
3354 /* Stream in NODE info from IB. */
3357 ipa_read_node_info (struct lto_input_block
*ib
, struct cgraph_node
*node
,
3358 struct data_in
*data_in
)
3360 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
3362 struct cgraph_edge
*e
;
3363 struct bitpack_d bp
;
3365 ipa_initialize_node_params (node
);
3367 bp
= streamer_read_bitpack (ib
);
3368 if (ipa_get_param_count (info
) != 0)
3369 info
->uses_analysis_done
= true;
3370 info
->node_enqueued
= false;
3371 for (k
= 0; k
< ipa_get_param_count (info
); k
++)
3372 ipa_set_param_used (info
, k
, bp_unpack_value (&bp
, 1));
3373 for (e
= node
->callees
; e
; e
= e
->next_callee
)
3375 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
3376 int count
= streamer_read_uhwi (ib
);
3380 VEC_safe_grow_cleared (ipa_jump_func_t
, gc
, args
->jump_functions
, count
);
3382 for (k
= 0; k
< ipa_get_cs_argument_count (args
); k
++)
3383 ipa_read_jump_function (ib
, ipa_get_ith_jump_func (args
, k
), data_in
);
3385 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
3387 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
3388 int count
= streamer_read_uhwi (ib
);
3392 VEC_safe_grow_cleared (ipa_jump_func_t
, gc
, args
->jump_functions
,
3394 for (k
= 0; k
< ipa_get_cs_argument_count (args
); k
++)
3395 ipa_read_jump_function (ib
, ipa_get_ith_jump_func (args
, k
),
3398 ipa_read_indirect_edge_info (ib
, data_in
, e
);
3402 /* Write jump functions for nodes in SET. */
3405 ipa_prop_write_jump_functions (void)
3407 struct cgraph_node
*node
;
3408 struct output_block
*ob
;
3409 unsigned int count
= 0;
3410 lto_symtab_encoder_iterator lsei
;
3411 lto_symtab_encoder_t encoder
;
3414 if (!ipa_node_params_vector
)
3417 ob
= create_output_block (LTO_section_jump_functions
);
3418 encoder
= ob
->decl_state
->symtab_node_encoder
;
3419 ob
->cgraph_node
= NULL
;
3420 for (lsei
= lsei_start_function_in_partition (encoder
); !lsei_end_p (lsei
);
3421 lsei_next_function_in_partition (&lsei
))
3423 node
= lsei_cgraph_node (lsei
);
3424 if (cgraph_function_with_gimple_body_p (node
)
3425 && IPA_NODE_REF (node
) != NULL
)
3429 streamer_write_uhwi (ob
, count
);
3431 /* Process all of the functions. */
3432 for (lsei
= lsei_start_function_in_partition (encoder
); !lsei_end_p (lsei
);
3433 lsei_next_function_in_partition (&lsei
))
3435 node
= lsei_cgraph_node (lsei
);
3436 if (cgraph_function_with_gimple_body_p (node
)
3437 && IPA_NODE_REF (node
) != NULL
)
3438 ipa_write_node_info (ob
, node
);
3440 streamer_write_char_stream (ob
->main_stream
, 0);
3441 produce_asm (ob
, NULL
);
3442 destroy_output_block (ob
);
3445 /* Read section in file FILE_DATA of length LEN with data DATA. */
3448 ipa_prop_read_section (struct lto_file_decl_data
*file_data
, const char *data
,
3451 const struct lto_function_header
*header
=
3452 (const struct lto_function_header
*) data
;
3453 const int cfg_offset
= sizeof (struct lto_function_header
);
3454 const int main_offset
= cfg_offset
+ header
->cfg_size
;
3455 const int string_offset
= main_offset
+ header
->main_size
;
3456 struct data_in
*data_in
;
3457 struct lto_input_block ib_main
;
3461 LTO_INIT_INPUT_BLOCK (ib_main
, (const char *) data
+ main_offset
, 0,
3465 lto_data_in_create (file_data
, (const char *) data
+ string_offset
,
3466 header
->string_size
, NULL
);
3467 count
= streamer_read_uhwi (&ib_main
);
3469 for (i
= 0; i
< count
; i
++)
3472 struct cgraph_node
*node
;
3473 lto_symtab_encoder_t encoder
;
3475 index
= streamer_read_uhwi (&ib_main
);
3476 encoder
= file_data
->symtab_node_encoder
;
3477 node
= cgraph (lto_symtab_encoder_deref (encoder
, index
));
3478 gcc_assert (node
->analyzed
);
3479 ipa_read_node_info (&ib_main
, node
, data_in
);
3481 lto_free_section_data (file_data
, LTO_section_jump_functions
, NULL
, data
,
3483 lto_data_in_delete (data_in
);
3486 /* Read ipcp jump functions. */
3489 ipa_prop_read_jump_functions (void)
3491 struct lto_file_decl_data
**file_data_vec
= lto_get_file_decl_data ();
3492 struct lto_file_decl_data
*file_data
;
3495 ipa_check_create_node_params ();
3496 ipa_check_create_edge_args ();
3497 ipa_register_cgraph_hooks ();
3499 while ((file_data
= file_data_vec
[j
++]))
3502 const char *data
= lto_get_section_data (file_data
, LTO_section_jump_functions
, NULL
, &len
);
3505 ipa_prop_read_section (file_data
, data
, len
);
3509 /* After merging units, we can get mismatch in argument counts.
3510 Also decl merging might've rendered parameter lists obsolete.
3511 Also compute called_with_variable_arg info. */
3514 ipa_update_after_lto_read (void)
3516 struct cgraph_node
*node
;
3518 ipa_check_create_node_params ();
3519 ipa_check_create_edge_args ();
3521 FOR_EACH_DEFINED_FUNCTION (node
)
3523 ipa_initialize_node_params (node
);