]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ipa-prop.c
Correctly fill up cgraph_node::local.versionable flag.
[thirdparty/gcc.git] / gcc / ipa-prop.c
1 /* Interprocedural analyses.
2 Copyright (C) 2005-2015 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>. */
19
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "alias.h"
24 #include "backend.h"
25 #include "tree.h"
26 #include "gimple.h"
27 #include "rtl.h"
28 #include "ssa.h"
29 #include "options.h"
30 #include "fold-const.h"
31 #include "internal-fn.h"
32 #include "gimple-fold.h"
33 #include "tree-eh.h"
34 #include "flags.h"
35 #include "insn-config.h"
36 #include "expmed.h"
37 #include "dojump.h"
38 #include "explow.h"
39 #include "calls.h"
40 #include "emit-rtl.h"
41 #include "varasm.h"
42 #include "stmt.h"
43 #include "expr.h"
44 #include "stor-layout.h"
45 #include "print-tree.h"
46 #include "gimplify.h"
47 #include "gimple-iterator.h"
48 #include "gimplify-me.h"
49 #include "gimple-walk.h"
50 #include "langhooks.h"
51 #include "target.h"
52 #include "cgraph.h"
53 #include "alloc-pool.h"
54 #include "symbol-summary.h"
55 #include "ipa-prop.h"
56 #include "tree-cfg.h"
57 #include "tree-into-ssa.h"
58 #include "tree-dfa.h"
59 #include "tree-pass.h"
60 #include "tree-inline.h"
61 #include "ipa-inline.h"
62 #include "diagnostic.h"
63 #include "gimple-pretty-print.h"
64 #include "tree-streamer.h"
65 #include "params.h"
66 #include "ipa-utils.h"
67 #include "dbgcnt.h"
68 #include "domwalk.h"
69 #include "builtins.h"
70
71 /* Function summary where the parameter infos are actually stored. */
72 ipa_node_params_t *ipa_node_params_sum = NULL;
73 /* Vector of IPA-CP transformation data for each clone. */
74 vec<ipcp_transformation_summary, va_gc> *ipcp_transformations;
75 /* Vector where the parameter infos are actually stored. */
76 vec<ipa_edge_args, va_gc> *ipa_edge_args_vector;
77
78 /* Holders of ipa cgraph hooks: */
79 static struct cgraph_edge_hook_list *edge_removal_hook_holder;
80 static struct cgraph_2edge_hook_list *edge_duplication_hook_holder;
81 static struct cgraph_node_hook_list *function_insertion_hook_holder;
82
83 /* Description of a reference to an IPA constant. */
84 struct ipa_cst_ref_desc
85 {
86 /* Edge that corresponds to the statement which took the reference. */
87 struct cgraph_edge *cs;
88 /* Linked list of duplicates created when call graph edges are cloned. */
89 struct ipa_cst_ref_desc *next_duplicate;
90 /* Number of references in IPA structures, IPA_UNDESCRIBED_USE if the value
91 if out of control. */
92 int refcount;
93 };
94
95 /* Allocation pool for reference descriptions. */
96
97 static object_allocator<ipa_cst_ref_desc> ipa_refdesc_pool
98 ("IPA-PROP ref descriptions");
99
100 /* Return true if DECL_FUNCTION_SPECIFIC_OPTIMIZATION of the decl associated
101 with NODE should prevent us from analyzing it for the purposes of IPA-CP. */
102
103 static bool
104 ipa_func_spec_opts_forbid_analysis_p (struct cgraph_node *node)
105 {
106 tree fs_opts = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (node->decl);
107
108 if (!fs_opts)
109 return false;
110 return !opt_for_fn (node->decl, optimize) || !opt_for_fn (node->decl, flag_ipa_cp);
111 }
112
113 /* Return index of the formal whose tree is PTREE in function which corresponds
114 to INFO. */
115
116 static int
117 ipa_get_param_decl_index_1 (vec<ipa_param_descriptor> descriptors, tree ptree)
118 {
119 int i, count;
120
121 count = descriptors.length ();
122 for (i = 0; i < count; i++)
123 if (descriptors[i].decl == ptree)
124 return i;
125
126 return -1;
127 }
128
129 /* Return index of the formal whose tree is PTREE in function which corresponds
130 to INFO. */
131
132 int
133 ipa_get_param_decl_index (struct ipa_node_params *info, tree ptree)
134 {
135 return ipa_get_param_decl_index_1 (info->descriptors, ptree);
136 }
137
138 /* Populate the param_decl field in parameter DESCRIPTORS that correspond to
139 NODE. */
140
141 static void
142 ipa_populate_param_decls (struct cgraph_node *node,
143 vec<ipa_param_descriptor> &descriptors)
144 {
145 tree fndecl;
146 tree fnargs;
147 tree parm;
148 int param_num;
149
150 fndecl = node->decl;
151 gcc_assert (gimple_has_body_p (fndecl));
152 fnargs = DECL_ARGUMENTS (fndecl);
153 param_num = 0;
154 for (parm = fnargs; parm; parm = DECL_CHAIN (parm))
155 {
156 descriptors[param_num].decl = parm;
157 descriptors[param_num].move_cost = estimate_move_cost (TREE_TYPE (parm),
158 true);
159 param_num++;
160 }
161 }
162
163 /* Return how many formal parameters FNDECL has. */
164
165 int
166 count_formal_params (tree fndecl)
167 {
168 tree parm;
169 int count = 0;
170 gcc_assert (gimple_has_body_p (fndecl));
171
172 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
173 count++;
174
175 return count;
176 }
177
178 /* Return the declaration of Ith formal parameter of the function corresponding
179 to INFO. Note there is no setter function as this array is built just once
180 using ipa_initialize_node_params. */
181
182 void
183 ipa_dump_param (FILE *file, struct ipa_node_params *info, int i)
184 {
185 fprintf (file, "param #%i", i);
186 if (info->descriptors[i].decl)
187 {
188 fprintf (file, " ");
189 print_generic_expr (file, info->descriptors[i].decl, 0);
190 }
191 }
192
193 /* Initialize the ipa_node_params structure associated with NODE
194 to hold PARAM_COUNT parameters. */
195
196 void
197 ipa_alloc_node_params (struct cgraph_node *node, int param_count)
198 {
199 struct ipa_node_params *info = IPA_NODE_REF (node);
200
201 if (!info->descriptors.exists () && param_count)
202 info->descriptors.safe_grow_cleared (param_count);
203 }
204
205 /* Initialize the ipa_node_params structure associated with NODE by counting
206 the function parameters, creating the descriptors and populating their
207 param_decls. */
208
209 void
210 ipa_initialize_node_params (struct cgraph_node *node)
211 {
212 struct ipa_node_params *info = IPA_NODE_REF (node);
213
214 if (!info->descriptors.exists ())
215 {
216 ipa_alloc_node_params (node, count_formal_params (node->decl));
217 ipa_populate_param_decls (node, info->descriptors);
218 }
219 }
220
221 /* Print the jump functions associated with call graph edge CS to file F. */
222
223 static void
224 ipa_print_node_jump_functions_for_edge (FILE *f, struct cgraph_edge *cs)
225 {
226 int i, count;
227
228 count = ipa_get_cs_argument_count (IPA_EDGE_REF (cs));
229 for (i = 0; i < count; i++)
230 {
231 struct ipa_jump_func *jump_func;
232 enum jump_func_type type;
233
234 jump_func = ipa_get_ith_jump_func (IPA_EDGE_REF (cs), i);
235 type = jump_func->type;
236
237 fprintf (f, " param %d: ", i);
238 if (type == IPA_JF_UNKNOWN)
239 fprintf (f, "UNKNOWN\n");
240 else if (type == IPA_JF_CONST)
241 {
242 tree val = jump_func->value.constant.value;
243 fprintf (f, "CONST: ");
244 print_generic_expr (f, val, 0);
245 if (TREE_CODE (val) == ADDR_EXPR
246 && TREE_CODE (TREE_OPERAND (val, 0)) == CONST_DECL)
247 {
248 fprintf (f, " -> ");
249 print_generic_expr (f, DECL_INITIAL (TREE_OPERAND (val, 0)),
250 0);
251 }
252 fprintf (f, "\n");
253 }
254 else if (type == IPA_JF_PASS_THROUGH)
255 {
256 fprintf (f, "PASS THROUGH: ");
257 fprintf (f, "%d, op %s",
258 jump_func->value.pass_through.formal_id,
259 get_tree_code_name(jump_func->value.pass_through.operation));
260 if (jump_func->value.pass_through.operation != NOP_EXPR)
261 {
262 fprintf (f, " ");
263 print_generic_expr (f,
264 jump_func->value.pass_through.operand, 0);
265 }
266 if (jump_func->value.pass_through.agg_preserved)
267 fprintf (f, ", agg_preserved");
268 fprintf (f, "\n");
269 }
270 else if (type == IPA_JF_ANCESTOR)
271 {
272 fprintf (f, "ANCESTOR: ");
273 fprintf (f, "%d, offset " HOST_WIDE_INT_PRINT_DEC,
274 jump_func->value.ancestor.formal_id,
275 jump_func->value.ancestor.offset);
276 if (jump_func->value.ancestor.agg_preserved)
277 fprintf (f, ", agg_preserved");
278 fprintf (f, "\n");
279 }
280
281 if (jump_func->agg.items)
282 {
283 struct ipa_agg_jf_item *item;
284 int j;
285
286 fprintf (f, " Aggregate passed by %s:\n",
287 jump_func->agg.by_ref ? "reference" : "value");
288 FOR_EACH_VEC_SAFE_ELT (jump_func->agg.items, j, item)
289 {
290 fprintf (f, " offset: " HOST_WIDE_INT_PRINT_DEC ", ",
291 item->offset);
292 if (TYPE_P (item->value))
293 fprintf (f, "clobber of " HOST_WIDE_INT_PRINT_DEC " bits",
294 tree_to_uhwi (TYPE_SIZE (item->value)));
295 else
296 {
297 fprintf (f, "cst: ");
298 print_generic_expr (f, item->value, 0);
299 }
300 fprintf (f, "\n");
301 }
302 }
303
304 struct ipa_polymorphic_call_context *ctx
305 = ipa_get_ith_polymorhic_call_context (IPA_EDGE_REF (cs), i);
306 if (ctx && !ctx->useless_p ())
307 {
308 fprintf (f, " Context: ");
309 ctx->dump (dump_file);
310 }
311
312 if (jump_func->alignment.known)
313 {
314 fprintf (f, " Alignment: %u, misalignment: %u\n",
315 jump_func->alignment.align,
316 jump_func->alignment.misalign);
317 }
318 else
319 fprintf (f, " Unknown alignment\n");
320 }
321 }
322
323
324 /* Print the jump functions of all arguments on all call graph edges going from
325 NODE to file F. */
326
327 void
328 ipa_print_node_jump_functions (FILE *f, struct cgraph_node *node)
329 {
330 struct cgraph_edge *cs;
331
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)
335 {
336 if (!ipa_edge_args_info_available_for_edge_p (cs))
337 continue;
338
339 fprintf (f, " callsite %s/%i -> %s/%i : \n",
340 xstrdup_for_dump (node->name ()), node->order,
341 xstrdup_for_dump (cs->callee->name ()),
342 cs->callee->order);
343 ipa_print_node_jump_functions_for_edge (f, cs);
344 }
345
346 for (cs = node->indirect_calls; cs; cs = cs->next_callee)
347 {
348 struct cgraph_indirect_call_info *ii;
349 if (!ipa_edge_args_info_available_for_edge_p (cs))
350 continue;
351
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);
364
365 if (cs->call_stmt)
366 {
367 fprintf (f, ", for stmt ");
368 print_gimple_stmt (f, cs->call_stmt, 0, TDF_SLIM);
369 }
370 else
371 fprintf (f, "\n");
372 if (ii->polymorphic)
373 ii->context.dump (f);
374 ipa_print_node_jump_functions_for_edge (f, cs);
375 }
376 }
377
378 /* Print ipa_jump_func data structures of all nodes in the call graph to F. */
379
380 void
381 ipa_print_all_jump_functions (FILE *f)
382 {
383 struct cgraph_node *node;
384
385 fprintf (f, "\nJump functions:\n");
386 FOR_EACH_FUNCTION (node)
387 {
388 ipa_print_node_jump_functions (f, node);
389 }
390 }
391
392 /* Set jfunc to be a know-really nothing jump function. */
393
394 static void
395 ipa_set_jf_unknown (struct ipa_jump_func *jfunc)
396 {
397 jfunc->type = IPA_JF_UNKNOWN;
398 jfunc->alignment.known = false;
399 }
400
401 /* Set JFUNC to be a copy of another jmp (to be used by jump function
402 combination code). The two functions will share their rdesc. */
403
404 static void
405 ipa_set_jf_cst_copy (struct ipa_jump_func *dst,
406 struct ipa_jump_func *src)
407
408 {
409 gcc_checking_assert (src->type == IPA_JF_CONST);
410 dst->type = IPA_JF_CONST;
411 dst->value.constant = src->value.constant;
412 }
413
414 /* Set JFUNC to be a constant jmp function. */
415
416 static void
417 ipa_set_jf_constant (struct ipa_jump_func *jfunc, tree constant,
418 struct cgraph_edge *cs)
419 {
420 constant = unshare_expr (constant);
421 if (constant && EXPR_P (constant))
422 SET_EXPR_LOCATION (constant, UNKNOWN_LOCATION);
423 jfunc->type = IPA_JF_CONST;
424 jfunc->value.constant.value = unshare_expr_without_location (constant);
425
426 if (TREE_CODE (constant) == ADDR_EXPR
427 && TREE_CODE (TREE_OPERAND (constant, 0)) == FUNCTION_DECL)
428 {
429 struct ipa_cst_ref_desc *rdesc;
430
431 rdesc = ipa_refdesc_pool.allocate ();
432 rdesc->cs = cs;
433 rdesc->next_duplicate = NULL;
434 rdesc->refcount = 1;
435 jfunc->value.constant.rdesc = rdesc;
436 }
437 else
438 jfunc->value.constant.rdesc = NULL;
439 }
440
441 /* Set JFUNC to be a simple pass-through jump function. */
442 static void
443 ipa_set_jf_simple_pass_through (struct ipa_jump_func *jfunc, int formal_id,
444 bool agg_preserved)
445 {
446 jfunc->type = IPA_JF_PASS_THROUGH;
447 jfunc->value.pass_through.operand = NULL_TREE;
448 jfunc->value.pass_through.formal_id = formal_id;
449 jfunc->value.pass_through.operation = NOP_EXPR;
450 jfunc->value.pass_through.agg_preserved = agg_preserved;
451 }
452
453 /* Set JFUNC to be an arithmetic pass through jump function. */
454
455 static void
456 ipa_set_jf_arith_pass_through (struct ipa_jump_func *jfunc, int formal_id,
457 tree operand, enum tree_code operation)
458 {
459 jfunc->type = IPA_JF_PASS_THROUGH;
460 jfunc->value.pass_through.operand = unshare_expr_without_location (operand);
461 jfunc->value.pass_through.formal_id = formal_id;
462 jfunc->value.pass_through.operation = operation;
463 jfunc->value.pass_through.agg_preserved = false;
464 }
465
466 /* Set JFUNC to be an ancestor jump function. */
467
468 static void
469 ipa_set_ancestor_jf (struct ipa_jump_func *jfunc, HOST_WIDE_INT offset,
470 int formal_id, bool agg_preserved)
471 {
472 jfunc->type = IPA_JF_ANCESTOR;
473 jfunc->value.ancestor.formal_id = formal_id;
474 jfunc->value.ancestor.offset = offset;
475 jfunc->value.ancestor.agg_preserved = agg_preserved;
476 }
477
478 /* Get IPA BB information about the given BB. FBI is the context of analyzis
479 of this function body. */
480
481 static struct ipa_bb_info *
482 ipa_get_bb_info (struct ipa_func_body_info *fbi, basic_block bb)
483 {
484 gcc_checking_assert (fbi);
485 return &fbi->bb_infos[bb->index];
486 }
487
488 /* Structure to be passed in between detect_type_change and
489 check_stmt_for_type_change. */
490
491 struct prop_type_change_info
492 {
493 /* Offset into the object where there is the virtual method pointer we are
494 looking for. */
495 HOST_WIDE_INT offset;
496 /* The declaration or SSA_NAME pointer of the base that we are checking for
497 type change. */
498 tree object;
499 /* Set to true if dynamic type change has been detected. */
500 bool type_maybe_changed;
501 };
502
503 /* Return true if STMT can modify a virtual method table pointer.
504
505 This function makes special assumptions about both constructors and
506 destructors which are all the functions that are allowed to alter the VMT
507 pointers. It assumes that destructors begin with assignment into all VMT
508 pointers and that constructors essentially look in the following way:
509
510 1) The very first thing they do is that they call constructors of ancestor
511 sub-objects that have them.
512
513 2) Then VMT pointers of this and all its ancestors is set to new values
514 corresponding to the type corresponding to the constructor.
515
516 3) Only afterwards, other stuff such as constructor of member sub-objects
517 and the code written by the user is run. Only this may include calling
518 virtual functions, directly or indirectly.
519
520 There is no way to call a constructor of an ancestor sub-object in any
521 other way.
522
523 This means that we do not have to care whether constructors get the correct
524 type information because they will always change it (in fact, if we define
525 the type to be given by the VMT pointer, it is undefined).
526
527 The most important fact to derive from the above is that if, for some
528 statement in the section 3, we try to detect whether the dynamic type has
529 changed, we can safely ignore all calls as we examine the function body
530 backwards until we reach statements in section 2 because these calls cannot
531 be ancestor constructors or destructors (if the input is not bogus) and so
532 do not change the dynamic type (this holds true only for automatically
533 allocated objects but at the moment we devirtualize only these). We then
534 must detect that statements in section 2 change the dynamic type and can try
535 to derive the new type. That is enough and we can stop, we will never see
536 the calls into constructors of sub-objects in this code. Therefore we can
537 safely ignore all call statements that we traverse.
538 */
539
540 static bool
541 stmt_may_be_vtbl_ptr_store (gimple *stmt)
542 {
543 if (is_gimple_call (stmt))
544 return false;
545 if (gimple_clobber_p (stmt))
546 return false;
547 else if (is_gimple_assign (stmt))
548 {
549 tree lhs = gimple_assign_lhs (stmt);
550
551 if (!AGGREGATE_TYPE_P (TREE_TYPE (lhs)))
552 {
553 if (flag_strict_aliasing
554 && !POINTER_TYPE_P (TREE_TYPE (lhs)))
555 return false;
556
557 if (TREE_CODE (lhs) == COMPONENT_REF
558 && !DECL_VIRTUAL_P (TREE_OPERAND (lhs, 1)))
559 return false;
560 /* In the future we might want to use get_base_ref_and_offset to find
561 if there is a field corresponding to the offset and if so, proceed
562 almost like if it was a component ref. */
563 }
564 }
565 return true;
566 }
567
568 /* Callback of walk_aliased_vdefs and a helper function for detect_type_change
569 to check whether a particular statement may modify the virtual table
570 pointerIt stores its result into DATA, which points to a
571 prop_type_change_info structure. */
572
573 static bool
574 check_stmt_for_type_change (ao_ref *ao ATTRIBUTE_UNUSED, tree vdef, void *data)
575 {
576 gimple *stmt = SSA_NAME_DEF_STMT (vdef);
577 struct prop_type_change_info *tci = (struct prop_type_change_info *) data;
578
579 if (stmt_may_be_vtbl_ptr_store (stmt))
580 {
581 tci->type_maybe_changed = true;
582 return true;
583 }
584 else
585 return false;
586 }
587
588 /* See if ARG is PARAM_DECl describing instance passed by pointer
589 or reference in FUNCTION. Return false if the dynamic type may change
590 in between beggining of the function until CALL is invoked.
591
592 Generally functions are not allowed to change type of such instances,
593 but they call destructors. We assume that methods can not destroy the THIS
594 pointer. Also as a special cases, constructor and destructors may change
595 type of the THIS pointer. */
596
597 static bool
598 param_type_may_change_p (tree function, tree arg, gimple *call)
599 {
600 /* Pure functions can not do any changes on the dynamic type;
601 that require writting to memory. */
602 if (flags_from_decl_or_type (function) & (ECF_PURE | ECF_CONST))
603 return false;
604 /* We need to check if we are within inlined consturctor
605 or destructor (ideally we would have way to check that the
606 inline cdtor is actually working on ARG, but we don't have
607 easy tie on this, so punt on all non-pure cdtors.
608 We may also record the types of cdtors and once we know type
609 of the instance match them.
610
611 Also code unification optimizations may merge calls from
612 different blocks making return values unreliable. So
613 do nothing during late optimization. */
614 if (DECL_STRUCT_FUNCTION (function)->after_inlining)
615 return true;
616 if (TREE_CODE (arg) == SSA_NAME
617 && SSA_NAME_IS_DEFAULT_DEF (arg)
618 && TREE_CODE (SSA_NAME_VAR (arg)) == PARM_DECL)
619 {
620 /* Normal (non-THIS) argument. */
621 if ((SSA_NAME_VAR (arg) != DECL_ARGUMENTS (function)
622 || TREE_CODE (TREE_TYPE (function)) != METHOD_TYPE)
623 /* THIS pointer of an method - here we want to watch constructors
624 and destructors as those definitely may change the dynamic
625 type. */
626 || (TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE
627 && !DECL_CXX_CONSTRUCTOR_P (function)
628 && !DECL_CXX_DESTRUCTOR_P (function)
629 && (SSA_NAME_VAR (arg) == DECL_ARGUMENTS (function))))
630 {
631 /* Walk the inline stack and watch out for ctors/dtors. */
632 for (tree block = gimple_block (call); block && TREE_CODE (block) == BLOCK;
633 block = BLOCK_SUPERCONTEXT (block))
634 if (inlined_polymorphic_ctor_dtor_block_p (block, false))
635 return true;
636 return false;
637 }
638 }
639 return true;
640 }
641
642 /* Detect whether the dynamic type of ARG of COMP_TYPE has changed (before
643 callsite CALL) by looking for assignments to its virtual table pointer. If
644 it is, return true and fill in the jump function JFUNC with relevant type
645 information or set it to unknown. ARG is the object itself (not a pointer
646 to it, unless dereferenced). BASE is the base of the memory access as
647 returned by get_ref_base_and_extent, as is the offset.
648
649 This is helper function for detect_type_change and detect_type_change_ssa
650 that does the heavy work which is usually unnecesary. */
651
652 static bool
653 detect_type_change_from_memory_writes (tree arg, tree base, tree comp_type,
654 gcall *call, struct ipa_jump_func *jfunc,
655 HOST_WIDE_INT offset)
656 {
657 struct prop_type_change_info tci;
658 ao_ref ao;
659 bool entry_reached = false;
660
661 gcc_checking_assert (DECL_P (arg)
662 || TREE_CODE (arg) == MEM_REF
663 || handled_component_p (arg));
664
665 comp_type = TYPE_MAIN_VARIANT (comp_type);
666
667 /* Const calls cannot call virtual methods through VMT and so type changes do
668 not matter. */
669 if (!flag_devirtualize || !gimple_vuse (call)
670 /* Be sure expected_type is polymorphic. */
671 || !comp_type
672 || TREE_CODE (comp_type) != RECORD_TYPE
673 || !TYPE_BINFO (TYPE_MAIN_VARIANT (comp_type))
674 || !BINFO_VTABLE (TYPE_BINFO (TYPE_MAIN_VARIANT (comp_type))))
675 return true;
676
677 ao_ref_init (&ao, arg);
678 ao.base = base;
679 ao.offset = offset;
680 ao.size = POINTER_SIZE;
681 ao.max_size = ao.size;
682
683 tci.offset = offset;
684 tci.object = get_base_address (arg);
685 tci.type_maybe_changed = false;
686
687 walk_aliased_vdefs (&ao, gimple_vuse (call), check_stmt_for_type_change,
688 &tci, NULL, &entry_reached);
689 if (!tci.type_maybe_changed)
690 return false;
691
692 ipa_set_jf_unknown (jfunc);
693 return true;
694 }
695
696 /* Detect whether the dynamic type of ARG of COMP_TYPE may have changed.
697 If it is, return true and fill in the jump function JFUNC with relevant type
698 information or set it to unknown. ARG is the object itself (not a pointer
699 to it, unless dereferenced). BASE is the base of the memory access as
700 returned by get_ref_base_and_extent, as is the offset. */
701
702 static bool
703 detect_type_change (tree arg, tree base, tree comp_type, gcall *call,
704 struct ipa_jump_func *jfunc, HOST_WIDE_INT offset)
705 {
706 if (!flag_devirtualize)
707 return false;
708
709 if (TREE_CODE (base) == MEM_REF
710 && !param_type_may_change_p (current_function_decl,
711 TREE_OPERAND (base, 0),
712 call))
713 return false;
714 return detect_type_change_from_memory_writes (arg, base, comp_type,
715 call, jfunc, offset);
716 }
717
718 /* Like detect_type_change but ARG is supposed to be a non-dereferenced pointer
719 SSA name (its dereference will become the base and the offset is assumed to
720 be zero). */
721
722 static bool
723 detect_type_change_ssa (tree arg, tree comp_type,
724 gcall *call, struct ipa_jump_func *jfunc)
725 {
726 gcc_checking_assert (TREE_CODE (arg) == SSA_NAME);
727 if (!flag_devirtualize
728 || !POINTER_TYPE_P (TREE_TYPE (arg)))
729 return false;
730
731 if (!param_type_may_change_p (current_function_decl, arg, call))
732 return false;
733
734 arg = build2 (MEM_REF, ptr_type_node, arg,
735 build_int_cst (ptr_type_node, 0));
736
737 return detect_type_change_from_memory_writes (arg, arg, comp_type,
738 call, jfunc, 0);
739 }
740
741 /* Callback of walk_aliased_vdefs. Flags that it has been invoked to the
742 boolean variable pointed to by DATA. */
743
744 static bool
745 mark_modified (ao_ref *ao ATTRIBUTE_UNUSED, tree vdef ATTRIBUTE_UNUSED,
746 void *data)
747 {
748 bool *b = (bool *) data;
749 *b = true;
750 return true;
751 }
752
753 /* Return true if we have already walked so many statements in AA that we
754 should really just start giving up. */
755
756 static bool
757 aa_overwalked (struct ipa_func_body_info *fbi)
758 {
759 gcc_checking_assert (fbi);
760 return fbi->aa_walked > (unsigned) PARAM_VALUE (PARAM_IPA_MAX_AA_STEPS);
761 }
762
763 /* Find the nearest valid aa status for parameter specified by INDEX that
764 dominates BB. */
765
766 static struct ipa_param_aa_status *
767 find_dominating_aa_status (struct ipa_func_body_info *fbi, basic_block bb,
768 int index)
769 {
770 while (true)
771 {
772 bb = get_immediate_dominator (CDI_DOMINATORS, bb);
773 if (!bb)
774 return NULL;
775 struct ipa_bb_info *bi = ipa_get_bb_info (fbi, bb);
776 if (!bi->param_aa_statuses.is_empty ()
777 && bi->param_aa_statuses[index].valid)
778 return &bi->param_aa_statuses[index];
779 }
780 }
781
782 /* Get AA status structure for the given BB and parameter with INDEX. Allocate
783 structures and/or intialize the result with a dominating description as
784 necessary. */
785
786 static struct ipa_param_aa_status *
787 parm_bb_aa_status_for_bb (struct ipa_func_body_info *fbi, basic_block bb,
788 int index)
789 {
790 gcc_checking_assert (fbi);
791 struct ipa_bb_info *bi = ipa_get_bb_info (fbi, bb);
792 if (bi->param_aa_statuses.is_empty ())
793 bi->param_aa_statuses.safe_grow_cleared (fbi->param_count);
794 struct ipa_param_aa_status *paa = &bi->param_aa_statuses[index];
795 if (!paa->valid)
796 {
797 gcc_checking_assert (!paa->parm_modified
798 && !paa->ref_modified
799 && !paa->pt_modified);
800 struct ipa_param_aa_status *dom_paa;
801 dom_paa = find_dominating_aa_status (fbi, bb, index);
802 if (dom_paa)
803 *paa = *dom_paa;
804 else
805 paa->valid = true;
806 }
807
808 return paa;
809 }
810
811 /* Return true if a load from a formal parameter PARM_LOAD is known to retrieve
812 a value known not to be modified in this function before reaching the
813 statement STMT. FBI holds information about the function we have so far
814 gathered but do not survive the summary building stage. */
815
816 static bool
817 parm_preserved_before_stmt_p (struct ipa_func_body_info *fbi, int index,
818 gimple *stmt, tree parm_load)
819 {
820 struct ipa_param_aa_status *paa;
821 bool modified = false;
822 ao_ref refd;
823
824 /* FIXME: FBI can be NULL if we are being called from outside
825 ipa_node_analysis or ipcp_transform_function, which currently happens
826 during inlining analysis. It would be great to extend fbi's lifetime and
827 always have it. Currently, we are just not afraid of too much walking in
828 that case. */
829 if (fbi)
830 {
831 if (aa_overwalked (fbi))
832 return false;
833 paa = parm_bb_aa_status_for_bb (fbi, gimple_bb (stmt), index);
834 if (paa->parm_modified)
835 return false;
836 }
837 else
838 paa = NULL;
839
840 gcc_checking_assert (gimple_vuse (stmt) != NULL_TREE);
841 ao_ref_init (&refd, parm_load);
842 int walked = walk_aliased_vdefs (&refd, gimple_vuse (stmt), mark_modified,
843 &modified, NULL);
844 if (fbi)
845 fbi->aa_walked += walked;
846 if (paa && modified)
847 paa->parm_modified = true;
848 return !modified;
849 }
850
851 /* If STMT is an assignment that loads a value from an parameter declaration,
852 return the index of the parameter in ipa_node_params which has not been
853 modified. Otherwise return -1. */
854
855 static int
856 load_from_unmodified_param (struct ipa_func_body_info *fbi,
857 vec<ipa_param_descriptor> descriptors,
858 gimple *stmt)
859 {
860 int index;
861 tree op1;
862
863 if (!gimple_assign_single_p (stmt))
864 return -1;
865
866 op1 = gimple_assign_rhs1 (stmt);
867 if (TREE_CODE (op1) != PARM_DECL)
868 return -1;
869
870 index = ipa_get_param_decl_index_1 (descriptors, op1);
871 if (index < 0
872 || !parm_preserved_before_stmt_p (fbi, index, stmt, op1))
873 return -1;
874
875 return index;
876 }
877
878 /* Return true if memory reference REF (which must be a load through parameter
879 with INDEX) loads data that are known to be unmodified in this function
880 before reaching statement STMT. */
881
882 static bool
883 parm_ref_data_preserved_p (struct ipa_func_body_info *fbi,
884 int index, gimple *stmt, tree ref)
885 {
886 struct ipa_param_aa_status *paa;
887 bool modified = false;
888 ao_ref refd;
889
890 /* FIXME: FBI can be NULL if we are being called from outside
891 ipa_node_analysis or ipcp_transform_function, which currently happens
892 during inlining analysis. It would be great to extend fbi's lifetime and
893 always have it. Currently, we are just not afraid of too much walking in
894 that case. */
895 if (fbi)
896 {
897 if (aa_overwalked (fbi))
898 return false;
899 paa = parm_bb_aa_status_for_bb (fbi, gimple_bb (stmt), index);
900 if (paa->ref_modified)
901 return false;
902 }
903 else
904 paa = NULL;
905
906 gcc_checking_assert (gimple_vuse (stmt));
907 ao_ref_init (&refd, ref);
908 int walked = walk_aliased_vdefs (&refd, gimple_vuse (stmt), mark_modified,
909 &modified, NULL);
910 if (fbi)
911 fbi->aa_walked += walked;
912 if (paa && modified)
913 paa->ref_modified = true;
914 return !modified;
915 }
916
917 /* Return true if the data pointed to by PARM (which is a parameter with INDEX)
918 is known to be unmodified in this function before reaching call statement
919 CALL into which it is passed. FBI describes the function body. */
920
921 static bool
922 parm_ref_data_pass_through_p (struct ipa_func_body_info *fbi, int index,
923 gimple *call, tree parm)
924 {
925 bool modified = false;
926 ao_ref refd;
927
928 /* It's unnecessary to calculate anything about memory contnets for a const
929 function because it is not goin to use it. But do not cache the result
930 either. Also, no such calculations for non-pointers. */
931 if (!gimple_vuse (call)
932 || !POINTER_TYPE_P (TREE_TYPE (parm))
933 || aa_overwalked (fbi))
934 return false;
935
936 struct ipa_param_aa_status *paa = parm_bb_aa_status_for_bb (fbi,
937 gimple_bb (call),
938 index);
939 if (paa->pt_modified)
940 return false;
941
942 ao_ref_init_from_ptr_and_size (&refd, parm, NULL_TREE);
943 int walked = walk_aliased_vdefs (&refd, gimple_vuse (call), mark_modified,
944 &modified, NULL);
945 fbi->aa_walked += walked;
946 if (modified)
947 paa->pt_modified = true;
948 return !modified;
949 }
950
951 /* Return true if we can prove that OP is a memory reference loading unmodified
952 data from an aggregate passed as a parameter and if the aggregate is passed
953 by reference, that the alias type of the load corresponds to the type of the
954 formal parameter (so that we can rely on this type for TBAA in callers).
955 INFO and PARMS_AINFO describe parameters of the current function (but the
956 latter can be NULL), STMT is the load statement. If function returns true,
957 *INDEX_P, *OFFSET_P and *BY_REF is filled with the parameter index, offset
958 within the aggregate and whether it is a load from a value passed by
959 reference respectively. */
960
961 bool
962 ipa_load_from_parm_agg (struct ipa_func_body_info *fbi,
963 vec<ipa_param_descriptor> descriptors,
964 gimple *stmt, tree op, int *index_p,
965 HOST_WIDE_INT *offset_p, HOST_WIDE_INT *size_p,
966 bool *by_ref_p)
967 {
968 int index;
969 HOST_WIDE_INT size, max_size;
970 tree base = get_ref_base_and_extent (op, offset_p, &size, &max_size);
971
972 if (max_size == -1 || max_size != size || *offset_p < 0)
973 return false;
974
975 if (DECL_P (base))
976 {
977 int index = ipa_get_param_decl_index_1 (descriptors, base);
978 if (index >= 0
979 && parm_preserved_before_stmt_p (fbi, index, stmt, op))
980 {
981 *index_p = index;
982 *by_ref_p = false;
983 if (size_p)
984 *size_p = size;
985 return true;
986 }
987 return false;
988 }
989
990 if (TREE_CODE (base) != MEM_REF
991 || TREE_CODE (TREE_OPERAND (base, 0)) != SSA_NAME
992 || !integer_zerop (TREE_OPERAND (base, 1)))
993 return false;
994
995 if (SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (base, 0)))
996 {
997 tree parm = SSA_NAME_VAR (TREE_OPERAND (base, 0));
998 index = ipa_get_param_decl_index_1 (descriptors, parm);
999 }
1000 else
1001 {
1002 /* This branch catches situations where a pointer parameter is not a
1003 gimple register, for example:
1004
1005 void hip7(S*) (struct S * p)
1006 {
1007 void (*<T2e4>) (struct S *) D.1867;
1008 struct S * p.1;
1009
1010 <bb 2>:
1011 p.1_1 = p;
1012 D.1867_2 = p.1_1->f;
1013 D.1867_2 ();
1014 gdp = &p;
1015 */
1016
1017 gimple *def = SSA_NAME_DEF_STMT (TREE_OPERAND (base, 0));
1018 index = load_from_unmodified_param (fbi, descriptors, def);
1019 }
1020
1021 if (index >= 0
1022 && parm_ref_data_preserved_p (fbi, index, stmt, op))
1023 {
1024 *index_p = index;
1025 *by_ref_p = true;
1026 if (size_p)
1027 *size_p = size;
1028 return true;
1029 }
1030 return false;
1031 }
1032
1033 /* Given that an actual argument is an SSA_NAME (given in NAME) and is a result
1034 of an assignment statement STMT, try to determine whether we are actually
1035 handling any of the following cases and construct an appropriate jump
1036 function into JFUNC if so:
1037
1038 1) The passed value is loaded from a formal parameter which is not a gimple
1039 register (most probably because it is addressable, the value has to be
1040 scalar) and we can guarantee the value has not changed. This case can
1041 therefore be described by a simple pass-through jump function. For example:
1042
1043 foo (int a)
1044 {
1045 int a.0;
1046
1047 a.0_2 = a;
1048 bar (a.0_2);
1049
1050 2) The passed value can be described by a simple arithmetic pass-through
1051 jump function. E.g.
1052
1053 foo (int a)
1054 {
1055 int D.2064;
1056
1057 D.2064_4 = a.1(D) + 4;
1058 bar (D.2064_4);
1059
1060 This case can also occur in combination of the previous one, e.g.:
1061
1062 foo (int a, int z)
1063 {
1064 int a.0;
1065 int D.2064;
1066
1067 a.0_3 = a;
1068 D.2064_4 = a.0_3 + 4;
1069 foo (D.2064_4);
1070
1071 3) The passed value is an address of an object within another one (which
1072 also passed by reference). Such situations are described by an ancestor
1073 jump function and describe situations such as:
1074
1075 B::foo() (struct B * const this)
1076 {
1077 struct A * D.1845;
1078
1079 D.1845_2 = &this_1(D)->D.1748;
1080 A::bar (D.1845_2);
1081
1082 INFO is the structure describing individual parameters access different
1083 stages of IPA optimizations. PARMS_AINFO contains the information that is
1084 only needed for intraprocedural analysis. */
1085
1086 static void
1087 compute_complex_assign_jump_func (struct ipa_func_body_info *fbi,
1088 struct ipa_node_params *info,
1089 struct ipa_jump_func *jfunc,
1090 gcall *call, gimple *stmt, tree name,
1091 tree param_type)
1092 {
1093 HOST_WIDE_INT offset, size, max_size;
1094 tree op1, tc_ssa, base, ssa;
1095 int index;
1096
1097 op1 = gimple_assign_rhs1 (stmt);
1098
1099 if (TREE_CODE (op1) == SSA_NAME)
1100 {
1101 if (SSA_NAME_IS_DEFAULT_DEF (op1))
1102 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (op1));
1103 else
1104 index = load_from_unmodified_param (fbi, info->descriptors,
1105 SSA_NAME_DEF_STMT (op1));
1106 tc_ssa = op1;
1107 }
1108 else
1109 {
1110 index = load_from_unmodified_param (fbi, info->descriptors, stmt);
1111 tc_ssa = gimple_assign_lhs (stmt);
1112 }
1113
1114 if (index >= 0)
1115 {
1116 tree op2 = gimple_assign_rhs2 (stmt);
1117
1118 if (op2)
1119 {
1120 if (!is_gimple_ip_invariant (op2)
1121 || (TREE_CODE_CLASS (gimple_expr_code (stmt)) != tcc_comparison
1122 && !useless_type_conversion_p (TREE_TYPE (name),
1123 TREE_TYPE (op1))))
1124 return;
1125
1126 ipa_set_jf_arith_pass_through (jfunc, index, op2,
1127 gimple_assign_rhs_code (stmt));
1128 }
1129 else if (gimple_assign_single_p (stmt))
1130 {
1131 bool agg_p = parm_ref_data_pass_through_p (fbi, index, call, tc_ssa);
1132 ipa_set_jf_simple_pass_through (jfunc, index, agg_p);
1133 }
1134 return;
1135 }
1136
1137 if (TREE_CODE (op1) != ADDR_EXPR)
1138 return;
1139 op1 = TREE_OPERAND (op1, 0);
1140 if (TREE_CODE (TREE_TYPE (op1)) != RECORD_TYPE)
1141 return;
1142 base = get_ref_base_and_extent (op1, &offset, &size, &max_size);
1143 if (TREE_CODE (base) != MEM_REF
1144 /* If this is a varying address, punt. */
1145 || max_size == -1
1146 || max_size != size)
1147 return;
1148 offset += mem_ref_offset (base).to_short_addr () * BITS_PER_UNIT;
1149 ssa = TREE_OPERAND (base, 0);
1150 if (TREE_CODE (ssa) != SSA_NAME
1151 || !SSA_NAME_IS_DEFAULT_DEF (ssa)
1152 || offset < 0)
1153 return;
1154
1155 /* Dynamic types are changed in constructors and destructors. */
1156 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (ssa));
1157 if (index >= 0 && param_type && POINTER_TYPE_P (param_type))
1158 ipa_set_ancestor_jf (jfunc, offset, index,
1159 parm_ref_data_pass_through_p (fbi, index, call, ssa));
1160 }
1161
1162 /* Extract the base, offset and MEM_REF expression from a statement ASSIGN if
1163 it looks like:
1164
1165 iftmp.1_3 = &obj_2(D)->D.1762;
1166
1167 The base of the MEM_REF must be a default definition SSA NAME of a
1168 parameter. Return NULL_TREE if it looks otherwise. If case of success, the
1169 whole MEM_REF expression is returned and the offset calculated from any
1170 handled components and the MEM_REF itself is stored into *OFFSET. The whole
1171 RHS stripped off the ADDR_EXPR is stored into *OBJ_P. */
1172
1173 static tree
1174 get_ancestor_addr_info (gimple *assign, tree *obj_p, HOST_WIDE_INT *offset)
1175 {
1176 HOST_WIDE_INT size, max_size;
1177 tree expr, parm, obj;
1178
1179 if (!gimple_assign_single_p (assign))
1180 return NULL_TREE;
1181 expr = gimple_assign_rhs1 (assign);
1182
1183 if (TREE_CODE (expr) != ADDR_EXPR)
1184 return NULL_TREE;
1185 expr = TREE_OPERAND (expr, 0);
1186 obj = expr;
1187 expr = get_ref_base_and_extent (expr, offset, &size, &max_size);
1188
1189 if (TREE_CODE (expr) != MEM_REF
1190 /* If this is a varying address, punt. */
1191 || max_size == -1
1192 || max_size != size
1193 || *offset < 0)
1194 return NULL_TREE;
1195 parm = TREE_OPERAND (expr, 0);
1196 if (TREE_CODE (parm) != SSA_NAME
1197 || !SSA_NAME_IS_DEFAULT_DEF (parm)
1198 || TREE_CODE (SSA_NAME_VAR (parm)) != PARM_DECL)
1199 return NULL_TREE;
1200
1201 *offset += mem_ref_offset (expr).to_short_addr () * BITS_PER_UNIT;
1202 *obj_p = obj;
1203 return expr;
1204 }
1205
1206
1207 /* Given that an actual argument is an SSA_NAME that is a result of a phi
1208 statement PHI, try to find out whether NAME is in fact a
1209 multiple-inheritance typecast from a descendant into an ancestor of a formal
1210 parameter and thus can be described by an ancestor jump function and if so,
1211 write the appropriate function into JFUNC.
1212
1213 Essentially we want to match the following pattern:
1214
1215 if (obj_2(D) != 0B)
1216 goto <bb 3>;
1217 else
1218 goto <bb 4>;
1219
1220 <bb 3>:
1221 iftmp.1_3 = &obj_2(D)->D.1762;
1222
1223 <bb 4>:
1224 # iftmp.1_1 = PHI <iftmp.1_3(3), 0B(2)>
1225 D.1879_6 = middleman_1 (iftmp.1_1, i_5(D));
1226 return D.1879_6; */
1227
1228 static void
1229 compute_complex_ancestor_jump_func (struct ipa_func_body_info *fbi,
1230 struct ipa_node_params *info,
1231 struct ipa_jump_func *jfunc,
1232 gcall *call, gphi *phi)
1233 {
1234 HOST_WIDE_INT offset;
1235 gimple *assign, *cond;
1236 basic_block phi_bb, assign_bb, cond_bb;
1237 tree tmp, parm, expr, obj;
1238 int index, i;
1239
1240 if (gimple_phi_num_args (phi) != 2)
1241 return;
1242
1243 if (integer_zerop (PHI_ARG_DEF (phi, 1)))
1244 tmp = PHI_ARG_DEF (phi, 0);
1245 else if (integer_zerop (PHI_ARG_DEF (phi, 0)))
1246 tmp = PHI_ARG_DEF (phi, 1);
1247 else
1248 return;
1249 if (TREE_CODE (tmp) != SSA_NAME
1250 || SSA_NAME_IS_DEFAULT_DEF (tmp)
1251 || !POINTER_TYPE_P (TREE_TYPE (tmp))
1252 || TREE_CODE (TREE_TYPE (TREE_TYPE (tmp))) != RECORD_TYPE)
1253 return;
1254
1255 assign = SSA_NAME_DEF_STMT (tmp);
1256 assign_bb = gimple_bb (assign);
1257 if (!single_pred_p (assign_bb))
1258 return;
1259 expr = get_ancestor_addr_info (assign, &obj, &offset);
1260 if (!expr)
1261 return;
1262 parm = TREE_OPERAND (expr, 0);
1263 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (parm));
1264 if (index < 0)
1265 return;
1266
1267 cond_bb = single_pred (assign_bb);
1268 cond = last_stmt (cond_bb);
1269 if (!cond
1270 || gimple_code (cond) != GIMPLE_COND
1271 || gimple_cond_code (cond) != NE_EXPR
1272 || gimple_cond_lhs (cond) != parm
1273 || !integer_zerop (gimple_cond_rhs (cond)))
1274 return;
1275
1276 phi_bb = gimple_bb (phi);
1277 for (i = 0; i < 2; i++)
1278 {
1279 basic_block pred = EDGE_PRED (phi_bb, i)->src;
1280 if (pred != assign_bb && pred != cond_bb)
1281 return;
1282 }
1283
1284 ipa_set_ancestor_jf (jfunc, offset, index,
1285 parm_ref_data_pass_through_p (fbi, index, call, parm));
1286 }
1287
1288 /* Inspect the given TYPE and return true iff it has the same structure (the
1289 same number of fields of the same types) as a C++ member pointer. If
1290 METHOD_PTR and DELTA are non-NULL, store the trees representing the
1291 corresponding fields there. */
1292
1293 static bool
1294 type_like_member_ptr_p (tree type, tree *method_ptr, tree *delta)
1295 {
1296 tree fld;
1297
1298 if (TREE_CODE (type) != RECORD_TYPE)
1299 return false;
1300
1301 fld = TYPE_FIELDS (type);
1302 if (!fld || !POINTER_TYPE_P (TREE_TYPE (fld))
1303 || TREE_CODE (TREE_TYPE (TREE_TYPE (fld))) != METHOD_TYPE
1304 || !tree_fits_uhwi_p (DECL_FIELD_OFFSET (fld)))
1305 return false;
1306
1307 if (method_ptr)
1308 *method_ptr = fld;
1309
1310 fld = DECL_CHAIN (fld);
1311 if (!fld || INTEGRAL_TYPE_P (fld)
1312 || !tree_fits_uhwi_p (DECL_FIELD_OFFSET (fld)))
1313 return false;
1314 if (delta)
1315 *delta = fld;
1316
1317 if (DECL_CHAIN (fld))
1318 return false;
1319
1320 return true;
1321 }
1322
1323 /* If RHS is an SSA_NAME and it is defined by a simple copy assign statement,
1324 return the rhs of its defining statement. Otherwise return RHS as it
1325 is. */
1326
1327 static inline tree
1328 get_ssa_def_if_simple_copy (tree rhs)
1329 {
1330 while (TREE_CODE (rhs) == SSA_NAME && !SSA_NAME_IS_DEFAULT_DEF (rhs))
1331 {
1332 gimple *def_stmt = SSA_NAME_DEF_STMT (rhs);
1333
1334 if (gimple_assign_single_p (def_stmt))
1335 rhs = gimple_assign_rhs1 (def_stmt);
1336 else
1337 break;
1338 }
1339 return rhs;
1340 }
1341
1342 /* Simple linked list, describing known contents of an aggregate beforere
1343 call. */
1344
1345 struct ipa_known_agg_contents_list
1346 {
1347 /* Offset and size of the described part of the aggregate. */
1348 HOST_WIDE_INT offset, size;
1349 /* Known constant value or NULL if the contents is known to be unknown. */
1350 tree constant;
1351 /* Pointer to the next structure in the list. */
1352 struct ipa_known_agg_contents_list *next;
1353 };
1354
1355 /* Find the proper place in linked list of ipa_known_agg_contents_list
1356 structures where to put a new one with the given LHS_OFFSET and LHS_SIZE,
1357 unless there is a partial overlap, in which case return NULL, or such
1358 element is already there, in which case set *ALREADY_THERE to true. */
1359
1360 static struct ipa_known_agg_contents_list **
1361 get_place_in_agg_contents_list (struct ipa_known_agg_contents_list **list,
1362 HOST_WIDE_INT lhs_offset,
1363 HOST_WIDE_INT lhs_size,
1364 bool *already_there)
1365 {
1366 struct ipa_known_agg_contents_list **p = list;
1367 while (*p && (*p)->offset < lhs_offset)
1368 {
1369 if ((*p)->offset + (*p)->size > lhs_offset)
1370 return NULL;
1371 p = &(*p)->next;
1372 }
1373
1374 if (*p && (*p)->offset < lhs_offset + lhs_size)
1375 {
1376 if ((*p)->offset == lhs_offset && (*p)->size == lhs_size)
1377 /* We already know this value is subsequently overwritten with
1378 something else. */
1379 *already_there = true;
1380 else
1381 /* Otherwise this is a partial overlap which we cannot
1382 represent. */
1383 return NULL;
1384 }
1385 return p;
1386 }
1387
1388 /* Build aggregate jump function from LIST, assuming there are exactly
1389 CONST_COUNT constant entries there and that th offset of the passed argument
1390 is ARG_OFFSET and store it into JFUNC. */
1391
1392 static void
1393 build_agg_jump_func_from_list (struct ipa_known_agg_contents_list *list,
1394 int const_count, HOST_WIDE_INT arg_offset,
1395 struct ipa_jump_func *jfunc)
1396 {
1397 vec_alloc (jfunc->agg.items, const_count);
1398 while (list)
1399 {
1400 if (list->constant)
1401 {
1402 struct ipa_agg_jf_item item;
1403 item.offset = list->offset - arg_offset;
1404 gcc_assert ((item.offset % BITS_PER_UNIT) == 0);
1405 item.value = unshare_expr_without_location (list->constant);
1406 jfunc->agg.items->quick_push (item);
1407 }
1408 list = list->next;
1409 }
1410 }
1411
1412 /* Traverse statements from CALL backwards, scanning whether an aggregate given
1413 in ARG is filled in with constant values. ARG can either be an aggregate
1414 expression or a pointer to an aggregate. ARG_TYPE is the type of the
1415 aggregate. JFUNC is the jump function into which the constants are
1416 subsequently stored. */
1417
1418 static void
1419 determine_locally_known_aggregate_parts (gcall *call, tree arg,
1420 tree arg_type,
1421 struct ipa_jump_func *jfunc)
1422 {
1423 struct ipa_known_agg_contents_list *list = NULL;
1424 int item_count = 0, const_count = 0;
1425 HOST_WIDE_INT arg_offset, arg_size;
1426 gimple_stmt_iterator gsi;
1427 tree arg_base;
1428 bool check_ref, by_ref;
1429 ao_ref r;
1430
1431 /* The function operates in three stages. First, we prepare check_ref, r,
1432 arg_base and arg_offset based on what is actually passed as an actual
1433 argument. */
1434
1435 if (POINTER_TYPE_P (arg_type))
1436 {
1437 by_ref = true;
1438 if (TREE_CODE (arg) == SSA_NAME)
1439 {
1440 tree type_size;
1441 if (!tree_fits_uhwi_p (TYPE_SIZE (TREE_TYPE (arg_type))))
1442 return;
1443 check_ref = true;
1444 arg_base = arg;
1445 arg_offset = 0;
1446 type_size = TYPE_SIZE (TREE_TYPE (arg_type));
1447 arg_size = tree_to_uhwi (type_size);
1448 ao_ref_init_from_ptr_and_size (&r, arg_base, NULL_TREE);
1449 }
1450 else if (TREE_CODE (arg) == ADDR_EXPR)
1451 {
1452 HOST_WIDE_INT arg_max_size;
1453
1454 arg = TREE_OPERAND (arg, 0);
1455 arg_base = get_ref_base_and_extent (arg, &arg_offset, &arg_size,
1456 &arg_max_size);
1457 if (arg_max_size == -1
1458 || arg_max_size != arg_size
1459 || arg_offset < 0)
1460 return;
1461 if (DECL_P (arg_base))
1462 {
1463 check_ref = false;
1464 ao_ref_init (&r, arg_base);
1465 }
1466 else
1467 return;
1468 }
1469 else
1470 return;
1471 }
1472 else
1473 {
1474 HOST_WIDE_INT arg_max_size;
1475
1476 gcc_checking_assert (AGGREGATE_TYPE_P (TREE_TYPE (arg)));
1477
1478 by_ref = false;
1479 check_ref = false;
1480 arg_base = get_ref_base_and_extent (arg, &arg_offset, &arg_size,
1481 &arg_max_size);
1482 if (arg_max_size == -1
1483 || arg_max_size != arg_size
1484 || arg_offset < 0)
1485 return;
1486
1487 ao_ref_init (&r, arg);
1488 }
1489
1490 /* Second stage walks back the BB, looks at individual statements and as long
1491 as it is confident of how the statements affect contents of the
1492 aggregates, it builds a sorted linked list of ipa_agg_jf_list structures
1493 describing it. */
1494 gsi = gsi_for_stmt (call);
1495 gsi_prev (&gsi);
1496 for (; !gsi_end_p (gsi); gsi_prev (&gsi))
1497 {
1498 struct ipa_known_agg_contents_list *n, **p;
1499 gimple *stmt = gsi_stmt (gsi);
1500 HOST_WIDE_INT lhs_offset, lhs_size, lhs_max_size;
1501 tree lhs, rhs, lhs_base;
1502
1503 if (!stmt_may_clobber_ref_p_1 (stmt, &r))
1504 continue;
1505 if (!gimple_assign_single_p (stmt))
1506 break;
1507
1508 lhs = gimple_assign_lhs (stmt);
1509 rhs = gimple_assign_rhs1 (stmt);
1510 if (!is_gimple_reg_type (TREE_TYPE (rhs))
1511 || TREE_CODE (lhs) == BIT_FIELD_REF
1512 || contains_bitfld_component_ref_p (lhs))
1513 break;
1514
1515 lhs_base = get_ref_base_and_extent (lhs, &lhs_offset, &lhs_size,
1516 &lhs_max_size);
1517 if (lhs_max_size == -1
1518 || lhs_max_size != lhs_size)
1519 break;
1520
1521 if (check_ref)
1522 {
1523 if (TREE_CODE (lhs_base) != MEM_REF
1524 || TREE_OPERAND (lhs_base, 0) != arg_base
1525 || !integer_zerop (TREE_OPERAND (lhs_base, 1)))
1526 break;
1527 }
1528 else if (lhs_base != arg_base)
1529 {
1530 if (DECL_P (lhs_base))
1531 continue;
1532 else
1533 break;
1534 }
1535
1536 bool already_there = false;
1537 p = get_place_in_agg_contents_list (&list, lhs_offset, lhs_size,
1538 &already_there);
1539 if (!p)
1540 break;
1541 if (already_there)
1542 continue;
1543
1544 rhs = get_ssa_def_if_simple_copy (rhs);
1545 n = XALLOCA (struct ipa_known_agg_contents_list);
1546 n->size = lhs_size;
1547 n->offset = lhs_offset;
1548 if (is_gimple_ip_invariant (rhs))
1549 {
1550 n->constant = rhs;
1551 const_count++;
1552 }
1553 else
1554 n->constant = NULL_TREE;
1555 n->next = *p;
1556 *p = n;
1557
1558 item_count++;
1559 if (const_count == PARAM_VALUE (PARAM_IPA_MAX_AGG_ITEMS)
1560 || item_count == 2 * PARAM_VALUE (PARAM_IPA_MAX_AGG_ITEMS))
1561 break;
1562 }
1563
1564 /* Third stage just goes over the list and creates an appropriate vector of
1565 ipa_agg_jf_item structures out of it, of sourse only if there are
1566 any known constants to begin with. */
1567
1568 if (const_count)
1569 {
1570 jfunc->agg.by_ref = by_ref;
1571 build_agg_jump_func_from_list (list, const_count, arg_offset, jfunc);
1572 }
1573 }
1574
1575 static tree
1576 ipa_get_callee_param_type (struct cgraph_edge *e, int i)
1577 {
1578 int n;
1579 tree type = (e->callee
1580 ? TREE_TYPE (e->callee->decl)
1581 : gimple_call_fntype (e->call_stmt));
1582 tree t = TYPE_ARG_TYPES (type);
1583
1584 for (n = 0; n < i; n++)
1585 {
1586 if (!t)
1587 break;
1588 t = TREE_CHAIN (t);
1589 }
1590 if (t)
1591 return TREE_VALUE (t);
1592 if (!e->callee)
1593 return NULL;
1594 t = DECL_ARGUMENTS (e->callee->decl);
1595 for (n = 0; n < i; n++)
1596 {
1597 if (!t)
1598 return NULL;
1599 t = TREE_CHAIN (t);
1600 }
1601 if (t)
1602 return TREE_TYPE (t);
1603 return NULL;
1604 }
1605
1606 /* Compute jump function for all arguments of callsite CS and insert the
1607 information in the jump_functions array in the ipa_edge_args corresponding
1608 to this callsite. */
1609
1610 static void
1611 ipa_compute_jump_functions_for_edge (struct ipa_func_body_info *fbi,
1612 struct cgraph_edge *cs)
1613 {
1614 struct ipa_node_params *info = IPA_NODE_REF (cs->caller);
1615 struct ipa_edge_args *args = IPA_EDGE_REF (cs);
1616 gcall *call = cs->call_stmt;
1617 int n, arg_num = gimple_call_num_args (call);
1618 bool useful_context = false;
1619
1620 if (arg_num == 0 || args->jump_functions)
1621 return;
1622 vec_safe_grow_cleared (args->jump_functions, arg_num);
1623 if (flag_devirtualize)
1624 vec_safe_grow_cleared (args->polymorphic_call_contexts, arg_num);
1625
1626 if (gimple_call_internal_p (call))
1627 return;
1628 if (ipa_func_spec_opts_forbid_analysis_p (cs->caller))
1629 return;
1630
1631 for (n = 0; n < arg_num; n++)
1632 {
1633 struct ipa_jump_func *jfunc = ipa_get_ith_jump_func (args, n);
1634 tree arg = gimple_call_arg (call, n);
1635 tree param_type = ipa_get_callee_param_type (cs, n);
1636 if (flag_devirtualize && POINTER_TYPE_P (TREE_TYPE (arg)))
1637 {
1638 tree instance;
1639 struct ipa_polymorphic_call_context context (cs->caller->decl,
1640 arg, cs->call_stmt,
1641 &instance);
1642 context.get_dynamic_type (instance, arg, NULL, cs->call_stmt);
1643 *ipa_get_ith_polymorhic_call_context (args, n) = context;
1644 if (!context.useless_p ())
1645 useful_context = true;
1646 }
1647
1648 if (POINTER_TYPE_P (TREE_TYPE(arg)))
1649 {
1650 unsigned HOST_WIDE_INT hwi_bitpos;
1651 unsigned align;
1652
1653 if (get_pointer_alignment_1 (arg, &align, &hwi_bitpos)
1654 && align % BITS_PER_UNIT == 0
1655 && hwi_bitpos % BITS_PER_UNIT == 0)
1656 {
1657 jfunc->alignment.known = true;
1658 jfunc->alignment.align = align / BITS_PER_UNIT;
1659 jfunc->alignment.misalign = hwi_bitpos / BITS_PER_UNIT;
1660 }
1661 else
1662 gcc_assert (!jfunc->alignment.known);
1663 }
1664 else
1665 gcc_assert (!jfunc->alignment.known);
1666
1667 if (is_gimple_ip_invariant (arg))
1668 ipa_set_jf_constant (jfunc, arg, cs);
1669 else if (!is_gimple_reg_type (TREE_TYPE (arg))
1670 && TREE_CODE (arg) == PARM_DECL)
1671 {
1672 int index = ipa_get_param_decl_index (info, arg);
1673
1674 gcc_assert (index >=0);
1675 /* Aggregate passed by value, check for pass-through, otherwise we
1676 will attempt to fill in aggregate contents later in this
1677 for cycle. */
1678 if (parm_preserved_before_stmt_p (fbi, index, call, arg))
1679 {
1680 ipa_set_jf_simple_pass_through (jfunc, index, false);
1681 continue;
1682 }
1683 }
1684 else if (TREE_CODE (arg) == SSA_NAME)
1685 {
1686 if (SSA_NAME_IS_DEFAULT_DEF (arg))
1687 {
1688 int index = ipa_get_param_decl_index (info, SSA_NAME_VAR (arg));
1689 if (index >= 0)
1690 {
1691 bool agg_p;
1692 agg_p = parm_ref_data_pass_through_p (fbi, index, call, arg);
1693 ipa_set_jf_simple_pass_through (jfunc, index, agg_p);
1694 }
1695 }
1696 else
1697 {
1698 gimple *stmt = SSA_NAME_DEF_STMT (arg);
1699 if (is_gimple_assign (stmt))
1700 compute_complex_assign_jump_func (fbi, info, jfunc,
1701 call, stmt, arg, param_type);
1702 else if (gimple_code (stmt) == GIMPLE_PHI)
1703 compute_complex_ancestor_jump_func (fbi, info, jfunc,
1704 call,
1705 as_a <gphi *> (stmt));
1706 }
1707 }
1708
1709 /* If ARG is pointer, we can not use its type to determine the type of aggregate
1710 passed (because type conversions are ignored in gimple). Usually we can
1711 safely get type from function declaration, but in case of K&R prototypes or
1712 variadic functions we can try our luck with type of the pointer passed.
1713 TODO: Since we look for actual initialization of the memory object, we may better
1714 work out the type based on the memory stores we find. */
1715 if (!param_type)
1716 param_type = TREE_TYPE (arg);
1717
1718 if ((jfunc->type != IPA_JF_PASS_THROUGH
1719 || !ipa_get_jf_pass_through_agg_preserved (jfunc))
1720 && (jfunc->type != IPA_JF_ANCESTOR
1721 || !ipa_get_jf_ancestor_agg_preserved (jfunc))
1722 && (AGGREGATE_TYPE_P (TREE_TYPE (arg))
1723 || POINTER_TYPE_P (param_type)))
1724 determine_locally_known_aggregate_parts (call, arg, param_type, jfunc);
1725 }
1726 if (!useful_context)
1727 vec_free (args->polymorphic_call_contexts);
1728 }
1729
1730 /* Compute jump functions for all edges - both direct and indirect - outgoing
1731 from BB. */
1732
1733 static void
1734 ipa_compute_jump_functions_for_bb (struct ipa_func_body_info *fbi, basic_block bb)
1735 {
1736 struct ipa_bb_info *bi = ipa_get_bb_info (fbi, bb);
1737 int i;
1738 struct cgraph_edge *cs;
1739
1740 FOR_EACH_VEC_ELT_REVERSE (bi->cg_edges, i, cs)
1741 {
1742 struct cgraph_node *callee = cs->callee;
1743
1744 if (callee)
1745 {
1746 callee->ultimate_alias_target ();
1747 /* We do not need to bother analyzing calls to unknown functions
1748 unless they may become known during lto/whopr. */
1749 if (!callee->definition && !flag_lto)
1750 continue;
1751 }
1752 ipa_compute_jump_functions_for_edge (fbi, cs);
1753 }
1754 }
1755
1756 /* If STMT looks like a statement loading a value from a member pointer formal
1757 parameter, return that parameter and store the offset of the field to
1758 *OFFSET_P, if it is non-NULL. Otherwise return NULL (but *OFFSET_P still
1759 might be clobbered). If USE_DELTA, then we look for a use of the delta
1760 field rather than the pfn. */
1761
1762 static tree
1763 ipa_get_stmt_member_ptr_load_param (gimple *stmt, bool use_delta,
1764 HOST_WIDE_INT *offset_p)
1765 {
1766 tree rhs, rec, ref_field, ref_offset, fld, ptr_field, delta_field;
1767
1768 if (!gimple_assign_single_p (stmt))
1769 return NULL_TREE;
1770
1771 rhs = gimple_assign_rhs1 (stmt);
1772 if (TREE_CODE (rhs) == COMPONENT_REF)
1773 {
1774 ref_field = TREE_OPERAND (rhs, 1);
1775 rhs = TREE_OPERAND (rhs, 0);
1776 }
1777 else
1778 ref_field = NULL_TREE;
1779 if (TREE_CODE (rhs) != MEM_REF)
1780 return NULL_TREE;
1781 rec = TREE_OPERAND (rhs, 0);
1782 if (TREE_CODE (rec) != ADDR_EXPR)
1783 return NULL_TREE;
1784 rec = TREE_OPERAND (rec, 0);
1785 if (TREE_CODE (rec) != PARM_DECL
1786 || !type_like_member_ptr_p (TREE_TYPE (rec), &ptr_field, &delta_field))
1787 return NULL_TREE;
1788 ref_offset = TREE_OPERAND (rhs, 1);
1789
1790 if (use_delta)
1791 fld = delta_field;
1792 else
1793 fld = ptr_field;
1794 if (offset_p)
1795 *offset_p = int_bit_position (fld);
1796
1797 if (ref_field)
1798 {
1799 if (integer_nonzerop (ref_offset))
1800 return NULL_TREE;
1801 return ref_field == fld ? rec : NULL_TREE;
1802 }
1803 else
1804 return tree_int_cst_equal (byte_position (fld), ref_offset) ? rec
1805 : NULL_TREE;
1806 }
1807
1808 /* Returns true iff T is an SSA_NAME defined by a statement. */
1809
1810 static bool
1811 ipa_is_ssa_with_stmt_def (tree t)
1812 {
1813 if (TREE_CODE (t) == SSA_NAME
1814 && !SSA_NAME_IS_DEFAULT_DEF (t))
1815 return true;
1816 else
1817 return false;
1818 }
1819
1820 /* Find the indirect call graph edge corresponding to STMT and mark it as a
1821 call to a parameter number PARAM_INDEX. NODE is the caller. Return the
1822 indirect call graph edge. */
1823
1824 static struct cgraph_edge *
1825 ipa_note_param_call (struct cgraph_node *node, int param_index,
1826 gcall *stmt)
1827 {
1828 struct cgraph_edge *cs;
1829
1830 cs = node->get_edge (stmt);
1831 cs->indirect_info->param_index = param_index;
1832 cs->indirect_info->agg_contents = 0;
1833 cs->indirect_info->member_ptr = 0;
1834 return cs;
1835 }
1836
1837 /* Analyze the CALL and examine uses of formal parameters of the caller NODE
1838 (described by INFO). PARMS_AINFO is a pointer to a vector containing
1839 intermediate information about each formal parameter. Currently it checks
1840 whether the call calls a pointer that is a formal parameter and if so, the
1841 parameter is marked with the called flag and an indirect call graph edge
1842 describing the call is created. This is very simple for ordinary pointers
1843 represented in SSA but not-so-nice when it comes to member pointers. The
1844 ugly part of this function does nothing more than trying to match the
1845 pattern of such a call. An example of such a pattern is the gimple dump
1846 below, the call is on the last line:
1847
1848 <bb 2>:
1849 f$__delta_5 = f.__delta;
1850 f$__pfn_24 = f.__pfn;
1851
1852 or
1853 <bb 2>:
1854 f$__delta_5 = MEM[(struct *)&f];
1855 f$__pfn_24 = MEM[(struct *)&f + 4B];
1856
1857 and a few lines below:
1858
1859 <bb 5>
1860 D.2496_3 = (int) f$__pfn_24;
1861 D.2497_4 = D.2496_3 & 1;
1862 if (D.2497_4 != 0)
1863 goto <bb 3>;
1864 else
1865 goto <bb 4>;
1866
1867 <bb 6>:
1868 D.2500_7 = (unsigned int) f$__delta_5;
1869 D.2501_8 = &S + D.2500_7;
1870 D.2502_9 = (int (*__vtbl_ptr_type) (void) * *) D.2501_8;
1871 D.2503_10 = *D.2502_9;
1872 D.2504_12 = f$__pfn_24 + -1;
1873 D.2505_13 = (unsigned int) D.2504_12;
1874 D.2506_14 = D.2503_10 + D.2505_13;
1875 D.2507_15 = *D.2506_14;
1876 iftmp.11_16 = (String:: *) D.2507_15;
1877
1878 <bb 7>:
1879 # iftmp.11_1 = PHI <iftmp.11_16(3), f$__pfn_24(2)>
1880 D.2500_19 = (unsigned int) f$__delta_5;
1881 D.2508_20 = &S + D.2500_19;
1882 D.2493_21 = iftmp.11_1 (D.2508_20, 4);
1883
1884 Such patterns are results of simple calls to a member pointer:
1885
1886 int doprinting (int (MyString::* f)(int) const)
1887 {
1888 MyString S ("somestring");
1889
1890 return (S.*f)(4);
1891 }
1892
1893 Moreover, the function also looks for called pointers loaded from aggregates
1894 passed by value or reference. */
1895
1896 static void
1897 ipa_analyze_indirect_call_uses (struct ipa_func_body_info *fbi, gcall *call,
1898 tree target)
1899 {
1900 struct ipa_node_params *info = fbi->info;
1901 HOST_WIDE_INT offset;
1902 bool by_ref;
1903
1904 if (SSA_NAME_IS_DEFAULT_DEF (target))
1905 {
1906 tree var = SSA_NAME_VAR (target);
1907 int index = ipa_get_param_decl_index (info, var);
1908 if (index >= 0)
1909 ipa_note_param_call (fbi->node, index, call);
1910 return;
1911 }
1912
1913 int index;
1914 gimple *def = SSA_NAME_DEF_STMT (target);
1915 if (gimple_assign_single_p (def)
1916 && ipa_load_from_parm_agg (fbi, info->descriptors, def,
1917 gimple_assign_rhs1 (def), &index, &offset,
1918 NULL, &by_ref))
1919 {
1920 struct cgraph_edge *cs = ipa_note_param_call (fbi->node, index, call);
1921 cs->indirect_info->offset = offset;
1922 cs->indirect_info->agg_contents = 1;
1923 cs->indirect_info->by_ref = by_ref;
1924 return;
1925 }
1926
1927 /* Now we need to try to match the complex pattern of calling a member
1928 pointer. */
1929 if (gimple_code (def) != GIMPLE_PHI
1930 || gimple_phi_num_args (def) != 2
1931 || !POINTER_TYPE_P (TREE_TYPE (target))
1932 || TREE_CODE (TREE_TYPE (TREE_TYPE (target))) != METHOD_TYPE)
1933 return;
1934
1935 /* First, we need to check whether one of these is a load from a member
1936 pointer that is a parameter to this function. */
1937 tree n1 = PHI_ARG_DEF (def, 0);
1938 tree n2 = PHI_ARG_DEF (def, 1);
1939 if (!ipa_is_ssa_with_stmt_def (n1) || !ipa_is_ssa_with_stmt_def (n2))
1940 return;
1941 gimple *d1 = SSA_NAME_DEF_STMT (n1);
1942 gimple *d2 = SSA_NAME_DEF_STMT (n2);
1943
1944 tree rec;
1945 basic_block bb, virt_bb;
1946 basic_block join = gimple_bb (def);
1947 if ((rec = ipa_get_stmt_member_ptr_load_param (d1, false, &offset)))
1948 {
1949 if (ipa_get_stmt_member_ptr_load_param (d2, false, NULL))
1950 return;
1951
1952 bb = EDGE_PRED (join, 0)->src;
1953 virt_bb = gimple_bb (d2);
1954 }
1955 else if ((rec = ipa_get_stmt_member_ptr_load_param (d2, false, &offset)))
1956 {
1957 bb = EDGE_PRED (join, 1)->src;
1958 virt_bb = gimple_bb (d1);
1959 }
1960 else
1961 return;
1962
1963 /* Second, we need to check that the basic blocks are laid out in the way
1964 corresponding to the pattern. */
1965
1966 if (!single_pred_p (virt_bb) || !single_succ_p (virt_bb)
1967 || single_pred (virt_bb) != bb
1968 || single_succ (virt_bb) != join)
1969 return;
1970
1971 /* Third, let's see that the branching is done depending on the least
1972 significant bit of the pfn. */
1973
1974 gimple *branch = last_stmt (bb);
1975 if (!branch || gimple_code (branch) != GIMPLE_COND)
1976 return;
1977
1978 if ((gimple_cond_code (branch) != NE_EXPR
1979 && gimple_cond_code (branch) != EQ_EXPR)
1980 || !integer_zerop (gimple_cond_rhs (branch)))
1981 return;
1982
1983 tree cond = gimple_cond_lhs (branch);
1984 if (!ipa_is_ssa_with_stmt_def (cond))
1985 return;
1986
1987 def = SSA_NAME_DEF_STMT (cond);
1988 if (!is_gimple_assign (def)
1989 || gimple_assign_rhs_code (def) != BIT_AND_EXPR
1990 || !integer_onep (gimple_assign_rhs2 (def)))
1991 return;
1992
1993 cond = gimple_assign_rhs1 (def);
1994 if (!ipa_is_ssa_with_stmt_def (cond))
1995 return;
1996
1997 def = SSA_NAME_DEF_STMT (cond);
1998
1999 if (is_gimple_assign (def)
2000 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def)))
2001 {
2002 cond = gimple_assign_rhs1 (def);
2003 if (!ipa_is_ssa_with_stmt_def (cond))
2004 return;
2005 def = SSA_NAME_DEF_STMT (cond);
2006 }
2007
2008 tree rec2;
2009 rec2 = ipa_get_stmt_member_ptr_load_param (def,
2010 (TARGET_PTRMEMFUNC_VBIT_LOCATION
2011 == ptrmemfunc_vbit_in_delta),
2012 NULL);
2013 if (rec != rec2)
2014 return;
2015
2016 index = ipa_get_param_decl_index (info, rec);
2017 if (index >= 0
2018 && parm_preserved_before_stmt_p (fbi, index, call, rec))
2019 {
2020 struct cgraph_edge *cs = ipa_note_param_call (fbi->node, index, call);
2021 cs->indirect_info->offset = offset;
2022 cs->indirect_info->agg_contents = 1;
2023 cs->indirect_info->member_ptr = 1;
2024 }
2025
2026 return;
2027 }
2028
2029 /* Analyze a CALL to an OBJ_TYPE_REF which is passed in TARGET and if the
2030 object referenced in the expression is a formal parameter of the caller
2031 FBI->node (described by FBI->info), create a call note for the
2032 statement. */
2033
2034 static void
2035 ipa_analyze_virtual_call_uses (struct ipa_func_body_info *fbi,
2036 gcall *call, tree target)
2037 {
2038 tree obj = OBJ_TYPE_REF_OBJECT (target);
2039 int index;
2040 HOST_WIDE_INT anc_offset;
2041
2042 if (!flag_devirtualize)
2043 return;
2044
2045 if (TREE_CODE (obj) != SSA_NAME)
2046 return;
2047
2048 struct ipa_node_params *info = fbi->info;
2049 if (SSA_NAME_IS_DEFAULT_DEF (obj))
2050 {
2051 struct ipa_jump_func jfunc;
2052 if (TREE_CODE (SSA_NAME_VAR (obj)) != PARM_DECL)
2053 return;
2054
2055 anc_offset = 0;
2056 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (obj));
2057 gcc_assert (index >= 0);
2058 if (detect_type_change_ssa (obj, obj_type_ref_class (target),
2059 call, &jfunc))
2060 return;
2061 }
2062 else
2063 {
2064 struct ipa_jump_func jfunc;
2065 gimple *stmt = SSA_NAME_DEF_STMT (obj);
2066 tree expr;
2067
2068 expr = get_ancestor_addr_info (stmt, &obj, &anc_offset);
2069 if (!expr)
2070 return;
2071 index = ipa_get_param_decl_index (info,
2072 SSA_NAME_VAR (TREE_OPERAND (expr, 0)));
2073 gcc_assert (index >= 0);
2074 if (detect_type_change (obj, expr, obj_type_ref_class (target),
2075 call, &jfunc, anc_offset))
2076 return;
2077 }
2078
2079 struct cgraph_edge *cs = ipa_note_param_call (fbi->node, index, call);
2080 struct cgraph_indirect_call_info *ii = cs->indirect_info;
2081 ii->offset = anc_offset;
2082 ii->otr_token = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
2083 ii->otr_type = obj_type_ref_class (target);
2084 ii->polymorphic = 1;
2085 }
2086
2087 /* Analyze a call statement CALL whether and how it utilizes formal parameters
2088 of the caller (described by INFO). PARMS_AINFO is a pointer to a vector
2089 containing intermediate information about each formal parameter. */
2090
2091 static void
2092 ipa_analyze_call_uses (struct ipa_func_body_info *fbi, gcall *call)
2093 {
2094 tree target = gimple_call_fn (call);
2095
2096 if (!target
2097 || (TREE_CODE (target) != SSA_NAME
2098 && !virtual_method_call_p (target)))
2099 return;
2100
2101 struct cgraph_edge *cs = fbi->node->get_edge (call);
2102 /* If we previously turned the call into a direct call, there is
2103 no need to analyze. */
2104 if (cs && !cs->indirect_unknown_callee)
2105 return;
2106
2107 if (cs->indirect_info->polymorphic && flag_devirtualize)
2108 {
2109 tree instance;
2110 tree target = gimple_call_fn (call);
2111 ipa_polymorphic_call_context context (current_function_decl,
2112 target, call, &instance);
2113
2114 gcc_checking_assert (cs->indirect_info->otr_type
2115 == obj_type_ref_class (target));
2116 gcc_checking_assert (cs->indirect_info->otr_token
2117 == tree_to_shwi (OBJ_TYPE_REF_TOKEN (target)));
2118
2119 cs->indirect_info->vptr_changed
2120 = !context.get_dynamic_type (instance,
2121 OBJ_TYPE_REF_OBJECT (target),
2122 obj_type_ref_class (target), call);
2123 cs->indirect_info->context = context;
2124 }
2125
2126 if (TREE_CODE (target) == SSA_NAME)
2127 ipa_analyze_indirect_call_uses (fbi, call, target);
2128 else if (virtual_method_call_p (target))
2129 ipa_analyze_virtual_call_uses (fbi, call, target);
2130 }
2131
2132
2133 /* Analyze the call statement STMT with respect to formal parameters (described
2134 in INFO) of caller given by FBI->NODE. Currently it only checks whether
2135 formal parameters are called. */
2136
2137 static void
2138 ipa_analyze_stmt_uses (struct ipa_func_body_info *fbi, gimple *stmt)
2139 {
2140 if (is_gimple_call (stmt))
2141 ipa_analyze_call_uses (fbi, as_a <gcall *> (stmt));
2142 }
2143
2144 /* Callback of walk_stmt_load_store_addr_ops for the visit_load.
2145 If OP is a parameter declaration, mark it as used in the info structure
2146 passed in DATA. */
2147
2148 static bool
2149 visit_ref_for_mod_analysis (gimple *, tree op, tree, void *data)
2150 {
2151 struct ipa_node_params *info = (struct ipa_node_params *) data;
2152
2153 op = get_base_address (op);
2154 if (op
2155 && TREE_CODE (op) == PARM_DECL)
2156 {
2157 int index = ipa_get_param_decl_index (info, op);
2158 gcc_assert (index >= 0);
2159 ipa_set_param_used (info, index, true);
2160 }
2161
2162 return false;
2163 }
2164
2165 /* Scan the statements in BB and inspect the uses of formal parameters. Store
2166 the findings in various structures of the associated ipa_node_params
2167 structure, such as parameter flags, notes etc. FBI holds various data about
2168 the function being analyzed. */
2169
2170 static void
2171 ipa_analyze_params_uses_in_bb (struct ipa_func_body_info *fbi, basic_block bb)
2172 {
2173 gimple_stmt_iterator gsi;
2174 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2175 {
2176 gimple *stmt = gsi_stmt (gsi);
2177
2178 if (is_gimple_debug (stmt))
2179 continue;
2180
2181 ipa_analyze_stmt_uses (fbi, stmt);
2182 walk_stmt_load_store_addr_ops (stmt, fbi->info,
2183 visit_ref_for_mod_analysis,
2184 visit_ref_for_mod_analysis,
2185 visit_ref_for_mod_analysis);
2186 }
2187 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2188 walk_stmt_load_store_addr_ops (gsi_stmt (gsi), fbi->info,
2189 visit_ref_for_mod_analysis,
2190 visit_ref_for_mod_analysis,
2191 visit_ref_for_mod_analysis);
2192 }
2193
2194 /* Calculate controlled uses of parameters of NODE. */
2195
2196 static void
2197 ipa_analyze_controlled_uses (struct cgraph_node *node)
2198 {
2199 struct ipa_node_params *info = IPA_NODE_REF (node);
2200
2201 for (int i = 0; i < ipa_get_param_count (info); i++)
2202 {
2203 tree parm = ipa_get_param (info, i);
2204 int controlled_uses = 0;
2205
2206 /* For SSA regs see if parameter is used. For non-SSA we compute
2207 the flag during modification analysis. */
2208 if (is_gimple_reg (parm))
2209 {
2210 tree ddef = ssa_default_def (DECL_STRUCT_FUNCTION (node->decl),
2211 parm);
2212 if (ddef && !has_zero_uses (ddef))
2213 {
2214 imm_use_iterator imm_iter;
2215 use_operand_p use_p;
2216
2217 ipa_set_param_used (info, i, true);
2218 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, ddef)
2219 if (!is_gimple_call (USE_STMT (use_p)))
2220 {
2221 if (!is_gimple_debug (USE_STMT (use_p)))
2222 {
2223 controlled_uses = IPA_UNDESCRIBED_USE;
2224 break;
2225 }
2226 }
2227 else
2228 controlled_uses++;
2229 }
2230 else
2231 controlled_uses = 0;
2232 }
2233 else
2234 controlled_uses = IPA_UNDESCRIBED_USE;
2235 ipa_set_controlled_uses (info, i, controlled_uses);
2236 }
2237 }
2238
2239 /* Free stuff in BI. */
2240
2241 static void
2242 free_ipa_bb_info (struct ipa_bb_info *bi)
2243 {
2244 bi->cg_edges.release ();
2245 bi->param_aa_statuses.release ();
2246 }
2247
2248 /* Dominator walker driving the analysis. */
2249
2250 class analysis_dom_walker : public dom_walker
2251 {
2252 public:
2253 analysis_dom_walker (struct ipa_func_body_info *fbi)
2254 : dom_walker (CDI_DOMINATORS), m_fbi (fbi) {}
2255
2256 virtual void before_dom_children (basic_block);
2257
2258 private:
2259 struct ipa_func_body_info *m_fbi;
2260 };
2261
2262 void
2263 analysis_dom_walker::before_dom_children (basic_block bb)
2264 {
2265 ipa_analyze_params_uses_in_bb (m_fbi, bb);
2266 ipa_compute_jump_functions_for_bb (m_fbi, bb);
2267 }
2268
2269 /* Initialize the array describing properties of formal parameters
2270 of NODE, analyze their uses and compute jump functions associated
2271 with actual arguments of calls from within NODE. */
2272
2273 void
2274 ipa_analyze_node (struct cgraph_node *node)
2275 {
2276 struct ipa_func_body_info fbi;
2277 struct ipa_node_params *info;
2278
2279 ipa_check_create_node_params ();
2280 ipa_check_create_edge_args ();
2281 info = IPA_NODE_REF (node);
2282
2283 if (info->analysis_done)
2284 return;
2285 info->analysis_done = 1;
2286
2287 if (ipa_func_spec_opts_forbid_analysis_p (node))
2288 {
2289 for (int i = 0; i < ipa_get_param_count (info); i++)
2290 {
2291 ipa_set_param_used (info, i, true);
2292 ipa_set_controlled_uses (info, i, IPA_UNDESCRIBED_USE);
2293 }
2294 return;
2295 }
2296
2297 struct function *func = DECL_STRUCT_FUNCTION (node->decl);
2298 push_cfun (func);
2299 calculate_dominance_info (CDI_DOMINATORS);
2300 ipa_initialize_node_params (node);
2301 ipa_analyze_controlled_uses (node);
2302
2303 fbi.node = node;
2304 fbi.info = IPA_NODE_REF (node);
2305 fbi.bb_infos = vNULL;
2306 fbi.bb_infos.safe_grow_cleared (last_basic_block_for_fn (cfun));
2307 fbi.param_count = ipa_get_param_count (info);
2308 fbi.aa_walked = 0;
2309
2310 for (struct cgraph_edge *cs = node->callees; cs; cs = cs->next_callee)
2311 {
2312 ipa_bb_info *bi = ipa_get_bb_info (&fbi, gimple_bb (cs->call_stmt));
2313 bi->cg_edges.safe_push (cs);
2314 }
2315
2316 for (struct cgraph_edge *cs = node->indirect_calls; cs; cs = cs->next_callee)
2317 {
2318 ipa_bb_info *bi = ipa_get_bb_info (&fbi, gimple_bb (cs->call_stmt));
2319 bi->cg_edges.safe_push (cs);
2320 }
2321
2322 analysis_dom_walker (&fbi).walk (ENTRY_BLOCK_PTR_FOR_FN (cfun));
2323
2324 int i;
2325 struct ipa_bb_info *bi;
2326 FOR_EACH_VEC_ELT (fbi.bb_infos, i, bi)
2327 free_ipa_bb_info (bi);
2328 fbi.bb_infos.release ();
2329 free_dominance_info (CDI_DOMINATORS);
2330 pop_cfun ();
2331 }
2332
2333 /* Update the jump functions associated with call graph edge E when the call
2334 graph edge CS is being inlined, assuming that E->caller is already (possibly
2335 indirectly) inlined into CS->callee and that E has not been inlined. */
2336
2337 static void
2338 update_jump_functions_after_inlining (struct cgraph_edge *cs,
2339 struct cgraph_edge *e)
2340 {
2341 struct ipa_edge_args *top = IPA_EDGE_REF (cs);
2342 struct ipa_edge_args *args = IPA_EDGE_REF (e);
2343 int count = ipa_get_cs_argument_count (args);
2344 int i;
2345
2346 for (i = 0; i < count; i++)
2347 {
2348 struct ipa_jump_func *dst = ipa_get_ith_jump_func (args, i);
2349 struct ipa_polymorphic_call_context *dst_ctx
2350 = ipa_get_ith_polymorhic_call_context (args, i);
2351
2352 if (dst->type == IPA_JF_ANCESTOR)
2353 {
2354 struct ipa_jump_func *src;
2355 int dst_fid = dst->value.ancestor.formal_id;
2356 struct ipa_polymorphic_call_context *src_ctx
2357 = ipa_get_ith_polymorhic_call_context (top, dst_fid);
2358
2359 /* Variable number of arguments can cause havoc if we try to access
2360 one that does not exist in the inlined edge. So make sure we
2361 don't. */
2362 if (dst_fid >= ipa_get_cs_argument_count (top))
2363 {
2364 ipa_set_jf_unknown (dst);
2365 continue;
2366 }
2367
2368 src = ipa_get_ith_jump_func (top, dst_fid);
2369
2370 if (src_ctx && !src_ctx->useless_p ())
2371 {
2372 struct ipa_polymorphic_call_context ctx = *src_ctx;
2373
2374 /* TODO: Make type preserved safe WRT contexts. */
2375 if (!ipa_get_jf_ancestor_type_preserved (dst))
2376 ctx.possible_dynamic_type_change (e->in_polymorphic_cdtor);
2377 ctx.offset_by (dst->value.ancestor.offset);
2378 if (!ctx.useless_p ())
2379 {
2380 if (!dst_ctx)
2381 {
2382 vec_safe_grow_cleared (args->polymorphic_call_contexts,
2383 count);
2384 dst_ctx = ipa_get_ith_polymorhic_call_context (args, i);
2385 }
2386
2387 dst_ctx->combine_with (ctx);
2388 }
2389 }
2390
2391 if (src->agg.items
2392 && (dst->value.ancestor.agg_preserved || !src->agg.by_ref))
2393 {
2394 struct ipa_agg_jf_item *item;
2395 int j;
2396
2397 /* Currently we do not produce clobber aggregate jump functions,
2398 replace with merging when we do. */
2399 gcc_assert (!dst->agg.items);
2400
2401 dst->agg.items = vec_safe_copy (src->agg.items);
2402 dst->agg.by_ref = src->agg.by_ref;
2403 FOR_EACH_VEC_SAFE_ELT (dst->agg.items, j, item)
2404 item->offset -= dst->value.ancestor.offset;
2405 }
2406
2407 if (src->type == IPA_JF_PASS_THROUGH
2408 && src->value.pass_through.operation == NOP_EXPR)
2409 {
2410 dst->value.ancestor.formal_id = src->value.pass_through.formal_id;
2411 dst->value.ancestor.agg_preserved &=
2412 src->value.pass_through.agg_preserved;
2413 }
2414 else if (src->type == IPA_JF_ANCESTOR)
2415 {
2416 dst->value.ancestor.formal_id = src->value.ancestor.formal_id;
2417 dst->value.ancestor.offset += src->value.ancestor.offset;
2418 dst->value.ancestor.agg_preserved &=
2419 src->value.ancestor.agg_preserved;
2420 }
2421 else
2422 ipa_set_jf_unknown (dst);
2423 }
2424 else if (dst->type == IPA_JF_PASS_THROUGH)
2425 {
2426 struct ipa_jump_func *src;
2427 /* We must check range due to calls with variable number of arguments
2428 and we cannot combine jump functions with operations. */
2429 if (dst->value.pass_through.operation == NOP_EXPR
2430 && (dst->value.pass_through.formal_id
2431 < ipa_get_cs_argument_count (top)))
2432 {
2433 int dst_fid = dst->value.pass_through.formal_id;
2434 src = ipa_get_ith_jump_func (top, dst_fid);
2435 bool dst_agg_p = ipa_get_jf_pass_through_agg_preserved (dst);
2436 struct ipa_polymorphic_call_context *src_ctx
2437 = ipa_get_ith_polymorhic_call_context (top, dst_fid);
2438
2439 if (src_ctx && !src_ctx->useless_p ())
2440 {
2441 struct ipa_polymorphic_call_context ctx = *src_ctx;
2442
2443 /* TODO: Make type preserved safe WRT contexts. */
2444 if (!ipa_get_jf_pass_through_type_preserved (dst))
2445 ctx.possible_dynamic_type_change (e->in_polymorphic_cdtor);
2446 if (!ctx.useless_p ())
2447 {
2448 if (!dst_ctx)
2449 {
2450 vec_safe_grow_cleared (args->polymorphic_call_contexts,
2451 count);
2452 dst_ctx = ipa_get_ith_polymorhic_call_context (args, i);
2453 }
2454 dst_ctx->combine_with (ctx);
2455 }
2456 }
2457 switch (src->type)
2458 {
2459 case IPA_JF_UNKNOWN:
2460 ipa_set_jf_unknown (dst);
2461 break;
2462 case IPA_JF_CONST:
2463 ipa_set_jf_cst_copy (dst, src);
2464 break;
2465
2466 case IPA_JF_PASS_THROUGH:
2467 {
2468 int formal_id = ipa_get_jf_pass_through_formal_id (src);
2469 enum tree_code operation;
2470 operation = ipa_get_jf_pass_through_operation (src);
2471
2472 if (operation == NOP_EXPR)
2473 {
2474 bool agg_p;
2475 agg_p = dst_agg_p
2476 && ipa_get_jf_pass_through_agg_preserved (src);
2477 ipa_set_jf_simple_pass_through (dst, formal_id, agg_p);
2478 }
2479 else
2480 {
2481 tree operand = ipa_get_jf_pass_through_operand (src);
2482 ipa_set_jf_arith_pass_through (dst, formal_id, operand,
2483 operation);
2484 }
2485 break;
2486 }
2487 case IPA_JF_ANCESTOR:
2488 {
2489 bool agg_p;
2490 agg_p = dst_agg_p
2491 && ipa_get_jf_ancestor_agg_preserved (src);
2492 ipa_set_ancestor_jf (dst,
2493 ipa_get_jf_ancestor_offset (src),
2494 ipa_get_jf_ancestor_formal_id (src),
2495 agg_p);
2496 break;
2497 }
2498 default:
2499 gcc_unreachable ();
2500 }
2501
2502 if (src->agg.items
2503 && (dst_agg_p || !src->agg.by_ref))
2504 {
2505 /* Currently we do not produce clobber aggregate jump
2506 functions, replace with merging when we do. */
2507 gcc_assert (!dst->agg.items);
2508
2509 dst->agg.by_ref = src->agg.by_ref;
2510 dst->agg.items = vec_safe_copy (src->agg.items);
2511 }
2512 }
2513 else
2514 ipa_set_jf_unknown (dst);
2515 }
2516 }
2517 }
2518
2519 /* If TARGET is an addr_expr of a function declaration, make it the
2520 (SPECULATIVE)destination of an indirect edge IE and return the edge.
2521 Otherwise, return NULL. */
2522
2523 struct cgraph_edge *
2524 ipa_make_edge_direct_to_target (struct cgraph_edge *ie, tree target,
2525 bool speculative)
2526 {
2527 struct cgraph_node *callee;
2528 struct inline_edge_summary *es = inline_edge_summary (ie);
2529 bool unreachable = false;
2530
2531 if (TREE_CODE (target) == ADDR_EXPR)
2532 target = TREE_OPERAND (target, 0);
2533 if (TREE_CODE (target) != FUNCTION_DECL)
2534 {
2535 target = canonicalize_constructor_val (target, NULL);
2536 if (!target || TREE_CODE (target) != FUNCTION_DECL)
2537 {
2538 /* Member pointer call that goes through a VMT lookup. */
2539 if (ie->indirect_info->member_ptr
2540 /* Or if target is not an invariant expression and we do not
2541 know if it will evaulate to function at runtime.
2542 This can happen when folding through &VAR, where &VAR
2543 is IP invariant, but VAR itself is not.
2544
2545 TODO: Revisit this when GCC 5 is branched. It seems that
2546 member_ptr check is not needed and that we may try to fold
2547 the expression and see if VAR is readonly. */
2548 || !is_gimple_ip_invariant (target))
2549 {
2550 if (dump_enabled_p ())
2551 {
2552 location_t loc = gimple_location_safe (ie->call_stmt);
2553 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
2554 "discovered direct call non-invariant "
2555 "%s/%i\n",
2556 ie->caller->name (), ie->caller->order);
2557 }
2558 return NULL;
2559 }
2560
2561
2562 if (dump_enabled_p ())
2563 {
2564 location_t loc = gimple_location_safe (ie->call_stmt);
2565 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
2566 "discovered direct call to non-function in %s/%i, "
2567 "making it __builtin_unreachable\n",
2568 ie->caller->name (), ie->caller->order);
2569 }
2570
2571 target = builtin_decl_implicit (BUILT_IN_UNREACHABLE);
2572 callee = cgraph_node::get_create (target);
2573 unreachable = true;
2574 }
2575 else
2576 callee = cgraph_node::get (target);
2577 }
2578 else
2579 callee = cgraph_node::get (target);
2580
2581 /* Because may-edges are not explicitely represented and vtable may be external,
2582 we may create the first reference to the object in the unit. */
2583 if (!callee || callee->global.inlined_to)
2584 {
2585
2586 /* We are better to ensure we can refer to it.
2587 In the case of static functions we are out of luck, since we already
2588 removed its body. In the case of public functions we may or may
2589 not introduce the reference. */
2590 if (!canonicalize_constructor_val (target, NULL)
2591 || !TREE_PUBLIC (target))
2592 {
2593 if (dump_file)
2594 fprintf (dump_file, "ipa-prop: Discovered call to a known target "
2595 "(%s/%i -> %s/%i) but can not refer to it. Giving up.\n",
2596 xstrdup_for_dump (ie->caller->name ()),
2597 ie->caller->order,
2598 xstrdup_for_dump (ie->callee->name ()),
2599 ie->callee->order);
2600 return NULL;
2601 }
2602 callee = cgraph_node::get_create (target);
2603 }
2604
2605 /* If the edge is already speculated. */
2606 if (speculative && ie->speculative)
2607 {
2608 struct cgraph_edge *e2;
2609 struct ipa_ref *ref;
2610 ie->speculative_call_info (e2, ie, ref);
2611 if (e2->callee->ultimate_alias_target ()
2612 != callee->ultimate_alias_target ())
2613 {
2614 if (dump_file)
2615 fprintf (dump_file, "ipa-prop: Discovered call to a speculative target "
2616 "(%s/%i -> %s/%i) but the call is already speculated to %s/%i. Giving up.\n",
2617 xstrdup_for_dump (ie->caller->name ()),
2618 ie->caller->order,
2619 xstrdup_for_dump (callee->name ()),
2620 callee->order,
2621 xstrdup_for_dump (e2->callee->name ()),
2622 e2->callee->order);
2623 }
2624 else
2625 {
2626 if (dump_file)
2627 fprintf (dump_file, "ipa-prop: Discovered call to a speculative target "
2628 "(%s/%i -> %s/%i) this agree with previous speculation.\n",
2629 xstrdup_for_dump (ie->caller->name ()),
2630 ie->caller->order,
2631 xstrdup_for_dump (callee->name ()),
2632 callee->order);
2633 }
2634 return NULL;
2635 }
2636
2637 if (!dbg_cnt (devirt))
2638 return NULL;
2639
2640 ipa_check_create_node_params ();
2641
2642 /* We can not make edges to inline clones. It is bug that someone removed
2643 the cgraph node too early. */
2644 gcc_assert (!callee->global.inlined_to);
2645
2646 if (dump_file && !unreachable)
2647 {
2648 fprintf (dump_file, "ipa-prop: Discovered %s call to a %s target "
2649 "(%s/%i -> %s/%i), for stmt ",
2650 ie->indirect_info->polymorphic ? "a virtual" : "an indirect",
2651 speculative ? "speculative" : "known",
2652 xstrdup_for_dump (ie->caller->name ()),
2653 ie->caller->order,
2654 xstrdup_for_dump (callee->name ()),
2655 callee->order);
2656 if (ie->call_stmt)
2657 print_gimple_stmt (dump_file, ie->call_stmt, 2, TDF_SLIM);
2658 else
2659 fprintf (dump_file, "with uid %i\n", ie->lto_stmt_uid);
2660 }
2661 if (dump_enabled_p ())
2662 {
2663 location_t loc = gimple_location_safe (ie->call_stmt);
2664
2665 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
2666 "converting indirect call in %s to direct call to %s\n",
2667 ie->caller->name (), callee->name ());
2668 }
2669 if (!speculative)
2670 {
2671 struct cgraph_edge *orig = ie;
2672 ie = ie->make_direct (callee);
2673 /* If we resolved speculative edge the cost is already up to date
2674 for direct call (adjusted by inline_edge_duplication_hook). */
2675 if (ie == orig)
2676 {
2677 es = inline_edge_summary (ie);
2678 es->call_stmt_size -= (eni_size_weights.indirect_call_cost
2679 - eni_size_weights.call_cost);
2680 es->call_stmt_time -= (eni_time_weights.indirect_call_cost
2681 - eni_time_weights.call_cost);
2682 }
2683 }
2684 else
2685 {
2686 if (!callee->can_be_discarded_p ())
2687 {
2688 cgraph_node *alias;
2689 alias = dyn_cast<cgraph_node *> (callee->noninterposable_alias ());
2690 if (alias)
2691 callee = alias;
2692 }
2693 /* make_speculative will update ie's cost to direct call cost. */
2694 ie = ie->make_speculative
2695 (callee, ie->count * 8 / 10, ie->frequency * 8 / 10);
2696 }
2697
2698 return ie;
2699 }
2700
2701 /* Retrieve value from aggregate jump function AGG for the given OFFSET or
2702 return NULL if there is not any. BY_REF specifies whether the value has to
2703 be passed by reference or by value. */
2704
2705 tree
2706 ipa_find_agg_cst_for_param (struct ipa_agg_jump_function *agg,
2707 HOST_WIDE_INT offset, bool by_ref)
2708 {
2709 struct ipa_agg_jf_item *item;
2710 int i;
2711
2712 if (by_ref != agg->by_ref)
2713 return NULL;
2714
2715 FOR_EACH_VEC_SAFE_ELT (agg->items, i, item)
2716 if (item->offset == offset)
2717 {
2718 /* Currently we do not have clobber values, return NULL for them once
2719 we do. */
2720 gcc_checking_assert (is_gimple_ip_invariant (item->value));
2721 return item->value;
2722 }
2723 return NULL;
2724 }
2725
2726 /* Remove a reference to SYMBOL from the list of references of a node given by
2727 reference description RDESC. Return true if the reference has been
2728 successfully found and removed. */
2729
2730 static bool
2731 remove_described_reference (symtab_node *symbol, struct ipa_cst_ref_desc *rdesc)
2732 {
2733 struct ipa_ref *to_del;
2734 struct cgraph_edge *origin;
2735
2736 origin = rdesc->cs;
2737 if (!origin)
2738 return false;
2739 to_del = origin->caller->find_reference (symbol, origin->call_stmt,
2740 origin->lto_stmt_uid);
2741 if (!to_del)
2742 return false;
2743
2744 to_del->remove_reference ();
2745 if (dump_file)
2746 fprintf (dump_file, "ipa-prop: Removed a reference from %s/%i to %s.\n",
2747 xstrdup_for_dump (origin->caller->name ()),
2748 origin->caller->order, xstrdup_for_dump (symbol->name ()));
2749 return true;
2750 }
2751
2752 /* If JFUNC has a reference description with refcount different from
2753 IPA_UNDESCRIBED_USE, return the reference description, otherwise return
2754 NULL. JFUNC must be a constant jump function. */
2755
2756 static struct ipa_cst_ref_desc *
2757 jfunc_rdesc_usable (struct ipa_jump_func *jfunc)
2758 {
2759 struct ipa_cst_ref_desc *rdesc = ipa_get_jf_constant_rdesc (jfunc);
2760 if (rdesc && rdesc->refcount != IPA_UNDESCRIBED_USE)
2761 return rdesc;
2762 else
2763 return NULL;
2764 }
2765
2766 /* If the value of constant jump function JFUNC is an address of a function
2767 declaration, return the associated call graph node. Otherwise return
2768 NULL. */
2769
2770 static cgraph_node *
2771 cgraph_node_for_jfunc (struct ipa_jump_func *jfunc)
2772 {
2773 gcc_checking_assert (jfunc->type == IPA_JF_CONST);
2774 tree cst = ipa_get_jf_constant (jfunc);
2775 if (TREE_CODE (cst) != ADDR_EXPR
2776 || TREE_CODE (TREE_OPERAND (cst, 0)) != FUNCTION_DECL)
2777 return NULL;
2778
2779 return cgraph_node::get (TREE_OPERAND (cst, 0));
2780 }
2781
2782
2783 /* If JFUNC is a constant jump function with a usable rdesc, decrement its
2784 refcount and if it hits zero, remove reference to SYMBOL from the caller of
2785 the edge specified in the rdesc. Return false if either the symbol or the
2786 reference could not be found, otherwise return true. */
2787
2788 static bool
2789 try_decrement_rdesc_refcount (struct ipa_jump_func *jfunc)
2790 {
2791 struct ipa_cst_ref_desc *rdesc;
2792 if (jfunc->type == IPA_JF_CONST
2793 && (rdesc = jfunc_rdesc_usable (jfunc))
2794 && --rdesc->refcount == 0)
2795 {
2796 symtab_node *symbol = cgraph_node_for_jfunc (jfunc);
2797 if (!symbol)
2798 return false;
2799
2800 return remove_described_reference (symbol, rdesc);
2801 }
2802 return true;
2803 }
2804
2805 /* Try to find a destination for indirect edge IE that corresponds to a simple
2806 call or a call of a member function pointer and where the destination is a
2807 pointer formal parameter described by jump function JFUNC. If it can be
2808 determined, return the newly direct edge, otherwise return NULL.
2809 NEW_ROOT_INFO is the node info that JFUNC lattices are relative to. */
2810
2811 static struct cgraph_edge *
2812 try_make_edge_direct_simple_call (struct cgraph_edge *ie,
2813 struct ipa_jump_func *jfunc,
2814 struct ipa_node_params *new_root_info)
2815 {
2816 struct cgraph_edge *cs;
2817 tree target;
2818 bool agg_contents = ie->indirect_info->agg_contents;
2819
2820 if (ie->indirect_info->agg_contents)
2821 target = ipa_find_agg_cst_for_param (&jfunc->agg,
2822 ie->indirect_info->offset,
2823 ie->indirect_info->by_ref);
2824 else
2825 target = ipa_value_from_jfunc (new_root_info, jfunc);
2826 if (!target)
2827 return NULL;
2828 cs = ipa_make_edge_direct_to_target (ie, target);
2829
2830 if (cs && !agg_contents)
2831 {
2832 bool ok;
2833 gcc_checking_assert (cs->callee
2834 && (cs != ie
2835 || jfunc->type != IPA_JF_CONST
2836 || !cgraph_node_for_jfunc (jfunc)
2837 || cs->callee == cgraph_node_for_jfunc (jfunc)));
2838 ok = try_decrement_rdesc_refcount (jfunc);
2839 gcc_checking_assert (ok);
2840 }
2841
2842 return cs;
2843 }
2844
2845 /* Return the target to be used in cases of impossible devirtualization. IE
2846 and target (the latter can be NULL) are dumped when dumping is enabled. */
2847
2848 tree
2849 ipa_impossible_devirt_target (struct cgraph_edge *ie, tree target)
2850 {
2851 if (dump_file)
2852 {
2853 if (target)
2854 fprintf (dump_file,
2855 "Type inconsistent devirtualization: %s/%i->%s\n",
2856 ie->caller->name (), ie->caller->order,
2857 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (target)));
2858 else
2859 fprintf (dump_file,
2860 "No devirtualization target in %s/%i\n",
2861 ie->caller->name (), ie->caller->order);
2862 }
2863 tree new_target = builtin_decl_implicit (BUILT_IN_UNREACHABLE);
2864 cgraph_node::get_create (new_target);
2865 return new_target;
2866 }
2867
2868 /* Try to find a destination for indirect edge IE that corresponds to a virtual
2869 call based on a formal parameter which is described by jump function JFUNC
2870 and if it can be determined, make it direct and return the direct edge.
2871 Otherwise, return NULL. CTX describes the polymorphic context that the
2872 parameter the call is based on brings along with it. */
2873
2874 static struct cgraph_edge *
2875 try_make_edge_direct_virtual_call (struct cgraph_edge *ie,
2876 struct ipa_jump_func *jfunc,
2877 struct ipa_polymorphic_call_context ctx)
2878 {
2879 tree target = NULL;
2880 bool speculative = false;
2881
2882 if (!opt_for_fn (ie->caller->decl, flag_devirtualize))
2883 return NULL;
2884
2885 gcc_assert (!ie->indirect_info->by_ref);
2886
2887 /* Try to do lookup via known virtual table pointer value. */
2888 if (!ie->indirect_info->vptr_changed
2889 || opt_for_fn (ie->caller->decl, flag_devirtualize_speculatively))
2890 {
2891 tree vtable;
2892 unsigned HOST_WIDE_INT offset;
2893 tree t = ipa_find_agg_cst_for_param (&jfunc->agg,
2894 ie->indirect_info->offset,
2895 true);
2896 if (t && vtable_pointer_value_to_vtable (t, &vtable, &offset))
2897 {
2898 t = gimple_get_virt_method_for_vtable (ie->indirect_info->otr_token,
2899 vtable, offset);
2900 if (t)
2901 {
2902 if ((TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE
2903 && DECL_FUNCTION_CODE (t) == BUILT_IN_UNREACHABLE)
2904 || !possible_polymorphic_call_target_p
2905 (ie, cgraph_node::get (t)))
2906 {
2907 /* Do not speculate builtin_unreachable, it is stupid! */
2908 if (!ie->indirect_info->vptr_changed)
2909 target = ipa_impossible_devirt_target (ie, target);
2910 }
2911 else
2912 {
2913 target = t;
2914 speculative = ie->indirect_info->vptr_changed;
2915 }
2916 }
2917 }
2918 }
2919
2920 ipa_polymorphic_call_context ie_context (ie);
2921 vec <cgraph_node *>targets;
2922 bool final;
2923
2924 ctx.offset_by (ie->indirect_info->offset);
2925 if (ie->indirect_info->vptr_changed)
2926 ctx.possible_dynamic_type_change (ie->in_polymorphic_cdtor,
2927 ie->indirect_info->otr_type);
2928 ctx.combine_with (ie_context, ie->indirect_info->otr_type);
2929 targets = possible_polymorphic_call_targets
2930 (ie->indirect_info->otr_type,
2931 ie->indirect_info->otr_token,
2932 ctx, &final);
2933 if (final && targets.length () <= 1)
2934 {
2935 speculative = false;
2936 if (targets.length () == 1)
2937 target = targets[0]->decl;
2938 else
2939 target = ipa_impossible_devirt_target (ie, NULL_TREE);
2940 }
2941 else if (!target && opt_for_fn (ie->caller->decl, flag_devirtualize_speculatively)
2942 && !ie->speculative && ie->maybe_hot_p ())
2943 {
2944 cgraph_node *n;
2945 n = try_speculative_devirtualization (ie->indirect_info->otr_type,
2946 ie->indirect_info->otr_token,
2947 ie->indirect_info->context);
2948 if (n)
2949 {
2950 target = n->decl;
2951 speculative = true;
2952 }
2953 }
2954
2955 if (target)
2956 {
2957 if (!possible_polymorphic_call_target_p
2958 (ie, cgraph_node::get_create (target)))
2959 {
2960 if (speculative)
2961 return NULL;
2962 target = ipa_impossible_devirt_target (ie, target);
2963 }
2964 return ipa_make_edge_direct_to_target (ie, target, speculative);
2965 }
2966 else
2967 return NULL;
2968 }
2969
2970 /* Update the param called notes associated with NODE when CS is being inlined,
2971 assuming NODE is (potentially indirectly) inlined into CS->callee.
2972 Moreover, if the callee is discovered to be constant, create a new cgraph
2973 edge for it. Newly discovered indirect edges will be added to *NEW_EDGES,
2974 unless NEW_EDGES is NULL. Return true iff a new edge(s) were created. */
2975
2976 static bool
2977 update_indirect_edges_after_inlining (struct cgraph_edge *cs,
2978 struct cgraph_node *node,
2979 vec<cgraph_edge *> *new_edges)
2980 {
2981 struct ipa_edge_args *top;
2982 struct cgraph_edge *ie, *next_ie, *new_direct_edge;
2983 struct ipa_node_params *new_root_info;
2984 bool res = false;
2985
2986 ipa_check_create_edge_args ();
2987 top = IPA_EDGE_REF (cs);
2988 new_root_info = IPA_NODE_REF (cs->caller->global.inlined_to
2989 ? cs->caller->global.inlined_to
2990 : cs->caller);
2991
2992 for (ie = node->indirect_calls; ie; ie = next_ie)
2993 {
2994 struct cgraph_indirect_call_info *ici = ie->indirect_info;
2995 struct ipa_jump_func *jfunc;
2996 int param_index;
2997 cgraph_node *spec_target = NULL;
2998
2999 next_ie = ie->next_callee;
3000
3001 if (ici->param_index == -1)
3002 continue;
3003
3004 /* We must check range due to calls with variable number of arguments: */
3005 if (ici->param_index >= ipa_get_cs_argument_count (top))
3006 {
3007 ici->param_index = -1;
3008 continue;
3009 }
3010
3011 param_index = ici->param_index;
3012 jfunc = ipa_get_ith_jump_func (top, param_index);
3013
3014 if (ie->speculative)
3015 {
3016 struct cgraph_edge *de;
3017 struct ipa_ref *ref;
3018 ie->speculative_call_info (de, ie, ref);
3019 spec_target = de->callee;
3020 }
3021
3022 if (!opt_for_fn (node->decl, flag_indirect_inlining))
3023 new_direct_edge = NULL;
3024 else if (ici->polymorphic)
3025 {
3026 ipa_polymorphic_call_context ctx;
3027 ctx = ipa_context_from_jfunc (new_root_info, cs, param_index, jfunc);
3028 new_direct_edge = try_make_edge_direct_virtual_call (ie, jfunc, ctx);
3029 }
3030 else
3031 new_direct_edge = try_make_edge_direct_simple_call (ie, jfunc,
3032 new_root_info);
3033 /* If speculation was removed, then we need to do nothing. */
3034 if (new_direct_edge && new_direct_edge != ie
3035 && new_direct_edge->callee == spec_target)
3036 {
3037 new_direct_edge->indirect_inlining_edge = 1;
3038 top = IPA_EDGE_REF (cs);
3039 res = true;
3040 if (!new_direct_edge->speculative)
3041 continue;
3042 }
3043 else if (new_direct_edge)
3044 {
3045 new_direct_edge->indirect_inlining_edge = 1;
3046 if (new_direct_edge->call_stmt)
3047 new_direct_edge->call_stmt_cannot_inline_p
3048 = !gimple_check_call_matching_types (
3049 new_direct_edge->call_stmt,
3050 new_direct_edge->callee->decl, false);
3051 if (new_edges)
3052 {
3053 new_edges->safe_push (new_direct_edge);
3054 res = true;
3055 }
3056 top = IPA_EDGE_REF (cs);
3057 /* If speculative edge was introduced we still need to update
3058 call info of the indirect edge. */
3059 if (!new_direct_edge->speculative)
3060 continue;
3061 }
3062 if (jfunc->type == IPA_JF_PASS_THROUGH
3063 && ipa_get_jf_pass_through_operation (jfunc) == NOP_EXPR)
3064 {
3065 if (ici->agg_contents
3066 && !ipa_get_jf_pass_through_agg_preserved (jfunc)
3067 && !ici->polymorphic)
3068 ici->param_index = -1;
3069 else
3070 {
3071 ici->param_index = ipa_get_jf_pass_through_formal_id (jfunc);
3072 if (ici->polymorphic
3073 && !ipa_get_jf_pass_through_type_preserved (jfunc))
3074 ici->vptr_changed = true;
3075 }
3076 }
3077 else if (jfunc->type == IPA_JF_ANCESTOR)
3078 {
3079 if (ici->agg_contents
3080 && !ipa_get_jf_ancestor_agg_preserved (jfunc)
3081 && !ici->polymorphic)
3082 ici->param_index = -1;
3083 else
3084 {
3085 ici->param_index = ipa_get_jf_ancestor_formal_id (jfunc);
3086 ici->offset += ipa_get_jf_ancestor_offset (jfunc);
3087 if (ici->polymorphic
3088 && !ipa_get_jf_ancestor_type_preserved (jfunc))
3089 ici->vptr_changed = true;
3090 }
3091 }
3092 else
3093 /* Either we can find a destination for this edge now or never. */
3094 ici->param_index = -1;
3095 }
3096
3097 return res;
3098 }
3099
3100 /* Recursively traverse subtree of NODE (including node) made of inlined
3101 cgraph_edges when CS has been inlined and invoke
3102 update_indirect_edges_after_inlining on all nodes and
3103 update_jump_functions_after_inlining on all non-inlined edges that lead out
3104 of this subtree. Newly discovered indirect edges will be added to
3105 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were
3106 created. */
3107
3108 static bool
3109 propagate_info_to_inlined_callees (struct cgraph_edge *cs,
3110 struct cgraph_node *node,
3111 vec<cgraph_edge *> *new_edges)
3112 {
3113 struct cgraph_edge *e;
3114 bool res;
3115
3116 res = update_indirect_edges_after_inlining (cs, node, new_edges);
3117
3118 for (e = node->callees; e; e = e->next_callee)
3119 if (!e->inline_failed)
3120 res |= propagate_info_to_inlined_callees (cs, e->callee, new_edges);
3121 else
3122 update_jump_functions_after_inlining (cs, e);
3123 for (e = node->indirect_calls; e; e = e->next_callee)
3124 update_jump_functions_after_inlining (cs, e);
3125
3126 return res;
3127 }
3128
3129 /* Combine two controlled uses counts as done during inlining. */
3130
3131 static int
3132 combine_controlled_uses_counters (int c, int d)
3133 {
3134 if (c == IPA_UNDESCRIBED_USE || d == IPA_UNDESCRIBED_USE)
3135 return IPA_UNDESCRIBED_USE;
3136 else
3137 return c + d - 1;
3138 }
3139
3140 /* Propagate number of controlled users from CS->caleee to the new root of the
3141 tree of inlined nodes. */
3142
3143 static void
3144 propagate_controlled_uses (struct cgraph_edge *cs)
3145 {
3146 struct ipa_edge_args *args = IPA_EDGE_REF (cs);
3147 struct cgraph_node *new_root = cs->caller->global.inlined_to
3148 ? cs->caller->global.inlined_to : cs->caller;
3149 struct ipa_node_params *new_root_info = IPA_NODE_REF (new_root);
3150 struct ipa_node_params *old_root_info = IPA_NODE_REF (cs->callee);
3151 int count, i;
3152
3153 count = MIN (ipa_get_cs_argument_count (args),
3154 ipa_get_param_count (old_root_info));
3155 for (i = 0; i < count; i++)
3156 {
3157 struct ipa_jump_func *jf = ipa_get_ith_jump_func (args, i);
3158 struct ipa_cst_ref_desc *rdesc;
3159
3160 if (jf->type == IPA_JF_PASS_THROUGH)
3161 {
3162 int src_idx, c, d;
3163 src_idx = ipa_get_jf_pass_through_formal_id (jf);
3164 c = ipa_get_controlled_uses (new_root_info, src_idx);
3165 d = ipa_get_controlled_uses (old_root_info, i);
3166
3167 gcc_checking_assert (ipa_get_jf_pass_through_operation (jf)
3168 == NOP_EXPR || c == IPA_UNDESCRIBED_USE);
3169 c = combine_controlled_uses_counters (c, d);
3170 ipa_set_controlled_uses (new_root_info, src_idx, c);
3171 if (c == 0 && new_root_info->ipcp_orig_node)
3172 {
3173 struct cgraph_node *n;
3174 struct ipa_ref *ref;
3175 tree t = new_root_info->known_csts[src_idx];
3176
3177 if (t && TREE_CODE (t) == ADDR_EXPR
3178 && TREE_CODE (TREE_OPERAND (t, 0)) == FUNCTION_DECL
3179 && (n = cgraph_node::get (TREE_OPERAND (t, 0)))
3180 && (ref = new_root->find_reference (n, NULL, 0)))
3181 {
3182 if (dump_file)
3183 fprintf (dump_file, "ipa-prop: Removing cloning-created "
3184 "reference from %s/%i to %s/%i.\n",
3185 xstrdup_for_dump (new_root->name ()),
3186 new_root->order,
3187 xstrdup_for_dump (n->name ()), n->order);
3188 ref->remove_reference ();
3189 }
3190 }
3191 }
3192 else if (jf->type == IPA_JF_CONST
3193 && (rdesc = jfunc_rdesc_usable (jf)))
3194 {
3195 int d = ipa_get_controlled_uses (old_root_info, i);
3196 int c = rdesc->refcount;
3197 rdesc->refcount = combine_controlled_uses_counters (c, d);
3198 if (rdesc->refcount == 0)
3199 {
3200 tree cst = ipa_get_jf_constant (jf);
3201 struct cgraph_node *n;
3202 gcc_checking_assert (TREE_CODE (cst) == ADDR_EXPR
3203 && TREE_CODE (TREE_OPERAND (cst, 0))
3204 == FUNCTION_DECL);
3205 n = cgraph_node::get (TREE_OPERAND (cst, 0));
3206 if (n)
3207 {
3208 struct cgraph_node *clone;
3209 bool ok;
3210 ok = remove_described_reference (n, rdesc);
3211 gcc_checking_assert (ok);
3212
3213 clone = cs->caller;
3214 while (clone->global.inlined_to
3215 && clone != rdesc->cs->caller
3216 && IPA_NODE_REF (clone)->ipcp_orig_node)
3217 {
3218 struct ipa_ref *ref;
3219 ref = clone->find_reference (n, NULL, 0);
3220 if (ref)
3221 {
3222 if (dump_file)
3223 fprintf (dump_file, "ipa-prop: Removing "
3224 "cloning-created reference "
3225 "from %s/%i to %s/%i.\n",
3226 xstrdup_for_dump (clone->name ()),
3227 clone->order,
3228 xstrdup_for_dump (n->name ()),
3229 n->order);
3230 ref->remove_reference ();
3231 }
3232 clone = clone->callers->caller;
3233 }
3234 }
3235 }
3236 }
3237 }
3238
3239 for (i = ipa_get_param_count (old_root_info);
3240 i < ipa_get_cs_argument_count (args);
3241 i++)
3242 {
3243 struct ipa_jump_func *jf = ipa_get_ith_jump_func (args, i);
3244
3245 if (jf->type == IPA_JF_CONST)
3246 {
3247 struct ipa_cst_ref_desc *rdesc = jfunc_rdesc_usable (jf);
3248 if (rdesc)
3249 rdesc->refcount = IPA_UNDESCRIBED_USE;
3250 }
3251 else if (jf->type == IPA_JF_PASS_THROUGH)
3252 ipa_set_controlled_uses (new_root_info,
3253 jf->value.pass_through.formal_id,
3254 IPA_UNDESCRIBED_USE);
3255 }
3256 }
3257
3258 /* Update jump functions and call note functions on inlining the call site CS.
3259 CS is expected to lead to a node already cloned by
3260 cgraph_clone_inline_nodes. Newly discovered indirect edges will be added to
3261 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were +
3262 created. */
3263
3264 bool
3265 ipa_propagate_indirect_call_infos (struct cgraph_edge *cs,
3266 vec<cgraph_edge *> *new_edges)
3267 {
3268 bool changed;
3269 /* Do nothing if the preparation phase has not been carried out yet
3270 (i.e. during early inlining). */
3271 if (!ipa_node_params_sum)
3272 return false;
3273 gcc_assert (ipa_edge_args_vector);
3274
3275 propagate_controlled_uses (cs);
3276 changed = propagate_info_to_inlined_callees (cs, cs->callee, new_edges);
3277
3278 return changed;
3279 }
3280
3281 /* Frees all dynamically allocated structures that the argument info points
3282 to. */
3283
3284 void
3285 ipa_free_edge_args_substructures (struct ipa_edge_args *args)
3286 {
3287 vec_free (args->jump_functions);
3288 memset (args, 0, sizeof (*args));
3289 }
3290
3291 /* Free all ipa_edge structures. */
3292
3293 void
3294 ipa_free_all_edge_args (void)
3295 {
3296 int i;
3297 struct ipa_edge_args *args;
3298
3299 if (!ipa_edge_args_vector)
3300 return;
3301
3302 FOR_EACH_VEC_ELT (*ipa_edge_args_vector, i, args)
3303 ipa_free_edge_args_substructures (args);
3304
3305 vec_free (ipa_edge_args_vector);
3306 }
3307
3308 /* Frees all dynamically allocated structures that the param info points
3309 to. */
3310
3311 ipa_node_params::~ipa_node_params ()
3312 {
3313 descriptors.release ();
3314 free (lattices);
3315 /* Lattice values and their sources are deallocated with their alocation
3316 pool. */
3317 known_contexts.release ();
3318
3319 lattices = NULL;
3320 ipcp_orig_node = NULL;
3321 analysis_done = 0;
3322 node_enqueued = 0;
3323 do_clone_for_all_contexts = 0;
3324 is_all_contexts_clone = 0;
3325 node_dead = 0;
3326 }
3327
3328 /* Free all ipa_node_params structures. */
3329
3330 void
3331 ipa_free_all_node_params (void)
3332 {
3333 delete ipa_node_params_sum;
3334 ipa_node_params_sum = NULL;
3335 }
3336
3337 /* Grow ipcp_transformations if necessary. */
3338
3339 void
3340 ipcp_grow_transformations_if_necessary (void)
3341 {
3342 if (vec_safe_length (ipcp_transformations)
3343 <= (unsigned) symtab->cgraph_max_uid)
3344 vec_safe_grow_cleared (ipcp_transformations, symtab->cgraph_max_uid + 1);
3345 }
3346
3347 /* Set the aggregate replacements of NODE to be AGGVALS. */
3348
3349 void
3350 ipa_set_node_agg_value_chain (struct cgraph_node *node,
3351 struct ipa_agg_replacement_value *aggvals)
3352 {
3353 ipcp_grow_transformations_if_necessary ();
3354 (*ipcp_transformations)[node->uid].agg_values = aggvals;
3355 }
3356
3357 /* Hook that is called by cgraph.c when an edge is removed. */
3358
3359 static void
3360 ipa_edge_removal_hook (struct cgraph_edge *cs, void *data ATTRIBUTE_UNUSED)
3361 {
3362 struct ipa_edge_args *args;
3363
3364 /* During IPA-CP updating we can be called on not-yet analyzed clones. */
3365 if (vec_safe_length (ipa_edge_args_vector) <= (unsigned)cs->uid)
3366 return;
3367
3368 args = IPA_EDGE_REF (cs);
3369 if (args->jump_functions)
3370 {
3371 struct ipa_jump_func *jf;
3372 int i;
3373 FOR_EACH_VEC_ELT (*args->jump_functions, i, jf)
3374 {
3375 struct ipa_cst_ref_desc *rdesc;
3376 try_decrement_rdesc_refcount (jf);
3377 if (jf->type == IPA_JF_CONST
3378 && (rdesc = ipa_get_jf_constant_rdesc (jf))
3379 && rdesc->cs == cs)
3380 rdesc->cs = NULL;
3381 }
3382 }
3383
3384 ipa_free_edge_args_substructures (IPA_EDGE_REF (cs));
3385 }
3386
3387 /* Hook that is called by cgraph.c when an edge is duplicated. */
3388
3389 static void
3390 ipa_edge_duplication_hook (struct cgraph_edge *src, struct cgraph_edge *dst,
3391 void *)
3392 {
3393 struct ipa_edge_args *old_args, *new_args;
3394 unsigned int i;
3395
3396 ipa_check_create_edge_args ();
3397
3398 old_args = IPA_EDGE_REF (src);
3399 new_args = IPA_EDGE_REF (dst);
3400
3401 new_args->jump_functions = vec_safe_copy (old_args->jump_functions);
3402 if (old_args->polymorphic_call_contexts)
3403 new_args->polymorphic_call_contexts
3404 = vec_safe_copy (old_args->polymorphic_call_contexts);
3405
3406 for (i = 0; i < vec_safe_length (old_args->jump_functions); i++)
3407 {
3408 struct ipa_jump_func *src_jf = ipa_get_ith_jump_func (old_args, i);
3409 struct ipa_jump_func *dst_jf = ipa_get_ith_jump_func (new_args, i);
3410
3411 dst_jf->agg.items = vec_safe_copy (dst_jf->agg.items);
3412
3413 if (src_jf->type == IPA_JF_CONST)
3414 {
3415 struct ipa_cst_ref_desc *src_rdesc = jfunc_rdesc_usable (src_jf);
3416
3417 if (!src_rdesc)
3418 dst_jf->value.constant.rdesc = NULL;
3419 else if (src->caller == dst->caller)
3420 {
3421 struct ipa_ref *ref;
3422 symtab_node *n = cgraph_node_for_jfunc (src_jf);
3423 gcc_checking_assert (n);
3424 ref = src->caller->find_reference (n, src->call_stmt,
3425 src->lto_stmt_uid);
3426 gcc_checking_assert (ref);
3427 dst->caller->clone_reference (ref, ref->stmt);
3428
3429 struct ipa_cst_ref_desc *dst_rdesc = ipa_refdesc_pool.allocate ();
3430 dst_rdesc->cs = dst;
3431 dst_rdesc->refcount = src_rdesc->refcount;
3432 dst_rdesc->next_duplicate = NULL;
3433 dst_jf->value.constant.rdesc = dst_rdesc;
3434 }
3435 else if (src_rdesc->cs == src)
3436 {
3437 struct ipa_cst_ref_desc *dst_rdesc = ipa_refdesc_pool.allocate ();
3438 dst_rdesc->cs = dst;
3439 dst_rdesc->refcount = src_rdesc->refcount;
3440 dst_rdesc->next_duplicate = src_rdesc->next_duplicate;
3441 src_rdesc->next_duplicate = dst_rdesc;
3442 dst_jf->value.constant.rdesc = dst_rdesc;
3443 }
3444 else
3445 {
3446 struct ipa_cst_ref_desc *dst_rdesc;
3447 /* This can happen during inlining, when a JFUNC can refer to a
3448 reference taken in a function up in the tree of inline clones.
3449 We need to find the duplicate that refers to our tree of
3450 inline clones. */
3451
3452 gcc_assert (dst->caller->global.inlined_to);
3453 for (dst_rdesc = src_rdesc->next_duplicate;
3454 dst_rdesc;
3455 dst_rdesc = dst_rdesc->next_duplicate)
3456 {
3457 struct cgraph_node *top;
3458 top = dst_rdesc->cs->caller->global.inlined_to
3459 ? dst_rdesc->cs->caller->global.inlined_to
3460 : dst_rdesc->cs->caller;
3461 if (dst->caller->global.inlined_to == top)
3462 break;
3463 }
3464 gcc_assert (dst_rdesc);
3465 dst_jf->value.constant.rdesc = dst_rdesc;
3466 }
3467 }
3468 else if (dst_jf->type == IPA_JF_PASS_THROUGH
3469 && src->caller == dst->caller)
3470 {
3471 struct cgraph_node *inline_root = dst->caller->global.inlined_to
3472 ? dst->caller->global.inlined_to : dst->caller;
3473 struct ipa_node_params *root_info = IPA_NODE_REF (inline_root);
3474 int idx = ipa_get_jf_pass_through_formal_id (dst_jf);
3475
3476 int c = ipa_get_controlled_uses (root_info, idx);
3477 if (c != IPA_UNDESCRIBED_USE)
3478 {
3479 c++;
3480 ipa_set_controlled_uses (root_info, idx, c);
3481 }
3482 }
3483 }
3484 }
3485
3486 /* Analyze newly added function into callgraph. */
3487
3488 static void
3489 ipa_add_new_function (cgraph_node *node, void *data ATTRIBUTE_UNUSED)
3490 {
3491 if (node->has_gimple_body_p ())
3492 ipa_analyze_node (node);
3493 }
3494
3495 /* Hook that is called by summary when a node is duplicated. */
3496
3497 void
3498 ipa_node_params_t::duplicate(cgraph_node *src, cgraph_node *dst,
3499 ipa_node_params *old_info,
3500 ipa_node_params *new_info)
3501 {
3502 ipa_agg_replacement_value *old_av, *new_av;
3503
3504 new_info->descriptors = old_info->descriptors.copy ();
3505 new_info->lattices = NULL;
3506 new_info->ipcp_orig_node = old_info->ipcp_orig_node;
3507
3508 new_info->analysis_done = old_info->analysis_done;
3509 new_info->node_enqueued = old_info->node_enqueued;
3510 new_info->versionable = old_info->versionable;
3511
3512 old_av = ipa_get_agg_replacements_for_node (src);
3513 if (old_av)
3514 {
3515 new_av = NULL;
3516 while (old_av)
3517 {
3518 struct ipa_agg_replacement_value *v;
3519
3520 v = ggc_alloc<ipa_agg_replacement_value> ();
3521 memcpy (v, old_av, sizeof (*v));
3522 v->next = new_av;
3523 new_av = v;
3524 old_av = old_av->next;
3525 }
3526 ipa_set_node_agg_value_chain (dst, new_av);
3527 }
3528
3529 ipcp_transformation_summary *src_trans = ipcp_get_transformation_summary (src);
3530
3531 if (src_trans && vec_safe_length (src_trans->alignments) > 0)
3532 {
3533 ipcp_grow_transformations_if_necessary ();
3534 src_trans = ipcp_get_transformation_summary (src);
3535 const vec<ipa_alignment, va_gc> *src_alignments = src_trans->alignments;
3536 vec<ipa_alignment, va_gc> *&dst_alignments
3537 = ipcp_get_transformation_summary (dst)->alignments;
3538 vec_safe_reserve_exact (dst_alignments, src_alignments->length ());
3539 for (unsigned i = 0; i < src_alignments->length (); ++i)
3540 dst_alignments->quick_push ((*src_alignments)[i]);
3541 }
3542 }
3543
3544 /* Register our cgraph hooks if they are not already there. */
3545
3546 void
3547 ipa_register_cgraph_hooks (void)
3548 {
3549 ipa_check_create_node_params ();
3550
3551 if (!edge_removal_hook_holder)
3552 edge_removal_hook_holder =
3553 symtab->add_edge_removal_hook (&ipa_edge_removal_hook, NULL);
3554 if (!edge_duplication_hook_holder)
3555 edge_duplication_hook_holder =
3556 symtab->add_edge_duplication_hook (&ipa_edge_duplication_hook, NULL);
3557 function_insertion_hook_holder =
3558 symtab->add_cgraph_insertion_hook (&ipa_add_new_function, NULL);
3559 }
3560
3561 /* Unregister our cgraph hooks if they are not already there. */
3562
3563 static void
3564 ipa_unregister_cgraph_hooks (void)
3565 {
3566 symtab->remove_edge_removal_hook (edge_removal_hook_holder);
3567 edge_removal_hook_holder = NULL;
3568 symtab->remove_edge_duplication_hook (edge_duplication_hook_holder);
3569 edge_duplication_hook_holder = NULL;
3570 symtab->remove_cgraph_insertion_hook (function_insertion_hook_holder);
3571 function_insertion_hook_holder = NULL;
3572 }
3573
3574 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
3575 longer needed after ipa-cp. */
3576
3577 void
3578 ipa_free_all_structures_after_ipa_cp (void)
3579 {
3580 if (!optimize && !in_lto_p)
3581 {
3582 ipa_free_all_edge_args ();
3583 ipa_free_all_node_params ();
3584 ipcp_sources_pool.release ();
3585 ipcp_cst_values_pool.release ();
3586 ipcp_poly_ctx_values_pool.release ();
3587 ipcp_agg_lattice_pool.release ();
3588 ipa_unregister_cgraph_hooks ();
3589 ipa_refdesc_pool.release ();
3590 }
3591 }
3592
3593 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
3594 longer needed after indirect inlining. */
3595
3596 void
3597 ipa_free_all_structures_after_iinln (void)
3598 {
3599 ipa_free_all_edge_args ();
3600 ipa_free_all_node_params ();
3601 ipa_unregister_cgraph_hooks ();
3602 ipcp_sources_pool.release ();
3603 ipcp_cst_values_pool.release ();
3604 ipcp_poly_ctx_values_pool.release ();
3605 ipcp_agg_lattice_pool.release ();
3606 ipa_refdesc_pool.release ();
3607 }
3608
3609 /* Print ipa_tree_map data structures of all functions in the
3610 callgraph to F. */
3611
3612 void
3613 ipa_print_node_params (FILE *f, struct cgraph_node *node)
3614 {
3615 int i, count;
3616 struct ipa_node_params *info;
3617
3618 if (!node->definition)
3619 return;
3620 info = IPA_NODE_REF (node);
3621 fprintf (f, " function %s/%i parameter descriptors:\n",
3622 node->name (), node->order);
3623 count = ipa_get_param_count (info);
3624 for (i = 0; i < count; i++)
3625 {
3626 int c;
3627
3628 fprintf (f, " ");
3629 ipa_dump_param (f, info, i);
3630 if (ipa_is_param_used (info, i))
3631 fprintf (f, " used");
3632 c = ipa_get_controlled_uses (info, i);
3633 if (c == IPA_UNDESCRIBED_USE)
3634 fprintf (f, " undescribed_use");
3635 else
3636 fprintf (f, " controlled_uses=%i", c);
3637 fprintf (f, "\n");
3638 }
3639 }
3640
3641 /* Print ipa_tree_map data structures of all functions in the
3642 callgraph to F. */
3643
3644 void
3645 ipa_print_all_params (FILE * f)
3646 {
3647 struct cgraph_node *node;
3648
3649 fprintf (f, "\nFunction parameters:\n");
3650 FOR_EACH_FUNCTION (node)
3651 ipa_print_node_params (f, node);
3652 }
3653
3654 /* Return a heap allocated vector containing formal parameters of FNDECL. */
3655
3656 vec<tree>
3657 ipa_get_vector_of_formal_parms (tree fndecl)
3658 {
3659 vec<tree> args;
3660 int count;
3661 tree parm;
3662
3663 gcc_assert (!flag_wpa);
3664 count = count_formal_params (fndecl);
3665 args.create (count);
3666 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
3667 args.quick_push (parm);
3668
3669 return args;
3670 }
3671
3672 /* Return a heap allocated vector containing types of formal parameters of
3673 function type FNTYPE. */
3674
3675 vec<tree>
3676 ipa_get_vector_of_formal_parm_types (tree fntype)
3677 {
3678 vec<tree> types;
3679 int count = 0;
3680 tree t;
3681
3682 for (t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
3683 count++;
3684
3685 types.create (count);
3686 for (t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
3687 types.quick_push (TREE_VALUE (t));
3688
3689 return types;
3690 }
3691
3692 /* Modify the function declaration FNDECL and its type according to the plan in
3693 ADJUSTMENTS. It also sets base fields of individual adjustments structures
3694 to reflect the actual parameters being modified which are determined by the
3695 base_index field. */
3696
3697 void
3698 ipa_modify_formal_parameters (tree fndecl, ipa_parm_adjustment_vec adjustments)
3699 {
3700 vec<tree> oparms = ipa_get_vector_of_formal_parms (fndecl);
3701 tree orig_type = TREE_TYPE (fndecl);
3702 tree old_arg_types = TYPE_ARG_TYPES (orig_type);
3703
3704 /* The following test is an ugly hack, some functions simply don't have any
3705 arguments in their type. This is probably a bug but well... */
3706 bool care_for_types = (old_arg_types != NULL_TREE);
3707 bool last_parm_void;
3708 vec<tree> otypes;
3709 if (care_for_types)
3710 {
3711 last_parm_void = (TREE_VALUE (tree_last (old_arg_types))
3712 == void_type_node);
3713 otypes = ipa_get_vector_of_formal_parm_types (orig_type);
3714 if (last_parm_void)
3715 gcc_assert (oparms.length () + 1 == otypes.length ());
3716 else
3717 gcc_assert (oparms.length () == otypes.length ());
3718 }
3719 else
3720 {
3721 last_parm_void = false;
3722 otypes.create (0);
3723 }
3724
3725 int len = adjustments.length ();
3726 tree *link = &DECL_ARGUMENTS (fndecl);
3727 tree new_arg_types = NULL;
3728 for (int i = 0; i < len; i++)
3729 {
3730 struct ipa_parm_adjustment *adj;
3731 gcc_assert (link);
3732
3733 adj = &adjustments[i];
3734 tree parm;
3735 if (adj->op == IPA_PARM_OP_NEW)
3736 parm = NULL;
3737 else
3738 parm = oparms[adj->base_index];
3739 adj->base = parm;
3740
3741 if (adj->op == IPA_PARM_OP_COPY)
3742 {
3743 if (care_for_types)
3744 new_arg_types = tree_cons (NULL_TREE, otypes[adj->base_index],
3745 new_arg_types);
3746 *link = parm;
3747 link = &DECL_CHAIN (parm);
3748 }
3749 else if (adj->op != IPA_PARM_OP_REMOVE)
3750 {
3751 tree new_parm;
3752 tree ptype;
3753
3754 if (adj->by_ref)
3755 ptype = build_pointer_type (adj->type);
3756 else
3757 {
3758 ptype = adj->type;
3759 if (is_gimple_reg_type (ptype))
3760 {
3761 unsigned malign = GET_MODE_ALIGNMENT (TYPE_MODE (ptype));
3762 if (TYPE_ALIGN (ptype) < malign)
3763 ptype = build_aligned_type (ptype, malign);
3764 }
3765 }
3766
3767 if (care_for_types)
3768 new_arg_types = tree_cons (NULL_TREE, ptype, new_arg_types);
3769
3770 new_parm = build_decl (UNKNOWN_LOCATION, PARM_DECL, NULL_TREE,
3771 ptype);
3772 const char *prefix = adj->arg_prefix ? adj->arg_prefix : "SYNTH";
3773 DECL_NAME (new_parm) = create_tmp_var_name (prefix);
3774 DECL_ARTIFICIAL (new_parm) = 1;
3775 DECL_ARG_TYPE (new_parm) = ptype;
3776 DECL_CONTEXT (new_parm) = fndecl;
3777 TREE_USED (new_parm) = 1;
3778 DECL_IGNORED_P (new_parm) = 1;
3779 layout_decl (new_parm, 0);
3780
3781 if (adj->op == IPA_PARM_OP_NEW)
3782 adj->base = NULL;
3783 else
3784 adj->base = parm;
3785 adj->new_decl = new_parm;
3786
3787 *link = new_parm;
3788 link = &DECL_CHAIN (new_parm);
3789 }
3790 }
3791
3792 *link = NULL_TREE;
3793
3794 tree new_reversed = NULL;
3795 if (care_for_types)
3796 {
3797 new_reversed = nreverse (new_arg_types);
3798 if (last_parm_void)
3799 {
3800 if (new_reversed)
3801 TREE_CHAIN (new_arg_types) = void_list_node;
3802 else
3803 new_reversed = void_list_node;
3804 }
3805 }
3806
3807 /* Use copy_node to preserve as much as possible from original type
3808 (debug info, attribute lists etc.)
3809 Exception is METHOD_TYPEs must have THIS argument.
3810 When we are asked to remove it, we need to build new FUNCTION_TYPE
3811 instead. */
3812 tree new_type = NULL;
3813 if (TREE_CODE (orig_type) != METHOD_TYPE
3814 || (adjustments[0].op == IPA_PARM_OP_COPY
3815 && adjustments[0].base_index == 0))
3816 {
3817 new_type = build_distinct_type_copy (orig_type);
3818 TYPE_ARG_TYPES (new_type) = new_reversed;
3819 }
3820 else
3821 {
3822 new_type
3823 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type),
3824 new_reversed));
3825 TYPE_CONTEXT (new_type) = TYPE_CONTEXT (orig_type);
3826 DECL_VINDEX (fndecl) = NULL_TREE;
3827 }
3828
3829 /* When signature changes, we need to clear builtin info. */
3830 if (DECL_BUILT_IN (fndecl))
3831 {
3832 DECL_BUILT_IN_CLASS (fndecl) = NOT_BUILT_IN;
3833 DECL_FUNCTION_CODE (fndecl) = (enum built_in_function) 0;
3834 }
3835
3836 TREE_TYPE (fndecl) = new_type;
3837 DECL_VIRTUAL_P (fndecl) = 0;
3838 DECL_LANG_SPECIFIC (fndecl) = NULL;
3839 otypes.release ();
3840 oparms.release ();
3841 }
3842
3843 /* Modify actual arguments of a function call CS as indicated in ADJUSTMENTS.
3844 If this is a directly recursive call, CS must be NULL. Otherwise it must
3845 contain the corresponding call graph edge. */
3846
3847 void
3848 ipa_modify_call_arguments (struct cgraph_edge *cs, gcall *stmt,
3849 ipa_parm_adjustment_vec adjustments)
3850 {
3851 struct cgraph_node *current_node = cgraph_node::get (current_function_decl);
3852 vec<tree> vargs;
3853 vec<tree, va_gc> **debug_args = NULL;
3854 gcall *new_stmt;
3855 gimple_stmt_iterator gsi, prev_gsi;
3856 tree callee_decl;
3857 int i, len;
3858
3859 len = adjustments.length ();
3860 vargs.create (len);
3861 callee_decl = !cs ? gimple_call_fndecl (stmt) : cs->callee->decl;
3862 current_node->remove_stmt_references (stmt);
3863
3864 gsi = gsi_for_stmt (stmt);
3865 prev_gsi = gsi;
3866 gsi_prev (&prev_gsi);
3867 for (i = 0; i < len; i++)
3868 {
3869 struct ipa_parm_adjustment *adj;
3870
3871 adj = &adjustments[i];
3872
3873 if (adj->op == IPA_PARM_OP_COPY)
3874 {
3875 tree arg = gimple_call_arg (stmt, adj->base_index);
3876
3877 vargs.quick_push (arg);
3878 }
3879 else if (adj->op != IPA_PARM_OP_REMOVE)
3880 {
3881 tree expr, base, off;
3882 location_t loc;
3883 unsigned int deref_align = 0;
3884 bool deref_base = false;
3885
3886 /* We create a new parameter out of the value of the old one, we can
3887 do the following kind of transformations:
3888
3889 - A scalar passed by reference is converted to a scalar passed by
3890 value. (adj->by_ref is false and the type of the original
3891 actual argument is a pointer to a scalar).
3892
3893 - A part of an aggregate is passed instead of the whole aggregate.
3894 The part can be passed either by value or by reference, this is
3895 determined by value of adj->by_ref. Moreover, the code below
3896 handles both situations when the original aggregate is passed by
3897 value (its type is not a pointer) and when it is passed by
3898 reference (it is a pointer to an aggregate).
3899
3900 When the new argument is passed by reference (adj->by_ref is true)
3901 it must be a part of an aggregate and therefore we form it by
3902 simply taking the address of a reference inside the original
3903 aggregate. */
3904
3905 gcc_checking_assert (adj->offset % BITS_PER_UNIT == 0);
3906 base = gimple_call_arg (stmt, adj->base_index);
3907 loc = DECL_P (base) ? DECL_SOURCE_LOCATION (base)
3908 : EXPR_LOCATION (base);
3909
3910 if (TREE_CODE (base) != ADDR_EXPR
3911 && POINTER_TYPE_P (TREE_TYPE (base)))
3912 off = build_int_cst (adj->alias_ptr_type,
3913 adj->offset / BITS_PER_UNIT);
3914 else
3915 {
3916 HOST_WIDE_INT base_offset;
3917 tree prev_base;
3918 bool addrof;
3919
3920 if (TREE_CODE (base) == ADDR_EXPR)
3921 {
3922 base = TREE_OPERAND (base, 0);
3923 addrof = true;
3924 }
3925 else
3926 addrof = false;
3927 prev_base = base;
3928 base = get_addr_base_and_unit_offset (base, &base_offset);
3929 /* Aggregate arguments can have non-invariant addresses. */
3930 if (!base)
3931 {
3932 base = build_fold_addr_expr (prev_base);
3933 off = build_int_cst (adj->alias_ptr_type,
3934 adj->offset / BITS_PER_UNIT);
3935 }
3936 else if (TREE_CODE (base) == MEM_REF)
3937 {
3938 if (!addrof)
3939 {
3940 deref_base = true;
3941 deref_align = TYPE_ALIGN (TREE_TYPE (base));
3942 }
3943 off = build_int_cst (adj->alias_ptr_type,
3944 base_offset
3945 + adj->offset / BITS_PER_UNIT);
3946 off = int_const_binop (PLUS_EXPR, TREE_OPERAND (base, 1),
3947 off);
3948 base = TREE_OPERAND (base, 0);
3949 }
3950 else
3951 {
3952 off = build_int_cst (adj->alias_ptr_type,
3953 base_offset
3954 + adj->offset / BITS_PER_UNIT);
3955 base = build_fold_addr_expr (base);
3956 }
3957 }
3958
3959 if (!adj->by_ref)
3960 {
3961 tree type = adj->type;
3962 unsigned int align;
3963 unsigned HOST_WIDE_INT misalign;
3964
3965 if (deref_base)
3966 {
3967 align = deref_align;
3968 misalign = 0;
3969 }
3970 else
3971 {
3972 get_pointer_alignment_1 (base, &align, &misalign);
3973 if (TYPE_ALIGN (type) > align)
3974 align = TYPE_ALIGN (type);
3975 }
3976 misalign += (offset_int::from (off, SIGNED).to_short_addr ()
3977 * BITS_PER_UNIT);
3978 misalign = misalign & (align - 1);
3979 if (misalign != 0)
3980 align = (misalign & -misalign);
3981 if (align < TYPE_ALIGN (type))
3982 type = build_aligned_type (type, align);
3983 base = force_gimple_operand_gsi (&gsi, base,
3984 true, NULL, true, GSI_SAME_STMT);
3985 expr = fold_build2_loc (loc, MEM_REF, type, base, off);
3986 /* If expr is not a valid gimple call argument emit
3987 a load into a temporary. */
3988 if (is_gimple_reg_type (TREE_TYPE (expr)))
3989 {
3990 gimple *tem = gimple_build_assign (NULL_TREE, expr);
3991 if (gimple_in_ssa_p (cfun))
3992 {
3993 gimple_set_vuse (tem, gimple_vuse (stmt));
3994 expr = make_ssa_name (TREE_TYPE (expr), tem);
3995 }
3996 else
3997 expr = create_tmp_reg (TREE_TYPE (expr));
3998 gimple_assign_set_lhs (tem, expr);
3999 gsi_insert_before (&gsi, tem, GSI_SAME_STMT);
4000 }
4001 }
4002 else
4003 {
4004 expr = fold_build2_loc (loc, MEM_REF, adj->type, base, off);
4005 expr = build_fold_addr_expr (expr);
4006 expr = force_gimple_operand_gsi (&gsi, expr,
4007 true, NULL, true, GSI_SAME_STMT);
4008 }
4009 vargs.quick_push (expr);
4010 }
4011 if (adj->op != IPA_PARM_OP_COPY && MAY_HAVE_DEBUG_STMTS)
4012 {
4013 unsigned int ix;
4014 tree ddecl = NULL_TREE, origin = DECL_ORIGIN (adj->base), arg;
4015 gimple *def_temp;
4016
4017 arg = gimple_call_arg (stmt, adj->base_index);
4018 if (!useless_type_conversion_p (TREE_TYPE (origin), TREE_TYPE (arg)))
4019 {
4020 if (!fold_convertible_p (TREE_TYPE (origin), arg))
4021 continue;
4022 arg = fold_convert_loc (gimple_location (stmt),
4023 TREE_TYPE (origin), arg);
4024 }
4025 if (debug_args == NULL)
4026 debug_args = decl_debug_args_insert (callee_decl);
4027 for (ix = 0; vec_safe_iterate (*debug_args, ix, &ddecl); ix += 2)
4028 if (ddecl == origin)
4029 {
4030 ddecl = (**debug_args)[ix + 1];
4031 break;
4032 }
4033 if (ddecl == NULL)
4034 {
4035 ddecl = make_node (DEBUG_EXPR_DECL);
4036 DECL_ARTIFICIAL (ddecl) = 1;
4037 TREE_TYPE (ddecl) = TREE_TYPE (origin);
4038 DECL_MODE (ddecl) = DECL_MODE (origin);
4039
4040 vec_safe_push (*debug_args, origin);
4041 vec_safe_push (*debug_args, ddecl);
4042 }
4043 def_temp = gimple_build_debug_bind (ddecl, unshare_expr (arg), stmt);
4044 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
4045 }
4046 }
4047
4048 if (dump_file && (dump_flags & TDF_DETAILS))
4049 {
4050 fprintf (dump_file, "replacing stmt:");
4051 print_gimple_stmt (dump_file, gsi_stmt (gsi), 0, 0);
4052 }
4053
4054 new_stmt = gimple_build_call_vec (callee_decl, vargs);
4055 vargs.release ();
4056 if (gimple_call_lhs (stmt))
4057 gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt));
4058
4059 gimple_set_block (new_stmt, gimple_block (stmt));
4060 if (gimple_has_location (stmt))
4061 gimple_set_location (new_stmt, gimple_location (stmt));
4062 gimple_call_set_chain (new_stmt, gimple_call_chain (stmt));
4063 gimple_call_copy_flags (new_stmt, stmt);
4064 if (gimple_in_ssa_p (cfun))
4065 {
4066 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
4067 if (gimple_vdef (stmt))
4068 {
4069 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
4070 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
4071 }
4072 }
4073
4074 if (dump_file && (dump_flags & TDF_DETAILS))
4075 {
4076 fprintf (dump_file, "with stmt:");
4077 print_gimple_stmt (dump_file, new_stmt, 0, 0);
4078 fprintf (dump_file, "\n");
4079 }
4080 gsi_replace (&gsi, new_stmt, true);
4081 if (cs)
4082 cs->set_call_stmt (new_stmt);
4083 do
4084 {
4085 current_node->record_stmt_references (gsi_stmt (gsi));
4086 gsi_prev (&gsi);
4087 }
4088 while (gsi_stmt (gsi) != gsi_stmt (prev_gsi));
4089 }
4090
4091 /* If the expression *EXPR should be replaced by a reduction of a parameter, do
4092 so. ADJUSTMENTS is a pointer to a vector of adjustments. CONVERT
4093 specifies whether the function should care about type incompatibility the
4094 current and new expressions. If it is false, the function will leave
4095 incompatibility issues to the caller. Return true iff the expression
4096 was modified. */
4097
4098 bool
4099 ipa_modify_expr (tree *expr, bool convert,
4100 ipa_parm_adjustment_vec adjustments)
4101 {
4102 struct ipa_parm_adjustment *cand
4103 = ipa_get_adjustment_candidate (&expr, &convert, adjustments, false);
4104 if (!cand)
4105 return false;
4106
4107 tree src;
4108 if (cand->by_ref)
4109 src = build_simple_mem_ref (cand->new_decl);
4110 else
4111 src = cand->new_decl;
4112
4113 if (dump_file && (dump_flags & TDF_DETAILS))
4114 {
4115 fprintf (dump_file, "About to replace expr ");
4116 print_generic_expr (dump_file, *expr, 0);
4117 fprintf (dump_file, " with ");
4118 print_generic_expr (dump_file, src, 0);
4119 fprintf (dump_file, "\n");
4120 }
4121
4122 if (convert && !useless_type_conversion_p (TREE_TYPE (*expr), cand->type))
4123 {
4124 tree vce = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (*expr), src);
4125 *expr = vce;
4126 }
4127 else
4128 *expr = src;
4129 return true;
4130 }
4131
4132 /* If T is an SSA_NAME, return NULL if it is not a default def or
4133 return its base variable if it is. If IGNORE_DEFAULT_DEF is true,
4134 the base variable is always returned, regardless if it is a default
4135 def. Return T if it is not an SSA_NAME. */
4136
4137 static tree
4138 get_ssa_base_param (tree t, bool ignore_default_def)
4139 {
4140 if (TREE_CODE (t) == SSA_NAME)
4141 {
4142 if (ignore_default_def || SSA_NAME_IS_DEFAULT_DEF (t))
4143 return SSA_NAME_VAR (t);
4144 else
4145 return NULL_TREE;
4146 }
4147 return t;
4148 }
4149
4150 /* Given an expression, return an adjustment entry specifying the
4151 transformation to be done on EXPR. If no suitable adjustment entry
4152 was found, returns NULL.
4153
4154 If IGNORE_DEFAULT_DEF is set, consider SSA_NAMEs which are not a
4155 default def, otherwise bail on them.
4156
4157 If CONVERT is non-NULL, this function will set *CONVERT if the
4158 expression provided is a component reference. ADJUSTMENTS is the
4159 adjustments vector. */
4160
4161 ipa_parm_adjustment *
4162 ipa_get_adjustment_candidate (tree **expr, bool *convert,
4163 ipa_parm_adjustment_vec adjustments,
4164 bool ignore_default_def)
4165 {
4166 if (TREE_CODE (**expr) == BIT_FIELD_REF
4167 || TREE_CODE (**expr) == IMAGPART_EXPR
4168 || TREE_CODE (**expr) == REALPART_EXPR)
4169 {
4170 *expr = &TREE_OPERAND (**expr, 0);
4171 if (convert)
4172 *convert = true;
4173 }
4174
4175 HOST_WIDE_INT offset, size, max_size;
4176 tree base = get_ref_base_and_extent (**expr, &offset, &size, &max_size);
4177 if (!base || size == -1 || max_size == -1)
4178 return NULL;
4179
4180 if (TREE_CODE (base) == MEM_REF)
4181 {
4182 offset += mem_ref_offset (base).to_short_addr () * BITS_PER_UNIT;
4183 base = TREE_OPERAND (base, 0);
4184 }
4185
4186 base = get_ssa_base_param (base, ignore_default_def);
4187 if (!base || TREE_CODE (base) != PARM_DECL)
4188 return NULL;
4189
4190 struct ipa_parm_adjustment *cand = NULL;
4191 unsigned int len = adjustments.length ();
4192 for (unsigned i = 0; i < len; i++)
4193 {
4194 struct ipa_parm_adjustment *adj = &adjustments[i];
4195
4196 if (adj->base == base
4197 && (adj->offset == offset || adj->op == IPA_PARM_OP_REMOVE))
4198 {
4199 cand = adj;
4200 break;
4201 }
4202 }
4203
4204 if (!cand || cand->op == IPA_PARM_OP_COPY || cand->op == IPA_PARM_OP_REMOVE)
4205 return NULL;
4206 return cand;
4207 }
4208
4209 /* Return true iff BASE_INDEX is in ADJUSTMENTS more than once. */
4210
4211 static bool
4212 index_in_adjustments_multiple_times_p (int base_index,
4213 ipa_parm_adjustment_vec adjustments)
4214 {
4215 int i, len = adjustments.length ();
4216 bool one = false;
4217
4218 for (i = 0; i < len; i++)
4219 {
4220 struct ipa_parm_adjustment *adj;
4221 adj = &adjustments[i];
4222
4223 if (adj->base_index == base_index)
4224 {
4225 if (one)
4226 return true;
4227 else
4228 one = true;
4229 }
4230 }
4231 return false;
4232 }
4233
4234
4235 /* Return adjustments that should have the same effect on function parameters
4236 and call arguments as if they were first changed according to adjustments in
4237 INNER and then by adjustments in OUTER. */
4238
4239 ipa_parm_adjustment_vec
4240 ipa_combine_adjustments (ipa_parm_adjustment_vec inner,
4241 ipa_parm_adjustment_vec outer)
4242 {
4243 int i, outlen = outer.length ();
4244 int inlen = inner.length ();
4245 int removals = 0;
4246 ipa_parm_adjustment_vec adjustments, tmp;
4247
4248 tmp.create (inlen);
4249 for (i = 0; i < inlen; i++)
4250 {
4251 struct ipa_parm_adjustment *n;
4252 n = &inner[i];
4253
4254 if (n->op == IPA_PARM_OP_REMOVE)
4255 removals++;
4256 else
4257 {
4258 /* FIXME: Handling of new arguments are not implemented yet. */
4259 gcc_assert (n->op != IPA_PARM_OP_NEW);
4260 tmp.quick_push (*n);
4261 }
4262 }
4263
4264 adjustments.create (outlen + removals);
4265 for (i = 0; i < outlen; i++)
4266 {
4267 struct ipa_parm_adjustment r;
4268 struct ipa_parm_adjustment *out = &outer[i];
4269 struct ipa_parm_adjustment *in = &tmp[out->base_index];
4270
4271 memset (&r, 0, sizeof (r));
4272 gcc_assert (in->op != IPA_PARM_OP_REMOVE);
4273 if (out->op == IPA_PARM_OP_REMOVE)
4274 {
4275 if (!index_in_adjustments_multiple_times_p (in->base_index, tmp))
4276 {
4277 r.op = IPA_PARM_OP_REMOVE;
4278 adjustments.quick_push (r);
4279 }
4280 continue;
4281 }
4282 else
4283 {
4284 /* FIXME: Handling of new arguments are not implemented yet. */
4285 gcc_assert (out->op != IPA_PARM_OP_NEW);
4286 }
4287
4288 r.base_index = in->base_index;
4289 r.type = out->type;
4290
4291 /* FIXME: Create nonlocal value too. */
4292
4293 if (in->op == IPA_PARM_OP_COPY && out->op == IPA_PARM_OP_COPY)
4294 r.op = IPA_PARM_OP_COPY;
4295 else if (in->op == IPA_PARM_OP_COPY)
4296 r.offset = out->offset;
4297 else if (out->op == IPA_PARM_OP_COPY)
4298 r.offset = in->offset;
4299 else
4300 r.offset = in->offset + out->offset;
4301 adjustments.quick_push (r);
4302 }
4303
4304 for (i = 0; i < inlen; i++)
4305 {
4306 struct ipa_parm_adjustment *n = &inner[i];
4307
4308 if (n->op == IPA_PARM_OP_REMOVE)
4309 adjustments.quick_push (*n);
4310 }
4311
4312 tmp.release ();
4313 return adjustments;
4314 }
4315
4316 /* Dump the adjustments in the vector ADJUSTMENTS to dump_file in a human
4317 friendly way, assuming they are meant to be applied to FNDECL. */
4318
4319 void
4320 ipa_dump_param_adjustments (FILE *file, ipa_parm_adjustment_vec adjustments,
4321 tree fndecl)
4322 {
4323 int i, len = adjustments.length ();
4324 bool first = true;
4325 vec<tree> parms = ipa_get_vector_of_formal_parms (fndecl);
4326
4327 fprintf (file, "IPA param adjustments: ");
4328 for (i = 0; i < len; i++)
4329 {
4330 struct ipa_parm_adjustment *adj;
4331 adj = &adjustments[i];
4332
4333 if (!first)
4334 fprintf (file, " ");
4335 else
4336 first = false;
4337
4338 fprintf (file, "%i. base_index: %i - ", i, adj->base_index);
4339 print_generic_expr (file, parms[adj->base_index], 0);
4340 if (adj->base)
4341 {
4342 fprintf (file, ", base: ");
4343 print_generic_expr (file, adj->base, 0);
4344 }
4345 if (adj->new_decl)
4346 {
4347 fprintf (file, ", new_decl: ");
4348 print_generic_expr (file, adj->new_decl, 0);
4349 }
4350 if (adj->new_ssa_base)
4351 {
4352 fprintf (file, ", new_ssa_base: ");
4353 print_generic_expr (file, adj->new_ssa_base, 0);
4354 }
4355
4356 if (adj->op == IPA_PARM_OP_COPY)
4357 fprintf (file, ", copy_param");
4358 else if (adj->op == IPA_PARM_OP_REMOVE)
4359 fprintf (file, ", remove_param");
4360 else
4361 fprintf (file, ", offset %li", (long) adj->offset);
4362 if (adj->by_ref)
4363 fprintf (file, ", by_ref");
4364 print_node_brief (file, ", type: ", adj->type, 0);
4365 fprintf (file, "\n");
4366 }
4367 parms.release ();
4368 }
4369
4370 /* Dump the AV linked list. */
4371
4372 void
4373 ipa_dump_agg_replacement_values (FILE *f, struct ipa_agg_replacement_value *av)
4374 {
4375 bool comma = false;
4376 fprintf (f, " Aggregate replacements:");
4377 for (; av; av = av->next)
4378 {
4379 fprintf (f, "%s %i[" HOST_WIDE_INT_PRINT_DEC "]=", comma ? "," : "",
4380 av->index, av->offset);
4381 print_generic_expr (f, av->value, 0);
4382 comma = true;
4383 }
4384 fprintf (f, "\n");
4385 }
4386
4387 /* Stream out jump function JUMP_FUNC to OB. */
4388
4389 static void
4390 ipa_write_jump_function (struct output_block *ob,
4391 struct ipa_jump_func *jump_func)
4392 {
4393 struct ipa_agg_jf_item *item;
4394 struct bitpack_d bp;
4395 int i, count;
4396
4397 streamer_write_uhwi (ob, jump_func->type);
4398 switch (jump_func->type)
4399 {
4400 case IPA_JF_UNKNOWN:
4401 break;
4402 case IPA_JF_CONST:
4403 gcc_assert (
4404 EXPR_LOCATION (jump_func->value.constant.value) == UNKNOWN_LOCATION);
4405 stream_write_tree (ob, jump_func->value.constant.value, true);
4406 break;
4407 case IPA_JF_PASS_THROUGH:
4408 streamer_write_uhwi (ob, jump_func->value.pass_through.operation);
4409 if (jump_func->value.pass_through.operation == NOP_EXPR)
4410 {
4411 streamer_write_uhwi (ob, jump_func->value.pass_through.formal_id);
4412 bp = bitpack_create (ob->main_stream);
4413 bp_pack_value (&bp, jump_func->value.pass_through.agg_preserved, 1);
4414 streamer_write_bitpack (&bp);
4415 }
4416 else
4417 {
4418 stream_write_tree (ob, jump_func->value.pass_through.operand, true);
4419 streamer_write_uhwi (ob, jump_func->value.pass_through.formal_id);
4420 }
4421 break;
4422 case IPA_JF_ANCESTOR:
4423 streamer_write_uhwi (ob, jump_func->value.ancestor.offset);
4424 streamer_write_uhwi (ob, jump_func->value.ancestor.formal_id);
4425 bp = bitpack_create (ob->main_stream);
4426 bp_pack_value (&bp, jump_func->value.ancestor.agg_preserved, 1);
4427 streamer_write_bitpack (&bp);
4428 break;
4429 }
4430
4431 count = vec_safe_length (jump_func->agg.items);
4432 streamer_write_uhwi (ob, count);
4433 if (count)
4434 {
4435 bp = bitpack_create (ob->main_stream);
4436 bp_pack_value (&bp, jump_func->agg.by_ref, 1);
4437 streamer_write_bitpack (&bp);
4438 }
4439
4440 FOR_EACH_VEC_SAFE_ELT (jump_func->agg.items, i, item)
4441 {
4442 streamer_write_uhwi (ob, item->offset);
4443 stream_write_tree (ob, item->value, true);
4444 }
4445
4446 bp = bitpack_create (ob->main_stream);
4447 bp_pack_value (&bp, jump_func->alignment.known, 1);
4448 streamer_write_bitpack (&bp);
4449 if (jump_func->alignment.known)
4450 {
4451 streamer_write_uhwi (ob, jump_func->alignment.align);
4452 streamer_write_uhwi (ob, jump_func->alignment.misalign);
4453 }
4454 }
4455
4456 /* Read in jump function JUMP_FUNC from IB. */
4457
4458 static void
4459 ipa_read_jump_function (struct lto_input_block *ib,
4460 struct ipa_jump_func *jump_func,
4461 struct cgraph_edge *cs,
4462 struct data_in *data_in)
4463 {
4464 enum jump_func_type jftype;
4465 enum tree_code operation;
4466 int i, count;
4467
4468 jftype = (enum jump_func_type) streamer_read_uhwi (ib);
4469 switch (jftype)
4470 {
4471 case IPA_JF_UNKNOWN:
4472 ipa_set_jf_unknown (jump_func);
4473 break;
4474 case IPA_JF_CONST:
4475 ipa_set_jf_constant (jump_func, stream_read_tree (ib, data_in), cs);
4476 break;
4477 case IPA_JF_PASS_THROUGH:
4478 operation = (enum tree_code) streamer_read_uhwi (ib);
4479 if (operation == NOP_EXPR)
4480 {
4481 int formal_id = streamer_read_uhwi (ib);
4482 struct bitpack_d bp = streamer_read_bitpack (ib);
4483 bool agg_preserved = bp_unpack_value (&bp, 1);
4484 ipa_set_jf_simple_pass_through (jump_func, formal_id, agg_preserved);
4485 }
4486 else
4487 {
4488 tree operand = stream_read_tree (ib, data_in);
4489 int formal_id = streamer_read_uhwi (ib);
4490 ipa_set_jf_arith_pass_through (jump_func, formal_id, operand,
4491 operation);
4492 }
4493 break;
4494 case IPA_JF_ANCESTOR:
4495 {
4496 HOST_WIDE_INT offset = streamer_read_uhwi (ib);
4497 int formal_id = streamer_read_uhwi (ib);
4498 struct bitpack_d bp = streamer_read_bitpack (ib);
4499 bool agg_preserved = bp_unpack_value (&bp, 1);
4500 ipa_set_ancestor_jf (jump_func, offset, formal_id, agg_preserved);
4501 break;
4502 }
4503 }
4504
4505 count = streamer_read_uhwi (ib);
4506 vec_alloc (jump_func->agg.items, count);
4507 if (count)
4508 {
4509 struct bitpack_d bp = streamer_read_bitpack (ib);
4510 jump_func->agg.by_ref = bp_unpack_value (&bp, 1);
4511 }
4512 for (i = 0; i < count; i++)
4513 {
4514 struct ipa_agg_jf_item item;
4515 item.offset = streamer_read_uhwi (ib);
4516 item.value = stream_read_tree (ib, data_in);
4517 jump_func->agg.items->quick_push (item);
4518 }
4519
4520 struct bitpack_d bp = streamer_read_bitpack (ib);
4521 bool alignment_known = bp_unpack_value (&bp, 1);
4522 if (alignment_known)
4523 {
4524 jump_func->alignment.known = true;
4525 jump_func->alignment.align = streamer_read_uhwi (ib);
4526 jump_func->alignment.misalign = streamer_read_uhwi (ib);
4527 }
4528 else
4529 jump_func->alignment.known = false;
4530 }
4531
4532 /* Stream out parts of cgraph_indirect_call_info corresponding to CS that are
4533 relevant to indirect inlining to OB. */
4534
4535 static void
4536 ipa_write_indirect_edge_info (struct output_block *ob,
4537 struct cgraph_edge *cs)
4538 {
4539 struct cgraph_indirect_call_info *ii = cs->indirect_info;
4540 struct bitpack_d bp;
4541
4542 streamer_write_hwi (ob, ii->param_index);
4543 bp = bitpack_create (ob->main_stream);
4544 bp_pack_value (&bp, ii->polymorphic, 1);
4545 bp_pack_value (&bp, ii->agg_contents, 1);
4546 bp_pack_value (&bp, ii->member_ptr, 1);
4547 bp_pack_value (&bp, ii->by_ref, 1);
4548 bp_pack_value (&bp, ii->vptr_changed, 1);
4549 streamer_write_bitpack (&bp);
4550 if (ii->agg_contents || ii->polymorphic)
4551 streamer_write_hwi (ob, ii->offset);
4552 else
4553 gcc_assert (ii->offset == 0);
4554
4555 if (ii->polymorphic)
4556 {
4557 streamer_write_hwi (ob, ii->otr_token);
4558 stream_write_tree (ob, ii->otr_type, true);
4559 ii->context.stream_out (ob);
4560 }
4561 }
4562
4563 /* Read in parts of cgraph_indirect_call_info corresponding to CS that are
4564 relevant to indirect inlining from IB. */
4565
4566 static void
4567 ipa_read_indirect_edge_info (struct lto_input_block *ib,
4568 struct data_in *data_in,
4569 struct cgraph_edge *cs)
4570 {
4571 struct cgraph_indirect_call_info *ii = cs->indirect_info;
4572 struct bitpack_d bp;
4573
4574 ii->param_index = (int) streamer_read_hwi (ib);
4575 bp = streamer_read_bitpack (ib);
4576 ii->polymorphic = bp_unpack_value (&bp, 1);
4577 ii->agg_contents = bp_unpack_value (&bp, 1);
4578 ii->member_ptr = bp_unpack_value (&bp, 1);
4579 ii->by_ref = bp_unpack_value (&bp, 1);
4580 ii->vptr_changed = bp_unpack_value (&bp, 1);
4581 if (ii->agg_contents || ii->polymorphic)
4582 ii->offset = (HOST_WIDE_INT) streamer_read_hwi (ib);
4583 else
4584 ii->offset = 0;
4585 if (ii->polymorphic)
4586 {
4587 ii->otr_token = (HOST_WIDE_INT) streamer_read_hwi (ib);
4588 ii->otr_type = stream_read_tree (ib, data_in);
4589 ii->context.stream_in (ib, data_in);
4590 }
4591 }
4592
4593 /* Stream out NODE info to OB. */
4594
4595 static void
4596 ipa_write_node_info (struct output_block *ob, struct cgraph_node *node)
4597 {
4598 int node_ref;
4599 lto_symtab_encoder_t encoder;
4600 struct ipa_node_params *info = IPA_NODE_REF (node);
4601 int j;
4602 struct cgraph_edge *e;
4603 struct bitpack_d bp;
4604
4605 encoder = ob->decl_state->symtab_node_encoder;
4606 node_ref = lto_symtab_encoder_encode (encoder, node);
4607 streamer_write_uhwi (ob, node_ref);
4608
4609 streamer_write_uhwi (ob, ipa_get_param_count (info));
4610 for (j = 0; j < ipa_get_param_count (info); j++)
4611 streamer_write_uhwi (ob, ipa_get_param_move_cost (info, j));
4612 bp = bitpack_create (ob->main_stream);
4613 gcc_assert (info->analysis_done
4614 || ipa_get_param_count (info) == 0);
4615 gcc_assert (!info->node_enqueued);
4616 gcc_assert (!info->ipcp_orig_node);
4617 for (j = 0; j < ipa_get_param_count (info); j++)
4618 bp_pack_value (&bp, ipa_is_param_used (info, j), 1);
4619 streamer_write_bitpack (&bp);
4620 for (j = 0; j < ipa_get_param_count (info); j++)
4621 streamer_write_hwi (ob, ipa_get_controlled_uses (info, j));
4622 for (e = node->callees; e; e = e->next_callee)
4623 {
4624 struct ipa_edge_args *args = IPA_EDGE_REF (e);
4625
4626 streamer_write_uhwi (ob,
4627 ipa_get_cs_argument_count (args) * 2
4628 + (args->polymorphic_call_contexts != NULL));
4629 for (j = 0; j < ipa_get_cs_argument_count (args); j++)
4630 {
4631 ipa_write_jump_function (ob, ipa_get_ith_jump_func (args, j));
4632 if (args->polymorphic_call_contexts != NULL)
4633 ipa_get_ith_polymorhic_call_context (args, j)->stream_out (ob);
4634 }
4635 }
4636 for (e = node->indirect_calls; e; e = e->next_callee)
4637 {
4638 struct ipa_edge_args *args = IPA_EDGE_REF (e);
4639
4640 streamer_write_uhwi (ob,
4641 ipa_get_cs_argument_count (args) * 2
4642 + (args->polymorphic_call_contexts != NULL));
4643 for (j = 0; j < ipa_get_cs_argument_count (args); j++)
4644 {
4645 ipa_write_jump_function (ob, ipa_get_ith_jump_func (args, j));
4646 if (args->polymorphic_call_contexts != NULL)
4647 ipa_get_ith_polymorhic_call_context (args, j)->stream_out (ob);
4648 }
4649 ipa_write_indirect_edge_info (ob, e);
4650 }
4651 }
4652
4653 /* Stream in NODE info from IB. */
4654
4655 static void
4656 ipa_read_node_info (struct lto_input_block *ib, struct cgraph_node *node,
4657 struct data_in *data_in)
4658 {
4659 struct ipa_node_params *info = IPA_NODE_REF (node);
4660 int k;
4661 struct cgraph_edge *e;
4662 struct bitpack_d bp;
4663
4664 ipa_alloc_node_params (node, streamer_read_uhwi (ib));
4665
4666 for (k = 0; k < ipa_get_param_count (info); k++)
4667 info->descriptors[k].move_cost = streamer_read_uhwi (ib);
4668
4669 bp = streamer_read_bitpack (ib);
4670 if (ipa_get_param_count (info) != 0)
4671 info->analysis_done = true;
4672 info->node_enqueued = false;
4673 for (k = 0; k < ipa_get_param_count (info); k++)
4674 ipa_set_param_used (info, k, bp_unpack_value (&bp, 1));
4675 for (k = 0; k < ipa_get_param_count (info); k++)
4676 ipa_set_controlled_uses (info, k, streamer_read_hwi (ib));
4677 for (e = node->callees; e; e = e->next_callee)
4678 {
4679 struct ipa_edge_args *args = IPA_EDGE_REF (e);
4680 int count = streamer_read_uhwi (ib);
4681 bool contexts_computed = count & 1;
4682 count /= 2;
4683
4684 if (!count)
4685 continue;
4686 vec_safe_grow_cleared (args->jump_functions, count);
4687 if (contexts_computed)
4688 vec_safe_grow_cleared (args->polymorphic_call_contexts, count);
4689
4690 for (k = 0; k < ipa_get_cs_argument_count (args); k++)
4691 {
4692 ipa_read_jump_function (ib, ipa_get_ith_jump_func (args, k), e,
4693 data_in);
4694 if (contexts_computed)
4695 ipa_get_ith_polymorhic_call_context (args, k)->stream_in (ib, data_in);
4696 }
4697 }
4698 for (e = node->indirect_calls; e; e = e->next_callee)
4699 {
4700 struct ipa_edge_args *args = IPA_EDGE_REF (e);
4701 int count = streamer_read_uhwi (ib);
4702 bool contexts_computed = count & 1;
4703 count /= 2;
4704
4705 if (count)
4706 {
4707 vec_safe_grow_cleared (args->jump_functions, count);
4708 if (contexts_computed)
4709 vec_safe_grow_cleared (args->polymorphic_call_contexts, count);
4710 for (k = 0; k < ipa_get_cs_argument_count (args); k++)
4711 {
4712 ipa_read_jump_function (ib, ipa_get_ith_jump_func (args, k), e,
4713 data_in);
4714 if (contexts_computed)
4715 ipa_get_ith_polymorhic_call_context (args, k)->stream_in (ib, data_in);
4716 }
4717 }
4718 ipa_read_indirect_edge_info (ib, data_in, e);
4719 }
4720 }
4721
4722 /* Write jump functions for nodes in SET. */
4723
4724 void
4725 ipa_prop_write_jump_functions (void)
4726 {
4727 struct cgraph_node *node;
4728 struct output_block *ob;
4729 unsigned int count = 0;
4730 lto_symtab_encoder_iterator lsei;
4731 lto_symtab_encoder_t encoder;
4732
4733 if (!ipa_node_params_sum)
4734 return;
4735
4736 ob = create_output_block (LTO_section_jump_functions);
4737 encoder = ob->decl_state->symtab_node_encoder;
4738 ob->symbol = NULL;
4739 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
4740 lsei_next_function_in_partition (&lsei))
4741 {
4742 node = lsei_cgraph_node (lsei);
4743 if (node->has_gimple_body_p ()
4744 && IPA_NODE_REF (node) != NULL)
4745 count++;
4746 }
4747
4748 streamer_write_uhwi (ob, count);
4749
4750 /* Process all of the functions. */
4751 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
4752 lsei_next_function_in_partition (&lsei))
4753 {
4754 node = lsei_cgraph_node (lsei);
4755 if (node->has_gimple_body_p ()
4756 && IPA_NODE_REF (node) != NULL)
4757 ipa_write_node_info (ob, node);
4758 }
4759 streamer_write_char_stream (ob->main_stream, 0);
4760 produce_asm (ob, NULL);
4761 destroy_output_block (ob);
4762 }
4763
4764 /* Read section in file FILE_DATA of length LEN with data DATA. */
4765
4766 static void
4767 ipa_prop_read_section (struct lto_file_decl_data *file_data, const char *data,
4768 size_t len)
4769 {
4770 const struct lto_function_header *header =
4771 (const struct lto_function_header *) data;
4772 const int cfg_offset = sizeof (struct lto_function_header);
4773 const int main_offset = cfg_offset + header->cfg_size;
4774 const int string_offset = main_offset + header->main_size;
4775 struct data_in *data_in;
4776 unsigned int i;
4777 unsigned int count;
4778
4779 lto_input_block ib_main ((const char *) data + main_offset,
4780 header->main_size, file_data->mode_table);
4781
4782 data_in =
4783 lto_data_in_create (file_data, (const char *) data + string_offset,
4784 header->string_size, vNULL);
4785 count = streamer_read_uhwi (&ib_main);
4786
4787 for (i = 0; i < count; i++)
4788 {
4789 unsigned int index;
4790 struct cgraph_node *node;
4791 lto_symtab_encoder_t encoder;
4792
4793 index = streamer_read_uhwi (&ib_main);
4794 encoder = file_data->symtab_node_encoder;
4795 node = dyn_cast<cgraph_node *> (lto_symtab_encoder_deref (encoder,
4796 index));
4797 gcc_assert (node->definition);
4798 ipa_read_node_info (&ib_main, node, data_in);
4799 }
4800 lto_free_section_data (file_data, LTO_section_jump_functions, NULL, data,
4801 len);
4802 lto_data_in_delete (data_in);
4803 }
4804
4805 /* Read ipcp jump functions. */
4806
4807 void
4808 ipa_prop_read_jump_functions (void)
4809 {
4810 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
4811 struct lto_file_decl_data *file_data;
4812 unsigned int j = 0;
4813
4814 ipa_check_create_node_params ();
4815 ipa_check_create_edge_args ();
4816 ipa_register_cgraph_hooks ();
4817
4818 while ((file_data = file_data_vec[j++]))
4819 {
4820 size_t len;
4821 const char *data = lto_get_section_data (file_data, LTO_section_jump_functions, NULL, &len);
4822
4823 if (data)
4824 ipa_prop_read_section (file_data, data, len);
4825 }
4826 }
4827
4828 /* After merging units, we can get mismatch in argument counts.
4829 Also decl merging might've rendered parameter lists obsolete.
4830 Also compute called_with_variable_arg info. */
4831
4832 void
4833 ipa_update_after_lto_read (void)
4834 {
4835 ipa_check_create_node_params ();
4836 ipa_check_create_edge_args ();
4837 }
4838
4839 void
4840 write_ipcp_transformation_info (output_block *ob, cgraph_node *node)
4841 {
4842 int node_ref;
4843 unsigned int count = 0;
4844 lto_symtab_encoder_t encoder;
4845 struct ipa_agg_replacement_value *aggvals, *av;
4846
4847 aggvals = ipa_get_agg_replacements_for_node (node);
4848 encoder = ob->decl_state->symtab_node_encoder;
4849 node_ref = lto_symtab_encoder_encode (encoder, node);
4850 streamer_write_uhwi (ob, node_ref);
4851
4852 for (av = aggvals; av; av = av->next)
4853 count++;
4854 streamer_write_uhwi (ob, count);
4855
4856 for (av = aggvals; av; av = av->next)
4857 {
4858 struct bitpack_d bp;
4859
4860 streamer_write_uhwi (ob, av->offset);
4861 streamer_write_uhwi (ob, av->index);
4862 stream_write_tree (ob, av->value, true);
4863
4864 bp = bitpack_create (ob->main_stream);
4865 bp_pack_value (&bp, av->by_ref, 1);
4866 streamer_write_bitpack (&bp);
4867 }
4868
4869 ipcp_transformation_summary *ts = ipcp_get_transformation_summary (node);
4870 if (ts && vec_safe_length (ts->alignments) > 0)
4871 {
4872 count = ts->alignments->length ();
4873
4874 streamer_write_uhwi (ob, count);
4875 for (unsigned i = 0; i < count; ++i)
4876 {
4877 ipa_alignment *parm_al = &(*ts->alignments)[i];
4878
4879 struct bitpack_d bp;
4880 bp = bitpack_create (ob->main_stream);
4881 bp_pack_value (&bp, parm_al->known, 1);
4882 streamer_write_bitpack (&bp);
4883 if (parm_al->known)
4884 {
4885 streamer_write_uhwi (ob, parm_al->align);
4886 streamer_write_hwi_in_range (ob->main_stream, 0, parm_al->align,
4887 parm_al->misalign);
4888 }
4889 }
4890 }
4891 else
4892 streamer_write_uhwi (ob, 0);
4893 }
4894
4895 /* Stream in the aggregate value replacement chain for NODE from IB. */
4896
4897 static void
4898 read_ipcp_transformation_info (lto_input_block *ib, cgraph_node *node,
4899 data_in *data_in)
4900 {
4901 struct ipa_agg_replacement_value *aggvals = NULL;
4902 unsigned int count, i;
4903
4904 count = streamer_read_uhwi (ib);
4905 for (i = 0; i <count; i++)
4906 {
4907 struct ipa_agg_replacement_value *av;
4908 struct bitpack_d bp;
4909
4910 av = ggc_alloc<ipa_agg_replacement_value> ();
4911 av->offset = streamer_read_uhwi (ib);
4912 av->index = streamer_read_uhwi (ib);
4913 av->value = stream_read_tree (ib, data_in);
4914 bp = streamer_read_bitpack (ib);
4915 av->by_ref = bp_unpack_value (&bp, 1);
4916 av->next = aggvals;
4917 aggvals = av;
4918 }
4919 ipa_set_node_agg_value_chain (node, aggvals);
4920
4921 count = streamer_read_uhwi (ib);
4922 if (count > 0)
4923 {
4924 ipcp_grow_transformations_if_necessary ();
4925
4926 ipcp_transformation_summary *ts = ipcp_get_transformation_summary (node);
4927 vec_safe_grow_cleared (ts->alignments, count);
4928
4929 for (i = 0; i < count; i++)
4930 {
4931 ipa_alignment *parm_al;
4932 parm_al = &(*ts->alignments)[i];
4933 struct bitpack_d bp;
4934 bp = streamer_read_bitpack (ib);
4935 parm_al->known = bp_unpack_value (&bp, 1);
4936 if (parm_al->known)
4937 {
4938 parm_al->align = streamer_read_uhwi (ib);
4939 parm_al->misalign
4940 = streamer_read_hwi_in_range (ib, "ipa-prop misalign",
4941 0, parm_al->align);
4942 }
4943 }
4944 }
4945 }
4946
4947 /* Write all aggregate replacement for nodes in set. */
4948
4949 void
4950 ipcp_write_transformation_summaries (void)
4951 {
4952 struct cgraph_node *node;
4953 struct output_block *ob;
4954 unsigned int count = 0;
4955 lto_symtab_encoder_iterator lsei;
4956 lto_symtab_encoder_t encoder;
4957
4958 ob = create_output_block (LTO_section_ipcp_transform);
4959 encoder = ob->decl_state->symtab_node_encoder;
4960 ob->symbol = NULL;
4961 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
4962 lsei_next_function_in_partition (&lsei))
4963 {
4964 node = lsei_cgraph_node (lsei);
4965 if (node->has_gimple_body_p ())
4966 count++;
4967 }
4968
4969 streamer_write_uhwi (ob, count);
4970
4971 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
4972 lsei_next_function_in_partition (&lsei))
4973 {
4974 node = lsei_cgraph_node (lsei);
4975 if (node->has_gimple_body_p ())
4976 write_ipcp_transformation_info (ob, node);
4977 }
4978 streamer_write_char_stream (ob->main_stream, 0);
4979 produce_asm (ob, NULL);
4980 destroy_output_block (ob);
4981 }
4982
4983 /* Read replacements section in file FILE_DATA of length LEN with data
4984 DATA. */
4985
4986 static void
4987 read_replacements_section (struct lto_file_decl_data *file_data,
4988 const char *data,
4989 size_t len)
4990 {
4991 const struct lto_function_header *header =
4992 (const struct lto_function_header *) data;
4993 const int cfg_offset = sizeof (struct lto_function_header);
4994 const int main_offset = cfg_offset + header->cfg_size;
4995 const int string_offset = main_offset + header->main_size;
4996 struct data_in *data_in;
4997 unsigned int i;
4998 unsigned int count;
4999
5000 lto_input_block ib_main ((const char *) data + main_offset,
5001 header->main_size, file_data->mode_table);
5002
5003 data_in = lto_data_in_create (file_data, (const char *) data + string_offset,
5004 header->string_size, vNULL);
5005 count = streamer_read_uhwi (&ib_main);
5006
5007 for (i = 0; i < count; i++)
5008 {
5009 unsigned int index;
5010 struct cgraph_node *node;
5011 lto_symtab_encoder_t encoder;
5012
5013 index = streamer_read_uhwi (&ib_main);
5014 encoder = file_data->symtab_node_encoder;
5015 node = dyn_cast<cgraph_node *> (lto_symtab_encoder_deref (encoder,
5016 index));
5017 gcc_assert (node->definition);
5018 read_ipcp_transformation_info (&ib_main, node, data_in);
5019 }
5020 lto_free_section_data (file_data, LTO_section_jump_functions, NULL, data,
5021 len);
5022 lto_data_in_delete (data_in);
5023 }
5024
5025 /* Read IPA-CP aggregate replacements. */
5026
5027 void
5028 ipcp_read_transformation_summaries (void)
5029 {
5030 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
5031 struct lto_file_decl_data *file_data;
5032 unsigned int j = 0;
5033
5034 while ((file_data = file_data_vec[j++]))
5035 {
5036 size_t len;
5037 const char *data = lto_get_section_data (file_data,
5038 LTO_section_ipcp_transform,
5039 NULL, &len);
5040 if (data)
5041 read_replacements_section (file_data, data, len);
5042 }
5043 }
5044
5045 /* Adjust the aggregate replacements in AGGVAL to reflect parameters skipped in
5046 NODE. */
5047
5048 static void
5049 adjust_agg_replacement_values (struct cgraph_node *node,
5050 struct ipa_agg_replacement_value *aggval)
5051 {
5052 struct ipa_agg_replacement_value *v;
5053 int i, c = 0, d = 0, *adj;
5054
5055 if (!node->clone.combined_args_to_skip)
5056 return;
5057
5058 for (v = aggval; v; v = v->next)
5059 {
5060 gcc_assert (v->index >= 0);
5061 if (c < v->index)
5062 c = v->index;
5063 }
5064 c++;
5065
5066 adj = XALLOCAVEC (int, c);
5067 for (i = 0; i < c; i++)
5068 if (bitmap_bit_p (node->clone.combined_args_to_skip, i))
5069 {
5070 adj[i] = -1;
5071 d++;
5072 }
5073 else
5074 adj[i] = i - d;
5075
5076 for (v = aggval; v; v = v->next)
5077 v->index = adj[v->index];
5078 }
5079
5080 /* Dominator walker driving the ipcp modification phase. */
5081
5082 class ipcp_modif_dom_walker : public dom_walker
5083 {
5084 public:
5085 ipcp_modif_dom_walker (struct ipa_func_body_info *fbi,
5086 vec<ipa_param_descriptor> descs,
5087 struct ipa_agg_replacement_value *av,
5088 bool *sc, bool *cc)
5089 : dom_walker (CDI_DOMINATORS), m_fbi (fbi), m_descriptors (descs),
5090 m_aggval (av), m_something_changed (sc), m_cfg_changed (cc) {}
5091
5092 virtual void before_dom_children (basic_block);
5093
5094 private:
5095 struct ipa_func_body_info *m_fbi;
5096 vec<ipa_param_descriptor> m_descriptors;
5097 struct ipa_agg_replacement_value *m_aggval;
5098 bool *m_something_changed, *m_cfg_changed;
5099 };
5100
5101 void
5102 ipcp_modif_dom_walker::before_dom_children (basic_block bb)
5103 {
5104 gimple_stmt_iterator gsi;
5105 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5106 {
5107 struct ipa_agg_replacement_value *v;
5108 gimple *stmt = gsi_stmt (gsi);
5109 tree rhs, val, t;
5110 HOST_WIDE_INT offset, size;
5111 int index;
5112 bool by_ref, vce;
5113
5114 if (!gimple_assign_load_p (stmt))
5115 continue;
5116 rhs = gimple_assign_rhs1 (stmt);
5117 if (!is_gimple_reg_type (TREE_TYPE (rhs)))
5118 continue;
5119
5120 vce = false;
5121 t = rhs;
5122 while (handled_component_p (t))
5123 {
5124 /* V_C_E can do things like convert an array of integers to one
5125 bigger integer and similar things we do not handle below. */
5126 if (TREE_CODE (rhs) == VIEW_CONVERT_EXPR)
5127 {
5128 vce = true;
5129 break;
5130 }
5131 t = TREE_OPERAND (t, 0);
5132 }
5133 if (vce)
5134 continue;
5135
5136 if (!ipa_load_from_parm_agg (m_fbi, m_descriptors, stmt, rhs, &index,
5137 &offset, &size, &by_ref))
5138 continue;
5139 for (v = m_aggval; v; v = v->next)
5140 if (v->index == index
5141 && v->offset == offset)
5142 break;
5143 if (!v
5144 || v->by_ref != by_ref
5145 || tree_to_shwi (TYPE_SIZE (TREE_TYPE (v->value))) != size)
5146 continue;
5147
5148 gcc_checking_assert (is_gimple_ip_invariant (v->value));
5149 if (!useless_type_conversion_p (TREE_TYPE (rhs), TREE_TYPE (v->value)))
5150 {
5151 if (fold_convertible_p (TREE_TYPE (rhs), v->value))
5152 val = fold_build1 (NOP_EXPR, TREE_TYPE (rhs), v->value);
5153 else if (TYPE_SIZE (TREE_TYPE (rhs))
5154 == TYPE_SIZE (TREE_TYPE (v->value)))
5155 val = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (rhs), v->value);
5156 else
5157 {
5158 if (dump_file)
5159 {
5160 fprintf (dump_file, " const ");
5161 print_generic_expr (dump_file, v->value, 0);
5162 fprintf (dump_file, " can't be converted to type of ");
5163 print_generic_expr (dump_file, rhs, 0);
5164 fprintf (dump_file, "\n");
5165 }
5166 continue;
5167 }
5168 }
5169 else
5170 val = v->value;
5171
5172 if (dump_file && (dump_flags & TDF_DETAILS))
5173 {
5174 fprintf (dump_file, "Modifying stmt:\n ");
5175 print_gimple_stmt (dump_file, stmt, 0, 0);
5176 }
5177 gimple_assign_set_rhs_from_tree (&gsi, val);
5178 update_stmt (stmt);
5179
5180 if (dump_file && (dump_flags & TDF_DETAILS))
5181 {
5182 fprintf (dump_file, "into:\n ");
5183 print_gimple_stmt (dump_file, stmt, 0, 0);
5184 fprintf (dump_file, "\n");
5185 }
5186
5187 *m_something_changed = true;
5188 if (maybe_clean_eh_stmt (stmt)
5189 && gimple_purge_dead_eh_edges (gimple_bb (stmt)))
5190 *m_cfg_changed = true;
5191 }
5192
5193 }
5194
5195 /* Update alignment of formal parameters as described in
5196 ipcp_transformation_summary. */
5197
5198 static void
5199 ipcp_update_alignments (struct cgraph_node *node)
5200 {
5201 tree fndecl = node->decl;
5202 tree parm = DECL_ARGUMENTS (fndecl);
5203 tree next_parm = parm;
5204 ipcp_transformation_summary *ts = ipcp_get_transformation_summary (node);
5205 if (!ts || vec_safe_length (ts->alignments) == 0)
5206 return;
5207 const vec<ipa_alignment, va_gc> &alignments = *ts->alignments;
5208 unsigned count = alignments.length ();
5209
5210 for (unsigned i = 0; i < count; ++i, parm = next_parm)
5211 {
5212 if (node->clone.combined_args_to_skip
5213 && bitmap_bit_p (node->clone.combined_args_to_skip, i))
5214 continue;
5215 gcc_checking_assert (parm);
5216 next_parm = DECL_CHAIN (parm);
5217
5218 if (!alignments[i].known || !is_gimple_reg (parm))
5219 continue;
5220 tree ddef = ssa_default_def (DECL_STRUCT_FUNCTION (node->decl), parm);
5221 if (!ddef)
5222 continue;
5223
5224 if (dump_file)
5225 fprintf (dump_file, " Adjusting alignment of param %u to %u, "
5226 "misalignment to %u\n", i, alignments[i].align,
5227 alignments[i].misalign);
5228
5229 struct ptr_info_def *pi = get_ptr_info (ddef);
5230 gcc_checking_assert (pi);
5231 unsigned old_align;
5232 unsigned old_misalign;
5233 bool old_known = get_ptr_info_alignment (pi, &old_align, &old_misalign);
5234
5235 if (old_known
5236 && old_align >= alignments[i].align)
5237 {
5238 if (dump_file)
5239 fprintf (dump_file, " But the alignment was already %u.\n",
5240 old_align);
5241 continue;
5242 }
5243 set_ptr_info_alignment (pi, alignments[i].align, alignments[i].misalign);
5244 }
5245 }
5246
5247 /* IPCP transformation phase doing propagation of aggregate values. */
5248
5249 unsigned int
5250 ipcp_transform_function (struct cgraph_node *node)
5251 {
5252 vec<ipa_param_descriptor> descriptors = vNULL;
5253 struct ipa_func_body_info fbi;
5254 struct ipa_agg_replacement_value *aggval;
5255 int param_count;
5256 bool cfg_changed = false, something_changed = false;
5257
5258 gcc_checking_assert (cfun);
5259 gcc_checking_assert (current_function_decl);
5260
5261 if (dump_file)
5262 fprintf (dump_file, "Modification phase of node %s/%i\n",
5263 node->name (), node->order);
5264
5265 ipcp_update_alignments (node);
5266 aggval = ipa_get_agg_replacements_for_node (node);
5267 if (!aggval)
5268 return 0;
5269 param_count = count_formal_params (node->decl);
5270 if (param_count == 0)
5271 return 0;
5272 adjust_agg_replacement_values (node, aggval);
5273 if (dump_file)
5274 ipa_dump_agg_replacement_values (dump_file, aggval);
5275
5276 fbi.node = node;
5277 fbi.info = NULL;
5278 fbi.bb_infos = vNULL;
5279 fbi.bb_infos.safe_grow_cleared (last_basic_block_for_fn (cfun));
5280 fbi.param_count = param_count;
5281 fbi.aa_walked = 0;
5282
5283 descriptors.safe_grow_cleared (param_count);
5284 ipa_populate_param_decls (node, descriptors);
5285 calculate_dominance_info (CDI_DOMINATORS);
5286 ipcp_modif_dom_walker (&fbi, descriptors, aggval, &something_changed,
5287 &cfg_changed).walk (ENTRY_BLOCK_PTR_FOR_FN (cfun));
5288
5289 int i;
5290 struct ipa_bb_info *bi;
5291 FOR_EACH_VEC_ELT (fbi.bb_infos, i, bi)
5292 free_ipa_bb_info (bi);
5293 fbi.bb_infos.release ();
5294 free_dominance_info (CDI_DOMINATORS);
5295 (*ipcp_transformations)[node->uid].agg_values = NULL;
5296 (*ipcp_transformations)[node->uid].alignments = NULL;
5297 descriptors.release ();
5298
5299 if (!something_changed)
5300 return 0;
5301 else if (cfg_changed)
5302 return TODO_update_ssa_only_virtuals | TODO_cleanup_cfg;
5303 else
5304 return TODO_update_ssa_only_virtuals;
5305 }