Branch data Line data Source code
1 : : /* Interprocedural analyses.
2 : : Copyright (C) 2005-2024 Free Software Foundation, Inc.
3 : :
4 : : This file is part of GCC.
5 : :
6 : : GCC is free software; you can redistribute it and/or modify it under
7 : : the terms of the GNU General Public License as published by the Free
8 : : Software Foundation; either version 3, or (at your option) any later
9 : : version.
10 : :
11 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 : : for more details.
15 : :
16 : : You should have received a copy of the GNU General Public License
17 : : along with GCC; see the file COPYING3. If not see
18 : : <http://www.gnu.org/licenses/>. */
19 : :
20 : : #include "config.h"
21 : : #include "system.h"
22 : : #include "coretypes.h"
23 : : #include "backend.h"
24 : : #include "rtl.h"
25 : : #include "tree.h"
26 : : #include "gimple.h"
27 : : #include "alloc-pool.h"
28 : : #include "tree-pass.h"
29 : : #include "ssa.h"
30 : : #include "tree-streamer.h"
31 : : #include "cgraph.h"
32 : : #include "diagnostic.h"
33 : : #include "fold-const.h"
34 : : #include "gimple-iterator.h"
35 : : #include "gimple-fold.h"
36 : : #include "tree-eh.h"
37 : : #include "calls.h"
38 : : #include "stor-layout.h"
39 : : #include "print-tree.h"
40 : : #include "gimplify.h"
41 : : #include "gimplify-me.h"
42 : : #include "gimple-walk.h"
43 : : #include "symbol-summary.h"
44 : : #include "sreal.h"
45 : : #include "ipa-cp.h"
46 : : #include "ipa-prop.h"
47 : : #include "tree-cfg.h"
48 : : #include "tree-dfa.h"
49 : : #include "tree-inline.h"
50 : : #include "ipa-fnsummary.h"
51 : : #include "gimple-pretty-print.h"
52 : : #include "ipa-utils.h"
53 : : #include "dbgcnt.h"
54 : : #include "domwalk.h"
55 : : #include "builtins.h"
56 : : #include "tree-cfgcleanup.h"
57 : : #include "options.h"
58 : : #include "symtab-clones.h"
59 : : #include "attr-fnspec.h"
60 : : #include "gimple-range.h"
61 : : #include "value-range-storage.h"
62 : :
63 : : /* Function summary where the parameter infos are actually stored. */
64 : : ipa_node_params_t *ipa_node_params_sum = NULL;
65 : :
66 : : function_summary <ipcp_transformation *> *ipcp_transformation_sum = NULL;
67 : :
68 : : /* Edge summary for IPA-CP edge information. */
69 : : ipa_edge_args_sum_t *ipa_edge_args_sum;
70 : :
71 : : /* Traits for a hash table for reusing ranges. */
72 : :
73 : : struct ipa_vr_ggc_hash_traits : public ggc_cache_remove <ipa_vr *>
74 : : {
75 : : typedef ipa_vr *value_type;
76 : : typedef const vrange *compare_type;
77 : : static hashval_t
78 : 12646455 : hash (const ipa_vr *p)
79 : : {
80 : : // This never get called, except in the verification code, as
81 : : // ipa_get_value_range() calculates the hash itself. This
82 : : // function is mostly here for completness' sake.
83 : 12646455 : value_range vr;
84 : 12646455 : p->get_vrange (vr);
85 : 12646455 : inchash::hash hstate;
86 : 12646455 : add_vrange (vr, hstate);
87 : 12646455 : return hstate.end ();
88 : 12646455 : }
89 : : static bool
90 : 17948588 : equal (const ipa_vr *a, const vrange *b)
91 : : {
92 : 17948588 : return a->equal_p (*b);
93 : : }
94 : : static const bool empty_zero_p = true;
95 : : static void
96 : 992 : mark_empty (ipa_vr *&p)
97 : : {
98 : 992 : p = NULL;
99 : : }
100 : : static bool
101 : : is_empty (const ipa_vr *p)
102 : : {
103 : : return p == NULL;
104 : : }
105 : : static bool
106 : 35749517 : is_deleted (const ipa_vr *p)
107 : : {
108 : 35749517 : return p == reinterpret_cast<const ipa_vr *> (1);
109 : : }
110 : : static void
111 : 124555 : mark_deleted (ipa_vr *&p)
112 : : {
113 : 124555 : p = reinterpret_cast<ipa_vr *> (1);
114 : : }
115 : : };
116 : :
117 : : /* Hash table for avoid repeated allocations of equal ranges. */
118 : : static GTY ((cache)) hash_table<ipa_vr_ggc_hash_traits> *ipa_vr_hash_table;
119 : :
120 : : /* Holders of ipa cgraph hooks: */
121 : : static struct cgraph_node_hook_list *function_insertion_hook_holder;
122 : :
123 : : /* Description of a reference to an IPA constant. */
124 : : struct ipa_cst_ref_desc
125 : : {
126 : : /* Edge that corresponds to the statement which took the reference. */
127 : : struct cgraph_edge *cs;
128 : : /* Linked list of duplicates created when call graph edges are cloned. */
129 : : struct ipa_cst_ref_desc *next_duplicate;
130 : : /* Number of references in IPA structures, IPA_UNDESCRIBED_USE if the value
131 : : if out of control. */
132 : : int refcount;
133 : : };
134 : :
135 : : /* Allocation pool for reference descriptions. */
136 : :
137 : : static object_allocator<ipa_cst_ref_desc> ipa_refdesc_pool
138 : : ("IPA-PROP ref descriptions");
139 : :
140 : 619850 : ipa_vr::ipa_vr ()
141 : 619850 : : m_storage (NULL),
142 : 619850 : m_type (NULL)
143 : : {
144 : 619850 : }
145 : :
146 : 655984 : ipa_vr::ipa_vr (const vrange &r)
147 : 655984 : : m_storage (ggc_alloc_vrange_storage (r)),
148 : 655984 : m_type (r.type ())
149 : : {
150 : 655984 : }
151 : :
152 : : bool
153 : 17948588 : ipa_vr::equal_p (const vrange &r) const
154 : : {
155 : 17948588 : gcc_checking_assert (!r.undefined_p ());
156 : 17948588 : return (types_compatible_p (m_type, r.type ()) && m_storage->equal_p (r));
157 : : }
158 : :
159 : : bool
160 : 67673 : ipa_vr::equal_p (const ipa_vr &o) const
161 : : {
162 : 67673 : if (!known_p ())
163 : 0 : return !o.known_p ();
164 : :
165 : 67673 : if (!types_compatible_p (m_type, o.m_type))
166 : : return false;
167 : :
168 : 67673 : value_range r;
169 : 67673 : o.get_vrange (r);
170 : 67673 : return m_storage->equal_p (r);
171 : 67673 : }
172 : :
173 : : void
174 : 21263454 : ipa_vr::get_vrange (value_range &r) const
175 : : {
176 : 21263454 : r.set_type (m_type);
177 : 21263454 : m_storage->get_vrange (r, m_type);
178 : 21263454 : }
179 : :
180 : : void
181 : 1430 : ipa_vr::set_unknown ()
182 : : {
183 : 1430 : if (m_storage)
184 : 1430 : ggc_free (m_storage);
185 : :
186 : 1430 : m_storage = NULL;
187 : 1430 : }
188 : :
189 : : void
190 : 582549 : ipa_vr::streamer_read (lto_input_block *ib, data_in *data_in)
191 : : {
192 : 582549 : struct bitpack_d bp = streamer_read_bitpack (ib);
193 : 582549 : bool known = bp_unpack_value (&bp, 1);
194 : 582549 : if (known)
195 : : {
196 : 410548 : value_range vr;
197 : 410548 : streamer_read_value_range (ib, data_in, vr);
198 : 410548 : if (!m_storage || !m_storage->fits_p (vr))
199 : : {
200 : 410548 : if (m_storage)
201 : 0 : ggc_free (m_storage);
202 : 410548 : m_storage = ggc_alloc_vrange_storage (vr);
203 : : }
204 : 410548 : m_storage->set_vrange (vr);
205 : 410548 : m_type = vr.type ();
206 : 410548 : }
207 : : else
208 : : {
209 : 172001 : m_storage = NULL;
210 : 172001 : m_type = NULL;
211 : : }
212 : 582549 : }
213 : :
214 : : void
215 : 435413 : ipa_vr::streamer_write (output_block *ob) const
216 : : {
217 : 435413 : struct bitpack_d bp = bitpack_create (ob->main_stream);
218 : 435413 : bp_pack_value (&bp, !!m_storage, 1);
219 : 435413 : streamer_write_bitpack (&bp);
220 : 435413 : if (m_storage)
221 : : {
222 : 433946 : value_range vr (m_type);
223 : 433946 : m_storage->get_vrange (vr, m_type);
224 : 433946 : streamer_write_vrange (ob, vr);
225 : 433946 : }
226 : 435413 : }
227 : :
228 : : void
229 : 693 : ipa_vr::dump (FILE *out) const
230 : : {
231 : 693 : if (known_p ())
232 : : {
233 : 693 : value_range vr (m_type);
234 : 693 : m_storage->get_vrange (vr, m_type);
235 : 693 : vr.dump (out);
236 : 693 : }
237 : : else
238 : 0 : fprintf (out, "NO RANGE");
239 : 693 : }
240 : :
241 : : // These stubs are because we use an ipa_vr in a hash_traits and
242 : : // hash-traits.h defines an extern of gt_ggc_mx (T &) instead of
243 : : // picking up the gt_ggc_mx (T *) version.
244 : : void
245 : 0 : gt_pch_nx (ipa_vr *&x)
246 : : {
247 : 0 : return gt_pch_nx ((ipa_vr *) x);
248 : : }
249 : :
250 : : void
251 : 0 : gt_ggc_mx (ipa_vr *&x)
252 : : {
253 : 0 : return gt_ggc_mx ((ipa_vr *) x);
254 : : }
255 : :
256 : : /* Analysis summery of function call return value. */
257 : : struct GTY(()) ipa_return_value_summary
258 : : {
259 : : /* Known value range.
260 : : This needs to be wrapped in struccture due to specific way
261 : : we allocate ipa_vr. */
262 : : ipa_vr *vr;
263 : : };
264 : :
265 : : /* Function summary for return values. */
266 : : class ipa_return_value_sum_t : public function_summary <ipa_return_value_summary *>
267 : : {
268 : : public:
269 : 76779 : ipa_return_value_sum_t (symbol_table *table, bool ggc):
270 : 153558 : function_summary <ipa_return_value_summary *> (table, ggc) { }
271 : :
272 : : /* Hook that is called by summary when a node is duplicated. */
273 : 384338 : void duplicate (cgraph_node *,
274 : : cgraph_node *,
275 : : ipa_return_value_summary *data,
276 : : ipa_return_value_summary *data2) final override
277 : : {
278 : 384338 : *data2=*data;
279 : 384338 : }
280 : : };
281 : :
282 : : /* Variable hoding the return value summary. */
283 : : static GTY(()) function_summary <ipa_return_value_summary *> *ipa_return_value_sum;
284 : :
285 : :
286 : : /* Return true if DECL_FUNCTION_SPECIFIC_OPTIMIZATION of the decl associated
287 : : with NODE should prevent us from analyzing it for the purposes of IPA-CP. */
288 : :
289 : : static bool
290 : 3705226 : ipa_func_spec_opts_forbid_analysis_p (struct cgraph_node *node)
291 : : {
292 : 3705226 : tree fs_opts = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (node->decl);
293 : :
294 : 3705226 : if (!fs_opts)
295 : : return false;
296 : 547270 : return !opt_for_fn (node->decl, optimize) || !opt_for_fn (node->decl, flag_ipa_cp);
297 : : }
298 : :
299 : : /* Return index of the formal whose tree is PTREE in function which corresponds
300 : : to INFO. */
301 : :
302 : : static int
303 : 39371202 : ipa_get_param_decl_index_1 (vec<ipa_param_descriptor, va_gc> *descriptors,
304 : : tree ptree)
305 : : {
306 : 39371202 : int i, count;
307 : :
308 : 39371202 : count = vec_safe_length (descriptors);
309 : 81515591 : for (i = 0; i < count; i++)
310 : 71462266 : if ((*descriptors)[i].decl_or_type == ptree)
311 : 29317877 : return i;
312 : :
313 : : return -1;
314 : : }
315 : :
316 : : /* Return index of the formal whose tree is PTREE in function which corresponds
317 : : to INFO. */
318 : :
319 : : int
320 : 24341875 : ipa_get_param_decl_index (class ipa_node_params *info, tree ptree)
321 : : {
322 : 24341875 : return ipa_get_param_decl_index_1 (info->descriptors, ptree);
323 : : }
324 : :
325 : : /* Populate the param_decl field in parameter DESCRIPTORS that correspond to
326 : : NODE. */
327 : :
328 : : static void
329 : 5050820 : ipa_populate_param_decls (struct cgraph_node *node,
330 : : vec<ipa_param_descriptor, va_gc> &descriptors)
331 : : {
332 : 5050820 : tree fndecl;
333 : 5050820 : tree fnargs;
334 : 5050820 : tree parm;
335 : 5050820 : int param_num;
336 : :
337 : 5050820 : fndecl = node->decl;
338 : 5050820 : gcc_assert (gimple_has_body_p (fndecl));
339 : 5050820 : fnargs = DECL_ARGUMENTS (fndecl);
340 : 5050820 : param_num = 0;
341 : 16689365 : for (parm = fnargs; parm; parm = DECL_CHAIN (parm))
342 : : {
343 : 11638545 : descriptors[param_num].decl_or_type = parm;
344 : 11638545 : unsigned int cost = estimate_move_cost (TREE_TYPE (parm), true);
345 : 11638545 : descriptors[param_num].move_cost = cost;
346 : : /* Watch overflow, move_cost is a bitfield. */
347 : 11638545 : gcc_checking_assert (cost == descriptors[param_num].move_cost);
348 : 11638545 : param_num++;
349 : : }
350 : 5050820 : }
351 : :
352 : : /* Return how many formal parameters FNDECL has. */
353 : :
354 : : int
355 : 13946768 : count_formal_params (tree fndecl)
356 : : {
357 : 13946768 : tree parm;
358 : 13946768 : int count = 0;
359 : 13946768 : gcc_assert (gimple_has_body_p (fndecl));
360 : :
361 : 43213629 : for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
362 : 29266861 : count++;
363 : :
364 : 13946768 : return count;
365 : : }
366 : :
367 : : /* Return the declaration of Ith formal parameter of the function corresponding
368 : : to INFO. Note there is no setter function as this array is built just once
369 : : using ipa_initialize_node_params. */
370 : :
371 : : void
372 : 540 : ipa_dump_param (FILE *file, class ipa_node_params *info, int i)
373 : : {
374 : 540 : fprintf (file, "param #%i", i);
375 : 540 : if ((*info->descriptors)[i].decl_or_type)
376 : : {
377 : 540 : fprintf (file, " ");
378 : 540 : print_generic_expr (file, (*info->descriptors)[i].decl_or_type);
379 : : }
380 : 540 : }
381 : :
382 : : /* If necessary, allocate vector of parameter descriptors in info of NODE.
383 : : Return true if they were allocated, false if not. */
384 : :
385 : : static bool
386 : 5880453 : ipa_alloc_node_params (struct cgraph_node *node, int param_count)
387 : : {
388 : 5880453 : ipa_node_params *info = ipa_node_params_sum->get_create (node);
389 : :
390 : 5880453 : if (!info->descriptors && param_count)
391 : : {
392 : 5100800 : vec_safe_grow_cleared (info->descriptors, param_count, true);
393 : 5100800 : return true;
394 : : }
395 : : else
396 : : return false;
397 : : }
398 : :
399 : : /* Initialize the ipa_node_params structure associated with NODE by counting
400 : : the function parameters, creating the descriptors and populating their
401 : : param_decls. */
402 : :
403 : : void
404 : 5806197 : ipa_initialize_node_params (struct cgraph_node *node)
405 : : {
406 : 5806197 : ipa_node_params *info = ipa_node_params_sum->get_create (node);
407 : :
408 : 5806197 : if (!info->descriptors
409 : 5806197 : && ipa_alloc_node_params (node, count_formal_params (node->decl)))
410 : 5049709 : ipa_populate_param_decls (node, *info->descriptors);
411 : 5806197 : }
412 : :
413 : : /* Print VAL which is extracted from a jump function to F. */
414 : :
415 : : static void
416 : 454 : ipa_print_constant_value (FILE *f, tree val)
417 : : {
418 : 454 : print_generic_expr (f, val);
419 : :
420 : : /* This is in keeping with values_equal_for_ipcp_p. */
421 : 454 : if (TREE_CODE (val) == ADDR_EXPR
422 : 454 : && (TREE_CODE (TREE_OPERAND (val, 0)) == CONST_DECL
423 : 117 : || (TREE_CODE (TREE_OPERAND (val, 0)) == VAR_DECL
424 : 44 : && DECL_IN_CONSTANT_POOL (TREE_OPERAND (val, 0)))))
425 : : {
426 : 0 : fputs (" -> ", f);
427 : 0 : print_generic_expr (f, DECL_INITIAL (TREE_OPERAND (val, 0)));
428 : : }
429 : 454 : }
430 : :
431 : : /* Print the jump functions associated with call graph edge CS to file F. */
432 : :
433 : : static void
434 : 675 : ipa_print_node_jump_functions_for_edge (FILE *f, struct cgraph_edge *cs)
435 : : {
436 : 675 : ipa_edge_args *args = ipa_edge_args_sum->get (cs);
437 : 675 : int count = ipa_get_cs_argument_count (args);
438 : :
439 : 1603 : for (int i = 0; i < count; i++)
440 : : {
441 : 928 : struct ipa_jump_func *jump_func;
442 : 928 : enum jump_func_type type;
443 : :
444 : 928 : jump_func = ipa_get_ith_jump_func (args, i);
445 : 928 : type = jump_func->type;
446 : :
447 : 928 : fprintf (f, " param %d: ", i);
448 : 928 : if (type == IPA_JF_UNKNOWN)
449 : 235 : fprintf (f, "UNKNOWN\n");
450 : 693 : else if (type == IPA_JF_CONST)
451 : : {
452 : 281 : fprintf (f, "CONST: ");
453 : 281 : ipa_print_constant_value (f, jump_func->value.constant.value);
454 : 281 : fprintf (f, "\n");
455 : : }
456 : 412 : else if (type == IPA_JF_PASS_THROUGH)
457 : : {
458 : 351 : fprintf (f, "PASS THROUGH: ");
459 : 351 : fprintf (f, "%d, op %s",
460 : : jump_func->value.pass_through.formal_id,
461 : : get_tree_code_name(jump_func->value.pass_through.operation));
462 : 351 : if (jump_func->value.pass_through.operation != NOP_EXPR)
463 : : {
464 : 31 : fprintf (f, " ");
465 : 31 : print_generic_expr (f, jump_func->value.pass_through.operand);
466 : : }
467 : 351 : if (jump_func->value.pass_through.agg_preserved)
468 : 109 : fprintf (f, ", agg_preserved");
469 : 351 : if (jump_func->value.pass_through.refdesc_decremented)
470 : 0 : fprintf (f, ", refdesc_decremented");
471 : 351 : fprintf (f, "\n");
472 : : }
473 : 61 : else if (type == IPA_JF_ANCESTOR)
474 : : {
475 : 61 : fprintf (f, "ANCESTOR: ");
476 : 61 : fprintf (f, "%d, offset " HOST_WIDE_INT_PRINT_DEC,
477 : : jump_func->value.ancestor.formal_id,
478 : : jump_func->value.ancestor.offset);
479 : 61 : if (jump_func->value.ancestor.agg_preserved)
480 : 26 : fprintf (f, ", agg_preserved");
481 : 61 : if (jump_func->value.ancestor.keep_null)
482 : 4 : fprintf (f, ", keep_null");
483 : 61 : fprintf (f, "\n");
484 : : }
485 : :
486 : 928 : if (jump_func->agg.items)
487 : : {
488 : 86 : struct ipa_agg_jf_item *item;
489 : 86 : int j;
490 : :
491 : 172 : fprintf (f, " Aggregate passed by %s:\n",
492 : 86 : jump_func->agg.by_ref ? "reference" : "value");
493 : 361 : FOR_EACH_VEC_ELT (*jump_func->agg.items, j, item)
494 : : {
495 : 189 : fprintf (f, " offset: " HOST_WIDE_INT_PRINT_DEC ", ",
496 : : item->offset);
497 : 189 : fprintf (f, "type: ");
498 : 189 : print_generic_expr (f, item->type);
499 : 189 : fprintf (f, ", ");
500 : 189 : if (item->jftype == IPA_JF_PASS_THROUGH)
501 : 5 : fprintf (f, "PASS THROUGH: %d,",
502 : : item->value.pass_through.formal_id);
503 : 184 : else if (item->jftype == IPA_JF_LOAD_AGG)
504 : : {
505 : 11 : fprintf (f, "LOAD AGG: %d",
506 : : item->value.pass_through.formal_id);
507 : 11 : fprintf (f, " [offset: " HOST_WIDE_INT_PRINT_DEC ", by %s],",
508 : : item->value.load_agg.offset,
509 : 11 : item->value.load_agg.by_ref ? "reference"
510 : : : "value");
511 : : }
512 : :
513 : 189 : if (item->jftype == IPA_JF_PASS_THROUGH
514 : 189 : || item->jftype == IPA_JF_LOAD_AGG)
515 : : {
516 : 16 : fprintf (f, " op %s",
517 : : get_tree_code_name (item->value.pass_through.operation));
518 : 16 : if (item->value.pass_through.operation != NOP_EXPR)
519 : : {
520 : 9 : fprintf (f, " ");
521 : 9 : print_generic_expr (f, item->value.pass_through.operand);
522 : : }
523 : : }
524 : 173 : else if (item->jftype == IPA_JF_CONST)
525 : : {
526 : 173 : fprintf (f, "CONST: ");
527 : 173 : ipa_print_constant_value (f, item->value.constant);
528 : : }
529 : 0 : else if (item->jftype == IPA_JF_UNKNOWN)
530 : 0 : fprintf (f, "UNKNOWN: " HOST_WIDE_INT_PRINT_DEC " bits",
531 : 0 : tree_to_uhwi (TYPE_SIZE (item->type)));
532 : 189 : fprintf (f, "\n");
533 : : }
534 : : }
535 : :
536 : 928 : class ipa_polymorphic_call_context *ctx
537 : 1442 : = ipa_get_ith_polymorhic_call_context (args, i);
538 : 514 : if (ctx && !ctx->useless_p ())
539 : : {
540 : 354 : fprintf (f, " Context: ");
541 : 354 : ctx->dump (dump_file);
542 : : }
543 : :
544 : 928 : if (jump_func->m_vr)
545 : : {
546 : 693 : jump_func->m_vr->dump (f);
547 : 693 : fprintf (f, "\n");
548 : : }
549 : : else
550 : 235 : fprintf (f, " Unknown VR\n");
551 : : }
552 : 675 : }
553 : :
554 : :
555 : : /* Print the jump functions of all arguments on all call graph edges going from
556 : : NODE to file F. */
557 : :
558 : : void
559 : 1026 : ipa_print_node_jump_functions (FILE *f, struct cgraph_node *node)
560 : : {
561 : 1026 : struct cgraph_edge *cs;
562 : :
563 : 1026 : fprintf (f, " Jump functions of caller %s:\n", node->dump_name ());
564 : 2023 : for (cs = node->callees; cs; cs = cs->next_callee)
565 : : {
566 : :
567 : 997 : fprintf (f, " callsite %s -> %s : \n",
568 : : node->dump_name (),
569 : 997 : cs->callee->dump_name ());
570 : 997 : if (!ipa_edge_args_info_available_for_edge_p (cs))
571 : 469 : fprintf (f, " no arg info\n");
572 : : else
573 : 528 : ipa_print_node_jump_functions_for_edge (f, cs);
574 : : }
575 : :
576 : 1173 : for (cs = node->indirect_calls; cs; cs = cs->next_callee)
577 : : {
578 : 147 : class cgraph_indirect_call_info *ii;
579 : :
580 : 147 : ii = cs->indirect_info;
581 : 147 : if (ii->agg_contents)
582 : 20 : fprintf (f, " indirect %s callsite, calling param %i, "
583 : : "offset " HOST_WIDE_INT_PRINT_DEC ", %s",
584 : 20 : ii->member_ptr ? "member ptr" : "aggregate",
585 : : ii->param_index, ii->offset,
586 : 20 : ii->by_ref ? "by reference" : "by_value");
587 : : else
588 : 127 : fprintf (f, " indirect %s callsite, calling param %i, "
589 : : "offset " HOST_WIDE_INT_PRINT_DEC,
590 : 127 : ii->polymorphic ? "polymorphic" : "simple", ii->param_index,
591 : : ii->offset);
592 : :
593 : 147 : if (cs->call_stmt)
594 : : {
595 : 131 : fprintf (f, ", for stmt ");
596 : 131 : print_gimple_stmt (f, cs->call_stmt, 0, TDF_SLIM);
597 : : }
598 : : else
599 : 16 : fprintf (f, "\n");
600 : 147 : if (ii->polymorphic)
601 : 108 : ii->context.dump (f);
602 : 147 : if (!ipa_edge_args_info_available_for_edge_p (cs))
603 : 0 : fprintf (f, " no arg info\n");
604 : : else
605 : 147 : ipa_print_node_jump_functions_for_edge (f, cs);
606 : : }
607 : 1026 : }
608 : :
609 : : /* Print ipa_jump_func data structures of all nodes in the call graph to F. */
610 : :
611 : : void
612 : 153 : ipa_print_all_jump_functions (FILE *f)
613 : : {
614 : 153 : struct cgraph_node *node;
615 : :
616 : 153 : fprintf (f, "\nJump functions:\n");
617 : 2332 : FOR_EACH_FUNCTION (node)
618 : : {
619 : 1013 : ipa_print_node_jump_functions (f, node);
620 : : }
621 : 153 : }
622 : :
623 : : /* Set jfunc to be a know-really nothing jump function. */
624 : :
625 : : static void
626 : 446704 : ipa_set_jf_unknown (struct ipa_jump_func *jfunc)
627 : : {
628 : 446704 : jfunc->type = IPA_JF_UNKNOWN;
629 : 433645 : }
630 : :
631 : : /* Set JFUNC to be a copy of another jmp (to be used by jump function
632 : : combination code). The two functions will share their rdesc. */
633 : :
634 : : static void
635 : 112464 : ipa_set_jf_cst_copy (struct ipa_jump_func *dst,
636 : : struct ipa_jump_func *src)
637 : :
638 : : {
639 : 112464 : gcc_checking_assert (src->type == IPA_JF_CONST);
640 : 112464 : dst->type = IPA_JF_CONST;
641 : 112464 : dst->value.constant = src->value.constant;
642 : 112464 : }
643 : :
644 : : /* Set JFUNC to be a constant jmp function. */
645 : :
646 : : static void
647 : 2581993 : ipa_set_jf_constant (struct ipa_jump_func *jfunc, tree constant,
648 : : struct cgraph_edge *cs)
649 : : {
650 : 2581993 : jfunc->type = IPA_JF_CONST;
651 : 2581993 : jfunc->value.constant.value = unshare_expr_without_location (constant);
652 : :
653 : 2581993 : if (TREE_CODE (constant) == ADDR_EXPR
654 : 2581993 : && (TREE_CODE (TREE_OPERAND (constant, 0)) == FUNCTION_DECL
655 : 978410 : || (VAR_P (TREE_OPERAND (constant, 0))
656 : 360703 : && TREE_STATIC (TREE_OPERAND (constant, 0)))))
657 : : {
658 : 381900 : struct ipa_cst_ref_desc *rdesc;
659 : :
660 : 381900 : rdesc = ipa_refdesc_pool.allocate ();
661 : 381900 : rdesc->cs = cs;
662 : 381900 : rdesc->next_duplicate = NULL;
663 : 381900 : rdesc->refcount = 1;
664 : 381900 : jfunc->value.constant.rdesc = rdesc;
665 : : }
666 : : else
667 : 2200093 : jfunc->value.constant.rdesc = NULL;
668 : 2581993 : }
669 : :
670 : : /* Set JFUNC to be a simple pass-through jump function. */
671 : : static void
672 : 1274656 : ipa_set_jf_simple_pass_through (struct ipa_jump_func *jfunc, int formal_id,
673 : : bool agg_preserved)
674 : : {
675 : 1274656 : jfunc->type = IPA_JF_PASS_THROUGH;
676 : 1274656 : jfunc->value.pass_through.operand = NULL_TREE;
677 : 1274656 : jfunc->value.pass_through.formal_id = formal_id;
678 : 1274656 : jfunc->value.pass_through.operation = NOP_EXPR;
679 : 1274656 : jfunc->value.pass_through.agg_preserved = agg_preserved;
680 : 1274656 : jfunc->value.pass_through.refdesc_decremented = false;
681 : 1145861 : }
682 : :
683 : : /* Set JFUNC to be an unary pass through jump function. */
684 : :
685 : : static void
686 : 818 : ipa_set_jf_unary_pass_through (struct ipa_jump_func *jfunc, int formal_id,
687 : : enum tree_code operation)
688 : : {
689 : 818 : jfunc->type = IPA_JF_PASS_THROUGH;
690 : 818 : jfunc->value.pass_through.operand = NULL_TREE;
691 : 818 : jfunc->value.pass_through.formal_id = formal_id;
692 : 818 : jfunc->value.pass_through.operation = operation;
693 : 818 : jfunc->value.pass_through.agg_preserved = false;
694 : 818 : jfunc->value.pass_through.refdesc_decremented = false;
695 : 818 : }
696 : : /* Set JFUNC to be an arithmetic pass through jump function. */
697 : :
698 : : static void
699 : 21762 : ipa_set_jf_arith_pass_through (struct ipa_jump_func *jfunc, int formal_id,
700 : : tree operand, enum tree_code operation)
701 : : {
702 : 21762 : jfunc->type = IPA_JF_PASS_THROUGH;
703 : 0 : jfunc->value.pass_through.operand = unshare_expr_without_location (operand);
704 : 21762 : jfunc->value.pass_through.formal_id = formal_id;
705 : 21762 : jfunc->value.pass_through.operation = operation;
706 : 21762 : jfunc->value.pass_through.agg_preserved = false;
707 : 21762 : jfunc->value.pass_through.refdesc_decremented = false;
708 : 21762 : }
709 : :
710 : : /* Set JFUNC to be an ancestor jump function. */
711 : :
712 : : static void
713 : 163113 : ipa_set_ancestor_jf (struct ipa_jump_func *jfunc, HOST_WIDE_INT offset,
714 : : int formal_id, bool agg_preserved, bool keep_null)
715 : : {
716 : 163113 : jfunc->type = IPA_JF_ANCESTOR;
717 : 163113 : jfunc->value.ancestor.formal_id = formal_id;
718 : 163113 : jfunc->value.ancestor.offset = offset;
719 : 163113 : jfunc->value.ancestor.agg_preserved = agg_preserved;
720 : 163113 : jfunc->value.ancestor.keep_null = keep_null;
721 : 162559 : }
722 : :
723 : : /* Get IPA BB information about the given BB. FBI is the context of analyzis
724 : : of this function body. */
725 : :
726 : : static struct ipa_bb_info *
727 : 30656747 : ipa_get_bb_info (struct ipa_func_body_info *fbi, basic_block bb)
728 : : {
729 : 25539001 : gcc_checking_assert (fbi);
730 : 30656747 : return &fbi->bb_infos[bb->index];
731 : : }
732 : :
733 : : /* Structure to be passed in between detect_type_change and
734 : : check_stmt_for_type_change. */
735 : :
736 : : struct prop_type_change_info
737 : : {
738 : : /* Offset into the object where there is the virtual method pointer we are
739 : : looking for. */
740 : : HOST_WIDE_INT offset;
741 : : /* The declaration or SSA_NAME pointer of the base that we are checking for
742 : : type change. */
743 : : tree object;
744 : : /* Set to true if dynamic type change has been detected. */
745 : : bool type_maybe_changed;
746 : : };
747 : :
748 : : /* Return true if STMT can modify a virtual method table pointer.
749 : :
750 : : This function makes special assumptions about both constructors and
751 : : destructors which are all the functions that are allowed to alter the VMT
752 : : pointers. It assumes that destructors begin with assignment into all VMT
753 : : pointers and that constructors essentially look in the following way:
754 : :
755 : : 1) The very first thing they do is that they call constructors of ancestor
756 : : sub-objects that have them.
757 : :
758 : : 2) Then VMT pointers of this and all its ancestors is set to new values
759 : : corresponding to the type corresponding to the constructor.
760 : :
761 : : 3) Only afterwards, other stuff such as constructor of member sub-objects
762 : : and the code written by the user is run. Only this may include calling
763 : : virtual functions, directly or indirectly.
764 : :
765 : : There is no way to call a constructor of an ancestor sub-object in any
766 : : other way.
767 : :
768 : : This means that we do not have to care whether constructors get the correct
769 : : type information because they will always change it (in fact, if we define
770 : : the type to be given by the VMT pointer, it is undefined).
771 : :
772 : : The most important fact to derive from the above is that if, for some
773 : : statement in the section 3, we try to detect whether the dynamic type has
774 : : changed, we can safely ignore all calls as we examine the function body
775 : : backwards until we reach statements in section 2 because these calls cannot
776 : : be ancestor constructors or destructors (if the input is not bogus) and so
777 : : do not change the dynamic type (this holds true only for automatically
778 : : allocated objects but at the moment we devirtualize only these). We then
779 : : must detect that statements in section 2 change the dynamic type and can try
780 : : to derive the new type. That is enough and we can stop, we will never see
781 : : the calls into constructors of sub-objects in this code. Therefore we can
782 : : safely ignore all call statements that we traverse.
783 : : */
784 : :
785 : : static bool
786 : 13 : stmt_may_be_vtbl_ptr_store (gimple *stmt)
787 : : {
788 : 13 : if (is_gimple_call (stmt))
789 : : return false;
790 : 4 : if (gimple_clobber_p (stmt))
791 : : return false;
792 : 0 : else if (is_gimple_assign (stmt))
793 : : {
794 : 0 : tree lhs = gimple_assign_lhs (stmt);
795 : :
796 : 0 : if (!AGGREGATE_TYPE_P (TREE_TYPE (lhs)))
797 : : {
798 : 0 : if (flag_strict_aliasing
799 : 0 : && !POINTER_TYPE_P (TREE_TYPE (lhs)))
800 : : return false;
801 : :
802 : 0 : if (TREE_CODE (lhs) == COMPONENT_REF
803 : 0 : && !DECL_VIRTUAL_P (TREE_OPERAND (lhs, 1)))
804 : 0 : return false;
805 : : /* In the future we might want to use get_ref_base_and_extent to find
806 : : if there is a field corresponding to the offset and if so, proceed
807 : : almost like if it was a component ref. */
808 : : }
809 : : }
810 : : return true;
811 : : }
812 : :
813 : : /* Callback of walk_aliased_vdefs and a helper function for detect_type_change
814 : : to check whether a particular statement may modify the virtual table
815 : : pointerIt stores its result into DATA, which points to a
816 : : prop_type_change_info structure. */
817 : :
818 : : static bool
819 : 13 : check_stmt_for_type_change (ao_ref *ao ATTRIBUTE_UNUSED, tree vdef, void *data)
820 : : {
821 : 13 : gimple *stmt = SSA_NAME_DEF_STMT (vdef);
822 : 13 : struct prop_type_change_info *tci = (struct prop_type_change_info *) data;
823 : :
824 : 13 : if (stmt_may_be_vtbl_ptr_store (stmt))
825 : : {
826 : 0 : tci->type_maybe_changed = true;
827 : 0 : return true;
828 : : }
829 : : else
830 : : return false;
831 : : }
832 : :
833 : : /* See if ARG is PARAM_DECl describing instance passed by pointer
834 : : or reference in FUNCTION. Return false if the dynamic type may change
835 : : in between beggining of the function until CALL is invoked.
836 : :
837 : : Generally functions are not allowed to change type of such instances,
838 : : but they call destructors. We assume that methods cannot destroy the THIS
839 : : pointer. Also as a special cases, constructor and destructors may change
840 : : type of the THIS pointer. */
841 : :
842 : : static bool
843 : 9840 : param_type_may_change_p (tree function, tree arg, gimple *call)
844 : : {
845 : : /* Pure functions cannot do any changes on the dynamic type;
846 : : that require writting to memory. */
847 : 9840 : if (flags_from_decl_or_type (function) & (ECF_PURE | ECF_CONST))
848 : : return false;
849 : : /* We need to check if we are within inlined consturctor
850 : : or destructor (ideally we would have way to check that the
851 : : inline cdtor is actually working on ARG, but we don't have
852 : : easy tie on this, so punt on all non-pure cdtors.
853 : : We may also record the types of cdtors and once we know type
854 : : of the instance match them.
855 : :
856 : : Also code unification optimizations may merge calls from
857 : : different blocks making return values unreliable. So
858 : : do nothing during late optimization. */
859 : 9840 : if (DECL_STRUCT_FUNCTION (function)->after_inlining)
860 : : return true;
861 : 9840 : if (TREE_CODE (arg) == SSA_NAME
862 : 9840 : && SSA_NAME_IS_DEFAULT_DEF (arg)
863 : 19680 : && TREE_CODE (SSA_NAME_VAR (arg)) == PARM_DECL)
864 : : {
865 : : /* Normal (non-THIS) argument. */
866 : 9840 : if ((SSA_NAME_VAR (arg) != DECL_ARGUMENTS (function)
867 : 9209 : || TREE_CODE (TREE_TYPE (function)) != METHOD_TYPE)
868 : : /* THIS pointer of an method - here we want to watch constructors
869 : : and destructors as those definitely may change the dynamic
870 : : type. */
871 : 18471 : || (TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE
872 : 8631 : && !DECL_CXX_CONSTRUCTOR_P (function)
873 : 8630 : && !DECL_CXX_DESTRUCTOR_P (function)
874 : 8629 : && (SSA_NAME_VAR (arg) == DECL_ARGUMENTS (function))))
875 : : {
876 : : /* Walk the inline stack and watch out for ctors/dtors. */
877 : 42714 : for (tree block = gimple_block (call); block && TREE_CODE (block) == BLOCK;
878 : 16438 : block = BLOCK_SUPERCONTEXT (block))
879 : 16453 : if (inlined_polymorphic_ctor_dtor_block_p (block, false))
880 : : return true;
881 : : return false;
882 : : }
883 : : }
884 : : return true;
885 : : }
886 : :
887 : : /* Detect whether the dynamic type of ARG of COMP_TYPE has changed (before
888 : : callsite CALL) by looking for assignments to its virtual table pointer. If
889 : : it is, return true. ARG is the object itself (not a pointer
890 : : to it, unless dereferenced). BASE is the base of the memory access as
891 : : returned by get_ref_base_and_extent, as is the offset.
892 : :
893 : : This is helper function for detect_type_change and detect_type_change_ssa
894 : : that does the heavy work which is usually unnecesary. */
895 : :
896 : : static bool
897 : 17 : detect_type_change_from_memory_writes (ipa_func_body_info *fbi, tree arg,
898 : : tree base, tree comp_type, gcall *call,
899 : : HOST_WIDE_INT offset)
900 : : {
901 : 17 : struct prop_type_change_info tci;
902 : 17 : ao_ref ao;
903 : :
904 : 17 : gcc_checking_assert (DECL_P (arg)
905 : : || TREE_CODE (arg) == MEM_REF
906 : : || handled_component_p (arg));
907 : :
908 : 17 : comp_type = TYPE_MAIN_VARIANT (comp_type);
909 : :
910 : : /* Const calls cannot call virtual methods through VMT and so type changes do
911 : : not matter. */
912 : 17 : if (!flag_devirtualize || !gimple_vuse (call)
913 : : /* Be sure expected_type is polymorphic. */
914 : 17 : || !comp_type
915 : 17 : || TREE_CODE (comp_type) != RECORD_TYPE
916 : 17 : || !TYPE_BINFO (TYPE_MAIN_VARIANT (comp_type))
917 : 34 : || !BINFO_VTABLE (TYPE_BINFO (TYPE_MAIN_VARIANT (comp_type))))
918 : : return true;
919 : :
920 : 17 : if (fbi->aa_walk_budget == 0)
921 : : return false;
922 : :
923 : 17 : ao_ref_init (&ao, arg);
924 : 17 : ao.base = base;
925 : 17 : ao.offset = offset;
926 : 17 : ao.size = POINTER_SIZE;
927 : 17 : ao.max_size = ao.size;
928 : :
929 : 17 : tci.offset = offset;
930 : 17 : tci.object = get_base_address (arg);
931 : 17 : tci.type_maybe_changed = false;
932 : :
933 : 17 : int walked
934 : 34 : = walk_aliased_vdefs (&ao, gimple_vuse (call), check_stmt_for_type_change,
935 : : &tci, NULL, NULL, fbi->aa_walk_budget);
936 : 17 : if (walked >= 0)
937 : 17 : fbi->aa_walk_budget -= walked;
938 : : else
939 : 0 : fbi->aa_walk_budget = 0;
940 : :
941 : 17 : if (walked >= 0 && !tci.type_maybe_changed)
942 : : return false;
943 : :
944 : : return true;
945 : : }
946 : :
947 : : /* Detect whether the dynamic type of ARG of COMP_TYPE may have changed.
948 : : If it is, return true. ARG is the object itself (not a pointer
949 : : to it, unless dereferenced). BASE is the base of the memory access as
950 : : returned by get_ref_base_and_extent, as is the offset. */
951 : :
952 : : static bool
953 : 751 : detect_type_change (ipa_func_body_info *fbi, tree arg, tree base,
954 : : tree comp_type, gcall *call,
955 : : HOST_WIDE_INT offset)
956 : : {
957 : 751 : if (!flag_devirtualize)
958 : : return false;
959 : :
960 : 751 : if (TREE_CODE (base) == MEM_REF
961 : 1502 : && !param_type_may_change_p (current_function_decl,
962 : 751 : TREE_OPERAND (base, 0),
963 : : call))
964 : : return false;
965 : 12 : return detect_type_change_from_memory_writes (fbi, arg, base, comp_type,
966 : 12 : call, offset);
967 : : }
968 : :
969 : : /* Like detect_type_change but ARG is supposed to be a non-dereferenced pointer
970 : : SSA name (its dereference will become the base and the offset is assumed to
971 : : be zero). */
972 : :
973 : : static bool
974 : 9089 : detect_type_change_ssa (ipa_func_body_info *fbi, tree arg, tree comp_type,
975 : : gcall *call)
976 : : {
977 : 9089 : gcc_checking_assert (TREE_CODE (arg) == SSA_NAME);
978 : 9089 : if (!flag_devirtualize
979 : 9089 : || !POINTER_TYPE_P (TREE_TYPE (arg)))
980 : : return false;
981 : :
982 : 9089 : if (!param_type_may_change_p (current_function_decl, arg, call))
983 : : return false;
984 : :
985 : 5 : arg = build2 (MEM_REF, ptr_type_node, arg,
986 : 5 : build_int_cst (ptr_type_node, 0));
987 : :
988 : 5 : return detect_type_change_from_memory_writes (fbi, arg, arg, comp_type,
989 : 5 : call, 0);
990 : : }
991 : :
992 : : /* Callback of walk_aliased_vdefs. Flags that it has been invoked to the
993 : : boolean variable pointed to by DATA. */
994 : :
995 : : static bool
996 : 1524249 : mark_modified (ao_ref *ao ATTRIBUTE_UNUSED, tree vdef ATTRIBUTE_UNUSED,
997 : : void *data)
998 : : {
999 : 1524249 : bool *b = (bool *) data;
1000 : 1524249 : *b = true;
1001 : 1524249 : return true;
1002 : : }
1003 : :
1004 : : /* Find the nearest valid aa status for parameter specified by INDEX that
1005 : : dominates BB. */
1006 : :
1007 : : static struct ipa_param_aa_status *
1008 : 3923424 : find_dominating_aa_status (struct ipa_func_body_info *fbi, basic_block bb,
1009 : : int index)
1010 : : {
1011 : 11957713 : while (true)
1012 : : {
1013 : 11957713 : bb = get_immediate_dominator (CDI_DOMINATORS, bb);
1014 : 11957713 : if (!bb)
1015 : : return NULL;
1016 : 9333355 : struct ipa_bb_info *bi = ipa_get_bb_info (fbi, bb);
1017 : 11202092 : if (!bi->param_aa_statuses.is_empty ()
1018 : 1868737 : && bi->param_aa_statuses[index].valid)
1019 : 1299066 : return &bi->param_aa_statuses[index];
1020 : : }
1021 : : }
1022 : :
1023 : : /* Get AA status structure for the given BB and parameter with INDEX. Allocate
1024 : : structures and/or intialize the result with a dominating description as
1025 : : necessary. */
1026 : :
1027 : : static struct ipa_param_aa_status *
1028 : 5956446 : parm_bb_aa_status_for_bb (struct ipa_func_body_info *fbi, basic_block bb,
1029 : : int index)
1030 : : {
1031 : 5956446 : gcc_checking_assert (fbi);
1032 : 5956446 : struct ipa_bb_info *bi = ipa_get_bb_info (fbi, bb);
1033 : 5956446 : if (bi->param_aa_statuses.is_empty ())
1034 : 3367314 : bi->param_aa_statuses.safe_grow_cleared (fbi->param_count, true);
1035 : 5956446 : struct ipa_param_aa_status *paa = &bi->param_aa_statuses[index];
1036 : 5956446 : if (!paa->valid)
1037 : : {
1038 : 3923424 : gcc_checking_assert (!paa->parm_modified
1039 : : && !paa->ref_modified
1040 : : && !paa->pt_modified);
1041 : 3923424 : struct ipa_param_aa_status *dom_paa;
1042 : 3923424 : dom_paa = find_dominating_aa_status (fbi, bb, index);
1043 : 3923424 : if (dom_paa)
1044 : 1299066 : *paa = *dom_paa;
1045 : : else
1046 : 2624358 : paa->valid = true;
1047 : : }
1048 : :
1049 : 5956446 : return paa;
1050 : : }
1051 : :
1052 : : /* Return true if a load from a formal parameter PARM_LOAD is known to retrieve
1053 : : a value known not to be modified in this function before reaching the
1054 : : statement STMT. FBI holds information about the function we have so far
1055 : : gathered but do not survive the summary building stage. */
1056 : :
1057 : : static bool
1058 : 1078849 : parm_preserved_before_stmt_p (struct ipa_func_body_info *fbi, int index,
1059 : : gimple *stmt, tree parm_load)
1060 : : {
1061 : 1078849 : struct ipa_param_aa_status *paa;
1062 : 1078849 : bool modified = false;
1063 : 1078849 : ao_ref refd;
1064 : :
1065 : 1078849 : tree base = get_base_address (parm_load);
1066 : 1078849 : gcc_assert (TREE_CODE (base) == PARM_DECL);
1067 : 1078849 : if (TREE_READONLY (base))
1068 : : return true;
1069 : :
1070 : 1002520 : gcc_checking_assert (fbi);
1071 : 1002520 : paa = parm_bb_aa_status_for_bb (fbi, gimple_bb (stmt), index);
1072 : 1002520 : if (paa->parm_modified || fbi->aa_walk_budget == 0)
1073 : : return false;
1074 : :
1075 : 1693282 : gcc_checking_assert (gimple_vuse (stmt) != NULL_TREE);
1076 : 846641 : ao_ref_init (&refd, parm_load);
1077 : 1693282 : int walked = walk_aliased_vdefs (&refd, gimple_vuse (stmt), mark_modified,
1078 : : &modified, NULL, NULL,
1079 : : fbi->aa_walk_budget);
1080 : 846641 : if (walked < 0)
1081 : : {
1082 : 8 : modified = true;
1083 : 8 : fbi->aa_walk_budget = 0;
1084 : : }
1085 : : else
1086 : 846633 : fbi->aa_walk_budget -= walked;
1087 : 846641 : if (paa && modified)
1088 : 75901 : paa->parm_modified = true;
1089 : 846641 : return !modified;
1090 : : }
1091 : :
1092 : : /* If STMT is an assignment that loads a value from an parameter declaration,
1093 : : return the index of the parameter in ipa_node_params which has not been
1094 : : modified. Otherwise return -1. */
1095 : :
1096 : : static int
1097 : 6146076 : load_from_unmodified_param (struct ipa_func_body_info *fbi,
1098 : : vec<ipa_param_descriptor, va_gc> *descriptors,
1099 : : gimple *stmt)
1100 : : {
1101 : 6146076 : int index;
1102 : 6146076 : tree op1;
1103 : :
1104 : 6146076 : if (!gimple_assign_single_p (stmt))
1105 : : return -1;
1106 : :
1107 : 4059132 : op1 = gimple_assign_rhs1 (stmt);
1108 : 4059132 : if (TREE_CODE (op1) != PARM_DECL)
1109 : : return -1;
1110 : :
1111 : 69302 : index = ipa_get_param_decl_index_1 (descriptors, op1);
1112 : 69302 : if (index < 0
1113 : 69302 : || !parm_preserved_before_stmt_p (fbi, index, stmt, op1))
1114 : 24079 : return -1;
1115 : :
1116 : : return index;
1117 : : }
1118 : :
1119 : : /* Return true if memory reference REF (which must be a load through parameter
1120 : : with INDEX) loads data that are known to be unmodified in this function
1121 : : before reaching statement STMT. */
1122 : :
1123 : : static bool
1124 : 4187083 : parm_ref_data_preserved_p (struct ipa_func_body_info *fbi,
1125 : : int index, gimple *stmt, tree ref)
1126 : : {
1127 : 4187083 : struct ipa_param_aa_status *paa;
1128 : 4187083 : bool modified = false;
1129 : 4187083 : ao_ref refd;
1130 : :
1131 : 4187083 : gcc_checking_assert (fbi);
1132 : 4187083 : paa = parm_bb_aa_status_for_bb (fbi, gimple_bb (stmt), index);
1133 : 4187083 : if (paa->ref_modified || fbi->aa_walk_budget == 0)
1134 : : return false;
1135 : :
1136 : 6450212 : gcc_checking_assert (gimple_vuse (stmt));
1137 : 3225106 : ao_ref_init (&refd, ref);
1138 : 6450212 : int walked = walk_aliased_vdefs (&refd, gimple_vuse (stmt), mark_modified,
1139 : : &modified, NULL, NULL,
1140 : : fbi->aa_walk_budget);
1141 : 3225106 : if (walked < 0)
1142 : : {
1143 : 8 : modified = true;
1144 : 8 : fbi->aa_walk_budget = 0;
1145 : : }
1146 : : else
1147 : 3225098 : fbi->aa_walk_budget -= walked;
1148 : 3225106 : if (modified)
1149 : 571638 : paa->ref_modified = true;
1150 : 3225106 : return !modified;
1151 : : }
1152 : :
1153 : : /* Return true if the data pointed to by PARM (which is a parameter with INDEX)
1154 : : is known to be unmodified in this function before reaching call statement
1155 : : CALL into which it is passed. FBI describes the function body. */
1156 : :
1157 : : static bool
1158 : 1062537 : parm_ref_data_pass_through_p (struct ipa_func_body_info *fbi, int index,
1159 : : gimple *call, tree parm)
1160 : : {
1161 : 1062537 : bool modified = false;
1162 : 1062537 : ao_ref refd;
1163 : :
1164 : : /* It's unnecessary to calculate anything about memory contnets for a const
1165 : : function because it is not goin to use it. But do not cache the result
1166 : : either. Also, no such calculations for non-pointers. */
1167 : 1472661 : if (!gimple_vuse (call)
1168 : 1062537 : || !POINTER_TYPE_P (TREE_TYPE (parm)))
1169 : : return false;
1170 : :
1171 : 766843 : struct ipa_param_aa_status *paa = parm_bb_aa_status_for_bb (fbi,
1172 : : gimple_bb (call),
1173 : : index);
1174 : 766843 : if (paa->pt_modified || fbi->aa_walk_budget == 0)
1175 : : return false;
1176 : :
1177 : 652413 : ao_ref_init_from_ptr_and_size (&refd, parm, NULL_TREE);
1178 : 1304826 : int walked = walk_aliased_vdefs (&refd, gimple_vuse (call), mark_modified,
1179 : : &modified, NULL, NULL,
1180 : : fbi->aa_walk_budget);
1181 : 652413 : if (walked < 0)
1182 : : {
1183 : 0 : fbi->aa_walk_budget = 0;
1184 : 0 : modified = true;
1185 : : }
1186 : : else
1187 : 652413 : fbi->aa_walk_budget -= walked;
1188 : 652413 : if (modified)
1189 : 258051 : paa->pt_modified = true;
1190 : 652413 : return !modified;
1191 : : }
1192 : :
1193 : : /* Return true if we can prove that OP is a memory reference loading
1194 : : data from an aggregate passed as a parameter.
1195 : :
1196 : : The function works in two modes. If GUARANTEED_UNMODIFIED is NULL, it return
1197 : : false if it cannot prove that the value has not been modified before the
1198 : : load in STMT. If GUARANTEED_UNMODIFIED is not NULL, it will return true even
1199 : : if it cannot prove the value has not been modified, in that case it will
1200 : : store false to *GUARANTEED_UNMODIFIED, otherwise it will store true there.
1201 : :
1202 : : INFO and PARMS_AINFO describe parameters of the current function (but the
1203 : : latter can be NULL), STMT is the load statement. If function returns true,
1204 : : *INDEX_P, *OFFSET_P and *BY_REF is filled with the parameter index, offset
1205 : : within the aggregate and whether it is a load from a value passed by
1206 : : reference respectively.
1207 : :
1208 : : Return false if the offset divided by BITS_PER_UNIT would not fit into an
1209 : : unsigned int. */
1210 : :
1211 : : bool
1212 : 23641477 : ipa_load_from_parm_agg (struct ipa_func_body_info *fbi,
1213 : : vec<ipa_param_descriptor, va_gc> *descriptors,
1214 : : gimple *stmt, tree op, int *index_p,
1215 : : HOST_WIDE_INT *offset_p, poly_int64 *size_p,
1216 : : bool *by_ref_p, bool *guaranteed_unmodified)
1217 : : {
1218 : 23641477 : int index;
1219 : 23641477 : HOST_WIDE_INT size;
1220 : 23641477 : bool reverse;
1221 : 23641477 : tree base = get_ref_base_and_extent_hwi (op, offset_p, &size, &reverse);
1222 : :
1223 : 23641477 : if (!base
1224 : 22427047 : || (*offset_p / BITS_PER_UNIT) > UINT_MAX)
1225 : : return false;
1226 : :
1227 : : /* We can not propagate across volatile loads. */
1228 : 22427016 : if (TREE_THIS_VOLATILE (op))
1229 : : return false;
1230 : :
1231 : 21206470 : if (DECL_P (base))
1232 : : {
1233 : 10661245 : int index = ipa_get_param_decl_index_1 (descriptors, base);
1234 : 10661245 : if (index >= 0
1235 : 10661245 : && parm_preserved_before_stmt_p (fbi, index, stmt, op))
1236 : : {
1237 : 741625 : *index_p = index;
1238 : 741625 : *by_ref_p = false;
1239 : 741625 : if (size_p)
1240 : 23548 : *size_p = size;
1241 : 741625 : if (guaranteed_unmodified)
1242 : 151 : *guaranteed_unmodified = true;
1243 : 741625 : return true;
1244 : : }
1245 : 9919620 : return false;
1246 : : }
1247 : :
1248 : 10545225 : if (TREE_CODE (base) != MEM_REF
1249 : 9930928 : || TREE_CODE (TREE_OPERAND (base, 0)) != SSA_NAME
1250 : 20472623 : || !integer_zerop (TREE_OPERAND (base, 1)))
1251 : 1439526 : return false;
1252 : :
1253 : 9105699 : if (SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (base, 0)))
1254 : : {
1255 : 4298780 : tree parm = SSA_NAME_VAR (TREE_OPERAND (base, 0));
1256 : 4298780 : index = ipa_get_param_decl_index_1 (descriptors, parm);
1257 : : }
1258 : : else
1259 : : {
1260 : : /* This branch catches situations where a pointer parameter is not a
1261 : : gimple register, for example:
1262 : :
1263 : : void hip7(S*) (struct S * p)
1264 : : {
1265 : : void (*<T2e4>) (struct S *) D.1867;
1266 : : struct S * p.1;
1267 : :
1268 : : <bb 2>:
1269 : : p.1_1 = p;
1270 : : D.1867_2 = p.1_1->f;
1271 : : D.1867_2 ();
1272 : : gdp = &p;
1273 : : */
1274 : :
1275 : 4806919 : gimple *def = SSA_NAME_DEF_STMT (TREE_OPERAND (base, 0));
1276 : 4806919 : index = load_from_unmodified_param (fbi, descriptors, def);
1277 : : }
1278 : :
1279 : 9105699 : if (index >= 0)
1280 : : {
1281 : 4186798 : bool data_preserved = parm_ref_data_preserved_p (fbi, index, stmt, op);
1282 : 4186798 : if (!data_preserved && !guaranteed_unmodified)
1283 : : return false;
1284 : :
1285 : 2653595 : *index_p = index;
1286 : 2653595 : *by_ref_p = true;
1287 : 2653595 : if (size_p)
1288 : 19067 : *size_p = size;
1289 : 2653595 : if (guaranteed_unmodified)
1290 : 2063 : *guaranteed_unmodified = data_preserved;
1291 : 2653595 : return true;
1292 : : }
1293 : : return false;
1294 : : }
1295 : :
1296 : : /* If STMT is an assignment that loads a value from a parameter declaration,
1297 : : or from an aggregate passed as the parameter either by value or reference,
1298 : : return the index of the parameter in ipa_node_params. Otherwise return -1.
1299 : :
1300 : : FBI holds gathered information about the function. INFO describes
1301 : : parameters of the function, STMT is the assignment statement. If it is a
1302 : : memory load from an aggregate, *OFFSET_P is filled with offset within the
1303 : : aggregate, and *BY_REF_P specifies whether the aggregate is passed by
1304 : : reference. */
1305 : :
1306 : : static int
1307 : 282475 : load_from_unmodified_param_or_agg (struct ipa_func_body_info *fbi,
1308 : : class ipa_node_params *info,
1309 : : gimple *stmt,
1310 : : HOST_WIDE_INT *offset_p,
1311 : : bool *by_ref_p)
1312 : : {
1313 : 282475 : int index = load_from_unmodified_param (fbi, info->descriptors, stmt);
1314 : 282475 : poly_int64 size;
1315 : :
1316 : : /* Load value from a parameter declaration. */
1317 : 282475 : if (index >= 0)
1318 : : {
1319 : 176 : *offset_p = -1;
1320 : 176 : return index;
1321 : : }
1322 : :
1323 : 282299 : if (!gimple_assign_load_p (stmt))
1324 : : return -1;
1325 : :
1326 : 174775 : tree rhs = gimple_assign_rhs1 (stmt);
1327 : :
1328 : : /* Skip memory reference containing VIEW_CONVERT_EXPR. */
1329 : 386758 : for (tree t = rhs; handled_component_p (t); t = TREE_OPERAND (t, 0))
1330 : 211987 : if (TREE_CODE (t) == VIEW_CONVERT_EXPR)
1331 : : return -1;
1332 : :
1333 : : /* Skip memory reference containing bit-field. */
1334 : 174771 : if (TREE_CODE (rhs) == BIT_FIELD_REF
1335 : 174771 : || contains_bitfld_component_ref_p (rhs))
1336 : 0 : return -1;
1337 : :
1338 : 174771 : if (!ipa_load_from_parm_agg (fbi, info->descriptors, stmt, rhs, &index,
1339 : : offset_p, &size, by_ref_p))
1340 : : return -1;
1341 : :
1342 : 40490 : gcc_assert (!maybe_ne (tree_to_poly_int64 (TYPE_SIZE (TREE_TYPE (rhs))),
1343 : : size));
1344 : 40490 : if (!*by_ref_p)
1345 : : {
1346 : 23027 : tree param_type = ipa_get_type (info, index);
1347 : :
1348 : 23027 : if (!param_type || !AGGREGATE_TYPE_P (param_type))
1349 : : return -1;
1350 : : }
1351 : 17463 : else if (TREE_THIS_VOLATILE (rhs))
1352 : : return -1;
1353 : :
1354 : 38925 : return index;
1355 : : }
1356 : :
1357 : : /* Walk pointer adjustemnts from OP (such as POINTER_PLUS and ADDR_EXPR)
1358 : : to find original pointer. Initialize RET to the pointer which results from
1359 : : the walk.
1360 : : If offset is known return true and initialize OFFSET_RET. */
1361 : :
1362 : : bool
1363 : 14435959 : unadjusted_ptr_and_unit_offset (tree op, tree *ret, poly_int64 *offset_ret)
1364 : : {
1365 : 14435959 : poly_int64 offset = 0;
1366 : 14435959 : bool offset_known = true;
1367 : 14435959 : int i;
1368 : :
1369 : 18588377 : for (i = 0; i < param_ipa_jump_function_lookups; i++)
1370 : : {
1371 : 18586465 : if (TREE_CODE (op) == ADDR_EXPR)
1372 : : {
1373 : 1458882 : poly_int64 extra_offset;
1374 : 1458882 : tree base = get_addr_base_and_unit_offset (TREE_OPERAND (op, 0),
1375 : : &extra_offset);
1376 : 1458882 : if (!base)
1377 : : {
1378 : 22713 : base = get_base_address (TREE_OPERAND (op, 0));
1379 : 22713 : if (TREE_CODE (base) != MEM_REF)
1380 : : break;
1381 : : offset_known = false;
1382 : : }
1383 : : else
1384 : : {
1385 : 1436169 : if (TREE_CODE (base) != MEM_REF)
1386 : : break;
1387 : 222438 : offset += extra_offset;
1388 : : }
1389 : 222438 : op = TREE_OPERAND (base, 0);
1390 : 222438 : if (mem_ref_offset (base).to_shwi (&extra_offset))
1391 : 222438 : offset += extra_offset;
1392 : : else
1393 : : offset_known = false;
1394 : : }
1395 : 17127583 : else if (TREE_CODE (op) == SSA_NAME
1396 : 17127583 : && !SSA_NAME_IS_DEFAULT_DEF (op))
1397 : : {
1398 : 5810204 : gimple *pstmt = SSA_NAME_DEF_STMT (op);
1399 : :
1400 : 5810204 : if (gimple_assign_single_p (pstmt))
1401 : 2799954 : op = gimple_assign_rhs1 (pstmt);
1402 : 3010250 : else if (is_gimple_assign (pstmt)
1403 : 3010250 : && gimple_assign_rhs_code (pstmt) == POINTER_PLUS_EXPR)
1404 : : {
1405 : 1130026 : poly_int64 extra_offset = 0;
1406 : 1130026 : if (ptrdiff_tree_p (gimple_assign_rhs2 (pstmt),
1407 : : &extra_offset))
1408 : 1130026 : offset += extra_offset;
1409 : : else
1410 : : offset_known = false;
1411 : 1130026 : op = gimple_assign_rhs1 (pstmt);
1412 : : }
1413 : : else
1414 : : break;
1415 : : }
1416 : : else
1417 : : break;
1418 : : }
1419 : 14435959 : *ret = op;
1420 : 14435959 : *offset_ret = offset;
1421 : 14435959 : return offset_known;
1422 : : }
1423 : :
1424 : : /* Given that an actual argument is an SSA_NAME (given in NAME) and is a result
1425 : : of an assignment statement STMT, try to determine whether we are actually
1426 : : handling any of the following cases and construct an appropriate jump
1427 : : function into JFUNC if so:
1428 : :
1429 : : 1) The passed value is loaded from a formal parameter which is not a gimple
1430 : : register (most probably because it is addressable, the value has to be
1431 : : scalar) and we can guarantee the value has not changed. This case can
1432 : : therefore be described by a simple pass-through jump function. For example:
1433 : :
1434 : : foo (int a)
1435 : : {
1436 : : int a.0;
1437 : :
1438 : : a.0_2 = a;
1439 : : bar (a.0_2);
1440 : :
1441 : : 2) The passed value can be described by a simple arithmetic pass-through
1442 : : jump function. E.g.
1443 : :
1444 : : foo (int a)
1445 : : {
1446 : : int D.2064;
1447 : :
1448 : : D.2064_4 = a.1(D) + 4;
1449 : : bar (D.2064_4);
1450 : :
1451 : : This case can also occur in combination of the previous one, e.g.:
1452 : :
1453 : : foo (int a, int z)
1454 : : {
1455 : : int a.0;
1456 : : int D.2064;
1457 : :
1458 : : a.0_3 = a;
1459 : : D.2064_4 = a.0_3 + 4;
1460 : : foo (D.2064_4);
1461 : :
1462 : : 3) The passed value is an address of an object within another one (which
1463 : : also passed by reference). Such situations are described by an ancestor
1464 : : jump function and describe situations such as:
1465 : :
1466 : : B::foo() (struct B * const this)
1467 : : {
1468 : : struct A * D.1845;
1469 : :
1470 : : D.1845_2 = &this_1(D)->D.1748;
1471 : : A::bar (D.1845_2);
1472 : :
1473 : : INFO is the structure describing individual parameters access different
1474 : : stages of IPA optimizations. PARMS_AINFO contains the information that is
1475 : : only needed for intraprocedural analysis. */
1476 : :
1477 : : static void
1478 : 1158397 : compute_complex_assign_jump_func (struct ipa_func_body_info *fbi,
1479 : : class ipa_node_params *info,
1480 : : struct ipa_jump_func *jfunc,
1481 : : gcall *call, gimple *stmt, tree name,
1482 : : tree param_type)
1483 : : {
1484 : 1158397 : HOST_WIDE_INT offset, size;
1485 : 1158397 : tree op1, tc_ssa, base, ssa;
1486 : 1158397 : bool reverse;
1487 : 1158397 : int index;
1488 : :
1489 : 1158397 : op1 = gimple_assign_rhs1 (stmt);
1490 : :
1491 : 1158397 : if (TREE_CODE (op1) == SSA_NAME)
1492 : : {
1493 : 429671 : if (SSA_NAME_IS_DEFAULT_DEF (op1))
1494 : 101715 : index = ipa_get_param_decl_index (info, SSA_NAME_VAR (op1));
1495 : : else
1496 : 327956 : index = load_from_unmodified_param (fbi, info->descriptors,
1497 : 327956 : SSA_NAME_DEF_STMT (op1));
1498 : : tc_ssa = op1;
1499 : : }
1500 : : else
1501 : : {
1502 : 728726 : index = load_from_unmodified_param (fbi, info->descriptors, stmt);
1503 : 728726 : tc_ssa = gimple_assign_lhs (stmt);
1504 : : }
1505 : :
1506 : 1158397 : if (index >= 0)
1507 : : {
1508 : 103011 : switch (gimple_assign_rhs_class (stmt))
1509 : : {
1510 : 35773 : case GIMPLE_BINARY_RHS:
1511 : 35773 : {
1512 : 35773 : tree op2 = gimple_assign_rhs2 (stmt);
1513 : 35773 : if (!is_gimple_ip_invariant (op2)
1514 : 35773 : || ((TREE_CODE_CLASS (gimple_assign_rhs_code (stmt))
1515 : : != tcc_comparison)
1516 : 20284 : && !useless_type_conversion_p (TREE_TYPE (name),
1517 : 20284 : TREE_TYPE (op1))))
1518 : 1014402 : return;
1519 : :
1520 : 20478 : ipa_set_jf_arith_pass_through (jfunc, index, op2,
1521 : : gimple_assign_rhs_code (stmt));
1522 : 20478 : break;
1523 : : }
1524 : 852 : case GIMPLE_SINGLE_RHS:
1525 : 852 : {
1526 : 852 : bool agg_p = parm_ref_data_pass_through_p (fbi, index, call,
1527 : : tc_ssa);
1528 : 852 : ipa_set_jf_simple_pass_through (jfunc, index, agg_p);
1529 : 852 : break;
1530 : : }
1531 : 66384 : case GIMPLE_UNARY_RHS:
1532 : 66384 : if (!CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt)))
1533 : 791 : ipa_set_jf_unary_pass_through (jfunc, index,
1534 : : gimple_assign_rhs_code (stmt));
1535 : 87716 : default:;
1536 : : }
1537 : 87716 : return;
1538 : : }
1539 : :
1540 : 1055386 : if (TREE_CODE (op1) != ADDR_EXPR)
1541 : : return;
1542 : 213117 : op1 = TREE_OPERAND (op1, 0);
1543 : 213117 : base = get_ref_base_and_extent_hwi (op1, &offset, &size, &reverse);
1544 : 213117 : offset_int mem_offset;
1545 : 213117 : if (!base
1546 : 186893 : || TREE_CODE (base) != MEM_REF
1547 : 388474 : || !mem_ref_offset (base).is_constant (&mem_offset))
1548 : 37760 : return;
1549 : 175357 : offset += mem_offset.to_short_addr () * BITS_PER_UNIT;
1550 : 175357 : ssa = TREE_OPERAND (base, 0);
1551 : 175357 : if (TREE_CODE (ssa) != SSA_NAME
1552 : 175357 : || !SSA_NAME_IS_DEFAULT_DEF (ssa)
1553 : 319451 : || offset < 0)
1554 : : return;
1555 : :
1556 : : /* Dynamic types are changed in constructors and destructors. */
1557 : 143995 : index = ipa_get_param_decl_index (info, SSA_NAME_VAR (ssa));
1558 : 143995 : if (index >= 0 && param_type && POINTER_TYPE_P (param_type))
1559 : 141318 : ipa_set_ancestor_jf (jfunc, offset, index,
1560 : 141318 : parm_ref_data_pass_through_p (fbi, index, call, ssa),
1561 : : false);
1562 : : }
1563 : :
1564 : : /* Extract the base, offset and MEM_REF expression from a statement ASSIGN if
1565 : : it looks like:
1566 : :
1567 : : iftmp.1_3 = &obj_2(D)->D.1762;
1568 : :
1569 : : The base of the MEM_REF must be a default definition SSA NAME of a
1570 : : parameter. Return NULL_TREE if it looks otherwise. If case of success, the
1571 : : whole MEM_REF expression is returned and the offset calculated from any
1572 : : handled components and the MEM_REF itself is stored into *OFFSET. The whole
1573 : : RHS stripped off the ADDR_EXPR is stored into *OBJ_P. */
1574 : :
1575 : : static tree
1576 : 16072 : get_ancestor_addr_info (gimple *assign, tree *obj_p, HOST_WIDE_INT *offset)
1577 : : {
1578 : 16072 : HOST_WIDE_INT size;
1579 : 16072 : tree expr, parm, obj;
1580 : 16072 : bool reverse;
1581 : :
1582 : 16072 : if (!gimple_assign_single_p (assign))
1583 : : return NULL_TREE;
1584 : 9198 : expr = gimple_assign_rhs1 (assign);
1585 : :
1586 : 9198 : if (TREE_CODE (expr) != ADDR_EXPR)
1587 : : return NULL_TREE;
1588 : 4323 : expr = TREE_OPERAND (expr, 0);
1589 : 4323 : obj = expr;
1590 : 4323 : expr = get_ref_base_and_extent_hwi (expr, offset, &size, &reverse);
1591 : :
1592 : 4323 : offset_int mem_offset;
1593 : 4323 : if (!expr
1594 : 4321 : || TREE_CODE (expr) != MEM_REF
1595 : 8644 : || !mem_ref_offset (expr).is_constant (&mem_offset))
1596 : 2 : return NULL_TREE;
1597 : 4321 : parm = TREE_OPERAND (expr, 0);
1598 : 4321 : if (TREE_CODE (parm) != SSA_NAME
1599 : 4321 : || !SSA_NAME_IS_DEFAULT_DEF (parm)
1600 : 5098 : || TREE_CODE (SSA_NAME_VAR (parm)) != PARM_DECL)
1601 : : return NULL_TREE;
1602 : :
1603 : 777 : *offset += mem_offset.to_short_addr () * BITS_PER_UNIT;
1604 : 777 : *obj_p = obj;
1605 : 777 : return expr;
1606 : : }
1607 : :
1608 : :
1609 : : /* Given that an actual argument is an SSA_NAME that is a result of a phi
1610 : : statement PHI, try to find out whether NAME is in fact a
1611 : : multiple-inheritance typecast from a descendant into an ancestor of a formal
1612 : : parameter and thus can be described by an ancestor jump function and if so,
1613 : : write the appropriate function into JFUNC.
1614 : :
1615 : : Essentially we want to match the following pattern:
1616 : :
1617 : : if (obj_2(D) != 0B)
1618 : : goto <bb 3>;
1619 : : else
1620 : : goto <bb 4>;
1621 : :
1622 : : <bb 3>:
1623 : : iftmp.1_3 = &obj_2(D)->D.1762;
1624 : :
1625 : : <bb 4>:
1626 : : # iftmp.1_1 = PHI <iftmp.1_3(3), 0B(2)>
1627 : : D.1879_6 = middleman_1 (iftmp.1_1, i_5(D));
1628 : : return D.1879_6; */
1629 : :
1630 : : static void
1631 : 71697 : compute_complex_ancestor_jump_func (struct ipa_func_body_info *fbi,
1632 : : class ipa_node_params *info,
1633 : : struct ipa_jump_func *jfunc,
1634 : : gcall *call, gphi *phi)
1635 : : {
1636 : 71697 : HOST_WIDE_INT offset;
1637 : 71697 : gimple *assign;
1638 : 71697 : basic_block phi_bb, assign_bb, cond_bb;
1639 : 71697 : tree tmp, parm, expr, obj;
1640 : 71697 : int index, i;
1641 : :
1642 : 71697 : if (gimple_phi_num_args (phi) != 2)
1643 : 71683 : return;
1644 : :
1645 : 59904 : if (integer_zerop (PHI_ARG_DEF (phi, 1)))
1646 : 2946 : tmp = PHI_ARG_DEF (phi, 0);
1647 : 56958 : else if (integer_zerop (PHI_ARG_DEF (phi, 0)))
1648 : 9350 : tmp = PHI_ARG_DEF (phi, 1);
1649 : : else
1650 : : return;
1651 : 12296 : if (TREE_CODE (tmp) != SSA_NAME
1652 : 11037 : || SSA_NAME_IS_DEFAULT_DEF (tmp)
1653 : 10913 : || !POINTER_TYPE_P (TREE_TYPE (tmp))
1654 : 15357 : || TREE_CODE (TREE_TYPE (TREE_TYPE (tmp))) != RECORD_TYPE)
1655 : : return;
1656 : :
1657 : 1069 : assign = SSA_NAME_DEF_STMT (tmp);
1658 : 1069 : assign_bb = gimple_bb (assign);
1659 : 2138 : if (!single_pred_p (assign_bb))
1660 : : return;
1661 : 653 : expr = get_ancestor_addr_info (assign, &obj, &offset);
1662 : 653 : if (!expr)
1663 : : return;
1664 : 26 : parm = TREE_OPERAND (expr, 0);
1665 : 26 : index = ipa_get_param_decl_index (info, SSA_NAME_VAR (parm));
1666 : 26 : if (index < 0)
1667 : : return;
1668 : :
1669 : 26 : cond_bb = single_pred (assign_bb);
1670 : 52 : gcond *cond = safe_dyn_cast <gcond *> (*gsi_last_bb (cond_bb));
1671 : 26 : if (!cond
1672 : 26 : || gimple_cond_code (cond) != NE_EXPR
1673 : 26 : || gimple_cond_lhs (cond) != parm
1674 : 14 : || !integer_zerop (gimple_cond_rhs (cond)))
1675 : 12 : return;
1676 : :
1677 : 14 : phi_bb = gimple_bb (phi);
1678 : 42 : for (i = 0; i < 2; i++)
1679 : : {
1680 : 28 : basic_block pred = EDGE_PRED (phi_bb, i)->src;
1681 : 28 : if (pred != assign_bb && pred != cond_bb)
1682 : : return;
1683 : : }
1684 : :
1685 : 14 : ipa_set_ancestor_jf (jfunc, offset, index,
1686 : 14 : parm_ref_data_pass_through_p (fbi, index, call, parm),
1687 : : true);
1688 : : }
1689 : :
1690 : : /* Inspect the given TYPE and return true iff it has the same structure (the
1691 : : same number of fields of the same types) as a C++ member pointer. If
1692 : : METHOD_PTR and DELTA are non-NULL, store the trees representing the
1693 : : corresponding fields there. */
1694 : :
1695 : : static bool
1696 : 840 : type_like_member_ptr_p (tree type, tree *method_ptr, tree *delta)
1697 : : {
1698 : 840 : tree fld;
1699 : :
1700 : 840 : if (TREE_CODE (type) != RECORD_TYPE)
1701 : : return false;
1702 : :
1703 : 840 : fld = TYPE_FIELDS (type);
1704 : 840 : if (!fld || !POINTER_TYPE_P (TREE_TYPE (fld))
1705 : 840 : || TREE_CODE (TREE_TYPE (TREE_TYPE (fld))) != METHOD_TYPE
1706 : 1680 : || !tree_fits_uhwi_p (DECL_FIELD_OFFSET (fld)))
1707 : : return false;
1708 : :
1709 : 840 : if (method_ptr)
1710 : 840 : *method_ptr = fld;
1711 : :
1712 : 840 : fld = DECL_CHAIN (fld);
1713 : 840 : if (!fld || INTEGRAL_TYPE_P (fld)
1714 : 1680 : || !tree_fits_uhwi_p (DECL_FIELD_OFFSET (fld)))
1715 : : return false;
1716 : 840 : if (delta)
1717 : 840 : *delta = fld;
1718 : :
1719 : 840 : if (DECL_CHAIN (fld))
1720 : : return false;
1721 : :
1722 : : return true;
1723 : : }
1724 : :
1725 : : /* If RHS is an SSA_NAME and it is defined by a simple copy assign statement,
1726 : : return the rhs of its defining statement, and this statement is stored in
1727 : : *RHS_STMT. Otherwise return RHS as it is. */
1728 : :
1729 : : static inline tree
1730 : 90745 : get_ssa_def_if_simple_copy (tree rhs, gimple **rhs_stmt)
1731 : : {
1732 : 122048 : while (TREE_CODE (rhs) == SSA_NAME && !SSA_NAME_IS_DEFAULT_DEF (rhs))
1733 : : {
1734 : 65922 : gimple *def_stmt = SSA_NAME_DEF_STMT (rhs);
1735 : :
1736 : 65922 : if (gimple_assign_single_p (def_stmt))
1737 : 31303 : rhs = gimple_assign_rhs1 (def_stmt);
1738 : : else
1739 : : break;
1740 : 31303 : *rhs_stmt = def_stmt;
1741 : : }
1742 : 90745 : return rhs;
1743 : : }
1744 : :
1745 : : /* Simple linked list, describing contents of an aggregate before call. */
1746 : :
1747 : : struct ipa_known_agg_contents_list
1748 : : {
1749 : : /* Offset and size of the described part of the aggregate. */
1750 : : HOST_WIDE_INT offset, size;
1751 : :
1752 : : /* Type of the described part of the aggregate. */
1753 : : tree type;
1754 : :
1755 : : /* Known constant value or jump function data describing contents. */
1756 : : struct ipa_load_agg_data value;
1757 : :
1758 : : /* Pointer to the next structure in the list. */
1759 : : struct ipa_known_agg_contents_list *next;
1760 : : };
1761 : :
1762 : : /* Add an aggregate content item into a linked list of
1763 : : ipa_known_agg_contents_list structure, in which all elements
1764 : : are sorted ascendingly by offset. */
1765 : :
1766 : : static inline void
1767 : 2346873 : add_to_agg_contents_list (struct ipa_known_agg_contents_list **plist,
1768 : : struct ipa_known_agg_contents_list *item)
1769 : : {
1770 : 2346873 : struct ipa_known_agg_contents_list *list = *plist;
1771 : :
1772 : 4337362 : for (; list; list = list->next)
1773 : : {
1774 : 3366142 : if (list->offset >= item->offset)
1775 : : break;
1776 : :
1777 : 1990489 : plist = &list->next;
1778 : : }
1779 : :
1780 : 2346873 : item->next = list;
1781 : 2346873 : *plist = item;
1782 : : }
1783 : :
1784 : : /* Check whether a given aggregate content is clobbered by certain element in
1785 : : a linked list of ipa_known_agg_contents_list. */
1786 : :
1787 : : static inline bool
1788 : 918714 : clobber_by_agg_contents_list_p (struct ipa_known_agg_contents_list *list,
1789 : : struct ipa_known_agg_contents_list *item)
1790 : : {
1791 : 1978306 : for (; list; list = list->next)
1792 : : {
1793 : 1622341 : if (list->offset >= item->offset)
1794 : 550293 : return list->offset < item->offset + item->size;
1795 : :
1796 : 1072048 : if (list->offset + list->size > item->offset)
1797 : : return true;
1798 : : }
1799 : :
1800 : : return false;
1801 : : }
1802 : :
1803 : : /* Build aggregate jump function from LIST, assuming there are exactly
1804 : : VALUE_COUNT entries there and that offset of the passed argument
1805 : : is ARG_OFFSET and store it into JFUNC. */
1806 : :
1807 : : static void
1808 : 283620 : build_agg_jump_func_from_list (struct ipa_known_agg_contents_list *list,
1809 : : int value_count, HOST_WIDE_INT arg_offset,
1810 : : struct ipa_jump_func *jfunc)
1811 : : {
1812 : 283620 : vec_safe_reserve (jfunc->agg.items, value_count, true);
1813 : 1137519 : for (; list; list = list->next)
1814 : : {
1815 : 853899 : struct ipa_agg_jf_item item;
1816 : 853899 : tree operand = list->value.pass_through.operand;
1817 : :
1818 : 853899 : if (list->value.pass_through.formal_id >= 0)
1819 : : {
1820 : : /* Content value is derived from some formal paramerter. */
1821 : 65688 : if (list->value.offset >= 0)
1822 : 37650 : item.jftype = IPA_JF_LOAD_AGG;
1823 : : else
1824 : 28038 : item.jftype = IPA_JF_PASS_THROUGH;
1825 : :
1826 : 65688 : item.value.load_agg = list->value;
1827 : 65688 : if (operand)
1828 : 6537 : item.value.pass_through.operand
1829 : 6537 : = unshare_expr_without_location (operand);
1830 : : }
1831 : 788211 : else if (operand)
1832 : : {
1833 : : /* Content value is known constant. */
1834 : 788211 : item.jftype = IPA_JF_CONST;
1835 : 788211 : item.value.constant = unshare_expr_without_location (operand);
1836 : : }
1837 : : else
1838 : 0 : continue;
1839 : :
1840 : 853899 : item.type = list->type;
1841 : 853899 : gcc_assert (tree_to_shwi (TYPE_SIZE (list->type)) == list->size);
1842 : :
1843 : 853899 : item.offset = list->offset - arg_offset;
1844 : 853899 : gcc_assert ((item.offset % BITS_PER_UNIT) == 0);
1845 : :
1846 : 853899 : jfunc->agg.items->quick_push (item);
1847 : : }
1848 : 283620 : }
1849 : :
1850 : : /* Given an assignment statement STMT, try to collect information into
1851 : : AGG_VALUE that will be used to construct jump function for RHS of the
1852 : : assignment, from which content value of an aggregate part comes.
1853 : :
1854 : : Besides constant and simple pass-through jump functions, also try to
1855 : : identify whether it matches the following pattern that can be described by
1856 : : a load-value-from-aggregate jump function, which is a derivative of simple
1857 : : pass-through jump function.
1858 : :
1859 : : foo (int *p)
1860 : : {
1861 : : ...
1862 : :
1863 : : *(q_5 + 4) = *(p_3(D) + 28) op 1;
1864 : : bar (q_5);
1865 : : }
1866 : :
1867 : : Here IPA_LOAD_AGG_DATA data structure is informative enough to describe
1868 : : constant, simple pass-through and load-vale-from-aggregate. If value
1869 : : is constant, it will be kept in field OPERAND, and field FORMAL_ID is
1870 : : set to -1. For simple pass-through and load-value-from-aggregate, field
1871 : : FORMAL_ID specifies the related formal parameter index, and field
1872 : : OFFSET can be used to distinguish them, -1 means simple pass-through,
1873 : : otherwise means load-value-from-aggregate. */
1874 : :
1875 : : static void
1876 : 1494519 : analyze_agg_content_value (struct ipa_func_body_info *fbi,
1877 : : struct ipa_load_agg_data *agg_value,
1878 : : gimple *stmt)
1879 : : {
1880 : 1494519 : tree lhs = gimple_assign_lhs (stmt);
1881 : 1494519 : tree rhs1 = gimple_assign_rhs1 (stmt);
1882 : 1494519 : enum tree_code code;
1883 : 1494519 : int index = -1;
1884 : :
1885 : : /* Initialize jump function data for the aggregate part. */
1886 : 1494519 : memset (agg_value, 0, sizeof (*agg_value));
1887 : 1494519 : agg_value->pass_through.operation = NOP_EXPR;
1888 : 1494519 : agg_value->pass_through.formal_id = -1;
1889 : 1494519 : agg_value->offset = -1;
1890 : :
1891 : 1494519 : if (AGGREGATE_TYPE_P (TREE_TYPE (lhs)) /* TODO: Support aggregate type. */
1892 : 1307851 : || TREE_THIS_VOLATILE (lhs)
1893 : 1307399 : || TREE_CODE (lhs) == BIT_FIELD_REF
1894 : 1307391 : || contains_bitfld_component_ref_p (lhs))
1895 : 193911 : return;
1896 : :
1897 : : /* Skip SSA copies. */
1898 : 1542640 : while (gimple_assign_rhs_class (stmt) == GIMPLE_SINGLE_RHS)
1899 : : {
1900 : 1481472 : if (TREE_CODE (rhs1) != SSA_NAME || SSA_NAME_IS_DEFAULT_DEF (rhs1))
1901 : : break;
1902 : :
1903 : 332945 : stmt = SSA_NAME_DEF_STMT (rhs1);
1904 : 332945 : if (!is_gimple_assign (stmt))
1905 : : break;
1906 : :
1907 : 242032 : rhs1 = gimple_assign_rhs1 (stmt);
1908 : : }
1909 : :
1910 : 1300608 : if (gphi *phi = dyn_cast<gphi *> (stmt))
1911 : : {
1912 : : /* Also special case like the following (a is a formal parameter):
1913 : :
1914 : : _12 = *a_11(D).dim[0].stride;
1915 : : ...
1916 : : # iftmp.22_9 = PHI <_12(2), 1(3)>
1917 : : ...
1918 : : parm.6.dim[0].stride = iftmp.22_9;
1919 : : ...
1920 : : __x_MOD_foo (&parm.6, b_31(D));
1921 : :
1922 : : The aggregate function describing parm.6.dim[0].stride is encoded as a
1923 : : PASS-THROUGH jump function with ASSERT_EXPR operation whith operand 1
1924 : : (the constant from the PHI node). */
1925 : :
1926 : 31363 : if (gimple_phi_num_args (phi) != 2)
1927 : : return;
1928 : 25687 : tree arg0 = gimple_phi_arg_def (phi, 0);
1929 : 25687 : tree arg1 = gimple_phi_arg_def (phi, 1);
1930 : 25687 : tree operand;
1931 : :
1932 : 25687 : if (is_gimple_ip_invariant (arg1))
1933 : : {
1934 : : operand = arg1;
1935 : : rhs1 = arg0;
1936 : : }
1937 : 21656 : else if (is_gimple_ip_invariant (arg0))
1938 : : {
1939 : : operand = arg0;
1940 : : rhs1 = arg1;
1941 : : }
1942 : : else
1943 : : return;
1944 : :
1945 : 8018 : rhs1 = get_ssa_def_if_simple_copy (rhs1, &stmt);
1946 : 8018 : if (!is_gimple_assign (stmt))
1947 : : return;
1948 : :
1949 : 3273 : code = ASSERT_EXPR;
1950 : 3273 : agg_value->pass_through.operand = operand;
1951 : : }
1952 : 1269245 : else if (is_gimple_assign (stmt))
1953 : : {
1954 : 1209695 : code = gimple_assign_rhs_code (stmt);
1955 : 1209695 : switch (gimple_assign_rhs_class (stmt))
1956 : : {
1957 : 1148527 : case GIMPLE_SINGLE_RHS:
1958 : 1148527 : if (is_gimple_ip_invariant (rhs1))
1959 : : {
1960 : 851698 : agg_value->pass_through.operand = rhs1;
1961 : 851698 : return;
1962 : : }
1963 : : code = NOP_EXPR;
1964 : : break;
1965 : :
1966 : 20012 : case GIMPLE_UNARY_RHS:
1967 : : /* NOTE: A GIMPLE_UNARY_RHS operation might not be tcc_unary
1968 : : (truth_not_expr is example), GIMPLE_BINARY_RHS does not imply
1969 : : tcc_binary, this subtleness is somewhat misleading.
1970 : :
1971 : : Since tcc_unary is widely used in IPA-CP code to check an operation
1972 : : with one operand, here we only allow tc_unary operation to avoid
1973 : : possible problem. Then we can use (opclass == tc_unary) or not to
1974 : : distinguish unary and binary. */
1975 : 20012 : if (TREE_CODE_CLASS (code) != tcc_unary || CONVERT_EXPR_CODE_P (code))
1976 : : return;
1977 : :
1978 : 1551 : rhs1 = get_ssa_def_if_simple_copy (rhs1, &stmt);
1979 : 1551 : break;
1980 : :
1981 : 40588 : case GIMPLE_BINARY_RHS:
1982 : 40588 : {
1983 : 40588 : gimple *rhs1_stmt = stmt;
1984 : 40588 : gimple *rhs2_stmt = stmt;
1985 : 40588 : tree rhs2 = gimple_assign_rhs2 (stmt);
1986 : :
1987 : 40588 : rhs1 = get_ssa_def_if_simple_copy (rhs1, &rhs1_stmt);
1988 : 40588 : rhs2 = get_ssa_def_if_simple_copy (rhs2, &rhs2_stmt);
1989 : :
1990 : 40588 : if (is_gimple_ip_invariant (rhs2))
1991 : : {
1992 : 19516 : agg_value->pass_through.operand = rhs2;
1993 : 19516 : stmt = rhs1_stmt;
1994 : : }
1995 : 21072 : else if (is_gimple_ip_invariant (rhs1))
1996 : : {
1997 : 2267 : if (TREE_CODE_CLASS (code) == tcc_comparison)
1998 : 0 : code = swap_tree_comparison (code);
1999 : 2267 : else if (!commutative_tree_code (code))
2000 : 21072 : return;
2001 : :
2002 : 0 : agg_value->pass_through.operand = rhs1;
2003 : 0 : stmt = rhs2_stmt;
2004 : 0 : rhs1 = rhs2;
2005 : : }
2006 : : else
2007 : : return;
2008 : :
2009 : 19516 : if (TREE_CODE_CLASS (code) != tcc_comparison
2010 : 38482 : && !useless_type_conversion_p (TREE_TYPE (lhs),
2011 : 18966 : TREE_TYPE (rhs1)))
2012 : : return;
2013 : : }
2014 : 19516 : break;
2015 : :
2016 : : default:
2017 : : return;
2018 : : }
2019 : : }
2020 : : else
2021 : : return;
2022 : :
2023 : 321169 : if (TREE_CODE (rhs1) != SSA_NAME)
2024 : 282475 : index = load_from_unmodified_param_or_agg (fbi, fbi->info, stmt,
2025 : : &agg_value->offset,
2026 : : &agg_value->by_ref);
2027 : 38694 : else if (SSA_NAME_IS_DEFAULT_DEF (rhs1))
2028 : 29354 : index = ipa_get_param_decl_index (fbi->info, SSA_NAME_VAR (rhs1));
2029 : :
2030 : 311829 : if (index >= 0)
2031 : : {
2032 : 67016 : if (agg_value->offset >= 0)
2033 : 38925 : agg_value->type = TREE_TYPE (rhs1);
2034 : 67016 : agg_value->pass_through.formal_id = index;
2035 : 67016 : agg_value->pass_through.operation = code;
2036 : : }
2037 : : else
2038 : 254153 : agg_value->pass_through.operand = NULL_TREE;
2039 : : }
2040 : :
2041 : : /* If STMT is a memory store to the object whose address is BASE, extract
2042 : : information (offset, size, and value) into CONTENT, and return true,
2043 : : otherwise we conservatively assume the whole object is modified with
2044 : : unknown content, and return false. CHECK_REF means that access to object
2045 : : is expected to be in form of MEM_REF expression. */
2046 : :
2047 : : static bool
2048 : 2496012 : extract_mem_content (struct ipa_func_body_info *fbi,
2049 : : gimple *stmt, tree base, bool check_ref,
2050 : : struct ipa_known_agg_contents_list *content)
2051 : : {
2052 : 2496012 : HOST_WIDE_INT lhs_offset, lhs_size;
2053 : 2496012 : bool reverse;
2054 : :
2055 : 2496012 : if (!is_gimple_assign (stmt))
2056 : : return false;
2057 : :
2058 : 1605566 : tree lhs = gimple_assign_lhs (stmt);
2059 : 1605566 : tree lhs_base = get_ref_base_and_extent_hwi (lhs, &lhs_offset, &lhs_size,
2060 : : &reverse);
2061 : 1605566 : if (!lhs_base)
2062 : : return false;
2063 : :
2064 : 1603954 : if (check_ref)
2065 : : {
2066 : 146266 : if (TREE_CODE (lhs_base) != MEM_REF
2067 : 122025 : || TREE_OPERAND (lhs_base, 0) != base
2068 : 191025 : || !integer_zerop (TREE_OPERAND (lhs_base, 1)))
2069 : 106134 : return false;
2070 : : }
2071 : 1457688 : else if (lhs_base != base)
2072 : : return false;
2073 : :
2074 : 1494519 : content->offset = lhs_offset;
2075 : 1494519 : content->size = lhs_size;
2076 : 1494519 : content->type = TREE_TYPE (lhs);
2077 : 1494519 : content->next = NULL;
2078 : :
2079 : 1494519 : analyze_agg_content_value (fbi, &content->value, stmt);
2080 : 1494519 : return true;
2081 : : }
2082 : :
2083 : : /* Traverse statements from CALL backwards, scanning whether an aggregate given
2084 : : in ARG is filled in constants or values that are derived from caller's
2085 : : formal parameter in the way described by some kinds of jump functions. FBI
2086 : : is the context of the caller function for interprocedural analysis. ARG can
2087 : : either be an aggregate expression or a pointer to an aggregate. ARG_TYPE is
2088 : : the type of the aggregate, JFUNC is the jump function for the aggregate. */
2089 : :
2090 : : static void
2091 : 3022426 : determine_known_aggregate_parts (struct ipa_func_body_info *fbi,
2092 : : gcall *call, tree arg,
2093 : : tree arg_type,
2094 : : struct ipa_jump_func *jfunc)
2095 : : {
2096 : 3022426 : struct ipa_known_agg_contents_list *list = NULL, *all_list = NULL;
2097 : 3022426 : bitmap visited = NULL;
2098 : 3022426 : int item_count = 0, value_count = 0;
2099 : 3022426 : HOST_WIDE_INT arg_offset, arg_size;
2100 : 3022426 : tree arg_base;
2101 : 3022426 : bool check_ref, by_ref;
2102 : 3022426 : ao_ref r;
2103 : 3022426 : int max_agg_items = opt_for_fn (fbi->node->decl, param_ipa_max_agg_items);
2104 : :
2105 : 3022426 : if (max_agg_items == 0)
2106 : 754147 : return;
2107 : :
2108 : : /* The function operates in three stages. First, we prepare check_ref, r,
2109 : : arg_base and arg_offset based on what is actually passed as an actual
2110 : : argument. */
2111 : :
2112 : 3022426 : if (POINTER_TYPE_P (arg_type))
2113 : : {
2114 : 2712251 : by_ref = true;
2115 : 2712251 : if (TREE_CODE (arg) == SSA_NAME)
2116 : : {
2117 : 1024444 : tree type_size;
2118 : 1024444 : if (!tree_fits_uhwi_p (TYPE_SIZE (TREE_TYPE (arg_type)))
2119 : 1024444 : || !POINTER_TYPE_P (TREE_TYPE (arg)))
2120 : : return;
2121 : 744204 : check_ref = true;
2122 : 744204 : arg_base = arg;
2123 : 744204 : arg_offset = 0;
2124 : 744204 : type_size = TYPE_SIZE (TREE_TYPE (arg_type));
2125 : 744204 : arg_size = tree_to_uhwi (type_size);
2126 : 744204 : ao_ref_init_from_ptr_and_size (&r, arg_base, NULL_TREE);
2127 : : }
2128 : 1687807 : else if (TREE_CODE (arg) == ADDR_EXPR)
2129 : : {
2130 : 1650262 : bool reverse;
2131 : :
2132 : 1650262 : arg = TREE_OPERAND (arg, 0);
2133 : 1650262 : arg_base = get_ref_base_and_extent_hwi (arg, &arg_offset,
2134 : : &arg_size, &reverse);
2135 : 1650262 : if (!arg_base)
2136 : 436290 : return;
2137 : 1649055 : if (DECL_P (arg_base))
2138 : : {
2139 : 1213972 : check_ref = false;
2140 : 1213972 : ao_ref_init (&r, arg_base);
2141 : : }
2142 : : else
2143 : : return;
2144 : : }
2145 : : else
2146 : : return;
2147 : : }
2148 : : else
2149 : : {
2150 : 310175 : bool reverse;
2151 : :
2152 : 310175 : gcc_checking_assert (AGGREGATE_TYPE_P (TREE_TYPE (arg)));
2153 : :
2154 : 310175 : by_ref = false;
2155 : 310175 : check_ref = false;
2156 : 310175 : arg_base = get_ref_base_and_extent_hwi (arg, &arg_offset,
2157 : : &arg_size, &reverse);
2158 : 310175 : if (!arg_base)
2159 : 72 : return;
2160 : :
2161 : 310103 : ao_ref_init (&r, arg);
2162 : : }
2163 : :
2164 : : /* Second stage traverses virtual SSA web backwards starting from the call
2165 : : statement, only looks at individual dominating virtual operand (its
2166 : : definition dominates the call), as long as it is confident that content
2167 : : of the aggregate is affected by definition of the virtual operand, it
2168 : : builds a sorted linked list of ipa_agg_jf_list describing that. */
2169 : :
2170 : 2268279 : for (tree dom_vuse = gimple_vuse (call);
2171 : 19955182 : dom_vuse && fbi->aa_walk_budget > 0;)
2172 : : {
2173 : 19879859 : gimple *stmt = SSA_NAME_DEF_STMT (dom_vuse);
2174 : :
2175 : 19879859 : if (gimple_code (stmt) == GIMPLE_PHI)
2176 : : {
2177 : 2125362 : dom_vuse = get_continuation_for_phi (stmt, &r, true,
2178 : 1062681 : fbi->aa_walk_budget,
2179 : : &visited, false, NULL, NULL);
2180 : 1062681 : continue;
2181 : : }
2182 : :
2183 : 18817178 : fbi->aa_walk_budget--;
2184 : 18817178 : if (stmt_may_clobber_ref_p_1 (stmt, &r))
2185 : : {
2186 : 2496012 : struct ipa_known_agg_contents_list *content
2187 : 2496012 : = XALLOCA (struct ipa_known_agg_contents_list);
2188 : :
2189 : 2496012 : if (!extract_mem_content (fbi, stmt, arg_base, check_ref, content))
2190 : : break;
2191 : :
2192 : : /* Now we get a dominating virtual operand, and need to check
2193 : : whether its value is clobbered any other dominating one. */
2194 : 1494519 : if ((content->value.pass_through.formal_id >= 0
2195 : 1427503 : || content->value.pass_through.operand)
2196 : 918714 : && !clobber_by_agg_contents_list_p (all_list, content)
2197 : : /* Since IPA-CP stores results with unsigned int offsets, we can
2198 : : discard those which would not fit now before we stream them to
2199 : : WPA. */
2200 : 2348556 : && (content->offset + content->size - arg_offset
2201 : : <= (HOST_WIDE_INT) UINT_MAX * BITS_PER_UNIT))
2202 : : {
2203 : 853899 : struct ipa_known_agg_contents_list *copy
2204 : 853899 : = XALLOCA (struct ipa_known_agg_contents_list);
2205 : :
2206 : : /* Add to the list consisting of only dominating virtual
2207 : : operands, whose definitions can finally reach the call. */
2208 : 853899 : add_to_agg_contents_list (&list, (*copy = *content, copy));
2209 : :
2210 : 853899 : if (++value_count == max_agg_items)
2211 : : break;
2212 : : }
2213 : :
2214 : : /* Add to the list consisting of all dominating virtual operands. */
2215 : 1492974 : add_to_agg_contents_list (&all_list, content);
2216 : :
2217 : 1492974 : if (++item_count == 2 * max_agg_items)
2218 : : break;
2219 : : }
2220 : 38956558 : dom_vuse = gimple_vuse (stmt);
2221 : : }
2222 : :
2223 : 2268279 : if (visited)
2224 : 559567 : BITMAP_FREE (visited);
2225 : :
2226 : : /* Third stage just goes over the list and creates an appropriate vector of
2227 : : ipa_agg_jf_item structures out of it, of course only if there are
2228 : : any meaningful items to begin with. */
2229 : :
2230 : 2268279 : if (value_count)
2231 : : {
2232 : 283620 : jfunc->agg.by_ref = by_ref;
2233 : 283620 : build_agg_jump_func_from_list (list, value_count, arg_offset, jfunc);
2234 : : }
2235 : : }
2236 : :
2237 : :
2238 : : /* Return the Ith param type of callee associated with call graph
2239 : : edge E. */
2240 : :
2241 : : tree
2242 : 5651583 : ipa_get_callee_param_type (struct cgraph_edge *e, int i)
2243 : : {
2244 : 5651583 : int n;
2245 : 5651583 : tree type = (e->callee
2246 : 5651583 : ? TREE_TYPE (e->callee->decl)
2247 : 269397 : : gimple_call_fntype (e->call_stmt));
2248 : 5651583 : tree t = TYPE_ARG_TYPES (type);
2249 : :
2250 : 11512153 : for (n = 0; n < i; n++)
2251 : : {
2252 : 6111182 : if (!t)
2253 : : break;
2254 : 5860570 : t = TREE_CHAIN (t);
2255 : : }
2256 : 5651583 : if (t && t != void_list_node)
2257 : 5311830 : return TREE_VALUE (t);
2258 : 339753 : if (!e->callee)
2259 : : return NULL;
2260 : 320530 : t = DECL_ARGUMENTS (e->callee->decl);
2261 : 847131 : for (n = 0; n < i; n++)
2262 : : {
2263 : 802490 : if (!t)
2264 : : return NULL;
2265 : 526601 : t = TREE_CHAIN (t);
2266 : : }
2267 : 44641 : if (t)
2268 : 2381 : return TREE_TYPE (t);
2269 : : return NULL;
2270 : : }
2271 : :
2272 : : /* Return a pointer to an ipa_vr just like TMP, but either find it in
2273 : : ipa_vr_hash_table or allocate it in GC memory. */
2274 : :
2275 : : static ipa_vr *
2276 : 4655437 : ipa_get_value_range (const vrange &tmp)
2277 : : {
2278 : 4655437 : inchash::hash hstate;
2279 : 4655437 : inchash::add_vrange (tmp, hstate);
2280 : 4655437 : hashval_t hash = hstate.end ();
2281 : 4655437 : ipa_vr **slot = ipa_vr_hash_table->find_slot_with_hash (&tmp, hash, INSERT);
2282 : 4655437 : if (*slot)
2283 : : return *slot;
2284 : :
2285 : 551833 : ipa_vr *vr = new (ggc_alloc<ipa_vr> ()) ipa_vr (tmp);
2286 : 551833 : *slot = vr;
2287 : 551833 : return vr;
2288 : : }
2289 : :
2290 : : /* Assign to JF a pointer to a range just like TMP but either fetch a
2291 : : copy from ipa_vr_hash_table or allocate a new on in GC memory. */
2292 : :
2293 : : static void
2294 : 4005109 : ipa_set_jfunc_vr (ipa_jump_func *jf, const vrange &tmp)
2295 : : {
2296 : 2712955 : jf->m_vr = ipa_get_value_range (tmp);
2297 : 2463435 : }
2298 : :
2299 : : static void
2300 : 393667 : ipa_set_jfunc_vr (ipa_jump_func *jf, const ipa_vr &vr)
2301 : : {
2302 : 393667 : value_range tmp;
2303 : 393667 : vr.get_vrange (tmp);
2304 : 393667 : ipa_set_jfunc_vr (jf, tmp);
2305 : 393667 : }
2306 : :
2307 : : /* Compute jump function for all arguments of callsite CS and insert the
2308 : : information in the jump_functions array in the ipa_edge_args corresponding
2309 : : to this callsite. */
2310 : :
2311 : : static void
2312 : 2686442 : ipa_compute_jump_functions_for_edge (struct ipa_func_body_info *fbi,
2313 : : struct cgraph_edge *cs)
2314 : : {
2315 : 2686442 : ipa_node_params *info = ipa_node_params_sum->get (cs->caller);
2316 : 2686442 : ipa_edge_args *args = ipa_edge_args_sum->get_create (cs);
2317 : 2686442 : gcall *call = cs->call_stmt;
2318 : 2686442 : int n, arg_num = gimple_call_num_args (call);
2319 : 2686442 : bool useful_context = false;
2320 : :
2321 : 2686442 : if (arg_num == 0 || args->jump_functions)
2322 : : return;
2323 : 2423870 : vec_safe_grow_cleared (args->jump_functions, arg_num, true);
2324 : 2423870 : if (flag_devirtualize)
2325 : 2256719 : vec_safe_grow_cleared (args->polymorphic_call_contexts, arg_num, true);
2326 : :
2327 : 2423870 : if (gimple_call_internal_p (call))
2328 : : return;
2329 : 2423870 : if (ipa_func_spec_opts_forbid_analysis_p (cs->caller))
2330 : : return;
2331 : :
2332 : 8075453 : for (n = 0; n < arg_num; n++)
2333 : : {
2334 : 5651583 : struct ipa_jump_func *jfunc = ipa_get_ith_jump_func (args, n);
2335 : 5651583 : tree arg = gimple_call_arg (call, n);
2336 : 5651583 : tree param_type = ipa_get_callee_param_type (cs, n);
2337 : 5651583 : if (flag_devirtualize && POINTER_TYPE_P (TREE_TYPE (arg)))
2338 : : {
2339 : 2875042 : tree instance;
2340 : 2875042 : class ipa_polymorphic_call_context context (cs->caller->decl,
2341 : 2875042 : arg, cs->call_stmt,
2342 : 2875042 : &instance);
2343 : 2875042 : context.get_dynamic_type (instance, arg, NULL, cs->call_stmt,
2344 : : &fbi->aa_walk_budget);
2345 : 2875042 : *ipa_get_ith_polymorhic_call_context (args, n) = context;
2346 : 5750084 : if (!context.useless_p ())
2347 : : useful_context = true;
2348 : : }
2349 : :
2350 : 5651583 : value_range vr (TREE_TYPE (arg));
2351 : 5651583 : if (POINTER_TYPE_P (TREE_TYPE (arg)))
2352 : : {
2353 : 3120922 : bool addr_nonzero = false;
2354 : 3120922 : bool strict_overflow = false;
2355 : :
2356 : 3120922 : if (TREE_CODE (arg) == SSA_NAME
2357 : 1417199 : && param_type
2358 : 2815464 : && get_range_query (cfun)->range_of_expr (vr, arg, cs->call_stmt)
2359 : 4528654 : && vr.nonzero_p ())
2360 : : addr_nonzero = true;
2361 : 2509100 : else if (tree_single_nonzero_warnv_p (arg, &strict_overflow))
2362 : : addr_nonzero = true;
2363 : :
2364 : : if (addr_nonzero)
2365 : 2227503 : vr.set_nonzero (TREE_TYPE (arg));
2366 : :
2367 : 3120922 : unsigned HOST_WIDE_INT bitpos;
2368 : 3120922 : unsigned align, prec = TYPE_PRECISION (TREE_TYPE (arg));
2369 : :
2370 : 3120922 : get_pointer_alignment_1 (arg, &align, &bitpos);
2371 : :
2372 : 3120922 : if (align > BITS_PER_UNIT
2373 : 3120922 : && opt_for_fn (cs->caller->decl, flag_ipa_bit_cp))
2374 : : {
2375 : 1148007 : wide_int mask
2376 : 2296014 : = wi::bit_and_not (wi::mask (prec, false, prec),
2377 : 1148007 : wide_int::from (align / BITS_PER_UNIT - 1,
2378 : 1148007 : prec, UNSIGNED));
2379 : 1148007 : wide_int value = wide_int::from (bitpos / BITS_PER_UNIT, prec,
2380 : 1148007 : UNSIGNED);
2381 : 1148007 : irange_bitmask bm (value, mask);
2382 : 1148007 : if (!addr_nonzero)
2383 : 91785 : vr.set_varying (TREE_TYPE (arg));
2384 : 1148007 : vr.update_bitmask (bm);
2385 : 1148007 : ipa_set_jfunc_vr (jfunc, vr);
2386 : 1148007 : }
2387 : 1972915 : else if (addr_nonzero)
2388 : 1171281 : ipa_set_jfunc_vr (jfunc, vr);
2389 : : else
2390 : 801634 : gcc_assert (!jfunc->m_vr);
2391 : : }
2392 : : else
2393 : : {
2394 : 2530661 : if (param_type
2395 : 2224120 : && ipa_vr_supported_type_p (TREE_TYPE (arg))
2396 : 2530779 : && ipa_vr_supported_type_p (param_type)
2397 : 3308292 : && get_range_query (cfun)->range_of_expr (vr, arg, cs->call_stmt)
2398 : 4184807 : && !vr.undefined_p ())
2399 : : {
2400 : 1654028 : value_range resvr (vr);
2401 : 1654028 : range_cast (resvr, param_type);
2402 : 1654028 : if (!resvr.undefined_p () && !resvr.varying_p ())
2403 : 1292154 : ipa_set_jfunc_vr (jfunc, resvr);
2404 : : else
2405 : 361874 : gcc_assert (!jfunc->m_vr);
2406 : 1654028 : }
2407 : : else
2408 : 876633 : gcc_assert (!jfunc->m_vr);
2409 : : }
2410 : :
2411 : 5651583 : if (is_gimple_ip_invariant (arg)
2412 : 5651583 : || (VAR_P (arg)
2413 : 267425 : && is_global_var (arg)
2414 : 8995 : && TREE_READONLY (arg)))
2415 : 2136023 : ipa_set_jf_constant (jfunc, arg, cs);
2416 : 3515560 : else if (!is_gimple_reg_type (TREE_TYPE (arg))
2417 : 3515560 : && TREE_CODE (arg) == PARM_DECL)
2418 : : {
2419 : 72889 : int index = ipa_get_param_decl_index (info, arg);
2420 : :
2421 : 72889 : gcc_assert (index >=0);
2422 : : /* Aggregate passed by value, check for pass-through, otherwise we
2423 : : will attempt to fill in aggregate contents later in this
2424 : : for cycle. */
2425 : 72889 : if (parm_preserved_before_stmt_p (fbi, index, call, arg))
2426 : : {
2427 : 60086 : ipa_set_jf_simple_pass_through (jfunc, index, false);
2428 : 60086 : continue;
2429 : : }
2430 : : }
2431 : 3442671 : else if (TREE_CODE (arg) == SSA_NAME)
2432 : : {
2433 : 2323624 : if (SSA_NAME_IS_DEFAULT_DEF (arg))
2434 : : {
2435 : 928383 : int index = ipa_get_param_decl_index (info, SSA_NAME_VAR (arg));
2436 : 928383 : if (index >= 0)
2437 : : {
2438 : 920353 : bool agg_p;
2439 : 920353 : agg_p = parm_ref_data_pass_through_p (fbi, index, call, arg);
2440 : 920353 : ipa_set_jf_simple_pass_through (jfunc, index, agg_p);
2441 : : }
2442 : : }
2443 : : else
2444 : : {
2445 : 1395241 : gimple *stmt = SSA_NAME_DEF_STMT (arg);
2446 : 1395241 : if (is_gimple_assign (stmt))
2447 : 1158397 : compute_complex_assign_jump_func (fbi, info, jfunc,
2448 : : call, stmt, arg, param_type);
2449 : 236844 : else if (gimple_code (stmt) == GIMPLE_PHI)
2450 : 71697 : compute_complex_ancestor_jump_func (fbi, info, jfunc,
2451 : : call,
2452 : : as_a <gphi *> (stmt));
2453 : : }
2454 : : }
2455 : :
2456 : : /* If ARG is pointer, we cannot use its type to determine the type of aggregate
2457 : : passed (because type conversions are ignored in gimple). Usually we can
2458 : : safely get type from function declaration, but in case of K&R prototypes or
2459 : : variadic functions we can try our luck with type of the pointer passed.
2460 : : TODO: Since we look for actual initialization of the memory object, we may better
2461 : : work out the type based on the memory stores we find. */
2462 : 5591497 : if (!param_type)
2463 : 337370 : param_type = TREE_TYPE (arg);
2464 : :
2465 : 5591497 : if ((jfunc->type != IPA_JF_PASS_THROUGH
2466 : 942474 : || !ipa_get_jf_pass_through_agg_preserved (jfunc))
2467 : 5240727 : && (jfunc->type != IPA_JF_ANCESTOR
2468 : 141332 : || !ipa_get_jf_ancestor_agg_preserved (jfunc))
2469 : 10788632 : && (AGGREGATE_TYPE_P (TREE_TYPE (arg))
2470 : 4886896 : || POINTER_TYPE_P (param_type)))
2471 : 3022426 : determine_known_aggregate_parts (fbi, call, arg, param_type, jfunc);
2472 : 5651583 : }
2473 : 2423870 : if (!useful_context)
2474 : 4208539 : vec_free (args->polymorphic_call_contexts);
2475 : : }
2476 : :
2477 : : /* Compute jump functions for all edges - both direct and indirect - outgoing
2478 : : from BB. */
2479 : :
2480 : : static void
2481 : 10249200 : ipa_compute_jump_functions_for_bb (struct ipa_func_body_info *fbi, basic_block bb)
2482 : : {
2483 : 10249200 : struct ipa_bb_info *bi = ipa_get_bb_info (fbi, bb);
2484 : 10249200 : int i;
2485 : 10249200 : struct cgraph_edge *cs;
2486 : :
2487 : 19090701 : FOR_EACH_VEC_ELT_REVERSE (bi->cg_edges, i, cs)
2488 : : {
2489 : 5117746 : struct cgraph_node *callee = cs->callee;
2490 : :
2491 : 5117746 : if (callee)
2492 : : {
2493 : 4981003 : callee = callee->ultimate_alias_target ();
2494 : : /* We do not need to bother analyzing calls to unknown functions
2495 : : unless they may become known during lto/whopr. */
2496 : 3286755 : if (!callee->definition && !flag_lto
2497 : 8267758 : && !gimple_call_fnspec (cs->call_stmt).known_p ())
2498 : 2431304 : continue;
2499 : : }
2500 : 2686442 : ipa_compute_jump_functions_for_edge (fbi, cs);
2501 : : }
2502 : 10249200 : }
2503 : :
2504 : : /* If STMT looks like a statement loading a value from a member pointer formal
2505 : : parameter, return that parameter and store the offset of the field to
2506 : : *OFFSET_P, if it is non-NULL. Otherwise return NULL (but *OFFSET_P still
2507 : : might be clobbered). If USE_DELTA, then we look for a use of the delta
2508 : : field rather than the pfn. */
2509 : :
2510 : : static tree
2511 : 2118 : ipa_get_stmt_member_ptr_load_param (gimple *stmt, bool use_delta,
2512 : : HOST_WIDE_INT *offset_p)
2513 : : {
2514 : 2118 : tree rhs, fld, ptr_field, delta_field;
2515 : 2118 : tree ref_field = NULL_TREE;
2516 : 2118 : tree ref_offset = NULL_TREE;
2517 : :
2518 : 2118 : if (!gimple_assign_single_p (stmt))
2519 : : return NULL_TREE;
2520 : :
2521 : 2118 : rhs = gimple_assign_rhs1 (stmt);
2522 : 2118 : if (TREE_CODE (rhs) == COMPONENT_REF)
2523 : : {
2524 : 1269 : ref_field = TREE_OPERAND (rhs, 1);
2525 : 1269 : rhs = TREE_OPERAND (rhs, 0);
2526 : : }
2527 : :
2528 : 2118 : if (TREE_CODE (rhs) == MEM_REF)
2529 : : {
2530 : 1421 : ref_offset = TREE_OPERAND (rhs, 1);
2531 : 1421 : if (ref_field && integer_nonzerop (ref_offset))
2532 : : return NULL_TREE;
2533 : : }
2534 : 697 : else if (!ref_field)
2535 : : return NULL_TREE;
2536 : :
2537 : 2118 : if (TREE_CODE (rhs) == MEM_REF
2538 : 1421 : && TREE_CODE (TREE_OPERAND (rhs, 0)) == SSA_NAME
2539 : 3539 : && SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (rhs, 0)))
2540 : : {
2541 : 570 : rhs = TREE_OPERAND (rhs, 0);
2542 : 570 : if (TREE_CODE (SSA_NAME_VAR (rhs)) != PARM_DECL
2543 : 570 : || !type_like_member_ptr_p (TREE_TYPE (TREE_TYPE (rhs)), &ptr_field,
2544 : : &delta_field))
2545 : 0 : return NULL_TREE;
2546 : : }
2547 : : else
2548 : : {
2549 : 1548 : if (TREE_CODE (rhs) == MEM_REF
2550 : 1548 : && TREE_CODE (TREE_OPERAND (rhs, 0)) == ADDR_EXPR)
2551 : 0 : rhs = TREE_OPERAND (TREE_OPERAND (rhs, 0), 0);
2552 : 1548 : if (TREE_CODE (rhs) != PARM_DECL
2553 : 1548 : || !type_like_member_ptr_p (TREE_TYPE (rhs), &ptr_field,
2554 : : &delta_field))
2555 : 1278 : return NULL_TREE;
2556 : : }
2557 : :
2558 : 840 : if (use_delta)
2559 : 0 : fld = delta_field;
2560 : : else
2561 : 840 : fld = ptr_field;
2562 : :
2563 : 840 : if (ref_field)
2564 : : {
2565 : 840 : if (ref_field != fld)
2566 : : return NULL_TREE;
2567 : : }
2568 : 0 : else if (!tree_int_cst_equal (byte_position (fld), ref_offset))
2569 : : return NULL_TREE;
2570 : :
2571 : 840 : if (offset_p)
2572 : 420 : *offset_p = int_bit_position (fld);
2573 : : return rhs;
2574 : : }
2575 : :
2576 : : /* Returns true iff T is an SSA_NAME defined by a statement. */
2577 : :
2578 : : static bool
2579 : 2958 : ipa_is_ssa_with_stmt_def (tree t)
2580 : : {
2581 : 2958 : if (TREE_CODE (t) == SSA_NAME
2582 : 2958 : && !SSA_NAME_IS_DEFAULT_DEF (t))
2583 : : return true;
2584 : : else
2585 : 0 : return false;
2586 : : }
2587 : :
2588 : : /* Find the indirect call graph edge corresponding to STMT and mark it as a
2589 : : call to a parameter number PARAM_INDEX. NODE is the caller. Return the
2590 : : indirect call graph edge.
2591 : : If POLYMORPHIC is true record is as a destination of polymorphic call. */
2592 : :
2593 : : static struct cgraph_edge *
2594 : 15943 : ipa_note_param_call (struct cgraph_node *node, int param_index,
2595 : : gcall *stmt, bool polymorphic)
2596 : : {
2597 : 15943 : struct cgraph_edge *cs;
2598 : :
2599 : 15943 : cs = node->get_edge (stmt);
2600 : 15943 : cs->indirect_info->param_index = param_index;
2601 : 15943 : cs->indirect_info->agg_contents = 0;
2602 : 15943 : cs->indirect_info->member_ptr = 0;
2603 : 15943 : cs->indirect_info->guaranteed_unmodified = 0;
2604 : 15943 : ipa_node_params *info = ipa_node_params_sum->get (node);
2605 : 15943 : ipa_set_param_used_by_indirect_call (info, param_index, true);
2606 : 15943 : if (cs->indirect_info->polymorphic || polymorphic)
2607 : 9840 : ipa_set_param_used_by_polymorphic_call (info, param_index, true);
2608 : 15943 : return cs;
2609 : : }
2610 : :
2611 : : /* Analyze the CALL and examine uses of formal parameters of the caller NODE
2612 : : (described by INFO). PARMS_AINFO is a pointer to a vector containing
2613 : : intermediate information about each formal parameter. Currently it checks
2614 : : whether the call calls a pointer that is a formal parameter and if so, the
2615 : : parameter is marked with the called flag and an indirect call graph edge
2616 : : describing the call is created. This is very simple for ordinary pointers
2617 : : represented in SSA but not-so-nice when it comes to member pointers. The
2618 : : ugly part of this function does nothing more than trying to match the
2619 : : pattern of such a call. Look up the documentation of macro
2620 : : TARGET_PTRMEMFUNC_VBIT_LOCATION for details. An example of such a pattern
2621 : : is the gimple dump below, the call is on the last line:
2622 : :
2623 : : <bb 2>:
2624 : : f$__delta_5 = f.__delta;
2625 : : f$__pfn_24 = f.__pfn;
2626 : :
2627 : : or
2628 : : <bb 2>:
2629 : : f$__delta_5 = MEM[(struct *)&f];
2630 : : f$__pfn_24 = MEM[(struct *)&f + 4B];
2631 : :
2632 : : and a few lines below:
2633 : :
2634 : : <bb 5>
2635 : : D.2496_3 = (int) f$__pfn_24;
2636 : : D.2497_4 = D.2496_3 & 1;
2637 : : if (D.2497_4 != 0)
2638 : : goto <bb 3>;
2639 : : else
2640 : : goto <bb 4>;
2641 : :
2642 : : <bb 6>:
2643 : : D.2500_7 = (unsigned int) f$__delta_5;
2644 : : D.2501_8 = &S + D.2500_7;
2645 : : D.2502_9 = (int (*__vtbl_ptr_type) (void) * *) D.2501_8;
2646 : : D.2503_10 = *D.2502_9;
2647 : : D.2504_12 = f$__pfn_24 + -1;
2648 : : D.2505_13 = (unsigned int) D.2504_12;
2649 : : D.2506_14 = D.2503_10 + D.2505_13;
2650 : : D.2507_15 = *D.2506_14;
2651 : : iftmp.11_16 = (String:: *) D.2507_15;
2652 : :
2653 : : <bb 7>:
2654 : : # iftmp.11_1 = PHI <iftmp.11_16(3), f$__pfn_24(2)>
2655 : : D.2500_19 = (unsigned int) f$__delta_5;
2656 : : D.2508_20 = &S + D.2500_19;
2657 : : D.2493_21 = iftmp.11_1 (D.2508_20, 4);
2658 : :
2659 : : Such patterns are results of simple calls to a member pointer:
2660 : :
2661 : : int doprinting (int (MyString::* f)(int) const)
2662 : : {
2663 : : MyString S ("somestring");
2664 : :
2665 : : return (S.*f)(4);
2666 : : }
2667 : :
2668 : : Moreover, the function also looks for called pointers loaded from aggregates
2669 : : passed by value or reference. */
2670 : :
2671 : : static void
2672 : 111551 : ipa_analyze_indirect_call_uses (struct ipa_func_body_info *fbi, gcall *call,
2673 : : tree target)
2674 : : {
2675 : 111551 : class ipa_node_params *info = fbi->info;
2676 : 111551 : HOST_WIDE_INT offset;
2677 : 111551 : bool by_ref;
2678 : :
2679 : 111551 : if (SSA_NAME_IS_DEFAULT_DEF (target))
2680 : : {
2681 : 3479 : tree var = SSA_NAME_VAR (target);
2682 : 3479 : int index = ipa_get_param_decl_index (info, var);
2683 : 3479 : if (index >= 0)
2684 : 3477 : ipa_note_param_call (fbi->node, index, call, false);
2685 : 3479 : return;
2686 : : }
2687 : :
2688 : 108072 : int index;
2689 : 108072 : gimple *def = SSA_NAME_DEF_STMT (target);
2690 : 108072 : bool guaranteed_unmodified;
2691 : 108072 : if (gimple_assign_single_p (def)
2692 : 108072 : && ipa_load_from_parm_agg (fbi, info->descriptors, def,
2693 : : gimple_assign_rhs1 (def), &index, &offset,
2694 : : NULL, &by_ref, &guaranteed_unmodified))
2695 : : {
2696 : 2214 : struct cgraph_edge *cs = ipa_note_param_call (fbi->node, index,
2697 : : call, false);
2698 : 2214 : cs->indirect_info->offset = offset;
2699 : 2214 : cs->indirect_info->agg_contents = 1;
2700 : 2214 : cs->indirect_info->by_ref = by_ref;
2701 : 2214 : cs->indirect_info->guaranteed_unmodified = guaranteed_unmodified;
2702 : 2214 : return;
2703 : : }
2704 : :
2705 : : /* Now we need to try to match the complex pattern of calling a member
2706 : : pointer. */
2707 : 105858 : if (gimple_code (def) != GIMPLE_PHI
2708 : 1126 : || gimple_phi_num_args (def) != 2
2709 : 1118 : || !POINTER_TYPE_P (TREE_TYPE (target))
2710 : 106976 : || TREE_CODE (TREE_TYPE (TREE_TYPE (target))) != METHOD_TYPE)
2711 : : return;
2712 : :
2713 : : /* First, we need to check whether one of these is a load from a member
2714 : : pointer that is a parameter to this function. */
2715 : 849 : tree n1 = PHI_ARG_DEF (def, 0);
2716 : 849 : tree n2 = PHI_ARG_DEF (def, 1);
2717 : 1698 : if (!ipa_is_ssa_with_stmt_def (n1) || !ipa_is_ssa_with_stmt_def (n2))
2718 : : return;
2719 : 849 : gimple *d1 = SSA_NAME_DEF_STMT (n1);
2720 : 849 : gimple *d2 = SSA_NAME_DEF_STMT (n2);
2721 : :
2722 : 849 : tree rec;
2723 : 849 : basic_block bb, virt_bb;
2724 : 849 : basic_block join = gimple_bb (def);
2725 : 849 : if ((rec = ipa_get_stmt_member_ptr_load_param (d1, false, &offset)))
2726 : : {
2727 : 0 : if (ipa_get_stmt_member_ptr_load_param (d2, false, NULL))
2728 : : return;
2729 : :
2730 : 0 : bb = EDGE_PRED (join, 0)->src;
2731 : 0 : virt_bb = gimple_bb (d2);
2732 : : }
2733 : 849 : else if ((rec = ipa_get_stmt_member_ptr_load_param (d2, false, &offset)))
2734 : : {
2735 : 420 : bb = EDGE_PRED (join, 1)->src;
2736 : 420 : virt_bb = gimple_bb (d1);
2737 : : }
2738 : : else
2739 : : return;
2740 : :
2741 : : /* Second, we need to check that the basic blocks are laid out in the way
2742 : : corresponding to the pattern. */
2743 : :
2744 : 840 : if (!single_pred_p (virt_bb) || !single_succ_p (virt_bb)
2745 : 840 : || single_succ (virt_bb) != join)
2746 : : return;
2747 : :
2748 : :
2749 : 420 : if (single_pred (virt_bb) != bb)
2750 : : {
2751 : : /* In cases when the distinction between a normal and a virtual
2752 : : function is encoded in the delta field, the load of the
2753 : : actual non-virtual function pointer can be in its own BB. */
2754 : :
2755 : 0 : if (!single_pred_p (bb) || !single_succ_p (bb))
2756 : : return;
2757 : 0 : bb = single_pred (bb);
2758 : 0 : if (bb != single_pred (virt_bb))
2759 : : return;
2760 : : }
2761 : :
2762 : : /* Third, let's see that the branching is done depending on the least
2763 : : significant bit of the pfn. */
2764 : :
2765 : 840 : gcond *branch = safe_dyn_cast <gcond *> (*gsi_last_bb (bb));
2766 : 420 : if (!branch)
2767 : : return;
2768 : :
2769 : 420 : if ((gimple_cond_code (branch) != NE_EXPR
2770 : 0 : && gimple_cond_code (branch) != EQ_EXPR)
2771 : 420 : || !integer_zerop (gimple_cond_rhs (branch)))
2772 : 0 : return;
2773 : :
2774 : 420 : tree cond = gimple_cond_lhs (branch);
2775 : 420 : if (!ipa_is_ssa_with_stmt_def (cond))
2776 : : return;
2777 : :
2778 : 420 : def = SSA_NAME_DEF_STMT (cond);
2779 : 420 : if (!is_gimple_assign (def)
2780 : 420 : || gimple_assign_rhs_code (def) != BIT_AND_EXPR
2781 : 840 : || !integer_onep (gimple_assign_rhs2 (def)))
2782 : 0 : return;
2783 : :
2784 : 420 : cond = gimple_assign_rhs1 (def);
2785 : 420 : if (!ipa_is_ssa_with_stmt_def (cond))
2786 : : return;
2787 : :
2788 : 420 : def = SSA_NAME_DEF_STMT (cond);
2789 : :
2790 : 420 : if (is_gimple_assign (def)
2791 : 420 : && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def)))
2792 : : {
2793 : 420 : cond = gimple_assign_rhs1 (def);
2794 : 420 : if (!ipa_is_ssa_with_stmt_def (cond))
2795 : : return;
2796 : 420 : def = SSA_NAME_DEF_STMT (cond);
2797 : : }
2798 : :
2799 : 420 : tree rec2;
2800 : 420 : rec2 = ipa_get_stmt_member_ptr_load_param (def,
2801 : : (TARGET_PTRMEMFUNC_VBIT_LOCATION
2802 : : == ptrmemfunc_vbit_in_delta),
2803 : : NULL);
2804 : 420 : if (rec != rec2)
2805 : : return;
2806 : :
2807 : 420 : if (TREE_CODE (rec) == SSA_NAME)
2808 : : {
2809 : 285 : index = ipa_get_param_decl_index (info, SSA_NAME_VAR (rec));
2810 : 285 : if (index < 0
2811 : 285 : || !parm_ref_data_preserved_p (fbi, index, call,
2812 : : gimple_assign_rhs1 (def)))
2813 : 8 : return;
2814 : 277 : by_ref = true;
2815 : : }
2816 : : else
2817 : : {
2818 : 135 : index = ipa_get_param_decl_index (info, rec);
2819 : 135 : if (index < 0
2820 : 135 : || !parm_preserved_before_stmt_p (fbi, index, call, rec))
2821 : 0 : return;
2822 : 135 : by_ref = false;
2823 : : }
2824 : :
2825 : 412 : struct cgraph_edge *cs = ipa_note_param_call (fbi->node, index,
2826 : : call, false);
2827 : 412 : cs->indirect_info->offset = offset;
2828 : 412 : cs->indirect_info->agg_contents = 1;
2829 : 412 : cs->indirect_info->member_ptr = 1;
2830 : 412 : cs->indirect_info->by_ref = by_ref;
2831 : 412 : cs->indirect_info->guaranteed_unmodified = 1;
2832 : :
2833 : 412 : return;
2834 : : }
2835 : :
2836 : : /* Analyze a CALL to an OBJ_TYPE_REF which is passed in TARGET and if the
2837 : : object referenced in the expression is a formal parameter of the caller
2838 : : FBI->node (described by FBI->info), create a call note for the
2839 : : statement. */
2840 : :
2841 : : static void
2842 : 25120 : ipa_analyze_virtual_call_uses (struct ipa_func_body_info *fbi,
2843 : : gcall *call, tree target)
2844 : : {
2845 : 25120 : tree obj = OBJ_TYPE_REF_OBJECT (target);
2846 : 25120 : int index;
2847 : 25120 : HOST_WIDE_INT anc_offset;
2848 : :
2849 : 25120 : if (!flag_devirtualize)
2850 : 15280 : return;
2851 : :
2852 : 24867 : if (TREE_CODE (obj) != SSA_NAME)
2853 : : return;
2854 : :
2855 : 24508 : class ipa_node_params *info = fbi->info;
2856 : 24508 : if (SSA_NAME_IS_DEFAULT_DEF (obj))
2857 : : {
2858 : 9089 : if (TREE_CODE (SSA_NAME_VAR (obj)) != PARM_DECL)
2859 : : return;
2860 : :
2861 : 9089 : anc_offset = 0;
2862 : 9089 : index = ipa_get_param_decl_index (info, SSA_NAME_VAR (obj));
2863 : 9089 : gcc_assert (index >= 0);
2864 : 9089 : if (detect_type_change_ssa (fbi, obj, obj_type_ref_class (target),
2865 : : call))
2866 : : return;
2867 : : }
2868 : : else
2869 : : {
2870 : 15419 : gimple *stmt = SSA_NAME_DEF_STMT (obj);
2871 : 15419 : tree expr;
2872 : :
2873 : 15419 : expr = get_ancestor_addr_info (stmt, &obj, &anc_offset);
2874 : 15419 : if (!expr)
2875 : : return;
2876 : 751 : index = ipa_get_param_decl_index (info,
2877 : 751 : SSA_NAME_VAR (TREE_OPERAND (expr, 0)));
2878 : 751 : gcc_assert (index >= 0);
2879 : 751 : if (detect_type_change (fbi, obj, expr, obj_type_ref_class (target),
2880 : : call, anc_offset))
2881 : : return;
2882 : : }
2883 : :
2884 : 9840 : struct cgraph_edge *cs = ipa_note_param_call (fbi->node, index,
2885 : : call, true);
2886 : 9840 : class cgraph_indirect_call_info *ii = cs->indirect_info;
2887 : 9840 : ii->offset = anc_offset;
2888 : 9840 : ii->otr_token = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
2889 : 9840 : ii->otr_type = obj_type_ref_class (target);
2890 : 9840 : ii->polymorphic = 1;
2891 : : }
2892 : :
2893 : : /* Analyze a call statement CALL whether and how it utilizes formal parameters
2894 : : of the caller (described by INFO). PARMS_AINFO is a pointer to a vector
2895 : : containing intermediate information about each formal parameter. */
2896 : :
2897 : : static void
2898 : 5300718 : ipa_analyze_call_uses (struct ipa_func_body_info *fbi, gcall *call)
2899 : : {
2900 : 5300718 : tree target = gimple_call_fn (call);
2901 : :
2902 : 5300718 : if (!target
2903 : 5300718 : || (TREE_CODE (target) != SSA_NAME
2904 : 5006195 : && !virtual_method_call_p (target)))
2905 : 5164044 : return;
2906 : :
2907 : 136674 : struct cgraph_edge *cs = fbi->node->get_edge (call);
2908 : : /* If we previously turned the call into a direct call, there is
2909 : : no need to analyze. */
2910 : 136674 : if (cs && !cs->indirect_unknown_callee)
2911 : : return;
2912 : :
2913 : 136671 : if (cs->indirect_info->polymorphic && flag_devirtualize)
2914 : : {
2915 : 24867 : tree instance;
2916 : 24867 : tree target = gimple_call_fn (call);
2917 : 24867 : ipa_polymorphic_call_context context (current_function_decl,
2918 : 24867 : target, call, &instance);
2919 : :
2920 : 24867 : gcc_checking_assert (cs->indirect_info->otr_type
2921 : : == obj_type_ref_class (target));
2922 : 24867 : gcc_checking_assert (cs->indirect_info->otr_token
2923 : : == tree_to_shwi (OBJ_TYPE_REF_TOKEN (target)));
2924 : :
2925 : 49734 : cs->indirect_info->vptr_changed
2926 : 49734 : = !context.get_dynamic_type (instance,
2927 : 24867 : OBJ_TYPE_REF_OBJECT (target),
2928 : : obj_type_ref_class (target), call,
2929 : : &fbi->aa_walk_budget);
2930 : 24867 : cs->indirect_info->context = context;
2931 : : }
2932 : :
2933 : 136671 : if (TREE_CODE (target) == SSA_NAME)
2934 : 111551 : ipa_analyze_indirect_call_uses (fbi, call, target);
2935 : 25120 : else if (virtual_method_call_p (target))
2936 : 25120 : ipa_analyze_virtual_call_uses (fbi, call, target);
2937 : : }
2938 : :
2939 : :
2940 : : /* Analyze the call statement STMT with respect to formal parameters (described
2941 : : in INFO) of caller given by FBI->NODE. Currently it only checks whether
2942 : : formal parameters are called. */
2943 : :
2944 : : static void
2945 : 29211627 : ipa_analyze_stmt_uses (struct ipa_func_body_info *fbi, gimple *stmt)
2946 : : {
2947 : 29211627 : if (is_gimple_call (stmt))
2948 : 5300718 : ipa_analyze_call_uses (fbi, as_a <gcall *> (stmt));
2949 : 29211627 : }
2950 : :
2951 : : /* Callback of walk_stmt_load_store_addr_ops for the visit_load.
2952 : : If OP is a parameter declaration, mark it as used in the info structure
2953 : : passed in DATA. */
2954 : :
2955 : : static bool
2956 : 18194716 : visit_ref_for_mod_analysis (gimple *, tree op, tree, void *data)
2957 : : {
2958 : 18194716 : class ipa_node_params *info = (class ipa_node_params *) data;
2959 : :
2960 : 18194716 : op = get_base_address (op);
2961 : 18194716 : if (op
2962 : 18194716 : && TREE_CODE (op) == PARM_DECL)
2963 : : {
2964 : 409449 : int index = ipa_get_param_decl_index (info, op);
2965 : 409449 : gcc_assert (index >= 0);
2966 : 409449 : ipa_set_param_used (info, index, true);
2967 : : }
2968 : :
2969 : 18194716 : return false;
2970 : : }
2971 : :
2972 : : /* Scan the statements in BB and inspect the uses of formal parameters. Store
2973 : : the findings in various structures of the associated ipa_node_params
2974 : : structure, such as parameter flags, notes etc. FBI holds various data about
2975 : : the function being analyzed. */
2976 : :
2977 : : static void
2978 : 10249200 : ipa_analyze_params_uses_in_bb (struct ipa_func_body_info *fbi, basic_block bb)
2979 : : {
2980 : 10249200 : gimple_stmt_iterator gsi;
2981 : 69230146 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2982 : : {
2983 : 48731746 : gimple *stmt = gsi_stmt (gsi);
2984 : :
2985 : 48731746 : if (is_gimple_debug (stmt))
2986 : 19520119 : continue;
2987 : :
2988 : 29211627 : ipa_analyze_stmt_uses (fbi, stmt);
2989 : 29211627 : walk_stmt_load_store_addr_ops (stmt, fbi->info,
2990 : : visit_ref_for_mod_analysis,
2991 : : visit_ref_for_mod_analysis,
2992 : : visit_ref_for_mod_analysis);
2993 : : }
2994 : 13080338 : for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2995 : 2831138 : walk_stmt_load_store_addr_ops (gsi_stmt (gsi), fbi->info,
2996 : : visit_ref_for_mod_analysis,
2997 : : visit_ref_for_mod_analysis,
2998 : : visit_ref_for_mod_analysis);
2999 : 10249200 : }
3000 : :
3001 : : /* Return true EXPR is a load from a dereference of SSA_NAME NAME. */
3002 : :
3003 : : static bool
3004 : 3955044 : load_from_dereferenced_name (tree expr, tree name)
3005 : : {
3006 : 3955044 : tree base = get_base_address (expr);
3007 : 3955044 : return (TREE_CODE (base) == MEM_REF
3008 : 3955044 : && TREE_OPERAND (base, 0) == name);
3009 : : }
3010 : :
3011 : : /* Calculate controlled uses of parameters of NODE. */
3012 : :
3013 : : static void
3014 : 1280554 : ipa_analyze_controlled_uses (struct cgraph_node *node)
3015 : : {
3016 : 1280554 : ipa_node_params *info = ipa_node_params_sum->get (node);
3017 : :
3018 : 6957437 : for (int i = 0; i < ipa_get_param_count (info); i++)
3019 : : {
3020 : 2318027 : tree parm = ipa_get_param (info, i);
3021 : 2318027 : int call_uses = 0;
3022 : 2318027 : bool load_dereferenced = false;
3023 : :
3024 : : /* For SSA regs see if parameter is used. For non-SSA we compute
3025 : : the flag during modification analysis. */
3026 : 2318027 : if (is_gimple_reg (parm))
3027 : : {
3028 : 2119719 : tree ddef = ssa_default_def (DECL_STRUCT_FUNCTION (node->decl),
3029 : : parm);
3030 : 2119719 : if (ddef && !has_zero_uses (ddef))
3031 : : {
3032 : 1861232 : imm_use_iterator imm_iter;
3033 : 1861232 : gimple *stmt;
3034 : :
3035 : 1861232 : ipa_set_param_used (info, i, true);
3036 : 4415725 : FOR_EACH_IMM_USE_STMT (stmt, imm_iter, ddef)
3037 : : {
3038 : 3628023 : if (is_gimple_debug (stmt))
3039 : 622141 : continue;
3040 : :
3041 : 3005882 : int all_stmt_uses = 0;
3042 : 3005882 : use_operand_p use_p;
3043 : 6037642 : FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
3044 : 3031760 : all_stmt_uses++;
3045 : :
3046 : 3005882 : if (is_gimple_call (stmt))
3047 : : {
3048 : 1144712 : if (gimple_call_internal_p (stmt))
3049 : : {
3050 : : call_uses = IPA_UNDESCRIBED_USE;
3051 : : break;
3052 : : }
3053 : 1090486 : int recognized_stmt_uses;
3054 : 1090486 : if (gimple_call_fn (stmt) == ddef)
3055 : : recognized_stmt_uses = 1;
3056 : : else
3057 : 1087068 : recognized_stmt_uses = 0;
3058 : 1090486 : unsigned arg_count = gimple_call_num_args (stmt);
3059 : 4879042 : for (unsigned i = 0; i < arg_count; i++)
3060 : : {
3061 : 3788556 : tree arg = gimple_call_arg (stmt, i);
3062 : 3788556 : if (arg == ddef)
3063 : 1079957 : recognized_stmt_uses++;
3064 : 2708599 : else if (load_from_dereferenced_name (arg, ddef))
3065 : : {
3066 : 13295 : load_dereferenced = true;
3067 : 13295 : recognized_stmt_uses++;
3068 : : }
3069 : : }
3070 : :
3071 : 1090486 : if (recognized_stmt_uses != all_stmt_uses)
3072 : : {
3073 : : call_uses = IPA_UNDESCRIBED_USE;
3074 : : break;
3075 : : }
3076 : 1082479 : if (call_uses >= 0)
3077 : 1082479 : call_uses += all_stmt_uses;
3078 : : }
3079 : 1861170 : else if (gimple_assign_single_p (stmt))
3080 : : {
3081 : 1248014 : tree rhs = gimple_assign_rhs1 (stmt);
3082 : 1248014 : if (all_stmt_uses != 1
3083 : 1248014 : || !load_from_dereferenced_name (rhs, ddef))
3084 : : {
3085 : : call_uses = IPA_UNDESCRIBED_USE;
3086 : : break;
3087 : : }
3088 : : load_dereferenced = true;
3089 : : }
3090 : : else
3091 : : {
3092 : : call_uses = IPA_UNDESCRIBED_USE;
3093 : : break;
3094 : : }
3095 : 1861232 : }
3096 : : }
3097 : : else
3098 : : call_uses = 0;
3099 : : }
3100 : : else
3101 : : call_uses = IPA_UNDESCRIBED_USE;
3102 : 2318027 : ipa_set_controlled_uses (info, i, call_uses);
3103 : 2318027 : ipa_set_param_load_dereferenced (info, i, load_dereferenced);
3104 : : }
3105 : 1280554 : }
3106 : :
3107 : : /* Free stuff in BI. */
3108 : :
3109 : : static void
3110 : 58445525 : free_ipa_bb_info (struct ipa_bb_info *bi)
3111 : : {
3112 : 0 : bi->cg_edges.release ();
3113 : 58445525 : bi->param_aa_statuses.release ();
3114 : 0 : }
3115 : :
3116 : : /* Dominator walker driving the analysis. */
3117 : :
3118 : 2561108 : class analysis_dom_walker : public dom_walker
3119 : : {
3120 : : public:
3121 : 1280554 : analysis_dom_walker (struct ipa_func_body_info *fbi)
3122 : 2561108 : : dom_walker (CDI_DOMINATORS), m_fbi (fbi) {}
3123 : :
3124 : : edge before_dom_children (basic_block) final override;
3125 : :
3126 : : private:
3127 : : struct ipa_func_body_info *m_fbi;
3128 : : };
3129 : :
3130 : : edge
3131 : 10249200 : analysis_dom_walker::before_dom_children (basic_block bb)
3132 : : {
3133 : 10249200 : ipa_analyze_params_uses_in_bb (m_fbi, bb);
3134 : 10249200 : ipa_compute_jump_functions_for_bb (m_fbi, bb);
3135 : 10249200 : return NULL;
3136 : : }
3137 : :
3138 : : /* Release body info FBI. */
3139 : :
3140 : : void
3141 : 7973529 : ipa_release_body_info (struct ipa_func_body_info *fbi)
3142 : : {
3143 : 7973529 : int i;
3144 : 7973529 : struct ipa_bb_info *bi;
3145 : :
3146 : 66400365 : FOR_EACH_VEC_ELT (fbi->bb_infos, i, bi)
3147 : 116853672 : free_ipa_bb_info (bi);
3148 : 7973529 : fbi->bb_infos.release ();
3149 : 7973529 : }
3150 : :
3151 : : /* Initialize the array describing properties of formal parameters
3152 : : of NODE, analyze their uses and compute jump functions associated
3153 : : with actual arguments of calls from within NODE. */
3154 : :
3155 : : void
3156 : 2513808 : ipa_analyze_node (struct cgraph_node *node)
3157 : : {
3158 : 2513808 : struct ipa_func_body_info fbi;
3159 : 2513808 : class ipa_node_params *info;
3160 : :
3161 : 2513808 : ipa_check_create_node_params ();
3162 : 2513808 : ipa_check_create_edge_args ();
3163 : 2513808 : info = ipa_node_params_sum->get_create (node);
3164 : :
3165 : 2513808 : if (info->analysis_done)
3166 : 1233254 : return;
3167 : 1281356 : info->analysis_done = 1;
3168 : :
3169 : 1281356 : if (ipa_func_spec_opts_forbid_analysis_p (node)
3170 : 1281356 : || (count_formal_params (node->decl)
3171 : : >= (1 << IPA_PROP_ARG_INDEX_LIMIT_BITS)))
3172 : : {
3173 : 1233254 : gcc_assert (!ipa_get_param_count (info));
3174 : : return;
3175 : : }
3176 : :
3177 : 1280554 : struct function *func = DECL_STRUCT_FUNCTION (node->decl);
3178 : 1280554 : push_cfun (func);
3179 : 1280554 : calculate_dominance_info (CDI_DOMINATORS);
3180 : 1280554 : ipa_initialize_node_params (node);
3181 : 1280554 : ipa_analyze_controlled_uses (node);
3182 : :
3183 : 1280554 : fbi.node = node;
3184 : 1280554 : fbi.info = info;
3185 : 1280554 : fbi.bb_infos = vNULL;
3186 : 1280554 : fbi.bb_infos.safe_grow_cleared (last_basic_block_for_fn (cfun), true);
3187 : 1280554 : fbi.param_count = ipa_get_param_count (info);
3188 : 1280554 : fbi.aa_walk_budget = opt_for_fn (node->decl, param_ipa_max_aa_steps);
3189 : :
3190 : 6261557 : for (struct cgraph_edge *cs = node->callees; cs; cs = cs->next_callee)
3191 : : {
3192 : 4981003 : ipa_bb_info *bi = ipa_get_bb_info (&fbi, gimple_bb (cs->call_stmt));
3193 : 4981003 : bi->cg_edges.safe_push (cs);
3194 : : }
3195 : :
3196 : 1417297 : for (struct cgraph_edge *cs = node->indirect_calls; cs; cs = cs->next_callee)
3197 : : {
3198 : 136743 : ipa_bb_info *bi = ipa_get_bb_info (&fbi, gimple_bb (cs->call_stmt));
3199 : 136743 : bi->cg_edges.safe_push (cs);
3200 : : }
3201 : :
3202 : 1280554 : enable_ranger (cfun, false);
3203 : 1280554 : analysis_dom_walker (&fbi).walk (ENTRY_BLOCK_PTR_FOR_FN (cfun));
3204 : 1280554 : disable_ranger (cfun);
3205 : :
3206 : 1280554 : ipa_release_body_info (&fbi);
3207 : 1280554 : free_dominance_info (CDI_DOMINATORS);
3208 : 1280554 : pop_cfun ();
3209 : : }
3210 : :
3211 : : /* Update the jump functions associated with call graph edge E when the call
3212 : : graph edge CS is being inlined, assuming that E->caller is already (possibly
3213 : : indirectly) inlined into CS->callee and that E has not been inlined. */
3214 : :
3215 : : static void
3216 : 2080367 : update_jump_functions_after_inlining (struct cgraph_edge *cs,
3217 : : struct cgraph_edge *e)
3218 : : {
3219 : 2080367 : ipa_edge_args *top = ipa_edge_args_sum->get (cs);
3220 : 2080367 : ipa_edge_args *args = ipa_edge_args_sum->get (e);
3221 : 2080367 : if (!args)
3222 : : return;
3223 : 1076207 : int count = ipa_get_cs_argument_count (args);
3224 : 1076207 : int i;
3225 : :
3226 : 3201176 : for (i = 0; i < count; i++)
3227 : : {
3228 : 2124969 : struct ipa_jump_func *dst = ipa_get_ith_jump_func (args, i);
3229 : 2124969 : class ipa_polymorphic_call_context *dst_ctx
3230 : 2124969 : = ipa_get_ith_polymorhic_call_context (args, i);
3231 : :
3232 : 2124969 : if (dst->agg.items)
3233 : : {
3234 : : struct ipa_agg_jf_item *item;
3235 : : int j;
3236 : :
3237 : 181139 : FOR_EACH_VEC_ELT (*dst->agg.items, j, item)
3238 : : {
3239 : 122440 : int dst_fid;
3240 : 122440 : struct ipa_jump_func *src;
3241 : :
3242 : 218320 : if (item->jftype != IPA_JF_PASS_THROUGH
3243 : 122440 : && item->jftype != IPA_JF_LOAD_AGG)
3244 : 95880 : continue;
3245 : :
3246 : 26560 : dst_fid = item->value.pass_through.formal_id;
3247 : 53120 : if (!top || dst_fid >= ipa_get_cs_argument_count (top))
3248 : : {
3249 : 0 : item->jftype = IPA_JF_UNKNOWN;
3250 : 0 : continue;
3251 : : }
3252 : :
3253 : 26560 : item->value.pass_through.formal_id = -1;
3254 : 26560 : src = ipa_get_ith_jump_func (top, dst_fid);
3255 : 26560 : if (src->type == IPA_JF_CONST)
3256 : : {
3257 : 1252 : if (item->jftype == IPA_JF_PASS_THROUGH
3258 : 1141 : && item->value.pass_through.operation == NOP_EXPR)
3259 : : {
3260 : 1094 : item->jftype = IPA_JF_CONST;
3261 : 1094 : item->value.constant = src->value.constant.value;
3262 : 1094 : continue;
3263 : : }
3264 : : }
3265 : 25308 : else if (src->type == IPA_JF_PASS_THROUGH
3266 : 4116 : && src->value.pass_through.operation == NOP_EXPR)
3267 : : {
3268 : 3956 : if (item->jftype == IPA_JF_PASS_THROUGH
3269 : 2419 : || !item->value.load_agg.by_ref
3270 : 1126 : || src->value.pass_through.agg_preserved)
3271 : 3231 : item->value.pass_through.formal_id
3272 : 3231 : = src->value.pass_through.formal_id;
3273 : : }
3274 : 21352 : else if (src->type == IPA_JF_ANCESTOR)
3275 : : {
3276 : 1749 : if (item->jftype == IPA_JF_PASS_THROUGH)
3277 : : {
3278 : 898 : if (!src->value.ancestor.offset)
3279 : 573 : item->value.pass_through.formal_id
3280 : 573 : = src->value.ancestor.formal_id;
3281 : : }
3282 : 851 : else if (src->value.ancestor.agg_preserved)
3283 : : {
3284 : 111 : gcc_checking_assert (item->value.load_agg.by_ref);
3285 : :
3286 : 111 : item->value.pass_through.formal_id
3287 : 111 : = src->value.ancestor.formal_id;
3288 : 111 : item->value.load_agg.offset
3289 : 111 : += src->value.ancestor.offset;
3290 : : }
3291 : : }
3292 : :
3293 : 25466 : if (item->value.pass_through.formal_id < 0)
3294 : 21551 : item->jftype = IPA_JF_UNKNOWN;
3295 : : }
3296 : : }
3297 : :
3298 : 2124969 : if (!top)
3299 : : {
3300 : 13059 : ipa_set_jf_unknown (dst);
3301 : 13059 : continue;
3302 : : }
3303 : :
3304 : 2111910 : if (dst->type == IPA_JF_ANCESTOR)
3305 : : {
3306 : 137269 : struct ipa_jump_func *src;
3307 : 137269 : int dst_fid = dst->value.ancestor.formal_id;
3308 : 137269 : class ipa_polymorphic_call_context *src_ctx
3309 : 137269 : = ipa_get_ith_polymorhic_call_context (top, dst_fid);
3310 : :
3311 : : /* Variable number of arguments can cause havoc if we try to access
3312 : : one that does not exist in the inlined edge. So make sure we
3313 : : don't. */
3314 : 274538 : if (dst_fid >= ipa_get_cs_argument_count (top))
3315 : : {
3316 : 0 : ipa_set_jf_unknown (dst);
3317 : 0 : continue;
3318 : : }
3319 : :
3320 : 137269 : src = ipa_get_ith_jump_func (top, dst_fid);
3321 : :
3322 : 137269 : if (src_ctx && !src_ctx->useless_p ())
3323 : : {
3324 : 39471 : class ipa_polymorphic_call_context ctx = *src_ctx;
3325 : :
3326 : : /* TODO: Make type preserved safe WRT contexts. */
3327 : 39471 : if (!ipa_get_jf_ancestor_type_preserved (dst))
3328 : 32691 : ctx.possible_dynamic_type_change (e->in_polymorphic_cdtor);
3329 : 39471 : ctx.offset_by (dst->value.ancestor.offset);
3330 : 78942 : if (!ctx.useless_p ())
3331 : : {
3332 : 36782 : if (!dst_ctx)
3333 : : {
3334 : 5895 : vec_safe_grow_cleared (args->polymorphic_call_contexts,
3335 : : count, true);
3336 : 5895 : dst_ctx = ipa_get_ith_polymorhic_call_context (args, i);
3337 : : }
3338 : :
3339 : 36782 : dst_ctx->combine_with (ctx);
3340 : : }
3341 : : }
3342 : :
3343 : : /* Parameter and argument in ancestor jump function must be pointer
3344 : : type, which means access to aggregate must be by-reference. */
3345 : 137269 : gcc_assert (!src->agg.items || src->agg.by_ref);
3346 : :
3347 : 137269 : if (src->agg.items && dst->value.ancestor.agg_preserved)
3348 : : {
3349 : 1715 : struct ipa_agg_jf_item *item;
3350 : 1715 : int j;
3351 : :
3352 : : /* Currently we do not produce clobber aggregate jump functions,
3353 : : replace with merging when we do. */
3354 : 1715 : gcc_assert (!dst->agg.items);
3355 : :
3356 : 1715 : dst->agg.items = vec_safe_copy (src->agg.items);
3357 : 1715 : dst->agg.by_ref = src->agg.by_ref;
3358 : 6334 : FOR_EACH_VEC_SAFE_ELT (dst->agg.items, j, item)
3359 : 4619 : item->offset -= dst->value.ancestor.offset;
3360 : : }
3361 : :
3362 : 137269 : if (src->type == IPA_JF_PASS_THROUGH
3363 : 20943 : && src->value.pass_through.operation == NOP_EXPR)
3364 : : {
3365 : 20939 : dst->value.ancestor.formal_id = src->value.pass_through.formal_id;
3366 : 20939 : dst->value.ancestor.agg_preserved &=
3367 : 20939 : src->value.pass_through.agg_preserved;
3368 : : }
3369 : 116330 : else if (src->type == IPA_JF_ANCESTOR)
3370 : : {
3371 : 5421 : dst->value.ancestor.formal_id = src->value.ancestor.formal_id;
3372 : 5421 : dst->value.ancestor.offset += src->value.ancestor.offset;
3373 : 5421 : dst->value.ancestor.agg_preserved &=
3374 : 5421 : src->value.ancestor.agg_preserved;
3375 : 5421 : dst->value.ancestor.keep_null |= src->value.ancestor.keep_null;
3376 : : }
3377 : : else
3378 : 110909 : ipa_set_jf_unknown (dst);
3379 : : }
3380 : 1974641 : else if (dst->type == IPA_JF_PASS_THROUGH)
3381 : : {
3382 : 633420 : struct ipa_jump_func *src;
3383 : : /* We must check range due to calls with variable number of arguments
3384 : : and we cannot combine jump functions with operations. */
3385 : 633420 : if (dst->value.pass_through.operation == NOP_EXPR
3386 : 633420 : && (top && dst->value.pass_through.formal_id
3387 : 625161 : < ipa_get_cs_argument_count (top)))
3388 : : {
3389 : 625147 : int dst_fid = dst->value.pass_through.formal_id;
3390 : 625147 : src = ipa_get_ith_jump_func (top, dst_fid);
3391 : 625147 : bool dst_agg_p = ipa_get_jf_pass_through_agg_preserved (dst);
3392 : 625147 : class ipa_polymorphic_call_context *src_ctx
3393 : 722066 : = ipa_get_ith_polymorhic_call_context (top, dst_fid);
3394 : :
3395 : 96919 : if (src_ctx && !src_ctx->useless_p ())
3396 : : {
3397 : 66694 : class ipa_polymorphic_call_context ctx = *src_ctx;
3398 : :
3399 : : /* TODO: Make type preserved safe WRT contexts. */
3400 : 66694 : if (!ipa_get_jf_pass_through_type_preserved (dst))
3401 : 22407 : ctx.possible_dynamic_type_change (e->in_polymorphic_cdtor);
3402 : 133388 : if (!ctx.useless_p ())
3403 : : {
3404 : 64948 : if (!dst_ctx)
3405 : : {
3406 : 26345 : vec_safe_grow_cleared (args->polymorphic_call_contexts,
3407 : : count, true);
3408 : 26345 : dst_ctx = ipa_get_ith_polymorhic_call_context (args, i);
3409 : : }
3410 : 64948 : dst_ctx->combine_with (ctx);
3411 : : }
3412 : : }
3413 : 625147 : switch (src->type)
3414 : : {
3415 : 265893 : case IPA_JF_UNKNOWN:
3416 : 265893 : ipa_set_jf_unknown (dst);
3417 : 265893 : break;
3418 : 112464 : case IPA_JF_CONST:
3419 : 112464 : {
3420 : 112464 : bool rd = ipa_get_jf_pass_through_refdesc_decremented (dst);
3421 : 112464 : ipa_set_jf_cst_copy (dst, src);
3422 : 112464 : if (rd)
3423 : 25 : ipa_zap_jf_refdesc (dst);
3424 : : }
3425 : :
3426 : : break;
3427 : :
3428 : 225549 : case IPA_JF_PASS_THROUGH:
3429 : 225549 : {
3430 : 225549 : int formal_id = ipa_get_jf_pass_through_formal_id (src);
3431 : 225549 : enum tree_code operation;
3432 : 225549 : operation = ipa_get_jf_pass_through_operation (src);
3433 : :
3434 : 225549 : if (operation == NOP_EXPR)
3435 : : {
3436 : 224656 : bool agg_p;
3437 : 449312 : agg_p = dst_agg_p
3438 : 224656 : && ipa_get_jf_pass_through_agg_preserved (src);
3439 : 224656 : ipa_set_jf_simple_pass_through (dst, formal_id, agg_p);
3440 : : }
3441 : 893 : else if (TREE_CODE_CLASS (operation) == tcc_unary)
3442 : 9 : ipa_set_jf_unary_pass_through (dst, formal_id, operation);
3443 : : else
3444 : : {
3445 : 884 : tree operand = ipa_get_jf_pass_through_operand (src);
3446 : 884 : ipa_set_jf_arith_pass_through (dst, formal_id, operand,
3447 : : operation);
3448 : : }
3449 : : break;
3450 : : }
3451 : 21241 : case IPA_JF_ANCESTOR:
3452 : 21241 : {
3453 : 21241 : bool agg_p;
3454 : 42482 : agg_p = dst_agg_p
3455 : 21241 : && ipa_get_jf_ancestor_agg_preserved (src);
3456 : 21241 : ipa_set_ancestor_jf (dst,
3457 : : ipa_get_jf_ancestor_offset (src),
3458 : : ipa_get_jf_ancestor_formal_id (src),
3459 : : agg_p,
3460 : 21241 : ipa_get_jf_ancestor_keep_null (src));
3461 : 21241 : break;
3462 : : }
3463 : 0 : default:
3464 : 0 : gcc_unreachable ();
3465 : : }
3466 : :
3467 : 625147 : if (src->agg.items
3468 : 21726 : && (dst_agg_p || !src->agg.by_ref))
3469 : : {
3470 : : /* Currently we do not produce clobber aggregate jump
3471 : : functions, replace with merging when we do. */
3472 : 17853 : gcc_assert (!dst->agg.items);
3473 : :
3474 : 17853 : dst->agg.by_ref = src->agg.by_ref;
3475 : 17853 : dst->agg.items = vec_safe_copy (src->agg.items);
3476 : : }
3477 : : }
3478 : : else
3479 : 8273 : ipa_set_jf_unknown (dst);
3480 : : }
3481 : : }
3482 : : }
3483 : :
3484 : : /* If TARGET is an addr_expr of a function declaration, make it the
3485 : : (SPECULATIVE)destination of an indirect edge IE and return the edge.
3486 : : Otherwise, return NULL. */
3487 : :
3488 : : struct cgraph_edge *
3489 : 2516 : ipa_make_edge_direct_to_target (struct cgraph_edge *ie, tree target,
3490 : : bool speculative)
3491 : : {
3492 : 2516 : struct cgraph_node *callee;
3493 : 2516 : bool unreachable = false;
3494 : :
3495 : 2516 : if (TREE_CODE (target) == ADDR_EXPR)
3496 : 486 : target = TREE_OPERAND (target, 0);
3497 : 2516 : if (TREE_CODE (target) != FUNCTION_DECL)
3498 : : {
3499 : 14 : target = canonicalize_constructor_val (target, NULL);
3500 : 14 : if (!target || TREE_CODE (target) != FUNCTION_DECL)
3501 : : {
3502 : : /* Member pointer call that goes through a VMT lookup. */
3503 : 14 : if (ie->indirect_info->member_ptr
3504 : : /* Or if target is not an invariant expression and we do not
3505 : : know if it will evaulate to function at runtime.
3506 : : This can happen when folding through &VAR, where &VAR
3507 : : is IP invariant, but VAR itself is not.
3508 : :
3509 : : TODO: Revisit this when GCC 5 is branched. It seems that
3510 : : member_ptr check is not needed and that we may try to fold
3511 : : the expression and see if VAR is readonly. */
3512 : 14 : || !is_gimple_ip_invariant (target))
3513 : : {
3514 : 3 : if (dump_enabled_p ())
3515 : : {
3516 : 0 : dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, ie->call_stmt,
3517 : : "discovered direct call non-invariant %s\n",
3518 : 0 : ie->caller->dump_name ());
3519 : : }
3520 : 3 : return NULL;
3521 : : }
3522 : :
3523 : :
3524 : 11 : if (dump_enabled_p ())
3525 : : {
3526 : 0 : dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, ie->call_stmt,
3527 : : "discovered direct call to non-function in %s, "
3528 : : "making it __builtin_unreachable\n",
3529 : 0 : ie->caller->dump_name ());
3530 : : }
3531 : :
3532 : 11 : target = builtin_decl_unreachable ();
3533 : 11 : callee = cgraph_node::get_create (target);
3534 : 11 : unreachable = true;
3535 : : }
3536 : : else
3537 : 0 : callee = cgraph_node::get (target);
3538 : : }
3539 : : else
3540 : 2502 : callee = cgraph_node::get (target);
3541 : :
3542 : : /* Because may-edges are not explicitely represented and vtable may be external,
3543 : : we may create the first reference to the object in the unit. */
3544 : 2513 : if (!callee || callee->inlined_to)
3545 : : {
3546 : :
3547 : : /* We are better to ensure we can refer to it.
3548 : : In the case of static functions we are out of luck, since we already
3549 : : removed its body. In the case of public functions we may or may
3550 : : not introduce the reference. */
3551 : 0 : if (!canonicalize_constructor_val (target, NULL)
3552 : 0 : || !TREE_PUBLIC (target))
3553 : : {
3554 : 0 : if (dump_file)
3555 : 0 : fprintf (dump_file, "ipa-prop: Discovered call to a known target "
3556 : : "(%s -> %s) but cannot refer to it. Giving up.\n",
3557 : 0 : ie->caller->dump_name (),
3558 : 0 : ie->callee->dump_name ());
3559 : 0 : return NULL;
3560 : : }
3561 : 0 : callee = cgraph_node::get_create (target);
3562 : : }
3563 : :
3564 : : /* If the edge is already speculated. */
3565 : 2513 : if (speculative && ie->speculative)
3566 : : {
3567 : 1 : if (dump_file)
3568 : : {
3569 : 0 : cgraph_edge *e2 = ie->speculative_call_for_target (callee);
3570 : 0 : if (!e2)
3571 : : {
3572 : 0 : if (dump_file)
3573 : 0 : fprintf (dump_file, "ipa-prop: Discovered call to a "
3574 : : "speculative target (%s -> %s) but the call is "
3575 : : "already speculated to different target. "
3576 : : "Giving up.\n",
3577 : 0 : ie->caller->dump_name (), callee->dump_name ());
3578 : : }
3579 : : else
3580 : : {
3581 : 0 : if (dump_file)
3582 : 0 : fprintf (dump_file,
3583 : : "ipa-prop: Discovered call to a speculative target "
3584 : : "(%s -> %s) this agree with previous speculation.\n",
3585 : 0 : ie->caller->dump_name (), callee->dump_name ());
3586 : : }
3587 : : }
3588 : 1 : return NULL;
3589 : : }
3590 : :
3591 : 2512 : if (!dbg_cnt (devirt))
3592 : : return NULL;
3593 : :
3594 : 2512 : ipa_check_create_node_params ();
3595 : :
3596 : : /* We cannot make edges to inline clones. It is bug that someone removed
3597 : : the cgraph node too early. */
3598 : 2512 : gcc_assert (!callee->inlined_to);
3599 : :
3600 : 2512 : if (dump_file && !unreachable)
3601 : : {
3602 : 522 : fprintf (dump_file, "ipa-prop: Discovered %s call to a %s target "
3603 : : "(%s -> %s), for stmt ",
3604 : 174 : ie->indirect_info->polymorphic ? "a virtual" : "an indirect",
3605 : : speculative ? "speculative" : "known",
3606 : 174 : ie->caller->dump_name (),
3607 : : callee->dump_name ());
3608 : 174 : if (ie->call_stmt)
3609 : 166 : print_gimple_stmt (dump_file, ie->call_stmt, 2, TDF_SLIM);
3610 : : else
3611 : 8 : fprintf (dump_file, "with uid %i\n", ie->lto_stmt_uid);
3612 : : }
3613 : 2512 : if (dump_enabled_p ())
3614 : : {
3615 : 348 : dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, ie->call_stmt,
3616 : : "converting indirect call in %s to direct call to %s\n",
3617 : 174 : ie->caller->dump_name (), callee->dump_name ());
3618 : : }
3619 : 2512 : if (!speculative)
3620 : : {
3621 : 2491 : struct cgraph_edge *orig = ie;
3622 : 2491 : ie = cgraph_edge::make_direct (ie, callee);
3623 : : /* If we resolved speculative edge the cost is already up to date
3624 : : for direct call (adjusted by inline_edge_duplication_hook). */
3625 : 2491 : if (ie == orig)
3626 : : {
3627 : 2199 : ipa_call_summary *es = ipa_call_summaries->get (ie);
3628 : 2199 : es->call_stmt_size -= (eni_size_weights.indirect_call_cost
3629 : 2199 : - eni_size_weights.call_cost);
3630 : 2199 : es->call_stmt_time -= (eni_time_weights.indirect_call_cost
3631 : 2199 : - eni_time_weights.call_cost);
3632 : : }
3633 : : }
3634 : : else
3635 : : {
3636 : 21 : if (!callee->can_be_discarded_p ())
3637 : : {
3638 : 3 : cgraph_node *alias;
3639 : 3 : alias = dyn_cast<cgraph_node *> (callee->noninterposable_alias ());
3640 : : if (alias)
3641 : 21 : callee = alias;
3642 : : }
3643 : : /* make_speculative will update ie's cost to direct call cost. */
3644 : 21 : ie = ie->make_speculative
3645 : 21 : (callee, ie->count.apply_scale (8, 10));
3646 : : }
3647 : :
3648 : : return ie;
3649 : : }
3650 : :
3651 : : /* Attempt to locate an interprocedural constant at a given REQ_OFFSET in
3652 : : CONSTRUCTOR and return it. Return NULL if the search fails for some
3653 : : reason. */
3654 : :
3655 : : static tree
3656 : 10052 : find_constructor_constant_at_offset (tree constructor, HOST_WIDE_INT req_offset)
3657 : : {
3658 : 14771 : tree type = TREE_TYPE (constructor);
3659 : 14771 : if (TREE_CODE (type) != ARRAY_TYPE
3660 : 14771 : && TREE_CODE (type) != RECORD_TYPE)
3661 : : return NULL;
3662 : :
3663 : 14759 : unsigned ix;
3664 : 14759 : tree index, val;
3665 : 40010 : FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (constructor), ix, index, val)
3666 : : {
3667 : 19556 : HOST_WIDE_INT elt_offset;
3668 : 19556 : if (TREE_CODE (type) == ARRAY_TYPE)
3669 : : {
3670 : 237 : offset_int off;
3671 : 237 : tree unit_size = TYPE_SIZE_UNIT (TREE_TYPE (type));
3672 : 237 : gcc_assert (TREE_CODE (unit_size) == INTEGER_CST);
3673 : :
3674 : 237 : if (index)
3675 : : {
3676 : 237 : if (TREE_CODE (index) == RANGE_EXPR)
3677 : 48 : off = wi::to_offset (TREE_OPERAND (index, 0));
3678 : : else
3679 : 189 : off = wi::to_offset (index);
3680 : 237 : if (TYPE_DOMAIN (type) && TYPE_MIN_VALUE (TYPE_DOMAIN (type)))
3681 : : {
3682 : 237 : tree low_bound = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
3683 : 237 : gcc_assert (TREE_CODE (unit_size) == INTEGER_CST);
3684 : 237 : off = wi::sext (off - wi::to_offset (low_bound),
3685 : 237 : TYPE_PRECISION (TREE_TYPE (index)));
3686 : : }
3687 : 237 : off *= wi::to_offset (unit_size);
3688 : : /* ??? Handle more than just the first index of a
3689 : : RANGE_EXPR. */
3690 : : }
3691 : : else
3692 : 0 : off = wi::to_offset (unit_size) * ix;
3693 : :
3694 : 237 : off = wi::lshift (off, LOG2_BITS_PER_UNIT);
3695 : 237 : if (!wi::fits_shwi_p (off) || wi::neg_p (off))
3696 : 0 : continue;
3697 : 237 : elt_offset = off.to_shwi ();
3698 : : }
3699 : 19319 : else if (TREE_CODE (type) == RECORD_TYPE)
3700 : : {
3701 : 19319 : gcc_checking_assert (index && TREE_CODE (index) == FIELD_DECL);
3702 : 19319 : if (DECL_BIT_FIELD (index))
3703 : 0 : continue;
3704 : 19319 : elt_offset = int_bit_position (index);
3705 : : }
3706 : : else
3707 : 0 : gcc_unreachable ();
3708 : :
3709 : 19556 : if (elt_offset > req_offset)
3710 : : return NULL;
3711 : :
3712 : 19556 : if (TREE_CODE (val) == CONSTRUCTOR)
3713 : 4719 : return find_constructor_constant_at_offset (val,
3714 : 4719 : req_offset - elt_offset);
3715 : :
3716 : 14837 : if (elt_offset == req_offset
3717 : 10040 : && is_gimple_reg_type (TREE_TYPE (val))
3718 : 24877 : && is_gimple_ip_invariant (val))
3719 : 9591 : return val;
3720 : : }
3721 : : return NULL;
3722 : : }
3723 : :
3724 : : /* Check whether SCALAR could be used to look up an aggregate interprocedural
3725 : : invariant from a static constructor and if so, return it. Otherwise return
3726 : : NULL. */
3727 : :
3728 : : tree
3729 : 9537660 : ipa_find_agg_cst_from_init (tree scalar, HOST_WIDE_INT offset, bool by_ref)
3730 : : {
3731 : 9537660 : if (by_ref)
3732 : : {
3733 : 9523564 : if (TREE_CODE (scalar) != ADDR_EXPR)
3734 : : return NULL;
3735 : 3185399 : scalar = TREE_OPERAND (scalar, 0);
3736 : : }
3737 : :
3738 : 3199495 : if (!VAR_P (scalar)
3739 : 2032827 : || !is_global_var (scalar)
3740 : 120517 : || !TREE_READONLY (scalar)
3741 : 13328 : || !DECL_INITIAL (scalar)
3742 : 3212116 : || TREE_CODE (DECL_INITIAL (scalar)) != CONSTRUCTOR)
3743 : : return NULL;
3744 : :
3745 : 10052 : return find_constructor_constant_at_offset (DECL_INITIAL (scalar), offset);
3746 : : }
3747 : :
3748 : : /* Retrieve value from AGG_JFUNC for the given OFFSET or return NULL if there
3749 : : is none. BY_REF specifies whether the value has to be passed by reference
3750 : : or by value. */
3751 : :
3752 : : static tree
3753 : 25567 : ipa_find_agg_cst_from_jfunc_items (struct ipa_agg_jump_function *agg_jfunc,
3754 : : ipa_node_params *src_info,
3755 : : cgraph_node *src_node,
3756 : : HOST_WIDE_INT offset, bool by_ref)
3757 : : {
3758 : 25567 : if (by_ref != agg_jfunc->by_ref)
3759 : : return NULL_TREE;
3760 : :
3761 : 3132 : for (const ipa_agg_jf_item &item : agg_jfunc->items)
3762 : 1066 : if (item.offset == offset)
3763 : 781 : return ipa_agg_value_from_jfunc (src_info, src_node, &item);
3764 : :
3765 : : return NULL_TREE;
3766 : : }
3767 : :
3768 : : /* Remove a reference to SYMBOL from the list of references of a node given by
3769 : : reference description RDESC. Return true if the reference has been
3770 : : successfully found and removed. */
3771 : :
3772 : : static bool
3773 : 5112 : remove_described_reference (symtab_node *symbol, struct ipa_cst_ref_desc *rdesc)
3774 : : {
3775 : 5112 : struct ipa_ref *to_del;
3776 : 5112 : struct cgraph_edge *origin;
3777 : :
3778 : 5112 : origin = rdesc->cs;
3779 : 5112 : if (!origin)
3780 : : return false;
3781 : 5112 : to_del = origin->caller->find_reference (symbol, origin->call_stmt,
3782 : : origin->lto_stmt_uid, IPA_REF_ADDR);
3783 : 5112 : if (!to_del)
3784 : : return false;
3785 : :
3786 : 5112 : to_del->remove_reference ();
3787 : 5112 : if (dump_file)
3788 : 26 : fprintf (dump_file, "ipa-prop: Removed a reference from %s to %s.\n",
3789 : 13 : origin->caller->dump_name (), symbol->dump_name ());
3790 : : return true;
3791 : : }
3792 : :
3793 : : /* If JFUNC has a reference description with refcount different from
3794 : : IPA_UNDESCRIBED_USE, return the reference description, otherwise return
3795 : : NULL. JFUNC must be a constant jump function. */
3796 : :
3797 : : static struct ipa_cst_ref_desc *
3798 : 1128684 : jfunc_rdesc_usable (struct ipa_jump_func *jfunc)
3799 : : {
3800 : 1128684 : struct ipa_cst_ref_desc *rdesc = ipa_get_jf_constant_rdesc (jfunc);
3801 : 1128684 : if (rdesc && rdesc->refcount != IPA_UNDESCRIBED_USE)
3802 : : return rdesc;
3803 : : else
3804 : 955774 : return NULL;
3805 : : }
3806 : :
3807 : : /* If the value of constant jump function JFUNC is an address of a function
3808 : : declaration, return the associated call graph node. Otherwise return
3809 : : NULL. */
3810 : :
3811 : : static symtab_node *
3812 : 300 : symtab_node_for_jfunc (struct ipa_jump_func *jfunc)
3813 : : {
3814 : 300 : gcc_checking_assert (jfunc->type == IPA_JF_CONST);
3815 : 300 : tree cst = ipa_get_jf_constant (jfunc);
3816 : 300 : if (TREE_CODE (cst) != ADDR_EXPR
3817 : 300 : || (TREE_CODE (TREE_OPERAND (cst, 0)) != FUNCTION_DECL
3818 : 10 : && TREE_CODE (TREE_OPERAND (cst, 0)) != VAR_DECL))
3819 : : return NULL;
3820 : :
3821 : 290 : return symtab_node::get (TREE_OPERAND (cst, 0));
3822 : : }
3823 : :
3824 : :
3825 : : /* If JFUNC is a constant jump function with a usable rdesc, decrement its
3826 : : refcount and if it hits zero, remove reference to SYMBOL from the caller of
3827 : : the edge specified in the rdesc. Return false if either the symbol or the
3828 : : reference could not be found, otherwise return true. */
3829 : :
3830 : : static bool
3831 : 176 : try_decrement_rdesc_refcount (struct ipa_jump_func *jfunc)
3832 : : {
3833 : 176 : struct ipa_cst_ref_desc *rdesc;
3834 : 176 : if (jfunc->type == IPA_JF_CONST
3835 : 176 : && (rdesc = jfunc_rdesc_usable (jfunc))
3836 : 330 : && --rdesc->refcount == 0)
3837 : : {
3838 : 110 : symtab_node *symbol = symtab_node_for_jfunc (jfunc);
3839 : 110 : if (!symbol)
3840 : : return false;
3841 : :
3842 : 110 : return remove_described_reference (symbol, rdesc);
3843 : : }
3844 : : return true;
3845 : : }
3846 : :
3847 : : /* Try to find a destination for indirect edge IE that corresponds to a simple
3848 : : call or a call of a member function pointer and where the destination is a
3849 : : pointer formal parameter described by jump function JFUNC. TARGET_TYPE is
3850 : : the type of the parameter to which the result of JFUNC is passed. If it can
3851 : : be determined, return the newly direct edge, otherwise return NULL.
3852 : : NEW_ROOT and NEW_ROOT_INFO is the node and its info that JFUNC lattices are
3853 : : relative to. */
3854 : :
3855 : : static struct cgraph_edge *
3856 : 9411 : try_make_edge_direct_simple_call (struct cgraph_edge *ie,
3857 : : struct ipa_jump_func *jfunc, tree target_type,
3858 : : struct cgraph_node *new_root,
3859 : : class ipa_node_params *new_root_info)
3860 : : {
3861 : 9411 : struct cgraph_edge *cs;
3862 : 9411 : tree target = NULL_TREE;
3863 : 9411 : bool agg_contents = ie->indirect_info->agg_contents;
3864 : 9411 : tree scalar = ipa_value_from_jfunc (new_root_info, jfunc, target_type);
3865 : 9411 : if (agg_contents)
3866 : : {
3867 : 8340 : if (scalar)
3868 : 7 : target = ipa_find_agg_cst_from_init (scalar, ie->indirect_info->offset,
3869 : 7 : ie->indirect_info->by_ref);
3870 : 8340 : if (!target && ie->indirect_info->guaranteed_unmodified)
3871 : 7500 : target = ipa_find_agg_cst_from_jfunc_items (&jfunc->agg, new_root_info,
3872 : : new_root,
3873 : : ie->indirect_info->offset,
3874 : : ie->indirect_info->by_ref);
3875 : : }
3876 : : else
3877 : : target = scalar;
3878 : 9410 : if (!target)
3879 : : return NULL;
3880 : 500 : cs = ipa_make_edge_direct_to_target (ie, target);
3881 : :
3882 : 500 : if (cs && !agg_contents)
3883 : : {
3884 : 176 : bool ok;
3885 : 176 : gcc_checking_assert (cs->callee
3886 : : && (cs != ie
3887 : : || jfunc->type != IPA_JF_CONST
3888 : : || !symtab_node_for_jfunc (jfunc)
3889 : : || cs->callee == symtab_node_for_jfunc (jfunc)));
3890 : 176 : ok = try_decrement_rdesc_refcount (jfunc);
3891 : 176 : gcc_checking_assert (ok);
3892 : : }
3893 : :
3894 : : return cs;
3895 : : }
3896 : :
3897 : : /* Return the target to be used in cases of impossible devirtualization. IE
3898 : : and target (the latter can be NULL) are dumped when dumping is enabled. */
3899 : :
3900 : : tree
3901 : 468 : ipa_impossible_devirt_target (struct cgraph_edge *ie, tree target)
3902 : : {
3903 : 468 : if (dump_file)
3904 : : {
3905 : 33 : if (target)
3906 : 18 : fprintf (dump_file,
3907 : : "Type inconsistent devirtualization: %s->%s\n",
3908 : 18 : ie->caller->dump_name (),
3909 : 18 : IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (target)));
3910 : : else
3911 : 15 : fprintf (dump_file,
3912 : : "No devirtualization target in %s\n",
3913 : 15 : ie->caller->dump_name ());
3914 : : }
3915 : 468 : tree new_target = builtin_decl_unreachable ();
3916 : 468 : cgraph_node::get_create (new_target);
3917 : 468 : return new_target;
3918 : : }
3919 : :
3920 : : /* Try to find a destination for indirect edge IE that corresponds to a virtual
3921 : : call based on a formal parameter which is described by jump function JFUNC
3922 : : and if it can be determined, make it direct and return the direct edge.
3923 : : Otherwise, return NULL. CTX describes the polymorphic context that the
3924 : : parameter the call is based on brings along with it. NEW_ROOT and
3925 : : NEW_ROOT_INFO is the node and its info that JFUNC lattices are relative
3926 : : to. */
3927 : :
3928 : : static struct cgraph_edge *
3929 : 18070 : try_make_edge_direct_virtual_call (struct cgraph_edge *ie,
3930 : : struct ipa_jump_func *jfunc,
3931 : : class ipa_polymorphic_call_context ctx,
3932 : : struct cgraph_node *new_root,
3933 : : class ipa_node_params *new_root_info)
3934 : : {
3935 : 18070 : tree target = NULL;
3936 : 18070 : bool speculative = false;
3937 : :
3938 : 18070 : if (!opt_for_fn (ie->caller->decl, flag_devirtualize))
3939 : : return NULL;
3940 : :
3941 : 18070 : gcc_assert (!ie->indirect_info->by_ref);
3942 : :
3943 : : /* Try to do lookup via known virtual table pointer value. */
3944 : 18070 : if (!ie->indirect_info->vptr_changed
3945 : 18070 : || opt_for_fn (ie->caller->decl, flag_devirtualize_speculatively))
3946 : : {
3947 : 18070 : tree vtable;
3948 : 18070 : unsigned HOST_WIDE_INT offset;
3949 : 18070 : tree t = NULL_TREE;
3950 : 18070 : if (jfunc->type == IPA_JF_CONST)
3951 : 316 : t = ipa_find_agg_cst_from_init (ipa_get_jf_constant (jfunc),
3952 : : ie->indirect_info->offset, true);
3953 : 316 : if (!t)
3954 : 18067 : t = ipa_find_agg_cst_from_jfunc_items (&jfunc->agg, new_root_info,
3955 : : new_root,
3956 : 18067 : ie->indirect_info->offset, true);
3957 : 18070 : if (t && vtable_pointer_value_to_vtable (t, &vtable, &offset))
3958 : : {
3959 : 419 : bool can_refer;
3960 : 419 : t = gimple_get_virt_method_for_vtable (ie->indirect_info->otr_token,
3961 : : vtable, offset, &can_refer);
3962 : 419 : if (can_refer)
3963 : : {
3964 : 402 : if (!t
3965 : 402 : || fndecl_built_in_p (t, BUILT_IN_UNREACHABLE,
3966 : : BUILT_IN_UNREACHABLE_TRAP)
3967 : 756 : || !possible_polymorphic_call_target_p
3968 : 354 : (ie, cgraph_node::get (t)))
3969 : : {
3970 : : /* Do not speculate builtin_unreachable, it is stupid! */
3971 : 88 : if (!ie->indirect_info->vptr_changed)
3972 : 88 : target = ipa_impossible_devirt_target (ie, target);
3973 : : else
3974 : : target = NULL;
3975 : : }
3976 : : else
3977 : : {
3978 : 314 : target = t;
3979 : 314 : speculative = ie->indirect_info->vptr_changed;
3980 : : }
3981 : : }
3982 : : }
3983 : : }
3984 : :
3985 : 18070 : ipa_polymorphic_call_context ie_context (ie);
3986 : 18070 : vec <cgraph_node *>targets;
3987 : 18070 : bool final;
3988 : :
3989 : 18070 : ctx.offset_by (ie->indirect_info->offset);
3990 : 18070 : if (ie->indirect_info->vptr_changed)
3991 : 7269 : ctx.possible_dynamic_type_change (ie->in_polymorphic_cdtor,
3992 : : ie->indirect_info->otr_type);
3993 : 18070 : ctx.combine_with (ie_context, ie->indirect_info->otr_type);
3994 : 18070 : targets = possible_polymorphic_call_targets
3995 : 36140 : (ie->indirect_info->otr_type,
3996 : 18070 : ie->indirect_info->otr_token,
3997 : : ctx, &final);
3998 : 19603 : if (final && targets.length () <= 1)
3999 : : {
4000 : 1467 : speculative = false;
4001 : 1467 : if (targets.length () == 1)
4002 : 1416 : target = targets[0]->decl;
4003 : : else
4004 : 51 : target = ipa_impossible_devirt_target (ie, NULL_TREE);
4005 : : }
4006 : 16567 : else if (!target && opt_for_fn (ie->caller->decl, flag_devirtualize_speculatively)
4007 : 33097 : && !ie->speculative && ie->maybe_hot_p ())
4008 : : {
4009 : 12159 : cgraph_node *n;
4010 : 24318 : n = try_speculative_devirtualization (ie->indirect_info->otr_type,
4011 : : ie->indirect_info->otr_token,
4012 : 12159 : ie->indirect_info->context);
4013 : 12159 : if (n)
4014 : : {
4015 : 9 : target = n->decl;
4016 : 9 : speculative = true;
4017 : : }
4018 : : }
4019 : :
4020 : 18070 : if (target)
4021 : : {
4022 : 1512 : if (!possible_polymorphic_call_target_p
4023 : 1512 : (ie, cgraph_node::get_create (target)))
4024 : : {
4025 : 48 : if (speculative)
4026 : : return NULL;
4027 : 48 : target = ipa_impossible_devirt_target (ie, target);
4028 : : }
4029 : 1512 : return ipa_make_edge_direct_to_target (ie, target, speculative);
4030 : : }
4031 : : else
4032 : : return NULL;
4033 : : }
4034 : :
4035 : : /* Update the param called notes associated with NODE when CS is being inlined,
4036 : : assuming NODE is (potentially indirectly) inlined into CS->callee.
4037 : : Moreover, if the callee is discovered to be constant, create a new cgraph
4038 : : edge for it. Newly discovered indirect edges will be added to *NEW_EDGES,
4039 : : unless NEW_EDGES is NULL. Return true iff a new edge(s) were created. */
4040 : :
4041 : : static bool
4042 : 1306517 : update_indirect_edges_after_inlining (struct cgraph_edge *cs,
4043 : : struct cgraph_node *node,
4044 : : vec<cgraph_edge *> *new_edges)
4045 : : {
4046 : 1306517 : class ipa_edge_args *top;
4047 : 1306517 : struct cgraph_edge *ie, *next_ie, *new_direct_edge;
4048 : 1306517 : struct cgraph_node *new_root;
4049 : 1306517 : class ipa_node_params *new_root_info, *inlined_node_info;
4050 : 1306517 : bool res = false;
4051 : :
4052 : 1306517 : ipa_check_create_edge_args ();
4053 : 1306517 : top = ipa_edge_args_sum->get (cs);
4054 : 2613034 : new_root = cs->caller->inlined_to
4055 : 1306517 : ? cs->caller->inlined_to : cs->caller;
4056 : 1306517 : new_root_info = ipa_node_params_sum->get (new_root);
4057 : 1306517 : inlined_node_info = ipa_node_params_sum->get (cs->callee->function_symbol ());
4058 : :
4059 : 1374939 : for (ie = node->indirect_calls; ie; ie = next_ie)
4060 : : {
4061 : 68422 : class cgraph_indirect_call_info *ici = ie->indirect_info;
4062 : 68422 : struct ipa_jump_func *jfunc;
4063 : 68422 : int param_index;
4064 : :
4065 : 68422 : next_ie = ie->next_callee;
4066 : :
4067 : 68422 : if (ici->param_index == -1)
4068 : 83492 : continue;
4069 : :
4070 : : /* We must check range due to calls with variable number of arguments: */
4071 : 55347 : if (!top || ici->param_index >= ipa_get_cs_argument_count (top))
4072 : : {
4073 : 35 : ici->param_index = -1;
4074 : 35 : continue;
4075 : : }
4076 : :
4077 : 27655 : param_index = ici->param_index;
4078 : 27655 : jfunc = ipa_get_ith_jump_func (top, param_index);
4079 : :
4080 : 27655 : auto_vec<cgraph_node *, 4> spec_targets;
4081 : 27655 : if (ie->speculative)
4082 : 4253 : for (cgraph_edge *direct = ie->first_speculative_call_target ();
4083 : 8508 : direct;
4084 : 4255 : direct = direct->next_speculative_call_target ())
4085 : 4255 : spec_targets.safe_push (direct->callee);
4086 : :
4087 : 27655 : if (!opt_for_fn (node->decl, flag_indirect_inlining))
4088 : 174 : new_direct_edge = NULL;
4089 : 27481 : else if (ici->polymorphic)
4090 : : {
4091 : 18070 : ipa_polymorphic_call_context ctx;
4092 : 18070 : ctx = ipa_context_from_jfunc (new_root_info, cs, param_index, jfunc);
4093 : 18070 : new_direct_edge = try_make_edge_direct_virtual_call (ie, jfunc, ctx,
4094 : : new_root,
4095 : : new_root_info);
4096 : : }
4097 : : else
4098 : : {
4099 : 9411 : tree target_type = ipa_get_type (inlined_node_info, param_index);
4100 : 9411 : new_direct_edge = try_make_edge_direct_simple_call (ie, jfunc,
4101 : : target_type,
4102 : : new_root,
4103 : : new_root_info);
4104 : : }
4105 : :
4106 : : /* If speculation was removed, then we need to do nothing. */
4107 : 2008 : if (new_direct_edge && new_direct_edge != ie
4108 : 27910 : && spec_targets.contains (new_direct_edge->callee))
4109 : : {
4110 : 240 : new_direct_edge->indirect_inlining_edge = 1;
4111 : 240 : res = true;
4112 : 240 : if (!new_direct_edge->speculative)
4113 : 240 : continue;
4114 : : }
4115 : 27415 : else if (new_direct_edge)
4116 : : {
4117 : 1768 : new_direct_edge->indirect_inlining_edge = 1;
4118 : 1768 : if (new_edges)
4119 : : {
4120 : 1727 : new_edges->safe_push (new_direct_edge);
4121 : 1727 : res = true;
4122 : : }
4123 : : /* If speculative edge was introduced we still need to update
4124 : : call info of the indirect edge. */
4125 : 1768 : if (!new_direct_edge->speculative)
4126 : 1753 : continue;
4127 : : }
4128 : 25662 : if (jfunc->type == IPA_JF_PASS_THROUGH
4129 : 25662 : && ipa_get_jf_pass_through_operation (jfunc) == NOP_EXPR)
4130 : : {
4131 : 5526 : if (ici->agg_contents
4132 : 1497 : && !ipa_get_jf_pass_through_agg_preserved (jfunc)
4133 : 6514 : && !ici->polymorphic)
4134 : 988 : ici->param_index = -1;
4135 : : else
4136 : : {
4137 : 4538 : ici->param_index = ipa_get_jf_pass_through_formal_id (jfunc);
4138 : 4538 : if (ici->polymorphic
4139 : 4538 : && !ipa_get_jf_pass_through_type_preserved (jfunc))
4140 : 1924 : ici->vptr_changed = true;
4141 : 4538 : ipa_set_param_used_by_indirect_call (new_root_info,
4142 : : ici->param_index, true);
4143 : 4538 : if (ici->polymorphic)
4144 : 3167 : ipa_set_param_used_by_polymorphic_call (new_root_info,
4145 : : ici->param_index, true);
4146 : : }
4147 : : }
4148 : 20136 : else if (jfunc->type == IPA_JF_ANCESTOR)
4149 : : {
4150 : 329 : if (ici->agg_contents
4151 : 100 : && !ipa_get_jf_ancestor_agg_preserved (jfunc)
4152 : 353 : && !ici->polymorphic)
4153 : 24 : ici->param_index = -1;
4154 : : else
4155 : : {
4156 : 305 : ici->param_index = ipa_get_jf_ancestor_formal_id (jfunc);
4157 : 305 : ici->offset += ipa_get_jf_ancestor_offset (jfunc);
4158 : 305 : if (ici->polymorphic
4159 : 305 : && !ipa_get_jf_ancestor_type_preserved (jfunc))
4160 : 198 : ici->vptr_changed = true;
4161 : 305 : ipa_set_param_used_by_indirect_call (new_root_info,
4162 : : ici->param_index, true);
4163 : 305 : if (ici->polymorphic)
4164 : 229 : ipa_set_param_used_by_polymorphic_call (new_root_info,
4165 : : ici->param_index, true);
4166 : : }
4167 : : }
4168 : : else
4169 : : /* Either we can find a destination for this edge now or never. */
4170 : 19807 : ici->param_index = -1;
4171 : 27655 : }
4172 : :
4173 : 1306517 : return res;
4174 : : }
4175 : :
4176 : : /* Recursively traverse subtree of NODE (including node) made of inlined
4177 : : cgraph_edges when CS has been inlined and invoke
4178 : : update_indirect_edges_after_inlining on all nodes and
4179 : : update_jump_functions_after_inlining on all non-inlined edges that lead out
4180 : : of this subtree. Newly discovered indirect edges will be added to
4181 : : *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were
4182 : : created. */
4183 : :
4184 : : static bool
4185 : 1306517 : propagate_info_to_inlined_callees (struct cgraph_edge *cs,
4186 : : struct cgraph_node *node,
4187 : : vec<cgraph_edge *> *new_edges)
4188 : : {
4189 : 1306517 : struct cgraph_edge *e;
4190 : 1306517 : bool res;
4191 : :
4192 : 1306517 : res = update_indirect_edges_after_inlining (cs, node, new_edges);
4193 : :
4194 : 3793868 : for (e = node->callees; e; e = e->next_callee)
4195 : 2487351 : if (!e->inline_failed)
4196 : 473413 : res |= propagate_info_to_inlined_callees (cs, e->callee, new_edges);
4197 : : else
4198 : 2013938 : update_jump_functions_after_inlining (cs, e);
4199 : 1372946 : for (e = node->indirect_calls; e; e = e->next_callee)
4200 : 66429 : update_jump_functions_after_inlining (cs, e);
4201 : :
4202 : 1306517 : return res;
4203 : : }
4204 : :
4205 : : /* Combine two controlled uses counts as done during inlining. */
4206 : :
4207 : : static int
4208 : 322541 : combine_controlled_uses_counters (int c, int d)
4209 : : {
4210 : 0 : if (c == IPA_UNDESCRIBED_USE || d == IPA_UNDESCRIBED_USE)
4211 : : return IPA_UNDESCRIBED_USE;
4212 : : else
4213 : 91199 : return c + d - 1;
4214 : : }
4215 : :
4216 : : /* Propagate number of controlled users from CS->caleee to the new root of the
4217 : : tree of inlined nodes. */
4218 : :
4219 : : static void
4220 : 833104 : propagate_controlled_uses (struct cgraph_edge *cs)
4221 : : {
4222 : 833104 : ipa_edge_args *args = ipa_edge_args_sum->get (cs);
4223 : 833104 : if (!args)
4224 : : return;
4225 : 1663260 : struct cgraph_node *new_root = cs->caller->inlined_to
4226 : 831630 : ? cs->caller->inlined_to : cs->caller;
4227 : 831630 : ipa_node_params *new_root_info = ipa_node_params_sum->get (new_root);
4228 : 831630 : ipa_node_params *old_root_info = ipa_node_params_sum->get (cs->callee);
4229 : 831630 : int count, i;
4230 : :
4231 : 831630 : if (!old_root_info)
4232 : : return;
4233 : :
4234 : 1602841 : count = MIN (ipa_get_cs_argument_count (args),
4235 : : ipa_get_param_count (old_root_info));
4236 : 2411511 : for (i = 0; i < count; i++)
4237 : : {
4238 : 1579960 : struct ipa_jump_func *jf = ipa_get_ith_jump_func (args, i);
4239 : 1579960 : struct ipa_cst_ref_desc *rdesc;
4240 : :
4241 : 1579960 : if (jf->type == IPA_JF_PASS_THROUGH
4242 : 1579960 : && !ipa_get_jf_pass_through_refdesc_decremented (jf))
4243 : : {
4244 : 278283 : int src_idx, c, d;
4245 : 278283 : src_idx = ipa_get_jf_pass_through_formal_id (jf);
4246 : 278283 : c = ipa_get_controlled_uses (new_root_info, src_idx);
4247 : 278283 : d = ipa_get_controlled_uses (old_root_info, i);
4248 : :
4249 : 278283 : gcc_checking_assert (ipa_get_jf_pass_through_operation (jf)
4250 : : == NOP_EXPR || c == IPA_UNDESCRIBED_USE);
4251 : 278283 : c = combine_controlled_uses_counters (c, d);
4252 : 278283 : ipa_set_controlled_uses (new_root_info, src_idx, c);
4253 : 278283 : bool lderef = true;
4254 : 278283 : if (c != IPA_UNDESCRIBED_USE)
4255 : : {
4256 : 84236 : lderef = (ipa_get_param_load_dereferenced (new_root_info, src_idx)
4257 : 84236 : || ipa_get_param_load_dereferenced (old_root_info, i));
4258 : 84236 : ipa_set_param_load_dereferenced (new_root_info, src_idx, lderef);
4259 : : }
4260 : :
4261 : 278283 : if (c == 0 && !lderef && new_root_info->ipcp_orig_node)
4262 : : {
4263 : 176 : struct cgraph_node *n;
4264 : 176 : struct ipa_ref *ref;
4265 : 176 : tree t = new_root_info->known_csts[src_idx];
4266 : :
4267 : 308 : if (t && TREE_CODE (t) == ADDR_EXPR
4268 : 132 : && TREE_CODE (TREE_OPERAND (t, 0)) == FUNCTION_DECL
4269 : 4 : && (n = cgraph_node::get (TREE_OPERAND (t, 0)))
4270 : 180 : && (ref = new_root->find_reference (n, NULL, 0,
4271 : : IPA_REF_ADDR)))
4272 : : {
4273 : 4 : if (dump_file)
4274 : 1 : fprintf (dump_file, "ipa-prop: Removing cloning-created "
4275 : : "reference from %s to %s.\n",
4276 : : new_root->dump_name (),
4277 : : n->dump_name ());
4278 : 4 : ref->remove_reference ();
4279 : : }
4280 : : }
4281 : : }
4282 : 1301677 : else if (jf->type == IPA_JF_CONST
4283 : 1301677 : && (rdesc = jfunc_rdesc_usable (jf)))
4284 : : {
4285 : 44258 : int d = ipa_get_controlled_uses (old_root_info, i);
4286 : 44258 : int c = rdesc->refcount;
4287 : 44258 : tree cst = ipa_get_jf_constant (jf);
4288 : 44258 : rdesc->refcount = combine_controlled_uses_counters (c, d);
4289 : 44258 : if (rdesc->refcount != IPA_UNDESCRIBED_USE
4290 : 6963 : && ipa_get_param_load_dereferenced (old_root_info, i)
4291 : 1485 : && TREE_CODE (cst) == ADDR_EXPR
4292 : 45743 : && VAR_P (TREE_OPERAND (cst, 0)))
4293 : : {
4294 : 1484 : symtab_node *n = symtab_node::get (TREE_OPERAND (cst, 0));
4295 : 1484 : new_root->create_reference (n, IPA_REF_LOAD, NULL);
4296 : 1484 : if (dump_file)
4297 : 3 : fprintf (dump_file, "ipa-prop: Address IPA constant will reach "
4298 : : "a load so adding LOAD reference from %s to %s.\n",
4299 : : new_root->dump_name (), n->dump_name ());
4300 : : }
4301 : 44258 : if (rdesc->refcount == 0)
4302 : : {
4303 : 5002 : gcc_checking_assert (TREE_CODE (cst) == ADDR_EXPR
4304 : : && ((TREE_CODE (TREE_OPERAND (cst, 0))
4305 : : == FUNCTION_DECL)
4306 : : || VAR_P (TREE_OPERAND (cst, 0))));
4307 : :
4308 : 5002 : symtab_node *n = symtab_node::get (TREE_OPERAND (cst, 0));
4309 : 5002 : if (n)
4310 : : {
4311 : 5002 : remove_described_reference (n, rdesc);
4312 : 5002 : cgraph_node *clone = cs->caller;
4313 : 5002 : while (clone->inlined_to
4314 : 959 : && clone->ipcp_clone
4315 : 5171 : && clone != rdesc->cs->caller)
4316 : : {
4317 : 63 : struct ipa_ref *ref;
4318 : 63 : ref = clone->find_reference (n, NULL, 0, IPA_REF_ADDR);
4319 : 63 : if (ref)
4320 : : {
4321 : 63 : if (dump_file)
4322 : 1 : fprintf (dump_file, "ipa-prop: Removing "
4323 : : "cloning-created reference "
4324 : : "from %s to %s.\n",
4325 : : clone->dump_name (),
4326 : : n->dump_name ());
4327 : 63 : ref->remove_reference ();
4328 : : }
4329 : 63 : clone = clone->callers->caller;
4330 : : }
4331 : : }
4332 : : }
4333 : : }
4334 : : }
4335 : :
4336 : 1602932 : for (i = ipa_get_param_count (old_root_info);
4337 : 1603479 : i < ipa_get_cs_argument_count (args);
4338 : : i++)
4339 : : {
4340 : 319 : struct ipa_jump_func *jf = ipa_get_ith_jump_func (args, i);
4341 : :
4342 : 319 : if (jf->type == IPA_JF_CONST)
4343 : : {
4344 : 288 : struct ipa_cst_ref_desc *rdesc = jfunc_rdesc_usable (jf);
4345 : 288 : if (rdesc)
4346 : 232 : rdesc->refcount = IPA_UNDESCRIBED_USE;
4347 : : }
4348 : 31 : else if (jf->type == IPA_JF_PASS_THROUGH)
4349 : 5 : ipa_set_controlled_uses (new_root_info,
4350 : : jf->value.pass_through.formal_id,
4351 : : IPA_UNDESCRIBED_USE);
4352 : : }
4353 : : }
4354 : :
4355 : : /* Update jump functions and call note functions on inlining the call site CS.
4356 : : CS is expected to lead to a node already cloned by
4357 : : cgraph_clone_inline_nodes. Newly discovered indirect edges will be added to
4358 : : *NEW_EDGES, unless NEW_EDGES is NULL. Return true iff a new edge(s) were +
4359 : : created. */
4360 : :
4361 : : bool
4362 : 3380466 : ipa_propagate_indirect_call_infos (struct cgraph_edge *cs,
4363 : : vec<cgraph_edge *> *new_edges)
4364 : : {
4365 : 3380466 : bool changed;
4366 : : /* Do nothing if the preparation phase has not been carried out yet
4367 : : (i.e. during early inlining). */
4368 : 3380466 : if (!ipa_node_params_sum)
4369 : : return false;
4370 : 833104 : gcc_assert (ipa_edge_args_sum);
4371 : :
4372 : 833104 : propagate_controlled_uses (cs);
4373 : 833104 : changed = propagate_info_to_inlined_callees (cs, cs->callee, new_edges);
4374 : 833104 : ipa_node_params_sum->remove (cs->callee);
4375 : :
4376 : 833104 : ipa_edge_args *args = ipa_edge_args_sum->get (cs);
4377 : 833104 : if (args)
4378 : : {
4379 : 831630 : bool ok = true;
4380 : 831630 : if (args->jump_functions)
4381 : : {
4382 : : struct ipa_jump_func *jf;
4383 : : int i;
4384 : 2197987 : FOR_EACH_VEC_ELT (*args->jump_functions, i, jf)
4385 : 1474169 : if (jf->type == IPA_JF_CONST
4386 : 1474169 : && ipa_get_jf_constant_rdesc (jf))
4387 : : {
4388 : : ok = false;
4389 : : break;
4390 : : }
4391 : : }
4392 : 771369 : if (ok)
4393 : 784079 : ipa_edge_args_sum->remove (cs);
4394 : : }
4395 : 833104 : if (ipcp_transformation_sum)
4396 : 592956 : ipcp_transformation_sum->remove (cs->callee);
4397 : :
4398 : : return changed;
4399 : : }
4400 : :
4401 : : /* Ensure that array of edge arguments infos is big enough to accommodate a
4402 : : structure for all edges and reallocates it if not. Also, allocate
4403 : : associated hash tables is they do not already exist. */
4404 : :
4405 : : void
4406 : 4318266 : ipa_check_create_edge_args (void)
4407 : : {
4408 : 4318266 : if (!ipa_edge_args_sum)
4409 : 233259 : ipa_edge_args_sum
4410 : 233259 : = (new (ggc_alloc_no_dtor<ipa_edge_args_sum_t> ())
4411 : 233259 : ipa_edge_args_sum_t (symtab, true));
4412 : 4318266 : if (!ipa_vr_hash_table)
4413 : 164239 : ipa_vr_hash_table = hash_table<ipa_vr_ggc_hash_traits>::create_ggc (37);
4414 : 4318266 : }
4415 : :
4416 : : /* Free all ipa_edge structures. */
4417 : :
4418 : : void
4419 : 442384 : ipa_free_all_edge_args (void)
4420 : : {
4421 : 442384 : if (!ipa_edge_args_sum)
4422 : : return;
4423 : :
4424 : 221097 : ggc_delete (ipa_edge_args_sum);
4425 : 221097 : ipa_edge_args_sum = NULL;
4426 : : }
4427 : :
4428 : : /* Free all ipa_node_params structures. */
4429 : :
4430 : : void
4431 : 4968013 : ipa_free_all_node_params (void)
4432 : : {
4433 : 4968013 : if (ipa_node_params_sum)
4434 : 4746726 : ggc_delete (ipa_node_params_sum);
4435 : 4968013 : ipa_node_params_sum = NULL;
4436 : 4968013 : }
4437 : :
4438 : : /* Initialize IPA CP transformation summary and also allocate any necessary hash
4439 : : tables if they do not already exist. */
4440 : :
4441 : : void
4442 : 81892 : ipcp_transformation_initialize (void)
4443 : : {
4444 : 81892 : if (!ipa_vr_hash_table)
4445 : 1775 : ipa_vr_hash_table = hash_table<ipa_vr_ggc_hash_traits>::create_ggc (37);
4446 : 81892 : if (ipcp_transformation_sum == NULL)
4447 : : {
4448 : 18262 : ipcp_transformation_sum = ipcp_transformation_t::create_ggc (symtab);
4449 : 18262 : ipcp_transformation_sum->disable_insertion_hook ();
4450 : : }
4451 : 81892 : }
4452 : :
4453 : : /* Release the IPA CP transformation summary. */
4454 : :
4455 : : void
4456 : 246503 : ipcp_free_transformation_sum (void)
4457 : : {
4458 : 246503 : if (!ipcp_transformation_sum)
4459 : : return;
4460 : :
4461 : 18253 : ipcp_transformation_sum->~function_summary<ipcp_transformation *> ();
4462 : 18253 : ggc_free (ipcp_transformation_sum);
4463 : 18253 : ipcp_transformation_sum = NULL;
4464 : : }
4465 : :
4466 : : /* Set the aggregate replacements of NODE to be AGGVALS. */
4467 : :
4468 : : void
4469 : 17543 : ipa_set_node_agg_value_chain (struct cgraph_node *node,
4470 : : vec<ipa_argagg_value, va_gc> *aggs)
4471 : : {
4472 : 17543 : ipcp_transformation_initialize ();
4473 : 17543 : ipcp_transformation *s = ipcp_transformation_sum->get_create (node);
4474 : 17543 : s->m_agg_values = aggs;
4475 : 17543 : }
4476 : :
4477 : : /* Hook that is called by cgraph.cc when an edge is removed. Adjust reference
4478 : : count data structures accordingly. */
4479 : :
4480 : : void
4481 : 0 : ipa_edge_args_sum_t::remove (cgraph_edge *cs, ipa_edge_args *args)
4482 : : {
4483 : 0 : if (args->jump_functions)
4484 : : {
4485 : : struct ipa_jump_func *jf;
4486 : : int i;
4487 : 0 : FOR_EACH_VEC_ELT (*args->jump_functions, i, jf)
4488 : : {
4489 : 0 : struct ipa_cst_ref_desc *rdesc;
4490 : 0 : try_decrement_rdesc_refcount (jf);
4491 : 0 : if (jf->type == IPA_JF_CONST
4492 : 0 : && (rdesc = ipa_get_jf_constant_rdesc (jf))
4493 : 0 : && rdesc->cs == cs)
4494 : 0 : rdesc->cs = NULL;
4495 : : }
4496 : : }
4497 : 0 : }
4498 : :
4499 : : /* Method invoked when an edge is duplicated. Copy ipa_edge_args and adjust
4500 : : reference count data strucutres accordingly. */
4501 : :
4502 : : void
4503 : 926462 : ipa_edge_args_sum_t::duplicate (cgraph_edge *src, cgraph_edge *dst,
4504 : : ipa_edge_args *old_args, ipa_edge_args *new_args)
4505 : : {
4506 : 926462 : unsigned int i;
4507 : :
4508 : 926462 : new_args->jump_functions = vec_safe_copy (old_args->jump_functions);
4509 : 926462 : if (old_args->polymorphic_call_contexts)
4510 : 116778 : new_args->polymorphic_call_contexts
4511 : 116778 : = vec_safe_copy (old_args->polymorphic_call_contexts);
4512 : :
4513 : 5978955 : for (i = 0; i < vec_safe_length (old_args->jump_functions); i++)
4514 : : {
4515 : 2080920 : struct ipa_jump_func *src_jf = ipa_get_ith_jump_func (old_args, i);
4516 : 2080920 : struct ipa_jump_func *dst_jf = ipa_get_ith_jump_func (new_args, i);
4517 : :
4518 : 2080920 : dst_jf->agg.items = vec_safe_copy (dst_jf->agg.items);
4519 : :
4520 : 2080920 : if (src_jf->type == IPA_JF_CONST)
4521 : : {
4522 : 771701 : struct ipa_cst_ref_desc *src_rdesc = jfunc_rdesc_usable (src_jf);
4523 : :
4524 : 771701 : if (!src_rdesc)
4525 : 643719 : dst_jf->value.constant.rdesc = NULL;
4526 : 127982 : else if (src->caller == dst->caller)
4527 : : {
4528 : : /* Creation of a speculative edge. If the source edge is the one
4529 : : grabbing a reference, we must create a new (duplicate)
4530 : : reference description. Otherwise they refer to the same
4531 : : description corresponding to a reference taken in a function
4532 : : src->caller is inlined to. In that case we just must
4533 : : increment the refcount. */
4534 : 16 : if (src_rdesc->cs == src)
4535 : : {
4536 : 16 : symtab_node *n = symtab_node_for_jfunc (src_jf);
4537 : 16 : gcc_checking_assert (n);
4538 : 16 : ipa_ref *ref
4539 : 16 : = src->caller->find_reference (n, src->call_stmt,
4540 : : src->lto_stmt_uid,
4541 : : IPA_REF_ADDR);
4542 : 16 : gcc_checking_assert (ref);
4543 : 16 : dst->caller->clone_reference (ref, ref->stmt);
4544 : :
4545 : 16 : ipa_cst_ref_desc *dst_rdesc = ipa_refdesc_pool.allocate ();
4546 : 16 : dst_rdesc->cs = dst;
4547 : 16 : dst_rdesc->refcount = src_rdesc->refcount;
4548 : 16 : dst_rdesc->next_duplicate = NULL;
4549 : 16 : dst_jf->value.constant.rdesc = dst_rdesc;
4550 : : }
4551 : : else
4552 : : {
4553 : 0 : src_rdesc->refcount++;
4554 : 0 : dst_jf->value.constant.rdesc = src_rdesc;
4555 : : }
4556 : : }
4557 : 127966 : else if (src_rdesc->cs == src)
4558 : : {
4559 : 127887 : struct ipa_cst_ref_desc *dst_rdesc = ipa_refdesc_pool.allocate ();
4560 : 127887 : dst_rdesc->cs = dst;
4561 : 127887 : dst_rdesc->refcount = src_rdesc->refcount;
4562 : 127887 : dst_rdesc->next_duplicate = src_rdesc->next_duplicate;
4563 : 127887 : src_rdesc->next_duplicate = dst_rdesc;
4564 : 127887 : dst_jf->value.constant.rdesc = dst_rdesc;
4565 : : }
4566 : : else
4567 : : {
4568 : 79 : struct ipa_cst_ref_desc *dst_rdesc;
4569 : : /* This can happen during inlining, when a JFUNC can refer to a
4570 : : reference taken in a function up in the tree of inline clones.
4571 : : We need to find the duplicate that refers to our tree of
4572 : : inline clones. */
4573 : :
4574 : 79 : gcc_assert (dst->caller->inlined_to);
4575 : 79 : for (dst_rdesc = src_rdesc->next_duplicate;
4576 : 79 : dst_rdesc;
4577 : 0 : dst_rdesc = dst_rdesc->next_duplicate)
4578 : : {
4579 : 79 : struct cgraph_node *top;
4580 : 158 : top = dst_rdesc->cs->caller->inlined_to
4581 : 79 : ? dst_rdesc->cs->caller->inlined_to
4582 : : : dst_rdesc->cs->caller;
4583 : 79 : if (dst->caller->inlined_to == top)
4584 : : break;
4585 : : }
4586 : 0 : gcc_assert (dst_rdesc);
4587 : 79 : dst_jf->value.constant.rdesc = dst_rdesc;
4588 : : }
4589 : : }
4590 : 1309219 : else if (dst_jf->type == IPA_JF_PASS_THROUGH
4591 : 545203 : && src->caller == dst->caller)
4592 : : {
4593 : 7616 : struct cgraph_node *inline_root = dst->caller->inlined_to
4594 : 3808 : ? dst->caller->inlined_to : dst->caller;
4595 : 3808 : ipa_node_params *root_info = ipa_node_params_sum->get (inline_root);
4596 : 3808 : int idx = ipa_get_jf_pass_through_formal_id (dst_jf);
4597 : :
4598 : 3808 : int c = ipa_get_controlled_uses (root_info, idx);
4599 : 3808 : if (c != IPA_UNDESCRIBED_USE)
4600 : : {
4601 : 703 : c++;
4602 : 703 : ipa_set_controlled_uses (root_info, idx, c);
4603 : : }
4604 : : }
4605 : : }
4606 : 926462 : }
4607 : :
4608 : : /* Analyze newly added function into callgraph. */
4609 : :
4610 : : static void
4611 : 38604 : ipa_add_new_function (cgraph_node *node, void *data ATTRIBUTE_UNUSED)
4612 : : {
4613 : 38604 : if (node->has_gimple_body_p ())
4614 : 38604 : ipa_analyze_node (node);
4615 : 38604 : }
4616 : :
4617 : : /* Hook that is called by summary when a node is duplicated. */
4618 : :
4619 : : void
4620 : 678875 : ipa_node_params_t::duplicate(cgraph_node *, cgraph_node *,
4621 : : ipa_node_params *old_info,
4622 : : ipa_node_params *new_info)
4623 : : {
4624 : 678875 : new_info->descriptors = vec_safe_copy (old_info->descriptors);
4625 : 678875 : gcc_assert (new_info->lattices.is_empty ());
4626 : 678875 : new_info->ipcp_orig_node = old_info->ipcp_orig_node;
4627 : 678875 : new_info->known_csts = old_info->known_csts.copy ();
4628 : 678875 : new_info->known_contexts = old_info->known_contexts.copy ();
4629 : :
4630 : 678875 : new_info->analysis_done = old_info->analysis_done;
4631 : 678875 : new_info->node_enqueued = old_info->node_enqueued;
4632 : 678875 : new_info->versionable = old_info->versionable;
4633 : 678875 : }
4634 : :
4635 : : /* Duplication of ipcp transformation summaries. */
4636 : :
4637 : : void
4638 : 52760 : ipcp_transformation_t::duplicate(cgraph_node *, cgraph_node *dst,
4639 : : ipcp_transformation *src_trans,
4640 : : ipcp_transformation *dst_trans)
4641 : : {
4642 : : /* Avoid redundant work of duplicating vectors we will never use. */
4643 : 52760 : if (dst->inlined_to)
4644 : : return;
4645 : 6850 : dst_trans->m_agg_values = vec_safe_copy (src_trans->m_agg_values);
4646 : 12461 : dst_trans->m_vr = vec_safe_copy (src_trans->m_vr);
4647 : : }
4648 : :
4649 : : /* Register our cgraph hooks if they are not already there. */
4650 : :
4651 : : void
4652 : 363843 : ipa_register_cgraph_hooks (void)
4653 : : {
4654 : 363843 : ipa_check_create_node_params ();
4655 : 363843 : ipa_check_create_edge_args ();
4656 : :
4657 : 727686 : function_insertion_hook_holder =
4658 : 363843 : symtab->add_cgraph_insertion_hook (&ipa_add_new_function, NULL);
4659 : 363843 : }
4660 : :
4661 : : /* Unregister our cgraph hooks if they are not already there. */
4662 : :
4663 : : static void
4664 : 442384 : ipa_unregister_cgraph_hooks (void)
4665 : : {
4666 : 442384 : if (function_insertion_hook_holder)
4667 : 221097 : symtab->remove_cgraph_insertion_hook (function_insertion_hook_holder);
4668 : 442384 : function_insertion_hook_holder = NULL;
4669 : 442384 : }
4670 : :
4671 : : /* Free all ipa_node_params and all ipa_edge_args structures if they are no
4672 : : longer needed after ipa-cp. */
4673 : :
4674 : : void
4675 : 122326 : ipa_free_all_structures_after_ipa_cp (void)
4676 : : {
4677 : 122326 : if (!optimize && !in_lto_p)
4678 : : {
4679 : 0 : ipa_free_all_edge_args ();
4680 : 0 : ipa_free_all_node_params ();
4681 : 0 : ipcp_sources_pool.release ();
4682 : 0 : ipcp_cst_values_pool.release ();
4683 : 0 : ipcp_poly_ctx_values_pool.release ();
4684 : 0 : ipcp_agg_lattice_pool.release ();
4685 : 0 : ipa_unregister_cgraph_hooks ();
4686 : 0 : ipa_refdesc_pool.release ();
4687 : : }
4688 : 122326 : }
4689 : :
4690 : : /* Free all ipa_node_params and all ipa_edge_args structures if they are no
4691 : : longer needed after indirect inlining. */
4692 : :
4693 : : void
4694 : 442384 : ipa_free_all_structures_after_iinln (void)
4695 : : {
4696 : 442384 : ipa_free_all_edge_args ();
4697 : 442384 : ipa_free_all_node_params ();
4698 : 442384 : ipa_unregister_cgraph_hooks ();
4699 : 442384 : ipcp_sources_pool.release ();
4700 : 442384 : ipcp_cst_values_pool.release ();
4701 : 442384 : ipcp_poly_ctx_values_pool.release ();
4702 : 442384 : ipcp_agg_lattice_pool.release ();
4703 : 442384 : ipa_refdesc_pool.release ();
4704 : 442384 : }
4705 : :
4706 : : /* Print ipa_tree_map data structures of all functions in the
4707 : : callgraph to F. */
4708 : :
4709 : : void
4710 : 213 : ipa_print_node_params (FILE *f, struct cgraph_node *node)
4711 : : {
4712 : 213 : int i, count;
4713 : 213 : class ipa_node_params *info;
4714 : :
4715 : 213 : if (!node->definition)
4716 : : return;
4717 : 166 : info = ipa_node_params_sum->get (node);
4718 : 166 : fprintf (f, " function %s parameter descriptors:\n", node->dump_name ());
4719 : 166 : if (!info)
4720 : : {
4721 : 0 : fprintf (f, " no params return\n");
4722 : 0 : return;
4723 : : }
4724 : 166 : count = ipa_get_param_count (info);
4725 : 331 : for (i = 0; i < count; i++)
4726 : : {
4727 : 165 : int c;
4728 : :
4729 : 165 : fprintf (f, " ");
4730 : 165 : ipa_dump_param (f, info, i);
4731 : 165 : if (ipa_is_param_used (info, i))
4732 : 159 : fprintf (f, " used");
4733 : 165 : if (ipa_is_param_used_by_ipa_predicates (info, i))
4734 : 100 : fprintf (f, " used_by_ipa_predicates");
4735 : 165 : if (ipa_is_param_used_by_indirect_call (info, i))
4736 : 10 : fprintf (f, " used_by_indirect_call");
4737 : 165 : if (ipa_is_param_used_by_polymorphic_call (info, i))
4738 : 0 : fprintf (f, " used_by_polymorphic_call");
4739 : 165 : c = ipa_get_controlled_uses (info, i);
4740 : 165 : if (c == IPA_UNDESCRIBED_USE)
4741 : 96 : fprintf (f, " undescribed_use");
4742 : : else
4743 : 119 : fprintf (f, " controlled_uses=%i %s", c,
4744 : 69 : ipa_get_param_load_dereferenced (info, i)
4745 : : ? "(load_dereferenced)" : "");
4746 : 165 : fprintf (f, "\n");
4747 : : }
4748 : : }
4749 : :
4750 : : /* Print ipa_tree_map data structures of all functions in the
4751 : : callgraph to F. */
4752 : :
4753 : : void
4754 : 43 : ipa_print_all_params (FILE * f)
4755 : : {
4756 : 43 : struct cgraph_node *node;
4757 : :
4758 : 43 : fprintf (f, "\nFunction parameters:\n");
4759 : 486 : FOR_EACH_FUNCTION (node)
4760 : 200 : ipa_print_node_params (f, node);
4761 : 43 : }
4762 : :
4763 : : /* Stream out jump function JUMP_FUNC to OB. */
4764 : :
4765 : : static void
4766 : 601155 : ipa_write_jump_function (struct output_block *ob,
4767 : : struct ipa_jump_func *jump_func)
4768 : : {
4769 : 601155 : struct ipa_agg_jf_item *item;
4770 : 601155 : struct bitpack_d bp;
4771 : 601155 : int i, count;
4772 : 601155 : int flag = 0;
4773 : :
4774 : : /* ADDR_EXPRs are very comon IP invariants; save some streamer data
4775 : : as well as WPA memory by handling them specially. */
4776 : 601155 : if (jump_func->type == IPA_JF_CONST
4777 : 461810 : && TREE_CODE (jump_func->value.constant.value) == ADDR_EXPR)
4778 : 601155 : flag = 1;
4779 : :
4780 : 601155 : streamer_write_uhwi (ob, jump_func->type * 2 + flag);
4781 : 601155 : switch (jump_func->type)
4782 : : {
4783 : : case IPA_JF_UNKNOWN:
4784 : : break;
4785 : 461810 : case IPA_JF_CONST:
4786 : 461810 : gcc_assert (
4787 : : EXPR_LOCATION (jump_func->value.constant.value) == UNKNOWN_LOCATION);
4788 : 461810 : stream_write_tree (ob,
4789 : : flag
4790 : : ? TREE_OPERAND (jump_func->value.constant.value, 0)
4791 : : : jump_func->value.constant.value, true);
4792 : 461810 : break;
4793 : 75195 : case IPA_JF_PASS_THROUGH:
4794 : 75195 : streamer_write_uhwi (ob, jump_func->value.pass_through.operation);
4795 : 75195 : if (jump_func->value.pass_through.operation == NOP_EXPR)
4796 : : {
4797 : 74553 : streamer_write_uhwi (ob, jump_func->value.pass_through.formal_id);
4798 : 74553 : bp = bitpack_create (ob->main_stream);
4799 : 74553 : bp_pack_value (&bp, jump_func->value.pass_through.agg_preserved, 1);
4800 : 74553 : gcc_assert (!jump_func->value.pass_through.refdesc_decremented);
4801 : 74553 : streamer_write_bitpack (&bp);
4802 : : }
4803 : 642 : else if (TREE_CODE_CLASS (jump_func->value.pass_through.operation)
4804 : : == tcc_unary)
4805 : 34 : streamer_write_uhwi (ob, jump_func->value.pass_through.formal_id);
4806 : : else
4807 : : {
4808 : 608 : stream_write_tree (ob, jump_func->value.pass_through.operand, true);
4809 : 608 : streamer_write_uhwi (ob, jump_func->value.pass_through.formal_id);
4810 : : }
4811 : : break;
4812 : 1172 : case IPA_JF_ANCESTOR:
4813 : 1172 : streamer_write_uhwi (ob, jump_func->value.ancestor.offset);
4814 : 1172 : streamer_write_uhwi (ob, jump_func->value.ancestor.formal_id);
4815 : 1172 : bp = bitpack_create (ob->main_stream);
4816 : 1172 : bp_pack_value (&bp, jump_func->value.ancestor.agg_preserved, 1);
4817 : 1172 : bp_pack_value (&bp, jump_func->value.ancestor.keep_null, 1);
4818 : 1172 : streamer_write_bitpack (&bp);
4819 : 1172 : break;
4820 : 0 : default:
4821 : 0 : fatal_error (UNKNOWN_LOCATION, "invalid jump function in LTO stream");
4822 : : }
4823 : :
4824 : 601155 : count = vec_safe_length (jump_func->agg.items);
4825 : 601155 : streamer_write_uhwi (ob, count);
4826 : 601155 : if (count)
4827 : : {
4828 : 2927 : bp = bitpack_create (ob->main_stream);
4829 : 2927 : bp_pack_value (&bp, jump_func->agg.by_ref, 1);
4830 : 2927 : streamer_write_bitpack (&bp);
4831 : : }
4832 : :
4833 : 606749 : FOR_EACH_VEC_SAFE_ELT (jump_func->agg.items, i, item)
4834 : : {
4835 : 5594 : stream_write_tree (ob, item->type, true);
4836 : 5594 : streamer_write_uhwi (ob, item->offset);
4837 : 5594 : streamer_write_uhwi (ob, item->jftype);
4838 : 5594 : switch (item->jftype)
4839 : : {
4840 : : case IPA_JF_UNKNOWN:
4841 : : break;
4842 : 5081 : case IPA_JF_CONST:
4843 : 5081 : stream_write_tree (ob, item->value.constant, true);
4844 : 5081 : break;
4845 : 513 : case IPA_JF_PASS_THROUGH:
4846 : 513 : case IPA_JF_LOAD_AGG:
4847 : 513 : streamer_write_uhwi (ob, item->value.pass_through.operation);
4848 : 513 : streamer_write_uhwi (ob, item->value.pass_through.formal_id);
4849 : 513 : if (TREE_CODE_CLASS (item->value.pass_through.operation)
4850 : : != tcc_unary)
4851 : 4 : stream_write_tree (ob, item->value.pass_through.operand, true);
4852 : 513 : if (item->jftype == IPA_JF_LOAD_AGG)
4853 : : {
4854 : 84 : stream_write_tree (ob, item->value.load_agg.type, true);
4855 : 84 : streamer_write_uhwi (ob, item->value.load_agg.offset);
4856 : 84 : bp = bitpack_create (ob->main_stream);
4857 : 84 : bp_pack_value (&bp, item->value.load_agg.by_ref, 1);
4858 : 84 : streamer_write_bitpack (&bp);
4859 : : }
4860 : : break;
4861 : 0 : default:
4862 : 0 : fatal_error (UNKNOWN_LOCATION,
4863 : : "invalid jump function in LTO stream");
4864 : : }
4865 : : }
4866 : :
4867 : 601155 : bp = bitpack_create (ob->main_stream);
4868 : 601155 : if (jump_func->m_vr)
4869 : 417071 : jump_func->m_vr->streamer_write (ob);
4870 : : else
4871 : : {
4872 : 184084 : bp_pack_value (&bp, false, 1);
4873 : 184084 : streamer_write_bitpack (&bp);
4874 : : }
4875 : 601155 : }
4876 : :
4877 : : /* Read in jump function JUMP_FUNC from IB. */
4878 : :
4879 : : static void
4880 : 564207 : ipa_read_jump_function (class lto_input_block *ib,
4881 : : struct ipa_jump_func *jump_func,
4882 : : struct cgraph_edge *cs,
4883 : : class data_in *data_in,
4884 : : bool prevails)
4885 : : {
4886 : 564207 : enum jump_func_type jftype;
4887 : 564207 : enum tree_code operation;
4888 : 564207 : int i, count;
4889 : 564207 : int val = streamer_read_uhwi (ib);
4890 : 564207 : bool flag = val & 1;
4891 : :
4892 : 564207 : jftype = (enum jump_func_type) (val / 2);
4893 : 564207 : switch (jftype)
4894 : : {
4895 : 48570 : case IPA_JF_UNKNOWN:
4896 : 48570 : ipa_set_jf_unknown (jump_func);
4897 : 48570 : break;
4898 : 445970 : case IPA_JF_CONST:
4899 : 445970 : {
4900 : 445970 : tree t = stream_read_tree (ib, data_in);
4901 : 445970 : if (flag && prevails)
4902 : 161510 : t = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (t)), t);
4903 : 445970 : ipa_set_jf_constant (jump_func, t, cs);
4904 : : }
4905 : 445970 : break;
4906 : 69127 : case IPA_JF_PASS_THROUGH:
4907 : 69127 : operation = (enum tree_code) streamer_read_uhwi (ib);
4908 : 69127 : if (operation == NOP_EXPR)
4909 : : {
4910 : 68709 : int formal_id = streamer_read_uhwi (ib);
4911 : 68709 : struct bitpack_d bp = streamer_read_bitpack (ib);
4912 : 68709 : bool agg_preserved = bp_unpack_value (&bp, 1);
4913 : 68709 : ipa_set_jf_simple_pass_through (jump_func, formal_id, agg_preserved);
4914 : : }
4915 : 418 : else if (TREE_CODE_CLASS (operation) == tcc_unary)
4916 : : {
4917 : 18 : int formal_id = streamer_read_uhwi (ib);
4918 : 18 : ipa_set_jf_unary_pass_through (jump_func, formal_id, operation);
4919 : : }
4920 : : else
4921 : : {
4922 : 400 : tree operand = stream_read_tree (ib, data_in);
4923 : 400 : int formal_id = streamer_read_uhwi (ib);
4924 : 400 : ipa_set_jf_arith_pass_through (jump_func, formal_id, operand,
4925 : : operation);
4926 : : }
4927 : : break;
4928 : 540 : case IPA_JF_ANCESTOR:
4929 : 540 : {
4930 : 540 : HOST_WIDE_INT offset = streamer_read_uhwi (ib);
4931 : 540 : int formal_id = streamer_read_uhwi (ib);
4932 : 540 : struct bitpack_d bp = streamer_read_bitpack (ib);
4933 : 540 : bool agg_preserved = bp_unpack_value (&bp, 1);
4934 : 540 : bool keep_null = bp_unpack_value (&bp, 1);
4935 : 540 : ipa_set_ancestor_jf (jump_func, offset, formal_id, agg_preserved,
4936 : : keep_null);
4937 : 540 : break;
4938 : : }
4939 : 0 : default:
4940 : 0 : fatal_error (UNKNOWN_LOCATION, "invalid jump function in LTO stream");
4941 : : }
4942 : :
4943 : 564207 : count = streamer_read_uhwi (ib);
4944 : 564207 : if (prevails)
4945 : : {
4946 : 564201 : jump_func->agg.items = NULL;
4947 : 564201 : vec_safe_reserve (jump_func->agg.items, count, true);
4948 : : }
4949 : 564207 : if (count)
4950 : : {
4951 : 2592 : struct bitpack_d bp = streamer_read_bitpack (ib);
4952 : 2592 : jump_func->agg.by_ref = bp_unpack_value (&bp, 1);
4953 : : }
4954 : 569242 : for (i = 0; i < count; i++)
4955 : : {
4956 : 5035 : struct ipa_agg_jf_item item;
4957 : 5035 : item.type = stream_read_tree (ib, data_in);
4958 : 5035 : item.offset = streamer_read_uhwi (ib);
4959 : 5035 : item.jftype = (enum jump_func_type) streamer_read_uhwi (ib);
4960 : :
4961 : 5035 : switch (item.jftype)
4962 : : {
4963 : : case IPA_JF_UNKNOWN:
4964 : : break;
4965 : 4618 : case IPA_JF_CONST:
4966 : 4618 : item.value.constant = stream_read_tree (ib, data_in);
4967 : 4618 : break;
4968 : 417 : case IPA_JF_PASS_THROUGH:
4969 : 417 : case IPA_JF_LOAD_AGG:
4970 : 417 : operation = (enum tree_code) streamer_read_uhwi (ib);
4971 : 417 : item.value.pass_through.operation = operation;
4972 : 417 : item.value.pass_through.formal_id = streamer_read_uhwi (ib);
4973 : 417 : if (TREE_CODE_CLASS (operation) == tcc_unary)
4974 : 417 : item.value.pass_through.operand = NULL_TREE;
4975 : : else
4976 : 0 : item.value.pass_through.operand = stream_read_tree (ib, data_in);
4977 : 417 : if (item.jftype == IPA_JF_LOAD_AGG)
4978 : : {
4979 : 34 : struct bitpack_d bp;
4980 : 34 : item.value.load_agg.type = stream_read_tree (ib, data_in);
4981 : 34 : item.value.load_agg.offset = streamer_read_uhwi (ib);
4982 : 34 : bp = streamer_read_bitpack (ib);
4983 : 34 : item.value.load_agg.by_ref = bp_unpack_value (&bp, 1);
4984 : : }
4985 : : break;
4986 : 0 : default:
4987 : 0 : fatal_error (UNKNOWN_LOCATION,
4988 : : "invalid jump function in LTO stream");
4989 : : }
4990 : 5035 : if (prevails)
4991 : 5035 : jump_func->agg.items->quick_push (item);
4992 : : }
4993 : :
4994 : 564207 : ipa_vr vr;
4995 : 564207 : vr.streamer_read (ib, data_in);
4996 : 564207 : if (vr.known_p ())
4997 : : {
4998 : 393673 : if (prevails)
4999 : 393667 : ipa_set_jfunc_vr (jump_func, vr);
5000 : : }
5001 : : else
5002 : 170534 : jump_func->m_vr = NULL;
5003 : 564207 : }
5004 : :
5005 : : /* Stream out parts of cgraph_indirect_call_info corresponding to CS that are
5006 : : relevant to indirect inlining to OB. */
5007 : :
5008 : : static void
5009 : 1746 : ipa_write_indirect_edge_info (struct output_block *ob,
5010 : : struct cgraph_edge *cs)
5011 : : {
5012 : 1746 : class cgraph_indirect_call_info *ii = cs->indirect_info;
5013 : 1746 : struct bitpack_d bp;
5014 : :
5015 : 1746 : streamer_write_hwi (ob, ii->param_index);
5016 : 1746 : bp = bitpack_create (ob->main_stream);
5017 : 1746 : bp_pack_value (&bp, ii->polymorphic, 1);
5018 : 1746 : bp_pack_value (&bp, ii->agg_contents, 1);
5019 : 1746 : bp_pack_value (&bp, ii->member_ptr, 1);
5020 : 1746 : bp_pack_value (&bp, ii->by_ref, 1);
5021 : 1746 : bp_pack_value (&bp, ii->guaranteed_unmodified, 1);
5022 : 1746 : bp_pack_value (&bp, ii->vptr_changed, 1);
5023 : 1746 : streamer_write_bitpack (&bp);
5024 : 1746 : if (ii->agg_contents || ii->polymorphic)
5025 : 282 : streamer_write_hwi (ob, ii->offset);
5026 : : else
5027 : 1464 : gcc_assert (ii->offset == 0);
5028 : :
5029 : 1746 : if (ii->polymorphic)
5030 : : {
5031 : 239 : streamer_write_hwi (ob, ii->otr_token);
5032 : 239 : stream_write_tree (ob, ii->otr_type, true);
5033 : 239 : ii->context.stream_out (ob);
5034 : : }
5035 : 1746 : }
5036 : :
5037 : : /* Read in parts of cgraph_indirect_call_info corresponding to CS that are
5038 : : relevant to indirect inlining from IB. */
5039 : :
5040 : : static void
5041 : 1341 : ipa_read_indirect_edge_info (class lto_input_block *ib,
5042 : : class data_in *data_in,
5043 : : struct cgraph_edge *cs,
5044 : : class ipa_node_params *info)
5045 : : {
5046 : 1341 : class cgraph_indirect_call_info *ii = cs->indirect_info;
5047 : 1341 : struct bitpack_d bp;
5048 : :
5049 : 1341 : ii->param_index = (int) streamer_read_hwi (ib);
5050 : 1341 : bp = streamer_read_bitpack (ib);
5051 : 1341 : ii->polymorphic = bp_unpack_value (&bp, 1);
5052 : 1341 : ii->agg_contents = bp_unpack_value (&bp, 1);
5053 : 1341 : ii->member_ptr = bp_unpack_value (&bp, 1);
5054 : 1341 : ii->by_ref = bp_unpack_value (&bp, 1);
5055 : 1341 : ii->guaranteed_unmodified = bp_unpack_value (&bp, 1);
5056 : 1341 : ii->vptr_changed = bp_unpack_value (&bp, 1);
5057 : 1341 : if (ii->agg_contents || ii->polymorphic)
5058 : 100 : ii->offset = (HOST_WIDE_INT) streamer_read_hwi (ib);
5059 : : else
5060 : 1241 : ii->offset = 0;
5061 : 1341 : if (ii->polymorphic)
5062 : : {
5063 : 81 : ii->otr_token = (HOST_WIDE_INT) streamer_read_hwi (ib);
5064 : 81 : ii->otr_type = stream_read_tree (ib, data_in);
5065 : 81 : ii->context.stream_in (ib, data_in);
5066 : : }
5067 : 1341 : if (info && ii->param_index >= 0)
5068 : : {
5069 : 310 : if (ii->polymorphic)
5070 : 60 : ipa_set_param_used_by_polymorphic_call (info,
5071 : : ii->param_index , true);
5072 : 310 : ipa_set_param_used_by_indirect_call (info,
5073 : : ii->param_index, true);
5074 : : }
5075 : 1341 : }
5076 : :
5077 : : /* Stream out NODE info to OB. */
5078 : :
5079 : : static void
5080 : 88689 : ipa_write_node_info (struct output_block *ob, struct cgraph_node *node)
5081 : : {
5082 : 88689 : int node_ref;
5083 : 88689 : lto_symtab_encoder_t encoder;
5084 : 88689 : ipa_node_params *info = ipa_node_params_sum->get (node);
5085 : 88689 : int j;
5086 : 88689 : struct cgraph_edge *e;
5087 : 88689 : struct bitpack_d bp;
5088 : :
5089 : 88689 : encoder = ob->decl_state->symtab_node_encoder;
5090 : 88689 : node_ref = lto_symtab_encoder_encode (encoder, node);
5091 : 88689 : streamer_write_uhwi (ob, node_ref);
5092 : :
5093 : 88689 : streamer_write_uhwi (ob, ipa_get_param_count (info));
5094 : 429594 : for (j = 0; j < ipa_get_param_count (info); j++)
5095 : 96134 : streamer_write_uhwi (ob, ipa_get_param_move_cost (info, j));
5096 : 88689 : bp = bitpack_create (ob->main_stream);
5097 : 88689 : gcc_assert (info->analysis_done
5098 : : || ipa_get_param_count (info) == 0);
5099 : 88689 : gcc_assert (!info->node_enqueued);
5100 : 88689 : gcc_assert (!info->ipcp_orig_node);
5101 : 340905 : for (j = 0; j < ipa_get_param_count (info); j++)
5102 : : {
5103 : : /* TODO: We could just not stream the bit in the undescribed case. */
5104 : 96134 : bool d = (ipa_get_controlled_uses (info, j) != IPA_UNDESCRIBED_USE)
5105 : 96134 : ? ipa_get_param_load_dereferenced (info, j) : true;
5106 : 96134 : bp_pack_value (&bp, d, 1);
5107 : 96134 : bp_pack_value (&bp, ipa_is_param_used (info, j), 1);
5108 : : }
5109 : 88689 : streamer_write_bitpack (&bp);
5110 : 340905 : for (j = 0; j < ipa_get_param_count (info); j++)
5111 : : {
5112 : 96134 : streamer_write_hwi (ob, ipa_get_controlled_uses (info, j));
5113 : 96134 : stream_write_tree (ob, ipa_get_type (info, j), true);
5114 : : }
5115 : 445106 : for (e = node->callees; e; e = e->next_callee)
5116 : : {
5117 : 356417 : ipa_edge_args *args = ipa_edge_args_sum->get (e);
5118 : :
5119 : 356417 : if (!args)
5120 : : {
5121 : 700 : streamer_write_uhwi (ob, 0);
5122 : 700 : continue;
5123 : : }
5124 : :
5125 : 355717 : streamer_write_uhwi (ob,
5126 : 355717 : ipa_get_cs_argument_count (args) * 2
5127 : 355717 : + (args->polymorphic_call_contexts != NULL));
5128 : 2158531 : for (j = 0; j < ipa_get_cs_argument_count (args); j++)
5129 : : {
5130 : 599070 : ipa_write_jump_function (ob, ipa_get_ith_jump_func (args, j));
5131 : 599070 : if (args->polymorphic_call_contexts != NULL)
5132 : 2193 : ipa_get_ith_polymorhic_call_context (args, j)->stream_out (ob);
5133 : : }
5134 : : }
5135 : 90435 : for (e = node->indirect_calls; e; e = e->next_callee)
5136 : : {
5137 : 1746 : ipa_edge_args *args = ipa_edge_args_sum->get (e);
5138 : 1746 : if (!args)
5139 : 6 : streamer_write_uhwi (ob, 0);
5140 : : else
5141 : : {
5142 : 1740 : streamer_write_uhwi (ob,
5143 : 1740 : ipa_get_cs_argument_count (args) * 2
5144 : 1740 : + (args->polymorphic_call_contexts != NULL));
5145 : 9255 : for (j = 0; j < ipa_get_cs_argument_count (args); j++)
5146 : : {
5147 : 2085 : ipa_write_jump_function (ob, ipa_get_ith_jump_func (args, j));
5148 : 2085 : if (args->polymorphic_call_contexts != NULL)
5149 : 393 : ipa_get_ith_polymorhic_call_context (args, j)->stream_out (ob);
5150 : : }
5151 : : }
5152 : 1746 : ipa_write_indirect_edge_info (ob, e);
5153 : : }
5154 : 88689 : }
5155 : :
5156 : : /* Stream in edge E from IB. */
5157 : :
5158 : : static void
5159 : 329281 : ipa_read_edge_info (class lto_input_block *ib,
5160 : : class data_in *data_in,
5161 : : struct cgraph_edge *e, bool prevails)
5162 : : {
5163 : 329281 : int count = streamer_read_uhwi (ib);
5164 : 329281 : bool contexts_computed = count & 1;
5165 : :
5166 : 329281 : count /= 2;
5167 : 329281 : if (!count)
5168 : : return;
5169 : 230740 : if (prevails
5170 : 230740 : && (e->possibly_call_in_translation_unit_p ()
5171 : : /* Also stream in jump functions to builtins in hope that they
5172 : : will get fnspecs. */
5173 : 113910 : || fndecl_built_in_p (e->callee->decl, BUILT_IN_NORMAL)))
5174 : : {
5175 : 220786 : ipa_edge_args *args = ipa_edge_args_sum->get_create (e);
5176 : 220786 : vec_safe_grow_cleared (args->jump_functions, count, true);
5177 : 220786 : if (contexts_computed)
5178 : 548 : vec_safe_grow_cleared (args->polymorphic_call_contexts, count, true);
5179 : 769392 : for (int k = 0; k < count; k++)
5180 : : {
5181 : 548606 : ipa_read_jump_function (ib, ipa_get_ith_jump_func (args, k), e,
5182 : : data_in, prevails);
5183 : 548606 : if (contexts_computed)
5184 : 853 : ipa_get_ith_polymorhic_call_context (args, k)->stream_in
5185 : 853 : (ib, data_in);
5186 : : }
5187 : : }
5188 : : else
5189 : : {
5190 : 25555 : for (int k = 0; k < count; k++)
5191 : : {
5192 : 15601 : struct ipa_jump_func dummy;
5193 : 15601 : ipa_read_jump_function (ib, &dummy, e,
5194 : : data_in, prevails);
5195 : 15601 : if (contexts_computed)
5196 : : {
5197 : 406 : class ipa_polymorphic_call_context ctx;
5198 : 406 : ctx.stream_in (ib, data_in);
5199 : : }
5200 : : }
5201 : : }
5202 : : }
5203 : :
5204 : : /* Stream in NODE info from IB. */
5205 : :
5206 : : static void
5207 : 74274 : ipa_read_node_info (class lto_input_block *ib, struct cgraph_node *node,
5208 : : class data_in *data_in)
5209 : : {
5210 : 74274 : int k;
5211 : 74274 : struct cgraph_edge *e;
5212 : 74274 : struct bitpack_d bp;
5213 : 74274 : bool prevails = node->prevailing_p ();
5214 : 74274 : ipa_node_params *info
5215 : 74274 : = prevails ? ipa_node_params_sum->get_create (node) : NULL;
5216 : :
5217 : 74274 : int param_count = streamer_read_uhwi (ib);
5218 : 74274 : if (prevails)
5219 : : {
5220 : 74256 : ipa_alloc_node_params (node, param_count);
5221 : 223195 : for (k = 0; k < param_count; k++)
5222 : 74683 : (*info->descriptors)[k].move_cost = streamer_read_uhwi (ib);
5223 : 74256 : if (ipa_get_param_count (info) != 0)
5224 : 51091 : info->analysis_done = true;
5225 : 74256 : info->node_enqueued = false;
5226 : : }
5227 : : else
5228 : 27 : for (k = 0; k < param_count; k++)
5229 : 9 : streamer_read_uhwi (ib);
5230 : :
5231 : 74274 : bp = streamer_read_bitpack (ib);
5232 : 148966 : for (k = 0; k < param_count; k++)
5233 : : {
5234 : 74692 : bool load_dereferenced = bp_unpack_value (&bp, 1);
5235 : 74692 : bool used = bp_unpack_value (&bp, 1);
5236 : :
5237 : 74692 : if (prevails)
5238 : : {
5239 : 74683 : ipa_set_param_load_dereferenced (info, k, load_dereferenced);
5240 : 74683 : ipa_set_param_used (info, k, used);
5241 : : }
5242 : : }
5243 : 148966 : for (k = 0; k < param_count; k++)
5244 : : {
5245 : 74692 : int nuses = streamer_read_hwi (ib);
5246 : 74692 : tree type = stream_read_tree (ib, data_in);
5247 : :
5248 : 74692 : if (prevails)
5249 : : {
5250 : 74683 : ipa_set_controlled_uses (info, k, nuses);
5251 : 74683 : (*info->descriptors)[k].decl_or_type = type;
5252 : : }
5253 : : }
5254 : 402214 : for (e = node->callees; e; e = e->next_callee)
5255 : 327940 : ipa_read_edge_info (ib, data_in, e, prevails);
5256 : 75615 : for (e = node->indirect_calls; e; e = e->next_callee)
5257 : : {
5258 : 1341 : ipa_read_edge_info (ib, data_in, e, prevails);
5259 : 1341 : ipa_read_indirect_edge_info (ib, data_in, e, info);
5260 : : }
5261 : 74274 : }
5262 : :
5263 : : /* Write jump functions for nodes in SET. */
5264 : :
5265 : : void
5266 : 22153 : ipa_prop_write_jump_functions (void)
5267 : : {
5268 : 22153 : struct output_block *ob;
5269 : 22153 : unsigned int count = 0;
5270 : 22153 : lto_symtab_encoder_iterator lsei;
5271 : 22153 : lto_symtab_encoder_t encoder;
5272 : :
5273 : 22153 : if (!ipa_node_params_sum || !ipa_edge_args_sum)
5274 : 0 : return;
5275 : :
5276 : 22153 : ob = create_output_block (LTO_section_jump_functions);
5277 : 22153 : encoder = ob->decl_state->symtab_node_encoder;
5278 : 22153 : ob->symbol = NULL;
5279 : 246275 : for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
5280 : 101099 : lsei_next_function_in_partition (&lsei))
5281 : : {
5282 : 101099 : cgraph_node *node = lsei_cgraph_node (lsei);
5283 : 101099 : if (node->has_gimple_body_p ()
5284 : 101099 : && ipa_node_params_sum->get (node) != NULL)
5285 : 88689 : count++;
5286 : : }
5287 : :
5288 : 22153 : streamer_write_uhwi (ob, count);
5289 : :
5290 : : /* Process all of the functions. */
5291 : 246275 : for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
5292 : 101099 : lsei_next_function_in_partition (&lsei))
5293 : : {
5294 : 101099 : cgraph_node *node = lsei_cgraph_node (lsei);
5295 : 101099 : if (node->has_gimple_body_p ()
5296 : 101099 : && ipa_node_params_sum->get (node) != NULL)
5297 : 88689 : ipa_write_node_info (ob, node);
5298 : : }
5299 : 22153 : streamer_write_char_stream (ob->main_stream, 0);
5300 : 22153 : produce_asm (ob, NULL);
5301 : 22153 : destroy_output_block (ob);
5302 : : }
5303 : :
5304 : : /* Read section in file FILE_DATA of length LEN with data DATA. */
5305 : :
5306 : : static void
5307 : 12782 : ipa_prop_read_section (struct lto_file_decl_data *file_data, const char *data,
5308 : : size_t len)
5309 : : {
5310 : 12782 : const struct lto_function_header *header =
5311 : : (const struct lto_function_header *) data;
5312 : 12782 : const int cfg_offset = sizeof (struct lto_function_header);
5313 : 12782 : const int main_offset = cfg_offset + header->cfg_size;
5314 : 12782 : const int string_offset = main_offset + header->main_size;
5315 : 12782 : class data_in *data_in;
5316 : 12782 : unsigned int i;
5317 : 12782 : unsigned int count;
5318 : :
5319 : 12782 : lto_input_block ib_main ((const char *) data + main_offset,
5320 : 12782 : header->main_size, file_data);
5321 : :
5322 : 12782 : data_in =
5323 : 25564 : lto_data_in_create (file_data, (const char *) data + string_offset,
5324 : 12782 : header->string_size, vNULL);
5325 : 12782 : count = streamer_read_uhwi (&ib_main);
5326 : :
5327 : 87056 : for (i = 0; i < count; i++)
5328 : : {
5329 : 74274 : unsigned int index;
5330 : 74274 : struct cgraph_node *node;
5331 : 74274 : lto_symtab_encoder_t encoder;
5332 : :
5333 : 74274 : index = streamer_read_uhwi (&ib_main);
5334 : 74274 : encoder = file_data->symtab_node_encoder;
5335 : 74274 : node = dyn_cast<cgraph_node *> (lto_symtab_encoder_deref (encoder,
5336 : : index));
5337 : 74274 : gcc_assert (node->definition);
5338 : 74274 : ipa_read_node_info (&ib_main, node, data_in);
5339 : : }
5340 : 12782 : lto_free_section_data (file_data, LTO_section_jump_functions, NULL, data,
5341 : : len);
5342 : 12782 : lto_data_in_delete (data_in);
5343 : 12782 : }
5344 : :
5345 : : /* Read ipcp jump functions. */
5346 : :
5347 : : void
5348 : 11772 : ipa_prop_read_jump_functions (void)
5349 : : {
5350 : 11772 : struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
5351 : 11772 : struct lto_file_decl_data *file_data;
5352 : 11772 : unsigned int j = 0;
5353 : :
5354 : 11772 : ipa_check_create_node_params ();
5355 : 11772 : ipa_check_create_edge_args ();
5356 : 11772 : ipa_register_cgraph_hooks ();
5357 : :
5358 : 36326 : while ((file_data = file_data_vec[j++]))
5359 : : {
5360 : 12782 : size_t len;
5361 : 12782 : const char *data
5362 : 12782 : = lto_get_summary_section_data (file_data, LTO_section_jump_functions,
5363 : : &len);
5364 : 12782 : if (data)
5365 : 12782 : ipa_prop_read_section (file_data, data, len);
5366 : : }
5367 : 11772 : }
5368 : :
5369 : : /* Return true if the IPA-CP transformation summary TS is non-NULL and contains
5370 : : useful info. */
5371 : : static bool
5372 : 159444 : useful_ipcp_transformation_info_p (ipcp_transformation *ts)
5373 : : {
5374 : 159444 : if (!ts)
5375 : : return false;
5376 : 21408 : if (!vec_safe_is_empty (ts->m_agg_values)
5377 : 21062 : || !vec_safe_is_empty (ts->m_vr))
5378 : 21186 : return true;
5379 : : return false;
5380 : : }
5381 : :
5382 : : /* Write into OB IPA-CP transfromation summary TS describing NODE. */
5383 : :
5384 : : void
5385 : 10580 : write_ipcp_transformation_info (output_block *ob, cgraph_node *node,
5386 : : ipcp_transformation *ts)
5387 : : {
5388 : 10580 : lto_symtab_encoder_t encoder = ob->decl_state->symtab_node_encoder;
5389 : 10580 : int node_ref = lto_symtab_encoder_encode (encoder, node);
5390 : 10580 : streamer_write_uhwi (ob, node_ref);
5391 : :
5392 : 10750 : streamer_write_uhwi (ob, vec_safe_length (ts->m_agg_values));
5393 : 11647 : for (const ipa_argagg_value &av : ts->m_agg_values)
5394 : : {
5395 : 727 : struct bitpack_d bp;
5396 : :
5397 : 727 : stream_write_tree (ob, av.value, true);
5398 : 727 : streamer_write_uhwi (ob, av.unit_offset);
5399 : 727 : streamer_write_uhwi (ob, av.index);
5400 : :
5401 : 727 : bp = bitpack_create (ob->main_stream);
5402 : 727 : bp_pack_value (&bp, av.by_ref, 1);
5403 : 727 : bp_pack_value (&bp, av.killed, 1);
5404 : 727 : streamer_write_bitpack (&bp);
5405 : : }
5406 : :
5407 : 21140 : streamer_write_uhwi (ob, vec_safe_length (ts->m_vr));
5408 : 50042 : for (const ipa_vr &parm_vr : ts->m_vr)
5409 : 18342 : parm_vr.streamer_write (ob);
5410 : 10580 : }
5411 : :
5412 : : /* Stream in the aggregate value replacement chain for NODE from IB. */
5413 : :
5414 : : static void
5415 : 10580 : read_ipcp_transformation_info (lto_input_block *ib, cgraph_node *node,
5416 : : data_in *data_in)
5417 : : {
5418 : 10580 : unsigned int count, i;
5419 : 10580 : ipcp_transformation_initialize ();
5420 : 10580 : ipcp_transformation *ts = ipcp_transformation_sum->get_create (node);
5421 : :
5422 : 10580 : count = streamer_read_uhwi (ib);
5423 : 10580 : if (count > 0)
5424 : : {
5425 : 170 : vec_safe_grow_cleared (ts->m_agg_values, count, true);
5426 : 897 : for (i = 0; i <count; i++)
5427 : : {
5428 : 727 : ipa_argagg_value *av = &(*ts->m_agg_values)[i];;
5429 : :
5430 : 727 : av->value = stream_read_tree (ib, data_in);
5431 : 727 : av->unit_offset = streamer_read_uhwi (ib);
5432 : 727 : av->index = streamer_read_uhwi (ib);
5433 : :
5434 : 727 : bitpack_d bp = streamer_read_bitpack (ib);
5435 : 727 : av->by_ref = bp_unpack_value (&bp, 1);
5436 : 727 : av->killed = bp_unpack_value (&bp, 1);
5437 : : }
5438 : : }
5439 : :
5440 : 10580 : count = streamer_read_uhwi (ib);
5441 : 10580 : if (count > 0)
5442 : : {
5443 : 10560 : vec_safe_grow_cleared (ts->m_vr, count, true);
5444 : 28902 : for (i = 0; i < count; i++)
5445 : : {
5446 : 18342 : ipa_vr *parm_vr;
5447 : 18342 : parm_vr = &(*ts->m_vr)[i];
5448 : 18342 : parm_vr->streamer_read (ib, data_in);
5449 : : }
5450 : : }
5451 : 10580 : }
5452 : :
5453 : : /* Write all aggregate replacement for nodes in set. */
5454 : :
5455 : : void
5456 : 7969 : ipcp_write_transformation_summaries (void)
5457 : : {
5458 : 7969 : struct output_block *ob;
5459 : 7969 : unsigned int count = 0;
5460 : 7969 : lto_symtab_encoder_t encoder;
5461 : :
5462 : 7969 : ob = create_output_block (LTO_section_ipcp_transform);
5463 : 7969 : encoder = ob->decl_state->symtab_node_encoder;
5464 : 7969 : ob->symbol = NULL;
5465 : :
5466 : 223251 : for (int i = 0; i < lto_symtab_encoder_size (encoder); i++)
5467 : : {
5468 : 103661 : symtab_node *snode = lto_symtab_encoder_deref (encoder, i);
5469 : 103661 : cgraph_node *cnode = dyn_cast <cgraph_node *> (snode);
5470 : 103661 : if (!cnode)
5471 : 23939 : continue;
5472 : 79722 : ipcp_transformation *ts = ipcp_get_transformation_summary (cnode);
5473 : 79722 : if (useful_ipcp_transformation_info_p (ts)
5474 : 79722 : && lto_symtab_encoder_encode_body_p (encoder, cnode))
5475 : 10580 : count++;
5476 : : }
5477 : :
5478 : 7969 : streamer_write_uhwi (ob, count);
5479 : :
5480 : 223251 : for (int i = 0; i < lto_symtab_encoder_size (encoder); i++)
5481 : : {
5482 : 103661 : symtab_node *snode = lto_symtab_encoder_deref (encoder, i);
5483 : 103661 : cgraph_node *cnode = dyn_cast <cgraph_node *> (snode);
5484 : 103661 : if (!cnode)
5485 : 23939 : continue;
5486 : 79722 : ipcp_transformation *ts = ipcp_get_transformation_summary (cnode);
5487 : 79722 : if (useful_ipcp_transformation_info_p (ts)
5488 : 79722 : && lto_symtab_encoder_encode_body_p (encoder, cnode))
5489 : 10580 : write_ipcp_transformation_info (ob, cnode, ts);
5490 : : }
5491 : 7969 : streamer_write_char_stream (ob->main_stream, 0);
5492 : 7969 : produce_asm (ob, NULL);
5493 : 7969 : destroy_output_block (ob);
5494 : 7969 : }
5495 : :
5496 : : /* Read replacements section in file FILE_DATA of length LEN with data
5497 : : DATA. */
5498 : :
5499 : : static void
5500 : 7969 : read_replacements_section (struct lto_file_decl_data *file_data,
5501 : : const char *data,
5502 : : size_t len)
5503 : : {
5504 : 7969 : const struct lto_function_header *header =
5505 : : (const struct lto_function_header *) data;
5506 : 7969 : const int cfg_offset = sizeof (struct lto_function_header);
5507 : 7969 : const int main_offset = cfg_offset + header->cfg_size;
5508 : 7969 : const int string_offset = main_offset + header->main_size;
5509 : 7969 : class data_in *data_in;
5510 : 7969 : unsigned int i;
5511 : 7969 : unsigned int count;
5512 : :
5513 : 7969 : lto_input_block ib_main ((const char *) data + main_offset,
5514 : 7969 : header->main_size, file_data);
5515 : :
5516 : 7969 : data_in = lto_data_in_create (file_data, (const char *) data + string_offset,
5517 : 7969 : header->string_size, vNULL);
5518 : 7969 : count = streamer_read_uhwi (&ib_main);
5519 : :
5520 : 18549 : for (i = 0; i < count; i++)
5521 : : {
5522 : 10580 : unsigned int index;
5523 : 10580 : struct cgraph_node *node;
5524 : 10580 : lto_symtab_encoder_t encoder;
5525 : :
5526 : 10580 : index = streamer_read_uhwi (&ib_main);
5527 : 10580 : encoder = file_data->symtab_node_encoder;
5528 : 10580 : node = dyn_cast<cgraph_node *> (lto_symtab_encoder_deref (encoder,
5529 : : index));
5530 : 10580 : read_ipcp_transformation_info (&ib_main, node, data_in);
5531 : : }
5532 : 7969 : lto_free_section_data (file_data, LTO_section_jump_functions, NULL, data,
5533 : : len);
5534 : 7969 : lto_data_in_delete (data_in);
5535 : 7969 : }
5536 : :
5537 : : /* Read IPA-CP aggregate replacements. */
5538 : :
5539 : : void
5540 : 7969 : ipcp_read_transformation_summaries (void)
5541 : : {
5542 : 7969 : struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
5543 : 7969 : struct lto_file_decl_data *file_data;
5544 : 7969 : unsigned int j = 0;
5545 : :
5546 : 23907 : while ((file_data = file_data_vec[j++]))
5547 : : {
5548 : 7969 : size_t len;
5549 : 7969 : const char *data
5550 : 7969 : = lto_get_summary_section_data (file_data, LTO_section_ipcp_transform,
5551 : : &len);
5552 : 7969 : if (data)
5553 : 7969 : read_replacements_section (file_data, data, len);
5554 : : }
5555 : 7969 : }
5556 : :
5557 : : /* Adjust the aggregate replacements in TS to reflect any parameter removals
5558 : : which might have already taken place. If after adjustments there are no
5559 : : aggregate replacements left, the m_agg_values will be set to NULL. In other
5560 : : cases, it may be shrunk. */
5561 : :
5562 : : static void
5563 : 1597 : adjust_agg_replacement_values (cgraph_node *node, ipcp_transformation *ts)
5564 : : {
5565 : 1597 : clone_info *cinfo = clone_info::get (node);
5566 : 1597 : if (!cinfo || !cinfo->param_adjustments)
5567 : : return;
5568 : :
5569 : 792 : auto_vec<int, 16> new_indices;
5570 : 792 : cinfo->param_adjustments->get_updated_indices (&new_indices);
5571 : 792 : bool removed_item = false;
5572 : 792 : unsigned dst_index = 0;
5573 : 792 : unsigned count = ts->m_agg_values->length ();
5574 : 3969 : for (unsigned i = 0; i < count; i++)
5575 : : {
5576 : 3177 : ipa_argagg_value *v = &(*ts->m_agg_values)[i];
5577 : 3177 : gcc_checking_assert (v->index >= 0);
5578 : :
5579 : 3177 : int new_idx = -1;
5580 : 6354 : if ((unsigned) v->index < new_indices.length ())
5581 : 1790 : new_idx = new_indices[v->index];
5582 : :
5583 : 1790 : if (new_idx >= 0)
5584 : : {
5585 : 1039 : v->index = new_idx;
5586 : 1039 : if (removed_item)
5587 : 23 : (*ts->m_agg_values)[dst_index] = *v;
5588 : 1039 : dst_index++;
5589 : : }
5590 : : else
5591 : : removed_item = true;
5592 : : }
5593 : :
5594 : 792 : if (dst_index == 0)
5595 : : {
5596 : 486 : ggc_free (ts->m_agg_values);
5597 : 486 : ts->m_agg_values = NULL;
5598 : : }
5599 : 306 : else if (removed_item)
5600 : 34 : ts->m_agg_values->truncate (dst_index);
5601 : :
5602 : 792 : return;
5603 : 792 : }
5604 : :
5605 : : /* Dominator walker driving the ipcp modification phase. */
5606 : :
5607 : : class ipcp_modif_dom_walker : public dom_walker
5608 : : {
5609 : : public:
5610 : 1111 : ipcp_modif_dom_walker (struct ipa_func_body_info *fbi,
5611 : : vec<ipa_param_descriptor, va_gc> *descs,
5612 : : ipcp_transformation *ts, bool *sc)
5613 : 2222 : : dom_walker (CDI_DOMINATORS), m_fbi (fbi), m_descriptors (descs),
5614 : 1111 : m_ts (ts), m_something_changed (sc) {}
5615 : :
5616 : : edge before_dom_children (basic_block) final override;
5617 : 1111 : bool cleanup_eh ()
5618 : 1111 : { return gimple_purge_all_dead_eh_edges (m_need_eh_cleanup); }
5619 : :
5620 : : private:
5621 : : struct ipa_func_body_info *m_fbi;
5622 : : vec<ipa_param_descriptor, va_gc> *m_descriptors;
5623 : : ipcp_transformation *m_ts;
5624 : : bool *m_something_changed;
5625 : : auto_bitmap m_need_eh_cleanup;
5626 : : };
5627 : :
5628 : : edge
5629 : 17578 : ipcp_modif_dom_walker::before_dom_children (basic_block bb)
5630 : : {
5631 : 17578 : gimple_stmt_iterator gsi;
5632 : 95672 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5633 : : {
5634 : 60516 : gimple *stmt = gsi_stmt (gsi);
5635 : 60516 : tree rhs, val, t;
5636 : 60516 : HOST_WIDE_INT bit_offset;
5637 : 60516 : poly_int64 size;
5638 : 60516 : int index;
5639 : 60516 : bool by_ref, vce;
5640 : :
5641 : 60516 : if (!gimple_assign_load_p (stmt))
5642 : 59434 : continue;
5643 : 8976 : rhs = gimple_assign_rhs1 (stmt);
5644 : 8976 : if (!is_gimple_reg_type (TREE_TYPE (rhs)))
5645 : 511 : continue;
5646 : :
5647 : 20131 : vce = false;
5648 : : t = rhs;
5649 : 20131 : while (handled_component_p (t))
5650 : : {
5651 : : /* V_C_E can do things like convert an array of integers to one
5652 : : bigger integer and similar things we do not handle below. */
5653 : 11666 : if (TREE_CODE (t) == VIEW_CONVERT_EXPR)
5654 : : {
5655 : : vce = true;
5656 : : break;
5657 : : }
5658 : 11666 : t = TREE_OPERAND (t, 0);
5659 : : }
5660 : 8465 : if (vce)
5661 : 0 : continue;
5662 : :
5663 : 8465 : if (!ipa_load_from_parm_agg (m_fbi, m_descriptors, stmt, rhs, &index,
5664 : : &bit_offset, &size, &by_ref))
5665 : 6340 : continue;
5666 : 2125 : unsigned unit_offset = bit_offset / BITS_PER_UNIT;
5667 : 2125 : ipa_argagg_value_list avl (m_ts);
5668 : 2125 : tree v = avl.get_value (index, unit_offset, by_ref);
5669 : :
5670 : 3168 : if (!v
5671 : 2125 : || maybe_ne (tree_to_poly_int64 (TYPE_SIZE (TREE_TYPE (v))), size))
5672 : 1043 : continue;
5673 : :
5674 : 1082 : gcc_checking_assert (is_gimple_ip_invariant (v));
5675 : 1082 : if (!useless_type_conversion_p (TREE_TYPE (rhs), TREE_TYPE (v)))
5676 : : {
5677 : 0 : if (fold_convertible_p (TREE_TYPE (rhs), v))
5678 : 0 : val = fold_build1 (NOP_EXPR, TREE_TYPE (rhs), v);
5679 : 0 : else if (TYPE_SIZE (TREE_TYPE (rhs))
5680 : 0 : == TYPE_SIZE (TREE_TYPE (v)))
5681 : 0 : val = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (rhs), v);
5682 : : else
5683 : : {
5684 : 0 : if (dump_file)
5685 : : {
5686 : 0 : fprintf (dump_file, " const ");
5687 : 0 : print_generic_expr (dump_file, v);
5688 : 0 : fprintf (dump_file, " can't be converted to type of ");
5689 : 0 : print_generic_expr (dump_file, rhs);
5690 : 0 : fprintf (dump_file, "\n");
5691 : : }
5692 : 0 : continue;
5693 : : }
5694 : : }
5695 : : else
5696 : : val = v;
5697 : :
5698 : 1082 : if (dump_file && (dump_flags & TDF_DETAILS))
5699 : : {
5700 : 38 : fprintf (dump_file, "Modifying stmt:\n ");
5701 : 38 : print_gimple_stmt (dump_file, stmt, 0);
5702 : : }
5703 : 1082 : gimple_assign_set_rhs_from_tree (&gsi, val);
5704 : 1082 : update_stmt (stmt);
5705 : :
5706 : 1082 : if (dump_file && (dump_flags & TDF_DETAILS))
5707 : : {
5708 : 38 : fprintf (dump_file, "into:\n ");
5709 : 38 : print_gimple_stmt (dump_file, stmt, 0);
5710 : 38 : fprintf (dump_file, "\n");
5711 : : }
5712 : :
5713 : 1082 : *m_something_changed = true;
5714 : 1082 : if (maybe_clean_eh_stmt (stmt))
5715 : 9 : bitmap_set_bit (m_need_eh_cleanup, bb->index);
5716 : : }
5717 : 17578 : return NULL;
5718 : : }
5719 : :
5720 : : /* If IPA-CP discovered a constant in parameter PARM at OFFSET of a given SIZE
5721 : : - whether passed by reference or not is given by BY_REF - return that
5722 : : constant. Otherwise return NULL_TREE. The is supposed to be used only
5723 : : after clone materialization and transformation is done (because it asserts
5724 : : that killed constants have been pruned). */
5725 : :
5726 : : tree
5727 : 3557151 : ipcp_get_aggregate_const (struct function *func, tree parm, bool by_ref,
5728 : : HOST_WIDE_INT bit_offset, HOST_WIDE_INT bit_size)
5729 : : {
5730 : 3557151 : cgraph_node *node = cgraph_node::get (func->decl);
5731 : 3557151 : ipcp_transformation *ts = ipcp_get_transformation_summary (node);
5732 : :
5733 : 3557151 : if (!ts || !ts->m_agg_values)
5734 : : return NULL_TREE;
5735 : :
5736 : 8480 : int index = ts->get_param_index (func->decl, parm);
5737 : 8480 : if (index < 0)
5738 : : return NULL_TREE;
5739 : :
5740 : 8415 : ipa_argagg_value_list avl (ts);
5741 : 8415 : unsigned unit_offset = bit_offset / BITS_PER_UNIT;
5742 : 8415 : const ipa_argagg_value *av = avl.get_elt (index, unit_offset);
5743 : 8415 : if (!av || av->by_ref != by_ref)
5744 : : return NULL_TREE;
5745 : 1701 : gcc_assert (!av->killed);
5746 : 1701 : tree v = av->value;
5747 : 1701 : if (!v
5748 : 1701 : || maybe_ne (tree_to_poly_int64 (TYPE_SIZE (TREE_TYPE (v))), bit_size))
5749 : 686 : return NULL_TREE;
5750 : :
5751 : : return v;
5752 : : }
5753 : :
5754 : : /* Return true if we have recorded VALUE and MASK about PARM.
5755 : : Set VALUE and MASk accordingly. */
5756 : :
5757 : : bool
5758 : 7581552 : ipcp_get_parm_bits (tree parm, tree *value, widest_int *mask)
5759 : : {
5760 : 7581552 : cgraph_node *cnode = cgraph_node::get (current_function_decl);
5761 : 7581552 : ipcp_transformation *ts = ipcp_get_transformation_summary (cnode);
5762 : 7581552 : if (!ts
5763 : 114496 : || vec_safe_length (ts->m_vr) == 0
5764 : 7728496 : || !ipa_vr_supported_type_p (TREE_TYPE (parm)))
5765 : : return false;
5766 : :
5767 : 107635 : int i = ts->get_param_index (current_function_decl, parm);
5768 : 107635 : if (i < 0)
5769 : : return false;
5770 : 106333 : clone_info *cinfo = clone_info::get (cnode);
5771 : 106333 : if (cinfo && cinfo->param_adjustments)
5772 : : {
5773 : 27936 : i = cinfo->param_adjustments->get_original_index (i);
5774 : 27936 : if (i < 0)
5775 : : return false;
5776 : : }
5777 : :
5778 : 97891 : vec<ipa_vr, va_gc> &vr = *ts->m_vr;
5779 : 97891 : if (!vr[i].known_p ())
5780 : : return false;
5781 : 77323 : value_range tmp;
5782 : 77323 : vr[i].get_vrange (tmp);
5783 : 77323 : if (tmp.undefined_p () || tmp.varying_p ())
5784 : : return false;
5785 : 77323 : irange_bitmask bm;
5786 : 77323 : bm = tmp.get_bitmask ();
5787 : 77323 : *mask = widest_int::from (bm.mask (), TYPE_SIGN (TREE_TYPE (parm)));
5788 : 77323 : *value = wide_int_to_tree (TREE_TYPE (parm), bm.value ());
5789 : 77323 : return true;
5790 : 77323 : }
5791 : :
5792 : : /* Update value range of formal parameters of NODE as described in TS. */
5793 : :
5794 : : static void
5795 : 20189 : ipcp_update_vr (struct cgraph_node *node, ipcp_transformation *ts)
5796 : : {
5797 : 20189 : if (vec_safe_is_empty (ts->m_vr))
5798 : 407 : return;
5799 : 19782 : const vec<ipa_vr, va_gc> &vr = *ts->m_vr;
5800 : 19782 : unsigned count = vr.length ();
5801 : 19782 : if (!count)
5802 : : return;
5803 : :
5804 : 19782 : auto_vec<int, 16> new_indices;
5805 : 19782 : bool need_remapping = false;
5806 : 19782 : clone_info *cinfo = clone_info::get (node);
5807 : 19782 : if (cinfo && cinfo->param_adjustments)
5808 : : {
5809 : 5619 : cinfo->param_adjustments->get_updated_indices (&new_indices);
5810 : 5619 : need_remapping = true;
5811 : : }
5812 : 19782 : auto_vec <tree, 16> parm_decls;
5813 : 19782 : push_function_arg_decls (&parm_decls, node->decl);
5814 : :
5815 : 67015 : for (unsigned i = 0; i < count; ++i)
5816 : : {
5817 : 47233 : tree parm;
5818 : 47233 : int remapped_idx;
5819 : 47233 : if (need_remapping)
5820 : : {
5821 : 32322 : if (i >= new_indices.length ())
5822 : 7393 : continue;
5823 : 8768 : remapped_idx = new_indices[i];
5824 : 8768 : if (remapped_idx < 0)
5825 : 1905 : continue;
5826 : : }
5827 : : else
5828 : 31072 : remapped_idx = i;
5829 : :
5830 : 37935 : parm = parm_decls[remapped_idx];
5831 : :
5832 : 37935 : gcc_checking_assert (parm);
5833 : 37935 : tree ddef = ssa_default_def (DECL_STRUCT_FUNCTION (node->decl), parm);
5834 : :
5835 : 37935 : if (!ddef || !is_gimple_reg (parm))
5836 : 4735 : continue;
5837 : :
5838 : 33200 : if (vr[i].known_p ())
5839 : : {
5840 : 25780 : value_range tmp;
5841 : 25780 : vr[i].get_vrange (tmp);
5842 : :
5843 : 25780 : if (!tmp.undefined_p () && !tmp.varying_p ())
5844 : : {
5845 : 25780 : if (dump_file)
5846 : : {
5847 : 95 : fprintf (dump_file, "Setting value range of param %u "
5848 : : "(now %i) ", i, remapped_idx);
5849 : 95 : tmp.dump (dump_file);
5850 : 95 : fprintf (dump_file, "]\n");
5851 : : }
5852 : 25780 : set_range_info (ddef, tmp);
5853 : :
5854 : 39845 : if (POINTER_TYPE_P (TREE_TYPE (parm))
5855 : 28591 : && opt_for_fn (node->decl, flag_ipa_bit_cp))
5856 : : {
5857 : 14525 : irange_bitmask bm = tmp.get_bitmask ();
5858 : 14525 : unsigned tem = bm.mask ().to_uhwi ();
5859 : 14525 : unsigned HOST_WIDE_INT bitpos = bm.value ().to_uhwi ();
5860 : 14525 : unsigned align = tem & -tem;
5861 : 14525 : unsigned misalign = bitpos & (align - 1);
5862 : :
5863 : 14525 : if (align > 1)
5864 : : {
5865 : 12228 : if (dump_file)
5866 : : {
5867 : 71 : fprintf (dump_file,
5868 : : "Adjusting mask for param %u to ", i);
5869 : 71 : print_hex (bm.mask (), dump_file);
5870 : 71 : fprintf (dump_file, "\n");
5871 : : }
5872 : :
5873 : 12228 : if (dump_file)
5874 : 71 : fprintf (dump_file,
5875 : : "Adjusting align: %u, misalign: %u\n",
5876 : : align, misalign);
5877 : :
5878 : 12228 : unsigned old_align, old_misalign;
5879 : 12228 : struct ptr_info_def *pi = get_ptr_info (ddef);
5880 : 12228 : bool old_known = get_ptr_info_alignment (pi, &old_align,
5881 : : &old_misalign);
5882 : :
5883 : 12228 : if (old_known && old_align > align)
5884 : : {
5885 : 0 : if (dump_file)
5886 : : {
5887 : 0 : fprintf (dump_file,
5888 : : "But alignment was already %u.\n",
5889 : : old_align);
5890 : 0 : if ((old_misalign & (align - 1)) != misalign)
5891 : 0 : fprintf (dump_file,
5892 : : "old_misalign (%u) and misalign "
5893 : : "(%u) mismatch\n",
5894 : : old_misalign, misalign);
5895 : : }
5896 : 0 : continue;
5897 : : }
5898 : :
5899 : 12228 : if (dump_file
5900 : 71 : && old_known
5901 : 0 : && ((misalign & (old_align - 1)) != old_misalign))
5902 : 0 : fprintf (dump_file,
5903 : : "old_misalign (%u) and misalign (%u) "
5904 : : "mismatch\n",
5905 : : old_misalign, misalign);
5906 : :
5907 : 12228 : set_ptr_info_alignment (pi, align, misalign);
5908 : : }
5909 : 14525 : }
5910 : 11255 : else if (dump_file && INTEGRAL_TYPE_P (TREE_TYPE (parm)))
5911 : : {
5912 : 20 : irange &r = as_a<irange> (tmp);
5913 : 20 : irange_bitmask bm = r.get_bitmask ();
5914 : 20 : unsigned prec = TYPE_PRECISION (TREE_TYPE (parm));
5915 : 20 : if (wi::ne_p (bm.mask (), wi::shwi (-1, prec)))
5916 : : {
5917 : 13 : fprintf (dump_file,
5918 : : "Adjusting mask for param %u to ", i);
5919 : 13 : print_hex (bm.mask (), dump_file);
5920 : 13 : fprintf (dump_file, "\n");
5921 : : }
5922 : 20 : }
5923 : : }
5924 : 25780 : }
5925 : : }
5926 : 19782 : }
5927 : :
5928 : : /* IPCP transformation phase doing propagation of aggregate values. */
5929 : :
5930 : : unsigned int
5931 : 926357 : ipcp_transform_function (struct cgraph_node *node)
5932 : : {
5933 : 926357 : struct ipa_func_body_info fbi;
5934 : 926357 : int param_count;
5935 : :
5936 : 926357 : gcc_checking_assert (cfun);
5937 : 926357 : gcc_checking_assert (current_function_decl);
5938 : :
5939 : 926357 : if (dump_file)
5940 : 651 : fprintf (dump_file, "Modification phase of node %s\n",
5941 : : node->dump_name ());
5942 : :
5943 : 926357 : ipcp_transformation *ts = ipcp_get_transformation_summary (node);
5944 : 926357 : if (!ts
5945 : 926357 : || (vec_safe_is_empty (ts->m_agg_values)
5946 : 19583 : && vec_safe_is_empty (ts->m_vr)))
5947 : : return 0;
5948 : :
5949 : 20189 : ts->maybe_create_parm_idx_map (cfun->decl);
5950 : 20189 : ipcp_update_vr (node, ts);
5951 : 927040 : if (vec_safe_is_empty (ts->m_agg_values))
5952 : : return 0;
5953 : 1794 : param_count = count_formal_params (node->decl);
5954 : 1794 : if (param_count == 0)
5955 : : return 0;
5956 : :
5957 : 1597 : adjust_agg_replacement_values (node, ts);
5958 : 1597 : if (vec_safe_is_empty (ts->m_agg_values))
5959 : : {
5960 : 486 : if (dump_file)
5961 : 2 : fprintf (dump_file, " All affected aggregate parameters were either "
5962 : : "removed or converted into scalars, phase done.\n");
5963 : 486 : return 0;
5964 : : }
5965 : 1111 : if (dump_file)
5966 : : {
5967 : 47 : fprintf (dump_file, " Aggregate replacements:");
5968 : 47 : ipa_argagg_value_list avs (ts);
5969 : 47 : avs.dump (dump_file);
5970 : : }
5971 : :
5972 : 1111 : fbi.node = node;
5973 : 1111 : fbi.info = NULL;
5974 : 1111 : fbi.bb_infos = vNULL;
5975 : 1111 : fbi.bb_infos.safe_grow_cleared (last_basic_block_for_fn (cfun), true);
5976 : 1111 : fbi.param_count = param_count;
5977 : 1111 : fbi.aa_walk_budget = opt_for_fn (node->decl, param_ipa_max_aa_steps);
5978 : :
5979 : 1111 : vec<ipa_param_descriptor, va_gc> *descriptors = NULL;
5980 : 1111 : vec_safe_grow_cleared (descriptors, param_count, true);
5981 : 1111 : ipa_populate_param_decls (node, *descriptors);
5982 : 1111 : bool modified_mem_access = false;
5983 : 1111 : calculate_dominance_info (CDI_DOMINATORS);
5984 : 1111 : ipcp_modif_dom_walker walker (&fbi, descriptors, ts, &modified_mem_access);
5985 : 1111 : walker.walk (ENTRY_BLOCK_PTR_FOR_FN (cfun));
5986 : 1111 : free_dominance_info (CDI_DOMINATORS);
5987 : 1111 : bool cfg_changed = walker.cleanup_eh ();
5988 : :
5989 : 1111 : int i;
5990 : 1111 : struct ipa_bb_info *bi;
5991 : 20911 : FOR_EACH_VEC_ELT (fbi.bb_infos, i, bi)
5992 : 37378 : free_ipa_bb_info (bi);
5993 : 1111 : fbi.bb_infos.release ();
5994 : :
5995 : 1111 : ts->remove_argaggs_if ([](const ipa_argagg_value &v)
5996 : : {
5997 : 3776 : return v.killed;
5998 : : });
5999 : :
6000 : 1111 : vec_free (descriptors);
6001 : 1111 : if (cfg_changed)
6002 : 1 : delete_unreachable_blocks_update_callgraph (node, false);
6003 : :
6004 : 1111 : return modified_mem_access ? TODO_update_ssa_only_virtuals : 0;
6005 : 1111 : }
6006 : :
6007 : : /* Record that current function return value range is VAL. */
6008 : :
6009 : : void
6010 : 650328 : ipa_record_return_value_range (value_range val)
6011 : : {
6012 : 650328 : cgraph_node *n = cgraph_node::get (current_function_decl);
6013 : 650328 : if (!ipa_return_value_sum)
6014 : : {
6015 : 76779 : if (!ipa_vr_hash_table)
6016 : 71583 : ipa_vr_hash_table = hash_table<ipa_vr_ggc_hash_traits>::create_ggc (37);
6017 : 76779 : ipa_return_value_sum = new (ggc_alloc_no_dtor <ipa_return_value_sum_t> ())
6018 : 76779 : ipa_return_value_sum_t (symtab, true);
6019 : 76779 : ipa_return_value_sum->disable_insertion_hook ();
6020 : : }
6021 : 650328 : ipa_return_value_sum->get_create (n)->vr = ipa_get_value_range (val);
6022 : 650328 : if (dump_file && (dump_flags & TDF_DETAILS))
6023 : : {
6024 : 22 : fprintf (dump_file, "Recording return range ");
6025 : 22 : val.dump (dump_file);
6026 : 22 : fprintf (dump_file, "\n");
6027 : : }
6028 : 650328 : }
6029 : :
6030 : : /* Return true if value range of DECL is known and if so initialize RANGE. */
6031 : :
6032 : : bool
6033 : 10889976 : ipa_return_value_range (value_range &range, tree decl)
6034 : : {
6035 : 10889976 : cgraph_node *n = cgraph_node::get (decl);
6036 : 10889976 : if (!n || !ipa_return_value_sum)
6037 : : return false;
6038 : 8781697 : enum availability avail;
6039 : 8781697 : n = n->ultimate_alias_target (&avail);
6040 : 8781697 : if (avail < AVAIL_AVAILABLE)
6041 : : return false;
6042 : 1807157 : if (n->decl != decl && !useless_type_conversion_p (TREE_TYPE (decl), TREE_TYPE (n->decl)))
6043 : : return false;
6044 : 1807157 : ipa_return_value_summary *v = ipa_return_value_sum->get (n);
6045 : 1807157 : if (!v)
6046 : : return false;
6047 : 488707 : v->vr->get_vrange (range);
6048 : 488707 : return true;
6049 : : }
6050 : :
6051 : : /* Reset all state within ipa-prop.cc so that we can rerun the compiler
6052 : : within the same process. For use by toplev::finalize. */
6053 : :
6054 : : void
6055 : 246503 : ipa_prop_cc_finalize (void)
6056 : : {
6057 : 246503 : if (function_insertion_hook_holder)
6058 : 11820 : symtab->remove_cgraph_insertion_hook (function_insertion_hook_holder);
6059 : 246503 : function_insertion_hook_holder = NULL;
6060 : :
6061 : 246503 : if (ipa_edge_args_sum)
6062 : 12157 : ggc_delete (ipa_edge_args_sum);
6063 : 246503 : ipa_edge_args_sum = NULL;
6064 : :
6065 : 246503 : if (ipa_node_params_sum)
6066 : 12157 : ggc_delete (ipa_node_params_sum);
6067 : 246503 : ipa_node_params_sum = NULL;
6068 : 246503 : }
6069 : :
6070 : : /* Return true if the two pass_through components of two jump functions are
6071 : : known to be equivalent. AGG_JF denotes whether they are part of aggregate
6072 : : functions or not. The function can be used before the IPA phase of IPA-CP
6073 : : or inlining because it cannot cope with refdesc changes these passes can
6074 : : carry out. */
6075 : :
6076 : : static bool
6077 : 43562 : ipa_agg_pass_through_jf_equivalent_p (ipa_pass_through_data *ipt1,
6078 : : ipa_pass_through_data *ipt2,
6079 : : bool agg_jf)
6080 : :
6081 : : {
6082 : 43562 : gcc_assert (agg_jf ||
6083 : : (!ipt1->refdesc_decremented && !ipt2->refdesc_decremented));
6084 : 43562 : if (ipt1->operation != ipt2->operation
6085 : 43562 : || ipt1->formal_id != ipt2->formal_id
6086 : 43562 : || (!agg_jf && (ipt1->agg_preserved != ipt2->agg_preserved)))
6087 : : return false;
6088 : 43562 : if (((ipt1->operand != NULL_TREE) != (ipt2->operand != NULL_TREE))
6089 : 43562 : || (ipt1->operand
6090 : 104 : && !values_equal_for_ipcp_p (ipt1->operand, ipt2->operand)))
6091 : 0 : return false;
6092 : : return true;
6093 : : }
6094 : :
6095 : : /* Return true if the two aggregate jump functions are known to be equivalent.
6096 : : The function can be used before the IPA phase of IPA-CP or inlining because
6097 : : it cannot cope with refdesc changes these passes can carry out. */
6098 : :
6099 : : static bool
6100 : 3724 : ipa_agg_jump_functions_equivalent_p (ipa_agg_jf_item *ajf1,
6101 : : ipa_agg_jf_item *ajf2)
6102 : : {
6103 : 3724 : if (ajf1->offset != ajf2->offset
6104 : 3724 : || ajf1->jftype != ajf2->jftype
6105 : 7448 : || !types_compatible_p (ajf1->type, ajf2->type))
6106 : 0 : return false;
6107 : :
6108 : 3724 : switch (ajf1->jftype)
6109 : : {
6110 : 2448 : case IPA_JF_CONST:
6111 : 2448 : if (!values_equal_for_ipcp_p (ajf1->value.constant,
6112 : : ajf2->value.constant))
6113 : : return false;
6114 : : break;
6115 : 786 : case IPA_JF_PASS_THROUGH:
6116 : 786 : {
6117 : 786 : ipa_pass_through_data *ipt1 = &ajf1->value.pass_through;
6118 : 786 : ipa_pass_through_data *ipt2 = &ajf2->value.pass_through;
6119 : 786 : if (!ipa_agg_pass_through_jf_equivalent_p (ipt1, ipt2, true))
6120 : : return false;
6121 : : }
6122 : : break;
6123 : 490 : case IPA_JF_LOAD_AGG:
6124 : 490 : {
6125 : 490 : ipa_load_agg_data *ila1 = &ajf1->value.load_agg;
6126 : 490 : ipa_load_agg_data *ila2 = &ajf2->value.load_agg;
6127 : 490 : if (!ipa_agg_pass_through_jf_equivalent_p (&ila1->pass_through,
6128 : : &ila2->pass_through, true))
6129 : : return false;
6130 : 490 : if (ila1->offset != ila2->offset
6131 : 490 : || ila1->by_ref != ila2->by_ref
6132 : 980 : || !types_compatible_p (ila1->type, ila2->type))
6133 : 0 : return false;
6134 : : }
6135 : : break;
6136 : 0 : default:
6137 : 0 : gcc_unreachable ();
6138 : : }
6139 : : return true;
6140 : : }
6141 : :
6142 : : /* Return true if the two jump functions are known to be equivalent. The
6143 : : function can be used before the IPA phase of IPA-CP or inlining because it
6144 : : cannot cope with refdesc changes these passes can carry out. */
6145 : :
6146 : : bool
6147 : 109211 : ipa_jump_functions_equivalent_p (ipa_jump_func *jf1, ipa_jump_func *jf2)
6148 : : {
6149 : 109211 : if (jf1->type != jf2->type)
6150 : : return false;
6151 : :
6152 : 109211 : switch (jf1->type)
6153 : : {
6154 : : case IPA_JF_UNKNOWN:
6155 : : break;
6156 : 19693 : case IPA_JF_CONST:
6157 : 19693 : {
6158 : 19693 : tree cst1 = ipa_get_jf_constant (jf1);
6159 : 19693 : tree cst2 = ipa_get_jf_constant (jf2);
6160 : 19693 : if (!values_equal_for_ipcp_p (cst1, cst2))
6161 : : return false;
6162 : :
6163 : 19692 : ipa_cst_ref_desc *rd1 = jfunc_rdesc_usable (jf1);
6164 : 19692 : ipa_cst_ref_desc *rd2 = jfunc_rdesc_usable (jf2);
6165 : 19692 : if (rd1 && rd2)
6166 : : {
6167 : 142 : gcc_assert (rd1->refcount == 1
6168 : : && rd2->refcount == 1);
6169 : 142 : gcc_assert (!rd1->next_duplicate && !rd2->next_duplicate);
6170 : : }
6171 : 19550 : else if (rd1)
6172 : : return false;
6173 : 19550 : else if (rd2)
6174 : : return false;
6175 : : }
6176 : : break;
6177 : 42286 : case IPA_JF_PASS_THROUGH:
6178 : 42286 : {
6179 : 42286 : ipa_pass_through_data *ipt1 = &jf1->value.pass_through;
6180 : 42286 : ipa_pass_through_data *ipt2 = &jf2->value.pass_through;
6181 : 42286 : if (!ipa_agg_pass_through_jf_equivalent_p (ipt1, ipt2, false))
6182 : : return false;
6183 : : }
6184 : : break;
6185 : 8714 : case IPA_JF_ANCESTOR:
6186 : 8714 : {
6187 : 8714 : ipa_ancestor_jf_data *ia1 = &jf1->value.ancestor;
6188 : 8714 : ipa_ancestor_jf_data *ia2 = &jf2->value.ancestor;
6189 : :
6190 : 8714 : if (ia1->formal_id != ia2->formal_id
6191 : 8714 : || ia1->agg_preserved != ia2->agg_preserved
6192 : 8714 : || ia1->keep_null != ia2->keep_null
6193 : 8714 : || ia1->offset != ia2->offset)
6194 : : return false;
6195 : : }
6196 : : break;
6197 : 0 : default:
6198 : 0 : gcc_unreachable ();
6199 : : }
6200 : :
6201 : 109210 : if (((jf1->m_vr != nullptr) != (jf2->m_vr != nullptr))
6202 : 109210 : || (jf1->m_vr && !jf1->m_vr->equal_p (*jf2->m_vr)))
6203 : 5 : return false;
6204 : :
6205 : 109205 : unsigned alen = vec_safe_length (jf1->agg.items);
6206 : 111471 : if (vec_safe_length (jf2->agg.items) != alen)
6207 : : return false;
6208 : :
6209 : 109204 : if (!alen)
6210 : : return true;
6211 : :
6212 : 2266 : if (jf1->agg.by_ref != jf2->agg.by_ref)
6213 : : return false;
6214 : :
6215 : 5990 : for (unsigned i = 0 ; i < alen; i++)
6216 : 3724 : if (!ipa_agg_jump_functions_equivalent_p (&(*jf1->agg.items)[i],
6217 : 3724 : &(*jf2->agg.items)[i]))
6218 : : return false;
6219 : :
6220 : : return true;
6221 : : }
6222 : :
6223 : : #include "gt-ipa-prop.h"
|