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