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"
33 #include "ipa-inline.h"
36 #include "diagnostic.h"
37 #include "gimple-pretty-print.h"
38 #include "lto-streamer.h"
39 #include "data-streamer.h"
40 #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
> ipa_node_params_vector
;
54 /* Vector of known aggregate values in cloned nodes. */
55 vec
<ipa_agg_replacement_value_p
, va_gc
> *ipa_node_agg_replacements
;
56 /* Vector where the parameter infos are actually stored. */
57 vec
<ipa_edge_args_t
, va_gc
> *ipa_edge_args_vector
;
59 /* Holders of ipa cgraph hooks: */
60 static struct cgraph_edge_hook_list
*edge_removal_hook_holder
;
61 static struct cgraph_node_hook_list
*node_removal_hook_holder
;
62 static struct cgraph_2edge_hook_list
*edge_duplication_hook_holder
;
63 static struct cgraph_2node_hook_list
*node_duplication_hook_holder
;
64 static struct cgraph_node_hook_list
*function_insertion_hook_holder
;
66 /* Return index of the formal whose tree is PTREE in function which corresponds
70 ipa_get_param_decl_index_1 (vec
<ipa_param_descriptor_t
> descriptors
, tree ptree
)
74 count
= descriptors
.length ();
75 for (i
= 0; i
< count
; i
++)
76 if (descriptors
[i
].decl
== ptree
)
82 /* Return index of the formal whose tree is PTREE in function which corresponds
86 ipa_get_param_decl_index (struct ipa_node_params
*info
, tree ptree
)
88 return ipa_get_param_decl_index_1 (info
->descriptors
, ptree
);
91 /* Populate the param_decl field in parameter DESCRIPTORS that correspond to
95 ipa_populate_param_decls (struct cgraph_node
*node
,
96 vec
<ipa_param_descriptor_t
> &descriptors
)
103 fndecl
= node
->symbol
.decl
;
104 fnargs
= DECL_ARGUMENTS (fndecl
);
106 for (parm
= fnargs
; parm
; parm
= DECL_CHAIN (parm
))
108 descriptors
[param_num
].decl
= parm
;
113 /* Return how many formal parameters FNDECL has. */
116 count_formal_params (tree fndecl
)
121 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
127 /* Initialize the ipa_node_params structure associated with NODE by counting
128 the function parameters, creating the descriptors and populating their
132 ipa_initialize_node_params (struct cgraph_node
*node
)
134 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
136 if (!info
->descriptors
.exists ())
140 param_count
= count_formal_params (node
->symbol
.decl
);
143 info
->descriptors
.safe_grow_cleared (param_count
);
144 ipa_populate_param_decls (node
, info
->descriptors
);
149 /* Print the jump functions associated with call graph edge CS to file F. */
152 ipa_print_node_jump_functions_for_edge (FILE *f
, struct cgraph_edge
*cs
)
156 count
= ipa_get_cs_argument_count (IPA_EDGE_REF (cs
));
157 for (i
= 0; i
< count
; i
++)
159 struct ipa_jump_func
*jump_func
;
160 enum jump_func_type type
;
162 jump_func
= ipa_get_ith_jump_func (IPA_EDGE_REF (cs
), i
);
163 type
= jump_func
->type
;
165 fprintf (f
, " param %d: ", i
);
166 if (type
== IPA_JF_UNKNOWN
)
167 fprintf (f
, "UNKNOWN\n");
168 else if (type
== IPA_JF_KNOWN_TYPE
)
170 fprintf (f
, "KNOWN TYPE: base ");
171 print_generic_expr (f
, jump_func
->value
.known_type
.base_type
, 0);
172 fprintf (f
, ", offset "HOST_WIDE_INT_PRINT_DEC
", component ",
173 jump_func
->value
.known_type
.offset
);
174 print_generic_expr (f
, jump_func
->value
.known_type
.component_type
, 0);
177 else if (type
== IPA_JF_CONST
)
179 tree val
= jump_func
->value
.constant
;
180 fprintf (f
, "CONST: ");
181 print_generic_expr (f
, val
, 0);
182 if (TREE_CODE (val
) == ADDR_EXPR
183 && TREE_CODE (TREE_OPERAND (val
, 0)) == CONST_DECL
)
186 print_generic_expr (f
, DECL_INITIAL (TREE_OPERAND (val
, 0)),
191 else if (type
== IPA_JF_PASS_THROUGH
)
193 fprintf (f
, "PASS THROUGH: ");
194 fprintf (f
, "%d, op %s",
195 jump_func
->value
.pass_through
.formal_id
,
197 jump_func
->value
.pass_through
.operation
]);
198 if (jump_func
->value
.pass_through
.operation
!= NOP_EXPR
)
201 print_generic_expr (f
,
202 jump_func
->value
.pass_through
.operand
, 0);
204 if (jump_func
->value
.pass_through
.agg_preserved
)
205 fprintf (f
, ", agg_preserved");
208 else if (type
== IPA_JF_ANCESTOR
)
210 fprintf (f
, "ANCESTOR: ");
211 fprintf (f
, "%d, offset "HOST_WIDE_INT_PRINT_DEC
", ",
212 jump_func
->value
.ancestor
.formal_id
,
213 jump_func
->value
.ancestor
.offset
);
214 print_generic_expr (f
, jump_func
->value
.ancestor
.type
, 0);
215 if (jump_func
->value
.ancestor
.agg_preserved
)
216 fprintf (f
, ", agg_preserved");
220 if (jump_func
->agg
.items
)
222 struct ipa_agg_jf_item
*item
;
225 fprintf (f
, " Aggregate passed by %s:\n",
226 jump_func
->agg
.by_ref
? "reference" : "value");
227 FOR_EACH_VEC_SAFE_ELT (jump_func
->agg
.items
, j
, item
)
229 fprintf (f
, " offset: " HOST_WIDE_INT_PRINT_DEC
", ",
231 if (TYPE_P (item
->value
))
232 fprintf (f
, "clobber of " HOST_WIDE_INT_PRINT_DEC
" bits",
233 tree_low_cst (TYPE_SIZE (item
->value
), 1));
236 fprintf (f
, "cst: ");
237 print_generic_expr (f
, item
->value
, 0);
246 /* Print the jump functions of all arguments on all call graph edges going from
250 ipa_print_node_jump_functions (FILE *f
, struct cgraph_node
*node
)
252 struct cgraph_edge
*cs
;
255 fprintf (f
, " Jump functions of caller %s:\n", cgraph_node_name (node
));
256 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
258 if (!ipa_edge_args_info_available_for_edge_p (cs
))
261 fprintf (f
, " callsite %s/%i -> %s/%i : \n",
262 xstrdup (cgraph_node_name (node
)), node
->uid
,
263 xstrdup (cgraph_node_name (cs
->callee
)), cs
->callee
->uid
);
264 ipa_print_node_jump_functions_for_edge (f
, cs
);
267 for (cs
= node
->indirect_calls
, i
= 0; cs
; cs
= cs
->next_callee
, i
++)
269 if (!ipa_edge_args_info_available_for_edge_p (cs
))
274 fprintf (f
, " indirect callsite %d for stmt ", i
);
275 print_gimple_stmt (f
, cs
->call_stmt
, 0, TDF_SLIM
);
278 fprintf (f
, " indirect callsite %d :\n", i
);
279 ipa_print_node_jump_functions_for_edge (f
, cs
);
284 /* Print ipa_jump_func data structures of all nodes in the call graph to F. */
287 ipa_print_all_jump_functions (FILE *f
)
289 struct cgraph_node
*node
;
291 fprintf (f
, "\nJump functions:\n");
292 FOR_EACH_FUNCTION (node
)
294 ipa_print_node_jump_functions (f
, node
);
298 /* Worker for prune_expression_for_jf. */
301 prune_expression_for_jf_1 (tree
*tp
, int *walk_subtrees
, void *)
304 SET_EXPR_LOCATION (*tp
, UNKNOWN_LOCATION
);
310 /* Return the expression tree EXPR unshared and with location stripped off. */
313 prune_expression_for_jf (tree exp
)
317 exp
= unshare_expr (exp
);
318 walk_tree (&exp
, prune_expression_for_jf_1
, NULL
, NULL
);
323 /* Set JFUNC to be a known type jump function. */
326 ipa_set_jf_known_type (struct ipa_jump_func
*jfunc
, HOST_WIDE_INT offset
,
327 tree base_type
, tree component_type
)
329 jfunc
->type
= IPA_JF_KNOWN_TYPE
;
330 jfunc
->value
.known_type
.offset
= offset
,
331 jfunc
->value
.known_type
.base_type
= base_type
;
332 jfunc
->value
.known_type
.component_type
= component_type
;
335 /* Set JFUNC to be a constant jmp function. */
338 ipa_set_jf_constant (struct ipa_jump_func
*jfunc
, tree constant
)
340 constant
= unshare_expr (constant
);
341 if (constant
&& EXPR_P (constant
))
342 SET_EXPR_LOCATION (constant
, UNKNOWN_LOCATION
);
343 jfunc
->type
= IPA_JF_CONST
;
344 jfunc
->value
.constant
= prune_expression_for_jf (constant
);
347 /* Set JFUNC to be a simple pass-through jump function. */
349 ipa_set_jf_simple_pass_through (struct ipa_jump_func
*jfunc
, int formal_id
,
352 jfunc
->type
= IPA_JF_PASS_THROUGH
;
353 jfunc
->value
.pass_through
.operand
= NULL_TREE
;
354 jfunc
->value
.pass_through
.formal_id
= formal_id
;
355 jfunc
->value
.pass_through
.operation
= NOP_EXPR
;
356 jfunc
->value
.pass_through
.agg_preserved
= agg_preserved
;
359 /* Set JFUNC to be an arithmetic pass through jump function. */
362 ipa_set_jf_arith_pass_through (struct ipa_jump_func
*jfunc
, int formal_id
,
363 tree operand
, enum tree_code operation
)
365 jfunc
->type
= IPA_JF_PASS_THROUGH
;
366 jfunc
->value
.pass_through
.operand
= prune_expression_for_jf (operand
);
367 jfunc
->value
.pass_through
.formal_id
= formal_id
;
368 jfunc
->value
.pass_through
.operation
= operation
;
369 jfunc
->value
.pass_through
.agg_preserved
= false;
372 /* Set JFUNC to be an ancestor jump function. */
375 ipa_set_ancestor_jf (struct ipa_jump_func
*jfunc
, HOST_WIDE_INT offset
,
376 tree type
, int formal_id
, bool agg_preserved
)
378 jfunc
->type
= IPA_JF_ANCESTOR
;
379 jfunc
->value
.ancestor
.formal_id
= formal_id
;
380 jfunc
->value
.ancestor
.offset
= offset
;
381 jfunc
->value
.ancestor
.type
= type
;
382 jfunc
->value
.ancestor
.agg_preserved
= agg_preserved
;
385 /* Structure to be passed in between detect_type_change and
386 check_stmt_for_type_change. */
388 struct type_change_info
390 /* Offset into the object where there is the virtual method pointer we are
392 HOST_WIDE_INT offset
;
393 /* The declaration or SSA_NAME pointer of the base that we are checking for
396 /* If we actually can tell the type that the object has changed to, it is
397 stored in this field. Otherwise it remains NULL_TREE. */
398 tree known_current_type
;
399 /* Set to true if dynamic type change has been detected. */
400 bool type_maybe_changed
;
401 /* Set to true if multiple types have been encountered. known_current_type
402 must be disregarded in that case. */
403 bool multiple_types_encountered
;
406 /* Return true if STMT can modify a virtual method table pointer.
408 This function makes special assumptions about both constructors and
409 destructors which are all the functions that are allowed to alter the VMT
410 pointers. It assumes that destructors begin with assignment into all VMT
411 pointers and that constructors essentially look in the following way:
413 1) The very first thing they do is that they call constructors of ancestor
414 sub-objects that have them.
416 2) Then VMT pointers of this and all its ancestors is set to new values
417 corresponding to the type corresponding to the constructor.
419 3) Only afterwards, other stuff such as constructor of member sub-objects
420 and the code written by the user is run. Only this may include calling
421 virtual functions, directly or indirectly.
423 There is no way to call a constructor of an ancestor sub-object in any
426 This means that we do not have to care whether constructors get the correct
427 type information because they will always change it (in fact, if we define
428 the type to be given by the VMT pointer, it is undefined).
430 The most important fact to derive from the above is that if, for some
431 statement in the section 3, we try to detect whether the dynamic type has
432 changed, we can safely ignore all calls as we examine the function body
433 backwards until we reach statements in section 2 because these calls cannot
434 be ancestor constructors or destructors (if the input is not bogus) and so
435 do not change the dynamic type (this holds true only for automatically
436 allocated objects but at the moment we devirtualize only these). We then
437 must detect that statements in section 2 change the dynamic type and can try
438 to derive the new type. That is enough and we can stop, we will never see
439 the calls into constructors of sub-objects in this code. Therefore we can
440 safely ignore all call statements that we traverse.
444 stmt_may_be_vtbl_ptr_store (gimple stmt
)
446 if (is_gimple_call (stmt
))
448 else if (is_gimple_assign (stmt
))
450 tree lhs
= gimple_assign_lhs (stmt
);
452 if (!AGGREGATE_TYPE_P (TREE_TYPE (lhs
)))
454 if (flag_strict_aliasing
455 && !POINTER_TYPE_P (TREE_TYPE (lhs
)))
458 if (TREE_CODE (lhs
) == COMPONENT_REF
459 && !DECL_VIRTUAL_P (TREE_OPERAND (lhs
, 1)))
461 /* In the future we might want to use get_base_ref_and_offset to find
462 if there is a field corresponding to the offset and if so, proceed
463 almost like if it was a component ref. */
469 /* If STMT can be proved to be an assignment to the virtual method table
470 pointer of ANALYZED_OBJ and the type associated with the new table
471 identified, return the type. Otherwise return NULL_TREE. */
474 extr_type_from_vtbl_ptr_store (gimple stmt
, struct type_change_info
*tci
)
476 HOST_WIDE_INT offset
, size
, max_size
;
479 if (!gimple_assign_single_p (stmt
))
482 lhs
= gimple_assign_lhs (stmt
);
483 rhs
= gimple_assign_rhs1 (stmt
);
484 if (TREE_CODE (lhs
) != COMPONENT_REF
485 || !DECL_VIRTUAL_P (TREE_OPERAND (lhs
, 1))
486 || TREE_CODE (rhs
) != ADDR_EXPR
)
488 rhs
= get_base_address (TREE_OPERAND (rhs
, 0));
490 || TREE_CODE (rhs
) != VAR_DECL
491 || !DECL_VIRTUAL_P (rhs
))
494 base
= get_ref_base_and_extent (lhs
, &offset
, &size
, &max_size
);
495 if (offset
!= tci
->offset
496 || size
!= POINTER_SIZE
497 || max_size
!= POINTER_SIZE
)
499 if (TREE_CODE (base
) == MEM_REF
)
501 if (TREE_CODE (tci
->object
) != MEM_REF
502 || TREE_OPERAND (tci
->object
, 0) != TREE_OPERAND (base
, 0)
503 || !tree_int_cst_equal (TREE_OPERAND (tci
->object
, 1),
504 TREE_OPERAND (base
, 1)))
507 else if (tci
->object
!= base
)
510 return DECL_CONTEXT (rhs
);
513 /* Callback of walk_aliased_vdefs and a helper function for
514 detect_type_change to check whether a particular statement may modify
515 the virtual table pointer, and if possible also determine the new type of
516 the (sub-)object. It stores its result into DATA, which points to a
517 type_change_info structure. */
520 check_stmt_for_type_change (ao_ref
*ao ATTRIBUTE_UNUSED
, tree vdef
, void *data
)
522 gimple stmt
= SSA_NAME_DEF_STMT (vdef
);
523 struct type_change_info
*tci
= (struct type_change_info
*) data
;
525 if (stmt_may_be_vtbl_ptr_store (stmt
))
528 type
= extr_type_from_vtbl_ptr_store (stmt
, tci
);
529 if (tci
->type_maybe_changed
530 && type
!= tci
->known_current_type
)
531 tci
->multiple_types_encountered
= true;
532 tci
->known_current_type
= type
;
533 tci
->type_maybe_changed
= true;
542 /* Like detect_type_change but with extra argument COMP_TYPE which will become
543 the component type part of new JFUNC of dynamic type change is detected and
544 the new base type is identified. */
547 detect_type_change_1 (tree arg
, tree base
, tree comp_type
, gimple call
,
548 struct ipa_jump_func
*jfunc
, HOST_WIDE_INT offset
)
550 struct type_change_info tci
;
553 gcc_checking_assert (DECL_P (arg
)
554 || TREE_CODE (arg
) == MEM_REF
555 || handled_component_p (arg
));
556 /* Const calls cannot call virtual methods through VMT and so type changes do
558 if (!flag_devirtualize
|| !gimple_vuse (call
))
561 ao_ref_init (&ao
, arg
);
564 ao
.size
= POINTER_SIZE
;
565 ao
.max_size
= ao
.size
;
568 tci
.object
= get_base_address (arg
);
569 tci
.known_current_type
= NULL_TREE
;
570 tci
.type_maybe_changed
= false;
571 tci
.multiple_types_encountered
= false;
573 walk_aliased_vdefs (&ao
, gimple_vuse (call
), check_stmt_for_type_change
,
575 if (!tci
.type_maybe_changed
)
578 if (!tci
.known_current_type
579 || tci
.multiple_types_encountered
581 jfunc
->type
= IPA_JF_UNKNOWN
;
583 ipa_set_jf_known_type (jfunc
, 0, tci
.known_current_type
, comp_type
);
588 /* Detect whether the dynamic type of ARG has changed (before callsite CALL) by
589 looking for assignments to its virtual table pointer. If it is, return true
590 and fill in the jump function JFUNC with relevant type information or set it
591 to unknown. ARG is the object itself (not a pointer to it, unless
592 dereferenced). BASE is the base of the memory access as returned by
593 get_ref_base_and_extent, as is the offset. */
596 detect_type_change (tree arg
, tree base
, gimple call
,
597 struct ipa_jump_func
*jfunc
, HOST_WIDE_INT offset
)
599 return detect_type_change_1 (arg
, base
, TREE_TYPE (arg
), call
, jfunc
, offset
);
602 /* Like detect_type_change but ARG is supposed to be a non-dereferenced pointer
603 SSA name (its dereference will become the base and the offset is assumed to
607 detect_type_change_ssa (tree arg
, gimple call
, struct ipa_jump_func
*jfunc
)
611 gcc_checking_assert (TREE_CODE (arg
) == SSA_NAME
);
612 if (!flag_devirtualize
613 || !POINTER_TYPE_P (TREE_TYPE (arg
))
614 || TREE_CODE (TREE_TYPE (TREE_TYPE (arg
))) != RECORD_TYPE
)
617 comp_type
= TREE_TYPE (TREE_TYPE (arg
));
618 arg
= build2 (MEM_REF
, ptr_type_node
, arg
,
619 build_int_cst (ptr_type_node
, 0));
621 return detect_type_change_1 (arg
, arg
, comp_type
, call
, jfunc
, 0);
624 /* Callback of walk_aliased_vdefs. Flags that it has been invoked to the
625 boolean variable pointed to by DATA. */
628 mark_modified (ao_ref
*ao ATTRIBUTE_UNUSED
, tree vdef ATTRIBUTE_UNUSED
,
631 bool *b
= (bool *) data
;
636 /* Return true if a load from a formal parameter PARM_LOAD is known to retreive
637 a value known not to be modified in this function before reaching the
638 statement STMT. PARM_AINFO is a pointer to a structure containing temporary
639 information about the parameter. */
642 parm_preserved_before_stmt_p (struct param_analysis_info
*parm_ainfo
,
643 gimple stmt
, tree parm_load
)
645 bool modified
= false;
646 bitmap
*visited_stmts
;
649 if (parm_ainfo
&& parm_ainfo
->parm_modified
)
652 gcc_checking_assert (gimple_vuse (stmt
) != NULL_TREE
);
653 ao_ref_init (&refd
, parm_load
);
654 /* We can cache visited statements only when parm_ainfo is available and when
655 we are looking at a naked load of the whole parameter. */
656 if (!parm_ainfo
|| TREE_CODE (parm_load
) != PARM_DECL
)
657 visited_stmts
= NULL
;
659 visited_stmts
= &parm_ainfo
->parm_visited_statements
;
660 walk_aliased_vdefs (&refd
, gimple_vuse (stmt
), mark_modified
, &modified
,
662 if (parm_ainfo
&& modified
)
663 parm_ainfo
->parm_modified
= true;
667 /* If STMT is an assignment that loads a value from an parameter declaration,
668 return the index of the parameter in ipa_node_params which has not been
669 modified. Otherwise return -1. */
672 load_from_unmodified_param (vec
<ipa_param_descriptor_t
> descriptors
,
673 struct param_analysis_info
*parms_ainfo
,
679 if (!gimple_assign_single_p (stmt
))
682 op1
= gimple_assign_rhs1 (stmt
);
683 if (TREE_CODE (op1
) != PARM_DECL
)
686 index
= ipa_get_param_decl_index_1 (descriptors
, op1
);
688 || !parm_preserved_before_stmt_p (parms_ainfo
? &parms_ainfo
[index
]
695 /* Return true if memory reference REF loads data that are known to be
696 unmodified in this function before reaching statement STMT. PARM_AINFO, if
697 non-NULL, is a pointer to a structure containing temporary information about
701 parm_ref_data_preserved_p (struct param_analysis_info
*parm_ainfo
,
702 gimple stmt
, tree ref
)
704 bool modified
= false;
707 gcc_checking_assert (gimple_vuse (stmt
));
708 if (parm_ainfo
&& parm_ainfo
->ref_modified
)
711 ao_ref_init (&refd
, ref
);
712 walk_aliased_vdefs (&refd
, gimple_vuse (stmt
), mark_modified
, &modified
,
714 if (parm_ainfo
&& modified
)
715 parm_ainfo
->ref_modified
= true;
719 /* Return true if the data pointed to by PARM is known to be unmodified in this
720 function before reaching call statement CALL into which it is passed.
721 PARM_AINFO is a pointer to a structure containing temporary information
725 parm_ref_data_pass_through_p (struct param_analysis_info
*parm_ainfo
,
726 gimple call
, tree parm
)
728 bool modified
= false;
731 /* It's unnecessary to calculate anything about memory contnets for a const
732 function because it is not goin to use it. But do not cache the result
733 either. Also, no such calculations for non-pointers. */
734 if (!gimple_vuse (call
)
735 || !POINTER_TYPE_P (TREE_TYPE (parm
)))
738 if (parm_ainfo
->pt_modified
)
741 ao_ref_init_from_ptr_and_size (&refd
, parm
, NULL_TREE
);
742 walk_aliased_vdefs (&refd
, gimple_vuse (call
), mark_modified
, &modified
,
743 parm_ainfo
? &parm_ainfo
->pt_visited_statements
: NULL
);
745 parm_ainfo
->pt_modified
= true;
749 /* Return true if we can prove that OP is a memory reference loading unmodified
750 data from an aggregate passed as a parameter and if the aggregate is passed
751 by reference, that the alias type of the load corresponds to the type of the
752 formal parameter (so that we can rely on this type for TBAA in callers).
753 INFO and PARMS_AINFO describe parameters of the current function (but the
754 latter can be NULL), STMT is the load statement. If function returns true,
755 *INDEX_P, *OFFSET_P and *BY_REF is filled with the parameter index, offset
756 within the aggregate and whether it is a load from a value passed by
757 reference respectively. */
760 ipa_load_from_parm_agg_1 (vec
<ipa_param_descriptor_t
> descriptors
,
761 struct param_analysis_info
*parms_ainfo
, gimple stmt
,
762 tree op
, int *index_p
, HOST_WIDE_INT
*offset_p
,
766 HOST_WIDE_INT size
, max_size
;
767 tree base
= get_ref_base_and_extent (op
, offset_p
, &size
, &max_size
);
769 if (max_size
== -1 || max_size
!= size
|| *offset_p
< 0)
774 int index
= ipa_get_param_decl_index_1 (descriptors
, base
);
776 && parm_preserved_before_stmt_p (parms_ainfo
? &parms_ainfo
[index
]
786 if (TREE_CODE (base
) != MEM_REF
787 || TREE_CODE (TREE_OPERAND (base
, 0)) != SSA_NAME
788 || !integer_zerop (TREE_OPERAND (base
, 1)))
791 if (SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (base
, 0)))
793 tree parm
= SSA_NAME_VAR (TREE_OPERAND (base
, 0));
794 index
= ipa_get_param_decl_index_1 (descriptors
, parm
);
798 /* This branch catches situations where a pointer parameter is not a
799 gimple register, for example:
801 void hip7(S*) (struct S * p)
803 void (*<T2e4>) (struct S *) D.1867;
813 gimple def
= SSA_NAME_DEF_STMT (TREE_OPERAND (base
, 0));
814 index
= load_from_unmodified_param (descriptors
, parms_ainfo
, def
);
818 && parm_ref_data_preserved_p (parms_ainfo
? &parms_ainfo
[index
] : NULL
,
828 /* Just like the previous function, just without the param_analysis_info
829 pointer, for users outside of this file. */
832 ipa_load_from_parm_agg (struct ipa_node_params
*info
, gimple stmt
,
833 tree op
, int *index_p
, HOST_WIDE_INT
*offset_p
,
836 return ipa_load_from_parm_agg_1 (info
->descriptors
, NULL
, stmt
, op
, index_p
,
840 /* Given that an actual argument is an SSA_NAME (given in NAME) and is a result
841 of an assignment statement STMT, try to determine whether we are actually
842 handling any of the following cases and construct an appropriate jump
843 function into JFUNC if so:
845 1) The passed value is loaded from a formal parameter which is not a gimple
846 register (most probably because it is addressable, the value has to be
847 scalar) and we can guarantee the value has not changed. This case can
848 therefore be described by a simple pass-through jump function. For example:
857 2) The passed value can be described by a simple arithmetic pass-through
864 D.2064_4 = a.1(D) + 4;
867 This case can also occur in combination of the previous one, e.g.:
875 D.2064_4 = a.0_3 + 4;
878 3) The passed value is an address of an object within another one (which
879 also passed by reference). Such situations are described by an ancestor
880 jump function and describe situations such as:
882 B::foo() (struct B * const this)
886 D.1845_2 = &this_1(D)->D.1748;
889 INFO is the structure describing individual parameters access different
890 stages of IPA optimizations. PARMS_AINFO contains the information that is
891 only needed for intraprocedural analysis. */
894 compute_complex_assign_jump_func (struct ipa_node_params
*info
,
895 struct param_analysis_info
*parms_ainfo
,
896 struct ipa_jump_func
*jfunc
,
897 gimple call
, gimple stmt
, tree name
)
899 HOST_WIDE_INT offset
, size
, max_size
;
900 tree op1
, tc_ssa
, base
, ssa
;
903 op1
= gimple_assign_rhs1 (stmt
);
905 if (TREE_CODE (op1
) == SSA_NAME
)
907 if (SSA_NAME_IS_DEFAULT_DEF (op1
))
908 index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (op1
));
910 index
= load_from_unmodified_param (info
->descriptors
, parms_ainfo
,
911 SSA_NAME_DEF_STMT (op1
));
916 index
= load_from_unmodified_param (info
->descriptors
, parms_ainfo
, stmt
);
917 tc_ssa
= gimple_assign_lhs (stmt
);
922 tree op2
= gimple_assign_rhs2 (stmt
);
926 if (!is_gimple_ip_invariant (op2
)
927 || (TREE_CODE_CLASS (gimple_expr_code (stmt
)) != tcc_comparison
928 && !useless_type_conversion_p (TREE_TYPE (name
),
932 ipa_set_jf_arith_pass_through (jfunc
, index
, op2
,
933 gimple_assign_rhs_code (stmt
));
935 else if (gimple_assign_single_p (stmt
)
936 && !detect_type_change_ssa (tc_ssa
, call
, jfunc
))
938 bool agg_p
= parm_ref_data_pass_through_p (&parms_ainfo
[index
],
940 ipa_set_jf_simple_pass_through (jfunc
, index
, agg_p
);
945 if (TREE_CODE (op1
) != ADDR_EXPR
)
947 op1
= TREE_OPERAND (op1
, 0);
948 if (TREE_CODE (TREE_TYPE (op1
)) != RECORD_TYPE
)
950 base
= get_ref_base_and_extent (op1
, &offset
, &size
, &max_size
);
951 if (TREE_CODE (base
) != MEM_REF
952 /* If this is a varying address, punt. */
956 offset
+= mem_ref_offset (base
).low
* BITS_PER_UNIT
;
957 ssa
= TREE_OPERAND (base
, 0);
958 if (TREE_CODE (ssa
) != SSA_NAME
959 || !SSA_NAME_IS_DEFAULT_DEF (ssa
)
963 /* Dynamic types are changed only in constructors and destructors and */
964 index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (ssa
));
966 && !detect_type_change (op1
, base
, call
, jfunc
, offset
))
967 ipa_set_ancestor_jf (jfunc
, offset
, TREE_TYPE (op1
), index
,
968 parm_ref_data_pass_through_p (&parms_ainfo
[index
],
972 /* Extract the base, offset and MEM_REF expression from a statement ASSIGN if
975 iftmp.1_3 = &obj_2(D)->D.1762;
977 The base of the MEM_REF must be a default definition SSA NAME of a
978 parameter. Return NULL_TREE if it looks otherwise. If case of success, the
979 whole MEM_REF expression is returned and the offset calculated from any
980 handled components and the MEM_REF itself is stored into *OFFSET. The whole
981 RHS stripped off the ADDR_EXPR is stored into *OBJ_P. */
984 get_ancestor_addr_info (gimple assign
, tree
*obj_p
, HOST_WIDE_INT
*offset
)
986 HOST_WIDE_INT size
, max_size
;
987 tree expr
, parm
, obj
;
989 if (!gimple_assign_single_p (assign
))
991 expr
= gimple_assign_rhs1 (assign
);
993 if (TREE_CODE (expr
) != ADDR_EXPR
)
995 expr
= TREE_OPERAND (expr
, 0);
997 expr
= get_ref_base_and_extent (expr
, offset
, &size
, &max_size
);
999 if (TREE_CODE (expr
) != MEM_REF
1000 /* If this is a varying address, punt. */
1005 parm
= TREE_OPERAND (expr
, 0);
1006 if (TREE_CODE (parm
) != SSA_NAME
1007 || !SSA_NAME_IS_DEFAULT_DEF (parm
)
1008 || TREE_CODE (SSA_NAME_VAR (parm
)) != PARM_DECL
)
1011 *offset
+= mem_ref_offset (expr
).low
* BITS_PER_UNIT
;
1017 /* Given that an actual argument is an SSA_NAME that is a result of a phi
1018 statement PHI, try to find out whether NAME is in fact a
1019 multiple-inheritance typecast from a descendant into an ancestor of a formal
1020 parameter and thus can be described by an ancestor jump function and if so,
1021 write the appropriate function into JFUNC.
1023 Essentially we want to match the following pattern:
1031 iftmp.1_3 = &obj_2(D)->D.1762;
1034 # iftmp.1_1 = PHI <iftmp.1_3(3), 0B(2)>
1035 D.1879_6 = middleman_1 (iftmp.1_1, i_5(D));
1039 compute_complex_ancestor_jump_func (struct ipa_node_params
*info
,
1040 struct param_analysis_info
*parms_ainfo
,
1041 struct ipa_jump_func
*jfunc
,
1042 gimple call
, gimple phi
)
1044 HOST_WIDE_INT offset
;
1045 gimple assign
, cond
;
1046 basic_block phi_bb
, assign_bb
, cond_bb
;
1047 tree tmp
, parm
, expr
, obj
;
1050 if (gimple_phi_num_args (phi
) != 2)
1053 if (integer_zerop (PHI_ARG_DEF (phi
, 1)))
1054 tmp
= PHI_ARG_DEF (phi
, 0);
1055 else if (integer_zerop (PHI_ARG_DEF (phi
, 0)))
1056 tmp
= PHI_ARG_DEF (phi
, 1);
1059 if (TREE_CODE (tmp
) != SSA_NAME
1060 || SSA_NAME_IS_DEFAULT_DEF (tmp
)
1061 || !POINTER_TYPE_P (TREE_TYPE (tmp
))
1062 || TREE_CODE (TREE_TYPE (TREE_TYPE (tmp
))) != RECORD_TYPE
)
1065 assign
= SSA_NAME_DEF_STMT (tmp
);
1066 assign_bb
= gimple_bb (assign
);
1067 if (!single_pred_p (assign_bb
))
1069 expr
= get_ancestor_addr_info (assign
, &obj
, &offset
);
1072 parm
= TREE_OPERAND (expr
, 0);
1073 index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (parm
));
1074 gcc_assert (index
>= 0);
1076 cond_bb
= single_pred (assign_bb
);
1077 cond
= last_stmt (cond_bb
);
1079 || gimple_code (cond
) != GIMPLE_COND
1080 || gimple_cond_code (cond
) != NE_EXPR
1081 || gimple_cond_lhs (cond
) != parm
1082 || !integer_zerop (gimple_cond_rhs (cond
)))
1085 phi_bb
= gimple_bb (phi
);
1086 for (i
= 0; i
< 2; i
++)
1088 basic_block pred
= EDGE_PRED (phi_bb
, i
)->src
;
1089 if (pred
!= assign_bb
&& pred
!= cond_bb
)
1093 if (!detect_type_change (obj
, expr
, call
, jfunc
, offset
))
1094 ipa_set_ancestor_jf (jfunc
, offset
, TREE_TYPE (obj
), index
,
1095 parm_ref_data_pass_through_p (&parms_ainfo
[index
],
1099 /* Given OP which is passed as an actual argument to a called function,
1100 determine if it is possible to construct a KNOWN_TYPE jump function for it
1101 and if so, create one and store it to JFUNC. */
1104 compute_known_type_jump_func (tree op
, struct ipa_jump_func
*jfunc
,
1107 HOST_WIDE_INT offset
, size
, max_size
;
1110 if (!flag_devirtualize
1111 || TREE_CODE (op
) != ADDR_EXPR
1112 || TREE_CODE (TREE_TYPE (TREE_TYPE (op
))) != RECORD_TYPE
)
1115 op
= TREE_OPERAND (op
, 0);
1116 base
= get_ref_base_and_extent (op
, &offset
, &size
, &max_size
);
1120 || TREE_CODE (TREE_TYPE (base
)) != RECORD_TYPE
1121 || is_global_var (base
))
1124 if (!TYPE_BINFO (TREE_TYPE (base
))
1125 || detect_type_change (op
, base
, call
, jfunc
, offset
))
1128 ipa_set_jf_known_type (jfunc
, offset
, TREE_TYPE (base
), TREE_TYPE (op
));
1131 /* Inspect the given TYPE and return true iff it has the same structure (the
1132 same number of fields of the same types) as a C++ member pointer. If
1133 METHOD_PTR and DELTA are non-NULL, store the trees representing the
1134 corresponding fields there. */
1137 type_like_member_ptr_p (tree type
, tree
*method_ptr
, tree
*delta
)
1141 if (TREE_CODE (type
) != RECORD_TYPE
)
1144 fld
= TYPE_FIELDS (type
);
1145 if (!fld
|| !POINTER_TYPE_P (TREE_TYPE (fld
))
1146 || TREE_CODE (TREE_TYPE (TREE_TYPE (fld
))) != METHOD_TYPE
1147 || !host_integerp (DECL_FIELD_OFFSET (fld
), 1))
1153 fld
= DECL_CHAIN (fld
);
1154 if (!fld
|| INTEGRAL_TYPE_P (fld
)
1155 || !host_integerp (DECL_FIELD_OFFSET (fld
), 1))
1160 if (DECL_CHAIN (fld
))
1166 /* If RHS is an SSA_NAME and it is defined by a simple copy assign statement,
1167 return the rhs of its defining statement. Otherwise return RHS as it
1171 get_ssa_def_if_simple_copy (tree rhs
)
1173 while (TREE_CODE (rhs
) == SSA_NAME
&& !SSA_NAME_IS_DEFAULT_DEF (rhs
))
1175 gimple def_stmt
= SSA_NAME_DEF_STMT (rhs
);
1177 if (gimple_assign_single_p (def_stmt
))
1178 rhs
= gimple_assign_rhs1 (def_stmt
);
1185 /* Simple linked list, describing known contents of an aggregate beforere
1188 struct ipa_known_agg_contents_list
1190 /* Offset and size of the described part of the aggregate. */
1191 HOST_WIDE_INT offset
, size
;
1192 /* Known constant value or NULL if the contents is known to be unknown. */
1194 /* Pointer to the next structure in the list. */
1195 struct ipa_known_agg_contents_list
*next
;
1198 /* Traverse statements from CALL backwards, scanning whether an aggregate given
1199 in ARG is filled in with constant values. ARG can either be an aggregate
1200 expression or a pointer to an aggregate. JFUNC is the jump function into
1201 which the constants are subsequently stored. */
1204 determine_known_aggregate_parts (gimple call
, tree arg
,
1205 struct ipa_jump_func
*jfunc
)
1207 struct ipa_known_agg_contents_list
*list
= NULL
;
1208 int item_count
= 0, const_count
= 0;
1209 HOST_WIDE_INT arg_offset
, arg_size
;
1210 gimple_stmt_iterator gsi
;
1212 bool check_ref
, by_ref
;
1215 /* The function operates in three stages. First, we prepare check_ref, r,
1216 arg_base and arg_offset based on what is actually passed as an actual
1219 if (POINTER_TYPE_P (TREE_TYPE (arg
)))
1222 if (TREE_CODE (arg
) == SSA_NAME
)
1225 if (!host_integerp (TYPE_SIZE (TREE_TYPE (TREE_TYPE (arg
))), 1))
1230 type_size
= TYPE_SIZE (TREE_TYPE (TREE_TYPE (arg
)));
1231 arg_size
= tree_low_cst (type_size
, 1);
1232 ao_ref_init_from_ptr_and_size (&r
, arg_base
, NULL_TREE
);
1234 else if (TREE_CODE (arg
) == ADDR_EXPR
)
1236 HOST_WIDE_INT arg_max_size
;
1238 arg
= TREE_OPERAND (arg
, 0);
1239 arg_base
= get_ref_base_and_extent (arg
, &arg_offset
, &arg_size
,
1241 if (arg_max_size
== -1
1242 || arg_max_size
!= arg_size
1245 if (DECL_P (arg_base
))
1249 size
= build_int_cst (integer_type_node
, arg_size
);
1250 ao_ref_init_from_ptr_and_size (&r
, arg_base
, size
);
1260 HOST_WIDE_INT arg_max_size
;
1262 gcc_checking_assert (AGGREGATE_TYPE_P (TREE_TYPE (arg
)));
1266 arg_base
= get_ref_base_and_extent (arg
, &arg_offset
, &arg_size
,
1268 if (arg_max_size
== -1
1269 || arg_max_size
!= arg_size
1273 ao_ref_init (&r
, arg
);
1276 /* Second stage walks back the BB, looks at individual statements and as long
1277 as it is confident of how the statements affect contents of the
1278 aggregates, it builds a sorted linked list of ipa_agg_jf_list structures
1280 gsi
= gsi_for_stmt (call
);
1282 for (; !gsi_end_p (gsi
); gsi_prev (&gsi
))
1284 struct ipa_known_agg_contents_list
*n
, **p
;
1285 gimple stmt
= gsi_stmt (gsi
);
1286 HOST_WIDE_INT lhs_offset
, lhs_size
, lhs_max_size
;
1287 tree lhs
, rhs
, lhs_base
;
1288 bool partial_overlap
;
1290 if (!stmt_may_clobber_ref_p_1 (stmt
, &r
))
1292 if (!gimple_assign_single_p (stmt
))
1295 lhs
= gimple_assign_lhs (stmt
);
1296 rhs
= gimple_assign_rhs1 (stmt
);
1297 if (!is_gimple_reg_type (rhs
))
1300 lhs_base
= get_ref_base_and_extent (lhs
, &lhs_offset
, &lhs_size
,
1302 if (lhs_max_size
== -1
1303 || lhs_max_size
!= lhs_size
1304 || (lhs_offset
< arg_offset
1305 && lhs_offset
+ lhs_size
> arg_offset
)
1306 || (lhs_offset
< arg_offset
+ arg_size
1307 && lhs_offset
+ lhs_size
> arg_offset
+ arg_size
))
1312 if (TREE_CODE (lhs_base
) != MEM_REF
1313 || TREE_OPERAND (lhs_base
, 0) != arg_base
1314 || !integer_zerop (TREE_OPERAND (lhs_base
, 1)))
1317 else if (lhs_base
!= arg_base
)
1319 if (DECL_P (lhs_base
))
1325 if (lhs_offset
+ lhs_size
< arg_offset
1326 || lhs_offset
>= (arg_offset
+ arg_size
))
1329 partial_overlap
= false;
1331 while (*p
&& (*p
)->offset
< lhs_offset
)
1333 if ((*p
)->offset
+ (*p
)->size
> lhs_offset
)
1335 partial_overlap
= true;
1340 if (partial_overlap
)
1342 if (*p
&& (*p
)->offset
< lhs_offset
+ lhs_size
)
1344 if ((*p
)->offset
== lhs_offset
&& (*p
)->size
== lhs_size
)
1345 /* We already know this value is subsequently overwritten with
1349 /* Otherwise this is a partial overlap which we cannot
1354 rhs
= get_ssa_def_if_simple_copy (rhs
);
1355 n
= XALLOCA (struct ipa_known_agg_contents_list
);
1357 n
->offset
= lhs_offset
;
1358 if (is_gimple_ip_invariant (rhs
))
1364 n
->constant
= NULL_TREE
;
1369 if (const_count
== PARAM_VALUE (PARAM_IPA_MAX_AGG_ITEMS
)
1370 || item_count
== 2 * PARAM_VALUE (PARAM_IPA_MAX_AGG_ITEMS
))
1374 /* Third stage just goes over the list and creates an appropriate vector of
1375 ipa_agg_jf_item structures out of it, of sourse only if there are
1376 any known constants to begin with. */
1380 jfunc
->agg
.by_ref
= by_ref
;
1381 vec_alloc (jfunc
->agg
.items
, const_count
);
1386 struct ipa_agg_jf_item item
;
1387 item
.offset
= list
->offset
- arg_offset
;
1388 item
.value
= prune_expression_for_jf (list
->constant
);
1389 jfunc
->agg
.items
->quick_push (item
);
1396 /* Compute jump function for all arguments of callsite CS and insert the
1397 information in the jump_functions array in the ipa_edge_args corresponding
1398 to this callsite. */
1401 ipa_compute_jump_functions_for_edge (struct param_analysis_info
*parms_ainfo
,
1402 struct cgraph_edge
*cs
)
1404 struct ipa_node_params
*info
= IPA_NODE_REF (cs
->caller
);
1405 struct ipa_edge_args
*args
= IPA_EDGE_REF (cs
);
1406 gimple call
= cs
->call_stmt
;
1407 int n
, arg_num
= gimple_call_num_args (call
);
1409 if (arg_num
== 0 || args
->jump_functions
)
1411 vec_safe_grow_cleared (args
->jump_functions
, arg_num
);
1413 for (n
= 0; n
< arg_num
; n
++)
1415 struct ipa_jump_func
*jfunc
= ipa_get_ith_jump_func (args
, n
);
1416 tree arg
= gimple_call_arg (call
, n
);
1418 if (is_gimple_ip_invariant (arg
))
1419 ipa_set_jf_constant (jfunc
, arg
);
1420 else if (!is_gimple_reg_type (TREE_TYPE (arg
))
1421 && TREE_CODE (arg
) == PARM_DECL
)
1423 int index
= ipa_get_param_decl_index (info
, arg
);
1425 gcc_assert (index
>=0);
1426 /* Aggregate passed by value, check for pass-through, otherwise we
1427 will attempt to fill in aggregate contents later in this
1429 if (parm_preserved_before_stmt_p (&parms_ainfo
[index
], call
, arg
))
1431 ipa_set_jf_simple_pass_through (jfunc
, index
, false);
1435 else if (TREE_CODE (arg
) == SSA_NAME
)
1437 if (SSA_NAME_IS_DEFAULT_DEF (arg
))
1439 int index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (arg
));
1441 && !detect_type_change_ssa (arg
, call
, jfunc
))
1444 agg_p
= parm_ref_data_pass_through_p (&parms_ainfo
[index
],
1446 ipa_set_jf_simple_pass_through (jfunc
, index
, agg_p
);
1451 gimple stmt
= SSA_NAME_DEF_STMT (arg
);
1452 if (is_gimple_assign (stmt
))
1453 compute_complex_assign_jump_func (info
, parms_ainfo
, jfunc
,
1455 else if (gimple_code (stmt
) == GIMPLE_PHI
)
1456 compute_complex_ancestor_jump_func (info
, parms_ainfo
, jfunc
,
1461 compute_known_type_jump_func (arg
, jfunc
, call
);
1463 if ((jfunc
->type
!= IPA_JF_PASS_THROUGH
1464 || !ipa_get_jf_pass_through_agg_preserved (jfunc
))
1465 && (jfunc
->type
!= IPA_JF_ANCESTOR
1466 || !ipa_get_jf_ancestor_agg_preserved (jfunc
))
1467 && (AGGREGATE_TYPE_P (TREE_TYPE (arg
))
1468 || (POINTER_TYPE_P (TREE_TYPE (arg
)))))
1469 determine_known_aggregate_parts (call
, arg
, jfunc
);
1473 /* Compute jump functions for all edges - both direct and indirect - outgoing
1474 from NODE. Also count the actual arguments in the process. */
1477 ipa_compute_jump_functions (struct cgraph_node
*node
,
1478 struct param_analysis_info
*parms_ainfo
)
1480 struct cgraph_edge
*cs
;
1482 for (cs
= node
->callees
; cs
; cs
= cs
->next_callee
)
1484 struct cgraph_node
*callee
= cgraph_function_or_thunk_node (cs
->callee
,
1486 /* We do not need to bother analyzing calls to unknown
1487 functions unless they may become known during lto/whopr. */
1488 if (!callee
->analyzed
&& !flag_lto
)
1490 ipa_compute_jump_functions_for_edge (parms_ainfo
, cs
);
1493 for (cs
= node
->indirect_calls
; cs
; cs
= cs
->next_callee
)
1494 ipa_compute_jump_functions_for_edge (parms_ainfo
, cs
);
1497 /* If STMT looks like a statement loading a value from a member pointer formal
1498 parameter, return that parameter and store the offset of the field to
1499 *OFFSET_P, if it is non-NULL. Otherwise return NULL (but *OFFSET_P still
1500 might be clobbered). If USE_DELTA, then we look for a use of the delta
1501 field rather than the pfn. */
1504 ipa_get_stmt_member_ptr_load_param (gimple stmt
, bool use_delta
,
1505 HOST_WIDE_INT
*offset_p
)
1507 tree rhs
, rec
, ref_field
, ref_offset
, fld
, ptr_field
, delta_field
;
1509 if (!gimple_assign_single_p (stmt
))
1512 rhs
= gimple_assign_rhs1 (stmt
);
1513 if (TREE_CODE (rhs
) == COMPONENT_REF
)
1515 ref_field
= TREE_OPERAND (rhs
, 1);
1516 rhs
= TREE_OPERAND (rhs
, 0);
1519 ref_field
= NULL_TREE
;
1520 if (TREE_CODE (rhs
) != MEM_REF
)
1522 rec
= TREE_OPERAND (rhs
, 0);
1523 if (TREE_CODE (rec
) != ADDR_EXPR
)
1525 rec
= TREE_OPERAND (rec
, 0);
1526 if (TREE_CODE (rec
) != PARM_DECL
1527 || !type_like_member_ptr_p (TREE_TYPE (rec
), &ptr_field
, &delta_field
))
1529 ref_offset
= TREE_OPERAND (rhs
, 1);
1536 *offset_p
= int_bit_position (fld
);
1540 if (integer_nonzerop (ref_offset
))
1542 return ref_field
== fld
? rec
: NULL_TREE
;
1545 return tree_int_cst_equal (byte_position (fld
), ref_offset
) ? rec
1549 /* Returns true iff T is an SSA_NAME defined by a statement. */
1552 ipa_is_ssa_with_stmt_def (tree t
)
1554 if (TREE_CODE (t
) == SSA_NAME
1555 && !SSA_NAME_IS_DEFAULT_DEF (t
))
1561 /* Find the indirect call graph edge corresponding to STMT and mark it as a
1562 call to a parameter number PARAM_INDEX. NODE is the caller. Return the
1563 indirect call graph edge. */
1565 static struct cgraph_edge
*
1566 ipa_note_param_call (struct cgraph_node
*node
, int param_index
, gimple stmt
)
1568 struct cgraph_edge
*cs
;
1570 cs
= cgraph_edge (node
, stmt
);
1571 cs
->indirect_info
->param_index
= param_index
;
1572 cs
->indirect_info
->offset
= 0;
1573 cs
->indirect_info
->polymorphic
= 0;
1574 cs
->indirect_info
->agg_contents
= 0;
1578 /* Analyze the CALL and examine uses of formal parameters of the caller NODE
1579 (described by INFO). PARMS_AINFO is a pointer to a vector containing
1580 intermediate information about each formal parameter. Currently it checks
1581 whether the call calls a pointer that is a formal parameter and if so, the
1582 parameter is marked with the called flag and an indirect call graph edge
1583 describing the call is created. This is very simple for ordinary pointers
1584 represented in SSA but not-so-nice when it comes to member pointers. The
1585 ugly part of this function does nothing more than trying to match the
1586 pattern of such a call. An example of such a pattern is the gimple dump
1587 below, the call is on the last line:
1590 f$__delta_5 = f.__delta;
1591 f$__pfn_24 = f.__pfn;
1595 f$__delta_5 = MEM[(struct *)&f];
1596 f$__pfn_24 = MEM[(struct *)&f + 4B];
1598 and a few lines below:
1601 D.2496_3 = (int) f$__pfn_24;
1602 D.2497_4 = D.2496_3 & 1;
1609 D.2500_7 = (unsigned int) f$__delta_5;
1610 D.2501_8 = &S + D.2500_7;
1611 D.2502_9 = (int (*__vtbl_ptr_type) (void) * *) D.2501_8;
1612 D.2503_10 = *D.2502_9;
1613 D.2504_12 = f$__pfn_24 + -1;
1614 D.2505_13 = (unsigned int) D.2504_12;
1615 D.2506_14 = D.2503_10 + D.2505_13;
1616 D.2507_15 = *D.2506_14;
1617 iftmp.11_16 = (String:: *) D.2507_15;
1620 # iftmp.11_1 = PHI <iftmp.11_16(3), f$__pfn_24(2)>
1621 D.2500_19 = (unsigned int) f$__delta_5;
1622 D.2508_20 = &S + D.2500_19;
1623 D.2493_21 = iftmp.11_1 (D.2508_20, 4);
1625 Such patterns are results of simple calls to a member pointer:
1627 int doprinting (int (MyString::* f)(int) const)
1629 MyString S ("somestring");
1634 Moreover, the function also looks for called pointers loaded from aggregates
1635 passed by value or reference. */
1638 ipa_analyze_indirect_call_uses (struct cgraph_node
*node
,
1639 struct ipa_node_params
*info
,
1640 struct param_analysis_info
*parms_ainfo
,
1641 gimple call
, tree target
)
1646 tree rec
, rec2
, cond
;
1649 basic_block bb
, virt_bb
, join
;
1650 HOST_WIDE_INT offset
;
1653 if (SSA_NAME_IS_DEFAULT_DEF (target
))
1655 tree var
= SSA_NAME_VAR (target
);
1656 index
= ipa_get_param_decl_index (info
, var
);
1658 ipa_note_param_call (node
, index
, call
);
1662 def
= SSA_NAME_DEF_STMT (target
);
1663 if (gimple_assign_single_p (def
)
1664 && ipa_load_from_parm_agg_1 (info
->descriptors
, parms_ainfo
, def
,
1665 gimple_assign_rhs1 (def
), &index
, &offset
,
1668 struct cgraph_edge
*cs
= ipa_note_param_call (node
, index
, call
);
1669 cs
->indirect_info
->offset
= offset
;
1670 cs
->indirect_info
->agg_contents
= 1;
1671 cs
->indirect_info
->by_ref
= by_ref
;
1675 /* Now we need to try to match the complex pattern of calling a member
1677 if (gimple_code (def
) != GIMPLE_PHI
1678 || gimple_phi_num_args (def
) != 2
1679 || !POINTER_TYPE_P (TREE_TYPE (target
))
1680 || TREE_CODE (TREE_TYPE (TREE_TYPE (target
))) != METHOD_TYPE
)
1683 /* First, we need to check whether one of these is a load from a member
1684 pointer that is a parameter to this function. */
1685 n1
= PHI_ARG_DEF (def
, 0);
1686 n2
= PHI_ARG_DEF (def
, 1);
1687 if (!ipa_is_ssa_with_stmt_def (n1
) || !ipa_is_ssa_with_stmt_def (n2
))
1689 d1
= SSA_NAME_DEF_STMT (n1
);
1690 d2
= SSA_NAME_DEF_STMT (n2
);
1692 join
= gimple_bb (def
);
1693 if ((rec
= ipa_get_stmt_member_ptr_load_param (d1
, false, &offset
)))
1695 if (ipa_get_stmt_member_ptr_load_param (d2
, false, NULL
))
1698 bb
= EDGE_PRED (join
, 0)->src
;
1699 virt_bb
= gimple_bb (d2
);
1701 else if ((rec
= ipa_get_stmt_member_ptr_load_param (d2
, false, &offset
)))
1703 bb
= EDGE_PRED (join
, 1)->src
;
1704 virt_bb
= gimple_bb (d1
);
1709 /* Second, we need to check that the basic blocks are laid out in the way
1710 corresponding to the pattern. */
1712 if (!single_pred_p (virt_bb
) || !single_succ_p (virt_bb
)
1713 || single_pred (virt_bb
) != bb
1714 || single_succ (virt_bb
) != join
)
1717 /* Third, let's see that the branching is done depending on the least
1718 significant bit of the pfn. */
1720 branch
= last_stmt (bb
);
1721 if (!branch
|| gimple_code (branch
) != GIMPLE_COND
)
1724 if ((gimple_cond_code (branch
) != NE_EXPR
1725 && gimple_cond_code (branch
) != EQ_EXPR
)
1726 || !integer_zerop (gimple_cond_rhs (branch
)))
1729 cond
= gimple_cond_lhs (branch
);
1730 if (!ipa_is_ssa_with_stmt_def (cond
))
1733 def
= SSA_NAME_DEF_STMT (cond
);
1734 if (!is_gimple_assign (def
)
1735 || gimple_assign_rhs_code (def
) != BIT_AND_EXPR
1736 || !integer_onep (gimple_assign_rhs2 (def
)))
1739 cond
= gimple_assign_rhs1 (def
);
1740 if (!ipa_is_ssa_with_stmt_def (cond
))
1743 def
= SSA_NAME_DEF_STMT (cond
);
1745 if (is_gimple_assign (def
)
1746 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def
)))
1748 cond
= gimple_assign_rhs1 (def
);
1749 if (!ipa_is_ssa_with_stmt_def (cond
))
1751 def
= SSA_NAME_DEF_STMT (cond
);
1754 rec2
= ipa_get_stmt_member_ptr_load_param (def
,
1755 (TARGET_PTRMEMFUNC_VBIT_LOCATION
1756 == ptrmemfunc_vbit_in_delta
),
1761 index
= ipa_get_param_decl_index (info
, rec
);
1763 && parm_preserved_before_stmt_p (&parms_ainfo
[index
], call
, rec
))
1765 struct cgraph_edge
*cs
= ipa_note_param_call (node
, index
, call
);
1766 cs
->indirect_info
->offset
= offset
;
1767 cs
->indirect_info
->agg_contents
= 1;
1773 /* Analyze a CALL to an OBJ_TYPE_REF which is passed in TARGET and if the
1774 object referenced in the expression is a formal parameter of the caller
1775 (described by INFO), create a call note for the statement. */
1778 ipa_analyze_virtual_call_uses (struct cgraph_node
*node
,
1779 struct ipa_node_params
*info
, gimple call
,
1782 struct cgraph_edge
*cs
;
1783 struct cgraph_indirect_call_info
*ii
;
1784 struct ipa_jump_func jfunc
;
1785 tree obj
= OBJ_TYPE_REF_OBJECT (target
);
1787 HOST_WIDE_INT anc_offset
;
1789 if (!flag_devirtualize
)
1792 if (TREE_CODE (obj
) != SSA_NAME
)
1795 if (SSA_NAME_IS_DEFAULT_DEF (obj
))
1797 if (TREE_CODE (SSA_NAME_VAR (obj
)) != PARM_DECL
)
1801 index
= ipa_get_param_decl_index (info
, SSA_NAME_VAR (obj
));
1802 gcc_assert (index
>= 0);
1803 if (detect_type_change_ssa (obj
, call
, &jfunc
))
1808 gimple stmt
= SSA_NAME_DEF_STMT (obj
);
1811 expr
= get_ancestor_addr_info (stmt
, &obj
, &anc_offset
);
1814 index
= ipa_get_param_decl_index (info
,
1815 SSA_NAME_VAR (TREE_OPERAND (expr
, 0)));
1816 gcc_assert (index
>= 0);
1817 if (detect_type_change (obj
, expr
, call
, &jfunc
, anc_offset
))
1821 cs
= ipa_note_param_call (node
, index
, call
);
1822 ii
= cs
->indirect_info
;
1823 ii
->offset
= anc_offset
;
1824 ii
->otr_token
= tree_low_cst (OBJ_TYPE_REF_TOKEN (target
), 1);
1825 ii
->otr_type
= TREE_TYPE (TREE_TYPE (OBJ_TYPE_REF_OBJECT (target
)));
1826 ii
->polymorphic
= 1;
1829 /* Analyze a call statement CALL whether and how it utilizes formal parameters
1830 of the caller (described by INFO). PARMS_AINFO is a pointer to a vector
1831 containing intermediate information about each formal parameter. */
1834 ipa_analyze_call_uses (struct cgraph_node
*node
,
1835 struct ipa_node_params
*info
,
1836 struct param_analysis_info
*parms_ainfo
, gimple call
)
1838 tree target
= gimple_call_fn (call
);
1842 if (TREE_CODE (target
) == SSA_NAME
)
1843 ipa_analyze_indirect_call_uses (node
, info
, parms_ainfo
, call
, target
);
1844 else if (TREE_CODE (target
) == OBJ_TYPE_REF
)
1845 ipa_analyze_virtual_call_uses (node
, info
, call
, target
);
1849 /* Analyze the call statement STMT with respect to formal parameters (described
1850 in INFO) of caller given by NODE. Currently it only checks whether formal
1851 parameters are called. PARMS_AINFO is a pointer to a vector containing
1852 intermediate information about each formal parameter. */
1855 ipa_analyze_stmt_uses (struct cgraph_node
*node
, struct ipa_node_params
*info
,
1856 struct param_analysis_info
*parms_ainfo
, gimple stmt
)
1858 if (is_gimple_call (stmt
))
1859 ipa_analyze_call_uses (node
, info
, parms_ainfo
, stmt
);
1862 /* Callback of walk_stmt_load_store_addr_ops for the visit_load.
1863 If OP is a parameter declaration, mark it as used in the info structure
1867 visit_ref_for_mod_analysis (gimple stmt ATTRIBUTE_UNUSED
,
1868 tree op
, void *data
)
1870 struct ipa_node_params
*info
= (struct ipa_node_params
*) data
;
1872 op
= get_base_address (op
);
1874 && TREE_CODE (op
) == PARM_DECL
)
1876 int index
= ipa_get_param_decl_index (info
, op
);
1877 gcc_assert (index
>= 0);
1878 ipa_set_param_used (info
, index
, true);
1884 /* Scan the function body of NODE and inspect the uses of formal parameters.
1885 Store the findings in various structures of the associated ipa_node_params
1886 structure, such as parameter flags, notes etc. PARMS_AINFO is a pointer to a
1887 vector containing intermediate information about each formal parameter. */
1890 ipa_analyze_params_uses (struct cgraph_node
*node
,
1891 struct param_analysis_info
*parms_ainfo
)
1893 tree decl
= node
->symbol
.decl
;
1895 struct function
*func
;
1896 gimple_stmt_iterator gsi
;
1897 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
1900 if (ipa_get_param_count (info
) == 0 || info
->uses_analysis_done
)
1903 for (i
= 0; i
< ipa_get_param_count (info
); i
++)
1905 tree parm
= ipa_get_param (info
, i
);
1907 /* For SSA regs see if parameter is used. For non-SSA we compute
1908 the flag during modification analysis. */
1909 if (is_gimple_reg (parm
)
1910 && (ddef
= ssa_default_def (DECL_STRUCT_FUNCTION (node
->symbol
.decl
),
1912 && !has_zero_uses (ddef
))
1913 ipa_set_param_used (info
, i
, true);
1916 func
= DECL_STRUCT_FUNCTION (decl
);
1917 FOR_EACH_BB_FN (bb
, func
)
1919 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1921 gimple stmt
= gsi_stmt (gsi
);
1923 if (is_gimple_debug (stmt
))
1926 ipa_analyze_stmt_uses (node
, info
, parms_ainfo
, stmt
);
1927 walk_stmt_load_store_addr_ops (stmt
, info
,
1928 visit_ref_for_mod_analysis
,
1929 visit_ref_for_mod_analysis
,
1930 visit_ref_for_mod_analysis
);
1932 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1933 walk_stmt_load_store_addr_ops (gsi_stmt (gsi
), info
,
1934 visit_ref_for_mod_analysis
,
1935 visit_ref_for_mod_analysis
,
1936 visit_ref_for_mod_analysis
);
1939 info
->uses_analysis_done
= 1;
1942 /* Free stuff in PARMS_AINFO, assume there are PARAM_COUNT parameters. */
1945 free_parms_ainfo (struct param_analysis_info
*parms_ainfo
, int param_count
)
1949 for (i
= 0; i
< param_count
; i
++)
1951 if (parms_ainfo
[i
].parm_visited_statements
)
1952 BITMAP_FREE (parms_ainfo
[i
].parm_visited_statements
);
1953 if (parms_ainfo
[i
].pt_visited_statements
)
1954 BITMAP_FREE (parms_ainfo
[i
].pt_visited_statements
);
1958 /* Initialize the array describing properties of of formal parameters
1959 of NODE, analyze their uses and compute jump functions associated
1960 with actual arguments of calls from within NODE. */
1963 ipa_analyze_node (struct cgraph_node
*node
)
1965 struct ipa_node_params
*info
;
1966 struct param_analysis_info
*parms_ainfo
;
1969 ipa_check_create_node_params ();
1970 ipa_check_create_edge_args ();
1971 info
= IPA_NODE_REF (node
);
1972 push_cfun (DECL_STRUCT_FUNCTION (node
->symbol
.decl
));
1973 ipa_initialize_node_params (node
);
1975 param_count
= ipa_get_param_count (info
);
1976 parms_ainfo
= XALLOCAVEC (struct param_analysis_info
, param_count
);
1977 memset (parms_ainfo
, 0, sizeof (struct param_analysis_info
) * param_count
);
1979 ipa_analyze_params_uses (node
, parms_ainfo
);
1980 ipa_compute_jump_functions (node
, parms_ainfo
);
1982 free_parms_ainfo (parms_ainfo
, param_count
);
1987 /* Update the jump function DST when the call graph edge corresponding to SRC is
1988 is being inlined, knowing that DST is of type ancestor and src of known
1992 combine_known_type_and_ancestor_jfs (struct ipa_jump_func
*src
,
1993 struct ipa_jump_func
*dst
)
1995 HOST_WIDE_INT combined_offset
;
1998 combined_offset
= ipa_get_jf_known_type_offset (src
)
1999 + ipa_get_jf_ancestor_offset (dst
);
2000 combined_type
= ipa_get_jf_ancestor_type (dst
);
2002 ipa_set_jf_known_type (dst
, combined_offset
,
2003 ipa_get_jf_known_type_base_type (src
),
2007 /* Update the jump functions associated with call graph edge E when the call
2008 graph edge CS is being inlined, assuming that E->caller is already (possibly
2009 indirectly) inlined into CS->callee and that E has not been inlined. */
2012 update_jump_functions_after_inlining (struct cgraph_edge
*cs
,
2013 struct cgraph_edge
*e
)
2015 struct ipa_edge_args
*top
= IPA_EDGE_REF (cs
);
2016 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
2017 int count
= ipa_get_cs_argument_count (args
);
2020 for (i
= 0; i
< count
; i
++)
2022 struct ipa_jump_func
*dst
= ipa_get_ith_jump_func (args
, i
);
2024 if (dst
->type
== IPA_JF_ANCESTOR
)
2026 struct ipa_jump_func
*src
;
2027 int dst_fid
= dst
->value
.ancestor
.formal_id
;
2029 /* Variable number of arguments can cause havoc if we try to access
2030 one that does not exist in the inlined edge. So make sure we
2032 if (dst_fid
>= ipa_get_cs_argument_count (top
))
2034 dst
->type
= IPA_JF_UNKNOWN
;
2038 src
= ipa_get_ith_jump_func (top
, dst_fid
);
2041 && (dst
->value
.ancestor
.agg_preserved
|| !src
->agg
.by_ref
))
2043 struct ipa_agg_jf_item
*item
;
2046 /* Currently we do not produce clobber aggregate jump functions,
2047 replace with merging when we do. */
2048 gcc_assert (!dst
->agg
.items
);
2050 dst
->agg
.items
= vec_safe_copy (src
->agg
.items
);
2051 dst
->agg
.by_ref
= src
->agg
.by_ref
;
2052 FOR_EACH_VEC_SAFE_ELT (dst
->agg
.items
, j
, item
)
2053 item
->offset
-= dst
->value
.ancestor
.offset
;
2056 if (src
->type
== IPA_JF_KNOWN_TYPE
)
2057 combine_known_type_and_ancestor_jfs (src
, dst
);
2058 else if (src
->type
== IPA_JF_PASS_THROUGH
2059 && src
->value
.pass_through
.operation
== NOP_EXPR
)
2061 dst
->value
.ancestor
.formal_id
= src
->value
.pass_through
.formal_id
;
2062 dst
->value
.ancestor
.agg_preserved
&=
2063 src
->value
.pass_through
.agg_preserved
;
2065 else if (src
->type
== IPA_JF_ANCESTOR
)
2067 dst
->value
.ancestor
.formal_id
= src
->value
.ancestor
.formal_id
;
2068 dst
->value
.ancestor
.offset
+= src
->value
.ancestor
.offset
;
2069 dst
->value
.ancestor
.agg_preserved
&=
2070 src
->value
.ancestor
.agg_preserved
;
2073 dst
->type
= IPA_JF_UNKNOWN
;
2075 else if (dst
->type
== IPA_JF_PASS_THROUGH
)
2077 struct ipa_jump_func
*src
;
2078 /* We must check range due to calls with variable number of arguments
2079 and we cannot combine jump functions with operations. */
2080 if (dst
->value
.pass_through
.operation
== NOP_EXPR
2081 && (dst
->value
.pass_through
.formal_id
2082 < ipa_get_cs_argument_count (top
)))
2085 int dst_fid
= dst
->value
.pass_through
.formal_id
;
2086 src
= ipa_get_ith_jump_func (top
, dst_fid
);
2087 agg_p
= dst
->value
.pass_through
.agg_preserved
;
2089 dst
->type
= src
->type
;
2090 dst
->value
= src
->value
;
2093 && (agg_p
|| !src
->agg
.by_ref
))
2095 /* Currently we do not produce clobber aggregate jump
2096 functions, replace with merging when we do. */
2097 gcc_assert (!dst
->agg
.items
);
2099 dst
->agg
.by_ref
= src
->agg
.by_ref
;
2100 dst
->agg
.items
= vec_safe_copy (src
->agg
.items
);
2105 if (dst
->type
== IPA_JF_PASS_THROUGH
)
2106 dst
->value
.pass_through
.agg_preserved
= false;
2107 else if (dst
->type
== IPA_JF_ANCESTOR
)
2108 dst
->value
.ancestor
.agg_preserved
= false;
2112 dst
->type
= IPA_JF_UNKNOWN
;
2117 /* If TARGET is an addr_expr of a function declaration, make it the destination
2118 of an indirect edge IE and return the edge. Otherwise, return NULL. */
2120 struct cgraph_edge
*
2121 ipa_make_edge_direct_to_target (struct cgraph_edge
*ie
, tree target
)
2123 struct cgraph_node
*callee
;
2124 struct inline_edge_summary
*es
= inline_edge_summary (ie
);
2126 if (TREE_CODE (target
) == ADDR_EXPR
)
2127 target
= TREE_OPERAND (target
, 0);
2128 if (TREE_CODE (target
) != FUNCTION_DECL
)
2130 callee
= cgraph_get_node (target
);
2133 ipa_check_create_node_params ();
2135 /* We can not make edges to inline clones. It is bug that someone removed
2136 the cgraph node too early. */
2137 gcc_assert (!callee
->global
.inlined_to
);
2139 cgraph_make_edge_direct (ie
, callee
);
2140 es
= inline_edge_summary (ie
);
2141 es
->call_stmt_size
-= (eni_size_weights
.indirect_call_cost
2142 - eni_size_weights
.call_cost
);
2143 es
->call_stmt_time
-= (eni_time_weights
.indirect_call_cost
2144 - eni_time_weights
.call_cost
);
2147 fprintf (dump_file
, "ipa-prop: Discovered %s call to a known target "
2148 "(%s/%i -> %s/%i), for stmt ",
2149 ie
->indirect_info
->polymorphic
? "a virtual" : "an indirect",
2150 xstrdup (cgraph_node_name (ie
->caller
)), ie
->caller
->uid
,
2151 xstrdup (cgraph_node_name (ie
->callee
)), ie
->callee
->uid
);
2153 print_gimple_stmt (dump_file
, ie
->call_stmt
, 2, TDF_SLIM
);
2155 fprintf (dump_file
, "with uid %i\n", ie
->lto_stmt_uid
);
2157 callee
= cgraph_function_or_thunk_node (callee
, NULL
);
2162 /* Retrieve value from aggregate jump function AGG for the given OFFSET or
2163 return NULL if there is not any. BY_REF specifies whether the value has to
2164 be passed by reference or by value. */
2167 ipa_find_agg_cst_for_param (struct ipa_agg_jump_function
*agg
,
2168 HOST_WIDE_INT offset
, bool by_ref
)
2170 struct ipa_agg_jf_item
*item
;
2173 if (by_ref
!= agg
->by_ref
)
2176 FOR_EACH_VEC_SAFE_ELT (agg
->items
, i
, item
)
2177 if (item
->offset
== offset
)
2179 /* Currently we do not have clobber values, return NULL for them once
2181 gcc_checking_assert (is_gimple_ip_invariant (item
->value
));
2187 /* Try to find a destination for indirect edge IE that corresponds to a simple
2188 call or a call of a member function pointer and where the destination is a
2189 pointer formal parameter described by jump function JFUNC. If it can be
2190 determined, return the newly direct edge, otherwise return NULL. */
2192 static struct cgraph_edge
*
2193 try_make_edge_direct_simple_call (struct cgraph_edge
*ie
,
2194 struct ipa_jump_func
*jfunc
)
2198 if (ie
->indirect_info
->agg_contents
)
2200 target
= ipa_find_agg_cst_for_param (&jfunc
->agg
,
2201 ie
->indirect_info
->offset
,
2202 ie
->indirect_info
->by_ref
);
2208 if (jfunc
->type
!= IPA_JF_CONST
)
2210 target
= ipa_get_jf_constant (jfunc
);
2212 return ipa_make_edge_direct_to_target (ie
, target
);
2215 /* Try to find a destination for indirect edge IE that corresponds to a
2216 virtual call based on a formal parameter which is described by jump
2217 function JFUNC and if it can be determined, make it direct and return the
2218 direct edge. Otherwise, return NULL. */
2220 static struct cgraph_edge
*
2221 try_make_edge_direct_virtual_call (struct cgraph_edge
*ie
,
2222 struct ipa_jump_func
*jfunc
)
2226 if (jfunc
->type
!= IPA_JF_KNOWN_TYPE
)
2229 binfo
= TYPE_BINFO (ipa_get_jf_known_type_base_type (jfunc
));
2230 gcc_checking_assert (binfo
);
2231 binfo
= get_binfo_at_offset (binfo
, ipa_get_jf_known_type_offset (jfunc
)
2232 + ie
->indirect_info
->offset
,
2233 ie
->indirect_info
->otr_type
);
2235 target
= gimple_get_virt_method_for_binfo (ie
->indirect_info
->otr_token
,
2241 return ipa_make_edge_direct_to_target (ie
, target
);
2246 /* Update the param called notes associated with NODE when CS is being inlined,
2247 assuming NODE is (potentially indirectly) inlined into CS->callee.
2248 Moreover, if the callee is discovered to be constant, create a new cgraph
2249 edge for it. Newly discovered indirect edges will be added to *NEW_EDGES,
2250 unless NEW_EDGES is NULL. Return true iff a new edge(s) were created. */
2253 update_indirect_edges_after_inlining (struct cgraph_edge
*cs
,
2254 struct cgraph_node
*node
,
2255 vec
<cgraph_edge_p
> *new_edges
)
2257 struct ipa_edge_args
*top
;
2258 struct cgraph_edge
*ie
, *next_ie
, *new_direct_edge
;
2261 ipa_check_create_edge_args ();
2262 top
= IPA_EDGE_REF (cs
);
2264 for (ie
= node
->indirect_calls
; ie
; ie
= next_ie
)
2266 struct cgraph_indirect_call_info
*ici
= ie
->indirect_info
;
2267 struct ipa_jump_func
*jfunc
;
2270 next_ie
= ie
->next_callee
;
2272 if (ici
->param_index
== -1)
2275 /* We must check range due to calls with variable number of arguments: */
2276 if (ici
->param_index
>= ipa_get_cs_argument_count (top
))
2278 ici
->param_index
= -1;
2282 param_index
= ici
->param_index
;
2283 jfunc
= ipa_get_ith_jump_func (top
, param_index
);
2284 if (jfunc
->type
== IPA_JF_PASS_THROUGH
2285 && ipa_get_jf_pass_through_operation (jfunc
) == NOP_EXPR
)
2287 if (ici
->agg_contents
2288 && !ipa_get_jf_pass_through_agg_preserved (jfunc
))
2289 ici
->param_index
= -1;
2291 ici
->param_index
= ipa_get_jf_pass_through_formal_id (jfunc
);
2293 else if (jfunc
->type
== IPA_JF_ANCESTOR
)
2295 if (ici
->agg_contents
2296 && !ipa_get_jf_ancestor_agg_preserved (jfunc
))
2297 ici
->param_index
= -1;
2300 ici
->param_index
= ipa_get_jf_ancestor_formal_id (jfunc
);
2301 ici
->offset
+= ipa_get_jf_ancestor_offset (jfunc
);
2305 /* Either we can find a destination for this edge now or never. */
2306 ici
->param_index
= -1;
2308 if (!flag_indirect_inlining
)
2311 if (ici
->polymorphic
)
2312 new_direct_edge
= try_make_edge_direct_virtual_call (ie
, jfunc
);
2314 new_direct_edge
= try_make_edge_direct_simple_call (ie
, jfunc
);
2316 if (new_direct_edge
)
2318 new_direct_edge
->indirect_inlining_edge
= 1;
2319 if (new_direct_edge
->call_stmt
)
2320 new_direct_edge
->call_stmt_cannot_inline_p
2321 = !gimple_check_call_matching_types (new_direct_edge
->call_stmt
,
2322 new_direct_edge
->callee
->symbol
.decl
);
2325 new_edges
->safe_push (new_direct_edge
);
2326 top
= IPA_EDGE_REF (cs
);
2335 /* Recursively traverse subtree of NODE (including node) made of inlined
2336 cgraph_edges when CS has been inlined and invoke
2337 update_indirect_edges_after_inlining on all nodes and
2338 update_jump_functions_after_inlining on all non-inlined edges that lead out
2339 of this subtree. Newly discovered indirect edges will be added to
2340 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were
2344 propagate_info_to_inlined_callees (struct cgraph_edge
*cs
,
2345 struct cgraph_node
*node
,
2346 vec
<cgraph_edge_p
> *new_edges
)
2348 struct cgraph_edge
*e
;
2351 res
= update_indirect_edges_after_inlining (cs
, node
, new_edges
);
2353 for (e
= node
->callees
; e
; e
= e
->next_callee
)
2354 if (!e
->inline_failed
)
2355 res
|= propagate_info_to_inlined_callees (cs
, e
->callee
, new_edges
);
2357 update_jump_functions_after_inlining (cs
, e
);
2358 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
2359 update_jump_functions_after_inlining (cs
, e
);
2364 /* Update jump functions and call note functions on inlining the call site CS.
2365 CS is expected to lead to a node already cloned by
2366 cgraph_clone_inline_nodes. Newly discovered indirect edges will be added to
2367 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were +
2371 ipa_propagate_indirect_call_infos (struct cgraph_edge
*cs
,
2372 vec
<cgraph_edge_p
> *new_edges
)
2375 /* Do nothing if the preparation phase has not been carried out yet
2376 (i.e. during early inlining). */
2377 if (!ipa_node_params_vector
.exists ())
2379 gcc_assert (ipa_edge_args_vector
);
2381 changed
= propagate_info_to_inlined_callees (cs
, cs
->callee
, new_edges
);
2383 /* We do not keep jump functions of inlined edges up to date. Better to free
2384 them so we do not access them accidentally. */
2385 ipa_free_edge_args_substructures (IPA_EDGE_REF (cs
));
2389 /* Frees all dynamically allocated structures that the argument info points
2393 ipa_free_edge_args_substructures (struct ipa_edge_args
*args
)
2395 vec_free (args
->jump_functions
);
2396 memset (args
, 0, sizeof (*args
));
2399 /* Free all ipa_edge structures. */
2402 ipa_free_all_edge_args (void)
2405 struct ipa_edge_args
*args
;
2407 if (!ipa_edge_args_vector
)
2410 FOR_EACH_VEC_ELT (*ipa_edge_args_vector
, i
, args
)
2411 ipa_free_edge_args_substructures (args
);
2413 vec_free (ipa_edge_args_vector
);
2416 /* Frees all dynamically allocated structures that the param info points
2420 ipa_free_node_params_substructures (struct ipa_node_params
*info
)
2422 info
->descriptors
.release ();
2423 free (info
->lattices
);
2424 /* Lattice values and their sources are deallocated with their alocation
2426 info
->known_vals
.release ();
2427 memset (info
, 0, sizeof (*info
));
2430 /* Free all ipa_node_params structures. */
2433 ipa_free_all_node_params (void)
2436 struct ipa_node_params
*info
;
2438 FOR_EACH_VEC_ELT (ipa_node_params_vector
, i
, info
)
2439 ipa_free_node_params_substructures (info
);
2441 ipa_node_params_vector
.release ();
2444 /* Set the aggregate replacements of NODE to be AGGVALS. */
2447 ipa_set_node_agg_value_chain (struct cgraph_node
*node
,
2448 struct ipa_agg_replacement_value
*aggvals
)
2450 if (vec_safe_length (ipa_node_agg_replacements
) <= (unsigned) cgraph_max_uid
)
2451 vec_safe_grow_cleared (ipa_node_agg_replacements
, cgraph_max_uid
+ 1);
2453 (*ipa_node_agg_replacements
)[node
->uid
] = aggvals
;
2456 /* Hook that is called by cgraph.c when an edge is removed. */
2459 ipa_edge_removal_hook (struct cgraph_edge
*cs
, void *data ATTRIBUTE_UNUSED
)
2461 /* During IPA-CP updating we can be called on not-yet analyze clones. */
2462 if (vec_safe_length (ipa_edge_args_vector
) <= (unsigned)cs
->uid
)
2464 ipa_free_edge_args_substructures (IPA_EDGE_REF (cs
));
2467 /* Hook that is called by cgraph.c when a node is removed. */
2470 ipa_node_removal_hook (struct cgraph_node
*node
, void *data ATTRIBUTE_UNUSED
)
2472 /* During IPA-CP updating we can be called on not-yet analyze clones. */
2473 if (ipa_node_params_vector
.length () > (unsigned)node
->uid
)
2474 ipa_free_node_params_substructures (IPA_NODE_REF (node
));
2475 if (vec_safe_length (ipa_node_agg_replacements
) > (unsigned)node
->uid
)
2476 (*ipa_node_agg_replacements
)[(unsigned)node
->uid
] = NULL
;
2479 /* Hook that is called by cgraph.c when an edge is duplicated. */
2482 ipa_edge_duplication_hook (struct cgraph_edge
*src
, struct cgraph_edge
*dst
,
2483 __attribute__((unused
)) void *data
)
2485 struct ipa_edge_args
*old_args
, *new_args
;
2488 ipa_check_create_edge_args ();
2490 old_args
= IPA_EDGE_REF (src
);
2491 new_args
= IPA_EDGE_REF (dst
);
2493 new_args
->jump_functions
= vec_safe_copy (old_args
->jump_functions
);
2495 for (i
= 0; i
< vec_safe_length (old_args
->jump_functions
); i
++)
2496 (*new_args
->jump_functions
)[i
].agg
.items
2497 = vec_safe_copy ((*old_args
->jump_functions
)[i
].agg
.items
);
2500 /* Hook that is called by cgraph.c when a node is duplicated. */
2503 ipa_node_duplication_hook (struct cgraph_node
*src
, struct cgraph_node
*dst
,
2504 ATTRIBUTE_UNUSED
void *data
)
2506 struct ipa_node_params
*old_info
, *new_info
;
2507 struct ipa_agg_replacement_value
*old_av
, *new_av
;
2509 ipa_check_create_node_params ();
2510 old_info
= IPA_NODE_REF (src
);
2511 new_info
= IPA_NODE_REF (dst
);
2513 new_info
->descriptors
= old_info
->descriptors
.copy ();
2514 new_info
->lattices
= NULL
;
2515 new_info
->ipcp_orig_node
= old_info
->ipcp_orig_node
;
2517 new_info
->uses_analysis_done
= old_info
->uses_analysis_done
;
2518 new_info
->node_enqueued
= old_info
->node_enqueued
;
2520 old_av
= ipa_get_agg_replacements_for_node (src
);
2527 struct ipa_agg_replacement_value
*v
;
2529 v
= ggc_alloc_ipa_agg_replacement_value ();
2530 memcpy (v
, old_av
, sizeof (*v
));
2533 old_av
= old_av
->next
;
2535 ipa_set_node_agg_value_chain (dst
, new_av
);
2539 /* Analyze newly added function into callgraph. */
2542 ipa_add_new_function (struct cgraph_node
*node
, void *data ATTRIBUTE_UNUSED
)
2544 ipa_analyze_node (node
);
2547 /* Register our cgraph hooks if they are not already there. */
2550 ipa_register_cgraph_hooks (void)
2552 if (!edge_removal_hook_holder
)
2553 edge_removal_hook_holder
=
2554 cgraph_add_edge_removal_hook (&ipa_edge_removal_hook
, NULL
);
2555 if (!node_removal_hook_holder
)
2556 node_removal_hook_holder
=
2557 cgraph_add_node_removal_hook (&ipa_node_removal_hook
, NULL
);
2558 if (!edge_duplication_hook_holder
)
2559 edge_duplication_hook_holder
=
2560 cgraph_add_edge_duplication_hook (&ipa_edge_duplication_hook
, NULL
);
2561 if (!node_duplication_hook_holder
)
2562 node_duplication_hook_holder
=
2563 cgraph_add_node_duplication_hook (&ipa_node_duplication_hook
, NULL
);
2564 function_insertion_hook_holder
=
2565 cgraph_add_function_insertion_hook (&ipa_add_new_function
, NULL
);
2568 /* Unregister our cgraph hooks if they are not already there. */
2571 ipa_unregister_cgraph_hooks (void)
2573 cgraph_remove_edge_removal_hook (edge_removal_hook_holder
);
2574 edge_removal_hook_holder
= NULL
;
2575 cgraph_remove_node_removal_hook (node_removal_hook_holder
);
2576 node_removal_hook_holder
= NULL
;
2577 cgraph_remove_edge_duplication_hook (edge_duplication_hook_holder
);
2578 edge_duplication_hook_holder
= NULL
;
2579 cgraph_remove_node_duplication_hook (node_duplication_hook_holder
);
2580 node_duplication_hook_holder
= NULL
;
2581 cgraph_remove_function_insertion_hook (function_insertion_hook_holder
);
2582 function_insertion_hook_holder
= NULL
;
2585 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
2586 longer needed after ipa-cp. */
2589 ipa_free_all_structures_after_ipa_cp (void)
2593 ipa_free_all_edge_args ();
2594 ipa_free_all_node_params ();
2595 free_alloc_pool (ipcp_sources_pool
);
2596 free_alloc_pool (ipcp_values_pool
);
2597 free_alloc_pool (ipcp_agg_lattice_pool
);
2598 ipa_unregister_cgraph_hooks ();
2602 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
2603 longer needed after indirect inlining. */
2606 ipa_free_all_structures_after_iinln (void)
2608 ipa_free_all_edge_args ();
2609 ipa_free_all_node_params ();
2610 ipa_unregister_cgraph_hooks ();
2611 if (ipcp_sources_pool
)
2612 free_alloc_pool (ipcp_sources_pool
);
2613 if (ipcp_values_pool
)
2614 free_alloc_pool (ipcp_values_pool
);
2615 if (ipcp_agg_lattice_pool
)
2616 free_alloc_pool (ipcp_agg_lattice_pool
);
2619 /* Print ipa_tree_map data structures of all functions in the
2623 ipa_print_node_params (FILE *f
, struct cgraph_node
*node
)
2627 struct ipa_node_params
*info
;
2629 if (!node
->analyzed
)
2631 info
= IPA_NODE_REF (node
);
2632 fprintf (f
, " function %s parameter descriptors:\n",
2633 cgraph_node_name (node
));
2634 count
= ipa_get_param_count (info
);
2635 for (i
= 0; i
< count
; i
++)
2637 temp
= ipa_get_param (info
, i
);
2638 if (TREE_CODE (temp
) == PARM_DECL
)
2639 fprintf (f
, " param %d : %s", i
,
2641 ? (*lang_hooks
.decl_printable_name
) (temp
, 2)
2643 if (ipa_is_param_used (info
, i
))
2644 fprintf (f
, " used");
2649 /* Print ipa_tree_map data structures of all functions in the
2653 ipa_print_all_params (FILE * f
)
2655 struct cgraph_node
*node
;
2657 fprintf (f
, "\nFunction parameters:\n");
2658 FOR_EACH_FUNCTION (node
)
2659 ipa_print_node_params (f
, node
);
2662 /* Return a heap allocated vector containing formal parameters of FNDECL. */
2665 ipa_get_vector_of_formal_parms (tree fndecl
)
2671 count
= count_formal_params (fndecl
);
2672 args
.create (count
);
2673 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
2674 args
.quick_push (parm
);
2679 /* Return a heap allocated vector containing types of formal parameters of
2680 function type FNTYPE. */
2682 static inline vec
<tree
>
2683 get_vector_of_formal_parm_types (tree fntype
)
2689 for (t
= TYPE_ARG_TYPES (fntype
); t
; t
= TREE_CHAIN (t
))
2692 types
.create (count
);
2693 for (t
= TYPE_ARG_TYPES (fntype
); t
; t
= TREE_CHAIN (t
))
2694 types
.quick_push (TREE_VALUE (t
));
2699 /* Modify the function declaration FNDECL and its type according to the plan in
2700 ADJUSTMENTS. It also sets base fields of individual adjustments structures
2701 to reflect the actual parameters being modified which are determined by the
2702 base_index field. */
2705 ipa_modify_formal_parameters (tree fndecl
, ipa_parm_adjustment_vec adjustments
,
2706 const char *synth_parm_prefix
)
2708 vec
<tree
> oparms
, otypes
;
2709 tree orig_type
, new_type
= NULL
;
2710 tree old_arg_types
, t
, new_arg_types
= NULL
;
2711 tree parm
, *link
= &DECL_ARGUMENTS (fndecl
);
2712 int i
, len
= adjustments
.length ();
2713 tree new_reversed
= NULL
;
2714 bool care_for_types
, last_parm_void
;
2716 if (!synth_parm_prefix
)
2717 synth_parm_prefix
= "SYNTH";
2719 oparms
= ipa_get_vector_of_formal_parms (fndecl
);
2720 orig_type
= TREE_TYPE (fndecl
);
2721 old_arg_types
= TYPE_ARG_TYPES (orig_type
);
2723 /* The following test is an ugly hack, some functions simply don't have any
2724 arguments in their type. This is probably a bug but well... */
2725 care_for_types
= (old_arg_types
!= NULL_TREE
);
2728 last_parm_void
= (TREE_VALUE (tree_last (old_arg_types
))
2730 otypes
= get_vector_of_formal_parm_types (orig_type
);
2732 gcc_assert (oparms
.length () + 1 == otypes
.length ());
2734 gcc_assert (oparms
.length () == otypes
.length ());
2738 last_parm_void
= false;
2742 for (i
= 0; i
< len
; i
++)
2744 struct ipa_parm_adjustment
*adj
;
2747 adj
= &adjustments
[i
];
2748 parm
= oparms
[adj
->base_index
];
2751 if (adj
->copy_param
)
2754 new_arg_types
= tree_cons (NULL_TREE
, otypes
[adj
->base_index
],
2757 link
= &DECL_CHAIN (parm
);
2759 else if (!adj
->remove_param
)
2765 ptype
= build_pointer_type (adj
->type
);
2770 new_arg_types
= tree_cons (NULL_TREE
, ptype
, new_arg_types
);
2772 new_parm
= build_decl (UNKNOWN_LOCATION
, PARM_DECL
, NULL_TREE
,
2774 DECL_NAME (new_parm
) = create_tmp_var_name (synth_parm_prefix
);
2776 DECL_ARTIFICIAL (new_parm
) = 1;
2777 DECL_ARG_TYPE (new_parm
) = ptype
;
2778 DECL_CONTEXT (new_parm
) = fndecl
;
2779 TREE_USED (new_parm
) = 1;
2780 DECL_IGNORED_P (new_parm
) = 1;
2781 layout_decl (new_parm
, 0);
2784 adj
->reduction
= new_parm
;
2788 link
= &DECL_CHAIN (new_parm
);
2796 new_reversed
= nreverse (new_arg_types
);
2800 TREE_CHAIN (new_arg_types
) = void_list_node
;
2802 new_reversed
= void_list_node
;
2806 /* Use copy_node to preserve as much as possible from original type
2807 (debug info, attribute lists etc.)
2808 Exception is METHOD_TYPEs must have THIS argument.
2809 When we are asked to remove it, we need to build new FUNCTION_TYPE
2811 if (TREE_CODE (orig_type
) != METHOD_TYPE
2812 || (adjustments
[0].copy_param
2813 && adjustments
[0].base_index
== 0))
2815 new_type
= build_distinct_type_copy (orig_type
);
2816 TYPE_ARG_TYPES (new_type
) = new_reversed
;
2821 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type
),
2823 TYPE_CONTEXT (new_type
) = TYPE_CONTEXT (orig_type
);
2824 DECL_VINDEX (fndecl
) = NULL_TREE
;
2827 /* When signature changes, we need to clear builtin info. */
2828 if (DECL_BUILT_IN (fndecl
))
2830 DECL_BUILT_IN_CLASS (fndecl
) = NOT_BUILT_IN
;
2831 DECL_FUNCTION_CODE (fndecl
) = (enum built_in_function
) 0;
2834 /* This is a new type, not a copy of an old type. Need to reassociate
2835 variants. We can handle everything except the main variant lazily. */
2836 t
= TYPE_MAIN_VARIANT (orig_type
);
2839 TYPE_MAIN_VARIANT (new_type
) = t
;
2840 TYPE_NEXT_VARIANT (new_type
) = TYPE_NEXT_VARIANT (t
);
2841 TYPE_NEXT_VARIANT (t
) = new_type
;
2845 TYPE_MAIN_VARIANT (new_type
) = new_type
;
2846 TYPE_NEXT_VARIANT (new_type
) = NULL
;
2849 TREE_TYPE (fndecl
) = new_type
;
2850 DECL_VIRTUAL_P (fndecl
) = 0;
2855 /* Modify actual arguments of a function call CS as indicated in ADJUSTMENTS.
2856 If this is a directly recursive call, CS must be NULL. Otherwise it must
2857 contain the corresponding call graph edge. */
2860 ipa_modify_call_arguments (struct cgraph_edge
*cs
, gimple stmt
,
2861 ipa_parm_adjustment_vec adjustments
)
2864 vec
<tree
, va_gc
> **debug_args
= NULL
;
2866 gimple_stmt_iterator gsi
;
2870 len
= adjustments
.length ();
2872 callee_decl
= !cs
? gimple_call_fndecl (stmt
) : cs
->callee
->symbol
.decl
;
2874 gsi
= gsi_for_stmt (stmt
);
2875 for (i
= 0; i
< len
; i
++)
2877 struct ipa_parm_adjustment
*adj
;
2879 adj
= &adjustments
[i
];
2881 if (adj
->copy_param
)
2883 tree arg
= gimple_call_arg (stmt
, adj
->base_index
);
2885 vargs
.quick_push (arg
);
2887 else if (!adj
->remove_param
)
2889 tree expr
, base
, off
;
2891 unsigned int deref_align
;
2892 bool deref_base
= false;
2894 /* We create a new parameter out of the value of the old one, we can
2895 do the following kind of transformations:
2897 - A scalar passed by reference is converted to a scalar passed by
2898 value. (adj->by_ref is false and the type of the original
2899 actual argument is a pointer to a scalar).
2901 - A part of an aggregate is passed instead of the whole aggregate.
2902 The part can be passed either by value or by reference, this is
2903 determined by value of adj->by_ref. Moreover, the code below
2904 handles both situations when the original aggregate is passed by
2905 value (its type is not a pointer) and when it is passed by
2906 reference (it is a pointer to an aggregate).
2908 When the new argument is passed by reference (adj->by_ref is true)
2909 it must be a part of an aggregate and therefore we form it by
2910 simply taking the address of a reference inside the original
2913 gcc_checking_assert (adj
->offset
% BITS_PER_UNIT
== 0);
2914 base
= gimple_call_arg (stmt
, adj
->base_index
);
2915 loc
= DECL_P (base
) ? DECL_SOURCE_LOCATION (base
)
2916 : EXPR_LOCATION (base
);
2918 if (TREE_CODE (base
) != ADDR_EXPR
2919 && POINTER_TYPE_P (TREE_TYPE (base
)))
2920 off
= build_int_cst (adj
->alias_ptr_type
,
2921 adj
->offset
/ BITS_PER_UNIT
);
2924 HOST_WIDE_INT base_offset
;
2928 if (TREE_CODE (base
) == ADDR_EXPR
)
2930 base
= TREE_OPERAND (base
, 0);
2936 base
= get_addr_base_and_unit_offset (base
, &base_offset
);
2937 /* Aggregate arguments can have non-invariant addresses. */
2940 base
= build_fold_addr_expr (prev_base
);
2941 off
= build_int_cst (adj
->alias_ptr_type
,
2942 adj
->offset
/ BITS_PER_UNIT
);
2944 else if (TREE_CODE (base
) == MEM_REF
)
2949 deref_align
= TYPE_ALIGN (TREE_TYPE (base
));
2951 off
= build_int_cst (adj
->alias_ptr_type
,
2953 + adj
->offset
/ BITS_PER_UNIT
);
2954 off
= int_const_binop (PLUS_EXPR
, TREE_OPERAND (base
, 1),
2956 base
= TREE_OPERAND (base
, 0);
2960 off
= build_int_cst (adj
->alias_ptr_type
,
2962 + adj
->offset
/ BITS_PER_UNIT
);
2963 base
= build_fold_addr_expr (base
);
2969 tree type
= adj
->type
;
2971 unsigned HOST_WIDE_INT misalign
;
2975 align
= deref_align
;
2980 get_pointer_alignment_1 (base
, &align
, &misalign
);
2981 if (TYPE_ALIGN (type
) > align
)
2982 align
= TYPE_ALIGN (type
);
2984 misalign
+= (tree_to_double_int (off
)
2985 .sext (TYPE_PRECISION (TREE_TYPE (off
))).low
2987 misalign
= misalign
& (align
- 1);
2989 align
= (misalign
& -misalign
);
2990 if (align
< TYPE_ALIGN (type
))
2991 type
= build_aligned_type (type
, align
);
2992 expr
= fold_build2_loc (loc
, MEM_REF
, type
, base
, off
);
2996 expr
= fold_build2_loc (loc
, MEM_REF
, adj
->type
, base
, off
);
2997 expr
= build_fold_addr_expr (expr
);
3000 expr
= force_gimple_operand_gsi (&gsi
, expr
,
3002 || is_gimple_reg_type (adj
->type
),
3003 NULL
, true, GSI_SAME_STMT
);
3004 vargs
.quick_push (expr
);
3006 if (!adj
->copy_param
&& MAY_HAVE_DEBUG_STMTS
)
3009 tree ddecl
= NULL_TREE
, origin
= DECL_ORIGIN (adj
->base
), arg
;
3012 arg
= gimple_call_arg (stmt
, adj
->base_index
);
3013 if (!useless_type_conversion_p (TREE_TYPE (origin
), TREE_TYPE (arg
)))
3015 if (!fold_convertible_p (TREE_TYPE (origin
), arg
))
3017 arg
= fold_convert_loc (gimple_location (stmt
),
3018 TREE_TYPE (origin
), arg
);
3020 if (debug_args
== NULL
)
3021 debug_args
= decl_debug_args_insert (callee_decl
);
3022 for (ix
= 0; vec_safe_iterate (*debug_args
, ix
, &ddecl
); ix
+= 2)
3023 if (ddecl
== origin
)
3025 ddecl
= (**debug_args
)[ix
+ 1];
3030 ddecl
= make_node (DEBUG_EXPR_DECL
);
3031 DECL_ARTIFICIAL (ddecl
) = 1;
3032 TREE_TYPE (ddecl
) = TREE_TYPE (origin
);
3033 DECL_MODE (ddecl
) = DECL_MODE (origin
);
3035 vec_safe_push (*debug_args
, origin
);
3036 vec_safe_push (*debug_args
, ddecl
);
3038 def_temp
= gimple_build_debug_bind (ddecl
, unshare_expr (arg
), stmt
);
3039 gsi_insert_before (&gsi
, def_temp
, GSI_SAME_STMT
);
3043 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3045 fprintf (dump_file
, "replacing stmt:");
3046 print_gimple_stmt (dump_file
, gsi_stmt (gsi
), 0, 0);
3049 new_stmt
= gimple_build_call_vec (callee_decl
, vargs
);
3051 if (gimple_call_lhs (stmt
))
3052 gimple_call_set_lhs (new_stmt
, gimple_call_lhs (stmt
));
3054 gimple_set_block (new_stmt
, gimple_block (stmt
));
3055 if (gimple_has_location (stmt
))
3056 gimple_set_location (new_stmt
, gimple_location (stmt
));
3057 gimple_call_set_chain (new_stmt
, gimple_call_chain (stmt
));
3058 gimple_call_copy_flags (new_stmt
, stmt
);
3060 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3062 fprintf (dump_file
, "with stmt:");
3063 print_gimple_stmt (dump_file
, new_stmt
, 0, 0);
3064 fprintf (dump_file
, "\n");
3066 gsi_replace (&gsi
, new_stmt
, true);
3068 cgraph_set_call_stmt (cs
, new_stmt
);
3069 update_ssa (TODO_update_ssa
);
3070 free_dominance_info (CDI_DOMINATORS
);
3073 /* Return true iff BASE_INDEX is in ADJUSTMENTS more than once. */
3076 index_in_adjustments_multiple_times_p (int base_index
,
3077 ipa_parm_adjustment_vec adjustments
)
3079 int i
, len
= adjustments
.length ();
3082 for (i
= 0; i
< len
; i
++)
3084 struct ipa_parm_adjustment
*adj
;
3085 adj
= &adjustments
[i
];
3087 if (adj
->base_index
== base_index
)
3099 /* Return adjustments that should have the same effect on function parameters
3100 and call arguments as if they were first changed according to adjustments in
3101 INNER and then by adjustments in OUTER. */
3103 ipa_parm_adjustment_vec
3104 ipa_combine_adjustments (ipa_parm_adjustment_vec inner
,
3105 ipa_parm_adjustment_vec outer
)
3107 int i
, outlen
= outer
.length ();
3108 int inlen
= inner
.length ();
3110 ipa_parm_adjustment_vec adjustments
, tmp
;
3113 for (i
= 0; i
< inlen
; i
++)
3115 struct ipa_parm_adjustment
*n
;
3118 if (n
->remove_param
)
3121 tmp
.quick_push (*n
);
3124 adjustments
.create (outlen
+ removals
);
3125 for (i
= 0; i
< outlen
; i
++)
3127 struct ipa_parm_adjustment r
;
3128 struct ipa_parm_adjustment
*out
= &outer
[i
];
3129 struct ipa_parm_adjustment
*in
= &tmp
[out
->base_index
];
3131 memset (&r
, 0, sizeof (r
));
3132 gcc_assert (!in
->remove_param
);
3133 if (out
->remove_param
)
3135 if (!index_in_adjustments_multiple_times_p (in
->base_index
, tmp
))
3137 r
.remove_param
= true;
3138 adjustments
.quick_push (r
);
3143 r
.base_index
= in
->base_index
;
3146 /* FIXME: Create nonlocal value too. */
3148 if (in
->copy_param
&& out
->copy_param
)
3149 r
.copy_param
= true;
3150 else if (in
->copy_param
)
3151 r
.offset
= out
->offset
;
3152 else if (out
->copy_param
)
3153 r
.offset
= in
->offset
;
3155 r
.offset
= in
->offset
+ out
->offset
;
3156 adjustments
.quick_push (r
);
3159 for (i
= 0; i
< inlen
; i
++)
3161 struct ipa_parm_adjustment
*n
= &inner
[i
];
3163 if (n
->remove_param
)
3164 adjustments
.quick_push (*n
);
3171 /* Dump the adjustments in the vector ADJUSTMENTS to dump_file in a human
3172 friendly way, assuming they are meant to be applied to FNDECL. */
3175 ipa_dump_param_adjustments (FILE *file
, ipa_parm_adjustment_vec adjustments
,
3178 int i
, len
= adjustments
.length ();
3180 vec
<tree
> parms
= ipa_get_vector_of_formal_parms (fndecl
);
3182 fprintf (file
, "IPA param adjustments: ");
3183 for (i
= 0; i
< len
; i
++)
3185 struct ipa_parm_adjustment
*adj
;
3186 adj
= &adjustments
[i
];
3189 fprintf (file
, " ");
3193 fprintf (file
, "%i. base_index: %i - ", i
, adj
->base_index
);
3194 print_generic_expr (file
, parms
[adj
->base_index
], 0);
3197 fprintf (file
, ", base: ");
3198 print_generic_expr (file
, adj
->base
, 0);
3202 fprintf (file
, ", reduction: ");
3203 print_generic_expr (file
, adj
->reduction
, 0);
3205 if (adj
->new_ssa_base
)
3207 fprintf (file
, ", new_ssa_base: ");
3208 print_generic_expr (file
, adj
->new_ssa_base
, 0);
3211 if (adj
->copy_param
)
3212 fprintf (file
, ", copy_param");
3213 else if (adj
->remove_param
)
3214 fprintf (file
, ", remove_param");
3216 fprintf (file
, ", offset %li", (long) adj
->offset
);
3218 fprintf (file
, ", by_ref");
3219 print_node_brief (file
, ", type: ", adj
->type
, 0);
3220 fprintf (file
, "\n");
3225 /* Dump the AV linked list. */
3228 ipa_dump_agg_replacement_values (FILE *f
, struct ipa_agg_replacement_value
*av
)
3231 fprintf (f
, " Aggregate replacements:");
3232 for (; av
; av
= av
->next
)
3234 fprintf (f
, "%s %i[" HOST_WIDE_INT_PRINT_DEC
"]=", comma
? "," : "",
3235 av
->index
, av
->offset
);
3236 print_generic_expr (f
, av
->value
, 0);
3242 /* Stream out jump function JUMP_FUNC to OB. */
3245 ipa_write_jump_function (struct output_block
*ob
,
3246 struct ipa_jump_func
*jump_func
)
3248 struct ipa_agg_jf_item
*item
;
3249 struct bitpack_d bp
;
3252 streamer_write_uhwi (ob
, jump_func
->type
);
3253 switch (jump_func
->type
)
3255 case IPA_JF_UNKNOWN
:
3257 case IPA_JF_KNOWN_TYPE
:
3258 streamer_write_uhwi (ob
, jump_func
->value
.known_type
.offset
);
3259 stream_write_tree (ob
, jump_func
->value
.known_type
.base_type
, true);
3260 stream_write_tree (ob
, jump_func
->value
.known_type
.component_type
, true);
3264 EXPR_LOCATION (jump_func
->value
.constant
) == UNKNOWN_LOCATION
);
3265 stream_write_tree (ob
, jump_func
->value
.constant
, true);
3267 case IPA_JF_PASS_THROUGH
:
3268 stream_write_tree (ob
, jump_func
->value
.pass_through
.operand
, true);
3269 streamer_write_uhwi (ob
, jump_func
->value
.pass_through
.formal_id
);
3270 streamer_write_uhwi (ob
, jump_func
->value
.pass_through
.operation
);
3271 bp
= bitpack_create (ob
->main_stream
);
3272 bp_pack_value (&bp
, jump_func
->value
.pass_through
.agg_preserved
, 1);
3273 streamer_write_bitpack (&bp
);
3275 case IPA_JF_ANCESTOR
:
3276 streamer_write_uhwi (ob
, jump_func
->value
.ancestor
.offset
);
3277 stream_write_tree (ob
, jump_func
->value
.ancestor
.type
, true);
3278 streamer_write_uhwi (ob
, jump_func
->value
.ancestor
.formal_id
);
3279 bp
= bitpack_create (ob
->main_stream
);
3280 bp_pack_value (&bp
, jump_func
->value
.ancestor
.agg_preserved
, 1);
3281 streamer_write_bitpack (&bp
);
3285 count
= vec_safe_length (jump_func
->agg
.items
);
3286 streamer_write_uhwi (ob
, count
);
3289 bp
= bitpack_create (ob
->main_stream
);
3290 bp_pack_value (&bp
, jump_func
->agg
.by_ref
, 1);
3291 streamer_write_bitpack (&bp
);
3294 FOR_EACH_VEC_SAFE_ELT (jump_func
->agg
.items
, i
, item
)
3296 streamer_write_uhwi (ob
, item
->offset
);
3297 stream_write_tree (ob
, item
->value
, true);
3301 /* Read in jump function JUMP_FUNC from IB. */
3304 ipa_read_jump_function (struct lto_input_block
*ib
,
3305 struct ipa_jump_func
*jump_func
,
3306 struct data_in
*data_in
)
3308 struct bitpack_d bp
;
3311 jump_func
->type
= (enum jump_func_type
) streamer_read_uhwi (ib
);
3312 switch (jump_func
->type
)
3314 case IPA_JF_UNKNOWN
:
3316 case IPA_JF_KNOWN_TYPE
:
3317 jump_func
->value
.known_type
.offset
= streamer_read_uhwi (ib
);
3318 jump_func
->value
.known_type
.base_type
= stream_read_tree (ib
, data_in
);
3319 jump_func
->value
.known_type
.component_type
= stream_read_tree (ib
,
3323 jump_func
->value
.constant
= stream_read_tree (ib
, data_in
);
3325 case IPA_JF_PASS_THROUGH
:
3326 jump_func
->value
.pass_through
.operand
= stream_read_tree (ib
, data_in
);
3327 jump_func
->value
.pass_through
.formal_id
= streamer_read_uhwi (ib
);
3328 jump_func
->value
.pass_through
.operation
3329 = (enum tree_code
) streamer_read_uhwi (ib
);
3330 bp
= streamer_read_bitpack (ib
);
3331 jump_func
->value
.pass_through
.agg_preserved
= bp_unpack_value (&bp
, 1);
3333 case IPA_JF_ANCESTOR
:
3334 jump_func
->value
.ancestor
.offset
= streamer_read_uhwi (ib
);
3335 jump_func
->value
.ancestor
.type
= stream_read_tree (ib
, data_in
);
3336 jump_func
->value
.ancestor
.formal_id
= streamer_read_uhwi (ib
);
3337 bp
= streamer_read_bitpack (ib
);
3338 jump_func
->value
.ancestor
.agg_preserved
= bp_unpack_value (&bp
, 1);
3342 count
= streamer_read_uhwi (ib
);
3343 vec_alloc (jump_func
->agg
.items
, count
);
3346 bp
= streamer_read_bitpack (ib
);
3347 jump_func
->agg
.by_ref
= bp_unpack_value (&bp
, 1);
3349 for (i
= 0; i
< count
; i
++)
3351 struct ipa_agg_jf_item item
;
3352 item
.offset
= streamer_read_uhwi (ib
);
3353 item
.value
= stream_read_tree (ib
, data_in
);
3354 jump_func
->agg
.items
->quick_push (item
);
3358 /* Stream out parts of cgraph_indirect_call_info corresponding to CS that are
3359 relevant to indirect inlining to OB. */
3362 ipa_write_indirect_edge_info (struct output_block
*ob
,
3363 struct cgraph_edge
*cs
)
3365 struct cgraph_indirect_call_info
*ii
= cs
->indirect_info
;
3366 struct bitpack_d bp
;
3368 streamer_write_hwi (ob
, ii
->param_index
);
3369 streamer_write_hwi (ob
, ii
->offset
);
3370 bp
= bitpack_create (ob
->main_stream
);
3371 bp_pack_value (&bp
, ii
->polymorphic
, 1);
3372 bp_pack_value (&bp
, ii
->agg_contents
, 1);
3373 bp_pack_value (&bp
, ii
->by_ref
, 1);
3374 streamer_write_bitpack (&bp
);
3376 if (ii
->polymorphic
)
3378 streamer_write_hwi (ob
, ii
->otr_token
);
3379 stream_write_tree (ob
, ii
->otr_type
, true);
3383 /* Read in parts of cgraph_indirect_call_info corresponding to CS that are
3384 relevant to indirect inlining from IB. */
3387 ipa_read_indirect_edge_info (struct lto_input_block
*ib
,
3388 struct data_in
*data_in ATTRIBUTE_UNUSED
,
3389 struct cgraph_edge
*cs
)
3391 struct cgraph_indirect_call_info
*ii
= cs
->indirect_info
;
3392 struct bitpack_d bp
;
3394 ii
->param_index
= (int) streamer_read_hwi (ib
);
3395 ii
->offset
= (HOST_WIDE_INT
) streamer_read_hwi (ib
);
3396 bp
= streamer_read_bitpack (ib
);
3397 ii
->polymorphic
= bp_unpack_value (&bp
, 1);
3398 ii
->agg_contents
= bp_unpack_value (&bp
, 1);
3399 ii
->by_ref
= bp_unpack_value (&bp
, 1);
3400 if (ii
->polymorphic
)
3402 ii
->otr_token
= (HOST_WIDE_INT
) streamer_read_hwi (ib
);
3403 ii
->otr_type
= stream_read_tree (ib
, data_in
);
3407 /* Stream out NODE info to OB. */
3410 ipa_write_node_info (struct output_block
*ob
, struct cgraph_node
*node
)
3413 lto_symtab_encoder_t encoder
;
3414 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
3416 struct cgraph_edge
*e
;
3417 struct bitpack_d bp
;
3419 encoder
= ob
->decl_state
->symtab_node_encoder
;
3420 node_ref
= lto_symtab_encoder_encode (encoder
, (symtab_node
) node
);
3421 streamer_write_uhwi (ob
, node_ref
);
3423 bp
= bitpack_create (ob
->main_stream
);
3424 gcc_assert (info
->uses_analysis_done
3425 || ipa_get_param_count (info
) == 0);
3426 gcc_assert (!info
->node_enqueued
);
3427 gcc_assert (!info
->ipcp_orig_node
);
3428 for (j
= 0; j
< ipa_get_param_count (info
); j
++)
3429 bp_pack_value (&bp
, ipa_is_param_used (info
, j
), 1);
3430 streamer_write_bitpack (&bp
);
3431 for (e
= node
->callees
; e
; e
= e
->next_callee
)
3433 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
3435 streamer_write_uhwi (ob
, ipa_get_cs_argument_count (args
));
3436 for (j
= 0; j
< ipa_get_cs_argument_count (args
); j
++)
3437 ipa_write_jump_function (ob
, ipa_get_ith_jump_func (args
, j
));
3439 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
3441 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
3443 streamer_write_uhwi (ob
, ipa_get_cs_argument_count (args
));
3444 for (j
= 0; j
< ipa_get_cs_argument_count (args
); j
++)
3445 ipa_write_jump_function (ob
, ipa_get_ith_jump_func (args
, j
));
3446 ipa_write_indirect_edge_info (ob
, e
);
3450 /* Stream in NODE info from IB. */
3453 ipa_read_node_info (struct lto_input_block
*ib
, struct cgraph_node
*node
,
3454 struct data_in
*data_in
)
3456 struct ipa_node_params
*info
= IPA_NODE_REF (node
);
3458 struct cgraph_edge
*e
;
3459 struct bitpack_d bp
;
3461 ipa_initialize_node_params (node
);
3463 bp
= streamer_read_bitpack (ib
);
3464 if (ipa_get_param_count (info
) != 0)
3465 info
->uses_analysis_done
= true;
3466 info
->node_enqueued
= false;
3467 for (k
= 0; k
< ipa_get_param_count (info
); k
++)
3468 ipa_set_param_used (info
, k
, bp_unpack_value (&bp
, 1));
3469 for (e
= node
->callees
; e
; e
= e
->next_callee
)
3471 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
3472 int count
= streamer_read_uhwi (ib
);
3476 vec_safe_grow_cleared (args
->jump_functions
, count
);
3478 for (k
= 0; k
< ipa_get_cs_argument_count (args
); k
++)
3479 ipa_read_jump_function (ib
, ipa_get_ith_jump_func (args
, k
), data_in
);
3481 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
3483 struct ipa_edge_args
*args
= IPA_EDGE_REF (e
);
3484 int count
= streamer_read_uhwi (ib
);
3488 vec_safe_grow_cleared (args
->jump_functions
, count
);
3489 for (k
= 0; k
< ipa_get_cs_argument_count (args
); k
++)
3490 ipa_read_jump_function (ib
, ipa_get_ith_jump_func (args
, k
),
3493 ipa_read_indirect_edge_info (ib
, data_in
, e
);
3497 /* Write jump functions for nodes in SET. */
3500 ipa_prop_write_jump_functions (void)
3502 struct cgraph_node
*node
;
3503 struct output_block
*ob
;
3504 unsigned int count
= 0;
3505 lto_symtab_encoder_iterator lsei
;
3506 lto_symtab_encoder_t encoder
;
3509 if (!ipa_node_params_vector
.exists ())
3512 ob
= create_output_block (LTO_section_jump_functions
);
3513 encoder
= ob
->decl_state
->symtab_node_encoder
;
3514 ob
->cgraph_node
= NULL
;
3515 for (lsei
= lsei_start_function_in_partition (encoder
); !lsei_end_p (lsei
);
3516 lsei_next_function_in_partition (&lsei
))
3518 node
= lsei_cgraph_node (lsei
);
3519 if (cgraph_function_with_gimple_body_p (node
)
3520 && IPA_NODE_REF (node
) != NULL
)
3524 streamer_write_uhwi (ob
, count
);
3526 /* Process all of the functions. */
3527 for (lsei
= lsei_start_function_in_partition (encoder
); !lsei_end_p (lsei
);
3528 lsei_next_function_in_partition (&lsei
))
3530 node
= lsei_cgraph_node (lsei
);
3531 if (cgraph_function_with_gimple_body_p (node
)
3532 && IPA_NODE_REF (node
) != NULL
)
3533 ipa_write_node_info (ob
, node
);
3535 streamer_write_char_stream (ob
->main_stream
, 0);
3536 produce_asm (ob
, NULL
);
3537 destroy_output_block (ob
);
3540 /* Read section in file FILE_DATA of length LEN with data DATA. */
3543 ipa_prop_read_section (struct lto_file_decl_data
*file_data
, const char *data
,
3546 const struct lto_function_header
*header
=
3547 (const struct lto_function_header
*) data
;
3548 const int cfg_offset
= sizeof (struct lto_function_header
);
3549 const int main_offset
= cfg_offset
+ header
->cfg_size
;
3550 const int string_offset
= main_offset
+ header
->main_size
;
3551 struct data_in
*data_in
;
3552 struct lto_input_block ib_main
;
3556 LTO_INIT_INPUT_BLOCK (ib_main
, (const char *) data
+ main_offset
, 0,
3560 lto_data_in_create (file_data
, (const char *) data
+ string_offset
,
3561 header
->string_size
, vNULL
);
3562 count
= streamer_read_uhwi (&ib_main
);
3564 for (i
= 0; i
< count
; i
++)
3567 struct cgraph_node
*node
;
3568 lto_symtab_encoder_t encoder
;
3570 index
= streamer_read_uhwi (&ib_main
);
3571 encoder
= file_data
->symtab_node_encoder
;
3572 node
= cgraph (lto_symtab_encoder_deref (encoder
, index
));
3573 gcc_assert (node
->analyzed
);
3574 ipa_read_node_info (&ib_main
, node
, data_in
);
3576 lto_free_section_data (file_data
, LTO_section_jump_functions
, NULL
, data
,
3578 lto_data_in_delete (data_in
);
3581 /* Read ipcp jump functions. */
3584 ipa_prop_read_jump_functions (void)
3586 struct lto_file_decl_data
**file_data_vec
= lto_get_file_decl_data ();
3587 struct lto_file_decl_data
*file_data
;
3590 ipa_check_create_node_params ();
3591 ipa_check_create_edge_args ();
3592 ipa_register_cgraph_hooks ();
3594 while ((file_data
= file_data_vec
[j
++]))
3597 const char *data
= lto_get_section_data (file_data
, LTO_section_jump_functions
, NULL
, &len
);
3600 ipa_prop_read_section (file_data
, data
, len
);
3604 /* After merging units, we can get mismatch in argument counts.
3605 Also decl merging might've rendered parameter lists obsolete.
3606 Also compute called_with_variable_arg info. */
3609 ipa_update_after_lto_read (void)
3611 struct cgraph_node
*node
;
3613 ipa_check_create_node_params ();
3614 ipa_check_create_edge_args ();
3616 FOR_EACH_DEFINED_FUNCTION (node
)
3618 ipa_initialize_node_params (node
);
3622 write_agg_replacement_chain (struct output_block
*ob
, struct cgraph_node
*node
)
3625 unsigned int count
= 0;
3626 lto_symtab_encoder_t encoder
;
3627 struct ipa_agg_replacement_value
*aggvals
, *av
;
3629 aggvals
= ipa_get_agg_replacements_for_node (node
);
3630 encoder
= ob
->decl_state
->symtab_node_encoder
;
3631 node_ref
= lto_symtab_encoder_encode (encoder
, (symtab_node
) node
);
3632 streamer_write_uhwi (ob
, node_ref
);
3634 for (av
= aggvals
; av
; av
= av
->next
)
3636 streamer_write_uhwi (ob
, count
);
3638 for (av
= aggvals
; av
; av
= av
->next
)
3640 streamer_write_uhwi (ob
, av
->offset
);
3641 streamer_write_uhwi (ob
, av
->index
);
3642 stream_write_tree (ob
, av
->value
, true);
3646 /* Stream in the aggregate value replacement chain for NODE from IB. */
3649 read_agg_replacement_chain (struct lto_input_block
*ib
,
3650 struct cgraph_node
*node
,
3651 struct data_in
*data_in
)
3653 struct ipa_agg_replacement_value
*aggvals
= NULL
;
3654 unsigned int count
, i
;
3656 count
= streamer_read_uhwi (ib
);
3657 for (i
= 0; i
<count
; i
++)
3659 struct ipa_agg_replacement_value
*av
;
3661 av
= ggc_alloc_ipa_agg_replacement_value ();
3662 av
->offset
= streamer_read_uhwi (ib
);
3663 av
->index
= streamer_read_uhwi (ib
);
3664 av
->value
= stream_read_tree (ib
, data_in
);
3668 ipa_set_node_agg_value_chain (node
, aggvals
);
3671 /* Write all aggregate replacement for nodes in set. */
3674 ipa_prop_write_all_agg_replacement (void)
3676 struct cgraph_node
*node
;
3677 struct output_block
*ob
;
3678 unsigned int count
= 0;
3679 lto_symtab_encoder_iterator lsei
;
3680 lto_symtab_encoder_t encoder
;
3682 if (!ipa_node_agg_replacements
)
3685 ob
= create_output_block (LTO_section_ipcp_transform
);
3686 encoder
= ob
->decl_state
->symtab_node_encoder
;
3687 ob
->cgraph_node
= NULL
;
3688 for (lsei
= lsei_start_function_in_partition (encoder
); !lsei_end_p (lsei
);
3689 lsei_next_function_in_partition (&lsei
))
3691 node
= lsei_cgraph_node (lsei
);
3692 if (cgraph_function_with_gimple_body_p (node
)
3693 && ipa_get_agg_replacements_for_node (node
) != NULL
)
3697 streamer_write_uhwi (ob
, count
);
3699 for (lsei
= lsei_start_function_in_partition (encoder
); !lsei_end_p (lsei
);
3700 lsei_next_function_in_partition (&lsei
))
3702 node
= lsei_cgraph_node (lsei
);
3703 if (cgraph_function_with_gimple_body_p (node
)
3704 && ipa_get_agg_replacements_for_node (node
) != NULL
)
3705 write_agg_replacement_chain (ob
, node
);
3707 streamer_write_char_stream (ob
->main_stream
, 0);
3708 produce_asm (ob
, NULL
);
3709 destroy_output_block (ob
);
3712 /* Read replacements section in file FILE_DATA of length LEN with data
3716 read_replacements_section (struct lto_file_decl_data
*file_data
,
3720 const struct lto_function_header
*header
=
3721 (const struct lto_function_header
*) data
;
3722 const int cfg_offset
= sizeof (struct lto_function_header
);
3723 const int main_offset
= cfg_offset
+ header
->cfg_size
;
3724 const int string_offset
= main_offset
+ header
->main_size
;
3725 struct data_in
*data_in
;
3726 struct lto_input_block ib_main
;
3730 LTO_INIT_INPUT_BLOCK (ib_main
, (const char *) data
+ main_offset
, 0,
3733 data_in
= lto_data_in_create (file_data
, (const char *) data
+ string_offset
,
3734 header
->string_size
, vNULL
);
3735 count
= streamer_read_uhwi (&ib_main
);
3737 for (i
= 0; i
< count
; i
++)
3740 struct cgraph_node
*node
;
3741 lto_symtab_encoder_t encoder
;
3743 index
= streamer_read_uhwi (&ib_main
);
3744 encoder
= file_data
->symtab_node_encoder
;
3745 node
= cgraph (lto_symtab_encoder_deref (encoder
, index
));
3746 gcc_assert (node
->analyzed
);
3747 read_agg_replacement_chain (&ib_main
, node
, data_in
);
3749 lto_free_section_data (file_data
, LTO_section_jump_functions
, NULL
, data
,
3751 lto_data_in_delete (data_in
);
3754 /* Read IPA-CP aggregate replacements. */
3757 ipa_prop_read_all_agg_replacement (void)
3759 struct lto_file_decl_data
**file_data_vec
= lto_get_file_decl_data ();
3760 struct lto_file_decl_data
*file_data
;
3763 while ((file_data
= file_data_vec
[j
++]))
3766 const char *data
= lto_get_section_data (file_data
,
3767 LTO_section_ipcp_transform
,
3770 read_replacements_section (file_data
, data
, len
);
3774 /* Adjust the aggregate replacements in AGGVAL to reflect parameters skipped in
3778 adjust_agg_replacement_values (struct cgraph_node
*node
,
3779 struct ipa_agg_replacement_value
*aggval
)
3781 struct ipa_agg_replacement_value
*v
;
3782 int i
, c
= 0, d
= 0, *adj
;
3784 if (!node
->clone
.combined_args_to_skip
)
3787 for (v
= aggval
; v
; v
= v
->next
)
3789 gcc_assert (v
->index
>= 0);
3795 adj
= XALLOCAVEC (int, c
);
3796 for (i
= 0; i
< c
; i
++)
3797 if (bitmap_bit_p (node
->clone
.combined_args_to_skip
, i
))
3805 for (v
= aggval
; v
; v
= v
->next
)
3806 v
->index
= adj
[v
->index
];
3810 /* Function body transformation phase. */
3813 ipcp_transform_function (struct cgraph_node
*node
)
3815 vec
<ipa_param_descriptor_t
> descriptors
= vNULL
;
3816 struct param_analysis_info
*parms_ainfo
;
3817 struct ipa_agg_replacement_value
*aggval
;
3818 gimple_stmt_iterator gsi
;
3821 bool cfg_changed
= false, something_changed
= false;
3823 gcc_checking_assert (cfun
);
3824 gcc_checking_assert (current_function_decl
);
3827 fprintf (dump_file
, "Modification phase of node %s/%i\n",
3828 cgraph_node_name (node
), node
->uid
);
3830 aggval
= ipa_get_agg_replacements_for_node (node
);
3833 param_count
= count_formal_params (node
->symbol
.decl
);
3834 if (param_count
== 0)
3836 adjust_agg_replacement_values (node
, aggval
);
3838 ipa_dump_agg_replacement_values (dump_file
, aggval
);
3839 parms_ainfo
= XALLOCAVEC (struct param_analysis_info
, param_count
);
3840 memset (parms_ainfo
, 0, sizeof (struct param_analysis_info
) * param_count
);
3841 descriptors
.safe_grow_cleared (param_count
);
3842 ipa_populate_param_decls (node
, descriptors
);
3845 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3847 struct ipa_agg_replacement_value
*v
;
3848 gimple stmt
= gsi_stmt (gsi
);
3850 HOST_WIDE_INT offset
;
3854 if (!gimple_assign_load_p (stmt
))
3856 rhs
= gimple_assign_rhs1 (stmt
);
3857 if (!is_gimple_reg_type (TREE_TYPE (rhs
)))
3862 while (handled_component_p (t
))
3864 /* V_C_E can do things like convert an array of integers to one
3865 bigger integer and similar things we do not handle below. */
3866 if (TREE_CODE (rhs
) == VIEW_CONVERT_EXPR
)
3871 t
= TREE_OPERAND (t
, 0);
3876 if (!ipa_load_from_parm_agg_1 (descriptors
, parms_ainfo
, stmt
,
3877 rhs
, &index
, &offset
, &by_ref
))
3879 for (v
= aggval
; v
; v
= v
->next
)
3880 if (v
->index
== index
3881 && v
->offset
== offset
)
3886 gcc_checking_assert (is_gimple_ip_invariant (v
->value
));
3887 if (!useless_type_conversion_p (TREE_TYPE (rhs
), TREE_TYPE (v
->value
)))
3889 if (fold_convertible_p (TREE_TYPE (rhs
), v
->value
))
3890 val
= fold_build1 (NOP_EXPR
, TREE_TYPE (rhs
), v
->value
);
3891 else if (TYPE_SIZE (TREE_TYPE (rhs
))
3892 == TYPE_SIZE (TREE_TYPE (v
->value
)))
3893 val
= fold_build1 (VIEW_CONVERT_EXPR
, TREE_TYPE (rhs
), v
->value
);
3898 fprintf (dump_file
, " const ");
3899 print_generic_expr (dump_file
, v
->value
, 0);
3900 fprintf (dump_file
, " can't be converted to type of ");
3901 print_generic_expr (dump_file
, rhs
, 0);
3902 fprintf (dump_file
, "\n");
3910 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3912 fprintf (dump_file
, "Modifying stmt:\n ");
3913 print_gimple_stmt (dump_file
, stmt
, 0, 0);
3915 gimple_assign_set_rhs_from_tree (&gsi
, val
);
3918 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3920 fprintf (dump_file
, "into:\n ");
3921 print_gimple_stmt (dump_file
, stmt
, 0, 0);
3922 fprintf (dump_file
, "\n");
3925 something_changed
= true;
3926 if (maybe_clean_eh_stmt (stmt
)
3927 && gimple_purge_dead_eh_edges (gimple_bb (stmt
)))
3931 (*ipa_node_agg_replacements
)[node
->uid
] = NULL
;
3932 free_parms_ainfo (parms_ainfo
, param_count
);
3933 descriptors
.release ();
3935 if (!something_changed
)
3937 else if (cfg_changed
)
3938 return TODO_update_ssa_only_virtuals
| TODO_cleanup_cfg
;
3940 return TODO_update_ssa_only_virtuals
;