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