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