[AArch64 costs 18/18] Dump a message if we are unable to cost an insn.
[official-gcc.git] / gcc / ipa-prop.c
blobe372171114e8750d2960648d5e5c8bd6f0d3ba98
1 /* Interprocedural analyses.
2 Copyright (C) 2005-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tree.h"
24 #include "basic-block.h"
25 #include "tree-ssa-alias.h"
26 #include "internal-fn.h"
27 #include "gimple-fold.h"
28 #include "tree-eh.h"
29 #include "gimple-expr.h"
30 #include "is-a.h"
31 #include "gimple.h"
32 #include "expr.h"
33 #include "stor-layout.h"
34 #include "print-tree.h"
35 #include "gimplify.h"
36 #include "gimple-iterator.h"
37 #include "gimplify-me.h"
38 #include "gimple-walk.h"
39 #include "langhooks.h"
40 #include "target.h"
41 #include "ipa-prop.h"
42 #include "bitmap.h"
43 #include "gimple-ssa.h"
44 #include "tree-cfg.h"
45 #include "tree-phinodes.h"
46 #include "ssa-iterators.h"
47 #include "tree-into-ssa.h"
48 #include "tree-dfa.h"
49 #include "tree-pass.h"
50 #include "tree-inline.h"
51 #include "ipa-inline.h"
52 #include "flags.h"
53 #include "diagnostic.h"
54 #include "gimple-pretty-print.h"
55 #include "lto-streamer.h"
56 #include "data-streamer.h"
57 #include "tree-streamer.h"
58 #include "params.h"
59 #include "ipa-utils.h"
60 #include "stringpool.h"
61 #include "tree-ssanames.h"
63 /* Intermediate information about a parameter that is only useful during the
64 run of ipa_analyze_node and is not kept afterwards. */
66 struct param_analysis_info
68 bool parm_modified, ref_modified, pt_modified;
69 bitmap parm_visited_statements, pt_visited_statements;
72 /* Vector where the parameter infos are actually stored. */
73 vec<ipa_node_params> ipa_node_params_vector;
74 /* Vector of known aggregate values in cloned nodes. */
75 vec<ipa_agg_replacement_value_p, va_gc> *ipa_node_agg_replacements;
76 /* Vector where the parameter infos are actually stored. */
77 vec<ipa_edge_args, va_gc> *ipa_edge_args_vector;
79 /* Holders of ipa cgraph hooks: */
80 static struct cgraph_edge_hook_list *edge_removal_hook_holder;
81 static struct cgraph_node_hook_list *node_removal_hook_holder;
82 static struct cgraph_2edge_hook_list *edge_duplication_hook_holder;
83 static struct cgraph_2node_hook_list *node_duplication_hook_holder;
84 static struct cgraph_node_hook_list *function_insertion_hook_holder;
86 /* Description of a reference to an IPA constant. */
87 struct ipa_cst_ref_desc
89 /* Edge that corresponds to the statement which took the reference. */
90 struct cgraph_edge *cs;
91 /* Linked list of duplicates created when call graph edges are cloned. */
92 struct ipa_cst_ref_desc *next_duplicate;
93 /* Number of references in IPA structures, IPA_UNDESCRIBED_USE if the value
94 if out of control. */
95 int refcount;
98 /* Allocation pool for reference descriptions. */
100 static alloc_pool ipa_refdesc_pool;
102 /* Return true if DECL_FUNCTION_SPECIFIC_OPTIMIZATION of the decl associated
103 with NODE should prevent us from analyzing it for the purposes of IPA-CP. */
105 static bool
106 ipa_func_spec_opts_forbid_analysis_p (struct cgraph_node *node)
108 tree fs_opts = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (node->decl);
109 struct cl_optimization *os;
111 if (!fs_opts)
112 return false;
113 os = TREE_OPTIMIZATION (fs_opts);
114 return !os->x_optimize || !os->x_flag_ipa_cp;
117 /* Return index of the formal whose tree is PTREE in function which corresponds
118 to INFO. */
120 static int
121 ipa_get_param_decl_index_1 (vec<ipa_param_descriptor> descriptors, tree ptree)
123 int i, count;
125 count = descriptors.length ();
126 for (i = 0; i < count; i++)
127 if (descriptors[i].decl == ptree)
128 return i;
130 return -1;
133 /* Return index of the formal whose tree is PTREE in function which corresponds
134 to INFO. */
137 ipa_get_param_decl_index (struct ipa_node_params *info, tree ptree)
139 return ipa_get_param_decl_index_1 (info->descriptors, ptree);
142 /* Populate the param_decl field in parameter DESCRIPTORS that correspond to
143 NODE. */
145 static void
146 ipa_populate_param_decls (struct cgraph_node *node,
147 vec<ipa_param_descriptor> &descriptors)
149 tree fndecl;
150 tree fnargs;
151 tree parm;
152 int param_num;
154 fndecl = node->decl;
155 gcc_assert (gimple_has_body_p (fndecl));
156 fnargs = DECL_ARGUMENTS (fndecl);
157 param_num = 0;
158 for (parm = fnargs; parm; parm = DECL_CHAIN (parm))
160 descriptors[param_num].decl = parm;
161 descriptors[param_num].move_cost = estimate_move_cost (TREE_TYPE (parm));
162 param_num++;
166 /* Return how many formal parameters FNDECL has. */
168 static inline int
169 count_formal_params (tree fndecl)
171 tree parm;
172 int count = 0;
173 gcc_assert (gimple_has_body_p (fndecl));
175 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
176 count++;
178 return count;
181 /* Return the declaration of Ith formal parameter of the function corresponding
182 to INFO. Note there is no setter function as this array is built just once
183 using ipa_initialize_node_params. */
185 void
186 ipa_dump_param (FILE *file, struct ipa_node_params *info, int i)
188 fprintf (file, "param #%i", i);
189 if (info->descriptors[i].decl)
191 fprintf (file, " ");
192 print_generic_expr (file, info->descriptors[i].decl, 0);
196 /* Initialize the ipa_node_params structure associated with NODE
197 to hold PARAM_COUNT parameters. */
199 void
200 ipa_alloc_node_params (struct cgraph_node *node, int param_count)
202 struct ipa_node_params *info = IPA_NODE_REF (node);
204 if (!info->descriptors.exists () && param_count)
205 info->descriptors.safe_grow_cleared (param_count);
208 /* Initialize the ipa_node_params structure associated with NODE by counting
209 the function parameters, creating the descriptors and populating their
210 param_decls. */
212 void
213 ipa_initialize_node_params (struct cgraph_node *node)
215 struct ipa_node_params *info = IPA_NODE_REF (node);
217 if (!info->descriptors.exists ())
219 ipa_alloc_node_params (node, count_formal_params (node->decl));
220 ipa_populate_param_decls (node, info->descriptors);
224 /* Print the jump functions associated with call graph edge CS to file F. */
226 static void
227 ipa_print_node_jump_functions_for_edge (FILE *f, struct cgraph_edge *cs)
229 int i, count;
231 count = ipa_get_cs_argument_count (IPA_EDGE_REF (cs));
232 for (i = 0; i < count; i++)
234 struct ipa_jump_func *jump_func;
235 enum jump_func_type type;
237 jump_func = ipa_get_ith_jump_func (IPA_EDGE_REF (cs), i);
238 type = jump_func->type;
240 fprintf (f, " param %d: ", i);
241 if (type == IPA_JF_UNKNOWN)
242 fprintf (f, "UNKNOWN\n");
243 else if (type == IPA_JF_KNOWN_TYPE)
245 fprintf (f, "KNOWN TYPE: base ");
246 print_generic_expr (f, jump_func->value.known_type.base_type, 0);
247 fprintf (f, ", offset "HOST_WIDE_INT_PRINT_DEC", component ",
248 jump_func->value.known_type.offset);
249 print_generic_expr (f, jump_func->value.known_type.component_type, 0);
250 fprintf (f, "\n");
252 else if (type == IPA_JF_CONST)
254 tree val = jump_func->value.constant.value;
255 fprintf (f, "CONST: ");
256 print_generic_expr (f, val, 0);
257 if (TREE_CODE (val) == ADDR_EXPR
258 && TREE_CODE (TREE_OPERAND (val, 0)) == CONST_DECL)
260 fprintf (f, " -> ");
261 print_generic_expr (f, DECL_INITIAL (TREE_OPERAND (val, 0)),
264 fprintf (f, "\n");
266 else if (type == IPA_JF_PASS_THROUGH)
268 fprintf (f, "PASS THROUGH: ");
269 fprintf (f, "%d, op %s",
270 jump_func->value.pass_through.formal_id,
271 get_tree_code_name(jump_func->value.pass_through.operation));
272 if (jump_func->value.pass_through.operation != NOP_EXPR)
274 fprintf (f, " ");
275 print_generic_expr (f,
276 jump_func->value.pass_through.operand, 0);
278 if (jump_func->value.pass_through.agg_preserved)
279 fprintf (f, ", agg_preserved");
280 if (jump_func->value.pass_through.type_preserved)
281 fprintf (f, ", type_preserved");
282 fprintf (f, "\n");
284 else if (type == IPA_JF_ANCESTOR)
286 fprintf (f, "ANCESTOR: ");
287 fprintf (f, "%d, offset "HOST_WIDE_INT_PRINT_DEC", ",
288 jump_func->value.ancestor.formal_id,
289 jump_func->value.ancestor.offset);
290 print_generic_expr (f, jump_func->value.ancestor.type, 0);
291 if (jump_func->value.ancestor.agg_preserved)
292 fprintf (f, ", agg_preserved");
293 if (jump_func->value.ancestor.type_preserved)
294 fprintf (f, ", type_preserved");
295 fprintf (f, "\n");
298 if (jump_func->agg.items)
300 struct ipa_agg_jf_item *item;
301 int j;
303 fprintf (f, " Aggregate passed by %s:\n",
304 jump_func->agg.by_ref ? "reference" : "value");
305 FOR_EACH_VEC_SAFE_ELT (jump_func->agg.items, j, item)
307 fprintf (f, " offset: " HOST_WIDE_INT_PRINT_DEC ", ",
308 item->offset);
309 if (TYPE_P (item->value))
310 fprintf (f, "clobber of " HOST_WIDE_INT_PRINT_DEC " bits",
311 tree_to_uhwi (TYPE_SIZE (item->value)));
312 else
314 fprintf (f, "cst: ");
315 print_generic_expr (f, item->value, 0);
317 fprintf (f, "\n");
324 /* Print the jump functions of all arguments on all call graph edges going from
325 NODE to file F. */
327 void
328 ipa_print_node_jump_functions (FILE *f, struct cgraph_node *node)
330 struct cgraph_edge *cs;
332 fprintf (f, " Jump functions of caller %s/%i:\n", node->name (),
333 node->order);
334 for (cs = node->callees; cs; cs = cs->next_callee)
336 if (!ipa_edge_args_info_available_for_edge_p (cs))
337 continue;
339 fprintf (f, " callsite %s/%i -> %s/%i : \n",
340 xstrdup (node->name ()), node->order,
341 xstrdup (cs->callee->name ()),
342 cs->callee->order);
343 ipa_print_node_jump_functions_for_edge (f, cs);
346 for (cs = node->indirect_calls; cs; cs = cs->next_callee)
348 struct cgraph_indirect_call_info *ii;
349 if (!ipa_edge_args_info_available_for_edge_p (cs))
350 continue;
352 ii = cs->indirect_info;
353 if (ii->agg_contents)
354 fprintf (f, " indirect %s callsite, calling param %i, "
355 "offset " HOST_WIDE_INT_PRINT_DEC ", %s",
356 ii->member_ptr ? "member ptr" : "aggregate",
357 ii->param_index, ii->offset,
358 ii->by_ref ? "by reference" : "by_value");
359 else
360 fprintf (f, " indirect %s callsite, calling param %i, "
361 "offset " HOST_WIDE_INT_PRINT_DEC,
362 ii->polymorphic ? "polymorphic" : "simple", ii->param_index,
363 ii->offset);
365 if (cs->call_stmt)
367 fprintf (f, ", for stmt ");
368 print_gimple_stmt (f, cs->call_stmt, 0, TDF_SLIM);
370 else
371 fprintf (f, "\n");
372 ipa_print_node_jump_functions_for_edge (f, cs);
376 /* Print ipa_jump_func data structures of all nodes in the call graph to F. */
378 void
379 ipa_print_all_jump_functions (FILE *f)
381 struct cgraph_node *node;
383 fprintf (f, "\nJump functions:\n");
384 FOR_EACH_FUNCTION (node)
386 ipa_print_node_jump_functions (f, node);
390 /* Set JFUNC to be a known type jump function. */
392 static void
393 ipa_set_jf_known_type (struct ipa_jump_func *jfunc, HOST_WIDE_INT offset,
394 tree base_type, tree component_type)
396 gcc_assert (TREE_CODE (component_type) == RECORD_TYPE
397 && TYPE_BINFO (component_type));
398 if (!flag_devirtualize)
399 return;
400 gcc_assert (BINFO_VTABLE (TYPE_BINFO (component_type)));
401 jfunc->type = IPA_JF_KNOWN_TYPE;
402 jfunc->value.known_type.offset = offset,
403 jfunc->value.known_type.base_type = base_type;
404 jfunc->value.known_type.component_type = component_type;
405 gcc_assert (component_type);
408 /* Set JFUNC to be a copy of another jmp (to be used by jump function
409 combination code). The two functions will share their rdesc. */
411 static void
412 ipa_set_jf_cst_copy (struct ipa_jump_func *dst,
413 struct ipa_jump_func *src)
416 gcc_checking_assert (src->type == IPA_JF_CONST);
417 dst->type = IPA_JF_CONST;
418 dst->value.constant = src->value.constant;
421 /* Set JFUNC to be a constant jmp function. */
423 static void
424 ipa_set_jf_constant (struct ipa_jump_func *jfunc, tree constant,
425 struct cgraph_edge *cs)
427 constant = unshare_expr (constant);
428 if (constant && EXPR_P (constant))
429 SET_EXPR_LOCATION (constant, UNKNOWN_LOCATION);
430 jfunc->type = IPA_JF_CONST;
431 jfunc->value.constant.value = unshare_expr_without_location (constant);
433 if (TREE_CODE (constant) == ADDR_EXPR
434 && TREE_CODE (TREE_OPERAND (constant, 0)) == FUNCTION_DECL)
436 struct ipa_cst_ref_desc *rdesc;
437 if (!ipa_refdesc_pool)
438 ipa_refdesc_pool = create_alloc_pool ("IPA-PROP ref descriptions",
439 sizeof (struct ipa_cst_ref_desc), 32);
441 rdesc = (struct ipa_cst_ref_desc *) pool_alloc (ipa_refdesc_pool);
442 rdesc->cs = cs;
443 rdesc->next_duplicate = NULL;
444 rdesc->refcount = 1;
445 jfunc->value.constant.rdesc = rdesc;
447 else
448 jfunc->value.constant.rdesc = NULL;
451 /* Set JFUNC to be a simple pass-through jump function. */
452 static void
453 ipa_set_jf_simple_pass_through (struct ipa_jump_func *jfunc, int formal_id,
454 bool agg_preserved, bool type_preserved)
456 jfunc->type = IPA_JF_PASS_THROUGH;
457 jfunc->value.pass_through.operand = NULL_TREE;
458 jfunc->value.pass_through.formal_id = formal_id;
459 jfunc->value.pass_through.operation = NOP_EXPR;
460 jfunc->value.pass_through.agg_preserved = agg_preserved;
461 jfunc->value.pass_through.type_preserved = type_preserved;
464 /* Set JFUNC to be an arithmetic pass through jump function. */
466 static void
467 ipa_set_jf_arith_pass_through (struct ipa_jump_func *jfunc, int formal_id,
468 tree operand, enum tree_code operation)
470 jfunc->type = IPA_JF_PASS_THROUGH;
471 jfunc->value.pass_through.operand = unshare_expr_without_location (operand);
472 jfunc->value.pass_through.formal_id = formal_id;
473 jfunc->value.pass_through.operation = operation;
474 jfunc->value.pass_through.agg_preserved = false;
475 jfunc->value.pass_through.type_preserved = false;
478 /* Set JFUNC to be an ancestor jump function. */
480 static void
481 ipa_set_ancestor_jf (struct ipa_jump_func *jfunc, HOST_WIDE_INT offset,
482 tree type, int formal_id, bool agg_preserved,
483 bool type_preserved)
485 if (!flag_devirtualize)
486 type_preserved = false;
487 gcc_assert (!type_preserved
488 || (TREE_CODE (type) == RECORD_TYPE
489 && TYPE_BINFO (type)
490 && BINFO_VTABLE (TYPE_BINFO (type))));
491 jfunc->type = IPA_JF_ANCESTOR;
492 jfunc->value.ancestor.formal_id = formal_id;
493 jfunc->value.ancestor.offset = offset;
494 jfunc->value.ancestor.type = type_preserved ? type : NULL;
495 jfunc->value.ancestor.agg_preserved = agg_preserved;
496 jfunc->value.ancestor.type_preserved = type_preserved;
499 /* Extract the acual BINFO being described by JFUNC which must be a known type
500 jump function. */
502 tree
503 ipa_binfo_from_known_type_jfunc (struct ipa_jump_func *jfunc)
505 tree base_binfo = TYPE_BINFO (jfunc->value.known_type.base_type);
506 if (!base_binfo)
507 return NULL_TREE;
508 return get_binfo_at_offset (base_binfo,
509 jfunc->value.known_type.offset,
510 jfunc->value.known_type.component_type);
513 /* Structure to be passed in between detect_type_change and
514 check_stmt_for_type_change. */
516 struct type_change_info
518 /* Offset into the object where there is the virtual method pointer we are
519 looking for. */
520 HOST_WIDE_INT offset;
521 /* The declaration or SSA_NAME pointer of the base that we are checking for
522 type change. */
523 tree object;
524 /* If we actually can tell the type that the object has changed to, it is
525 stored in this field. Otherwise it remains NULL_TREE. */
526 tree known_current_type;
527 /* Set to true if dynamic type change has been detected. */
528 bool type_maybe_changed;
529 /* Set to true if multiple types have been encountered. known_current_type
530 must be disregarded in that case. */
531 bool multiple_types_encountered;
534 /* Return true if STMT can modify a virtual method table pointer.
536 This function makes special assumptions about both constructors and
537 destructors which are all the functions that are allowed to alter the VMT
538 pointers. It assumes that destructors begin with assignment into all VMT
539 pointers and that constructors essentially look in the following way:
541 1) The very first thing they do is that they call constructors of ancestor
542 sub-objects that have them.
544 2) Then VMT pointers of this and all its ancestors is set to new values
545 corresponding to the type corresponding to the constructor.
547 3) Only afterwards, other stuff such as constructor of member sub-objects
548 and the code written by the user is run. Only this may include calling
549 virtual functions, directly or indirectly.
551 There is no way to call a constructor of an ancestor sub-object in any
552 other way.
554 This means that we do not have to care whether constructors get the correct
555 type information because they will always change it (in fact, if we define
556 the type to be given by the VMT pointer, it is undefined).
558 The most important fact to derive from the above is that if, for some
559 statement in the section 3, we try to detect whether the dynamic type has
560 changed, we can safely ignore all calls as we examine the function body
561 backwards until we reach statements in section 2 because these calls cannot
562 be ancestor constructors or destructors (if the input is not bogus) and so
563 do not change the dynamic type (this holds true only for automatically
564 allocated objects but at the moment we devirtualize only these). We then
565 must detect that statements in section 2 change the dynamic type and can try
566 to derive the new type. That is enough and we can stop, we will never see
567 the calls into constructors of sub-objects in this code. Therefore we can
568 safely ignore all call statements that we traverse.
571 static bool
572 stmt_may_be_vtbl_ptr_store (gimple stmt)
574 if (is_gimple_call (stmt))
575 return false;
576 /* TODO: Skip clobbers, doing so triggers problem in PR60306. */
577 else if (is_gimple_assign (stmt))
579 tree lhs = gimple_assign_lhs (stmt);
581 if (!AGGREGATE_TYPE_P (TREE_TYPE (lhs)))
583 if (flag_strict_aliasing
584 && !POINTER_TYPE_P (TREE_TYPE (lhs)))
585 return false;
587 if (TREE_CODE (lhs) == COMPONENT_REF
588 && !DECL_VIRTUAL_P (TREE_OPERAND (lhs, 1)))
589 return false;
590 /* In the future we might want to use get_base_ref_and_offset to find
591 if there is a field corresponding to the offset and if so, proceed
592 almost like if it was a component ref. */
595 return true;
598 /* If STMT can be proved to be an assignment to the virtual method table
599 pointer of ANALYZED_OBJ and the type associated with the new table
600 identified, return the type. Otherwise return NULL_TREE. */
602 static tree
603 extr_type_from_vtbl_ptr_store (gimple stmt, struct type_change_info *tci)
605 HOST_WIDE_INT offset, size, max_size;
606 tree lhs, rhs, base, binfo;
608 if (!gimple_assign_single_p (stmt))
609 return NULL_TREE;
611 lhs = gimple_assign_lhs (stmt);
612 rhs = gimple_assign_rhs1 (stmt);
613 if (TREE_CODE (lhs) != COMPONENT_REF
614 || !DECL_VIRTUAL_P (TREE_OPERAND (lhs, 1)))
615 return NULL_TREE;
617 base = get_ref_base_and_extent (lhs, &offset, &size, &max_size);
618 if (offset != tci->offset
619 || size != POINTER_SIZE
620 || max_size != POINTER_SIZE)
621 return NULL_TREE;
622 if (TREE_CODE (base) == MEM_REF)
624 if (TREE_CODE (tci->object) != MEM_REF
625 || TREE_OPERAND (tci->object, 0) != TREE_OPERAND (base, 0)
626 || !tree_int_cst_equal (TREE_OPERAND (tci->object, 1),
627 TREE_OPERAND (base, 1)))
628 return NULL_TREE;
630 else if (tci->object != base)
631 return NULL_TREE;
633 binfo = vtable_pointer_value_to_binfo (rhs);
635 /* FIXME: vtable_pointer_value_to_binfo may return BINFO of a
636 base of outer type. In this case we would need to either
637 work on binfos or translate it back to outer type and offset.
638 KNOWN_TYPE jump functions are not ready for that, yet. */
639 if (!binfo || TYPE_BINFO (BINFO_TYPE (binfo)) != binfo)
640 return NULL;
642 return BINFO_TYPE (binfo);
645 /* Callback of walk_aliased_vdefs and a helper function for
646 detect_type_change to check whether a particular statement may modify
647 the virtual table pointer, and if possible also determine the new type of
648 the (sub-)object. It stores its result into DATA, which points to a
649 type_change_info structure. */
651 static bool
652 check_stmt_for_type_change (ao_ref *ao ATTRIBUTE_UNUSED, tree vdef, void *data)
654 gimple stmt = SSA_NAME_DEF_STMT (vdef);
655 struct type_change_info *tci = (struct type_change_info *) data;
657 if (stmt_may_be_vtbl_ptr_store (stmt))
659 tree type;
660 type = extr_type_from_vtbl_ptr_store (stmt, tci);
661 if (tci->type_maybe_changed
662 && type != tci->known_current_type)
663 tci->multiple_types_encountered = true;
664 tci->known_current_type = type;
665 tci->type_maybe_changed = true;
666 return true;
668 else
669 return false;
674 /* Detect whether the dynamic type of ARG of COMP_TYPE has changed (before
675 callsite CALL) by looking for assignments to its virtual table pointer. If
676 it is, return true and fill in the jump function JFUNC with relevant type
677 information or set it to unknown. ARG is the object itself (not a pointer
678 to it, unless dereferenced). BASE is the base of the memory access as
679 returned by get_ref_base_and_extent, as is the offset. */
681 static bool
682 detect_type_change (tree arg, tree base, tree comp_type, gimple call,
683 struct ipa_jump_func *jfunc, HOST_WIDE_INT offset)
685 struct type_change_info tci;
686 ao_ref ao;
688 gcc_checking_assert (DECL_P (arg)
689 || TREE_CODE (arg) == MEM_REF
690 || handled_component_p (arg));
691 /* Const calls cannot call virtual methods through VMT and so type changes do
692 not matter. */
693 if (!flag_devirtualize || !gimple_vuse (call)
694 /* Be sure expected_type is polymorphic. */
695 || !comp_type
696 || TREE_CODE (comp_type) != RECORD_TYPE
697 || !TYPE_BINFO (comp_type)
698 || !BINFO_VTABLE (TYPE_BINFO (comp_type)))
699 return true;
701 /* C++ methods are not allowed to change THIS pointer unless they
702 are constructors or destructors. */
703 if (TREE_CODE (base) == MEM_REF
704 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME
705 && SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (base, 0))
706 && TREE_CODE (SSA_NAME_VAR (TREE_OPERAND (base, 0))) == PARM_DECL
707 && TREE_CODE (TREE_TYPE (current_function_decl)) == METHOD_TYPE
708 && !DECL_CXX_CONSTRUCTOR_P (current_function_decl)
709 && !DECL_CXX_DESTRUCTOR_P (current_function_decl)
710 && (SSA_NAME_VAR (TREE_OPERAND (base, 0))
711 == DECL_ARGUMENTS (current_function_decl)))
712 return false;
714 ao_ref_init (&ao, arg);
715 ao.base = base;
716 ao.offset = offset;
717 ao.size = POINTER_SIZE;
718 ao.max_size = ao.size;
720 tci.offset = offset;
721 tci.object = get_base_address (arg);
722 tci.known_current_type = NULL_TREE;
723 tci.type_maybe_changed = false;
724 tci.multiple_types_encountered = false;
726 walk_aliased_vdefs (&ao, gimple_vuse (call), check_stmt_for_type_change,
727 &tci, NULL);
728 if (!tci.type_maybe_changed)
729 return false;
731 if (!tci.known_current_type
732 || tci.multiple_types_encountered
733 || offset != 0)
734 jfunc->type = IPA_JF_UNKNOWN;
735 else
736 ipa_set_jf_known_type (jfunc, 0, tci.known_current_type, comp_type);
738 return true;
741 /* Like detect_type_change but ARG is supposed to be a non-dereferenced pointer
742 SSA name (its dereference will become the base and the offset is assumed to
743 be zero). */
745 static bool
746 detect_type_change_ssa (tree arg, tree comp_type,
747 gimple call, struct ipa_jump_func *jfunc)
749 gcc_checking_assert (TREE_CODE (arg) == SSA_NAME);
750 if (!flag_devirtualize
751 || !POINTER_TYPE_P (TREE_TYPE (arg)))
752 return false;
754 arg = build2 (MEM_REF, ptr_type_node, arg,
755 build_int_cst (ptr_type_node, 0));
757 return detect_type_change (arg, arg, comp_type, call, jfunc, 0);
760 /* Callback of walk_aliased_vdefs. Flags that it has been invoked to the
761 boolean variable pointed to by DATA. */
763 static bool
764 mark_modified (ao_ref *ao ATTRIBUTE_UNUSED, tree vdef ATTRIBUTE_UNUSED,
765 void *data)
767 bool *b = (bool *) data;
768 *b = true;
769 return true;
772 /* Return true if a load from a formal parameter PARM_LOAD is known to retrieve
773 a value known not to be modified in this function before reaching the
774 statement STMT. PARM_AINFO is a pointer to a structure containing temporary
775 information about the parameter. */
777 static bool
778 parm_preserved_before_stmt_p (struct param_analysis_info *parm_ainfo,
779 gimple stmt, tree parm_load)
781 bool modified = false;
782 bitmap *visited_stmts;
783 ao_ref refd;
785 if (parm_ainfo && parm_ainfo->parm_modified)
786 return false;
788 gcc_checking_assert (gimple_vuse (stmt) != NULL_TREE);
789 ao_ref_init (&refd, parm_load);
790 /* We can cache visited statements only when parm_ainfo is available and when
791 we are looking at a naked load of the whole parameter. */
792 if (!parm_ainfo || TREE_CODE (parm_load) != PARM_DECL)
793 visited_stmts = NULL;
794 else
795 visited_stmts = &parm_ainfo->parm_visited_statements;
796 walk_aliased_vdefs (&refd, gimple_vuse (stmt), mark_modified, &modified,
797 visited_stmts);
798 if (parm_ainfo && modified)
799 parm_ainfo->parm_modified = true;
800 return !modified;
803 /* If STMT is an assignment that loads a value from an parameter declaration,
804 return the index of the parameter in ipa_node_params which has not been
805 modified. Otherwise return -1. */
807 static int
808 load_from_unmodified_param (vec<ipa_param_descriptor> descriptors,
809 struct param_analysis_info *parms_ainfo,
810 gimple stmt)
812 int index;
813 tree op1;
815 if (!gimple_assign_single_p (stmt))
816 return -1;
818 op1 = gimple_assign_rhs1 (stmt);
819 if (TREE_CODE (op1) != PARM_DECL)
820 return -1;
822 index = ipa_get_param_decl_index_1 (descriptors, op1);
823 if (index < 0
824 || !parm_preserved_before_stmt_p (parms_ainfo ? &parms_ainfo[index]
825 : NULL, stmt, op1))
826 return -1;
828 return index;
831 /* Return true if memory reference REF loads data that are known to be
832 unmodified in this function before reaching statement STMT. PARM_AINFO, if
833 non-NULL, is a pointer to a structure containing temporary information about
834 PARM. */
836 static bool
837 parm_ref_data_preserved_p (struct param_analysis_info *parm_ainfo,
838 gimple stmt, tree ref)
840 bool modified = false;
841 ao_ref refd;
843 gcc_checking_assert (gimple_vuse (stmt));
844 if (parm_ainfo && parm_ainfo->ref_modified)
845 return false;
847 ao_ref_init (&refd, ref);
848 walk_aliased_vdefs (&refd, gimple_vuse (stmt), mark_modified, &modified,
849 NULL);
850 if (parm_ainfo && modified)
851 parm_ainfo->ref_modified = true;
852 return !modified;
855 /* Return true if the data pointed to by PARM is known to be unmodified in this
856 function before reaching call statement CALL into which it is passed.
857 PARM_AINFO is a pointer to a structure containing temporary information
858 about PARM. */
860 static bool
861 parm_ref_data_pass_through_p (struct param_analysis_info *parm_ainfo,
862 gimple call, tree parm)
864 bool modified = false;
865 ao_ref refd;
867 /* It's unnecessary to calculate anything about memory contnets for a const
868 function because it is not goin to use it. But do not cache the result
869 either. Also, no such calculations for non-pointers. */
870 if (!gimple_vuse (call)
871 || !POINTER_TYPE_P (TREE_TYPE (parm)))
872 return false;
874 if (parm_ainfo->pt_modified)
875 return false;
877 ao_ref_init_from_ptr_and_size (&refd, parm, NULL_TREE);
878 walk_aliased_vdefs (&refd, gimple_vuse (call), mark_modified, &modified,
879 parm_ainfo ? &parm_ainfo->pt_visited_statements : NULL);
880 if (modified)
881 parm_ainfo->pt_modified = true;
882 return !modified;
885 /* Return true if we can prove that OP is a memory reference loading unmodified
886 data from an aggregate passed as a parameter and if the aggregate is passed
887 by reference, that the alias type of the load corresponds to the type of the
888 formal parameter (so that we can rely on this type for TBAA in callers).
889 INFO and PARMS_AINFO describe parameters of the current function (but the
890 latter can be NULL), STMT is the load statement. If function returns true,
891 *INDEX_P, *OFFSET_P and *BY_REF is filled with the parameter index, offset
892 within the aggregate and whether it is a load from a value passed by
893 reference respectively. */
895 static bool
896 ipa_load_from_parm_agg_1 (vec<ipa_param_descriptor> descriptors,
897 struct param_analysis_info *parms_ainfo, gimple stmt,
898 tree op, int *index_p, HOST_WIDE_INT *offset_p,
899 HOST_WIDE_INT *size_p, bool *by_ref_p)
901 int index;
902 HOST_WIDE_INT size, max_size;
903 tree base = get_ref_base_and_extent (op, offset_p, &size, &max_size);
905 if (max_size == -1 || max_size != size || *offset_p < 0)
906 return false;
908 if (DECL_P (base))
910 int index = ipa_get_param_decl_index_1 (descriptors, base);
911 if (index >= 0
912 && parm_preserved_before_stmt_p (parms_ainfo ? &parms_ainfo[index]
913 : NULL, stmt, op))
915 *index_p = index;
916 *by_ref_p = false;
917 if (size_p)
918 *size_p = size;
919 return true;
921 return false;
924 if (TREE_CODE (base) != MEM_REF
925 || TREE_CODE (TREE_OPERAND (base, 0)) != SSA_NAME
926 || !integer_zerop (TREE_OPERAND (base, 1)))
927 return false;
929 if (SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (base, 0)))
931 tree parm = SSA_NAME_VAR (TREE_OPERAND (base, 0));
932 index = ipa_get_param_decl_index_1 (descriptors, parm);
934 else
936 /* This branch catches situations where a pointer parameter is not a
937 gimple register, for example:
939 void hip7(S*) (struct S * p)
941 void (*<T2e4>) (struct S *) D.1867;
942 struct S * p.1;
944 <bb 2>:
945 p.1_1 = p;
946 D.1867_2 = p.1_1->f;
947 D.1867_2 ();
948 gdp = &p;
951 gimple def = SSA_NAME_DEF_STMT (TREE_OPERAND (base, 0));
952 index = load_from_unmodified_param (descriptors, parms_ainfo, def);
955 if (index >= 0
956 && parm_ref_data_preserved_p (parms_ainfo ? &parms_ainfo[index] : NULL,
957 stmt, op))
959 *index_p = index;
960 *by_ref_p = true;
961 if (size_p)
962 *size_p = size;
963 return true;
965 return false;
968 /* Just like the previous function, just without the param_analysis_info
969 pointer, for users outside of this file. */
971 bool
972 ipa_load_from_parm_agg (struct ipa_node_params *info, gimple stmt,
973 tree op, int *index_p, HOST_WIDE_INT *offset_p,
974 bool *by_ref_p)
976 return ipa_load_from_parm_agg_1 (info->descriptors, NULL, stmt, op, index_p,
977 offset_p, NULL, by_ref_p);
980 /* Given that an actual argument is an SSA_NAME (given in NAME) and is a result
981 of an assignment statement STMT, try to determine whether we are actually
982 handling any of the following cases and construct an appropriate jump
983 function into JFUNC if so:
985 1) The passed value is loaded from a formal parameter which is not a gimple
986 register (most probably because it is addressable, the value has to be
987 scalar) and we can guarantee the value has not changed. This case can
988 therefore be described by a simple pass-through jump function. For example:
990 foo (int a)
992 int a.0;
994 a.0_2 = a;
995 bar (a.0_2);
997 2) The passed value can be described by a simple arithmetic pass-through
998 jump function. E.g.
1000 foo (int a)
1002 int D.2064;
1004 D.2064_4 = a.1(D) + 4;
1005 bar (D.2064_4);
1007 This case can also occur in combination of the previous one, e.g.:
1009 foo (int a, int z)
1011 int a.0;
1012 int D.2064;
1014 a.0_3 = a;
1015 D.2064_4 = a.0_3 + 4;
1016 foo (D.2064_4);
1018 3) The passed value is an address of an object within another one (which
1019 also passed by reference). Such situations are described by an ancestor
1020 jump function and describe situations such as:
1022 B::foo() (struct B * const this)
1024 struct A * D.1845;
1026 D.1845_2 = &this_1(D)->D.1748;
1027 A::bar (D.1845_2);
1029 INFO is the structure describing individual parameters access different
1030 stages of IPA optimizations. PARMS_AINFO contains the information that is
1031 only needed for intraprocedural analysis. */
1033 static void
1034 compute_complex_assign_jump_func (struct ipa_node_params *info,
1035 struct param_analysis_info *parms_ainfo,
1036 struct ipa_jump_func *jfunc,
1037 gimple call, gimple stmt, tree name,
1038 tree param_type)
1040 HOST_WIDE_INT offset, size, max_size;
1041 tree op1, tc_ssa, base, ssa;
1042 int index;
1044 op1 = gimple_assign_rhs1 (stmt);
1046 if (TREE_CODE (op1) == SSA_NAME)
1048 if (SSA_NAME_IS_DEFAULT_DEF (op1))
1049 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (op1));
1050 else
1051 index = load_from_unmodified_param (info->descriptors, parms_ainfo,
1052 SSA_NAME_DEF_STMT (op1));
1053 tc_ssa = op1;
1055 else
1057 index = load_from_unmodified_param (info->descriptors, parms_ainfo, stmt);
1058 tc_ssa = gimple_assign_lhs (stmt);
1061 if (index >= 0)
1063 tree op2 = gimple_assign_rhs2 (stmt);
1065 if (op2)
1067 if (!is_gimple_ip_invariant (op2)
1068 || (TREE_CODE_CLASS (gimple_expr_code (stmt)) != tcc_comparison
1069 && !useless_type_conversion_p (TREE_TYPE (name),
1070 TREE_TYPE (op1))))
1071 return;
1073 ipa_set_jf_arith_pass_through (jfunc, index, op2,
1074 gimple_assign_rhs_code (stmt));
1076 else if (gimple_assign_single_p (stmt))
1078 bool agg_p = parm_ref_data_pass_through_p (&parms_ainfo[index],
1079 call, tc_ssa);
1080 bool type_p = false;
1082 if (param_type && POINTER_TYPE_P (param_type))
1083 type_p = !detect_type_change_ssa (tc_ssa, TREE_TYPE (param_type),
1084 call, jfunc);
1085 if (type_p || jfunc->type == IPA_JF_UNKNOWN)
1086 ipa_set_jf_simple_pass_through (jfunc, index, agg_p, type_p);
1088 return;
1091 if (TREE_CODE (op1) != ADDR_EXPR)
1092 return;
1093 op1 = TREE_OPERAND (op1, 0);
1094 if (TREE_CODE (TREE_TYPE (op1)) != RECORD_TYPE)
1095 return;
1096 base = get_ref_base_and_extent (op1, &offset, &size, &max_size);
1097 if (TREE_CODE (base) != MEM_REF
1098 /* If this is a varying address, punt. */
1099 || max_size == -1
1100 || max_size != size)
1101 return;
1102 offset += mem_ref_offset (base).to_short_addr () * BITS_PER_UNIT;
1103 ssa = TREE_OPERAND (base, 0);
1104 if (TREE_CODE (ssa) != SSA_NAME
1105 || !SSA_NAME_IS_DEFAULT_DEF (ssa)
1106 || offset < 0)
1107 return;
1109 /* Dynamic types are changed in constructors and destructors. */
1110 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (ssa));
1111 if (index >= 0 && param_type && POINTER_TYPE_P (param_type))
1113 bool type_p = !detect_type_change (op1, base, TREE_TYPE (param_type),
1114 call, jfunc, offset);
1115 if (type_p || jfunc->type == IPA_JF_UNKNOWN)
1116 ipa_set_ancestor_jf (jfunc, offset,
1117 type_p ? TREE_TYPE (param_type) : NULL, index,
1118 parm_ref_data_pass_through_p (&parms_ainfo[index],
1119 call, ssa), type_p);
1123 /* Extract the base, offset and MEM_REF expression from a statement ASSIGN if
1124 it looks like:
1126 iftmp.1_3 = &obj_2(D)->D.1762;
1128 The base of the MEM_REF must be a default definition SSA NAME of a
1129 parameter. Return NULL_TREE if it looks otherwise. If case of success, the
1130 whole MEM_REF expression is returned and the offset calculated from any
1131 handled components and the MEM_REF itself is stored into *OFFSET. The whole
1132 RHS stripped off the ADDR_EXPR is stored into *OBJ_P. */
1134 static tree
1135 get_ancestor_addr_info (gimple assign, tree *obj_p, HOST_WIDE_INT *offset)
1137 HOST_WIDE_INT size, max_size;
1138 tree expr, parm, obj;
1140 if (!gimple_assign_single_p (assign))
1141 return NULL_TREE;
1142 expr = gimple_assign_rhs1 (assign);
1144 if (TREE_CODE (expr) != ADDR_EXPR)
1145 return NULL_TREE;
1146 expr = TREE_OPERAND (expr, 0);
1147 obj = expr;
1148 expr = get_ref_base_and_extent (expr, offset, &size, &max_size);
1150 if (TREE_CODE (expr) != MEM_REF
1151 /* If this is a varying address, punt. */
1152 || max_size == -1
1153 || max_size != size
1154 || *offset < 0)
1155 return NULL_TREE;
1156 parm = TREE_OPERAND (expr, 0);
1157 if (TREE_CODE (parm) != SSA_NAME
1158 || !SSA_NAME_IS_DEFAULT_DEF (parm)
1159 || TREE_CODE (SSA_NAME_VAR (parm)) != PARM_DECL)
1160 return NULL_TREE;
1162 *offset += mem_ref_offset (expr).to_short_addr () * BITS_PER_UNIT;
1163 *obj_p = obj;
1164 return expr;
1168 /* Given that an actual argument is an SSA_NAME that is a result of a phi
1169 statement PHI, try to find out whether NAME is in fact a
1170 multiple-inheritance typecast from a descendant into an ancestor of a formal
1171 parameter and thus can be described by an ancestor jump function and if so,
1172 write the appropriate function into JFUNC.
1174 Essentially we want to match the following pattern:
1176 if (obj_2(D) != 0B)
1177 goto <bb 3>;
1178 else
1179 goto <bb 4>;
1181 <bb 3>:
1182 iftmp.1_3 = &obj_2(D)->D.1762;
1184 <bb 4>:
1185 # iftmp.1_1 = PHI <iftmp.1_3(3), 0B(2)>
1186 D.1879_6 = middleman_1 (iftmp.1_1, i_5(D));
1187 return D.1879_6; */
1189 static void
1190 compute_complex_ancestor_jump_func (struct ipa_node_params *info,
1191 struct param_analysis_info *parms_ainfo,
1192 struct ipa_jump_func *jfunc,
1193 gimple call, gimple phi, tree param_type)
1195 HOST_WIDE_INT offset;
1196 gimple assign, cond;
1197 basic_block phi_bb, assign_bb, cond_bb;
1198 tree tmp, parm, expr, obj;
1199 int index, i;
1201 if (gimple_phi_num_args (phi) != 2)
1202 return;
1204 if (integer_zerop (PHI_ARG_DEF (phi, 1)))
1205 tmp = PHI_ARG_DEF (phi, 0);
1206 else if (integer_zerop (PHI_ARG_DEF (phi, 0)))
1207 tmp = PHI_ARG_DEF (phi, 1);
1208 else
1209 return;
1210 if (TREE_CODE (tmp) != SSA_NAME
1211 || SSA_NAME_IS_DEFAULT_DEF (tmp)
1212 || !POINTER_TYPE_P (TREE_TYPE (tmp))
1213 || TREE_CODE (TREE_TYPE (TREE_TYPE (tmp))) != RECORD_TYPE)
1214 return;
1216 assign = SSA_NAME_DEF_STMT (tmp);
1217 assign_bb = gimple_bb (assign);
1218 if (!single_pred_p (assign_bb))
1219 return;
1220 expr = get_ancestor_addr_info (assign, &obj, &offset);
1221 if (!expr)
1222 return;
1223 parm = TREE_OPERAND (expr, 0);
1224 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (parm));
1225 if (index < 0)
1226 return;
1228 cond_bb = single_pred (assign_bb);
1229 cond = last_stmt (cond_bb);
1230 if (!cond
1231 || gimple_code (cond) != GIMPLE_COND
1232 || gimple_cond_code (cond) != NE_EXPR
1233 || gimple_cond_lhs (cond) != parm
1234 || !integer_zerop (gimple_cond_rhs (cond)))
1235 return;
1237 phi_bb = gimple_bb (phi);
1238 for (i = 0; i < 2; i++)
1240 basic_block pred = EDGE_PRED (phi_bb, i)->src;
1241 if (pred != assign_bb && pred != cond_bb)
1242 return;
1245 bool type_p = false;
1246 if (param_type && POINTER_TYPE_P (param_type))
1247 type_p = !detect_type_change (obj, expr, TREE_TYPE (param_type),
1248 call, jfunc, offset);
1249 if (type_p || jfunc->type == IPA_JF_UNKNOWN)
1250 ipa_set_ancestor_jf (jfunc, offset, type_p ? TREE_TYPE (param_type) : NULL, index,
1251 parm_ref_data_pass_through_p (&parms_ainfo[index],
1252 call, parm), type_p);
1255 /* Given OP which is passed as an actual argument to a called function,
1256 determine if it is possible to construct a KNOWN_TYPE jump function for it
1257 and if so, create one and store it to JFUNC.
1258 EXPECTED_TYPE represents a type the argument should be in */
1260 static void
1261 compute_known_type_jump_func (tree op, struct ipa_jump_func *jfunc,
1262 gimple call, tree expected_type)
1264 HOST_WIDE_INT offset, size, max_size;
1265 tree base;
1267 if (!flag_devirtualize
1268 || TREE_CODE (op) != ADDR_EXPR
1269 || TREE_CODE (TREE_TYPE (TREE_TYPE (op))) != RECORD_TYPE
1270 /* Be sure expected_type is polymorphic. */
1271 || !expected_type
1272 || TREE_CODE (expected_type) != RECORD_TYPE
1273 || !TYPE_BINFO (expected_type)
1274 || !BINFO_VTABLE (TYPE_BINFO (expected_type)))
1275 return;
1277 op = TREE_OPERAND (op, 0);
1278 base = get_ref_base_and_extent (op, &offset, &size, &max_size);
1279 if (!DECL_P (base)
1280 || max_size == -1
1281 || max_size != size
1282 || TREE_CODE (TREE_TYPE (base)) != RECORD_TYPE
1283 || is_global_var (base))
1284 return;
1286 if (detect_type_change (op, base, expected_type, call, jfunc, offset))
1287 return;
1289 ipa_set_jf_known_type (jfunc, offset, TREE_TYPE (base),
1290 expected_type);
1293 /* Inspect the given TYPE and return true iff it has the same structure (the
1294 same number of fields of the same types) as a C++ member pointer. If
1295 METHOD_PTR and DELTA are non-NULL, store the trees representing the
1296 corresponding fields there. */
1298 static bool
1299 type_like_member_ptr_p (tree type, tree *method_ptr, tree *delta)
1301 tree fld;
1303 if (TREE_CODE (type) != RECORD_TYPE)
1304 return false;
1306 fld = TYPE_FIELDS (type);
1307 if (!fld || !POINTER_TYPE_P (TREE_TYPE (fld))
1308 || TREE_CODE (TREE_TYPE (TREE_TYPE (fld))) != METHOD_TYPE
1309 || !tree_fits_uhwi_p (DECL_FIELD_OFFSET (fld)))
1310 return false;
1312 if (method_ptr)
1313 *method_ptr = fld;
1315 fld = DECL_CHAIN (fld);
1316 if (!fld || INTEGRAL_TYPE_P (fld)
1317 || !tree_fits_uhwi_p (DECL_FIELD_OFFSET (fld)))
1318 return false;
1319 if (delta)
1320 *delta = fld;
1322 if (DECL_CHAIN (fld))
1323 return false;
1325 return true;
1328 /* If RHS is an SSA_NAME and it is defined by a simple copy assign statement,
1329 return the rhs of its defining statement. Otherwise return RHS as it
1330 is. */
1332 static inline tree
1333 get_ssa_def_if_simple_copy (tree rhs)
1335 while (TREE_CODE (rhs) == SSA_NAME && !SSA_NAME_IS_DEFAULT_DEF (rhs))
1337 gimple def_stmt = SSA_NAME_DEF_STMT (rhs);
1339 if (gimple_assign_single_p (def_stmt))
1340 rhs = gimple_assign_rhs1 (def_stmt);
1341 else
1342 break;
1344 return rhs;
1347 /* Simple linked list, describing known contents of an aggregate beforere
1348 call. */
1350 struct ipa_known_agg_contents_list
1352 /* Offset and size of the described part of the aggregate. */
1353 HOST_WIDE_INT offset, size;
1354 /* Known constant value or NULL if the contents is known to be unknown. */
1355 tree constant;
1356 /* Pointer to the next structure in the list. */
1357 struct ipa_known_agg_contents_list *next;
1360 /* Traverse statements from CALL backwards, scanning whether an aggregate given
1361 in ARG is filled in with constant values. ARG can either be an aggregate
1362 expression or a pointer to an aggregate. ARG_TYPE is the type of the aggregate.
1363 JFUNC is the jump function into which the constants are subsequently stored. */
1365 static void
1366 determine_known_aggregate_parts (gimple call, tree arg, tree arg_type,
1367 struct ipa_jump_func *jfunc)
1369 struct ipa_known_agg_contents_list *list = NULL;
1370 int item_count = 0, const_count = 0;
1371 HOST_WIDE_INT arg_offset, arg_size;
1372 gimple_stmt_iterator gsi;
1373 tree arg_base;
1374 bool check_ref, by_ref;
1375 ao_ref r;
1377 /* The function operates in three stages. First, we prepare check_ref, r,
1378 arg_base and arg_offset based on what is actually passed as an actual
1379 argument. */
1381 if (POINTER_TYPE_P (arg_type))
1383 by_ref = true;
1384 if (TREE_CODE (arg) == SSA_NAME)
1386 tree type_size;
1387 if (!tree_fits_uhwi_p (TYPE_SIZE (TREE_TYPE (arg_type))))
1388 return;
1389 check_ref = true;
1390 arg_base = arg;
1391 arg_offset = 0;
1392 type_size = TYPE_SIZE (TREE_TYPE (arg_type));
1393 arg_size = tree_to_uhwi (type_size);
1394 ao_ref_init_from_ptr_and_size (&r, arg_base, NULL_TREE);
1396 else if (TREE_CODE (arg) == ADDR_EXPR)
1398 HOST_WIDE_INT arg_max_size;
1400 arg = TREE_OPERAND (arg, 0);
1401 arg_base = get_ref_base_and_extent (arg, &arg_offset, &arg_size,
1402 &arg_max_size);
1403 if (arg_max_size == -1
1404 || arg_max_size != arg_size
1405 || arg_offset < 0)
1406 return;
1407 if (DECL_P (arg_base))
1409 tree size;
1410 check_ref = false;
1411 size = build_int_cst (integer_type_node, arg_size);
1412 ao_ref_init_from_ptr_and_size (&r, arg_base, size);
1414 else
1415 return;
1417 else
1418 return;
1420 else
1422 HOST_WIDE_INT arg_max_size;
1424 gcc_checking_assert (AGGREGATE_TYPE_P (TREE_TYPE (arg)));
1426 by_ref = false;
1427 check_ref = false;
1428 arg_base = get_ref_base_and_extent (arg, &arg_offset, &arg_size,
1429 &arg_max_size);
1430 if (arg_max_size == -1
1431 || arg_max_size != arg_size
1432 || arg_offset < 0)
1433 return;
1435 ao_ref_init (&r, arg);
1438 /* Second stage walks back the BB, looks at individual statements and as long
1439 as it is confident of how the statements affect contents of the
1440 aggregates, it builds a sorted linked list of ipa_agg_jf_list structures
1441 describing it. */
1442 gsi = gsi_for_stmt (call);
1443 gsi_prev (&gsi);
1444 for (; !gsi_end_p (gsi); gsi_prev (&gsi))
1446 struct ipa_known_agg_contents_list *n, **p;
1447 gimple stmt = gsi_stmt (gsi);
1448 HOST_WIDE_INT lhs_offset, lhs_size, lhs_max_size;
1449 tree lhs, rhs, lhs_base;
1450 bool partial_overlap;
1452 if (!stmt_may_clobber_ref_p_1 (stmt, &r))
1453 continue;
1454 if (!gimple_assign_single_p (stmt))
1455 break;
1457 lhs = gimple_assign_lhs (stmt);
1458 rhs = gimple_assign_rhs1 (stmt);
1459 if (!is_gimple_reg_type (TREE_TYPE (rhs))
1460 || TREE_CODE (lhs) == BIT_FIELD_REF
1461 || contains_bitfld_component_ref_p (lhs))
1462 break;
1464 lhs_base = get_ref_base_and_extent (lhs, &lhs_offset, &lhs_size,
1465 &lhs_max_size);
1466 if (lhs_max_size == -1
1467 || lhs_max_size != lhs_size
1468 || (lhs_offset < arg_offset
1469 && lhs_offset + lhs_size > arg_offset)
1470 || (lhs_offset < arg_offset + arg_size
1471 && lhs_offset + lhs_size > arg_offset + arg_size))
1472 break;
1474 if (check_ref)
1476 if (TREE_CODE (lhs_base) != MEM_REF
1477 || TREE_OPERAND (lhs_base, 0) != arg_base
1478 || !integer_zerop (TREE_OPERAND (lhs_base, 1)))
1479 break;
1481 else if (lhs_base != arg_base)
1483 if (DECL_P (lhs_base))
1484 continue;
1485 else
1486 break;
1489 if (lhs_offset + lhs_size < arg_offset
1490 || lhs_offset >= (arg_offset + arg_size))
1491 continue;
1493 partial_overlap = false;
1494 p = &list;
1495 while (*p && (*p)->offset < lhs_offset)
1497 if ((*p)->offset + (*p)->size > lhs_offset)
1499 partial_overlap = true;
1500 break;
1502 p = &(*p)->next;
1504 if (partial_overlap)
1505 break;
1506 if (*p && (*p)->offset < lhs_offset + lhs_size)
1508 if ((*p)->offset == lhs_offset && (*p)->size == lhs_size)
1509 /* We already know this value is subsequently overwritten with
1510 something else. */
1511 continue;
1512 else
1513 /* Otherwise this is a partial overlap which we cannot
1514 represent. */
1515 break;
1518 rhs = get_ssa_def_if_simple_copy (rhs);
1519 n = XALLOCA (struct ipa_known_agg_contents_list);
1520 n->size = lhs_size;
1521 n->offset = lhs_offset;
1522 if (is_gimple_ip_invariant (rhs))
1524 n->constant = rhs;
1525 const_count++;
1527 else
1528 n->constant = NULL_TREE;
1529 n->next = *p;
1530 *p = n;
1532 item_count++;
1533 if (const_count == PARAM_VALUE (PARAM_IPA_MAX_AGG_ITEMS)
1534 || item_count == 2 * PARAM_VALUE (PARAM_IPA_MAX_AGG_ITEMS))
1535 break;
1538 /* Third stage just goes over the list and creates an appropriate vector of
1539 ipa_agg_jf_item structures out of it, of sourse only if there are
1540 any known constants to begin with. */
1542 if (const_count)
1544 jfunc->agg.by_ref = by_ref;
1545 vec_alloc (jfunc->agg.items, const_count);
1546 while (list)
1548 if (list->constant)
1550 struct ipa_agg_jf_item item;
1551 item.offset = list->offset - arg_offset;
1552 gcc_assert ((item.offset % BITS_PER_UNIT) == 0);
1553 item.value = unshare_expr_without_location (list->constant);
1554 jfunc->agg.items->quick_push (item);
1556 list = list->next;
1561 static tree
1562 ipa_get_callee_param_type (struct cgraph_edge *e, int i)
1564 int n;
1565 tree type = (e->callee
1566 ? TREE_TYPE (e->callee->decl)
1567 : gimple_call_fntype (e->call_stmt));
1568 tree t = TYPE_ARG_TYPES (type);
1570 for (n = 0; n < i; n++)
1572 if (!t)
1573 break;
1574 t = TREE_CHAIN (t);
1576 if (t)
1577 return TREE_VALUE (t);
1578 if (!e->callee)
1579 return NULL;
1580 t = DECL_ARGUMENTS (e->callee->decl);
1581 for (n = 0; n < i; n++)
1583 if (!t)
1584 return NULL;
1585 t = TREE_CHAIN (t);
1587 if (t)
1588 return TREE_TYPE (t);
1589 return NULL;
1592 /* Compute jump function for all arguments of callsite CS and insert the
1593 information in the jump_functions array in the ipa_edge_args corresponding
1594 to this callsite. */
1596 static void
1597 ipa_compute_jump_functions_for_edge (struct param_analysis_info *parms_ainfo,
1598 struct cgraph_edge *cs)
1600 struct ipa_node_params *info = IPA_NODE_REF (cs->caller);
1601 struct ipa_edge_args *args = IPA_EDGE_REF (cs);
1602 gimple call = cs->call_stmt;
1603 int n, arg_num = gimple_call_num_args (call);
1605 if (arg_num == 0 || args->jump_functions)
1606 return;
1607 vec_safe_grow_cleared (args->jump_functions, arg_num);
1609 if (gimple_call_internal_p (call))
1610 return;
1611 if (ipa_func_spec_opts_forbid_analysis_p (cs->caller))
1612 return;
1614 for (n = 0; n < arg_num; n++)
1616 struct ipa_jump_func *jfunc = ipa_get_ith_jump_func (args, n);
1617 tree arg = gimple_call_arg (call, n);
1618 tree param_type = ipa_get_callee_param_type (cs, n);
1620 if (is_gimple_ip_invariant (arg))
1621 ipa_set_jf_constant (jfunc, arg, cs);
1622 else if (!is_gimple_reg_type (TREE_TYPE (arg))
1623 && TREE_CODE (arg) == PARM_DECL)
1625 int index = ipa_get_param_decl_index (info, arg);
1627 gcc_assert (index >=0);
1628 /* Aggregate passed by value, check for pass-through, otherwise we
1629 will attempt to fill in aggregate contents later in this
1630 for cycle. */
1631 if (parm_preserved_before_stmt_p (&parms_ainfo[index], call, arg))
1633 ipa_set_jf_simple_pass_through (jfunc, index, false, false);
1634 continue;
1637 else if (TREE_CODE (arg) == SSA_NAME)
1639 if (SSA_NAME_IS_DEFAULT_DEF (arg))
1641 int index = ipa_get_param_decl_index (info, SSA_NAME_VAR (arg));
1642 if (index >= 0)
1644 bool agg_p, type_p;
1645 agg_p = parm_ref_data_pass_through_p (&parms_ainfo[index],
1646 call, arg);
1647 if (param_type && POINTER_TYPE_P (param_type))
1648 type_p = !detect_type_change_ssa (arg, TREE_TYPE (param_type),
1649 call, jfunc);
1650 else
1651 type_p = false;
1652 if (type_p || jfunc->type == IPA_JF_UNKNOWN)
1653 ipa_set_jf_simple_pass_through (jfunc, index, agg_p,
1654 type_p);
1657 else
1659 gimple stmt = SSA_NAME_DEF_STMT (arg);
1660 if (is_gimple_assign (stmt))
1661 compute_complex_assign_jump_func (info, parms_ainfo, jfunc,
1662 call, stmt, arg, param_type);
1663 else if (gimple_code (stmt) == GIMPLE_PHI)
1664 compute_complex_ancestor_jump_func (info, parms_ainfo, jfunc,
1665 call, stmt, param_type);
1668 else
1669 compute_known_type_jump_func (arg, jfunc, call,
1670 param_type
1671 && POINTER_TYPE_P (param_type)
1672 ? TREE_TYPE (param_type)
1673 : NULL);
1675 /* If ARG is pointer, we can not use its type to determine the type of aggregate
1676 passed (because type conversions are ignored in gimple). Usually we can
1677 safely get type from function declaration, but in case of K&R prototypes or
1678 variadic functions we can try our luck with type of the pointer passed.
1679 TODO: Since we look for actual initialization of the memory object, we may better
1680 work out the type based on the memory stores we find. */
1681 if (!param_type)
1682 param_type = TREE_TYPE (arg);
1684 if ((jfunc->type != IPA_JF_PASS_THROUGH
1685 || !ipa_get_jf_pass_through_agg_preserved (jfunc))
1686 && (jfunc->type != IPA_JF_ANCESTOR
1687 || !ipa_get_jf_ancestor_agg_preserved (jfunc))
1688 && (AGGREGATE_TYPE_P (TREE_TYPE (arg))
1689 || POINTER_TYPE_P (param_type)))
1690 determine_known_aggregate_parts (call, arg, param_type, jfunc);
1694 /* Compute jump functions for all edges - both direct and indirect - outgoing
1695 from NODE. Also count the actual arguments in the process. */
1697 static void
1698 ipa_compute_jump_functions (struct cgraph_node *node,
1699 struct param_analysis_info *parms_ainfo)
1701 struct cgraph_edge *cs;
1703 for (cs = node->callees; cs; cs = cs->next_callee)
1705 struct cgraph_node *callee = cgraph_function_or_thunk_node (cs->callee,
1706 NULL);
1707 /* We do not need to bother analyzing calls to unknown
1708 functions unless they may become known during lto/whopr. */
1709 if (!callee->definition && !flag_lto)
1710 continue;
1711 ipa_compute_jump_functions_for_edge (parms_ainfo, cs);
1714 for (cs = node->indirect_calls; cs; cs = cs->next_callee)
1715 ipa_compute_jump_functions_for_edge (parms_ainfo, cs);
1718 /* If STMT looks like a statement loading a value from a member pointer formal
1719 parameter, return that parameter and store the offset of the field to
1720 *OFFSET_P, if it is non-NULL. Otherwise return NULL (but *OFFSET_P still
1721 might be clobbered). If USE_DELTA, then we look for a use of the delta
1722 field rather than the pfn. */
1724 static tree
1725 ipa_get_stmt_member_ptr_load_param (gimple stmt, bool use_delta,
1726 HOST_WIDE_INT *offset_p)
1728 tree rhs, rec, ref_field, ref_offset, fld, ptr_field, delta_field;
1730 if (!gimple_assign_single_p (stmt))
1731 return NULL_TREE;
1733 rhs = gimple_assign_rhs1 (stmt);
1734 if (TREE_CODE (rhs) == COMPONENT_REF)
1736 ref_field = TREE_OPERAND (rhs, 1);
1737 rhs = TREE_OPERAND (rhs, 0);
1739 else
1740 ref_field = NULL_TREE;
1741 if (TREE_CODE (rhs) != MEM_REF)
1742 return NULL_TREE;
1743 rec = TREE_OPERAND (rhs, 0);
1744 if (TREE_CODE (rec) != ADDR_EXPR)
1745 return NULL_TREE;
1746 rec = TREE_OPERAND (rec, 0);
1747 if (TREE_CODE (rec) != PARM_DECL
1748 || !type_like_member_ptr_p (TREE_TYPE (rec), &ptr_field, &delta_field))
1749 return NULL_TREE;
1750 ref_offset = TREE_OPERAND (rhs, 1);
1752 if (use_delta)
1753 fld = delta_field;
1754 else
1755 fld = ptr_field;
1756 if (offset_p)
1757 *offset_p = int_bit_position (fld);
1759 if (ref_field)
1761 if (integer_nonzerop (ref_offset))
1762 return NULL_TREE;
1763 return ref_field == fld ? rec : NULL_TREE;
1765 else
1766 return tree_int_cst_equal (byte_position (fld), ref_offset) ? rec
1767 : NULL_TREE;
1770 /* Returns true iff T is an SSA_NAME defined by a statement. */
1772 static bool
1773 ipa_is_ssa_with_stmt_def (tree t)
1775 if (TREE_CODE (t) == SSA_NAME
1776 && !SSA_NAME_IS_DEFAULT_DEF (t))
1777 return true;
1778 else
1779 return false;
1782 /* Find the indirect call graph edge corresponding to STMT and mark it as a
1783 call to a parameter number PARAM_INDEX. NODE is the caller. Return the
1784 indirect call graph edge. */
1786 static struct cgraph_edge *
1787 ipa_note_param_call (struct cgraph_node *node, int param_index, gimple stmt)
1789 struct cgraph_edge *cs;
1791 cs = cgraph_edge (node, stmt);
1792 cs->indirect_info->param_index = param_index;
1793 cs->indirect_info->agg_contents = 0;
1794 cs->indirect_info->member_ptr = 0;
1795 return cs;
1798 /* Analyze the CALL and examine uses of formal parameters of the caller NODE
1799 (described by INFO). PARMS_AINFO is a pointer to a vector containing
1800 intermediate information about each formal parameter. Currently it checks
1801 whether the call calls a pointer that is a formal parameter and if so, the
1802 parameter is marked with the called flag and an indirect call graph edge
1803 describing the call is created. This is very simple for ordinary pointers
1804 represented in SSA but not-so-nice when it comes to member pointers. The
1805 ugly part of this function does nothing more than trying to match the
1806 pattern of such a call. An example of such a pattern is the gimple dump
1807 below, the call is on the last line:
1809 <bb 2>:
1810 f$__delta_5 = f.__delta;
1811 f$__pfn_24 = f.__pfn;
1814 <bb 2>:
1815 f$__delta_5 = MEM[(struct *)&f];
1816 f$__pfn_24 = MEM[(struct *)&f + 4B];
1818 and a few lines below:
1820 <bb 5>
1821 D.2496_3 = (int) f$__pfn_24;
1822 D.2497_4 = D.2496_3 & 1;
1823 if (D.2497_4 != 0)
1824 goto <bb 3>;
1825 else
1826 goto <bb 4>;
1828 <bb 6>:
1829 D.2500_7 = (unsigned int) f$__delta_5;
1830 D.2501_8 = &S + D.2500_7;
1831 D.2502_9 = (int (*__vtbl_ptr_type) (void) * *) D.2501_8;
1832 D.2503_10 = *D.2502_9;
1833 D.2504_12 = f$__pfn_24 + -1;
1834 D.2505_13 = (unsigned int) D.2504_12;
1835 D.2506_14 = D.2503_10 + D.2505_13;
1836 D.2507_15 = *D.2506_14;
1837 iftmp.11_16 = (String:: *) D.2507_15;
1839 <bb 7>:
1840 # iftmp.11_1 = PHI <iftmp.11_16(3), f$__pfn_24(2)>
1841 D.2500_19 = (unsigned int) f$__delta_5;
1842 D.2508_20 = &S + D.2500_19;
1843 D.2493_21 = iftmp.11_1 (D.2508_20, 4);
1845 Such patterns are results of simple calls to a member pointer:
1847 int doprinting (int (MyString::* f)(int) const)
1849 MyString S ("somestring");
1851 return (S.*f)(4);
1854 Moreover, the function also looks for called pointers loaded from aggregates
1855 passed by value or reference. */
1857 static void
1858 ipa_analyze_indirect_call_uses (struct cgraph_node *node,
1859 struct ipa_node_params *info,
1860 struct param_analysis_info *parms_ainfo,
1861 gimple call, tree target)
1863 gimple def;
1864 tree n1, n2;
1865 gimple d1, d2;
1866 tree rec, rec2, cond;
1867 gimple branch;
1868 int index;
1869 basic_block bb, virt_bb, join;
1870 HOST_WIDE_INT offset;
1871 bool by_ref;
1873 if (SSA_NAME_IS_DEFAULT_DEF (target))
1875 tree var = SSA_NAME_VAR (target);
1876 index = ipa_get_param_decl_index (info, var);
1877 if (index >= 0)
1878 ipa_note_param_call (node, index, call);
1879 return;
1882 def = SSA_NAME_DEF_STMT (target);
1883 if (gimple_assign_single_p (def)
1884 && ipa_load_from_parm_agg_1 (info->descriptors, parms_ainfo, def,
1885 gimple_assign_rhs1 (def), &index, &offset,
1886 NULL, &by_ref))
1888 struct cgraph_edge *cs = ipa_note_param_call (node, index, call);
1889 if (cs->indirect_info->offset != offset)
1890 cs->indirect_info->outer_type = NULL;
1891 cs->indirect_info->offset = offset;
1892 cs->indirect_info->agg_contents = 1;
1893 cs->indirect_info->by_ref = by_ref;
1894 return;
1897 /* Now we need to try to match the complex pattern of calling a member
1898 pointer. */
1899 if (gimple_code (def) != GIMPLE_PHI
1900 || gimple_phi_num_args (def) != 2
1901 || !POINTER_TYPE_P (TREE_TYPE (target))
1902 || TREE_CODE (TREE_TYPE (TREE_TYPE (target))) != METHOD_TYPE)
1903 return;
1905 /* First, we need to check whether one of these is a load from a member
1906 pointer that is a parameter to this function. */
1907 n1 = PHI_ARG_DEF (def, 0);
1908 n2 = PHI_ARG_DEF (def, 1);
1909 if (!ipa_is_ssa_with_stmt_def (n1) || !ipa_is_ssa_with_stmt_def (n2))
1910 return;
1911 d1 = SSA_NAME_DEF_STMT (n1);
1912 d2 = SSA_NAME_DEF_STMT (n2);
1914 join = gimple_bb (def);
1915 if ((rec = ipa_get_stmt_member_ptr_load_param (d1, false, &offset)))
1917 if (ipa_get_stmt_member_ptr_load_param (d2, false, NULL))
1918 return;
1920 bb = EDGE_PRED (join, 0)->src;
1921 virt_bb = gimple_bb (d2);
1923 else if ((rec = ipa_get_stmt_member_ptr_load_param (d2, false, &offset)))
1925 bb = EDGE_PRED (join, 1)->src;
1926 virt_bb = gimple_bb (d1);
1928 else
1929 return;
1931 /* Second, we need to check that the basic blocks are laid out in the way
1932 corresponding to the pattern. */
1934 if (!single_pred_p (virt_bb) || !single_succ_p (virt_bb)
1935 || single_pred (virt_bb) != bb
1936 || single_succ (virt_bb) != join)
1937 return;
1939 /* Third, let's see that the branching is done depending on the least
1940 significant bit of the pfn. */
1942 branch = last_stmt (bb);
1943 if (!branch || gimple_code (branch) != GIMPLE_COND)
1944 return;
1946 if ((gimple_cond_code (branch) != NE_EXPR
1947 && gimple_cond_code (branch) != EQ_EXPR)
1948 || !integer_zerop (gimple_cond_rhs (branch)))
1949 return;
1951 cond = gimple_cond_lhs (branch);
1952 if (!ipa_is_ssa_with_stmt_def (cond))
1953 return;
1955 def = SSA_NAME_DEF_STMT (cond);
1956 if (!is_gimple_assign (def)
1957 || gimple_assign_rhs_code (def) != BIT_AND_EXPR
1958 || !integer_onep (gimple_assign_rhs2 (def)))
1959 return;
1961 cond = gimple_assign_rhs1 (def);
1962 if (!ipa_is_ssa_with_stmt_def (cond))
1963 return;
1965 def = SSA_NAME_DEF_STMT (cond);
1967 if (is_gimple_assign (def)
1968 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def)))
1970 cond = gimple_assign_rhs1 (def);
1971 if (!ipa_is_ssa_with_stmt_def (cond))
1972 return;
1973 def = SSA_NAME_DEF_STMT (cond);
1976 rec2 = ipa_get_stmt_member_ptr_load_param (def,
1977 (TARGET_PTRMEMFUNC_VBIT_LOCATION
1978 == ptrmemfunc_vbit_in_delta),
1979 NULL);
1980 if (rec != rec2)
1981 return;
1983 index = ipa_get_param_decl_index (info, rec);
1984 if (index >= 0
1985 && parm_preserved_before_stmt_p (&parms_ainfo[index], call, rec))
1987 struct cgraph_edge *cs = ipa_note_param_call (node, index, call);
1988 if (cs->indirect_info->offset != offset)
1989 cs->indirect_info->outer_type = NULL;
1990 cs->indirect_info->offset = offset;
1991 cs->indirect_info->agg_contents = 1;
1992 cs->indirect_info->member_ptr = 1;
1995 return;
1998 /* Analyze a CALL to an OBJ_TYPE_REF which is passed in TARGET and if the
1999 object referenced in the expression is a formal parameter of the caller
2000 (described by INFO), create a call note for the statement. */
2002 static void
2003 ipa_analyze_virtual_call_uses (struct cgraph_node *node,
2004 struct ipa_node_params *info, gimple call,
2005 tree target)
2007 struct cgraph_edge *cs;
2008 struct cgraph_indirect_call_info *ii;
2009 struct ipa_jump_func jfunc;
2010 tree obj = OBJ_TYPE_REF_OBJECT (target);
2011 int index;
2012 HOST_WIDE_INT anc_offset;
2014 if (!flag_devirtualize)
2015 return;
2017 if (TREE_CODE (obj) != SSA_NAME)
2018 return;
2020 if (SSA_NAME_IS_DEFAULT_DEF (obj))
2022 if (TREE_CODE (SSA_NAME_VAR (obj)) != PARM_DECL)
2023 return;
2025 anc_offset = 0;
2026 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (obj));
2027 gcc_assert (index >= 0);
2028 if (detect_type_change_ssa (obj, obj_type_ref_class (target),
2029 call, &jfunc))
2030 return;
2032 else
2034 gimple stmt = SSA_NAME_DEF_STMT (obj);
2035 tree expr;
2037 expr = get_ancestor_addr_info (stmt, &obj, &anc_offset);
2038 if (!expr)
2039 return;
2040 index = ipa_get_param_decl_index (info,
2041 SSA_NAME_VAR (TREE_OPERAND (expr, 0)));
2042 gcc_assert (index >= 0);
2043 if (detect_type_change (obj, expr, obj_type_ref_class (target),
2044 call, &jfunc, anc_offset))
2045 return;
2048 cs = ipa_note_param_call (node, index, call);
2049 ii = cs->indirect_info;
2050 ii->offset = anc_offset;
2051 ii->otr_token = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
2052 ii->otr_type = obj_type_ref_class (target);
2053 ii->polymorphic = 1;
2056 /* Analyze a call statement CALL whether and how it utilizes formal parameters
2057 of the caller (described by INFO). PARMS_AINFO is a pointer to a vector
2058 containing intermediate information about each formal parameter. */
2060 static void
2061 ipa_analyze_call_uses (struct cgraph_node *node,
2062 struct ipa_node_params *info,
2063 struct param_analysis_info *parms_ainfo, gimple call)
2065 tree target = gimple_call_fn (call);
2066 struct cgraph_edge *cs;
2068 if (!target
2069 || (TREE_CODE (target) != SSA_NAME
2070 && !virtual_method_call_p (target)))
2071 return;
2073 /* If we previously turned the call into a direct call, there is
2074 no need to analyze. */
2075 cs = cgraph_edge (node, call);
2076 if (cs && !cs->indirect_unknown_callee)
2077 return;
2078 if (TREE_CODE (target) == SSA_NAME)
2079 ipa_analyze_indirect_call_uses (node, info, parms_ainfo, call, target);
2080 else if (virtual_method_call_p (target))
2081 ipa_analyze_virtual_call_uses (node, info, call, target);
2085 /* Analyze the call statement STMT with respect to formal parameters (described
2086 in INFO) of caller given by NODE. Currently it only checks whether formal
2087 parameters are called. PARMS_AINFO is a pointer to a vector containing
2088 intermediate information about each formal parameter. */
2090 static void
2091 ipa_analyze_stmt_uses (struct cgraph_node *node, struct ipa_node_params *info,
2092 struct param_analysis_info *parms_ainfo, gimple stmt)
2094 if (is_gimple_call (stmt))
2095 ipa_analyze_call_uses (node, info, parms_ainfo, stmt);
2098 /* Callback of walk_stmt_load_store_addr_ops for the visit_load.
2099 If OP is a parameter declaration, mark it as used in the info structure
2100 passed in DATA. */
2102 static bool
2103 visit_ref_for_mod_analysis (gimple, tree op, tree, void *data)
2105 struct ipa_node_params *info = (struct ipa_node_params *) data;
2107 op = get_base_address (op);
2108 if (op
2109 && TREE_CODE (op) == PARM_DECL)
2111 int index = ipa_get_param_decl_index (info, op);
2112 gcc_assert (index >= 0);
2113 ipa_set_param_used (info, index, true);
2116 return false;
2119 /* Scan the function body of NODE and inspect the uses of formal parameters.
2120 Store the findings in various structures of the associated ipa_node_params
2121 structure, such as parameter flags, notes etc. PARMS_AINFO is a pointer to a
2122 vector containing intermediate information about each formal parameter. */
2124 static void
2125 ipa_analyze_params_uses (struct cgraph_node *node,
2126 struct param_analysis_info *parms_ainfo)
2128 tree decl = node->decl;
2129 basic_block bb;
2130 struct function *func;
2131 gimple_stmt_iterator gsi;
2132 struct ipa_node_params *info = IPA_NODE_REF (node);
2133 int i;
2135 if (ipa_get_param_count (info) == 0 || info->uses_analysis_done)
2136 return;
2138 info->uses_analysis_done = 1;
2139 if (ipa_func_spec_opts_forbid_analysis_p (node))
2141 for (i = 0; i < ipa_get_param_count (info); i++)
2143 ipa_set_param_used (info, i, true);
2144 ipa_set_controlled_uses (info, i, IPA_UNDESCRIBED_USE);
2146 return;
2149 for (i = 0; i < ipa_get_param_count (info); i++)
2151 tree parm = ipa_get_param (info, i);
2152 int controlled_uses = 0;
2154 /* For SSA regs see if parameter is used. For non-SSA we compute
2155 the flag during modification analysis. */
2156 if (is_gimple_reg (parm))
2158 tree ddef = ssa_default_def (DECL_STRUCT_FUNCTION (node->decl),
2159 parm);
2160 if (ddef && !has_zero_uses (ddef))
2162 imm_use_iterator imm_iter;
2163 use_operand_p use_p;
2165 ipa_set_param_used (info, i, true);
2166 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, ddef)
2167 if (!is_gimple_call (USE_STMT (use_p)))
2169 if (!is_gimple_debug (USE_STMT (use_p)))
2171 controlled_uses = IPA_UNDESCRIBED_USE;
2172 break;
2175 else
2176 controlled_uses++;
2178 else
2179 controlled_uses = 0;
2181 else
2182 controlled_uses = IPA_UNDESCRIBED_USE;
2183 ipa_set_controlled_uses (info, i, controlled_uses);
2186 func = DECL_STRUCT_FUNCTION (decl);
2187 FOR_EACH_BB_FN (bb, func)
2189 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2191 gimple stmt = gsi_stmt (gsi);
2193 if (is_gimple_debug (stmt))
2194 continue;
2196 ipa_analyze_stmt_uses (node, info, parms_ainfo, stmt);
2197 walk_stmt_load_store_addr_ops (stmt, info,
2198 visit_ref_for_mod_analysis,
2199 visit_ref_for_mod_analysis,
2200 visit_ref_for_mod_analysis);
2202 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2203 walk_stmt_load_store_addr_ops (gsi_stmt (gsi), info,
2204 visit_ref_for_mod_analysis,
2205 visit_ref_for_mod_analysis,
2206 visit_ref_for_mod_analysis);
2210 /* Free stuff in PARMS_AINFO, assume there are PARAM_COUNT parameters. */
2212 static void
2213 free_parms_ainfo (struct param_analysis_info *parms_ainfo, int param_count)
2215 int i;
2217 for (i = 0; i < param_count; i++)
2219 if (parms_ainfo[i].parm_visited_statements)
2220 BITMAP_FREE (parms_ainfo[i].parm_visited_statements);
2221 if (parms_ainfo[i].pt_visited_statements)
2222 BITMAP_FREE (parms_ainfo[i].pt_visited_statements);
2226 /* Initialize the array describing properties of of formal parameters
2227 of NODE, analyze their uses and compute jump functions associated
2228 with actual arguments of calls from within NODE. */
2230 void
2231 ipa_analyze_node (struct cgraph_node *node)
2233 struct ipa_node_params *info;
2234 struct param_analysis_info *parms_ainfo;
2235 int param_count;
2237 ipa_check_create_node_params ();
2238 ipa_check_create_edge_args ();
2239 info = IPA_NODE_REF (node);
2240 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
2241 ipa_initialize_node_params (node);
2243 param_count = ipa_get_param_count (info);
2244 parms_ainfo = XALLOCAVEC (struct param_analysis_info, param_count);
2245 memset (parms_ainfo, 0, sizeof (struct param_analysis_info) * param_count);
2247 ipa_analyze_params_uses (node, parms_ainfo);
2248 ipa_compute_jump_functions (node, parms_ainfo);
2250 free_parms_ainfo (parms_ainfo, param_count);
2251 pop_cfun ();
2254 /* Given a statement CALL which must be a GIMPLE_CALL calling an OBJ_TYPE_REF
2255 attempt a type-based devirtualization. If successful, return the
2256 target function declaration, otherwise return NULL. */
2258 tree
2259 ipa_intraprocedural_devirtualization (gimple call)
2261 tree binfo, token, fndecl;
2262 struct ipa_jump_func jfunc;
2263 tree otr = gimple_call_fn (call);
2265 jfunc.type = IPA_JF_UNKNOWN;
2266 compute_known_type_jump_func (OBJ_TYPE_REF_OBJECT (otr), &jfunc,
2267 call, obj_type_ref_class (otr));
2268 if (jfunc.type != IPA_JF_KNOWN_TYPE)
2269 return NULL_TREE;
2270 binfo = ipa_binfo_from_known_type_jfunc (&jfunc);
2271 if (!binfo)
2272 return NULL_TREE;
2273 token = OBJ_TYPE_REF_TOKEN (otr);
2274 fndecl = gimple_get_virt_method_for_binfo (tree_to_uhwi (token),
2275 binfo);
2276 #ifdef ENABLE_CHECKING
2277 if (fndecl)
2278 gcc_assert (possible_polymorphic_call_target_p
2279 (otr, cgraph_get_node (fndecl)));
2280 #endif
2281 return fndecl;
2284 /* Update the jump function DST when the call graph edge corresponding to SRC is
2285 is being inlined, knowing that DST is of type ancestor and src of known
2286 type. */
2288 static void
2289 combine_known_type_and_ancestor_jfs (struct ipa_jump_func *src,
2290 struct ipa_jump_func *dst)
2292 HOST_WIDE_INT combined_offset;
2293 tree combined_type;
2295 if (!ipa_get_jf_ancestor_type_preserved (dst))
2297 dst->type = IPA_JF_UNKNOWN;
2298 return;
2301 combined_offset = ipa_get_jf_known_type_offset (src)
2302 + ipa_get_jf_ancestor_offset (dst);
2303 combined_type = ipa_get_jf_ancestor_type (dst);
2305 ipa_set_jf_known_type (dst, combined_offset,
2306 ipa_get_jf_known_type_base_type (src),
2307 combined_type);
2310 /* Update the jump functions associated with call graph edge E when the call
2311 graph edge CS is being inlined, assuming that E->caller is already (possibly
2312 indirectly) inlined into CS->callee and that E has not been inlined. */
2314 static void
2315 update_jump_functions_after_inlining (struct cgraph_edge *cs,
2316 struct cgraph_edge *e)
2318 struct ipa_edge_args *top = IPA_EDGE_REF (cs);
2319 struct ipa_edge_args *args = IPA_EDGE_REF (e);
2320 int count = ipa_get_cs_argument_count (args);
2321 int i;
2323 for (i = 0; i < count; i++)
2325 struct ipa_jump_func *dst = ipa_get_ith_jump_func (args, i);
2327 if (dst->type == IPA_JF_ANCESTOR)
2329 struct ipa_jump_func *src;
2330 int dst_fid = dst->value.ancestor.formal_id;
2332 /* Variable number of arguments can cause havoc if we try to access
2333 one that does not exist in the inlined edge. So make sure we
2334 don't. */
2335 if (dst_fid >= ipa_get_cs_argument_count (top))
2337 dst->type = IPA_JF_UNKNOWN;
2338 continue;
2341 src = ipa_get_ith_jump_func (top, dst_fid);
2343 if (src->agg.items
2344 && (dst->value.ancestor.agg_preserved || !src->agg.by_ref))
2346 struct ipa_agg_jf_item *item;
2347 int j;
2349 /* Currently we do not produce clobber aggregate jump functions,
2350 replace with merging when we do. */
2351 gcc_assert (!dst->agg.items);
2353 dst->agg.items = vec_safe_copy (src->agg.items);
2354 dst->agg.by_ref = src->agg.by_ref;
2355 FOR_EACH_VEC_SAFE_ELT (dst->agg.items, j, item)
2356 item->offset -= dst->value.ancestor.offset;
2359 if (src->type == IPA_JF_KNOWN_TYPE)
2360 combine_known_type_and_ancestor_jfs (src, dst);
2361 else if (src->type == IPA_JF_PASS_THROUGH
2362 && src->value.pass_through.operation == NOP_EXPR)
2364 dst->value.ancestor.formal_id = src->value.pass_through.formal_id;
2365 dst->value.ancestor.agg_preserved &=
2366 src->value.pass_through.agg_preserved;
2367 dst->value.ancestor.type_preserved &=
2368 src->value.pass_through.type_preserved;
2370 else if (src->type == IPA_JF_ANCESTOR)
2372 dst->value.ancestor.formal_id = src->value.ancestor.formal_id;
2373 dst->value.ancestor.offset += src->value.ancestor.offset;
2374 dst->value.ancestor.agg_preserved &=
2375 src->value.ancestor.agg_preserved;
2376 dst->value.ancestor.type_preserved &=
2377 src->value.ancestor.type_preserved;
2379 else
2380 dst->type = IPA_JF_UNKNOWN;
2382 else if (dst->type == IPA_JF_PASS_THROUGH)
2384 struct ipa_jump_func *src;
2385 /* We must check range due to calls with variable number of arguments
2386 and we cannot combine jump functions with operations. */
2387 if (dst->value.pass_through.operation == NOP_EXPR
2388 && (dst->value.pass_through.formal_id
2389 < ipa_get_cs_argument_count (top)))
2391 int dst_fid = dst->value.pass_through.formal_id;
2392 src = ipa_get_ith_jump_func (top, dst_fid);
2393 bool dst_agg_p = ipa_get_jf_pass_through_agg_preserved (dst);
2395 switch (src->type)
2397 case IPA_JF_UNKNOWN:
2398 dst->type = IPA_JF_UNKNOWN;
2399 break;
2400 case IPA_JF_KNOWN_TYPE:
2401 if (ipa_get_jf_pass_through_type_preserved (dst))
2402 ipa_set_jf_known_type (dst,
2403 ipa_get_jf_known_type_offset (src),
2404 ipa_get_jf_known_type_base_type (src),
2405 ipa_get_jf_known_type_component_type (src));
2406 else
2407 dst->type = IPA_JF_UNKNOWN;
2408 break;
2409 case IPA_JF_CONST:
2410 ipa_set_jf_cst_copy (dst, src);
2411 break;
2413 case IPA_JF_PASS_THROUGH:
2415 int formal_id = ipa_get_jf_pass_through_formal_id (src);
2416 enum tree_code operation;
2417 operation = ipa_get_jf_pass_through_operation (src);
2419 if (operation == NOP_EXPR)
2421 bool agg_p, type_p;
2422 agg_p = dst_agg_p
2423 && ipa_get_jf_pass_through_agg_preserved (src);
2424 type_p = ipa_get_jf_pass_through_type_preserved (src)
2425 && ipa_get_jf_pass_through_type_preserved (dst);
2426 ipa_set_jf_simple_pass_through (dst, formal_id,
2427 agg_p, type_p);
2429 else
2431 tree operand = ipa_get_jf_pass_through_operand (src);
2432 ipa_set_jf_arith_pass_through (dst, formal_id, operand,
2433 operation);
2435 break;
2437 case IPA_JF_ANCESTOR:
2439 bool agg_p, type_p;
2440 agg_p = dst_agg_p
2441 && ipa_get_jf_ancestor_agg_preserved (src);
2442 type_p = ipa_get_jf_ancestor_type_preserved (src)
2443 && ipa_get_jf_pass_through_type_preserved (dst);
2444 ipa_set_ancestor_jf (dst,
2445 ipa_get_jf_ancestor_offset (src),
2446 ipa_get_jf_ancestor_type (src),
2447 ipa_get_jf_ancestor_formal_id (src),
2448 agg_p, type_p);
2449 break;
2451 default:
2452 gcc_unreachable ();
2455 if (src->agg.items
2456 && (dst_agg_p || !src->agg.by_ref))
2458 /* Currently we do not produce clobber aggregate jump
2459 functions, replace with merging when we do. */
2460 gcc_assert (!dst->agg.items);
2462 dst->agg.by_ref = src->agg.by_ref;
2463 dst->agg.items = vec_safe_copy (src->agg.items);
2466 else
2467 dst->type = IPA_JF_UNKNOWN;
2472 /* If TARGET is an addr_expr of a function declaration, make it the destination
2473 of an indirect edge IE and return the edge. Otherwise, return NULL. */
2475 struct cgraph_edge *
2476 ipa_make_edge_direct_to_target (struct cgraph_edge *ie, tree target)
2478 struct cgraph_node *callee;
2479 struct inline_edge_summary *es = inline_edge_summary (ie);
2480 bool unreachable = false;
2482 if (TREE_CODE (target) == ADDR_EXPR)
2483 target = TREE_OPERAND (target, 0);
2484 if (TREE_CODE (target) != FUNCTION_DECL)
2486 target = canonicalize_constructor_val (target, NULL);
2487 if (!target || TREE_CODE (target) != FUNCTION_DECL)
2489 if (ie->indirect_info->member_ptr)
2490 /* Member pointer call that goes through a VMT lookup. */
2491 return NULL;
2493 if (dump_file)
2494 fprintf (dump_file, "ipa-prop: Discovered direct call to non-function"
2495 " in %s/%i, making it unreachable.\n",
2496 ie->caller->name (), ie->caller->order);
2497 target = builtin_decl_implicit (BUILT_IN_UNREACHABLE);
2498 callee = cgraph_get_create_node (target);
2499 unreachable = true;
2501 else
2502 callee = cgraph_get_node (target);
2504 else
2505 callee = cgraph_get_node (target);
2507 /* Because may-edges are not explicitely represented and vtable may be external,
2508 we may create the first reference to the object in the unit. */
2509 if (!callee || callee->global.inlined_to)
2512 /* We are better to ensure we can refer to it.
2513 In the case of static functions we are out of luck, since we already
2514 removed its body. In the case of public functions we may or may
2515 not introduce the reference. */
2516 if (!canonicalize_constructor_val (target, NULL)
2517 || !TREE_PUBLIC (target))
2519 if (dump_file)
2520 fprintf (dump_file, "ipa-prop: Discovered call to a known target "
2521 "(%s/%i -> %s/%i) but can not refer to it. Giving up.\n",
2522 xstrdup (ie->caller->name ()),
2523 ie->caller->order,
2524 xstrdup (ie->callee->name ()),
2525 ie->callee->order);
2526 return NULL;
2528 callee = cgraph_get_create_node (target);
2530 ipa_check_create_node_params ();
2532 /* We can not make edges to inline clones. It is bug that someone removed
2533 the cgraph node too early. */
2534 gcc_assert (!callee->global.inlined_to);
2536 if (dump_file && !unreachable)
2538 fprintf (dump_file, "ipa-prop: Discovered %s call to a known target "
2539 "(%s/%i -> %s/%i), for stmt ",
2540 ie->indirect_info->polymorphic ? "a virtual" : "an indirect",
2541 xstrdup (ie->caller->name ()),
2542 ie->caller->order,
2543 xstrdup (callee->name ()),
2544 callee->order);
2545 if (ie->call_stmt)
2546 print_gimple_stmt (dump_file, ie->call_stmt, 2, TDF_SLIM);
2547 else
2548 fprintf (dump_file, "with uid %i\n", ie->lto_stmt_uid);
2550 ie = cgraph_make_edge_direct (ie, callee);
2551 es = inline_edge_summary (ie);
2552 es->call_stmt_size -= (eni_size_weights.indirect_call_cost
2553 - eni_size_weights.call_cost);
2554 es->call_stmt_time -= (eni_time_weights.indirect_call_cost
2555 - eni_time_weights.call_cost);
2557 return ie;
2560 /* Retrieve value from aggregate jump function AGG for the given OFFSET or
2561 return NULL if there is not any. BY_REF specifies whether the value has to
2562 be passed by reference or by value. */
2564 tree
2565 ipa_find_agg_cst_for_param (struct ipa_agg_jump_function *agg,
2566 HOST_WIDE_INT offset, bool by_ref)
2568 struct ipa_agg_jf_item *item;
2569 int i;
2571 if (by_ref != agg->by_ref)
2572 return NULL;
2574 FOR_EACH_VEC_SAFE_ELT (agg->items, i, item)
2575 if (item->offset == offset)
2577 /* Currently we do not have clobber values, return NULL for them once
2578 we do. */
2579 gcc_checking_assert (is_gimple_ip_invariant (item->value));
2580 return item->value;
2582 return NULL;
2585 /* Remove a reference to SYMBOL from the list of references of a node given by
2586 reference description RDESC. Return true if the reference has been
2587 successfully found and removed. */
2589 static bool
2590 remove_described_reference (symtab_node *symbol, struct ipa_cst_ref_desc *rdesc)
2592 struct ipa_ref *to_del;
2593 struct cgraph_edge *origin;
2595 origin = rdesc->cs;
2596 if (!origin)
2597 return false;
2598 to_del = ipa_find_reference (origin->caller, symbol,
2599 origin->call_stmt, origin->lto_stmt_uid);
2600 if (!to_del)
2601 return false;
2603 ipa_remove_reference (to_del);
2604 if (dump_file)
2605 fprintf (dump_file, "ipa-prop: Removed a reference from %s/%i to %s.\n",
2606 xstrdup (origin->caller->name ()),
2607 origin->caller->order, xstrdup (symbol->name ()));
2608 return true;
2611 /* If JFUNC has a reference description with refcount different from
2612 IPA_UNDESCRIBED_USE, return the reference description, otherwise return
2613 NULL. JFUNC must be a constant jump function. */
2615 static struct ipa_cst_ref_desc *
2616 jfunc_rdesc_usable (struct ipa_jump_func *jfunc)
2618 struct ipa_cst_ref_desc *rdesc = ipa_get_jf_constant_rdesc (jfunc);
2619 if (rdesc && rdesc->refcount != IPA_UNDESCRIBED_USE)
2620 return rdesc;
2621 else
2622 return NULL;
2625 /* If the value of constant jump function JFUNC is an address of a function
2626 declaration, return the associated call graph node. Otherwise return
2627 NULL. */
2629 static cgraph_node *
2630 cgraph_node_for_jfunc (struct ipa_jump_func *jfunc)
2632 gcc_checking_assert (jfunc->type == IPA_JF_CONST);
2633 tree cst = ipa_get_jf_constant (jfunc);
2634 if (TREE_CODE (cst) != ADDR_EXPR
2635 || TREE_CODE (TREE_OPERAND (cst, 0)) != FUNCTION_DECL)
2636 return NULL;
2638 return cgraph_get_node (TREE_OPERAND (cst, 0));
2642 /* If JFUNC is a constant jump function with a usable rdesc, decrement its
2643 refcount and if it hits zero, remove reference to SYMBOL from the caller of
2644 the edge specified in the rdesc. Return false if either the symbol or the
2645 reference could not be found, otherwise return true. */
2647 static bool
2648 try_decrement_rdesc_refcount (struct ipa_jump_func *jfunc)
2650 struct ipa_cst_ref_desc *rdesc;
2651 if (jfunc->type == IPA_JF_CONST
2652 && (rdesc = jfunc_rdesc_usable (jfunc))
2653 && --rdesc->refcount == 0)
2655 symtab_node *symbol = cgraph_node_for_jfunc (jfunc);
2656 if (!symbol)
2657 return false;
2659 return remove_described_reference (symbol, rdesc);
2661 return true;
2664 /* Try to find a destination for indirect edge IE that corresponds to a simple
2665 call or a call of a member function pointer and where the destination is a
2666 pointer formal parameter described by jump function JFUNC. If it can be
2667 determined, return the newly direct edge, otherwise return NULL.
2668 NEW_ROOT_INFO is the node info that JFUNC lattices are relative to. */
2670 static struct cgraph_edge *
2671 try_make_edge_direct_simple_call (struct cgraph_edge *ie,
2672 struct ipa_jump_func *jfunc,
2673 struct ipa_node_params *new_root_info)
2675 struct cgraph_edge *cs;
2676 tree target;
2677 bool agg_contents = ie->indirect_info->agg_contents;
2679 if (ie->indirect_info->agg_contents)
2680 target = ipa_find_agg_cst_for_param (&jfunc->agg,
2681 ie->indirect_info->offset,
2682 ie->indirect_info->by_ref);
2683 else
2684 target = ipa_value_from_jfunc (new_root_info, jfunc);
2685 if (!target)
2686 return NULL;
2687 cs = ipa_make_edge_direct_to_target (ie, target);
2689 if (cs && !agg_contents)
2691 bool ok;
2692 gcc_checking_assert (cs->callee
2693 && (cs != ie
2694 || jfunc->type != IPA_JF_CONST
2695 || !cgraph_node_for_jfunc (jfunc)
2696 || cs->callee == cgraph_node_for_jfunc (jfunc)));
2697 ok = try_decrement_rdesc_refcount (jfunc);
2698 gcc_checking_assert (ok);
2701 return cs;
2704 /* Try to find a destination for indirect edge IE that corresponds to a virtual
2705 call based on a formal parameter which is described by jump function JFUNC
2706 and if it can be determined, make it direct and return the direct edge.
2707 Otherwise, return NULL. NEW_ROOT_INFO is the node info that JFUNC lattices
2708 are relative to. */
2710 static struct cgraph_edge *
2711 try_make_edge_direct_virtual_call (struct cgraph_edge *ie,
2712 struct ipa_jump_func *jfunc,
2713 struct ipa_node_params *new_root_info)
2715 tree binfo, target;
2717 if (!flag_devirtualize)
2718 return NULL;
2720 /* First try to do lookup via known virtual table pointer value. */
2721 if (!ie->indirect_info->by_ref)
2723 tree vtable;
2724 unsigned HOST_WIDE_INT offset;
2725 tree t = ipa_find_agg_cst_for_param (&jfunc->agg,
2726 ie->indirect_info->offset,
2727 true);
2728 if (t && vtable_pointer_value_to_vtable (t, &vtable, &offset))
2730 target = gimple_get_virt_method_for_vtable (ie->indirect_info->otr_token,
2731 vtable, offset);
2732 if (target)
2734 if ((TREE_CODE (TREE_TYPE (target)) == FUNCTION_TYPE
2735 && DECL_FUNCTION_CODE (target) == BUILT_IN_UNREACHABLE)
2736 || !possible_polymorphic_call_target_p
2737 (ie, cgraph_get_node (target)))
2739 if (dump_file)
2740 fprintf (dump_file,
2741 "Type inconsident devirtualization: %s/%i->%s\n",
2742 ie->caller->name (), ie->caller->order,
2743 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (target)));
2744 target = builtin_decl_implicit (BUILT_IN_UNREACHABLE);
2745 cgraph_get_create_node (target);
2747 return ipa_make_edge_direct_to_target (ie, target);
2752 binfo = ipa_value_from_jfunc (new_root_info, jfunc);
2754 if (!binfo)
2755 return NULL;
2757 if (TREE_CODE (binfo) != TREE_BINFO)
2759 ipa_polymorphic_call_context context;
2760 vec <cgraph_node *>targets;
2761 bool final;
2763 if (!get_polymorphic_call_info_from_invariant
2764 (&context, binfo, ie->indirect_info->otr_type,
2765 ie->indirect_info->offset))
2766 return NULL;
2767 targets = possible_polymorphic_call_targets
2768 (ie->indirect_info->otr_type,
2769 ie->indirect_info->otr_token,
2770 context, &final);
2771 if (!final || targets.length () > 1)
2772 return NULL;
2773 if (targets.length () == 1)
2774 target = targets[0]->decl;
2775 else
2777 target = builtin_decl_implicit (BUILT_IN_UNREACHABLE);
2778 cgraph_get_create_node (target);
2781 else
2783 binfo = get_binfo_at_offset (binfo, ie->indirect_info->offset,
2784 ie->indirect_info->otr_type);
2785 if (binfo)
2786 target = gimple_get_virt_method_for_binfo (ie->indirect_info->otr_token,
2787 binfo);
2788 else
2789 return NULL;
2792 if (target)
2794 #ifdef ENABLE_CHECKING
2795 gcc_assert (possible_polymorphic_call_target_p
2796 (ie, cgraph_get_node (target)));
2797 #endif
2798 return ipa_make_edge_direct_to_target (ie, target);
2800 else
2801 return NULL;
2804 /* Update the param called notes associated with NODE when CS is being inlined,
2805 assuming NODE is (potentially indirectly) inlined into CS->callee.
2806 Moreover, if the callee is discovered to be constant, create a new cgraph
2807 edge for it. Newly discovered indirect edges will be added to *NEW_EDGES,
2808 unless NEW_EDGES is NULL. Return true iff a new edge(s) were created. */
2810 static bool
2811 update_indirect_edges_after_inlining (struct cgraph_edge *cs,
2812 struct cgraph_node *node,
2813 vec<cgraph_edge_p> *new_edges)
2815 struct ipa_edge_args *top;
2816 struct cgraph_edge *ie, *next_ie, *new_direct_edge;
2817 struct ipa_node_params *new_root_info;
2818 bool res = false;
2820 ipa_check_create_edge_args ();
2821 top = IPA_EDGE_REF (cs);
2822 new_root_info = IPA_NODE_REF (cs->caller->global.inlined_to
2823 ? cs->caller->global.inlined_to
2824 : cs->caller);
2826 for (ie = node->indirect_calls; ie; ie = next_ie)
2828 struct cgraph_indirect_call_info *ici = ie->indirect_info;
2829 struct ipa_jump_func *jfunc;
2830 int param_index;
2832 next_ie = ie->next_callee;
2834 if (ici->param_index == -1)
2835 continue;
2837 /* We must check range due to calls with variable number of arguments: */
2838 if (ici->param_index >= ipa_get_cs_argument_count (top))
2840 ici->param_index = -1;
2841 continue;
2844 param_index = ici->param_index;
2845 jfunc = ipa_get_ith_jump_func (top, param_index);
2847 if (!flag_indirect_inlining)
2848 new_direct_edge = NULL;
2849 else if (ici->polymorphic)
2850 new_direct_edge = try_make_edge_direct_virtual_call (ie, jfunc,
2851 new_root_info);
2852 else
2853 new_direct_edge = try_make_edge_direct_simple_call (ie, jfunc,
2854 new_root_info);
2855 /* If speculation was removed, then we need to do nothing. */
2856 if (new_direct_edge && new_direct_edge != ie)
2858 new_direct_edge->indirect_inlining_edge = 1;
2859 top = IPA_EDGE_REF (cs);
2860 res = true;
2862 else if (new_direct_edge)
2864 new_direct_edge->indirect_inlining_edge = 1;
2865 if (new_direct_edge->call_stmt)
2866 new_direct_edge->call_stmt_cannot_inline_p
2867 = !gimple_check_call_matching_types (
2868 new_direct_edge->call_stmt,
2869 new_direct_edge->callee->decl, false);
2870 if (new_edges)
2872 new_edges->safe_push (new_direct_edge);
2873 res = true;
2875 top = IPA_EDGE_REF (cs);
2877 else if (jfunc->type == IPA_JF_PASS_THROUGH
2878 && ipa_get_jf_pass_through_operation (jfunc) == NOP_EXPR)
2880 if ((ici->agg_contents
2881 && !ipa_get_jf_pass_through_agg_preserved (jfunc))
2882 || (ici->polymorphic
2883 && !ipa_get_jf_pass_through_type_preserved (jfunc)))
2884 ici->param_index = -1;
2885 else
2886 ici->param_index = ipa_get_jf_pass_through_formal_id (jfunc);
2888 else if (jfunc->type == IPA_JF_ANCESTOR)
2890 if ((ici->agg_contents
2891 && !ipa_get_jf_ancestor_agg_preserved (jfunc))
2892 || (ici->polymorphic
2893 && !ipa_get_jf_ancestor_type_preserved (jfunc)))
2894 ici->param_index = -1;
2895 else
2897 ici->param_index = ipa_get_jf_ancestor_formal_id (jfunc);
2898 if (ipa_get_jf_ancestor_offset (jfunc))
2899 ici->outer_type = NULL;
2900 ici->offset += ipa_get_jf_ancestor_offset (jfunc);
2903 else
2904 /* Either we can find a destination for this edge now or never. */
2905 ici->param_index = -1;
2908 return res;
2911 /* Recursively traverse subtree of NODE (including node) made of inlined
2912 cgraph_edges when CS has been inlined and invoke
2913 update_indirect_edges_after_inlining on all nodes and
2914 update_jump_functions_after_inlining on all non-inlined edges that lead out
2915 of this subtree. Newly discovered indirect edges will be added to
2916 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were
2917 created. */
2919 static bool
2920 propagate_info_to_inlined_callees (struct cgraph_edge *cs,
2921 struct cgraph_node *node,
2922 vec<cgraph_edge_p> *new_edges)
2924 struct cgraph_edge *e;
2925 bool res;
2927 res = update_indirect_edges_after_inlining (cs, node, new_edges);
2929 for (e = node->callees; e; e = e->next_callee)
2930 if (!e->inline_failed)
2931 res |= propagate_info_to_inlined_callees (cs, e->callee, new_edges);
2932 else
2933 update_jump_functions_after_inlining (cs, e);
2934 for (e = node->indirect_calls; e; e = e->next_callee)
2935 update_jump_functions_after_inlining (cs, e);
2937 return res;
2940 /* Combine two controlled uses counts as done during inlining. */
2942 static int
2943 combine_controlled_uses_counters (int c, int d)
2945 if (c == IPA_UNDESCRIBED_USE || d == IPA_UNDESCRIBED_USE)
2946 return IPA_UNDESCRIBED_USE;
2947 else
2948 return c + d - 1;
2951 /* Propagate number of controlled users from CS->caleee to the new root of the
2952 tree of inlined nodes. */
2954 static void
2955 propagate_controlled_uses (struct cgraph_edge *cs)
2957 struct ipa_edge_args *args = IPA_EDGE_REF (cs);
2958 struct cgraph_node *new_root = cs->caller->global.inlined_to
2959 ? cs->caller->global.inlined_to : cs->caller;
2960 struct ipa_node_params *new_root_info = IPA_NODE_REF (new_root);
2961 struct ipa_node_params *old_root_info = IPA_NODE_REF (cs->callee);
2962 int count, i;
2964 count = MIN (ipa_get_cs_argument_count (args),
2965 ipa_get_param_count (old_root_info));
2966 for (i = 0; i < count; i++)
2968 struct ipa_jump_func *jf = ipa_get_ith_jump_func (args, i);
2969 struct ipa_cst_ref_desc *rdesc;
2971 if (jf->type == IPA_JF_PASS_THROUGH)
2973 int src_idx, c, d;
2974 src_idx = ipa_get_jf_pass_through_formal_id (jf);
2975 c = ipa_get_controlled_uses (new_root_info, src_idx);
2976 d = ipa_get_controlled_uses (old_root_info, i);
2978 gcc_checking_assert (ipa_get_jf_pass_through_operation (jf)
2979 == NOP_EXPR || c == IPA_UNDESCRIBED_USE);
2980 c = combine_controlled_uses_counters (c, d);
2981 ipa_set_controlled_uses (new_root_info, src_idx, c);
2982 if (c == 0 && new_root_info->ipcp_orig_node)
2984 struct cgraph_node *n;
2985 struct ipa_ref *ref;
2986 tree t = new_root_info->known_vals[src_idx];
2988 if (t && TREE_CODE (t) == ADDR_EXPR
2989 && TREE_CODE (TREE_OPERAND (t, 0)) == FUNCTION_DECL
2990 && (n = cgraph_get_node (TREE_OPERAND (t, 0)))
2991 && (ref = ipa_find_reference (new_root,
2992 n, NULL, 0)))
2994 if (dump_file)
2995 fprintf (dump_file, "ipa-prop: Removing cloning-created "
2996 "reference from %s/%i to %s/%i.\n",
2997 xstrdup (new_root->name ()),
2998 new_root->order,
2999 xstrdup (n->name ()), n->order);
3000 ipa_remove_reference (ref);
3004 else if (jf->type == IPA_JF_CONST
3005 && (rdesc = jfunc_rdesc_usable (jf)))
3007 int d = ipa_get_controlled_uses (old_root_info, i);
3008 int c = rdesc->refcount;
3009 rdesc->refcount = combine_controlled_uses_counters (c, d);
3010 if (rdesc->refcount == 0)
3012 tree cst = ipa_get_jf_constant (jf);
3013 struct cgraph_node *n;
3014 gcc_checking_assert (TREE_CODE (cst) == ADDR_EXPR
3015 && TREE_CODE (TREE_OPERAND (cst, 0))
3016 == FUNCTION_DECL);
3017 n = cgraph_get_node (TREE_OPERAND (cst, 0));
3018 if (n)
3020 struct cgraph_node *clone;
3021 bool ok;
3022 ok = remove_described_reference (n, rdesc);
3023 gcc_checking_assert (ok);
3025 clone = cs->caller;
3026 while (clone->global.inlined_to
3027 && clone != rdesc->cs->caller
3028 && IPA_NODE_REF (clone)->ipcp_orig_node)
3030 struct ipa_ref *ref;
3031 ref = ipa_find_reference (clone,
3032 n, NULL, 0);
3033 if (ref)
3035 if (dump_file)
3036 fprintf (dump_file, "ipa-prop: Removing "
3037 "cloning-created reference "
3038 "from %s/%i to %s/%i.\n",
3039 xstrdup (clone->name ()),
3040 clone->order,
3041 xstrdup (n->name ()),
3042 n->order);
3043 ipa_remove_reference (ref);
3045 clone = clone->callers->caller;
3052 for (i = ipa_get_param_count (old_root_info);
3053 i < ipa_get_cs_argument_count (args);
3054 i++)
3056 struct ipa_jump_func *jf = ipa_get_ith_jump_func (args, i);
3058 if (jf->type == IPA_JF_CONST)
3060 struct ipa_cst_ref_desc *rdesc = jfunc_rdesc_usable (jf);
3061 if (rdesc)
3062 rdesc->refcount = IPA_UNDESCRIBED_USE;
3064 else if (jf->type == IPA_JF_PASS_THROUGH)
3065 ipa_set_controlled_uses (new_root_info,
3066 jf->value.pass_through.formal_id,
3067 IPA_UNDESCRIBED_USE);
3071 /* Update jump functions and call note functions on inlining the call site CS.
3072 CS is expected to lead to a node already cloned by
3073 cgraph_clone_inline_nodes. Newly discovered indirect edges will be added to
3074 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were +
3075 created. */
3077 bool
3078 ipa_propagate_indirect_call_infos (struct cgraph_edge *cs,
3079 vec<cgraph_edge_p> *new_edges)
3081 bool changed;
3082 /* Do nothing if the preparation phase has not been carried out yet
3083 (i.e. during early inlining). */
3084 if (!ipa_node_params_vector.exists ())
3085 return false;
3086 gcc_assert (ipa_edge_args_vector);
3088 propagate_controlled_uses (cs);
3089 changed = propagate_info_to_inlined_callees (cs, cs->callee, new_edges);
3091 return changed;
3094 /* Frees all dynamically allocated structures that the argument info points
3095 to. */
3097 void
3098 ipa_free_edge_args_substructures (struct ipa_edge_args *args)
3100 vec_free (args->jump_functions);
3101 memset (args, 0, sizeof (*args));
3104 /* Free all ipa_edge structures. */
3106 void
3107 ipa_free_all_edge_args (void)
3109 int i;
3110 struct ipa_edge_args *args;
3112 if (!ipa_edge_args_vector)
3113 return;
3115 FOR_EACH_VEC_ELT (*ipa_edge_args_vector, i, args)
3116 ipa_free_edge_args_substructures (args);
3118 vec_free (ipa_edge_args_vector);
3121 /* Frees all dynamically allocated structures that the param info points
3122 to. */
3124 void
3125 ipa_free_node_params_substructures (struct ipa_node_params *info)
3127 info->descriptors.release ();
3128 free (info->lattices);
3129 /* Lattice values and their sources are deallocated with their alocation
3130 pool. */
3131 info->known_vals.release ();
3132 memset (info, 0, sizeof (*info));
3135 /* Free all ipa_node_params structures. */
3137 void
3138 ipa_free_all_node_params (void)
3140 int i;
3141 struct ipa_node_params *info;
3143 FOR_EACH_VEC_ELT (ipa_node_params_vector, i, info)
3144 ipa_free_node_params_substructures (info);
3146 ipa_node_params_vector.release ();
3149 /* Set the aggregate replacements of NODE to be AGGVALS. */
3151 void
3152 ipa_set_node_agg_value_chain (struct cgraph_node *node,
3153 struct ipa_agg_replacement_value *aggvals)
3155 if (vec_safe_length (ipa_node_agg_replacements) <= (unsigned) cgraph_max_uid)
3156 vec_safe_grow_cleared (ipa_node_agg_replacements, cgraph_max_uid + 1);
3158 (*ipa_node_agg_replacements)[node->uid] = aggvals;
3161 /* Hook that is called by cgraph.c when an edge is removed. */
3163 static void
3164 ipa_edge_removal_hook (struct cgraph_edge *cs, void *data ATTRIBUTE_UNUSED)
3166 struct ipa_edge_args *args;
3168 /* During IPA-CP updating we can be called on not-yet analyzed clones. */
3169 if (vec_safe_length (ipa_edge_args_vector) <= (unsigned)cs->uid)
3170 return;
3172 args = IPA_EDGE_REF (cs);
3173 if (args->jump_functions)
3175 struct ipa_jump_func *jf;
3176 int i;
3177 FOR_EACH_VEC_ELT (*args->jump_functions, i, jf)
3179 struct ipa_cst_ref_desc *rdesc;
3180 try_decrement_rdesc_refcount (jf);
3181 if (jf->type == IPA_JF_CONST
3182 && (rdesc = ipa_get_jf_constant_rdesc (jf))
3183 && rdesc->cs == cs)
3184 rdesc->cs = NULL;
3188 ipa_free_edge_args_substructures (IPA_EDGE_REF (cs));
3191 /* Hook that is called by cgraph.c when a node is removed. */
3193 static void
3194 ipa_node_removal_hook (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
3196 /* During IPA-CP updating we can be called on not-yet analyze clones. */
3197 if (ipa_node_params_vector.length () > (unsigned)node->uid)
3198 ipa_free_node_params_substructures (IPA_NODE_REF (node));
3199 if (vec_safe_length (ipa_node_agg_replacements) > (unsigned)node->uid)
3200 (*ipa_node_agg_replacements)[(unsigned)node->uid] = NULL;
3203 /* Hook that is called by cgraph.c when an edge is duplicated. */
3205 static void
3206 ipa_edge_duplication_hook (struct cgraph_edge *src, struct cgraph_edge *dst,
3207 __attribute__((unused)) void *data)
3209 struct ipa_edge_args *old_args, *new_args;
3210 unsigned int i;
3212 ipa_check_create_edge_args ();
3214 old_args = IPA_EDGE_REF (src);
3215 new_args = IPA_EDGE_REF (dst);
3217 new_args->jump_functions = vec_safe_copy (old_args->jump_functions);
3219 for (i = 0; i < vec_safe_length (old_args->jump_functions); i++)
3221 struct ipa_jump_func *src_jf = ipa_get_ith_jump_func (old_args, i);
3222 struct ipa_jump_func *dst_jf = ipa_get_ith_jump_func (new_args, i);
3224 dst_jf->agg.items = vec_safe_copy (dst_jf->agg.items);
3226 if (src_jf->type == IPA_JF_CONST)
3228 struct ipa_cst_ref_desc *src_rdesc = jfunc_rdesc_usable (src_jf);
3230 if (!src_rdesc)
3231 dst_jf->value.constant.rdesc = NULL;
3232 else if (src->caller == dst->caller)
3234 struct ipa_ref *ref;
3235 symtab_node *n = cgraph_node_for_jfunc (src_jf);
3236 gcc_checking_assert (n);
3237 ref = ipa_find_reference (src->caller, n,
3238 src->call_stmt, src->lto_stmt_uid);
3239 gcc_checking_assert (ref);
3240 ipa_clone_ref (ref, dst->caller, ref->stmt);
3242 gcc_checking_assert (ipa_refdesc_pool);
3243 struct ipa_cst_ref_desc *dst_rdesc
3244 = (struct ipa_cst_ref_desc *) pool_alloc (ipa_refdesc_pool);
3245 dst_rdesc->cs = dst;
3246 dst_rdesc->refcount = src_rdesc->refcount;
3247 dst_rdesc->next_duplicate = NULL;
3248 dst_jf->value.constant.rdesc = dst_rdesc;
3250 else if (src_rdesc->cs == src)
3252 struct ipa_cst_ref_desc *dst_rdesc;
3253 gcc_checking_assert (ipa_refdesc_pool);
3254 dst_rdesc
3255 = (struct ipa_cst_ref_desc *) pool_alloc (ipa_refdesc_pool);
3256 dst_rdesc->cs = dst;
3257 dst_rdesc->refcount = src_rdesc->refcount;
3258 dst_rdesc->next_duplicate = src_rdesc->next_duplicate;
3259 src_rdesc->next_duplicate = dst_rdesc;
3260 dst_jf->value.constant.rdesc = dst_rdesc;
3262 else
3264 struct ipa_cst_ref_desc *dst_rdesc;
3265 /* This can happen during inlining, when a JFUNC can refer to a
3266 reference taken in a function up in the tree of inline clones.
3267 We need to find the duplicate that refers to our tree of
3268 inline clones. */
3270 gcc_assert (dst->caller->global.inlined_to);
3271 for (dst_rdesc = src_rdesc->next_duplicate;
3272 dst_rdesc;
3273 dst_rdesc = dst_rdesc->next_duplicate)
3275 struct cgraph_node *top;
3276 top = dst_rdesc->cs->caller->global.inlined_to
3277 ? dst_rdesc->cs->caller->global.inlined_to
3278 : dst_rdesc->cs->caller;
3279 if (dst->caller->global.inlined_to == top)
3280 break;
3282 gcc_assert (dst_rdesc);
3283 dst_jf->value.constant.rdesc = dst_rdesc;
3289 /* Hook that is called by cgraph.c when a node is duplicated. */
3291 static void
3292 ipa_node_duplication_hook (struct cgraph_node *src, struct cgraph_node *dst,
3293 ATTRIBUTE_UNUSED void *data)
3295 struct ipa_node_params *old_info, *new_info;
3296 struct ipa_agg_replacement_value *old_av, *new_av;
3298 ipa_check_create_node_params ();
3299 old_info = IPA_NODE_REF (src);
3300 new_info = IPA_NODE_REF (dst);
3302 new_info->descriptors = old_info->descriptors.copy ();
3303 new_info->lattices = NULL;
3304 new_info->ipcp_orig_node = old_info->ipcp_orig_node;
3306 new_info->uses_analysis_done = old_info->uses_analysis_done;
3307 new_info->node_enqueued = old_info->node_enqueued;
3309 old_av = ipa_get_agg_replacements_for_node (src);
3310 if (!old_av)
3311 return;
3313 new_av = NULL;
3314 while (old_av)
3316 struct ipa_agg_replacement_value *v;
3318 v = ggc_alloc_ipa_agg_replacement_value ();
3319 memcpy (v, old_av, sizeof (*v));
3320 v->next = new_av;
3321 new_av = v;
3322 old_av = old_av->next;
3324 ipa_set_node_agg_value_chain (dst, new_av);
3328 /* Analyze newly added function into callgraph. */
3330 static void
3331 ipa_add_new_function (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
3333 if (cgraph_function_with_gimple_body_p (node))
3334 ipa_analyze_node (node);
3337 /* Register our cgraph hooks if they are not already there. */
3339 void
3340 ipa_register_cgraph_hooks (void)
3342 if (!edge_removal_hook_holder)
3343 edge_removal_hook_holder =
3344 cgraph_add_edge_removal_hook (&ipa_edge_removal_hook, NULL);
3345 if (!node_removal_hook_holder)
3346 node_removal_hook_holder =
3347 cgraph_add_node_removal_hook (&ipa_node_removal_hook, NULL);
3348 if (!edge_duplication_hook_holder)
3349 edge_duplication_hook_holder =
3350 cgraph_add_edge_duplication_hook (&ipa_edge_duplication_hook, NULL);
3351 if (!node_duplication_hook_holder)
3352 node_duplication_hook_holder =
3353 cgraph_add_node_duplication_hook (&ipa_node_duplication_hook, NULL);
3354 function_insertion_hook_holder =
3355 cgraph_add_function_insertion_hook (&ipa_add_new_function, NULL);
3358 /* Unregister our cgraph hooks if they are not already there. */
3360 static void
3361 ipa_unregister_cgraph_hooks (void)
3363 cgraph_remove_edge_removal_hook (edge_removal_hook_holder);
3364 edge_removal_hook_holder = NULL;
3365 cgraph_remove_node_removal_hook (node_removal_hook_holder);
3366 node_removal_hook_holder = NULL;
3367 cgraph_remove_edge_duplication_hook (edge_duplication_hook_holder);
3368 edge_duplication_hook_holder = NULL;
3369 cgraph_remove_node_duplication_hook (node_duplication_hook_holder);
3370 node_duplication_hook_holder = NULL;
3371 cgraph_remove_function_insertion_hook (function_insertion_hook_holder);
3372 function_insertion_hook_holder = NULL;
3375 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
3376 longer needed after ipa-cp. */
3378 void
3379 ipa_free_all_structures_after_ipa_cp (void)
3381 if (!optimize)
3383 ipa_free_all_edge_args ();
3384 ipa_free_all_node_params ();
3385 free_alloc_pool (ipcp_sources_pool);
3386 free_alloc_pool (ipcp_values_pool);
3387 free_alloc_pool (ipcp_agg_lattice_pool);
3388 ipa_unregister_cgraph_hooks ();
3389 if (ipa_refdesc_pool)
3390 free_alloc_pool (ipa_refdesc_pool);
3394 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
3395 longer needed after indirect inlining. */
3397 void
3398 ipa_free_all_structures_after_iinln (void)
3400 ipa_free_all_edge_args ();
3401 ipa_free_all_node_params ();
3402 ipa_unregister_cgraph_hooks ();
3403 if (ipcp_sources_pool)
3404 free_alloc_pool (ipcp_sources_pool);
3405 if (ipcp_values_pool)
3406 free_alloc_pool (ipcp_values_pool);
3407 if (ipcp_agg_lattice_pool)
3408 free_alloc_pool (ipcp_agg_lattice_pool);
3409 if (ipa_refdesc_pool)
3410 free_alloc_pool (ipa_refdesc_pool);
3413 /* Print ipa_tree_map data structures of all functions in the
3414 callgraph to F. */
3416 void
3417 ipa_print_node_params (FILE *f, struct cgraph_node *node)
3419 int i, count;
3420 struct ipa_node_params *info;
3422 if (!node->definition)
3423 return;
3424 info = IPA_NODE_REF (node);
3425 fprintf (f, " function %s/%i parameter descriptors:\n",
3426 node->name (), node->order);
3427 count = ipa_get_param_count (info);
3428 for (i = 0; i < count; i++)
3430 int c;
3432 fprintf (f, " ");
3433 ipa_dump_param (f, info, i);
3434 if (ipa_is_param_used (info, i))
3435 fprintf (f, " used");
3436 c = ipa_get_controlled_uses (info, i);
3437 if (c == IPA_UNDESCRIBED_USE)
3438 fprintf (f, " undescribed_use");
3439 else
3440 fprintf (f, " controlled_uses=%i", c);
3441 fprintf (f, "\n");
3445 /* Print ipa_tree_map data structures of all functions in the
3446 callgraph to F. */
3448 void
3449 ipa_print_all_params (FILE * f)
3451 struct cgraph_node *node;
3453 fprintf (f, "\nFunction parameters:\n");
3454 FOR_EACH_FUNCTION (node)
3455 ipa_print_node_params (f, node);
3458 /* Return a heap allocated vector containing formal parameters of FNDECL. */
3460 vec<tree>
3461 ipa_get_vector_of_formal_parms (tree fndecl)
3463 vec<tree> args;
3464 int count;
3465 tree parm;
3467 gcc_assert (!flag_wpa);
3468 count = count_formal_params (fndecl);
3469 args.create (count);
3470 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
3471 args.quick_push (parm);
3473 return args;
3476 /* Return a heap allocated vector containing types of formal parameters of
3477 function type FNTYPE. */
3479 vec<tree>
3480 ipa_get_vector_of_formal_parm_types (tree fntype)
3482 vec<tree> types;
3483 int count = 0;
3484 tree t;
3486 for (t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
3487 count++;
3489 types.create (count);
3490 for (t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
3491 types.quick_push (TREE_VALUE (t));
3493 return types;
3496 /* Modify the function declaration FNDECL and its type according to the plan in
3497 ADJUSTMENTS. It also sets base fields of individual adjustments structures
3498 to reflect the actual parameters being modified which are determined by the
3499 base_index field. */
3501 void
3502 ipa_modify_formal_parameters (tree fndecl, ipa_parm_adjustment_vec adjustments)
3504 vec<tree> oparms = ipa_get_vector_of_formal_parms (fndecl);
3505 tree orig_type = TREE_TYPE (fndecl);
3506 tree old_arg_types = TYPE_ARG_TYPES (orig_type);
3508 /* The following test is an ugly hack, some functions simply don't have any
3509 arguments in their type. This is probably a bug but well... */
3510 bool care_for_types = (old_arg_types != NULL_TREE);
3511 bool last_parm_void;
3512 vec<tree> otypes;
3513 if (care_for_types)
3515 last_parm_void = (TREE_VALUE (tree_last (old_arg_types))
3516 == void_type_node);
3517 otypes = ipa_get_vector_of_formal_parm_types (orig_type);
3518 if (last_parm_void)
3519 gcc_assert (oparms.length () + 1 == otypes.length ());
3520 else
3521 gcc_assert (oparms.length () == otypes.length ());
3523 else
3525 last_parm_void = false;
3526 otypes.create (0);
3529 int len = adjustments.length ();
3530 tree *link = &DECL_ARGUMENTS (fndecl);
3531 tree new_arg_types = NULL;
3532 for (int i = 0; i < len; i++)
3534 struct ipa_parm_adjustment *adj;
3535 gcc_assert (link);
3537 adj = &adjustments[i];
3538 tree parm;
3539 if (adj->op == IPA_PARM_OP_NEW)
3540 parm = NULL;
3541 else
3542 parm = oparms[adj->base_index];
3543 adj->base = parm;
3545 if (adj->op == IPA_PARM_OP_COPY)
3547 if (care_for_types)
3548 new_arg_types = tree_cons (NULL_TREE, otypes[adj->base_index],
3549 new_arg_types);
3550 *link = parm;
3551 link = &DECL_CHAIN (parm);
3553 else if (adj->op != IPA_PARM_OP_REMOVE)
3555 tree new_parm;
3556 tree ptype;
3558 if (adj->by_ref)
3559 ptype = build_pointer_type (adj->type);
3560 else
3562 ptype = adj->type;
3563 if (is_gimple_reg_type (ptype))
3565 unsigned malign = GET_MODE_ALIGNMENT (TYPE_MODE (ptype));
3566 if (TYPE_ALIGN (ptype) < malign)
3567 ptype = build_aligned_type (ptype, malign);
3571 if (care_for_types)
3572 new_arg_types = tree_cons (NULL_TREE, ptype, new_arg_types);
3574 new_parm = build_decl (UNKNOWN_LOCATION, PARM_DECL, NULL_TREE,
3575 ptype);
3576 const char *prefix = adj->arg_prefix ? adj->arg_prefix : "SYNTH";
3577 DECL_NAME (new_parm) = create_tmp_var_name (prefix);
3578 DECL_ARTIFICIAL (new_parm) = 1;
3579 DECL_ARG_TYPE (new_parm) = ptype;
3580 DECL_CONTEXT (new_parm) = fndecl;
3581 TREE_USED (new_parm) = 1;
3582 DECL_IGNORED_P (new_parm) = 1;
3583 layout_decl (new_parm, 0);
3585 if (adj->op == IPA_PARM_OP_NEW)
3586 adj->base = NULL;
3587 else
3588 adj->base = parm;
3589 adj->new_decl = new_parm;
3591 *link = new_parm;
3592 link = &DECL_CHAIN (new_parm);
3596 *link = NULL_TREE;
3598 tree new_reversed = NULL;
3599 if (care_for_types)
3601 new_reversed = nreverse (new_arg_types);
3602 if (last_parm_void)
3604 if (new_reversed)
3605 TREE_CHAIN (new_arg_types) = void_list_node;
3606 else
3607 new_reversed = void_list_node;
3611 /* Use copy_node to preserve as much as possible from original type
3612 (debug info, attribute lists etc.)
3613 Exception is METHOD_TYPEs must have THIS argument.
3614 When we are asked to remove it, we need to build new FUNCTION_TYPE
3615 instead. */
3616 tree new_type = NULL;
3617 if (TREE_CODE (orig_type) != METHOD_TYPE
3618 || (adjustments[0].op == IPA_PARM_OP_COPY
3619 && adjustments[0].base_index == 0))
3621 new_type = build_distinct_type_copy (orig_type);
3622 TYPE_ARG_TYPES (new_type) = new_reversed;
3624 else
3626 new_type
3627 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type),
3628 new_reversed));
3629 TYPE_CONTEXT (new_type) = TYPE_CONTEXT (orig_type);
3630 DECL_VINDEX (fndecl) = NULL_TREE;
3633 /* When signature changes, we need to clear builtin info. */
3634 if (DECL_BUILT_IN (fndecl))
3636 DECL_BUILT_IN_CLASS (fndecl) = NOT_BUILT_IN;
3637 DECL_FUNCTION_CODE (fndecl) = (enum built_in_function) 0;
3640 /* This is a new type, not a copy of an old type. Need to reassociate
3641 variants. We can handle everything except the main variant lazily. */
3642 tree t = TYPE_MAIN_VARIANT (orig_type);
3643 if (orig_type != t)
3645 TYPE_MAIN_VARIANT (new_type) = t;
3646 TYPE_NEXT_VARIANT (new_type) = TYPE_NEXT_VARIANT (t);
3647 TYPE_NEXT_VARIANT (t) = new_type;
3649 else
3651 TYPE_MAIN_VARIANT (new_type) = new_type;
3652 TYPE_NEXT_VARIANT (new_type) = NULL;
3655 TREE_TYPE (fndecl) = new_type;
3656 DECL_VIRTUAL_P (fndecl) = 0;
3657 DECL_LANG_SPECIFIC (fndecl) = NULL;
3658 otypes.release ();
3659 oparms.release ();
3662 /* Modify actual arguments of a function call CS as indicated in ADJUSTMENTS.
3663 If this is a directly recursive call, CS must be NULL. Otherwise it must
3664 contain the corresponding call graph edge. */
3666 void
3667 ipa_modify_call_arguments (struct cgraph_edge *cs, gimple stmt,
3668 ipa_parm_adjustment_vec adjustments)
3670 struct cgraph_node *current_node = cgraph_get_node (current_function_decl);
3671 vec<tree> vargs;
3672 vec<tree, va_gc> **debug_args = NULL;
3673 gimple new_stmt;
3674 gimple_stmt_iterator gsi, prev_gsi;
3675 tree callee_decl;
3676 int i, len;
3678 len = adjustments.length ();
3679 vargs.create (len);
3680 callee_decl = !cs ? gimple_call_fndecl (stmt) : cs->callee->decl;
3681 ipa_remove_stmt_references (current_node, stmt);
3683 gsi = gsi_for_stmt (stmt);
3684 prev_gsi = gsi;
3685 gsi_prev (&prev_gsi);
3686 for (i = 0; i < len; i++)
3688 struct ipa_parm_adjustment *adj;
3690 adj = &adjustments[i];
3692 if (adj->op == IPA_PARM_OP_COPY)
3694 tree arg = gimple_call_arg (stmt, adj->base_index);
3696 vargs.quick_push (arg);
3698 else if (adj->op != IPA_PARM_OP_REMOVE)
3700 tree expr, base, off;
3701 location_t loc;
3702 unsigned int deref_align = 0;
3703 bool deref_base = false;
3705 /* We create a new parameter out of the value of the old one, we can
3706 do the following kind of transformations:
3708 - A scalar passed by reference is converted to a scalar passed by
3709 value. (adj->by_ref is false and the type of the original
3710 actual argument is a pointer to a scalar).
3712 - A part of an aggregate is passed instead of the whole aggregate.
3713 The part can be passed either by value or by reference, this is
3714 determined by value of adj->by_ref. Moreover, the code below
3715 handles both situations when the original aggregate is passed by
3716 value (its type is not a pointer) and when it is passed by
3717 reference (it is a pointer to an aggregate).
3719 When the new argument is passed by reference (adj->by_ref is true)
3720 it must be a part of an aggregate and therefore we form it by
3721 simply taking the address of a reference inside the original
3722 aggregate. */
3724 gcc_checking_assert (adj->offset % BITS_PER_UNIT == 0);
3725 base = gimple_call_arg (stmt, adj->base_index);
3726 loc = DECL_P (base) ? DECL_SOURCE_LOCATION (base)
3727 : EXPR_LOCATION (base);
3729 if (TREE_CODE (base) != ADDR_EXPR
3730 && POINTER_TYPE_P (TREE_TYPE (base)))
3731 off = build_int_cst (adj->alias_ptr_type,
3732 adj->offset / BITS_PER_UNIT);
3733 else
3735 HOST_WIDE_INT base_offset;
3736 tree prev_base;
3737 bool addrof;
3739 if (TREE_CODE (base) == ADDR_EXPR)
3741 base = TREE_OPERAND (base, 0);
3742 addrof = true;
3744 else
3745 addrof = false;
3746 prev_base = base;
3747 base = get_addr_base_and_unit_offset (base, &base_offset);
3748 /* Aggregate arguments can have non-invariant addresses. */
3749 if (!base)
3751 base = build_fold_addr_expr (prev_base);
3752 off = build_int_cst (adj->alias_ptr_type,
3753 adj->offset / BITS_PER_UNIT);
3755 else if (TREE_CODE (base) == MEM_REF)
3757 if (!addrof)
3759 deref_base = true;
3760 deref_align = TYPE_ALIGN (TREE_TYPE (base));
3762 off = build_int_cst (adj->alias_ptr_type,
3763 base_offset
3764 + adj->offset / BITS_PER_UNIT);
3765 off = int_const_binop (PLUS_EXPR, TREE_OPERAND (base, 1),
3766 off);
3767 base = TREE_OPERAND (base, 0);
3769 else
3771 off = build_int_cst (adj->alias_ptr_type,
3772 base_offset
3773 + adj->offset / BITS_PER_UNIT);
3774 base = build_fold_addr_expr (base);
3778 if (!adj->by_ref)
3780 tree type = adj->type;
3781 unsigned int align;
3782 unsigned HOST_WIDE_INT misalign;
3784 if (deref_base)
3786 align = deref_align;
3787 misalign = 0;
3789 else
3791 get_pointer_alignment_1 (base, &align, &misalign);
3792 if (TYPE_ALIGN (type) > align)
3793 align = TYPE_ALIGN (type);
3795 misalign += (offset_int::from (off, SIGNED).to_short_addr ()
3796 * BITS_PER_UNIT);
3797 misalign = misalign & (align - 1);
3798 if (misalign != 0)
3799 align = (misalign & -misalign);
3800 if (align < TYPE_ALIGN (type))
3801 type = build_aligned_type (type, align);
3802 base = force_gimple_operand_gsi (&gsi, base,
3803 true, NULL, true, GSI_SAME_STMT);
3804 expr = fold_build2_loc (loc, MEM_REF, type, base, off);
3805 /* If expr is not a valid gimple call argument emit
3806 a load into a temporary. */
3807 if (is_gimple_reg_type (TREE_TYPE (expr)))
3809 gimple tem = gimple_build_assign (NULL_TREE, expr);
3810 if (gimple_in_ssa_p (cfun))
3812 gimple_set_vuse (tem, gimple_vuse (stmt));
3813 expr = make_ssa_name (TREE_TYPE (expr), tem);
3815 else
3816 expr = create_tmp_reg (TREE_TYPE (expr), NULL);
3817 gimple_assign_set_lhs (tem, expr);
3818 gsi_insert_before (&gsi, tem, GSI_SAME_STMT);
3821 else
3823 expr = fold_build2_loc (loc, MEM_REF, adj->type, base, off);
3824 expr = build_fold_addr_expr (expr);
3825 expr = force_gimple_operand_gsi (&gsi, expr,
3826 true, NULL, true, GSI_SAME_STMT);
3828 vargs.quick_push (expr);
3830 if (adj->op != IPA_PARM_OP_COPY && MAY_HAVE_DEBUG_STMTS)
3832 unsigned int ix;
3833 tree ddecl = NULL_TREE, origin = DECL_ORIGIN (adj->base), arg;
3834 gimple def_temp;
3836 arg = gimple_call_arg (stmt, adj->base_index);
3837 if (!useless_type_conversion_p (TREE_TYPE (origin), TREE_TYPE (arg)))
3839 if (!fold_convertible_p (TREE_TYPE (origin), arg))
3840 continue;
3841 arg = fold_convert_loc (gimple_location (stmt),
3842 TREE_TYPE (origin), arg);
3844 if (debug_args == NULL)
3845 debug_args = decl_debug_args_insert (callee_decl);
3846 for (ix = 0; vec_safe_iterate (*debug_args, ix, &ddecl); ix += 2)
3847 if (ddecl == origin)
3849 ddecl = (**debug_args)[ix + 1];
3850 break;
3852 if (ddecl == NULL)
3854 ddecl = make_node (DEBUG_EXPR_DECL);
3855 DECL_ARTIFICIAL (ddecl) = 1;
3856 TREE_TYPE (ddecl) = TREE_TYPE (origin);
3857 DECL_MODE (ddecl) = DECL_MODE (origin);
3859 vec_safe_push (*debug_args, origin);
3860 vec_safe_push (*debug_args, ddecl);
3862 def_temp = gimple_build_debug_bind (ddecl, unshare_expr (arg), stmt);
3863 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
3867 if (dump_file && (dump_flags & TDF_DETAILS))
3869 fprintf (dump_file, "replacing stmt:");
3870 print_gimple_stmt (dump_file, gsi_stmt (gsi), 0, 0);
3873 new_stmt = gimple_build_call_vec (callee_decl, vargs);
3874 vargs.release ();
3875 if (gimple_call_lhs (stmt))
3876 gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt));
3878 gimple_set_block (new_stmt, gimple_block (stmt));
3879 if (gimple_has_location (stmt))
3880 gimple_set_location (new_stmt, gimple_location (stmt));
3881 gimple_call_set_chain (new_stmt, gimple_call_chain (stmt));
3882 gimple_call_copy_flags (new_stmt, stmt);
3883 if (gimple_in_ssa_p (cfun))
3885 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
3886 if (gimple_vdef (stmt))
3888 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
3889 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
3893 if (dump_file && (dump_flags & TDF_DETAILS))
3895 fprintf (dump_file, "with stmt:");
3896 print_gimple_stmt (dump_file, new_stmt, 0, 0);
3897 fprintf (dump_file, "\n");
3899 gsi_replace (&gsi, new_stmt, true);
3900 if (cs)
3901 cgraph_set_call_stmt (cs, new_stmt);
3904 ipa_record_stmt_references (current_node, gsi_stmt (gsi));
3905 gsi_prev (&gsi);
3907 while (gsi_stmt (gsi) != gsi_stmt (prev_gsi));
3910 /* If the expression *EXPR should be replaced by a reduction of a parameter, do
3911 so. ADJUSTMENTS is a pointer to a vector of adjustments. CONVERT
3912 specifies whether the function should care about type incompatibility the
3913 current and new expressions. If it is false, the function will leave
3914 incompatibility issues to the caller. Return true iff the expression
3915 was modified. */
3917 bool
3918 ipa_modify_expr (tree *expr, bool convert,
3919 ipa_parm_adjustment_vec adjustments)
3921 struct ipa_parm_adjustment *cand
3922 = ipa_get_adjustment_candidate (&expr, &convert, adjustments, false);
3923 if (!cand)
3924 return false;
3926 tree src;
3927 if (cand->by_ref)
3928 src = build_simple_mem_ref (cand->new_decl);
3929 else
3930 src = cand->new_decl;
3932 if (dump_file && (dump_flags & TDF_DETAILS))
3934 fprintf (dump_file, "About to replace expr ");
3935 print_generic_expr (dump_file, *expr, 0);
3936 fprintf (dump_file, " with ");
3937 print_generic_expr (dump_file, src, 0);
3938 fprintf (dump_file, "\n");
3941 if (convert && !useless_type_conversion_p (TREE_TYPE (*expr), cand->type))
3943 tree vce = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (*expr), src);
3944 *expr = vce;
3946 else
3947 *expr = src;
3948 return true;
3951 /* If T is an SSA_NAME, return NULL if it is not a default def or
3952 return its base variable if it is. If IGNORE_DEFAULT_DEF is true,
3953 the base variable is always returned, regardless if it is a default
3954 def. Return T if it is not an SSA_NAME. */
3956 static tree
3957 get_ssa_base_param (tree t, bool ignore_default_def)
3959 if (TREE_CODE (t) == SSA_NAME)
3961 if (ignore_default_def || SSA_NAME_IS_DEFAULT_DEF (t))
3962 return SSA_NAME_VAR (t);
3963 else
3964 return NULL_TREE;
3966 return t;
3969 /* Given an expression, return an adjustment entry specifying the
3970 transformation to be done on EXPR. If no suitable adjustment entry
3971 was found, returns NULL.
3973 If IGNORE_DEFAULT_DEF is set, consider SSA_NAMEs which are not a
3974 default def, otherwise bail on them.
3976 If CONVERT is non-NULL, this function will set *CONVERT if the
3977 expression provided is a component reference. ADJUSTMENTS is the
3978 adjustments vector. */
3980 ipa_parm_adjustment *
3981 ipa_get_adjustment_candidate (tree **expr, bool *convert,
3982 ipa_parm_adjustment_vec adjustments,
3983 bool ignore_default_def)
3985 if (TREE_CODE (**expr) == BIT_FIELD_REF
3986 || TREE_CODE (**expr) == IMAGPART_EXPR
3987 || TREE_CODE (**expr) == REALPART_EXPR)
3989 *expr = &TREE_OPERAND (**expr, 0);
3990 if (convert)
3991 *convert = true;
3994 HOST_WIDE_INT offset, size, max_size;
3995 tree base = get_ref_base_and_extent (**expr, &offset, &size, &max_size);
3996 if (!base || size == -1 || max_size == -1)
3997 return NULL;
3999 if (TREE_CODE (base) == MEM_REF)
4001 offset += mem_ref_offset (base).to_short_addr () * BITS_PER_UNIT;
4002 base = TREE_OPERAND (base, 0);
4005 base = get_ssa_base_param (base, ignore_default_def);
4006 if (!base || TREE_CODE (base) != PARM_DECL)
4007 return NULL;
4009 struct ipa_parm_adjustment *cand = NULL;
4010 unsigned int len = adjustments.length ();
4011 for (unsigned i = 0; i < len; i++)
4013 struct ipa_parm_adjustment *adj = &adjustments[i];
4015 if (adj->base == base
4016 && (adj->offset == offset || adj->op == IPA_PARM_OP_REMOVE))
4018 cand = adj;
4019 break;
4023 if (!cand || cand->op == IPA_PARM_OP_COPY || cand->op == IPA_PARM_OP_REMOVE)
4024 return NULL;
4025 return cand;
4028 /* Return true iff BASE_INDEX is in ADJUSTMENTS more than once. */
4030 static bool
4031 index_in_adjustments_multiple_times_p (int base_index,
4032 ipa_parm_adjustment_vec adjustments)
4034 int i, len = adjustments.length ();
4035 bool one = false;
4037 for (i = 0; i < len; i++)
4039 struct ipa_parm_adjustment *adj;
4040 adj = &adjustments[i];
4042 if (adj->base_index == base_index)
4044 if (one)
4045 return true;
4046 else
4047 one = true;
4050 return false;
4054 /* Return adjustments that should have the same effect on function parameters
4055 and call arguments as if they were first changed according to adjustments in
4056 INNER and then by adjustments in OUTER. */
4058 ipa_parm_adjustment_vec
4059 ipa_combine_adjustments (ipa_parm_adjustment_vec inner,
4060 ipa_parm_adjustment_vec outer)
4062 int i, outlen = outer.length ();
4063 int inlen = inner.length ();
4064 int removals = 0;
4065 ipa_parm_adjustment_vec adjustments, tmp;
4067 tmp.create (inlen);
4068 for (i = 0; i < inlen; i++)
4070 struct ipa_parm_adjustment *n;
4071 n = &inner[i];
4073 if (n->op == IPA_PARM_OP_REMOVE)
4074 removals++;
4075 else
4077 /* FIXME: Handling of new arguments are not implemented yet. */
4078 gcc_assert (n->op != IPA_PARM_OP_NEW);
4079 tmp.quick_push (*n);
4083 adjustments.create (outlen + removals);
4084 for (i = 0; i < outlen; i++)
4086 struct ipa_parm_adjustment r;
4087 struct ipa_parm_adjustment *out = &outer[i];
4088 struct ipa_parm_adjustment *in = &tmp[out->base_index];
4090 memset (&r, 0, sizeof (r));
4091 gcc_assert (in->op != IPA_PARM_OP_REMOVE);
4092 if (out->op == IPA_PARM_OP_REMOVE)
4094 if (!index_in_adjustments_multiple_times_p (in->base_index, tmp))
4096 r.op = IPA_PARM_OP_REMOVE;
4097 adjustments.quick_push (r);
4099 continue;
4101 else
4103 /* FIXME: Handling of new arguments are not implemented yet. */
4104 gcc_assert (out->op != IPA_PARM_OP_NEW);
4107 r.base_index = in->base_index;
4108 r.type = out->type;
4110 /* FIXME: Create nonlocal value too. */
4112 if (in->op == IPA_PARM_OP_COPY && out->op == IPA_PARM_OP_COPY)
4113 r.op = IPA_PARM_OP_COPY;
4114 else if (in->op == IPA_PARM_OP_COPY)
4115 r.offset = out->offset;
4116 else if (out->op == IPA_PARM_OP_COPY)
4117 r.offset = in->offset;
4118 else
4119 r.offset = in->offset + out->offset;
4120 adjustments.quick_push (r);
4123 for (i = 0; i < inlen; i++)
4125 struct ipa_parm_adjustment *n = &inner[i];
4127 if (n->op == IPA_PARM_OP_REMOVE)
4128 adjustments.quick_push (*n);
4131 tmp.release ();
4132 return adjustments;
4135 /* Dump the adjustments in the vector ADJUSTMENTS to dump_file in a human
4136 friendly way, assuming they are meant to be applied to FNDECL. */
4138 void
4139 ipa_dump_param_adjustments (FILE *file, ipa_parm_adjustment_vec adjustments,
4140 tree fndecl)
4142 int i, len = adjustments.length ();
4143 bool first = true;
4144 vec<tree> parms = ipa_get_vector_of_formal_parms (fndecl);
4146 fprintf (file, "IPA param adjustments: ");
4147 for (i = 0; i < len; i++)
4149 struct ipa_parm_adjustment *adj;
4150 adj = &adjustments[i];
4152 if (!first)
4153 fprintf (file, " ");
4154 else
4155 first = false;
4157 fprintf (file, "%i. base_index: %i - ", i, adj->base_index);
4158 print_generic_expr (file, parms[adj->base_index], 0);
4159 if (adj->base)
4161 fprintf (file, ", base: ");
4162 print_generic_expr (file, adj->base, 0);
4164 if (adj->new_decl)
4166 fprintf (file, ", new_decl: ");
4167 print_generic_expr (file, adj->new_decl, 0);
4169 if (adj->new_ssa_base)
4171 fprintf (file, ", new_ssa_base: ");
4172 print_generic_expr (file, adj->new_ssa_base, 0);
4175 if (adj->op == IPA_PARM_OP_COPY)
4176 fprintf (file, ", copy_param");
4177 else if (adj->op == IPA_PARM_OP_REMOVE)
4178 fprintf (file, ", remove_param");
4179 else
4180 fprintf (file, ", offset %li", (long) adj->offset);
4181 if (adj->by_ref)
4182 fprintf (file, ", by_ref");
4183 print_node_brief (file, ", type: ", adj->type, 0);
4184 fprintf (file, "\n");
4186 parms.release ();
4189 /* Dump the AV linked list. */
4191 void
4192 ipa_dump_agg_replacement_values (FILE *f, struct ipa_agg_replacement_value *av)
4194 bool comma = false;
4195 fprintf (f, " Aggregate replacements:");
4196 for (; av; av = av->next)
4198 fprintf (f, "%s %i[" HOST_WIDE_INT_PRINT_DEC "]=", comma ? "," : "",
4199 av->index, av->offset);
4200 print_generic_expr (f, av->value, 0);
4201 comma = true;
4203 fprintf (f, "\n");
4206 /* Stream out jump function JUMP_FUNC to OB. */
4208 static void
4209 ipa_write_jump_function (struct output_block *ob,
4210 struct ipa_jump_func *jump_func)
4212 struct ipa_agg_jf_item *item;
4213 struct bitpack_d bp;
4214 int i, count;
4216 streamer_write_uhwi (ob, jump_func->type);
4217 switch (jump_func->type)
4219 case IPA_JF_UNKNOWN:
4220 break;
4221 case IPA_JF_KNOWN_TYPE:
4222 streamer_write_uhwi (ob, jump_func->value.known_type.offset);
4223 stream_write_tree (ob, jump_func->value.known_type.base_type, true);
4224 stream_write_tree (ob, jump_func->value.known_type.component_type, true);
4225 break;
4226 case IPA_JF_CONST:
4227 gcc_assert (
4228 EXPR_LOCATION (jump_func->value.constant.value) == UNKNOWN_LOCATION);
4229 stream_write_tree (ob, jump_func->value.constant.value, true);
4230 break;
4231 case IPA_JF_PASS_THROUGH:
4232 streamer_write_uhwi (ob, jump_func->value.pass_through.operation);
4233 if (jump_func->value.pass_through.operation == NOP_EXPR)
4235 streamer_write_uhwi (ob, jump_func->value.pass_through.formal_id);
4236 bp = bitpack_create (ob->main_stream);
4237 bp_pack_value (&bp, jump_func->value.pass_through.agg_preserved, 1);
4238 bp_pack_value (&bp, jump_func->value.pass_through.type_preserved, 1);
4239 streamer_write_bitpack (&bp);
4241 else
4243 stream_write_tree (ob, jump_func->value.pass_through.operand, true);
4244 streamer_write_uhwi (ob, jump_func->value.pass_through.formal_id);
4246 break;
4247 case IPA_JF_ANCESTOR:
4248 streamer_write_uhwi (ob, jump_func->value.ancestor.offset);
4249 stream_write_tree (ob, jump_func->value.ancestor.type, true);
4250 streamer_write_uhwi (ob, jump_func->value.ancestor.formal_id);
4251 bp = bitpack_create (ob->main_stream);
4252 bp_pack_value (&bp, jump_func->value.ancestor.agg_preserved, 1);
4253 bp_pack_value (&bp, jump_func->value.ancestor.type_preserved, 1);
4254 streamer_write_bitpack (&bp);
4255 break;
4258 count = vec_safe_length (jump_func->agg.items);
4259 streamer_write_uhwi (ob, count);
4260 if (count)
4262 bp = bitpack_create (ob->main_stream);
4263 bp_pack_value (&bp, jump_func->agg.by_ref, 1);
4264 streamer_write_bitpack (&bp);
4267 FOR_EACH_VEC_SAFE_ELT (jump_func->agg.items, i, item)
4269 streamer_write_uhwi (ob, item->offset);
4270 stream_write_tree (ob, item->value, true);
4274 /* Read in jump function JUMP_FUNC from IB. */
4276 static void
4277 ipa_read_jump_function (struct lto_input_block *ib,
4278 struct ipa_jump_func *jump_func,
4279 struct cgraph_edge *cs,
4280 struct data_in *data_in)
4282 enum jump_func_type jftype;
4283 enum tree_code operation;
4284 int i, count;
4286 jftype = (enum jump_func_type) streamer_read_uhwi (ib);
4287 switch (jftype)
4289 case IPA_JF_UNKNOWN:
4290 jump_func->type = IPA_JF_UNKNOWN;
4291 break;
4292 case IPA_JF_KNOWN_TYPE:
4294 HOST_WIDE_INT offset = streamer_read_uhwi (ib);
4295 tree base_type = stream_read_tree (ib, data_in);
4296 tree component_type = stream_read_tree (ib, data_in);
4298 ipa_set_jf_known_type (jump_func, offset, base_type, component_type);
4299 break;
4301 case IPA_JF_CONST:
4302 ipa_set_jf_constant (jump_func, stream_read_tree (ib, data_in), cs);
4303 break;
4304 case IPA_JF_PASS_THROUGH:
4305 operation = (enum tree_code) streamer_read_uhwi (ib);
4306 if (operation == NOP_EXPR)
4308 int formal_id = streamer_read_uhwi (ib);
4309 struct bitpack_d bp = streamer_read_bitpack (ib);
4310 bool agg_preserved = bp_unpack_value (&bp, 1);
4311 bool type_preserved = bp_unpack_value (&bp, 1);
4312 ipa_set_jf_simple_pass_through (jump_func, formal_id, agg_preserved,
4313 type_preserved);
4315 else
4317 tree operand = stream_read_tree (ib, data_in);
4318 int formal_id = streamer_read_uhwi (ib);
4319 ipa_set_jf_arith_pass_through (jump_func, formal_id, operand,
4320 operation);
4322 break;
4323 case IPA_JF_ANCESTOR:
4325 HOST_WIDE_INT offset = streamer_read_uhwi (ib);
4326 tree type = stream_read_tree (ib, data_in);
4327 int formal_id = streamer_read_uhwi (ib);
4328 struct bitpack_d bp = streamer_read_bitpack (ib);
4329 bool agg_preserved = bp_unpack_value (&bp, 1);
4330 bool type_preserved = bp_unpack_value (&bp, 1);
4332 ipa_set_ancestor_jf (jump_func, offset, type, formal_id, agg_preserved,
4333 type_preserved);
4334 break;
4338 count = streamer_read_uhwi (ib);
4339 vec_alloc (jump_func->agg.items, count);
4340 if (count)
4342 struct bitpack_d bp = streamer_read_bitpack (ib);
4343 jump_func->agg.by_ref = bp_unpack_value (&bp, 1);
4345 for (i = 0; i < count; i++)
4347 struct ipa_agg_jf_item item;
4348 item.offset = streamer_read_uhwi (ib);
4349 item.value = stream_read_tree (ib, data_in);
4350 jump_func->agg.items->quick_push (item);
4354 /* Stream out parts of cgraph_indirect_call_info corresponding to CS that are
4355 relevant to indirect inlining to OB. */
4357 static void
4358 ipa_write_indirect_edge_info (struct output_block *ob,
4359 struct cgraph_edge *cs)
4361 struct cgraph_indirect_call_info *ii = cs->indirect_info;
4362 struct bitpack_d bp;
4364 streamer_write_hwi (ob, ii->param_index);
4365 streamer_write_hwi (ob, ii->offset);
4366 bp = bitpack_create (ob->main_stream);
4367 bp_pack_value (&bp, ii->polymorphic, 1);
4368 bp_pack_value (&bp, ii->agg_contents, 1);
4369 bp_pack_value (&bp, ii->member_ptr, 1);
4370 bp_pack_value (&bp, ii->by_ref, 1);
4371 bp_pack_value (&bp, ii->maybe_in_construction, 1);
4372 bp_pack_value (&bp, ii->maybe_derived_type, 1);
4373 streamer_write_bitpack (&bp);
4375 if (ii->polymorphic)
4377 streamer_write_hwi (ob, ii->otr_token);
4378 stream_write_tree (ob, ii->otr_type, true);
4379 stream_write_tree (ob, ii->outer_type, true);
4383 /* Read in parts of cgraph_indirect_call_info corresponding to CS that are
4384 relevant to indirect inlining from IB. */
4386 static void
4387 ipa_read_indirect_edge_info (struct lto_input_block *ib,
4388 struct data_in *data_in ATTRIBUTE_UNUSED,
4389 struct cgraph_edge *cs)
4391 struct cgraph_indirect_call_info *ii = cs->indirect_info;
4392 struct bitpack_d bp;
4394 ii->param_index = (int) streamer_read_hwi (ib);
4395 ii->offset = (HOST_WIDE_INT) streamer_read_hwi (ib);
4396 bp = streamer_read_bitpack (ib);
4397 ii->polymorphic = bp_unpack_value (&bp, 1);
4398 ii->agg_contents = bp_unpack_value (&bp, 1);
4399 ii->member_ptr = bp_unpack_value (&bp, 1);
4400 ii->by_ref = bp_unpack_value (&bp, 1);
4401 ii->maybe_in_construction = bp_unpack_value (&bp, 1);
4402 ii->maybe_derived_type = bp_unpack_value (&bp, 1);
4403 if (ii->polymorphic)
4405 ii->otr_token = (HOST_WIDE_INT) streamer_read_hwi (ib);
4406 ii->otr_type = stream_read_tree (ib, data_in);
4407 ii->outer_type = stream_read_tree (ib, data_in);
4411 /* Stream out NODE info to OB. */
4413 static void
4414 ipa_write_node_info (struct output_block *ob, struct cgraph_node *node)
4416 int node_ref;
4417 lto_symtab_encoder_t encoder;
4418 struct ipa_node_params *info = IPA_NODE_REF (node);
4419 int j;
4420 struct cgraph_edge *e;
4421 struct bitpack_d bp;
4423 encoder = ob->decl_state->symtab_node_encoder;
4424 node_ref = lto_symtab_encoder_encode (encoder, node);
4425 streamer_write_uhwi (ob, node_ref);
4427 streamer_write_uhwi (ob, ipa_get_param_count (info));
4428 for (j = 0; j < ipa_get_param_count (info); j++)
4429 streamer_write_uhwi (ob, ipa_get_param_move_cost (info, j));
4430 bp = bitpack_create (ob->main_stream);
4431 gcc_assert (info->uses_analysis_done
4432 || ipa_get_param_count (info) == 0);
4433 gcc_assert (!info->node_enqueued);
4434 gcc_assert (!info->ipcp_orig_node);
4435 for (j = 0; j < ipa_get_param_count (info); j++)
4436 bp_pack_value (&bp, ipa_is_param_used (info, j), 1);
4437 streamer_write_bitpack (&bp);
4438 for (j = 0; j < ipa_get_param_count (info); j++)
4439 streamer_write_hwi (ob, ipa_get_controlled_uses (info, j));
4440 for (e = node->callees; e; e = e->next_callee)
4442 struct ipa_edge_args *args = IPA_EDGE_REF (e);
4444 streamer_write_uhwi (ob, ipa_get_cs_argument_count (args));
4445 for (j = 0; j < ipa_get_cs_argument_count (args); j++)
4446 ipa_write_jump_function (ob, ipa_get_ith_jump_func (args, j));
4448 for (e = node->indirect_calls; e; e = e->next_callee)
4450 struct ipa_edge_args *args = IPA_EDGE_REF (e);
4452 streamer_write_uhwi (ob, ipa_get_cs_argument_count (args));
4453 for (j = 0; j < ipa_get_cs_argument_count (args); j++)
4454 ipa_write_jump_function (ob, ipa_get_ith_jump_func (args, j));
4455 ipa_write_indirect_edge_info (ob, e);
4459 /* Stream in NODE info from IB. */
4461 static void
4462 ipa_read_node_info (struct lto_input_block *ib, struct cgraph_node *node,
4463 struct data_in *data_in)
4465 struct ipa_node_params *info = IPA_NODE_REF (node);
4466 int k;
4467 struct cgraph_edge *e;
4468 struct bitpack_d bp;
4470 ipa_alloc_node_params (node, streamer_read_uhwi (ib));
4472 for (k = 0; k < ipa_get_param_count (info); k++)
4473 info->descriptors[k].move_cost = streamer_read_uhwi (ib);
4475 bp = streamer_read_bitpack (ib);
4476 if (ipa_get_param_count (info) != 0)
4477 info->uses_analysis_done = true;
4478 info->node_enqueued = false;
4479 for (k = 0; k < ipa_get_param_count (info); k++)
4480 ipa_set_param_used (info, k, bp_unpack_value (&bp, 1));
4481 for (k = 0; k < ipa_get_param_count (info); k++)
4482 ipa_set_controlled_uses (info, k, streamer_read_hwi (ib));
4483 for (e = node->callees; e; e = e->next_callee)
4485 struct ipa_edge_args *args = IPA_EDGE_REF (e);
4486 int count = streamer_read_uhwi (ib);
4488 if (!count)
4489 continue;
4490 vec_safe_grow_cleared (args->jump_functions, count);
4492 for (k = 0; k < ipa_get_cs_argument_count (args); k++)
4493 ipa_read_jump_function (ib, ipa_get_ith_jump_func (args, k), e,
4494 data_in);
4496 for (e = node->indirect_calls; e; e = e->next_callee)
4498 struct ipa_edge_args *args = IPA_EDGE_REF (e);
4499 int count = streamer_read_uhwi (ib);
4501 if (count)
4503 vec_safe_grow_cleared (args->jump_functions, count);
4504 for (k = 0; k < ipa_get_cs_argument_count (args); k++)
4505 ipa_read_jump_function (ib, ipa_get_ith_jump_func (args, k), e,
4506 data_in);
4508 ipa_read_indirect_edge_info (ib, data_in, e);
4512 /* Write jump functions for nodes in SET. */
4514 void
4515 ipa_prop_write_jump_functions (void)
4517 struct cgraph_node *node;
4518 struct output_block *ob;
4519 unsigned int count = 0;
4520 lto_symtab_encoder_iterator lsei;
4521 lto_symtab_encoder_t encoder;
4524 if (!ipa_node_params_vector.exists ())
4525 return;
4527 ob = create_output_block (LTO_section_jump_functions);
4528 encoder = ob->decl_state->symtab_node_encoder;
4529 ob->cgraph_node = NULL;
4530 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
4531 lsei_next_function_in_partition (&lsei))
4533 node = lsei_cgraph_node (lsei);
4534 if (cgraph_function_with_gimple_body_p (node)
4535 && IPA_NODE_REF (node) != NULL)
4536 count++;
4539 streamer_write_uhwi (ob, count);
4541 /* Process all of the functions. */
4542 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
4543 lsei_next_function_in_partition (&lsei))
4545 node = lsei_cgraph_node (lsei);
4546 if (cgraph_function_with_gimple_body_p (node)
4547 && IPA_NODE_REF (node) != NULL)
4548 ipa_write_node_info (ob, node);
4550 streamer_write_char_stream (ob->main_stream, 0);
4551 produce_asm (ob, NULL);
4552 destroy_output_block (ob);
4555 /* Read section in file FILE_DATA of length LEN with data DATA. */
4557 static void
4558 ipa_prop_read_section (struct lto_file_decl_data *file_data, const char *data,
4559 size_t len)
4561 const struct lto_function_header *header =
4562 (const struct lto_function_header *) data;
4563 const int cfg_offset = sizeof (struct lto_function_header);
4564 const int main_offset = cfg_offset + header->cfg_size;
4565 const int string_offset = main_offset + header->main_size;
4566 struct data_in *data_in;
4567 struct lto_input_block ib_main;
4568 unsigned int i;
4569 unsigned int count;
4571 LTO_INIT_INPUT_BLOCK (ib_main, (const char *) data + main_offset, 0,
4572 header->main_size);
4574 data_in =
4575 lto_data_in_create (file_data, (const char *) data + string_offset,
4576 header->string_size, vNULL);
4577 count = streamer_read_uhwi (&ib_main);
4579 for (i = 0; i < count; i++)
4581 unsigned int index;
4582 struct cgraph_node *node;
4583 lto_symtab_encoder_t encoder;
4585 index = streamer_read_uhwi (&ib_main);
4586 encoder = file_data->symtab_node_encoder;
4587 node = cgraph (lto_symtab_encoder_deref (encoder, index));
4588 gcc_assert (node->definition);
4589 ipa_read_node_info (&ib_main, node, data_in);
4591 lto_free_section_data (file_data, LTO_section_jump_functions, NULL, data,
4592 len);
4593 lto_data_in_delete (data_in);
4596 /* Read ipcp jump functions. */
4598 void
4599 ipa_prop_read_jump_functions (void)
4601 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
4602 struct lto_file_decl_data *file_data;
4603 unsigned int j = 0;
4605 ipa_check_create_node_params ();
4606 ipa_check_create_edge_args ();
4607 ipa_register_cgraph_hooks ();
4609 while ((file_data = file_data_vec[j++]))
4611 size_t len;
4612 const char *data = lto_get_section_data (file_data, LTO_section_jump_functions, NULL, &len);
4614 if (data)
4615 ipa_prop_read_section (file_data, data, len);
4619 /* After merging units, we can get mismatch in argument counts.
4620 Also decl merging might've rendered parameter lists obsolete.
4621 Also compute called_with_variable_arg info. */
4623 void
4624 ipa_update_after_lto_read (void)
4626 ipa_check_create_node_params ();
4627 ipa_check_create_edge_args ();
4630 void
4631 write_agg_replacement_chain (struct output_block *ob, struct cgraph_node *node)
4633 int node_ref;
4634 unsigned int count = 0;
4635 lto_symtab_encoder_t encoder;
4636 struct ipa_agg_replacement_value *aggvals, *av;
4638 aggvals = ipa_get_agg_replacements_for_node (node);
4639 encoder = ob->decl_state->symtab_node_encoder;
4640 node_ref = lto_symtab_encoder_encode (encoder, node);
4641 streamer_write_uhwi (ob, node_ref);
4643 for (av = aggvals; av; av = av->next)
4644 count++;
4645 streamer_write_uhwi (ob, count);
4647 for (av = aggvals; av; av = av->next)
4649 struct bitpack_d bp;
4651 streamer_write_uhwi (ob, av->offset);
4652 streamer_write_uhwi (ob, av->index);
4653 stream_write_tree (ob, av->value, true);
4655 bp = bitpack_create (ob->main_stream);
4656 bp_pack_value (&bp, av->by_ref, 1);
4657 streamer_write_bitpack (&bp);
4661 /* Stream in the aggregate value replacement chain for NODE from IB. */
4663 static void
4664 read_agg_replacement_chain (struct lto_input_block *ib,
4665 struct cgraph_node *node,
4666 struct data_in *data_in)
4668 struct ipa_agg_replacement_value *aggvals = NULL;
4669 unsigned int count, i;
4671 count = streamer_read_uhwi (ib);
4672 for (i = 0; i <count; i++)
4674 struct ipa_agg_replacement_value *av;
4675 struct bitpack_d bp;
4677 av = ggc_alloc_ipa_agg_replacement_value ();
4678 av->offset = streamer_read_uhwi (ib);
4679 av->index = streamer_read_uhwi (ib);
4680 av->value = stream_read_tree (ib, data_in);
4681 bp = streamer_read_bitpack (ib);
4682 av->by_ref = bp_unpack_value (&bp, 1);
4683 av->next = aggvals;
4684 aggvals = av;
4686 ipa_set_node_agg_value_chain (node, aggvals);
4689 /* Write all aggregate replacement for nodes in set. */
4691 void
4692 ipa_prop_write_all_agg_replacement (void)
4694 struct cgraph_node *node;
4695 struct output_block *ob;
4696 unsigned int count = 0;
4697 lto_symtab_encoder_iterator lsei;
4698 lto_symtab_encoder_t encoder;
4700 if (!ipa_node_agg_replacements)
4701 return;
4703 ob = create_output_block (LTO_section_ipcp_transform);
4704 encoder = ob->decl_state->symtab_node_encoder;
4705 ob->cgraph_node = NULL;
4706 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
4707 lsei_next_function_in_partition (&lsei))
4709 node = lsei_cgraph_node (lsei);
4710 if (cgraph_function_with_gimple_body_p (node)
4711 && ipa_get_agg_replacements_for_node (node) != NULL)
4712 count++;
4715 streamer_write_uhwi (ob, count);
4717 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
4718 lsei_next_function_in_partition (&lsei))
4720 node = lsei_cgraph_node (lsei);
4721 if (cgraph_function_with_gimple_body_p (node)
4722 && ipa_get_agg_replacements_for_node (node) != NULL)
4723 write_agg_replacement_chain (ob, node);
4725 streamer_write_char_stream (ob->main_stream, 0);
4726 produce_asm (ob, NULL);
4727 destroy_output_block (ob);
4730 /* Read replacements section in file FILE_DATA of length LEN with data
4731 DATA. */
4733 static void
4734 read_replacements_section (struct lto_file_decl_data *file_data,
4735 const char *data,
4736 size_t len)
4738 const struct lto_function_header *header =
4739 (const struct lto_function_header *) data;
4740 const int cfg_offset = sizeof (struct lto_function_header);
4741 const int main_offset = cfg_offset + header->cfg_size;
4742 const int string_offset = main_offset + header->main_size;
4743 struct data_in *data_in;
4744 struct lto_input_block ib_main;
4745 unsigned int i;
4746 unsigned int count;
4748 LTO_INIT_INPUT_BLOCK (ib_main, (const char *) data + main_offset, 0,
4749 header->main_size);
4751 data_in = lto_data_in_create (file_data, (const char *) data + string_offset,
4752 header->string_size, vNULL);
4753 count = streamer_read_uhwi (&ib_main);
4755 for (i = 0; i < count; i++)
4757 unsigned int index;
4758 struct cgraph_node *node;
4759 lto_symtab_encoder_t encoder;
4761 index = streamer_read_uhwi (&ib_main);
4762 encoder = file_data->symtab_node_encoder;
4763 node = cgraph (lto_symtab_encoder_deref (encoder, index));
4764 gcc_assert (node->definition);
4765 read_agg_replacement_chain (&ib_main, node, data_in);
4767 lto_free_section_data (file_data, LTO_section_jump_functions, NULL, data,
4768 len);
4769 lto_data_in_delete (data_in);
4772 /* Read IPA-CP aggregate replacements. */
4774 void
4775 ipa_prop_read_all_agg_replacement (void)
4777 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
4778 struct lto_file_decl_data *file_data;
4779 unsigned int j = 0;
4781 while ((file_data = file_data_vec[j++]))
4783 size_t len;
4784 const char *data = lto_get_section_data (file_data,
4785 LTO_section_ipcp_transform,
4786 NULL, &len);
4787 if (data)
4788 read_replacements_section (file_data, data, len);
4792 /* Adjust the aggregate replacements in AGGVAL to reflect parameters skipped in
4793 NODE. */
4795 static void
4796 adjust_agg_replacement_values (struct cgraph_node *node,
4797 struct ipa_agg_replacement_value *aggval)
4799 struct ipa_agg_replacement_value *v;
4800 int i, c = 0, d = 0, *adj;
4802 if (!node->clone.combined_args_to_skip)
4803 return;
4805 for (v = aggval; v; v = v->next)
4807 gcc_assert (v->index >= 0);
4808 if (c < v->index)
4809 c = v->index;
4811 c++;
4813 adj = XALLOCAVEC (int, c);
4814 for (i = 0; i < c; i++)
4815 if (bitmap_bit_p (node->clone.combined_args_to_skip, i))
4817 adj[i] = -1;
4818 d++;
4820 else
4821 adj[i] = i - d;
4823 for (v = aggval; v; v = v->next)
4824 v->index = adj[v->index];
4828 /* Function body transformation phase. */
4830 unsigned int
4831 ipcp_transform_function (struct cgraph_node *node)
4833 vec<ipa_param_descriptor> descriptors = vNULL;
4834 struct param_analysis_info *parms_ainfo;
4835 struct ipa_agg_replacement_value *aggval;
4836 gimple_stmt_iterator gsi;
4837 basic_block bb;
4838 int param_count;
4839 bool cfg_changed = false, something_changed = false;
4841 gcc_checking_assert (cfun);
4842 gcc_checking_assert (current_function_decl);
4844 if (dump_file)
4845 fprintf (dump_file, "Modification phase of node %s/%i\n",
4846 node->name (), node->order);
4848 aggval = ipa_get_agg_replacements_for_node (node);
4849 if (!aggval)
4850 return 0;
4851 param_count = count_formal_params (node->decl);
4852 if (param_count == 0)
4853 return 0;
4854 adjust_agg_replacement_values (node, aggval);
4855 if (dump_file)
4856 ipa_dump_agg_replacement_values (dump_file, aggval);
4857 parms_ainfo = XALLOCAVEC (struct param_analysis_info, param_count);
4858 memset (parms_ainfo, 0, sizeof (struct param_analysis_info) * param_count);
4859 descriptors.safe_grow_cleared (param_count);
4860 ipa_populate_param_decls (node, descriptors);
4862 FOR_EACH_BB_FN (bb, cfun)
4863 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4865 struct ipa_agg_replacement_value *v;
4866 gimple stmt = gsi_stmt (gsi);
4867 tree rhs, val, t;
4868 HOST_WIDE_INT offset, size;
4869 int index;
4870 bool by_ref, vce;
4872 if (!gimple_assign_load_p (stmt))
4873 continue;
4874 rhs = gimple_assign_rhs1 (stmt);
4875 if (!is_gimple_reg_type (TREE_TYPE (rhs)))
4876 continue;
4878 vce = false;
4879 t = rhs;
4880 while (handled_component_p (t))
4882 /* V_C_E can do things like convert an array of integers to one
4883 bigger integer and similar things we do not handle below. */
4884 if (TREE_CODE (rhs) == VIEW_CONVERT_EXPR)
4886 vce = true;
4887 break;
4889 t = TREE_OPERAND (t, 0);
4891 if (vce)
4892 continue;
4894 if (!ipa_load_from_parm_agg_1 (descriptors, parms_ainfo, stmt,
4895 rhs, &index, &offset, &size, &by_ref))
4896 continue;
4897 for (v = aggval; v; v = v->next)
4898 if (v->index == index
4899 && v->offset == offset)
4900 break;
4901 if (!v
4902 || v->by_ref != by_ref
4903 || tree_to_shwi (TYPE_SIZE (TREE_TYPE (v->value))) != size)
4904 continue;
4906 gcc_checking_assert (is_gimple_ip_invariant (v->value));
4907 if (!useless_type_conversion_p (TREE_TYPE (rhs), TREE_TYPE (v->value)))
4909 if (fold_convertible_p (TREE_TYPE (rhs), v->value))
4910 val = fold_build1 (NOP_EXPR, TREE_TYPE (rhs), v->value);
4911 else if (TYPE_SIZE (TREE_TYPE (rhs))
4912 == TYPE_SIZE (TREE_TYPE (v->value)))
4913 val = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (rhs), v->value);
4914 else
4916 if (dump_file)
4918 fprintf (dump_file, " const ");
4919 print_generic_expr (dump_file, v->value, 0);
4920 fprintf (dump_file, " can't be converted to type of ");
4921 print_generic_expr (dump_file, rhs, 0);
4922 fprintf (dump_file, "\n");
4924 continue;
4927 else
4928 val = v->value;
4930 if (dump_file && (dump_flags & TDF_DETAILS))
4932 fprintf (dump_file, "Modifying stmt:\n ");
4933 print_gimple_stmt (dump_file, stmt, 0, 0);
4935 gimple_assign_set_rhs_from_tree (&gsi, val);
4936 update_stmt (stmt);
4938 if (dump_file && (dump_flags & TDF_DETAILS))
4940 fprintf (dump_file, "into:\n ");
4941 print_gimple_stmt (dump_file, stmt, 0, 0);
4942 fprintf (dump_file, "\n");
4945 something_changed = true;
4946 if (maybe_clean_eh_stmt (stmt)
4947 && gimple_purge_dead_eh_edges (gimple_bb (stmt)))
4948 cfg_changed = true;
4951 (*ipa_node_agg_replacements)[node->uid] = NULL;
4952 free_parms_ainfo (parms_ainfo, param_count);
4953 descriptors.release ();
4955 if (!something_changed)
4956 return 0;
4957 else if (cfg_changed)
4958 return TODO_update_ssa_only_virtuals | TODO_cleanup_cfg;
4959 else
4960 return TODO_update_ssa_only_virtuals;