be223cc792509cc78ad02eb48709d5acea785f64
[gcc.git] / gcc / ipa-prop.c
1 /* Interprocedural analyses.
2 Copyright (C) 2005, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tree.h"
25 #include "langhooks.h"
26 #include "ggc.h"
27 #include "target.h"
28 #include "cgraph.h"
29 #include "ipa-prop.h"
30 #include "tree-flow.h"
31 #include "tree-pass.h"
32 #include "tree-inline.h"
33 #include "gimple.h"
34 #include "flags.h"
35 #include "timevar.h"
36 #include "flags.h"
37 #include "diagnostic.h"
38 #include "tree-pretty-print.h"
39 #include "gimple-pretty-print.h"
40 #include "lto-streamer.h"
41
42
43 /* Intermediate information about a parameter that is only useful during the
44 run of ipa_analyze_node and is not kept afterwards. */
45
46 struct param_analysis_info
47 {
48 bool modified;
49 bitmap visited_statements;
50 };
51
52 /* Vector where the parameter infos are actually stored. */
53 VEC (ipa_node_params_t, heap) *ipa_node_params_vector;
54 /* Vector where the parameter infos are actually stored. */
55 VEC (ipa_edge_args_t, gc) *ipa_edge_args_vector;
56
57 /* Bitmap with all UIDs of call graph edges that have been already processed
58 by indirect inlining. */
59 static bitmap iinlining_processed_edges;
60
61 /* Holders of ipa cgraph hooks: */
62 static struct cgraph_edge_hook_list *edge_removal_hook_holder;
63 static struct cgraph_node_hook_list *node_removal_hook_holder;
64 static struct cgraph_2edge_hook_list *edge_duplication_hook_holder;
65 static struct cgraph_2node_hook_list *node_duplication_hook_holder;
66
67 /* Add cgraph NODE described by INFO to the worklist WL regardless of whether
68 it is in one or not. It should almost never be used directly, as opposed to
69 ipa_push_func_to_list. */
70
71 void
72 ipa_push_func_to_list_1 (struct ipa_func_list **wl,
73 struct cgraph_node *node,
74 struct ipa_node_params *info)
75 {
76 struct ipa_func_list *temp;
77
78 info->node_enqueued = 1;
79 temp = XCNEW (struct ipa_func_list);
80 temp->node = node;
81 temp->next = *wl;
82 *wl = temp;
83 }
84
85 /* Initialize worklist to contain all functions. */
86
87 struct ipa_func_list *
88 ipa_init_func_list (void)
89 {
90 struct cgraph_node *node;
91 struct ipa_func_list * wl;
92
93 wl = NULL;
94 for (node = cgraph_nodes; node; node = node->next)
95 if (node->analyzed)
96 {
97 struct ipa_node_params *info = IPA_NODE_REF (node);
98 /* Unreachable nodes should have been eliminated before ipcp and
99 inlining. */
100 gcc_assert (node->needed || node->reachable);
101 ipa_push_func_to_list_1 (&wl, node, info);
102 }
103
104 return wl;
105 }
106
107 /* Remove a function from the worklist WL and return it. */
108
109 struct cgraph_node *
110 ipa_pop_func_from_list (struct ipa_func_list **wl)
111 {
112 struct ipa_node_params *info;
113 struct ipa_func_list *first;
114 struct cgraph_node *node;
115
116 first = *wl;
117 *wl = (*wl)->next;
118 node = first->node;
119 free (first);
120
121 info = IPA_NODE_REF (node);
122 info->node_enqueued = 0;
123 return node;
124 }
125
126 /* Return index of the formal whose tree is PTREE in function which corresponds
127 to INFO. */
128
129 static int
130 ipa_get_param_decl_index (struct ipa_node_params *info, tree ptree)
131 {
132 int i, count;
133
134 count = ipa_get_param_count (info);
135 for (i = 0; i < count; i++)
136 if (ipa_get_param(info, i) == ptree)
137 return i;
138
139 return -1;
140 }
141
142 /* Populate the param_decl field in parameter descriptors of INFO that
143 corresponds to NODE. */
144
145 static void
146 ipa_populate_param_decls (struct cgraph_node *node,
147 struct ipa_node_params *info)
148 {
149 tree fndecl;
150 tree fnargs;
151 tree parm;
152 int param_num;
153
154 fndecl = node->decl;
155 fnargs = DECL_ARGUMENTS (fndecl);
156 param_num = 0;
157 for (parm = fnargs; parm; parm = DECL_CHAIN (parm))
158 {
159 info->params[param_num].decl = parm;
160 param_num++;
161 }
162 }
163
164 /* Return how many formal parameters FNDECL has. */
165
166 static inline int
167 count_formal_params_1 (tree fndecl)
168 {
169 tree parm;
170 int count = 0;
171
172 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
173 count++;
174
175 return count;
176 }
177
178 /* Count number of formal parameters in NOTE. Store the result to the
179 appropriate field of INFO. */
180
181 static void
182 ipa_count_formal_params (struct cgraph_node *node,
183 struct ipa_node_params *info)
184 {
185 int param_num;
186
187 param_num = count_formal_params_1 (node->decl);
188 ipa_set_param_count (info, param_num);
189 }
190
191 /* Initialize the ipa_node_params structure associated with NODE by counting
192 the function parameters, creating the descriptors and populating their
193 param_decls. */
194
195 void
196 ipa_initialize_node_params (struct cgraph_node *node)
197 {
198 struct ipa_node_params *info = IPA_NODE_REF (node);
199
200 if (!info->params)
201 {
202 ipa_count_formal_params (node, info);
203 info->params = XCNEWVEC (struct ipa_param_descriptor,
204 ipa_get_param_count (info));
205 ipa_populate_param_decls (node, info);
206 }
207 }
208
209 /* Count number of arguments callsite CS has and store it in
210 ipa_edge_args structure corresponding to this callsite. */
211
212 static void
213 ipa_count_arguments (struct cgraph_edge *cs)
214 {
215 gimple stmt;
216 int arg_num;
217
218 stmt = cs->call_stmt;
219 gcc_assert (is_gimple_call (stmt));
220 arg_num = gimple_call_num_args (stmt);
221 if (VEC_length (ipa_edge_args_t, ipa_edge_args_vector)
222 <= (unsigned) cgraph_edge_max_uid)
223 VEC_safe_grow_cleared (ipa_edge_args_t, gc,
224 ipa_edge_args_vector, cgraph_edge_max_uid + 1);
225 ipa_set_cs_argument_count (IPA_EDGE_REF (cs), arg_num);
226 }
227
228 /* Print the jump functions associated with call graph edge CS to file F. */
229
230 static void
231 ipa_print_node_jump_functions_for_edge (FILE *f, struct cgraph_edge *cs)
232 {
233 int i, count;
234
235 count = ipa_get_cs_argument_count (IPA_EDGE_REF (cs));
236 for (i = 0; i < count; i++)
237 {
238 struct ipa_jump_func *jump_func;
239 enum jump_func_type type;
240
241 jump_func = ipa_get_ith_jump_func (IPA_EDGE_REF (cs), i);
242 type = jump_func->type;
243
244 fprintf (f, " param %d: ", i);
245 if (type == IPA_JF_UNKNOWN)
246 fprintf (f, "UNKNOWN\n");
247 else if (type == IPA_JF_KNOWN_TYPE)
248 {
249 tree binfo_type = TREE_TYPE (jump_func->value.base_binfo);
250 fprintf (f, "KNOWN TYPE, type in binfo is: ");
251 print_generic_expr (f, binfo_type, 0);
252 fprintf (f, " (%u)\n", TYPE_UID (binfo_type));
253 }
254 else if (type == IPA_JF_CONST)
255 {
256 tree val = jump_func->value.constant;
257 fprintf (f, "CONST: ");
258 print_generic_expr (f, val, 0);
259 if (TREE_CODE (val) == ADDR_EXPR
260 && TREE_CODE (TREE_OPERAND (val, 0)) == CONST_DECL)
261 {
262 fprintf (f, " -> ");
263 print_generic_expr (f, DECL_INITIAL (TREE_OPERAND (val, 0)),
264 0);
265 }
266 fprintf (f, "\n");
267 }
268 else if (type == IPA_JF_CONST_MEMBER_PTR)
269 {
270 fprintf (f, "CONST MEMBER PTR: ");
271 print_generic_expr (f, jump_func->value.member_cst.pfn, 0);
272 fprintf (f, ", ");
273 print_generic_expr (f, jump_func->value.member_cst.delta, 0);
274 fprintf (f, "\n");
275 }
276 else if (type == IPA_JF_PASS_THROUGH)
277 {
278 fprintf (f, "PASS THROUGH: ");
279 fprintf (f, "%d, op %s ",
280 jump_func->value.pass_through.formal_id,
281 tree_code_name[(int)
282 jump_func->value.pass_through.operation]);
283 if (jump_func->value.pass_through.operation != NOP_EXPR)
284 print_generic_expr (dump_file,
285 jump_func->value.pass_through.operand, 0);
286 fprintf (dump_file, "\n");
287 }
288 else if (type == IPA_JF_ANCESTOR)
289 {
290 fprintf (f, "ANCESTOR: ");
291 fprintf (f, "%d, offset "HOST_WIDE_INT_PRINT_DEC", ",
292 jump_func->value.ancestor.formal_id,
293 jump_func->value.ancestor.offset);
294 print_generic_expr (f, jump_func->value.ancestor.type, 0);
295 fprintf (dump_file, "\n");
296 }
297 }
298 }
299
300
301 /* Print the jump functions of all arguments on all call graph edges going from
302 NODE to file F. */
303
304 void
305 ipa_print_node_jump_functions (FILE *f, struct cgraph_node *node)
306 {
307 struct cgraph_edge *cs;
308 int i;
309
310 fprintf (f, " Jump functions of caller %s:\n", cgraph_node_name (node));
311 for (cs = node->callees; cs; cs = cs->next_callee)
312 {
313 if (!ipa_edge_args_info_available_for_edge_p (cs))
314 continue;
315
316 fprintf (f, " callsite %s/%i -> %s/%i : \n",
317 cgraph_node_name (node), node->uid,
318 cgraph_node_name (cs->callee), cs->callee->uid);
319 ipa_print_node_jump_functions_for_edge (f, cs);
320 }
321
322 for (cs = node->indirect_calls, i = 0; cs; cs = cs->next_callee, i++)
323 {
324 if (!ipa_edge_args_info_available_for_edge_p (cs))
325 continue;
326
327 if (cs->call_stmt)
328 {
329 fprintf (f, " indirect callsite %d for stmt ", i);
330 print_gimple_stmt (f, cs->call_stmt, 0, TDF_SLIM);
331 }
332 else
333 fprintf (f, " indirect callsite %d :\n", i);
334 ipa_print_node_jump_functions_for_edge (f, cs);
335
336 }
337 }
338
339 /* Print ipa_jump_func data structures of all nodes in the call graph to F. */
340
341 void
342 ipa_print_all_jump_functions (FILE *f)
343 {
344 struct cgraph_node *node;
345
346 fprintf (f, "\nJump functions:\n");
347 for (node = cgraph_nodes; node; node = node->next)
348 {
349 ipa_print_node_jump_functions (f, node);
350 }
351 }
352
353 /* Structure to be passed in between detect_type_change and
354 check_stmt_for_type_change. */
355
356 struct type_change_info
357 {
358 /* Set to true if dynamic type change has been detected. */
359 bool type_maybe_changed;
360 };
361
362 /* Return true if STMT can modify a virtual method table pointer.
363
364 This function makes special assumptions about both constructors and
365 destructors which are all the functions that are allowed to alter the VMT
366 pointers. It assumes that destructors begin with assignment into all VMT
367 pointers and that constructors essentially look in the following way:
368
369 1) The very first thing they do is that they call constructors of ancestor
370 sub-objects that have them.
371
372 2) Then VMT pointers of this and all its ancestors is set to new values
373 corresponding to the type corresponding to the constructor.
374
375 3) Only afterwards, other stuff such as constructor of member sub-objects
376 and the code written by the user is run. Only this may include calling
377 virtual functions, directly or indirectly.
378
379 There is no way to call a constructor of an ancestor sub-object in any
380 other way.
381
382 This means that we do not have to care whether constructors get the correct
383 type information because they will always change it (in fact, if we define
384 the type to be given by the VMT pointer, it is undefined).
385
386 The most important fact to derive from the above is that if, for some
387 statement in the section 3, we try to detect whether the dynamic type has
388 changed, we can safely ignore all calls as we examine the function body
389 backwards until we reach statements in section 2 because these calls cannot
390 be ancestor constructors or destructors (if the input is not bogus) and so
391 do not change the dynamic type (this holds true only for automatically
392 allocated objects but at the moment we devirtualize only these). We then
393 must detect that statements in section 2 change the dynamic type and can try
394 to derive the new type. That is enough and we can stop, we will never see
395 the calls into constructors of sub-objects in this code. Therefore we can
396 safely ignore all call statements that we traverse.
397 */
398
399 static bool
400 stmt_may_be_vtbl_ptr_store (gimple stmt)
401 {
402 if (is_gimple_call (stmt))
403 return false;
404 else if (is_gimple_assign (stmt))
405 {
406 tree lhs = gimple_assign_lhs (stmt);
407
408 if (TREE_CODE (lhs) == COMPONENT_REF
409 && !DECL_VIRTUAL_P (TREE_OPERAND (lhs, 1))
410 && !AGGREGATE_TYPE_P (TREE_TYPE (lhs)))
411 return false;
412 /* In the future we might want to use get_base_ref_and_offset to find
413 if there is a field corresponding to the offset and if so, proceed
414 almost like if it was a component ref. */
415 }
416 return true;
417 }
418
419 /* Callback of walk_aliased_vdefs and a helper function for
420 detect_type_change to check whether a particular statement may modify
421 the virtual table pointer, and if possible also determine the new type of
422 the (sub-)object. It stores its result into DATA, which points to a
423 type_change_info structure. */
424
425 static bool
426 check_stmt_for_type_change (ao_ref *ao ATTRIBUTE_UNUSED, tree vdef, void *data)
427 {
428 gimple stmt = SSA_NAME_DEF_STMT (vdef);
429 struct type_change_info *tci = (struct type_change_info *) data;
430
431 if (stmt_may_be_vtbl_ptr_store (stmt))
432 {
433 tci->type_maybe_changed = true;
434 return true;
435 }
436 else
437 return false;
438 }
439
440 /* Detect whether the dynamic type of ARG has changed (before callsite CALL) by
441 looking for assignments to its virtual table pointer. If it is, return true
442 and fill in the jump function JFUNC with relevant type information or set it
443 to unknown. ARG is the object itself (not a pointer to it, unless
444 dereferenced). BASE is the base of the memory access as returned by
445 get_ref_base_and_extent, as is the offset. */
446
447 static bool
448 detect_type_change (tree arg, tree base, gimple call,
449 struct ipa_jump_func *jfunc, HOST_WIDE_INT offset)
450 {
451 struct type_change_info tci;
452 ao_ref ao;
453
454 gcc_checking_assert (DECL_P (arg)
455 || TREE_CODE (arg) == MEM_REF
456 || handled_component_p (arg));
457 /* Const calls cannot call virtual methods through VMT and so type changes do
458 not matter. */
459 if (!flag_devirtualize || !gimple_vuse (call))
460 return false;
461
462 tci.type_maybe_changed = false;
463
464 ao.ref = arg;
465 ao.base = base;
466 ao.offset = offset;
467 ao.size = POINTER_SIZE;
468 ao.max_size = ao.size;
469 ao.ref_alias_set = -1;
470 ao.base_alias_set = -1;
471
472 walk_aliased_vdefs (&ao, gimple_vuse (call), check_stmt_for_type_change,
473 &tci, NULL);
474 if (!tci.type_maybe_changed)
475 return false;
476
477 jfunc->type = IPA_JF_UNKNOWN;
478 return true;
479 }
480
481 /* Like detect_type_change but ARG is supposed to be a non-dereferenced pointer
482 SSA name (its dereference will become the base and the offset is assumed to
483 be zero). */
484
485 static bool
486 detect_type_change_ssa (tree arg, gimple call, struct ipa_jump_func *jfunc)
487 {
488 gcc_checking_assert (TREE_CODE (arg) == SSA_NAME);
489 if (!flag_devirtualize
490 || !POINTER_TYPE_P (TREE_TYPE (arg))
491 || TREE_CODE (TREE_TYPE (TREE_TYPE (arg))) != RECORD_TYPE)
492 return false;
493
494 arg = build2 (MEM_REF, ptr_type_node, arg,
495 build_int_cst (ptr_type_node, 0));
496
497 return detect_type_change (arg, arg, call, jfunc, 0);
498 }
499
500
501 /* Given that an actual argument is an SSA_NAME (given in NAME) and is a result
502 of an assignment statement STMT, try to find out whether NAME can be
503 described by a (possibly polynomial) pass-through jump-function or an
504 ancestor jump function and if so, write the appropriate function into
505 JFUNC */
506
507 static void
508 compute_complex_assign_jump_func (struct ipa_node_params *info,
509 struct ipa_jump_func *jfunc,
510 gimple call, gimple stmt, tree name)
511 {
512 HOST_WIDE_INT offset, size, max_size;
513 tree op1, op2, base, ssa;
514 int index;
515
516 op1 = gimple_assign_rhs1 (stmt);
517 op2 = gimple_assign_rhs2 (stmt);
518
519 if (TREE_CODE (op1) == SSA_NAME
520 && SSA_NAME_IS_DEFAULT_DEF (op1))
521 {
522 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (op1));
523 if (index < 0)
524 return;
525
526 if (op2)
527 {
528 if (!is_gimple_ip_invariant (op2)
529 || (TREE_CODE_CLASS (gimple_expr_code (stmt)) != tcc_comparison
530 && !useless_type_conversion_p (TREE_TYPE (name),
531 TREE_TYPE (op1))))
532 return;
533
534 jfunc->type = IPA_JF_PASS_THROUGH;
535 jfunc->value.pass_through.formal_id = index;
536 jfunc->value.pass_through.operation = gimple_assign_rhs_code (stmt);
537 jfunc->value.pass_through.operand = op2;
538 }
539 else if (gimple_assign_unary_nop_p (stmt)
540 && !detect_type_change_ssa (op1, call, jfunc))
541 {
542 jfunc->type = IPA_JF_PASS_THROUGH;
543 jfunc->value.pass_through.formal_id = index;
544 jfunc->value.pass_through.operation = NOP_EXPR;
545 }
546 return;
547 }
548
549 if (TREE_CODE (op1) != ADDR_EXPR)
550 return;
551 op1 = TREE_OPERAND (op1, 0);
552 if (TREE_CODE (TREE_TYPE (op1)) != RECORD_TYPE)
553 return;
554 base = get_ref_base_and_extent (op1, &offset, &size, &max_size);
555 if (TREE_CODE (base) != MEM_REF
556 /* If this is a varying address, punt. */
557 || max_size == -1
558 || max_size != size)
559 return;
560 offset += mem_ref_offset (base).low * BITS_PER_UNIT;
561 ssa = TREE_OPERAND (base, 0);
562 if (TREE_CODE (ssa) != SSA_NAME
563 || !SSA_NAME_IS_DEFAULT_DEF (ssa)
564 || offset < 0)
565 return;
566
567 /* Dynamic types are changed only in constructors and destructors and */
568 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (ssa));
569 if (index >= 0
570 && !detect_type_change (op1, base, call, jfunc, offset))
571 {
572 jfunc->type = IPA_JF_ANCESTOR;
573 jfunc->value.ancestor.formal_id = index;
574 jfunc->value.ancestor.offset = offset;
575 jfunc->value.ancestor.type = TREE_TYPE (op1);
576 }
577 }
578
579
580 /* Given that an actual argument is an SSA_NAME that is a result of a phi
581 statement PHI, try to find out whether NAME is in fact a
582 multiple-inheritance typecast from a descendant into an ancestor of a formal
583 parameter and thus can be described by an ancestor jump function and if so,
584 write the appropriate function into JFUNC.
585
586 Essentially we want to match the following pattern:
587
588 if (obj_2(D) != 0B)
589 goto <bb 3>;
590 else
591 goto <bb 4>;
592
593 <bb 3>:
594 iftmp.1_3 = &obj_2(D)->D.1762;
595
596 <bb 4>:
597 # iftmp.1_1 = PHI <iftmp.1_3(3), 0B(2)>
598 D.1879_6 = middleman_1 (iftmp.1_1, i_5(D));
599 return D.1879_6; */
600
601 static void
602 compute_complex_ancestor_jump_func (struct ipa_node_params *info,
603 struct ipa_jump_func *jfunc,
604 gimple call, gimple phi)
605 {
606 HOST_WIDE_INT offset, size, max_size;
607 gimple assign, cond;
608 basic_block phi_bb, assign_bb, cond_bb;
609 tree tmp, parm, expr, obj;
610 int index, i;
611
612 if (gimple_phi_num_args (phi) != 2)
613 return;
614
615 if (integer_zerop (PHI_ARG_DEF (phi, 1)))
616 tmp = PHI_ARG_DEF (phi, 0);
617 else if (integer_zerop (PHI_ARG_DEF (phi, 0)))
618 tmp = PHI_ARG_DEF (phi, 1);
619 else
620 return;
621 if (TREE_CODE (tmp) != SSA_NAME
622 || SSA_NAME_IS_DEFAULT_DEF (tmp)
623 || !POINTER_TYPE_P (TREE_TYPE (tmp))
624 || TREE_CODE (TREE_TYPE (TREE_TYPE (tmp))) != RECORD_TYPE)
625 return;
626
627 assign = SSA_NAME_DEF_STMT (tmp);
628 assign_bb = gimple_bb (assign);
629 if (!single_pred_p (assign_bb)
630 || !gimple_assign_single_p (assign))
631 return;
632 expr = gimple_assign_rhs1 (assign);
633
634 if (TREE_CODE (expr) != ADDR_EXPR)
635 return;
636 expr = TREE_OPERAND (expr, 0);
637 obj = expr;
638 expr = get_ref_base_and_extent (expr, &offset, &size, &max_size);
639
640 if (TREE_CODE (expr) != MEM_REF
641 /* If this is a varying address, punt. */
642 || max_size == -1
643 || max_size != size)
644 return;
645 offset += mem_ref_offset (expr).low * BITS_PER_UNIT;
646 parm = TREE_OPERAND (expr, 0);
647 if (TREE_CODE (parm) != SSA_NAME
648 || !SSA_NAME_IS_DEFAULT_DEF (parm)
649 || offset < 0)
650 return;
651
652 index = ipa_get_param_decl_index (info, SSA_NAME_VAR (parm));
653 if (index < 0)
654 return;
655
656 cond_bb = single_pred (assign_bb);
657 cond = last_stmt (cond_bb);
658 if (!cond
659 || gimple_code (cond) != GIMPLE_COND
660 || gimple_cond_code (cond) != NE_EXPR
661 || gimple_cond_lhs (cond) != parm
662 || !integer_zerop (gimple_cond_rhs (cond)))
663 return;
664
665 phi_bb = gimple_bb (phi);
666 for (i = 0; i < 2; i++)
667 {
668 basic_block pred = EDGE_PRED (phi_bb, i)->src;
669 if (pred != assign_bb && pred != cond_bb)
670 return;
671 }
672
673 if (!detect_type_change (obj, expr, call, jfunc, offset))
674 {
675 jfunc->type = IPA_JF_ANCESTOR;
676 jfunc->value.ancestor.formal_id = index;
677 jfunc->value.ancestor.offset = offset;
678 jfunc->value.ancestor.type = TREE_TYPE (obj);;
679 }
680 }
681
682 /* Given OP which is passed as an actual argument to a called function,
683 determine if it is possible to construct a KNOWN_TYPE jump function for it
684 and if so, create one and store it to JFUNC. */
685
686 static void
687 compute_known_type_jump_func (tree op, struct ipa_jump_func *jfunc,
688 gimple call)
689 {
690 HOST_WIDE_INT offset, size, max_size;
691 tree base, binfo;
692
693 if (!flag_devirtualize
694 || TREE_CODE (op) != ADDR_EXPR
695 || TREE_CODE (TREE_TYPE (TREE_TYPE (op))) != RECORD_TYPE)
696 return;
697
698 op = TREE_OPERAND (op, 0);
699 base = get_ref_base_and_extent (op, &offset, &size, &max_size);
700 if (!DECL_P (base)
701 || max_size == -1
702 || max_size != size
703 || TREE_CODE (TREE_TYPE (base)) != RECORD_TYPE
704 || is_global_var (base))
705 return;
706
707 if (detect_type_change (op, base, call, jfunc, offset))
708 return;
709
710 binfo = TYPE_BINFO (TREE_TYPE (base));
711 if (!binfo)
712 return;
713 binfo = get_binfo_at_offset (binfo, offset, TREE_TYPE (op));
714 if (binfo)
715 {
716 jfunc->type = IPA_JF_KNOWN_TYPE;
717 jfunc->value.base_binfo = binfo;
718 }
719 }
720
721
722 /* Determine the jump functions of scalar arguments. Scalar means SSA names
723 and constants of a number of selected types. INFO is the ipa_node_params
724 structure associated with the caller, FUNCTIONS is a pointer to an array of
725 jump function structures associated with CALL which is the call statement
726 being examined.*/
727
728 static void
729 compute_scalar_jump_functions (struct ipa_node_params *info,
730 struct ipa_jump_func *functions,
731 gimple call)
732 {
733 tree arg;
734 unsigned num = 0;
735
736 for (num = 0; num < gimple_call_num_args (call); num++)
737 {
738 arg = gimple_call_arg (call, num);
739
740 if (is_gimple_ip_invariant (arg))
741 {
742 functions[num].type = IPA_JF_CONST;
743 functions[num].value.constant = arg;
744 }
745 else if (TREE_CODE (arg) == SSA_NAME)
746 {
747 if (SSA_NAME_IS_DEFAULT_DEF (arg))
748 {
749 int index = ipa_get_param_decl_index (info, SSA_NAME_VAR (arg));
750
751 if (index >= 0
752 && !detect_type_change_ssa (arg, call, &functions[num]))
753 {
754 functions[num].type = IPA_JF_PASS_THROUGH;
755 functions[num].value.pass_through.formal_id = index;
756 functions[num].value.pass_through.operation = NOP_EXPR;
757 }
758 }
759 else
760 {
761 gimple stmt = SSA_NAME_DEF_STMT (arg);
762 if (is_gimple_assign (stmt))
763 compute_complex_assign_jump_func (info, &functions[num],
764 call, stmt, arg);
765 else if (gimple_code (stmt) == GIMPLE_PHI)
766 compute_complex_ancestor_jump_func (info, &functions[num],
767 call, stmt);
768 }
769 }
770 else
771 compute_known_type_jump_func (arg, &functions[num], call);
772 }
773 }
774
775 /* Inspect the given TYPE and return true iff it has the same structure (the
776 same number of fields of the same types) as a C++ member pointer. If
777 METHOD_PTR and DELTA are non-NULL, store the trees representing the
778 corresponding fields there. */
779
780 static bool
781 type_like_member_ptr_p (tree type, tree *method_ptr, tree *delta)
782 {
783 tree fld;
784
785 if (TREE_CODE (type) != RECORD_TYPE)
786 return false;
787
788 fld = TYPE_FIELDS (type);
789 if (!fld || !POINTER_TYPE_P (TREE_TYPE (fld))
790 || TREE_CODE (TREE_TYPE (TREE_TYPE (fld))) != METHOD_TYPE)
791 return false;
792
793 if (method_ptr)
794 *method_ptr = fld;
795
796 fld = DECL_CHAIN (fld);
797 if (!fld || INTEGRAL_TYPE_P (fld))
798 return false;
799 if (delta)
800 *delta = fld;
801
802 if (DECL_CHAIN (fld))
803 return false;
804
805 return true;
806 }
807
808 /* Callback of walk_aliased_vdefs. Flags that it has been invoked to the
809 boolean variable pointed to by DATA. */
810
811 static bool
812 mark_modified (ao_ref *ao ATTRIBUTE_UNUSED, tree vdef ATTRIBUTE_UNUSED,
813 void *data)
814 {
815 bool *b = (bool *) data;
816 *b = true;
817 return true;
818 }
819
820 /* Return true if the formal parameter PARM might have been modified in this
821 function before reaching the statement CALL. PARM_INFO is a pointer to a
822 structure containing intermediate information about PARM. */
823
824 static bool
825 is_parm_modified_before_call (struct param_analysis_info *parm_info,
826 gimple call, tree parm)
827 {
828 bool modified = false;
829 ao_ref refd;
830
831 if (parm_info->modified)
832 return true;
833
834 ao_ref_init (&refd, parm);
835 walk_aliased_vdefs (&refd, gimple_vuse (call), mark_modified,
836 &modified, &parm_info->visited_statements);
837 if (modified)
838 {
839 parm_info->modified = true;
840 return true;
841 }
842 return false;
843 }
844
845 /* Go through arguments of the CALL and for every one that looks like a member
846 pointer, check whether it can be safely declared pass-through and if so,
847 mark that to the corresponding item of jump FUNCTIONS. Return true iff
848 there are non-pass-through member pointers within the arguments. INFO
849 describes formal parameters of the caller. PARMS_INFO is a pointer to a
850 vector containing intermediate information about each formal parameter. */
851
852 static bool
853 compute_pass_through_member_ptrs (struct ipa_node_params *info,
854 struct param_analysis_info *parms_info,
855 struct ipa_jump_func *functions,
856 gimple call)
857 {
858 bool undecided_members = false;
859 unsigned num;
860 tree arg;
861
862 for (num = 0; num < gimple_call_num_args (call); num++)
863 {
864 arg = gimple_call_arg (call, num);
865
866 if (type_like_member_ptr_p (TREE_TYPE (arg), NULL, NULL))
867 {
868 if (TREE_CODE (arg) == PARM_DECL)
869 {
870 int index = ipa_get_param_decl_index (info, arg);
871
872 gcc_assert (index >=0);
873 if (!is_parm_modified_before_call (&parms_info[index], call, arg))
874 {
875 functions[num].type = IPA_JF_PASS_THROUGH;
876 functions[num].value.pass_through.formal_id = index;
877 functions[num].value.pass_through.operation = NOP_EXPR;
878 }
879 else
880 undecided_members = true;
881 }
882 else
883 undecided_members = true;
884 }
885 }
886
887 return undecided_members;
888 }
889
890 /* Simple function filling in a member pointer constant jump function (with PFN
891 and DELTA as the constant value) into JFUNC. */
892
893 static void
894 fill_member_ptr_cst_jump_function (struct ipa_jump_func *jfunc,
895 tree pfn, tree delta)
896 {
897 jfunc->type = IPA_JF_CONST_MEMBER_PTR;
898 jfunc->value.member_cst.pfn = pfn;
899 jfunc->value.member_cst.delta = delta;
900 }
901
902 /* If RHS is an SSA_NAME and it is defined by a simple copy assign statement,
903 return the rhs of its defining statement. */
904
905 static inline tree
906 get_ssa_def_if_simple_copy (tree rhs)
907 {
908 while (TREE_CODE (rhs) == SSA_NAME && !SSA_NAME_IS_DEFAULT_DEF (rhs))
909 {
910 gimple def_stmt = SSA_NAME_DEF_STMT (rhs);
911
912 if (gimple_assign_single_p (def_stmt))
913 rhs = gimple_assign_rhs1 (def_stmt);
914 else
915 break;
916 }
917 return rhs;
918 }
919
920 /* Traverse statements from CALL backwards, scanning whether the argument ARG
921 which is a member pointer is filled in with constant values. If it is, fill
922 the jump function JFUNC in appropriately. METHOD_FIELD and DELTA_FIELD are
923 fields of the record type of the member pointer. To give an example, we
924 look for a pattern looking like the following:
925
926 D.2515.__pfn ={v} printStuff;
927 D.2515.__delta ={v} 0;
928 i_1 = doprinting (D.2515); */
929
930 static void
931 determine_cst_member_ptr (gimple call, tree arg, tree method_field,
932 tree delta_field, struct ipa_jump_func *jfunc)
933 {
934 gimple_stmt_iterator gsi;
935 tree method = NULL_TREE;
936 tree delta = NULL_TREE;
937
938 gsi = gsi_for_stmt (call);
939
940 gsi_prev (&gsi);
941 for (; !gsi_end_p (gsi); gsi_prev (&gsi))
942 {
943 gimple stmt = gsi_stmt (gsi);
944 tree lhs, rhs, fld;
945
946 if (!stmt_may_clobber_ref_p (stmt, arg))
947 continue;
948 if (!gimple_assign_single_p (stmt))
949 return;
950
951 lhs = gimple_assign_lhs (stmt);
952 rhs = gimple_assign_rhs1 (stmt);
953
954 if (TREE_CODE (lhs) != COMPONENT_REF
955 || TREE_OPERAND (lhs, 0) != arg)
956 return;
957
958 fld = TREE_OPERAND (lhs, 1);
959 if (!method && fld == method_field)
960 {
961 rhs = get_ssa_def_if_simple_copy (rhs);
962 if (TREE_CODE (rhs) == ADDR_EXPR
963 && TREE_CODE (TREE_OPERAND (rhs, 0)) == FUNCTION_DECL
964 && TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) == METHOD_TYPE)
965 {
966 method = TREE_OPERAND (rhs, 0);
967 if (delta)
968 {
969 fill_member_ptr_cst_jump_function (jfunc, rhs, delta);
970 return;
971 }
972 }
973 else
974 return;
975 }
976
977 if (!delta && fld == delta_field)
978 {
979 rhs = get_ssa_def_if_simple_copy (rhs);
980 if (TREE_CODE (rhs) == INTEGER_CST)
981 {
982 delta = rhs;
983 if (method)
984 {
985 fill_member_ptr_cst_jump_function (jfunc, rhs, delta);
986 return;
987 }
988 }
989 else
990 return;
991 }
992 }
993
994 return;
995 }
996
997 /* Go through the arguments of the CALL and for every member pointer within
998 tries determine whether it is a constant. If it is, create a corresponding
999 constant jump function in FUNCTIONS which is an array of jump functions
1000 associated with the call. */
1001
1002 static void
1003 compute_cst_member_ptr_arguments (struct ipa_jump_func *functions,
1004 gimple call)
1005 {
1006 unsigned num;
1007 tree arg, method_field, delta_field;
1008
1009 for (num = 0; num < gimple_call_num_args (call); num++)
1010 {
1011 arg = gimple_call_arg (call, num);
1012
1013 if (functions[num].type == IPA_JF_UNKNOWN
1014 && type_like_member_ptr_p (TREE_TYPE (arg), &method_field,
1015 &delta_field))
1016 determine_cst_member_ptr (call, arg, method_field, delta_field,
1017 &functions[num]);
1018 }
1019 }
1020
1021 /* Compute jump function for all arguments of callsite CS and insert the
1022 information in the jump_functions array in the ipa_edge_args corresponding
1023 to this callsite. */
1024
1025 static void
1026 ipa_compute_jump_functions_for_edge (struct param_analysis_info *parms_info,
1027 struct cgraph_edge *cs)
1028 {
1029 struct ipa_node_params *info = IPA_NODE_REF (cs->caller);
1030 struct ipa_edge_args *arguments = IPA_EDGE_REF (cs);
1031 gimple call;
1032
1033 if (ipa_get_cs_argument_count (arguments) == 0 || arguments->jump_functions)
1034 return;
1035 arguments->jump_functions = ggc_alloc_cleared_vec_ipa_jump_func
1036 (ipa_get_cs_argument_count (arguments));
1037
1038 call = cs->call_stmt;
1039 gcc_assert (is_gimple_call (call));
1040
1041 /* We will deal with constants and SSA scalars first: */
1042 compute_scalar_jump_functions (info, arguments->jump_functions, call);
1043
1044 /* Let's check whether there are any potential member pointers and if so,
1045 whether we can determine their functions as pass_through. */
1046 if (!compute_pass_through_member_ptrs (info, parms_info,
1047 arguments->jump_functions, call))
1048 return;
1049
1050 /* Finally, let's check whether we actually pass a new constant member
1051 pointer here... */
1052 compute_cst_member_ptr_arguments (arguments->jump_functions, call);
1053 }
1054
1055 /* Compute jump functions for all edges - both direct and indirect - outgoing
1056 from NODE. Also count the actual arguments in the process. */
1057
1058 static void
1059 ipa_compute_jump_functions (struct cgraph_node *node,
1060 struct param_analysis_info *parms_info)
1061 {
1062 struct cgraph_edge *cs;
1063
1064 for (cs = node->callees; cs; cs = cs->next_callee)
1065 {
1066 /* We do not need to bother analyzing calls to unknown
1067 functions unless they may become known during lto/whopr. */
1068 if (!cs->callee->analyzed && !flag_lto)
1069 continue;
1070 ipa_count_arguments (cs);
1071 /* If the descriptor of the callee is not initialized yet, we have to do
1072 it now. */
1073 if (cs->callee->analyzed)
1074 ipa_initialize_node_params (cs->callee);
1075 if (ipa_get_cs_argument_count (IPA_EDGE_REF (cs))
1076 != ipa_get_param_count (IPA_NODE_REF (cs->callee)))
1077 ipa_set_called_with_variable_arg (IPA_NODE_REF (cs->callee));
1078 ipa_compute_jump_functions_for_edge (parms_info, cs);
1079 }
1080
1081 for (cs = node->indirect_calls; cs; cs = cs->next_callee)
1082 {
1083 ipa_count_arguments (cs);
1084 ipa_compute_jump_functions_for_edge (parms_info, cs);
1085 }
1086 }
1087
1088 /* If RHS looks like a rhs of a statement loading pfn from a member
1089 pointer formal parameter, return the parameter, otherwise return
1090 NULL. If USE_DELTA, then we look for a use of the delta field
1091 rather than the pfn. */
1092
1093 static tree
1094 ipa_get_member_ptr_load_param (tree rhs, bool use_delta)
1095 {
1096 tree rec, ref_field, ref_offset, fld, fld_offset, ptr_field, delta_field;
1097
1098 if (TREE_CODE (rhs) == COMPONENT_REF)
1099 {
1100 ref_field = TREE_OPERAND (rhs, 1);
1101 rhs = TREE_OPERAND (rhs, 0);
1102 }
1103 else
1104 ref_field = NULL_TREE;
1105 if (TREE_CODE (rhs) != MEM_REF)
1106 return NULL_TREE;
1107 rec = TREE_OPERAND (rhs, 0);
1108 if (TREE_CODE (rec) != ADDR_EXPR)
1109 return NULL_TREE;
1110 rec = TREE_OPERAND (rec, 0);
1111 if (TREE_CODE (rec) != PARM_DECL
1112 || !type_like_member_ptr_p (TREE_TYPE (rec), &ptr_field, &delta_field))
1113 return NULL_TREE;
1114
1115 ref_offset = TREE_OPERAND (rhs, 1);
1116
1117 if (ref_field)
1118 {
1119 if (integer_nonzerop (ref_offset))
1120 return NULL_TREE;
1121
1122 if (use_delta)
1123 fld = delta_field;
1124 else
1125 fld = ptr_field;
1126
1127 return ref_field == fld ? rec : NULL_TREE;
1128 }
1129
1130 if (use_delta)
1131 fld_offset = byte_position (delta_field);
1132 else
1133 fld_offset = byte_position (ptr_field);
1134
1135 return tree_int_cst_equal (ref_offset, fld_offset) ? rec : NULL_TREE;
1136 }
1137
1138 /* If STMT looks like a statement loading a value from a member pointer formal
1139 parameter, this function returns that parameter. */
1140
1141 static tree
1142 ipa_get_stmt_member_ptr_load_param (gimple stmt, bool use_delta)
1143 {
1144 tree rhs;
1145
1146 if (!gimple_assign_single_p (stmt))
1147 return NULL_TREE;
1148
1149 rhs = gimple_assign_rhs1 (stmt);
1150 return ipa_get_member_ptr_load_param (rhs, use_delta);
1151 }
1152
1153 /* Returns true iff T is an SSA_NAME defined by a statement. */
1154
1155 static bool
1156 ipa_is_ssa_with_stmt_def (tree t)
1157 {
1158 if (TREE_CODE (t) == SSA_NAME
1159 && !SSA_NAME_IS_DEFAULT_DEF (t))
1160 return true;
1161 else
1162 return false;
1163 }
1164
1165 /* Find the indirect call graph edge corresponding to STMT and add to it all
1166 information necessary to describe a call to a parameter number PARAM_INDEX.
1167 NODE is the caller. POLYMORPHIC should be set to true iff the call is a
1168 virtual one. */
1169
1170 static void
1171 ipa_note_param_call (struct cgraph_node *node, int param_index, gimple stmt,
1172 bool polymorphic)
1173 {
1174 struct cgraph_edge *cs;
1175
1176 cs = cgraph_edge (node, stmt);
1177 cs->indirect_info->param_index = param_index;
1178 cs->indirect_info->anc_offset = 0;
1179 cs->indirect_info->polymorphic = polymorphic;
1180 if (polymorphic)
1181 {
1182 tree otr = gimple_call_fn (stmt);
1183 tree type, token = OBJ_TYPE_REF_TOKEN (otr);
1184 cs->indirect_info->otr_token = tree_low_cst (token, 1);
1185 type = TREE_TYPE (TREE_TYPE (OBJ_TYPE_REF_OBJECT (otr)));
1186 cs->indirect_info->otr_type = type;
1187 }
1188 }
1189
1190 /* Analyze the CALL and examine uses of formal parameters of the caller NODE
1191 (described by INFO). PARMS_INFO is a pointer to a vector containing
1192 intermediate information about each formal parameter. Currently it checks
1193 whether the call calls a pointer that is a formal parameter and if so, the
1194 parameter is marked with the called flag and an indirect call graph edge
1195 describing the call is created. This is very simple for ordinary pointers
1196 represented in SSA but not-so-nice when it comes to member pointers. The
1197 ugly part of this function does nothing more than trying to match the
1198 pattern of such a call. An example of such a pattern is the gimple dump
1199 below, the call is on the last line:
1200
1201 <bb 2>:
1202 f$__delta_5 = f.__delta;
1203 f$__pfn_24 = f.__pfn;
1204
1205 or
1206 <bb 2>:
1207 f$__delta_5 = MEM[(struct *)&f];
1208 f$__pfn_24 = MEM[(struct *)&f + 4B];
1209
1210 and a few lines below:
1211
1212 <bb 5>
1213 D.2496_3 = (int) f$__pfn_24;
1214 D.2497_4 = D.2496_3 & 1;
1215 if (D.2497_4 != 0)
1216 goto <bb 3>;
1217 else
1218 goto <bb 4>;
1219
1220 <bb 6>:
1221 D.2500_7 = (unsigned int) f$__delta_5;
1222 D.2501_8 = &S + D.2500_7;
1223 D.2502_9 = (int (*__vtbl_ptr_type) (void) * *) D.2501_8;
1224 D.2503_10 = *D.2502_9;
1225 D.2504_12 = f$__pfn_24 + -1;
1226 D.2505_13 = (unsigned int) D.2504_12;
1227 D.2506_14 = D.2503_10 + D.2505_13;
1228 D.2507_15 = *D.2506_14;
1229 iftmp.11_16 = (String:: *) D.2507_15;
1230
1231 <bb 7>:
1232 # iftmp.11_1 = PHI <iftmp.11_16(3), f$__pfn_24(2)>
1233 D.2500_19 = (unsigned int) f$__delta_5;
1234 D.2508_20 = &S + D.2500_19;
1235 D.2493_21 = iftmp.11_1 (D.2508_20, 4);
1236
1237 Such patterns are results of simple calls to a member pointer:
1238
1239 int doprinting (int (MyString::* f)(int) const)
1240 {
1241 MyString S ("somestring");
1242
1243 return (S.*f)(4);
1244 }
1245 */
1246
1247 static void
1248 ipa_analyze_indirect_call_uses (struct cgraph_node *node,
1249 struct ipa_node_params *info,
1250 struct param_analysis_info *parms_info,
1251 gimple call, tree target)
1252 {
1253 gimple def;
1254 tree n1, n2;
1255 gimple d1, d2;
1256 tree rec, rec2, cond;
1257 gimple branch;
1258 int index;
1259 basic_block bb, virt_bb, join;
1260
1261 if (SSA_NAME_IS_DEFAULT_DEF (target))
1262 {
1263 tree var = SSA_NAME_VAR (target);
1264 index = ipa_get_param_decl_index (info, var);
1265 if (index >= 0)
1266 ipa_note_param_call (node, index, call, false);
1267 return;
1268 }
1269
1270 /* Now we need to try to match the complex pattern of calling a member
1271 pointer. */
1272
1273 if (!POINTER_TYPE_P (TREE_TYPE (target))
1274 || TREE_CODE (TREE_TYPE (TREE_TYPE (target))) != METHOD_TYPE)
1275 return;
1276
1277 def = SSA_NAME_DEF_STMT (target);
1278 if (gimple_code (def) != GIMPLE_PHI)
1279 return;
1280
1281 if (gimple_phi_num_args (def) != 2)
1282 return;
1283
1284 /* First, we need to check whether one of these is a load from a member
1285 pointer that is a parameter to this function. */
1286 n1 = PHI_ARG_DEF (def, 0);
1287 n2 = PHI_ARG_DEF (def, 1);
1288 if (!ipa_is_ssa_with_stmt_def (n1) || !ipa_is_ssa_with_stmt_def (n2))
1289 return;
1290 d1 = SSA_NAME_DEF_STMT (n1);
1291 d2 = SSA_NAME_DEF_STMT (n2);
1292
1293 join = gimple_bb (def);
1294 if ((rec = ipa_get_stmt_member_ptr_load_param (d1, false)))
1295 {
1296 if (ipa_get_stmt_member_ptr_load_param (d2, false))
1297 return;
1298
1299 bb = EDGE_PRED (join, 0)->src;
1300 virt_bb = gimple_bb (d2);
1301 }
1302 else if ((rec = ipa_get_stmt_member_ptr_load_param (d2, false)))
1303 {
1304 bb = EDGE_PRED (join, 1)->src;
1305 virt_bb = gimple_bb (d1);
1306 }
1307 else
1308 return;
1309
1310 /* Second, we need to check that the basic blocks are laid out in the way
1311 corresponding to the pattern. */
1312
1313 if (!single_pred_p (virt_bb) || !single_succ_p (virt_bb)
1314 || single_pred (virt_bb) != bb
1315 || single_succ (virt_bb) != join)
1316 return;
1317
1318 /* Third, let's see that the branching is done depending on the least
1319 significant bit of the pfn. */
1320
1321 branch = last_stmt (bb);
1322 if (!branch || gimple_code (branch) != GIMPLE_COND)
1323 return;
1324
1325 if (gimple_cond_code (branch) != NE_EXPR
1326 || !integer_zerop (gimple_cond_rhs (branch)))
1327 return;
1328
1329 cond = gimple_cond_lhs (branch);
1330 if (!ipa_is_ssa_with_stmt_def (cond))
1331 return;
1332
1333 def = SSA_NAME_DEF_STMT (cond);
1334 if (!is_gimple_assign (def)
1335 || gimple_assign_rhs_code (def) != BIT_AND_EXPR
1336 || !integer_onep (gimple_assign_rhs2 (def)))
1337 return;
1338
1339 cond = gimple_assign_rhs1 (def);
1340 if (!ipa_is_ssa_with_stmt_def (cond))
1341 return;
1342
1343 def = SSA_NAME_DEF_STMT (cond);
1344
1345 if (is_gimple_assign (def)
1346 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def)))
1347 {
1348 cond = gimple_assign_rhs1 (def);
1349 if (!ipa_is_ssa_with_stmt_def (cond))
1350 return;
1351 def = SSA_NAME_DEF_STMT (cond);
1352 }
1353
1354 rec2 = ipa_get_stmt_member_ptr_load_param (def,
1355 (TARGET_PTRMEMFUNC_VBIT_LOCATION
1356 == ptrmemfunc_vbit_in_delta));
1357
1358 if (rec != rec2)
1359 return;
1360
1361 index = ipa_get_param_decl_index (info, rec);
1362 if (index >= 0 && !is_parm_modified_before_call (&parms_info[index],
1363 call, rec))
1364 ipa_note_param_call (node, index, call, false);
1365
1366 return;
1367 }
1368
1369 /* Analyze a CALL to an OBJ_TYPE_REF which is passed in TARGET and if the
1370 object referenced in the expression is a formal parameter of the caller
1371 (described by INFO), create a call note for the statement. */
1372
1373 static void
1374 ipa_analyze_virtual_call_uses (struct cgraph_node *node,
1375 struct ipa_node_params *info, gimple call,
1376 tree target)
1377 {
1378 struct ipa_jump_func jfunc;
1379 tree obj = OBJ_TYPE_REF_OBJECT (target);
1380 tree var;
1381 int index;
1382
1383 if (!flag_devirtualize)
1384 return;
1385
1386 if (TREE_CODE (obj) != SSA_NAME
1387 || !SSA_NAME_IS_DEFAULT_DEF (obj))
1388 return;
1389
1390 var = SSA_NAME_VAR (obj);
1391 index = ipa_get_param_decl_index (info, var);
1392
1393 if (index >= 0
1394 && !detect_type_change_ssa (obj, call, &jfunc))
1395 ipa_note_param_call (node, index, call, true);
1396 }
1397
1398 /* Analyze a call statement CALL whether and how it utilizes formal parameters
1399 of the caller (described by INFO). PARMS_INFO is a pointer to a vector
1400 containing intermediate information about each formal parameter. */
1401
1402 static void
1403 ipa_analyze_call_uses (struct cgraph_node *node,
1404 struct ipa_node_params *info,
1405 struct param_analysis_info *parms_info, gimple call)
1406 {
1407 tree target = gimple_call_fn (call);
1408
1409 if (TREE_CODE (target) == SSA_NAME)
1410 ipa_analyze_indirect_call_uses (node, info, parms_info, call, target);
1411 else if (TREE_CODE (target) == OBJ_TYPE_REF)
1412 ipa_analyze_virtual_call_uses (node, info, call, target);
1413 }
1414
1415
1416 /* Analyze the call statement STMT with respect to formal parameters (described
1417 in INFO) of caller given by NODE. Currently it only checks whether formal
1418 parameters are called. PARMS_INFO is a pointer to a vector containing
1419 intermediate information about each formal parameter. */
1420
1421 static void
1422 ipa_analyze_stmt_uses (struct cgraph_node *node, struct ipa_node_params *info,
1423 struct param_analysis_info *parms_info, gimple stmt)
1424 {
1425 if (is_gimple_call (stmt))
1426 ipa_analyze_call_uses (node, info, parms_info, stmt);
1427 }
1428
1429 /* Callback of walk_stmt_load_store_addr_ops for the visit_load.
1430 If OP is a parameter declaration, mark it as used in the info structure
1431 passed in DATA. */
1432
1433 static bool
1434 visit_ref_for_mod_analysis (gimple stmt ATTRIBUTE_UNUSED,
1435 tree op, void *data)
1436 {
1437 struct ipa_node_params *info = (struct ipa_node_params *) data;
1438
1439 op = get_base_address (op);
1440 if (op
1441 && TREE_CODE (op) == PARM_DECL)
1442 {
1443 int index = ipa_get_param_decl_index (info, op);
1444 gcc_assert (index >= 0);
1445 info->params[index].used = true;
1446 }
1447
1448 return false;
1449 }
1450
1451 /* Scan the function body of NODE and inspect the uses of formal parameters.
1452 Store the findings in various structures of the associated ipa_node_params
1453 structure, such as parameter flags, notes etc. PARMS_INFO is a pointer to a
1454 vector containing intermediate information about each formal parameter. */
1455
1456 static void
1457 ipa_analyze_params_uses (struct cgraph_node *node,
1458 struct param_analysis_info *parms_info)
1459 {
1460 tree decl = node->decl;
1461 basic_block bb;
1462 struct function *func;
1463 gimple_stmt_iterator gsi;
1464 struct ipa_node_params *info = IPA_NODE_REF (node);
1465 int i;
1466
1467 if (ipa_get_param_count (info) == 0 || info->uses_analysis_done)
1468 return;
1469
1470 for (i = 0; i < ipa_get_param_count (info); i++)
1471 {
1472 tree parm = ipa_get_param (info, i);
1473 /* For SSA regs see if parameter is used. For non-SSA we compute
1474 the flag during modification analysis. */
1475 if (is_gimple_reg (parm)
1476 && gimple_default_def (DECL_STRUCT_FUNCTION (node->decl), parm))
1477 info->params[i].used = true;
1478 }
1479
1480 func = DECL_STRUCT_FUNCTION (decl);
1481 FOR_EACH_BB_FN (bb, func)
1482 {
1483 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1484 {
1485 gimple stmt = gsi_stmt (gsi);
1486
1487 if (is_gimple_debug (stmt))
1488 continue;
1489
1490 ipa_analyze_stmt_uses (node, info, parms_info, stmt);
1491 walk_stmt_load_store_addr_ops (stmt, info,
1492 visit_ref_for_mod_analysis,
1493 visit_ref_for_mod_analysis,
1494 visit_ref_for_mod_analysis);
1495 }
1496 for (gsi = gsi_start (phi_nodes (bb)); !gsi_end_p (gsi); gsi_next (&gsi))
1497 walk_stmt_load_store_addr_ops (gsi_stmt (gsi), info,
1498 visit_ref_for_mod_analysis,
1499 visit_ref_for_mod_analysis,
1500 visit_ref_for_mod_analysis);
1501 }
1502
1503 info->uses_analysis_done = 1;
1504 }
1505
1506 /* Initialize the array describing properties of of formal parameters
1507 of NODE, analyze their uses and compute jump functions associated
1508 with actual arguments of calls from within NODE. */
1509
1510 void
1511 ipa_analyze_node (struct cgraph_node *node)
1512 {
1513 struct ipa_node_params *info;
1514 struct param_analysis_info *parms_info;
1515 int i, param_count;
1516
1517 ipa_check_create_node_params ();
1518 ipa_check_create_edge_args ();
1519 info = IPA_NODE_REF (node);
1520 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1521 current_function_decl = node->decl;
1522 ipa_initialize_node_params (node);
1523
1524 param_count = ipa_get_param_count (info);
1525 parms_info = XALLOCAVEC (struct param_analysis_info, param_count);
1526 memset (parms_info, 0, sizeof (struct param_analysis_info) * param_count);
1527
1528 ipa_analyze_params_uses (node, parms_info);
1529 ipa_compute_jump_functions (node, parms_info);
1530
1531 for (i = 0; i < param_count; i++)
1532 if (parms_info[i].visited_statements)
1533 BITMAP_FREE (parms_info[i].visited_statements);
1534
1535 current_function_decl = NULL;
1536 pop_cfun ();
1537 }
1538
1539
1540 /* Update the jump function DST when the call graph edge corresponding to SRC is
1541 is being inlined, knowing that DST is of type ancestor and src of known
1542 type. */
1543
1544 static void
1545 combine_known_type_and_ancestor_jfs (struct ipa_jump_func *src,
1546 struct ipa_jump_func *dst)
1547 {
1548 tree new_binfo;
1549
1550 new_binfo = get_binfo_at_offset (src->value.base_binfo,
1551 dst->value.ancestor.offset,
1552 dst->value.ancestor.type);
1553 if (new_binfo)
1554 {
1555 dst->type = IPA_JF_KNOWN_TYPE;
1556 dst->value.base_binfo = new_binfo;
1557 }
1558 else
1559 dst->type = IPA_JF_UNKNOWN;
1560 }
1561
1562 /* Update the jump functions associated with call graph edge E when the call
1563 graph edge CS is being inlined, assuming that E->caller is already (possibly
1564 indirectly) inlined into CS->callee and that E has not been inlined. */
1565
1566 static void
1567 update_jump_functions_after_inlining (struct cgraph_edge *cs,
1568 struct cgraph_edge *e)
1569 {
1570 struct ipa_edge_args *top = IPA_EDGE_REF (cs);
1571 struct ipa_edge_args *args = IPA_EDGE_REF (e);
1572 int count = ipa_get_cs_argument_count (args);
1573 int i;
1574
1575 for (i = 0; i < count; i++)
1576 {
1577 struct ipa_jump_func *dst = ipa_get_ith_jump_func (args, i);
1578
1579 if (dst->type == IPA_JF_ANCESTOR)
1580 {
1581 struct ipa_jump_func *src;
1582
1583 /* Variable number of arguments can cause havoc if we try to access
1584 one that does not exist in the inlined edge. So make sure we
1585 don't. */
1586 if (dst->value.ancestor.formal_id >= ipa_get_cs_argument_count (top))
1587 {
1588 dst->type = IPA_JF_UNKNOWN;
1589 continue;
1590 }
1591
1592 src = ipa_get_ith_jump_func (top, dst->value.ancestor.formal_id);
1593 if (src->type == IPA_JF_KNOWN_TYPE)
1594 combine_known_type_and_ancestor_jfs (src, dst);
1595 else if (src->type == IPA_JF_PASS_THROUGH
1596 && src->value.pass_through.operation == NOP_EXPR)
1597 dst->value.ancestor.formal_id = src->value.pass_through.formal_id;
1598 else if (src->type == IPA_JF_ANCESTOR)
1599 {
1600 dst->value.ancestor.formal_id = src->value.ancestor.formal_id;
1601 dst->value.ancestor.offset += src->value.ancestor.offset;
1602 }
1603 else
1604 dst->type = IPA_JF_UNKNOWN;
1605 }
1606 else if (dst->type == IPA_JF_PASS_THROUGH)
1607 {
1608 struct ipa_jump_func *src;
1609 /* We must check range due to calls with variable number of arguments
1610 and we cannot combine jump functions with operations. */
1611 if (dst->value.pass_through.operation == NOP_EXPR
1612 && (dst->value.pass_through.formal_id
1613 < ipa_get_cs_argument_count (top)))
1614 {
1615 src = ipa_get_ith_jump_func (top,
1616 dst->value.pass_through.formal_id);
1617 *dst = *src;
1618 }
1619 else
1620 dst->type = IPA_JF_UNKNOWN;
1621 }
1622 }
1623 }
1624
1625 /* If TARGET is an addr_expr of a function declaration, make it the destination
1626 of an indirect edge IE and return the edge. Otherwise, return NULL. Delta,
1627 if non-NULL, is an integer constant that must be added to this pointer
1628 (first parameter). */
1629
1630 struct cgraph_edge *
1631 ipa_make_edge_direct_to_target (struct cgraph_edge *ie, tree target, tree delta)
1632 {
1633 struct cgraph_node *callee;
1634
1635 if (TREE_CODE (target) == ADDR_EXPR)
1636 target = TREE_OPERAND (target, 0);
1637 if (TREE_CODE (target) != FUNCTION_DECL)
1638 return NULL;
1639 callee = cgraph_get_node (target);
1640 if (!callee)
1641 return NULL;
1642 ipa_check_create_node_params ();
1643
1644 /* We can not make edges to inline clones. It is bug that someone removed the cgraph
1645 node too early. */
1646 gcc_assert (!callee->global.inlined_to);
1647
1648 cgraph_make_edge_direct (ie, callee, delta ? tree_low_cst (delta, 0) : 0);
1649 if (dump_file)
1650 {
1651 fprintf (dump_file, "ipa-prop: Discovered %s call to a known target "
1652 "(%s/%i -> %s/%i), for stmt ",
1653 ie->indirect_info->polymorphic ? "a virtual" : "an indirect",
1654 cgraph_node_name (ie->caller), ie->caller->uid,
1655 cgraph_node_name (ie->callee), ie->callee->uid);
1656 if (ie->call_stmt)
1657 print_gimple_stmt (dump_file, ie->call_stmt, 2, TDF_SLIM);
1658 else
1659 fprintf (dump_file, "with uid %i\n", ie->lto_stmt_uid);
1660
1661 if (delta)
1662 {
1663 fprintf (dump_file, " Thunk delta is ");
1664 print_generic_expr (dump_file, delta, 0);
1665 fprintf (dump_file, "\n");
1666 }
1667 }
1668
1669 if (ipa_get_cs_argument_count (IPA_EDGE_REF (ie))
1670 != ipa_get_param_count (IPA_NODE_REF (callee)))
1671 ipa_set_called_with_variable_arg (IPA_NODE_REF (callee));
1672
1673 return ie;
1674 }
1675
1676 /* Try to find a destination for indirect edge IE that corresponds to a simple
1677 call or a call of a member function pointer and where the destination is a
1678 pointer formal parameter described by jump function JFUNC. If it can be
1679 determined, return the newly direct edge, otherwise return NULL. */
1680
1681 static struct cgraph_edge *
1682 try_make_edge_direct_simple_call (struct cgraph_edge *ie,
1683 struct ipa_jump_func *jfunc)
1684 {
1685 tree target;
1686
1687 if (jfunc->type == IPA_JF_CONST)
1688 target = jfunc->value.constant;
1689 else if (jfunc->type == IPA_JF_CONST_MEMBER_PTR)
1690 target = jfunc->value.member_cst.pfn;
1691 else
1692 return NULL;
1693
1694 return ipa_make_edge_direct_to_target (ie, target, NULL_TREE);
1695 }
1696
1697 /* Try to find a destination for indirect edge IE that corresponds to a
1698 virtual call based on a formal parameter which is described by jump
1699 function JFUNC and if it can be determined, make it direct and return the
1700 direct edge. Otherwise, return NULL. */
1701
1702 static struct cgraph_edge *
1703 try_make_edge_direct_virtual_call (struct cgraph_edge *ie,
1704 struct ipa_jump_func *jfunc)
1705 {
1706 tree binfo, type, target, delta;
1707 HOST_WIDE_INT token;
1708
1709 if (jfunc->type == IPA_JF_KNOWN_TYPE)
1710 binfo = jfunc->value.base_binfo;
1711 else
1712 return NULL;
1713
1714 if (!binfo)
1715 return NULL;
1716
1717 token = ie->indirect_info->otr_token;
1718 type = ie->indirect_info->otr_type;
1719 binfo = get_binfo_at_offset (binfo, ie->indirect_info->anc_offset, type);
1720 if (binfo)
1721 target = gimple_get_virt_mehtod_for_binfo (token, binfo, &delta, true);
1722 else
1723 return NULL;
1724
1725 if (target)
1726 return ipa_make_edge_direct_to_target (ie, target, delta);
1727 else
1728 return NULL;
1729 }
1730
1731 /* Update the param called notes associated with NODE when CS is being inlined,
1732 assuming NODE is (potentially indirectly) inlined into CS->callee.
1733 Moreover, if the callee is discovered to be constant, create a new cgraph
1734 edge for it. Newly discovered indirect edges will be added to *NEW_EDGES,
1735 unless NEW_EDGES is NULL. Return true iff a new edge(s) were created. */
1736
1737 static bool
1738 update_indirect_edges_after_inlining (struct cgraph_edge *cs,
1739 struct cgraph_node *node,
1740 VEC (cgraph_edge_p, heap) **new_edges)
1741 {
1742 struct ipa_edge_args *top;
1743 struct cgraph_edge *ie, *next_ie, *new_direct_edge;
1744 bool res = false;
1745
1746 ipa_check_create_edge_args ();
1747 top = IPA_EDGE_REF (cs);
1748
1749 for (ie = node->indirect_calls; ie; ie = next_ie)
1750 {
1751 struct cgraph_indirect_call_info *ici = ie->indirect_info;
1752 struct ipa_jump_func *jfunc;
1753
1754 next_ie = ie->next_callee;
1755 if (bitmap_bit_p (iinlining_processed_edges, ie->uid))
1756 continue;
1757
1758 /* If we ever use indirect edges for anything other than indirect
1759 inlining, we will need to skip those with negative param_indices. */
1760 if (ici->param_index == -1)
1761 continue;
1762
1763 /* We must check range due to calls with variable number of arguments: */
1764 if (ici->param_index >= ipa_get_cs_argument_count (top))
1765 {
1766 bitmap_set_bit (iinlining_processed_edges, ie->uid);
1767 continue;
1768 }
1769
1770 jfunc = ipa_get_ith_jump_func (top, ici->param_index);
1771 if (jfunc->type == IPA_JF_PASS_THROUGH
1772 && jfunc->value.pass_through.operation == NOP_EXPR)
1773 ici->param_index = jfunc->value.pass_through.formal_id;
1774 else if (jfunc->type == IPA_JF_ANCESTOR)
1775 {
1776 ici->param_index = jfunc->value.ancestor.formal_id;
1777 ici->anc_offset += jfunc->value.ancestor.offset;
1778 }
1779 else
1780 /* Either we can find a destination for this edge now or never. */
1781 bitmap_set_bit (iinlining_processed_edges, ie->uid);
1782
1783 if (ici->polymorphic)
1784 new_direct_edge = try_make_edge_direct_virtual_call (ie, jfunc);
1785 else
1786 new_direct_edge = try_make_edge_direct_simple_call (ie, jfunc);
1787
1788 if (new_direct_edge)
1789 {
1790 new_direct_edge->indirect_inlining_edge = 1;
1791 if (new_edges)
1792 {
1793 VEC_safe_push (cgraph_edge_p, heap, *new_edges,
1794 new_direct_edge);
1795 top = IPA_EDGE_REF (cs);
1796 res = true;
1797 }
1798 }
1799 }
1800
1801 return res;
1802 }
1803
1804 /* Recursively traverse subtree of NODE (including node) made of inlined
1805 cgraph_edges when CS has been inlined and invoke
1806 update_indirect_edges_after_inlining on all nodes and
1807 update_jump_functions_after_inlining on all non-inlined edges that lead out
1808 of this subtree. Newly discovered indirect edges will be added to
1809 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were
1810 created. */
1811
1812 static bool
1813 propagate_info_to_inlined_callees (struct cgraph_edge *cs,
1814 struct cgraph_node *node,
1815 VEC (cgraph_edge_p, heap) **new_edges)
1816 {
1817 struct cgraph_edge *e;
1818 bool res;
1819
1820 res = update_indirect_edges_after_inlining (cs, node, new_edges);
1821
1822 for (e = node->callees; e; e = e->next_callee)
1823 if (!e->inline_failed)
1824 res |= propagate_info_to_inlined_callees (cs, e->callee, new_edges);
1825 else
1826 update_jump_functions_after_inlining (cs, e);
1827
1828 return res;
1829 }
1830
1831 /* Update jump functions and call note functions on inlining the call site CS.
1832 CS is expected to lead to a node already cloned by
1833 cgraph_clone_inline_nodes. Newly discovered indirect edges will be added to
1834 *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were +
1835 created. */
1836
1837 bool
1838 ipa_propagate_indirect_call_infos (struct cgraph_edge *cs,
1839 VEC (cgraph_edge_p, heap) **new_edges)
1840 {
1841 /* FIXME lto: We do not stream out indirect call information. */
1842 if (flag_wpa)
1843 return false;
1844
1845 /* Do nothing if the preparation phase has not been carried out yet
1846 (i.e. during early inlining). */
1847 if (!ipa_node_params_vector)
1848 return false;
1849 gcc_assert (ipa_edge_args_vector);
1850
1851 return propagate_info_to_inlined_callees (cs, cs->callee, new_edges);
1852 }
1853
1854 /* Frees all dynamically allocated structures that the argument info points
1855 to. */
1856
1857 void
1858 ipa_free_edge_args_substructures (struct ipa_edge_args *args)
1859 {
1860 if (args->jump_functions)
1861 ggc_free (args->jump_functions);
1862
1863 memset (args, 0, sizeof (*args));
1864 }
1865
1866 /* Free all ipa_edge structures. */
1867
1868 void
1869 ipa_free_all_edge_args (void)
1870 {
1871 int i;
1872 struct ipa_edge_args *args;
1873
1874 FOR_EACH_VEC_ELT (ipa_edge_args_t, ipa_edge_args_vector, i, args)
1875 ipa_free_edge_args_substructures (args);
1876
1877 VEC_free (ipa_edge_args_t, gc, ipa_edge_args_vector);
1878 ipa_edge_args_vector = NULL;
1879 }
1880
1881 /* Frees all dynamically allocated structures that the param info points
1882 to. */
1883
1884 void
1885 ipa_free_node_params_substructures (struct ipa_node_params *info)
1886 {
1887 if (info->params)
1888 free (info->params);
1889
1890 memset (info, 0, sizeof (*info));
1891 }
1892
1893 /* Free all ipa_node_params structures. */
1894
1895 void
1896 ipa_free_all_node_params (void)
1897 {
1898 int i;
1899 struct ipa_node_params *info;
1900
1901 FOR_EACH_VEC_ELT (ipa_node_params_t, ipa_node_params_vector, i, info)
1902 ipa_free_node_params_substructures (info);
1903
1904 VEC_free (ipa_node_params_t, heap, ipa_node_params_vector);
1905 ipa_node_params_vector = NULL;
1906 }
1907
1908 /* Hook that is called by cgraph.c when an edge is removed. */
1909
1910 static void
1911 ipa_edge_removal_hook (struct cgraph_edge *cs, void *data ATTRIBUTE_UNUSED)
1912 {
1913 /* During IPA-CP updating we can be called on not-yet analyze clones. */
1914 if (VEC_length (ipa_edge_args_t, ipa_edge_args_vector)
1915 <= (unsigned)cs->uid)
1916 return;
1917 ipa_free_edge_args_substructures (IPA_EDGE_REF (cs));
1918 }
1919
1920 /* Hook that is called by cgraph.c when a node is removed. */
1921
1922 static void
1923 ipa_node_removal_hook (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
1924 {
1925 /* During IPA-CP updating we can be called on not-yet analyze clones. */
1926 if (VEC_length (ipa_node_params_t, ipa_node_params_vector)
1927 <= (unsigned)node->uid)
1928 return;
1929 ipa_free_node_params_substructures (IPA_NODE_REF (node));
1930 }
1931
1932 /* Helper function to duplicate an array of size N that is at SRC and store a
1933 pointer to it to DST. Nothing is done if SRC is NULL. */
1934
1935 static void *
1936 duplicate_array (void *src, size_t n)
1937 {
1938 void *p;
1939
1940 if (!src)
1941 return NULL;
1942
1943 p = xmalloc (n);
1944 memcpy (p, src, n);
1945 return p;
1946 }
1947
1948 static struct ipa_jump_func *
1949 duplicate_ipa_jump_func_array (const struct ipa_jump_func * src, size_t n)
1950 {
1951 struct ipa_jump_func *p;
1952
1953 if (!src)
1954 return NULL;
1955
1956 p = ggc_alloc_vec_ipa_jump_func (n);
1957 memcpy (p, src, n * sizeof (struct ipa_jump_func));
1958 return p;
1959 }
1960
1961 /* Hook that is called by cgraph.c when a node is duplicated. */
1962
1963 static void
1964 ipa_edge_duplication_hook (struct cgraph_edge *src, struct cgraph_edge *dst,
1965 __attribute__((unused)) void *data)
1966 {
1967 struct ipa_edge_args *old_args, *new_args;
1968 int arg_count;
1969
1970 ipa_check_create_edge_args ();
1971
1972 old_args = IPA_EDGE_REF (src);
1973 new_args = IPA_EDGE_REF (dst);
1974
1975 arg_count = ipa_get_cs_argument_count (old_args);
1976 ipa_set_cs_argument_count (new_args, arg_count);
1977 new_args->jump_functions =
1978 duplicate_ipa_jump_func_array (old_args->jump_functions, arg_count);
1979
1980 if (iinlining_processed_edges
1981 && bitmap_bit_p (iinlining_processed_edges, src->uid))
1982 bitmap_set_bit (iinlining_processed_edges, dst->uid);
1983 }
1984
1985 /* Hook that is called by cgraph.c when a node is duplicated. */
1986
1987 static void
1988 ipa_node_duplication_hook (struct cgraph_node *src, struct cgraph_node *dst,
1989 ATTRIBUTE_UNUSED void *data)
1990 {
1991 struct ipa_node_params *old_info, *new_info;
1992 int param_count, i;
1993
1994 ipa_check_create_node_params ();
1995 old_info = IPA_NODE_REF (src);
1996 new_info = IPA_NODE_REF (dst);
1997 param_count = ipa_get_param_count (old_info);
1998
1999 ipa_set_param_count (new_info, param_count);
2000 new_info->params = (struct ipa_param_descriptor *)
2001 duplicate_array (old_info->params,
2002 sizeof (struct ipa_param_descriptor) * param_count);
2003 for (i = 0; i < param_count; i++)
2004 new_info->params[i].types = VEC_copy (tree, heap,
2005 old_info->params[i].types);
2006 new_info->ipcp_orig_node = old_info->ipcp_orig_node;
2007 new_info->count_scale = old_info->count_scale;
2008
2009 new_info->called_with_var_arguments = old_info->called_with_var_arguments;
2010 new_info->uses_analysis_done = old_info->uses_analysis_done;
2011 new_info->node_enqueued = old_info->node_enqueued;
2012 }
2013
2014 /* Register our cgraph hooks if they are not already there. */
2015
2016 void
2017 ipa_register_cgraph_hooks (void)
2018 {
2019 if (!edge_removal_hook_holder)
2020 edge_removal_hook_holder =
2021 cgraph_add_edge_removal_hook (&ipa_edge_removal_hook, NULL);
2022 if (!node_removal_hook_holder)
2023 node_removal_hook_holder =
2024 cgraph_add_node_removal_hook (&ipa_node_removal_hook, NULL);
2025 if (!edge_duplication_hook_holder)
2026 edge_duplication_hook_holder =
2027 cgraph_add_edge_duplication_hook (&ipa_edge_duplication_hook, NULL);
2028 if (!node_duplication_hook_holder)
2029 node_duplication_hook_holder =
2030 cgraph_add_node_duplication_hook (&ipa_node_duplication_hook, NULL);
2031 }
2032
2033 /* Unregister our cgraph hooks if they are not already there. */
2034
2035 static void
2036 ipa_unregister_cgraph_hooks (void)
2037 {
2038 cgraph_remove_edge_removal_hook (edge_removal_hook_holder);
2039 edge_removal_hook_holder = NULL;
2040 cgraph_remove_node_removal_hook (node_removal_hook_holder);
2041 node_removal_hook_holder = NULL;
2042 cgraph_remove_edge_duplication_hook (edge_duplication_hook_holder);
2043 edge_duplication_hook_holder = NULL;
2044 cgraph_remove_node_duplication_hook (node_duplication_hook_holder);
2045 node_duplication_hook_holder = NULL;
2046 }
2047
2048 /* Allocate all necessary data structures necessary for indirect inlining. */
2049
2050 void
2051 ipa_create_all_structures_for_iinln (void)
2052 {
2053 iinlining_processed_edges = BITMAP_ALLOC (NULL);
2054 }
2055
2056 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
2057 longer needed after ipa-cp. */
2058
2059 void
2060 ipa_free_all_structures_after_ipa_cp (void)
2061 {
2062 if (!flag_indirect_inlining)
2063 {
2064 ipa_free_all_edge_args ();
2065 ipa_free_all_node_params ();
2066 ipa_unregister_cgraph_hooks ();
2067 }
2068 }
2069
2070 /* Free all ipa_node_params and all ipa_edge_args structures if they are no
2071 longer needed after indirect inlining. */
2072
2073 void
2074 ipa_free_all_structures_after_iinln (void)
2075 {
2076 BITMAP_FREE (iinlining_processed_edges);
2077
2078 ipa_free_all_edge_args ();
2079 ipa_free_all_node_params ();
2080 ipa_unregister_cgraph_hooks ();
2081 }
2082
2083 /* Print ipa_tree_map data structures of all functions in the
2084 callgraph to F. */
2085
2086 void
2087 ipa_print_node_params (FILE * f, struct cgraph_node *node)
2088 {
2089 int i, count;
2090 tree temp;
2091 struct ipa_node_params *info;
2092
2093 if (!node->analyzed)
2094 return;
2095 info = IPA_NODE_REF (node);
2096 fprintf (f, " function %s parameter descriptors:\n",
2097 cgraph_node_name (node));
2098 count = ipa_get_param_count (info);
2099 for (i = 0; i < count; i++)
2100 {
2101 temp = ipa_get_param (info, i);
2102 if (TREE_CODE (temp) == PARM_DECL)
2103 fprintf (f, " param %d : %s", i,
2104 (DECL_NAME (temp)
2105 ? (*lang_hooks.decl_printable_name) (temp, 2)
2106 : "(unnamed)"));
2107 if (ipa_is_param_used (info, i))
2108 fprintf (f, " used");
2109 fprintf (f, "\n");
2110 }
2111 }
2112
2113 /* Print ipa_tree_map data structures of all functions in the
2114 callgraph to F. */
2115
2116 void
2117 ipa_print_all_params (FILE * f)
2118 {
2119 struct cgraph_node *node;
2120
2121 fprintf (f, "\nFunction parameters:\n");
2122 for (node = cgraph_nodes; node; node = node->next)
2123 ipa_print_node_params (f, node);
2124 }
2125
2126 /* Return a heap allocated vector containing formal parameters of FNDECL. */
2127
2128 VEC(tree, heap) *
2129 ipa_get_vector_of_formal_parms (tree fndecl)
2130 {
2131 VEC(tree, heap) *args;
2132 int count;
2133 tree parm;
2134
2135 count = count_formal_params_1 (fndecl);
2136 args = VEC_alloc (tree, heap, count);
2137 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
2138 VEC_quick_push (tree, args, parm);
2139
2140 return args;
2141 }
2142
2143 /* Return a heap allocated vector containing types of formal parameters of
2144 function type FNTYPE. */
2145
2146 static inline VEC(tree, heap) *
2147 get_vector_of_formal_parm_types (tree fntype)
2148 {
2149 VEC(tree, heap) *types;
2150 int count = 0;
2151 tree t;
2152
2153 for (t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
2154 count++;
2155
2156 types = VEC_alloc (tree, heap, count);
2157 for (t = TYPE_ARG_TYPES (fntype); t; t = TREE_CHAIN (t))
2158 VEC_quick_push (tree, types, TREE_VALUE (t));
2159
2160 return types;
2161 }
2162
2163 /* Modify the function declaration FNDECL and its type according to the plan in
2164 ADJUSTMENTS. It also sets base fields of individual adjustments structures
2165 to reflect the actual parameters being modified which are determined by the
2166 base_index field. */
2167
2168 void
2169 ipa_modify_formal_parameters (tree fndecl, ipa_parm_adjustment_vec adjustments,
2170 const char *synth_parm_prefix)
2171 {
2172 VEC(tree, heap) *oparms, *otypes;
2173 tree orig_type, new_type = NULL;
2174 tree old_arg_types, t, new_arg_types = NULL;
2175 tree parm, *link = &DECL_ARGUMENTS (fndecl);
2176 int i, len = VEC_length (ipa_parm_adjustment_t, adjustments);
2177 tree new_reversed = NULL;
2178 bool care_for_types, last_parm_void;
2179
2180 if (!synth_parm_prefix)
2181 synth_parm_prefix = "SYNTH";
2182
2183 oparms = ipa_get_vector_of_formal_parms (fndecl);
2184 orig_type = TREE_TYPE (fndecl);
2185 old_arg_types = TYPE_ARG_TYPES (orig_type);
2186
2187 /* The following test is an ugly hack, some functions simply don't have any
2188 arguments in their type. This is probably a bug but well... */
2189 care_for_types = (old_arg_types != NULL_TREE);
2190 if (care_for_types)
2191 {
2192 last_parm_void = (TREE_VALUE (tree_last (old_arg_types))
2193 == void_type_node);
2194 otypes = get_vector_of_formal_parm_types (orig_type);
2195 if (last_parm_void)
2196 gcc_assert (VEC_length (tree, oparms) + 1 == VEC_length (tree, otypes));
2197 else
2198 gcc_assert (VEC_length (tree, oparms) == VEC_length (tree, otypes));
2199 }
2200 else
2201 {
2202 last_parm_void = false;
2203 otypes = NULL;
2204 }
2205
2206 for (i = 0; i < len; i++)
2207 {
2208 struct ipa_parm_adjustment *adj;
2209 gcc_assert (link);
2210
2211 adj = VEC_index (ipa_parm_adjustment_t, adjustments, i);
2212 parm = VEC_index (tree, oparms, adj->base_index);
2213 adj->base = parm;
2214
2215 if (adj->copy_param)
2216 {
2217 if (care_for_types)
2218 new_arg_types = tree_cons (NULL_TREE, VEC_index (tree, otypes,
2219 adj->base_index),
2220 new_arg_types);
2221 *link = parm;
2222 link = &DECL_CHAIN (parm);
2223 }
2224 else if (!adj->remove_param)
2225 {
2226 tree new_parm;
2227 tree ptype;
2228
2229 if (adj->by_ref)
2230 ptype = build_pointer_type (adj->type);
2231 else
2232 ptype = adj->type;
2233
2234 if (care_for_types)
2235 new_arg_types = tree_cons (NULL_TREE, ptype, new_arg_types);
2236
2237 new_parm = build_decl (UNKNOWN_LOCATION, PARM_DECL, NULL_TREE,
2238 ptype);
2239 DECL_NAME (new_parm) = create_tmp_var_name (synth_parm_prefix);
2240
2241 DECL_ARTIFICIAL (new_parm) = 1;
2242 DECL_ARG_TYPE (new_parm) = ptype;
2243 DECL_CONTEXT (new_parm) = fndecl;
2244 TREE_USED (new_parm) = 1;
2245 DECL_IGNORED_P (new_parm) = 1;
2246 layout_decl (new_parm, 0);
2247
2248 add_referenced_var (new_parm);
2249 mark_sym_for_renaming (new_parm);
2250 adj->base = parm;
2251 adj->reduction = new_parm;
2252
2253 *link = new_parm;
2254
2255 link = &DECL_CHAIN (new_parm);
2256 }
2257 }
2258
2259 *link = NULL_TREE;
2260
2261 if (care_for_types)
2262 {
2263 new_reversed = nreverse (new_arg_types);
2264 if (last_parm_void)
2265 {
2266 if (new_reversed)
2267 TREE_CHAIN (new_arg_types) = void_list_node;
2268 else
2269 new_reversed = void_list_node;
2270 }
2271 }
2272
2273 /* Use copy_node to preserve as much as possible from original type
2274 (debug info, attribute lists etc.)
2275 Exception is METHOD_TYPEs must have THIS argument.
2276 When we are asked to remove it, we need to build new FUNCTION_TYPE
2277 instead. */
2278 if (TREE_CODE (orig_type) != METHOD_TYPE
2279 || (VEC_index (ipa_parm_adjustment_t, adjustments, 0)->copy_param
2280 && VEC_index (ipa_parm_adjustment_t, adjustments, 0)->base_index == 0))
2281 {
2282 new_type = build_distinct_type_copy (orig_type);
2283 TYPE_ARG_TYPES (new_type) = new_reversed;
2284 }
2285 else
2286 {
2287 new_type
2288 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type),
2289 new_reversed));
2290 TYPE_CONTEXT (new_type) = TYPE_CONTEXT (orig_type);
2291 DECL_VINDEX (fndecl) = NULL_TREE;
2292 }
2293
2294 /* When signature changes, we need to clear builtin info. */
2295 if (DECL_BUILT_IN (fndecl))
2296 {
2297 DECL_BUILT_IN_CLASS (fndecl) = NOT_BUILT_IN;
2298 DECL_FUNCTION_CODE (fndecl) = (enum built_in_function) 0;
2299 }
2300
2301 /* This is a new type, not a copy of an old type. Need to reassociate
2302 variants. We can handle everything except the main variant lazily. */
2303 t = TYPE_MAIN_VARIANT (orig_type);
2304 if (orig_type != t)
2305 {
2306 TYPE_MAIN_VARIANT (new_type) = t;
2307 TYPE_NEXT_VARIANT (new_type) = TYPE_NEXT_VARIANT (t);
2308 TYPE_NEXT_VARIANT (t) = new_type;
2309 }
2310 else
2311 {
2312 TYPE_MAIN_VARIANT (new_type) = new_type;
2313 TYPE_NEXT_VARIANT (new_type) = NULL;
2314 }
2315
2316 TREE_TYPE (fndecl) = new_type;
2317 DECL_VIRTUAL_P (fndecl) = 0;
2318 if (otypes)
2319 VEC_free (tree, heap, otypes);
2320 VEC_free (tree, heap, oparms);
2321 }
2322
2323 /* Modify actual arguments of a function call CS as indicated in ADJUSTMENTS.
2324 If this is a directly recursive call, CS must be NULL. Otherwise it must
2325 contain the corresponding call graph edge. */
2326
2327 void
2328 ipa_modify_call_arguments (struct cgraph_edge *cs, gimple stmt,
2329 ipa_parm_adjustment_vec adjustments)
2330 {
2331 VEC(tree, heap) *vargs;
2332 gimple new_stmt;
2333 gimple_stmt_iterator gsi;
2334 tree callee_decl;
2335 int i, len;
2336
2337 len = VEC_length (ipa_parm_adjustment_t, adjustments);
2338 vargs = VEC_alloc (tree, heap, len);
2339
2340 gsi = gsi_for_stmt (stmt);
2341 for (i = 0; i < len; i++)
2342 {
2343 struct ipa_parm_adjustment *adj;
2344
2345 adj = VEC_index (ipa_parm_adjustment_t, adjustments, i);
2346
2347 if (adj->copy_param)
2348 {
2349 tree arg = gimple_call_arg (stmt, adj->base_index);
2350
2351 VEC_quick_push (tree, vargs, arg);
2352 }
2353 else if (!adj->remove_param)
2354 {
2355 tree expr, base, off;
2356 location_t loc;
2357
2358 /* We create a new parameter out of the value of the old one, we can
2359 do the following kind of transformations:
2360
2361 - A scalar passed by reference is converted to a scalar passed by
2362 value. (adj->by_ref is false and the type of the original
2363 actual argument is a pointer to a scalar).
2364
2365 - A part of an aggregate is passed instead of the whole aggregate.
2366 The part can be passed either by value or by reference, this is
2367 determined by value of adj->by_ref. Moreover, the code below
2368 handles both situations when the original aggregate is passed by
2369 value (its type is not a pointer) and when it is passed by
2370 reference (it is a pointer to an aggregate).
2371
2372 When the new argument is passed by reference (adj->by_ref is true)
2373 it must be a part of an aggregate and therefore we form it by
2374 simply taking the address of a reference inside the original
2375 aggregate. */
2376
2377 gcc_checking_assert (adj->offset % BITS_PER_UNIT == 0);
2378 base = gimple_call_arg (stmt, adj->base_index);
2379 loc = EXPR_LOCATION (base);
2380
2381 if (TREE_CODE (base) != ADDR_EXPR
2382 && POINTER_TYPE_P (TREE_TYPE (base)))
2383 off = build_int_cst (adj->alias_ptr_type,
2384 adj->offset / BITS_PER_UNIT);
2385 else
2386 {
2387 HOST_WIDE_INT base_offset;
2388 tree prev_base;
2389
2390 if (TREE_CODE (base) == ADDR_EXPR)
2391 base = TREE_OPERAND (base, 0);
2392 prev_base = base;
2393 base = get_addr_base_and_unit_offset (base, &base_offset);
2394 /* Aggregate arguments can have non-invariant addresses. */
2395 if (!base)
2396 {
2397 base = build_fold_addr_expr (prev_base);
2398 off = build_int_cst (adj->alias_ptr_type,
2399 adj->offset / BITS_PER_UNIT);
2400 }
2401 else if (TREE_CODE (base) == MEM_REF)
2402 {
2403 off = build_int_cst (adj->alias_ptr_type,
2404 base_offset
2405 + adj->offset / BITS_PER_UNIT);
2406 off = int_const_binop (PLUS_EXPR, TREE_OPERAND (base, 1),
2407 off, 0);
2408 base = TREE_OPERAND (base, 0);
2409 }
2410 else
2411 {
2412 off = build_int_cst (adj->alias_ptr_type,
2413 base_offset
2414 + adj->offset / BITS_PER_UNIT);
2415 base = build_fold_addr_expr (base);
2416 }
2417 }
2418
2419 expr = fold_build2_loc (loc, MEM_REF, adj->type, base, off);
2420 if (adj->by_ref)
2421 expr = build_fold_addr_expr (expr);
2422
2423 expr = force_gimple_operand_gsi (&gsi, expr,
2424 adj->by_ref
2425 || is_gimple_reg_type (adj->type),
2426 NULL, true, GSI_SAME_STMT);
2427 VEC_quick_push (tree, vargs, expr);
2428 }
2429 }
2430
2431 if (dump_file && (dump_flags & TDF_DETAILS))
2432 {
2433 fprintf (dump_file, "replacing stmt:");
2434 print_gimple_stmt (dump_file, gsi_stmt (gsi), 0, 0);
2435 }
2436
2437 callee_decl = !cs ? gimple_call_fndecl (stmt) : cs->callee->decl;
2438 new_stmt = gimple_build_call_vec (callee_decl, vargs);
2439 VEC_free (tree, heap, vargs);
2440 if (gimple_call_lhs (stmt))
2441 gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt));
2442
2443 gimple_set_block (new_stmt, gimple_block (stmt));
2444 if (gimple_has_location (stmt))
2445 gimple_set_location (new_stmt, gimple_location (stmt));
2446 gimple_call_copy_flags (new_stmt, stmt);
2447 gimple_call_set_chain (new_stmt, gimple_call_chain (stmt));
2448
2449 if (dump_file && (dump_flags & TDF_DETAILS))
2450 {
2451 fprintf (dump_file, "with stmt:");
2452 print_gimple_stmt (dump_file, new_stmt, 0, 0);
2453 fprintf (dump_file, "\n");
2454 }
2455 gsi_replace (&gsi, new_stmt, true);
2456 if (cs)
2457 cgraph_set_call_stmt (cs, new_stmt);
2458 update_ssa (TODO_update_ssa);
2459 free_dominance_info (CDI_DOMINATORS);
2460 }
2461
2462 /* Return true iff BASE_INDEX is in ADJUSTMENTS more than once. */
2463
2464 static bool
2465 index_in_adjustments_multiple_times_p (int base_index,
2466 ipa_parm_adjustment_vec adjustments)
2467 {
2468 int i, len = VEC_length (ipa_parm_adjustment_t, adjustments);
2469 bool one = false;
2470
2471 for (i = 0; i < len; i++)
2472 {
2473 struct ipa_parm_adjustment *adj;
2474 adj = VEC_index (ipa_parm_adjustment_t, adjustments, i);
2475
2476 if (adj->base_index == base_index)
2477 {
2478 if (one)
2479 return true;
2480 else
2481 one = true;
2482 }
2483 }
2484 return false;
2485 }
2486
2487
2488 /* Return adjustments that should have the same effect on function parameters
2489 and call arguments as if they were first changed according to adjustments in
2490 INNER and then by adjustments in OUTER. */
2491
2492 ipa_parm_adjustment_vec
2493 ipa_combine_adjustments (ipa_parm_adjustment_vec inner,
2494 ipa_parm_adjustment_vec outer)
2495 {
2496 int i, outlen = VEC_length (ipa_parm_adjustment_t, outer);
2497 int inlen = VEC_length (ipa_parm_adjustment_t, inner);
2498 int removals = 0;
2499 ipa_parm_adjustment_vec adjustments, tmp;
2500
2501 tmp = VEC_alloc (ipa_parm_adjustment_t, heap, inlen);
2502 for (i = 0; i < inlen; i++)
2503 {
2504 struct ipa_parm_adjustment *n;
2505 n = VEC_index (ipa_parm_adjustment_t, inner, i);
2506
2507 if (n->remove_param)
2508 removals++;
2509 else
2510 VEC_quick_push (ipa_parm_adjustment_t, tmp, n);
2511 }
2512
2513 adjustments = VEC_alloc (ipa_parm_adjustment_t, heap, outlen + removals);
2514 for (i = 0; i < outlen; i++)
2515 {
2516 struct ipa_parm_adjustment *r;
2517 struct ipa_parm_adjustment *out = VEC_index (ipa_parm_adjustment_t,
2518 outer, i);
2519 struct ipa_parm_adjustment *in = VEC_index (ipa_parm_adjustment_t, tmp,
2520 out->base_index);
2521
2522 gcc_assert (!in->remove_param);
2523 if (out->remove_param)
2524 {
2525 if (!index_in_adjustments_multiple_times_p (in->base_index, tmp))
2526 {
2527 r = VEC_quick_push (ipa_parm_adjustment_t, adjustments, NULL);
2528 memset (r, 0, sizeof (*r));
2529 r->remove_param = true;
2530 }
2531 continue;
2532 }
2533
2534 r = VEC_quick_push (ipa_parm_adjustment_t, adjustments, NULL);
2535 memset (r, 0, sizeof (*r));
2536 r->base_index = in->base_index;
2537 r->type = out->type;
2538
2539 /* FIXME: Create nonlocal value too. */
2540
2541 if (in->copy_param && out->copy_param)
2542 r->copy_param = true;
2543 else if (in->copy_param)
2544 r->offset = out->offset;
2545 else if (out->copy_param)
2546 r->offset = in->offset;
2547 else
2548 r->offset = in->offset + out->offset;
2549 }
2550
2551 for (i = 0; i < inlen; i++)
2552 {
2553 struct ipa_parm_adjustment *n = VEC_index (ipa_parm_adjustment_t,
2554 inner, i);
2555
2556 if (n->remove_param)
2557 VEC_quick_push (ipa_parm_adjustment_t, adjustments, n);
2558 }
2559
2560 VEC_free (ipa_parm_adjustment_t, heap, tmp);
2561 return adjustments;
2562 }
2563
2564 /* Dump the adjustments in the vector ADJUSTMENTS to dump_file in a human
2565 friendly way, assuming they are meant to be applied to FNDECL. */
2566
2567 void
2568 ipa_dump_param_adjustments (FILE *file, ipa_parm_adjustment_vec adjustments,
2569 tree fndecl)
2570 {
2571 int i, len = VEC_length (ipa_parm_adjustment_t, adjustments);
2572 bool first = true;
2573 VEC(tree, heap) *parms = ipa_get_vector_of_formal_parms (fndecl);
2574
2575 fprintf (file, "IPA param adjustments: ");
2576 for (i = 0; i < len; i++)
2577 {
2578 struct ipa_parm_adjustment *adj;
2579 adj = VEC_index (ipa_parm_adjustment_t, adjustments, i);
2580
2581 if (!first)
2582 fprintf (file, " ");
2583 else
2584 first = false;
2585
2586 fprintf (file, "%i. base_index: %i - ", i, adj->base_index);
2587 print_generic_expr (file, VEC_index (tree, parms, adj->base_index), 0);
2588 if (adj->base)
2589 {
2590 fprintf (file, ", base: ");
2591 print_generic_expr (file, adj->base, 0);
2592 }
2593 if (adj->reduction)
2594 {
2595 fprintf (file, ", reduction: ");
2596 print_generic_expr (file, adj->reduction, 0);
2597 }
2598 if (adj->new_ssa_base)
2599 {
2600 fprintf (file, ", new_ssa_base: ");
2601 print_generic_expr (file, adj->new_ssa_base, 0);
2602 }
2603
2604 if (adj->copy_param)
2605 fprintf (file, ", copy_param");
2606 else if (adj->remove_param)
2607 fprintf (file, ", remove_param");
2608 else
2609 fprintf (file, ", offset %li", (long) adj->offset);
2610 if (adj->by_ref)
2611 fprintf (file, ", by_ref");
2612 print_node_brief (file, ", type: ", adj->type, 0);
2613 fprintf (file, "\n");
2614 }
2615 VEC_free (tree, heap, parms);
2616 }
2617
2618 /* Stream out jump function JUMP_FUNC to OB. */
2619
2620 static void
2621 ipa_write_jump_function (struct output_block *ob,
2622 struct ipa_jump_func *jump_func)
2623 {
2624 lto_output_uleb128_stream (ob->main_stream,
2625 jump_func->type);
2626
2627 switch (jump_func->type)
2628 {
2629 case IPA_JF_UNKNOWN:
2630 break;
2631 case IPA_JF_KNOWN_TYPE:
2632 lto_output_tree (ob, jump_func->value.base_binfo, true);
2633 break;
2634 case IPA_JF_CONST:
2635 lto_output_tree (ob, jump_func->value.constant, true);
2636 break;
2637 case IPA_JF_PASS_THROUGH:
2638 lto_output_tree (ob, jump_func->value.pass_through.operand, true);
2639 lto_output_uleb128_stream (ob->main_stream,
2640 jump_func->value.pass_through.formal_id);
2641 lto_output_uleb128_stream (ob->main_stream,
2642 jump_func->value.pass_through.operation);
2643 break;
2644 case IPA_JF_ANCESTOR:
2645 lto_output_uleb128_stream (ob->main_stream,
2646 jump_func->value.ancestor.offset);
2647 lto_output_tree (ob, jump_func->value.ancestor.type, true);
2648 lto_output_uleb128_stream (ob->main_stream,
2649 jump_func->value.ancestor.formal_id);
2650 break;
2651 case IPA_JF_CONST_MEMBER_PTR:
2652 lto_output_tree (ob, jump_func->value.member_cst.pfn, true);
2653 lto_output_tree (ob, jump_func->value.member_cst.delta, false);
2654 break;
2655 }
2656 }
2657
2658 /* Read in jump function JUMP_FUNC from IB. */
2659
2660 static void
2661 ipa_read_jump_function (struct lto_input_block *ib,
2662 struct ipa_jump_func *jump_func,
2663 struct data_in *data_in)
2664 {
2665 jump_func->type = (enum jump_func_type) lto_input_uleb128 (ib);
2666
2667 switch (jump_func->type)
2668 {
2669 case IPA_JF_UNKNOWN:
2670 break;
2671 case IPA_JF_KNOWN_TYPE:
2672 jump_func->value.base_binfo = lto_input_tree (ib, data_in);
2673 break;
2674 case IPA_JF_CONST:
2675 jump_func->value.constant = lto_input_tree (ib, data_in);
2676 break;
2677 case IPA_JF_PASS_THROUGH:
2678 jump_func->value.pass_through.operand = lto_input_tree (ib, data_in);
2679 jump_func->value.pass_through.formal_id = lto_input_uleb128 (ib);
2680 jump_func->value.pass_through.operation = (enum tree_code) lto_input_uleb128 (ib);
2681 break;
2682 case IPA_JF_ANCESTOR:
2683 jump_func->value.ancestor.offset = lto_input_uleb128 (ib);
2684 jump_func->value.ancestor.type = lto_input_tree (ib, data_in);
2685 jump_func->value.ancestor.formal_id = lto_input_uleb128 (ib);
2686 break;
2687 case IPA_JF_CONST_MEMBER_PTR:
2688 jump_func->value.member_cst.pfn = lto_input_tree (ib, data_in);
2689 jump_func->value.member_cst.delta = lto_input_tree (ib, data_in);
2690 break;
2691 }
2692 }
2693
2694 /* Stream out parts of cgraph_indirect_call_info corresponding to CS that are
2695 relevant to indirect inlining to OB. */
2696
2697 static void
2698 ipa_write_indirect_edge_info (struct output_block *ob,
2699 struct cgraph_edge *cs)
2700 {
2701 struct cgraph_indirect_call_info *ii = cs->indirect_info;
2702 struct bitpack_d bp;
2703
2704 lto_output_sleb128_stream (ob->main_stream, ii->param_index);
2705 lto_output_sleb128_stream (ob->main_stream, ii->anc_offset);
2706 bp = bitpack_create (ob->main_stream);
2707 bp_pack_value (&bp, ii->polymorphic, 1);
2708 lto_output_bitpack (&bp);
2709
2710 if (ii->polymorphic)
2711 {
2712 lto_output_sleb128_stream (ob->main_stream, ii->otr_token);
2713 lto_output_tree (ob, ii->otr_type, true);
2714 }
2715 }
2716
2717 /* Read in parts of cgraph_indirect_call_info corresponding to CS that are
2718 relevant to indirect inlining from IB. */
2719
2720 static void
2721 ipa_read_indirect_edge_info (struct lto_input_block *ib,
2722 struct data_in *data_in ATTRIBUTE_UNUSED,
2723 struct cgraph_edge *cs)
2724 {
2725 struct cgraph_indirect_call_info *ii = cs->indirect_info;
2726 struct bitpack_d bp;
2727
2728 ii->param_index = (int) lto_input_sleb128 (ib);
2729 ii->anc_offset = (HOST_WIDE_INT) lto_input_sleb128 (ib);
2730 bp = lto_input_bitpack (ib);
2731 ii->polymorphic = bp_unpack_value (&bp, 1);
2732 if (ii->polymorphic)
2733 {
2734 ii->otr_token = (HOST_WIDE_INT) lto_input_sleb128 (ib);
2735 ii->otr_type = lto_input_tree (ib, data_in);
2736 }
2737 }
2738
2739 /* Stream out NODE info to OB. */
2740
2741 static void
2742 ipa_write_node_info (struct output_block *ob, struct cgraph_node *node)
2743 {
2744 int node_ref;
2745 lto_cgraph_encoder_t encoder;
2746 struct ipa_node_params *info = IPA_NODE_REF (node);
2747 int j;
2748 struct cgraph_edge *e;
2749 struct bitpack_d bp;
2750
2751 encoder = ob->decl_state->cgraph_node_encoder;
2752 node_ref = lto_cgraph_encoder_encode (encoder, node);
2753 lto_output_uleb128_stream (ob->main_stream, node_ref);
2754
2755 bp = bitpack_create (ob->main_stream);
2756 bp_pack_value (&bp, info->called_with_var_arguments, 1);
2757 gcc_assert (info->uses_analysis_done
2758 || ipa_get_param_count (info) == 0);
2759 gcc_assert (!info->node_enqueued);
2760 gcc_assert (!info->ipcp_orig_node);
2761 for (j = 0; j < ipa_get_param_count (info); j++)
2762 bp_pack_value (&bp, info->params[j].used, 1);
2763 lto_output_bitpack (&bp);
2764 for (e = node->callees; e; e = e->next_callee)
2765 {
2766 struct ipa_edge_args *args = IPA_EDGE_REF (e);
2767
2768 lto_output_uleb128_stream (ob->main_stream,
2769 ipa_get_cs_argument_count (args));
2770 for (j = 0; j < ipa_get_cs_argument_count (args); j++)
2771 ipa_write_jump_function (ob, ipa_get_ith_jump_func (args, j));
2772 }
2773 for (e = node->indirect_calls; e; e = e->next_callee)
2774 ipa_write_indirect_edge_info (ob, e);
2775 }
2776
2777 /* Stream in NODE info from IB. */
2778
2779 static void
2780 ipa_read_node_info (struct lto_input_block *ib, struct cgraph_node *node,
2781 struct data_in *data_in)
2782 {
2783 struct ipa_node_params *info = IPA_NODE_REF (node);
2784 int k;
2785 struct cgraph_edge *e;
2786 struct bitpack_d bp;
2787
2788 ipa_initialize_node_params (node);
2789
2790 bp = lto_input_bitpack (ib);
2791 info->called_with_var_arguments = bp_unpack_value (&bp, 1);
2792 if (ipa_get_param_count (info) != 0)
2793 info->uses_analysis_done = true;
2794 info->node_enqueued = false;
2795 for (k = 0; k < ipa_get_param_count (info); k++)
2796 info->params[k].used = bp_unpack_value (&bp, 1);
2797 for (e = node->callees; e; e = e->next_callee)
2798 {
2799 struct ipa_edge_args *args = IPA_EDGE_REF (e);
2800 int count = lto_input_uleb128 (ib);
2801
2802 ipa_set_cs_argument_count (args, count);
2803 if (!count)
2804 continue;
2805
2806 args->jump_functions = ggc_alloc_cleared_vec_ipa_jump_func
2807 (ipa_get_cs_argument_count (args));
2808 for (k = 0; k < ipa_get_cs_argument_count (args); k++)
2809 ipa_read_jump_function (ib, ipa_get_ith_jump_func (args, k), data_in);
2810 }
2811 for (e = node->indirect_calls; e; e = e->next_callee)
2812 ipa_read_indirect_edge_info (ib, data_in, e);
2813 }
2814
2815 /* Write jump functions for nodes in SET. */
2816
2817 void
2818 ipa_prop_write_jump_functions (cgraph_node_set set)
2819 {
2820 struct cgraph_node *node;
2821 struct output_block *ob = create_output_block (LTO_section_jump_functions);
2822 unsigned int count = 0;
2823 cgraph_node_set_iterator csi;
2824
2825 ob->cgraph_node = NULL;
2826
2827 for (csi = csi_start (set); !csi_end_p (csi); csi_next (&csi))
2828 {
2829 node = csi_node (csi);
2830 if (node->analyzed && IPA_NODE_REF (node) != NULL)
2831 count++;
2832 }
2833
2834 lto_output_uleb128_stream (ob->main_stream, count);
2835
2836 /* Process all of the functions. */
2837 for (csi = csi_start (set); !csi_end_p (csi); csi_next (&csi))
2838 {
2839 node = csi_node (csi);
2840 if (node->analyzed && IPA_NODE_REF (node) != NULL)
2841 ipa_write_node_info (ob, node);
2842 }
2843 lto_output_1_stream (ob->main_stream, 0);
2844 produce_asm (ob, NULL);
2845 destroy_output_block (ob);
2846 }
2847
2848 /* Read section in file FILE_DATA of length LEN with data DATA. */
2849
2850 static void
2851 ipa_prop_read_section (struct lto_file_decl_data *file_data, const char *data,
2852 size_t len)
2853 {
2854 const struct lto_function_header *header =
2855 (const struct lto_function_header *) data;
2856 const int32_t cfg_offset = sizeof (struct lto_function_header);
2857 const int32_t main_offset = cfg_offset + header->cfg_size;
2858 const int32_t string_offset = main_offset + header->main_size;
2859 struct data_in *data_in;
2860 struct lto_input_block ib_main;
2861 unsigned int i;
2862 unsigned int count;
2863
2864 LTO_INIT_INPUT_BLOCK (ib_main, (const char *) data + main_offset, 0,
2865 header->main_size);
2866
2867 data_in =
2868 lto_data_in_create (file_data, (const char *) data + string_offset,
2869 header->string_size, NULL);
2870 count = lto_input_uleb128 (&ib_main);
2871
2872 for (i = 0; i < count; i++)
2873 {
2874 unsigned int index;
2875 struct cgraph_node *node;
2876 lto_cgraph_encoder_t encoder;
2877
2878 index = lto_input_uleb128 (&ib_main);
2879 encoder = file_data->cgraph_node_encoder;
2880 node = lto_cgraph_encoder_deref (encoder, index);
2881 gcc_assert (node->analyzed);
2882 ipa_read_node_info (&ib_main, node, data_in);
2883 }
2884 lto_free_section_data (file_data, LTO_section_jump_functions, NULL, data,
2885 len);
2886 lto_data_in_delete (data_in);
2887 }
2888
2889 /* Read ipcp jump functions. */
2890
2891 void
2892 ipa_prop_read_jump_functions (void)
2893 {
2894 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
2895 struct lto_file_decl_data *file_data;
2896 unsigned int j = 0;
2897
2898 ipa_check_create_node_params ();
2899 ipa_check_create_edge_args ();
2900 ipa_register_cgraph_hooks ();
2901
2902 while ((file_data = file_data_vec[j++]))
2903 {
2904 size_t len;
2905 const char *data = lto_get_section_data (file_data, LTO_section_jump_functions, NULL, &len);
2906
2907 if (data)
2908 ipa_prop_read_section (file_data, data, len);
2909 }
2910 }
2911
2912 /* After merging units, we can get mismatch in argument counts.
2913 Also decl merging might've rendered parameter lists obsolete.
2914 Also compute called_with_variable_arg info. */
2915
2916 void
2917 ipa_update_after_lto_read (void)
2918 {
2919 struct cgraph_node *node;
2920 struct cgraph_edge *cs;
2921
2922 ipa_check_create_node_params ();
2923 ipa_check_create_edge_args ();
2924
2925 for (node = cgraph_nodes; node; node = node->next)
2926 if (node->analyzed)
2927 ipa_initialize_node_params (node);
2928
2929 for (node = cgraph_nodes; node; node = node->next)
2930 if (node->analyzed)
2931 for (cs = node->callees; cs; cs = cs->next_callee)
2932 {
2933 if (ipa_get_cs_argument_count (IPA_EDGE_REF (cs))
2934 != ipa_get_param_count (IPA_NODE_REF (cs->callee)))
2935 ipa_set_called_with_variable_arg (IPA_NODE_REF (cs->callee));
2936 }
2937 }