OSDN Git Service

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